summaryrefslogtreecommitdiff
path: root/autogen.sh
blob: 1a1a2d452ed3cff3a10c00ccd6f4373c3295fe51 (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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
:
#
# This script checks various configure parameters and uses three files:
#   * autogen.input (ro)
#   * autogen.lastrun (rw)
#   * autogen.lastrun.bak (rw)
#
# If _no_ parmeters:
#   Read args from autogen.input or autogen.lastrun
# Else
#   Backup autogen.lastrun as autogen.lastrun.bak
#   Write autogen.lastrun with new commandline args
#
# Run configure with checked args
#
    eval 'exec perl -S $0 ${1+"$@"}'
        if 0;

use strict;
use Cwd ('cwd', 'realpath');
use File::Basename;

my $src_path=dirname(realpath($0));
my $build_path=realpath(cwd());
# since this looks crazy, if you have a symlink on a path up to and including
# the current directory, we need our configure to run in the realpath of that
# such that compiled (realpath'd) dependency filenames match the filenames
# used in our makefiles - ie. this gets dependencies right via SRC_ROOT
chdir ($build_path);
# more amazingly, if you don't clobber 'PWD' shells will re-assert their
# old path from the environment, not cwd.
$ENV{PWD} = $build_path;

sub clean()
{
    system ("rm -Rf autom4te.cache");
    system ("rm -f missing install-sh mkinstalldirs libtool ltmain.sh");
    print "Cleaned the build tree\n";
}

my $aclocal;

# check we have various vital tools
sub sanity_checks($)
{
    my $system = shift;
    my @path = split (':', $ENV{'PATH'});
    my %required =
      (
       'pkg-config' => "pkg-config is required to be installed",
       'autoconf'   => "autoconf is required",
       $aclocal     => "$aclocal is required",
      );

    for my $elem (@path) {
        for my $app (keys %required) {
            if (-f "$elem/$app") {
                delete $required{$app};
            }
        }
    }
    if ((keys %required) > 0) {
        print ("Various low-level dependencies are missing, please install them:\n");
        for my $app (keys %required) {
            print "\t $app: " . $required{$app} . "\n";
        }
        exit (1);
    }
}

# one argument per line
sub read_args($)
{
    my $file = shift;
    my $fh;
    my @lst;
    open ($fh, $file) || die "can't open file: $file";
    while (<$fh>) {
        chomp();
        s/\s+$//;
        # migrate from the old system
        if ( substr($_, 0, 1) eq "'" ) {
            print STDERR "Migrating options from the old autogen.lastrun format, using:\n";
            my @opts;
            @opts = split(/'/);
            foreach my $opt (@opts) {
                if ( substr($opt, 0, 1) eq "-" ) {
                    push @lst, $opt;
                    print STDERR "  $opt\n";
                }
            }
        } elsif ( substr($_, 0, 1) eq "#" ) {
            # comment
        } elsif ( length == 0 ) {
            # empty line
        } else {
            push @lst, $_;
        }
    }
    close ($fh);
    # print "read args from file '$file': @lst\n";
    return @lst;
}

sub invalid_distro($$)
{
    my ($config, $distro) = @_;
    print STDERR "Can't find distro option set: $config\nThis is not necessarily a problem.\n";
    print STDERR "Distros with distro option sets are:\n";
    my $dirh;
    opendir ($dirh, "$src_path/distro-configs");
    while (($_ = readdir ($dirh))) {
        /(.*)\.conf$/ || next;
        print STDERR "\t$1\n";
    }
    closedir ($dirh);
}

# Alloc $ACLOCAL to specify which aclocal to use
$aclocal = $ENV{ACLOCAL} ? $ENV{ACLOCAL} : 'aclocal';

my $system = `uname -s`;
chomp $system;

sanity_checks ($system) unless($system eq 'Darwin');

my $aclocal_flags = $ENV{ACLOCAL_FLAGS};

$aclocal_flags .= " -I $src_path/m4";
$aclocal_flags .= " -I $src_path/m4/mac" if ($system eq 'Darwin');
$aclocal_flags .= " -I /opt/freeware/share/aclocal" if ($system eq 'AIX');

$ENV{AUTOMAKE_EXTRA_FLAGS} = '--warnings=no-portability' if (!($system eq 'Darwin'));

if ($src_path ne $build_path)
{
    system ("ln -sf $src_path/configure.ac configure.ac");
    system ("ln -sf $src_path/g g");
    my @modules = <$src_path/*/Makefile>;
    foreach my $module (@modules)
    {
        my $dir = basename (dirname ($module));
        mkdir ($dir);
        system ("ln -sf $src_path/$dir/Makefile $dir/Makefile");
    }
    my @external_modules = <$src_path/external/*/Makefile>;
    mkdir ("external");
    system ("ln -sf $src_path/external/Module_external.mk external/");
    foreach my $module (@external_modules)
    {
        my $dir = basename (dirname ($module));
        mkdir ("external/$dir");
        system ("ln -sf $src_path/external/$dir/Makefile external/$dir/Makefile");
    }
}
system ("$aclocal $aclocal_flags") && die "Failed to run aclocal";
unlink ("configure");
system ("autoconf -I ${src_path}") && die "Failed to run autoconf";
die "Failed to generate the configure script" if (! -f "configure");

# Handle help arguments first, so we don't clobber autogen.lastrun
for my $arg (@ARGV) {
    if ($arg =~ /^(--help|-h|-\?)$/) {
        system ("./configure --help");
        exit;
    }
}

my @cmdline_args = ();

my $input = "autogen.input";
my $lastrun = "autogen.lastrun";

if (!@ARGV) {
    if (-f $input) {
        if (-f $lastrun) {
            print STDERR <<WARNING;
********************************************************************
*
*   Reading $input and ignoring $lastrun!
*   Consider removing $lastrun to get rid of this warning.
*
********************************************************************
WARNING
        }
        @cmdline_args = read_args ($input);
    } elsif (-f $lastrun) {
        print STDERR "Reading $lastrun. Please rename it to $input to avoid this message.\n";
        @cmdline_args = read_args ($lastrun);
    }
} else {
    if (-f $input) {
        print STDERR <<WARNING;
********************************************************************
*
*   Using commandline arguments and ignoring $input!
*
********************************************************************
WARNING
    }
    @cmdline_args = @ARGV;
}

my @args;
my $default_config = "$src_path/distro-configs/default.conf";
if (-f $default_config) {
    print STDERR "Reading default config file: $default_config.\n";
    push @args, read_args ($default_config);
}
for my $arg (@cmdline_args) {
    if ($arg eq '--clean') {
        clean();
    } elsif ($arg =~ m/--with-distro=(.*)$/) {
        my $config = "$src_path/distro-configs/$1.conf";
        if (! -f $config) {
            invalid_distro ($config, $1);
        } else {
            push @args, read_args ($config);
        }
    } else {
        push @args, $arg;
    }
}
for my $arg (@args) {
    if ($arg =~ /^([A-Z]+)=(.*)/) {
        $ENV{$1} = $2;
    }
}

if (defined $ENV{NOCONFIGURE}) {
    print "Skipping configure process.";
} else {
    # Save autogen.lastrun only if we did get some arguments on the command-line
    if (! -f $input && @ARGV) {
        if (scalar(@cmdline_args) > 0) {
            # if there's already an autogen.lastrun, make a backup first
            if (-e $lastrun) {
                open (my $fh, $lastrun) || warn "Can't open $lastrun.\n";
                open (BAK, ">$lastrun.bak") || warn "Can't create backup file $lastrun.bak.\n";
                while (<$fh>) {
                    print BAK;
                }
                close (BAK) && close ($fh);
            }
            # print "Saving command-line args to $lastrun\n";
            my $fh;
            open ($fh, ">autogen.lastrun") || die "Can't open autogen.lastrun: $!";
            for my $arg (@cmdline_args) {
                print $fh "$arg\n";
            }
            close ($fh);
        }
    }
    push @args, "--srcdir=$src_path";
    push @args, "--enable-option-checking=fatal";

    print "Running ./configure with '" . join ("' '", @args), "'\n";
    system ("./configure", @args) && die "Error running configure";
}

# Local Variables:
# mode: perl
# cperl-indent-level: 4
# tab-width: 4
# indent-tabs-mode: nil
# End:

# vim:set ft=perl shiftwidth=4 softtabstop=4 expandtab: #
tent2/source/text/swriter/guide.po10
-rw-r--r--source/nl/helpcontent2/source/text/shared/01.po9
-rw-r--r--source/nl/helpcontent2/source/text/shared/guide.po6
-rw-r--r--source/nn/helpcontent2/source/text/swriter/guide.po8
-rw-r--r--source/pl/cui/messages.po14
-rw-r--r--source/pl/helpcontent2/source/text/shared/help.po102
-rw-r--r--source/pl/starmath/messages.po10
-rw-r--r--source/pl/svtools/messages.po10
-rw-r--r--source/pl/svx/messages.po16
-rw-r--r--source/pt-BR/cui/messages.po8
-rw-r--r--source/pt/cui/messages.po76
-rw-r--r--source/pt/editeng/messages.po8
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/python.po10
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/shared.po14
-rw-r--r--source/pt/helpcontent2/source/text/scalc.po10
-rw-r--r--source/pt/helpcontent2/source/text/scalc/01.po44
-rw-r--r--source/pt/helpcontent2/source/text/schart/01.po12
-rw-r--r--source/pt/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/pt/helpcontent2/source/text/shared/00.po18
-rw-r--r--source/pt/helpcontent2/source/text/shared/01.po54
-rw-r--r--source/pt/helpcontent2/source/text/shared/02.po68
-rw-r--r--source/pt/helpcontent2/source/text/shared/autopi.po68
-rw-r--r--source/pt/helpcontent2/source/text/shared/explorer/database.po26
-rw-r--r--source/pt/helpcontent2/source/text/shared/guide.po200
-rw-r--r--source/pt/helpcontent2/source/text/shared/optionen.po136
-rw-r--r--source/pt/helpcontent2/source/text/simpress/02.po26
-rw-r--r--source/pt/helpcontent2/source/text/simpress/guide.po10
-rw-r--r--source/pt/helpcontent2/source/text/swriter.po8
-rw-r--r--source/pt/helpcontent2/source/text/swriter/01.po12
-rw-r--r--source/pt/helpcontent2/source/text/swriter/02.po38
-rw-r--r--source/pt/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/pt/reportbuilder/java/org/libreoffice/report/function/metadata.po16
-rw-r--r--source/pt/sc/messages.po6
-rw-r--r--source/pt/wizards/source/resources.po14
-rw-r--r--source/pt/writerperfect/messages.po8
-rw-r--r--source/szl/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/szl/wizards/messages.po8
-rw-r--r--source/szl/wizards/source/resources.po6
-rw-r--r--source/szl/writerperfect/messages.po6
-rw-r--r--source/uk/cui/messages.po118
-rw-r--r--source/uk/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/uk/sc/messages.po8
-rw-r--r--source/uk/scp2/source/ooo.po10
-rw-r--r--source/zh-TW/cui/messages.po144
-rw-r--r--source/zh-TW/filter/messages.po12
-rw-r--r--source/zh-TW/filter/source/config/fragments/filters.po28
-rw-r--r--source/zh-TW/filter/source/config/fragments/types.po26
-rw-r--r--source/zh-TW/instsetoo_native/inc_openoffice/windows/msi_languages.po68
-rw-r--r--source/zh-TW/officecfg/registry/data/org/openoffice/Office/UI.po122
-rw-r--r--source/zh-TW/sc/messages.po8
-rw-r--r--source/zh-TW/scp2/source/ooo.po12
-rw-r--r--source/zh-TW/scp2/source/winexplorerext.po10
-rw-r--r--source/zh-TW/sd/messages.po172
-rw-r--r--source/zh-TW/sfx2/messages.po24
-rw-r--r--source/zh-TW/shell/messages.po22
-rw-r--r--source/zh-TW/shell/source/win32/shlxthandler/res.po12
-rw-r--r--source/zh-TW/starmath/messages.po20
-rw-r--r--source/zh-TW/svtools/messages.po6
-rw-r--r--source/zh-TW/svx/messages.po39
-rw-r--r--source/zh-TW/sw/messages.po82
-rw-r--r--source/zh-TW/swext/mediawiki/help.po6
-rw-r--r--source/zh-TW/wizards/messages.po10
-rw-r--r--source/zh-TW/wizards/source/resources.po8
168 files changed, 2608 insertions, 2786 deletions
diff --git a/source/bg/helpcontent2/source/text/shared/02.po b/source/bg/helpcontent2/source/text/shared/02.po
index 030183afc08..98a4f00f144 100644
--- a/source/bg/helpcontent2/source/text/shared/02.po
+++ b/source/bg/helpcontent2/source/text/shared/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-22 13:27+0200\n"
-"PO-Revision-Date: 2019-07-05 20:14+0000\n"
+"PO-Revision-Date: 2019-09-15 11:43+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
"Language: bg\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1562357690.000000\n"
+"X-POOTLE-MTIME: 1568547825.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -13103,7 +13103,7 @@ msgctxt ""
"par_id3150476\n"
"help.text"
msgid "<ahelp hid=\".uno:DataSourceBrowser/InsertContent\">Updates the contents of the existing database fields by the marked records.</ahelp> The <emph>Data to Fields </emph>icon is only available if the current document is a text document."
-msgstr "<ahelp hid=\".uno:DataSourceBrowser/InsertContent\">Обновява съдържанието на съществуващите полета за данни чрезмаркираните записи.</ahelp> Иконата <emph>Данни към полета</emph> е достъпна само ако текущият документ е текстов."
+msgstr "<ahelp hid=\".uno:DataSourceBrowser/InsertContent\">Обновява съдържанието на съществуващите полета за данни чрез маркираните записи.</ahelp> Иконата <emph>Данни към полета</emph> е достъпна само ако текущият документ е текстов."
#: 12080000.xhp
msgctxt ""
@@ -16351,7 +16351,7 @@ msgctxt ""
"par_id3152971\n"
"help.text"
msgid "<ahelp hid=\".uno:GraphicFilterSobel\">Displays the image as a charcoal sketch. The contours of the image are drawn in black, and the original colors are suppressed.</ahelp>"
-msgstr "<ahelp hid=\".uno:GraphicFilterSobel\">Показва изображението като скица с въглен. Очертанията на изображението се рисуват с черно, а оригиналните цветове се подтискат.</ahelp>"
+msgstr "<ahelp hid=\".uno:GraphicFilterSobel\">Показва изображението като скица с въглен. Очертанията на изображението се рисуват с черно, а оригиналните цветове се потискат.</ahelp>"
#: 24010000.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/simpress/guide.po b/source/bg/helpcontent2/source/text/simpress/guide.po
index b65003e2c04..0723a5fb5eb 100644
--- a/source/bg/helpcontent2/source/text/simpress/guide.po
+++ b/source/bg/helpcontent2/source/text/simpress/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2019-04-21 19:25+0000\n"
+"PO-Revision-Date: 2019-09-08 09:52+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1555874757.000000\n"
+"X-POOTLE-MTIME: 1567936353.000000\n"
#: 3d_create.xhp
msgctxt ""
@@ -2734,7 +2734,7 @@ msgctxt ""
"par_id3155068\n"
"help.text"
msgid "Type a name for the layer in the <emph>Name </emph>box."
-msgstr "Въведете име за слоя в полето <emph>Name </emph>."
+msgstr "Въведете име за слоя в полето <emph>Име</emph>."
#: layer_new.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/smath/01.po b/source/bg/helpcontent2/source/text/smath/01.po
index fdec31e5aed..0031956e6de 100644
--- a/source/bg/helpcontent2/source/text/smath/01.po
+++ b/source/bg/helpcontent2/source/text/smath/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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2019-07-05 20:01+0000\n"
+"PO-Revision-Date: 2019-09-10 19:33+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
"Language: bg\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1562356902.000000\n"
+"X-POOTLE-MTIME: 1568144014.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -3447,7 +3447,7 @@ msgctxt ""
"par_id3149604\n"
"help.text"
msgid "In describing the following attribute functions, the letter \"a\" in the icon refers to the placeholder that you would like to assign to the respective attribute. You can substitute this character with any other character that you choose."
-msgstr "В описанията на атрибути буквата \"а\" в иконата изобразява запазеното място, на което приписвате съответния ятрибут. Можете да замените този знак с произволен знак по ваш избор."
+msgstr "В описанията на атрибути буквата \"а\" в иконата изобразява запазеното място, на което приписвате съответния атрибут. Можете да замените този знак с произволен знак по ваш избор."
#: 03090600.xhp
msgctxt ""
@@ -3543,7 +3543,7 @@ msgctxt ""
"par_id3149976\n"
"help.text"
msgid "<emph>Breve</emph>"
-msgstr "<emph>Брева</emph>"
+msgstr "<emph>Бревис</emph>"
#: 03090600.xhp
msgctxt ""
@@ -3551,7 +3551,7 @@ msgctxt ""
"par_id3153619\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_BREVEX\">Inserts a placeholder with an accent breve.</ahelp> You can also type <emph>breve <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_BREVEX\">Вмъква запазено място с брева.</ahelp> Можете също да въведете <emph>breve <?></emph> в прозореца <emph>Команди</emph>."
+msgstr "<ahelp hid=\"HID_SMA_BREVEX\">Вмъква запазено място с бревис.</ahelp> Можете също да въведете <emph>breve <?></emph> в прозореца <emph>Команди</emph>."
#: 03090600.xhp
msgctxt ""
diff --git a/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po
index a8058f0443c..7f75c0ab04d 100644
--- a/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-08-28 19:39+0200\n"
-"PO-Revision-Date: 2019-08-27 09:26+0000\n"
+"PO-Revision-Date: 2019-09-13 09:41+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1566897978.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1568367663.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -28015,7 +28015,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Delete selected rows"
-msgstr ""
+msgstr "Suprimeix les files seleccionades"
#: WriterCommands.xcu
msgctxt ""
@@ -28042,7 +28042,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Delete selected columns"
-msgstr ""
+msgstr "Suprimeix les columnes seleccionades"
#: WriterCommands.xcu
msgctxt ""
@@ -28069,7 +28069,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Delete table"
-msgstr ""
+msgstr "Suprimeix la taula"
#: WriterCommands.xcu
msgctxt ""
@@ -28195,7 +28195,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Select Cell"
-msgstr ""
+msgstr "Selecciona la cel·la"
#: WriterCommands.xcu
msgctxt ""
@@ -28258,7 +28258,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Select Table"
-msgstr ""
+msgstr "Selecciona la taula"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/ca/scp2/source/ooo.po b/source/ca/scp2/source/ooo.po
index 70a3dcdf9ce..0136d46ecff 100644
--- a/source/ca/scp2/source/ooo.po
+++ b/source/ca/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-08-28 19:39+0200\n"
-"PO-Revision-Date: 2019-06-04 12:41+0000\n"
+"PO-Revision-Date: 2019-09-13 09:39+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1559652084.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1568367594.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -3702,7 +3702,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_SZL\n"
"LngText.text"
msgid "Silesian"
-msgstr ""
+msgstr "silesià"
#: module_langpack.ulf
msgctxt ""
@@ -3710,7 +3710,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_SZL\n"
"LngText.text"
msgid "Installs the Silesian user interface"
-msgstr ""
+msgstr "Instal·la la interfície d'usuari en silesià"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/cy/chart2/messages.po b/source/cy/chart2/messages.po
index 3c9d8fd441e..0e0d6155778 100644
--- a/source/cy/chart2/messages.po
+++ b/source/cy/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: 2019-07-03 20:21+0200\n"
-"PO-Revision-Date: 2019-08-31 09:34+0000\n"
+"PO-Revision-Date: 2019-09-09 17:58+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1567244076.000000\n"
+"X-POOTLE-MTIME: 1568051884.000000\n"
#: chart2/inc/chart.hrc:17
msgctxt "tp_ChartType|liststore1"
@@ -255,7 +255,7 @@ msgstr "Grid Bach Echelin Z"
#: chart2/inc/strings.hrc:67
msgctxt "STR_OBJECT_LEGEND"
msgid "Legend"
-msgstr "Allwedd"
+msgstr "Egluryn"
#: chart2/inc/strings.hrc:68
msgctxt "STR_OBJECT_TITLE"
@@ -325,7 +325,7 @@ msgstr "Pwyntiau Data"
#: chart2/inc/strings.hrc:81
msgctxt "STR_OBJECT_LEGEND_SYMBOL"
msgid "Legend Key"
-msgstr "Allwedd Esboniad"
+msgstr "Allwedd Egluryn"
#: chart2/inc/strings.hrc:82
msgctxt "STR_OBJECT_DATASERIES"
@@ -486,7 +486,7 @@ msgstr "Golygu data'r siart"
#: chart2/inc/strings.hrc:113
msgctxt "STR_ACTION_TOGGLE_LEGEND"
msgid "Legend on/off"
-msgstr "Esboniad ymlaen/diffodd"
+msgstr "Egluryn Ymlaen/Diffodd"
#: chart2/inc/strings.hrc:114
msgctxt "STR_ACTION_TOGGLE_GRID_HORZ"
@@ -856,7 +856,7 @@ msgstr "Mae angen rhifau. Gwiriwch eich mewnbwn."
#: chart2/inc/strings.hrc:189
msgctxt "STR_STEP_GT_ZERO"
msgid "The major interval requires a positive number. Check your input."
-msgstr "Mae'r cyfwng mawr angen rhif positif. Gwiriwch eich mewnbwn."
+msgstr "Mae'r prif gyfwng angen rhif positif. Gwiriwch eich mewnbwn."
#: chart2/inc/strings.hrc:190
msgctxt "STR_BAD_LOGARITHM"
@@ -871,12 +871,12 @@ msgstr "Rhaid i'r lleiafswm fod yn llai na'r uchafswm. Gwiriwch eich mewnbwn."
#: chart2/inc/strings.hrc:192
msgctxt "STR_INVALID_INTERVALS"
msgid "The major interval needs to be greater than the minor interval. Check your input."
-msgstr "Rhaid i'r cyfnod mawr fod yn fwy na'r cyfnod bach. Gwiriwch eich mewnbwn."
+msgstr "Rhaid i'r prif gyfwng fod yn fwy na'r cyfwng eilradd. Gwiriwch eich mewnbwn."
#: chart2/inc/strings.hrc:193
msgctxt "STR_INVALID_TIME_UNIT"
msgid "The major and minor interval need to be greater or equal to the resolution. Check your input."
-msgstr "Rhaid i'r cyfnod mawr fod yn fwy neu'n hafal a'r cydraniad. Gwiriwch eich mewnbwn."
+msgstr "Rhaid i'r prif gyfwng fod yn fwy neu'n hafal a'r cydraniad. Gwiriwch eich mewnbwn."
#: chart2/uiconfig/ui/3dviewdialog.ui:8
msgctxt "3dviewdialog|3DViewDialog"
@@ -996,7 +996,7 @@ msgstr "Dangos _categori"
#: chart2/uiconfig/ui/dlg_DataLabel.ui:153
msgctxt "dlg_DataLabel|CB_SYMBOL"
msgid "Show _legend key"
-msgstr "Dangos eicon _allwedd"
+msgstr "Dangos allwedd _egluryn"
#: chart2/uiconfig/ui/dlg_DataLabel.ui:168
msgctxt "dlg_DataLabel|CB_WRAP_TEXT"
@@ -1141,7 +1141,7 @@ msgstr "Cylchdroi Testun"
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:28
msgctxt "dlg_InsertErrorBars|dlg_InsertErrorBars"
msgid "Legend"
-msgstr "Mynegai"
+msgstr "Egluryn"
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:131
msgctxt "dlg_InsertErrorBars|RB_NONE"
@@ -1256,12 +1256,12 @@ msgstr "O'r Tabl Data"
#: chart2/uiconfig/ui/dlg_InsertLegend.ui:8
msgctxt "dlg_InsertLegend|dlg_InsertLegend"
msgid "Legend"
-msgstr "Mynegai"
+msgstr "Egluryn"
#: chart2/uiconfig/ui/dlg_InsertLegend.ui:106
msgctxt "dlg_InsertLegend|show"
msgid "_Display legend"
-msgstr "_Dangos mynegai"
+msgstr "_Dangos egluryn"
#: chart2/uiconfig/ui/dlg_InsertLegend.ui:128
msgctxt "dlg_InsertLegend|left"
@@ -1511,7 +1511,7 @@ msgstr "Teitlau"
#: chart2/uiconfig/ui/sidebarelements.ui:102
msgctxt "sidebarelements|checkbutton_legend|tooltip_text"
msgid "Show Legend"
-msgstr "Dangos yr Allwedd"
+msgstr "Dangos Egluryn"
#: chart2/uiconfig/ui/sidebarelements.ui:126
msgctxt "sidebarelements|placement_label"
@@ -1546,7 +1546,7 @@ msgstr "Gyda Llaw"
#: chart2/uiconfig/ui/sidebarelements.ui:169
msgctxt "sidebarelements|label_legen"
msgid "Legend"
-msgstr "Mynegai"
+msgstr "Egluryn"
#: chart2/uiconfig/ui/sidebarelements.ui:202
msgctxt "sidebarelements|checkbutton_x_axis"
@@ -2256,7 +2256,7 @@ msgstr "Dangos _­categori"
#: chart2/uiconfig/ui/tp_DataLabel.ui:82
msgctxt "tp_DataLabel|CB_SYMBOL"
msgid "Show _legend key"
-msgstr "Dangos allwedd _mynegai"
+msgstr "Dangos allwedd _egluryn"
#: chart2/uiconfig/ui/tp_DataLabel.ui:97
msgctxt "tp_DataLabel|CB_WRAP_TEXT"
@@ -2789,7 +2789,7 @@ msgstr "C_yfnodau bach"
#: chart2/uiconfig/ui/tp_Scale.ui:433
msgctxt "tp_Scale|TXT_STEP_HELP_COUNT"
msgid "Minor inter_val count"
-msgstr "Cyfrif c_yfnodau bach"
+msgstr "Nifer y cyfyngau _eilradd"
#: chart2/uiconfig/ui/tp_Scale.ui:482
msgctxt "tp_Scale|CBX_AUTO_STEP_HELP"
@@ -2884,12 +2884,12 @@ msgstr "Dewisiadau Plotio"
#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:385
msgctxt "tp_SeriesToAxis|CB_LEGEND_ENTRY_HIDDEN"
msgid "Hide legend entry"
-msgstr "Cuddio cofnod esboniad"
+msgstr "Cuddio cofnod egluryn"
#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:406
msgctxt "tp_SeriesToAxis|label4"
msgid "Legend Entry"
-msgstr "Cofnod Esboniad"
+msgstr "Cofnod Egluryn"
#: chart2/uiconfig/ui/tp_Trendline.ui:65
msgctxt "tp_Trendline|linear"
@@ -3089,7 +3089,7 @@ msgstr "Echelin _Y"
#: chart2/uiconfig/ui/wizelementspage.ui:230
msgctxt "wizelementspage|show"
msgid "_Display legend"
-msgstr "_Dangos mynegai"
+msgstr "_Dangos egluryn"
#: chart2/uiconfig/ui/wizelementspage.ui:255
msgctxt "wizelementspage|left"
@@ -3114,7 +3114,7 @@ msgstr "_Gwaelod"
#: chart2/uiconfig/ui/wizelementspage.ui:339
msgctxt "wizelementspage|Axe"
msgid "Choose Titles, Legend, and Grid Settings"
-msgstr "Dewiswch Deitlau, Mynegai a Gosodiadau Grid"
+msgstr "Dewiswch Deitlau, Egluryn a Gosodiadau Grid"
#: chart2/uiconfig/ui/wizelementspage.ui:372
msgctxt "wizelementspage|x"
diff --git a/source/cy/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po b/source/cy/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po
index 0481ae13cfa..681aaa38958 100644
--- a/source/cy/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po
+++ b/source/cy/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.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: 2018-10-02 17:57+0200\n"
-"PO-Revision-Date: 2018-10-03 08:33+0000\n"
+"PO-Revision-Date: 2019-09-11 09:20+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1538555580.000000\n"
+"X-POOTLE-MTIME: 1568193616.000000\n"
#: Drivers.xcu
msgctxt ""
@@ -23,4 +23,4 @@ msgctxt ""
"DriverTypeDisplayName\n"
"value.text"
msgid "MySQL Connector"
-msgstr "Cysylltydd MySQL "
+msgstr "Cysylltydd MySQL"
diff --git a/source/cy/cui/messages.po b/source/cy/cui/messages.po
index b912b2b2134..9b639e90a0a 100644
--- a/source/cy/cui/messages.po
+++ b/source/cy/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: 2019-08-28 19:38+0200\n"
-"PO-Revision-Date: 2019-08-31 09:23+0000\n"
+"PO-Revision-Date: 2019-09-11 09:47+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1567243400.000000\n"
+"X-POOTLE-MTIME: 1568195272.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -1845,7 +1845,7 @@ msgstr "Diffinio testunau rydych chi'n eu defnyddio'n aml fel AutoDestun. Byddwc
#: cui/inc/tipoftheday.hrc:53
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools > Options > %PRODUCTNAME Writer > AutoCaption."
-msgstr "Gall %PRODUCTNAME ychwanegu pennawd wedi'i rifo yn awtomatig pan fyddwch yn mewnosod gwrthrychau. Gw. Offer> Dewisiadau >Writer %PRODUCTNAME > AwtoBennawd."
+msgstr "Gall %PRODUCTNAME ychwanegu pennawd wedi'i rifo yn awtomatig pan fyddwch yn mewnosod gwrthrychau. Gw. Offer> Dewisiadau >Writer %PRODUCTNAME > AwtoEgluryn."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01041100.html
#: cui/inc/tipoftheday.hrc:54
@@ -1935,7 +1935,7 @@ msgstr "Gallwch ddiogelu celloedd gyda Fformat> Celloedd> Amddiffyn. I atal mewn
#: cui/inc/tipoftheday.hrc:69
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to add x months to a date? Use =EDATE(date;months)."
-msgstr "Eisiau ychwanegu x mis i ddyddiad? Defnyddiwch =EDATE(date;months)"
+msgstr "Eisiau ychwanegu x mis i ddyddiad? Defnyddiwch =EDATE(date;months)."
#. local help missing
#: cui/inc/tipoftheday.hrc:70
@@ -2188,7 +2188,7 @@ msgstr "Angen symud un neu fwy o baragraffau? Does dim angen torri a gludo: Defn
#: cui/inc/tipoftheday.hrc:118
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Batch convert your MS Office documents to OpenDocument format by the Document Converter wizard in menu File > Wizards > Document converter."
-msgstr "Swp troswch eich dogfennau MS Office i fformat OpenDocument gyda'r dewin Troswr Dogfennau yn newidlen Ffeil > Dewin> Troswr Dogfennau."
+msgstr "Swp troswch eich dogfennau MS Office i fformat OpenDocument gyda'r dewin Troswr Dogfennau yn newislen Ffeil > Dewin> Troswr Dogfennau."
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2243,7 +2243,7 @@ msgstr "I gopïo sylw heb golli cynnwys y gell darged dylech ddefnyddio Gludo Ar
#: cui/inc/tipoftheday.hrc:129
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select an object in the document background via the Select tool in the Drawing toolbar to surround the object to select."
-msgstr "Dewiswch wrthrych yng nghefndir y ddogfen trwy'r teclyn Dewis yn y bar offer Lluniadu i amgylchynu'r gwrthrych sydd i'w ddewis."
+msgstr "Dewiswch wrthrych yng nghefndir y ddogfen trwy'r teclyn Dewis yn y bar offer Lluniadu i amgylchynu'r gwrthrych sydd i'w ddewis."
#: cui/inc/tipoftheday.hrc:130
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2258,7 +2258,7 @@ msgstr "Cymysgwch gyfeiriadau portread a thirwedd mewn taenlen Calc trwy osod gw
#: cui/inc/tipoftheday.hrc:132
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create different master pages in a presentation template: View > Master Slide and Slide > New Master (or per toolbar or right click in slide pane)."
-msgstr "Gallwch greu llawer o brif dudalennau mewn templed cyflwyniad: Golwg › Prif Sleid a Sleid › Prif Sleid Newydd (bar offer neu gliciwch ar y dde yn y paen sleidiau)"
+msgstr "Gallwch greu llawer o brif dudalennau mewn templed cyflwyniad: Golwg › Prif Sleid a Sleid › Prif Sleid Newydd (bar offer neu gliciwch ar y dde yn y paen sleidiau)."
#: cui/inc/tipoftheday.hrc:133
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2278,7 +2278,7 @@ msgstr "Ail-enwch eich sleidiau yn Impress i'ch helpu chi i ddiffinio rhyngweith
#: cui/inc/tipoftheday.hrc:136
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Play music throughout a slideshow by assigning the sound to the first slide transition without clicking the ‘Apply to All Slides’ button."
-msgstr "I chwarae cerddoriaeth trwy gydol sioe sleidiau, neilltuwch y sain i'r trawsnewidiad sleidiau cyntaf heb glicio ar y botwm 'Gosod i Bob Sleid'."
+msgstr "I chwarae cerddoriaeth trwy gydol sioe sleidiau, neilltuwch y sain i'r trawsnewidiad sleidiau cyntaf heb glicio ar y botwm ‘Gosod i Bob Sleid’."
#: cui/inc/tipoftheday.hrc:137
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2288,12 +2288,12 @@ msgstr "Gyda Sioe Sleidiau › Sioe Sleidiau Cyfaddas gallwch aildrefnu a dewis
#: cui/inc/tipoftheday.hrc:138
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Include a paragraph that is not a title in the table of contents by changing Outline & Numbering in the paragraph settings to an outline level."
-msgstr "Cynhwyswch baragraff nad yw'n deitl yn y tabl cynnwys trwy newid 'Amlinelliad a Rhifo' yn y gosodiadau paragraff i lefel amlinellol."
+msgstr "Cynhwyswch baragraff nad yw'n deitl yn y tabl cynnwys trwy newid Amlinelliad a Rhifo yn y gosodiadau paragraff i lefel amlinellol."
#: cui/inc/tipoftheday.hrc:139
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use the Connector tool from the Drawing toolbar in Draw/Impress to create nice flow charts and optionally copy/paste the object into Writer."
-msgstr "Defnyddiwch yr offeryn Cysylltydd o'r bar offer Lluniadu yn Draw/Impress i greu siartiau llif da gyda'r dewis o gopïo/gludo'r gwrthrych yn Writer."
+msgstr "Defnyddiwch yr offeryn Cysylltydd o'r bar offer Lluniadu yn Draw/Impress i greu siartiau llif da gyda'r dewis o gopïo/gludo'r gwrthrych yn Writer."
#: cui/inc/tipoftheday.hrc:140
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2303,7 +2303,7 @@ msgstr "Eisiau gweld, ond nid argraffu, gwrthrych yn Draw? Tynnwch lun ohono ar
#: cui/inc/tipoftheday.hrc:141
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to print two portrait pages on a landscape one (reducing A4 to A5)? File > Print and select 2 at ‘Pages per sheet’."
-msgstr "Eisiau argraffu dwy dudalen bortread ar dirwedd un tirwedd (gan leihau A4 i A5)? Ffeil> Argraffu a dewis 2 yn ‘Tudalen i'r dalen’."
+msgstr "Eisiau argraffu dwy dudalen bortread ar dirwedd un tirwedd (gan leihau A4 i A5)? Ffeil> Argraffu a dewis 2 yn ‘Tudalen i'r dalen’."
#: cui/inc/tipoftheday.hrc:142
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2383,7 +2383,7 @@ msgstr "Ailadroddwch y pennawd ar dudalen ddilynol pan fydd tabl yn rhychwantu m
#: cui/inc/tipoftheday.hrc:157
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use column or row labels in formulas. For example, if you have two columns, ‘Time’ and ‘KM’, use =Time/KM to get minutes per kilometer."
-msgstr "Defnyddiwch labeli colofn neu res mewn fformwlâu. Er enghraifft, os oes gennych ddwy golofn, ‘Amser’ a ‘KM’, defnyddiwch =Time/KM i gael munudau fesul cilomedr."
+msgstr "Defnyddiwch labeli colofn neu res mewn fformwlâu. Er enghraifft, os oes gennych ddwy golofn, ‘Amser’ a ‘KM’, defnyddiwch =Time/KM i gael munudau fesul cilomedr."
#: cui/inc/tipoftheday.hrc:158
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2433,12 +2433,12 @@ msgstr "Symudwch golofn yn Calc rhwng dau arall mewn un cam? Cliciwch y pennawd
#: cui/inc/tipoftheday.hrc:167
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use the Backspace key instead of Delete in Calc. You can choose what to delete."
-msgstr "Defnyddiwch y fysell Backspace yn lle Delete yn Calc. Gallwch ddewis beth i'w ddileu."
+msgstr "Defnyddiwch y fysell Backspace yn lle Delete yn Calc. Gallwch ddewis beth i'w ddileu."
#: cui/inc/tipoftheday.hrc:168
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To distribute some text in multi-columns select the text and apply Format > Columns."
-msgstr "I ddosbarthu rhywfaint o destun mewn colofnau lluosog dewiswch y testun a dewis Fformat > Colofnau."
+msgstr "I ddosbarthu rhywfaint o destun mewn colofnau lluosog dewiswch y testun a dewis Fformat > Colofnau."
#: cui/inc/tipoftheday.hrc:169
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2588,7 +2588,7 @@ msgstr "Peidiwch â mynd ar goll mewn ddogfennau mawr. Defnyddiwch y Llywiwr (F5
#: cui/inc/tipoftheday.hrc:198
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can use styles to make the tables in your document consistent. Choose one from the predefined per Styles (F11) or via Table > AutoFormat."
-msgstr "Gallwch ddefnyddio arddulliau i wneud y tablau yn eich dogfen yn gyson. Dewiswch un o'r rhai wedi'u diffinio ymlaen llaw fesul Arddulliau (F11) neu trwy Tabl > AwtoFformat."
+msgstr "Gallwch ddefnyddio arddulliau i wneud y tablau yn eich dogfen yn gyson. Dewiswch un o'r rhai wedi'u diffinio ymlaen llaw fesul Arddulliau (F11) neu trwy Tabl > AwtoFformat."
#: cui/inc/tipoftheday.hrc:199
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2643,7 +2643,7 @@ msgstr "I'w gwneud hi'n hawdd mewnosod llun mewn templed Writer, Mewnosod > Meys
#: cui/inc/tipoftheday.hrc:209
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create a master document from the current Writer document? File > Send > Create Master Document (sub-documents are created depending of outline)."
-msgstr "Yn creu prif ddogfen o'r ddogfen Writer cyfredol? Ffeil › Anfon › Creu Prif Ddogfen (is-ddogfen wedi'i chreu yn dibynnu ar yr amlinelliad)"
+msgstr "Yn creu prif ddogfen o'r ddogfen Writer cyfredol? Ffeil › Anfon › Creu Prif Ddogfen (is-ddogfen wedi'i chreu yn dibynnu ar yr amlinelliad)."
#: cui/inc/tipoftheday.hrc:210
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2658,7 +2658,7 @@ msgstr "Pan yn teipio mewn print trwm, italig, neu wedi'i danlinellu yn Writer g
#: cui/inc/tipoftheday.hrc:212
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You will search in several sheets when you select them before you start the search."
-msgstr "Byddwch yn chwilio mewn sawl dalen pan fyddwch chi'n eu dewis cyn dechrau'r chwilio.."
+msgstr "Byddwch yn chwilio mewn sawl dalen pan fyddwch chi'n eu dewis cyn dechrau'r chwilio."
#: cui/inc/tipoftheday.hrc:213
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2723,7 +2723,7 @@ msgstr "Peidiwch â mewnosod toriadau â llaw i wahanu dau baragraff. Yn hytrach
#: cui/inc/tipoftheday.hrc:225
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your Writer document didn’t reopen with the text cursor at the same editing position it was when you saved it? Check Tools > Options > %PRODUCTNAME > User Data > First/Last name is not empty."
-msgstr "Nid yw eich dogfen Writer wedi wilagor gyda'r cyrchwr testun yn yr un safle golygu ag yr oeddech pan wnaethoch ei chadw? Ewch i Offer > Dewisiadau >%PRODUCTNAME > Data Defnyddiwr > Nid yw'r enw cyntaf/olaf yn wag."
+msgstr "Nid yw eich dogfen Writer wedi wilagor gyda'r cyrchwr testun yn yr un safle golygu ag yr oeddech pan wnaethoch ei chadw? Ewch i Offer > Dewisiadau >%PRODUCTNAME > Data Defnyddiwr > Nid yw'r enw cyntaf/olaf yn wag."
#: cui/inc/tipoftheday.hrc:226
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2824,7 +2824,7 @@ msgstr "Eisiau dychwelyd yn ragosodedig ar ôl defnyddio arddull rhestr? Cliciwc
#: cui/inc/tipoftheday.hrc:245
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Configure use of the Ctrl key to follow hyperlinks? Tools > Options > %PRODUCTNAME > Security > Options > ‘Ctrl+click required to follow hyperlinks’."
-msgstr "Ffurfweddwch ddefnydd o'r fysell Ctrl i ddilyn hyperddolenni? Offer > Dewisiadau >%PRODUCTNAME > Diogelwch > Dewisiadau > ‘Ctrl+ cliciwch i ddilyn hyperddolenni'."
+msgstr "Ffurfweddwch ddefnydd o'r fysell Ctrl i ddilyn hyperddolenni? Offer > Dewisiadau >%PRODUCTNAME > Diogelwch > Dewisiadau > ‘Ctrl+clicio i ddilyn hyperddolenni’."
#: cui/inc/tipoftheday.hrc:246
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -3099,7 +3099,7 @@ msgstr "Cydweddiad"
#: cui/inc/treeopt.hrc:79
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "AutoCaption"
-msgstr "AwtoBennawd"
+msgstr "AwtoEgluryn"
#: cui/inc/treeopt.hrc:80
msgctxt "SID_SW_EDITOPTIONS_RES"
@@ -4419,7 +4419,7 @@ msgstr "_Dewis..."
#: cui/uiconfig/ui/bulletandposition.ui:373
msgctxt "bulletandposition|bitmap"
msgid "Select image..."
-msgstr "Dewis delwedd ..."
+msgstr "Dewis delwedd..."
#: cui/uiconfig/ui/bulletandposition.ui:419
msgctxt "bulletandposition|widthft"
@@ -5819,7 +5819,7 @@ msgstr "Dangos unedau _mesur"
#: cui/uiconfig/ui/dimensionlinestabpage.ui:446
msgctxt "dimensionlinestabpage|label2"
msgid "Legend"
-msgstr "Mynegai"
+msgstr "Egluryn"
#: cui/uiconfig/ui/dimensionlinestabpage.ui:470
msgctxt "dimensionlinestabpage|STR_MEASURE_AUTOMATIC"
@@ -6575,7 +6575,7 @@ msgstr "Cyfeiriadur"
#: cui/uiconfig/ui/gallerythemedialog.ui:8
msgctxt "gallerythemedialog|GalleryThemeDialog"
msgid "Properties of %1"
-msgstr "Priodweddau “%1”"
+msgstr "Priodweddau %1"
#: cui/uiconfig/ui/gallerythemedialog.ui:135
msgctxt "gallerythemedialog|general"
diff --git a/source/cy/extensions/messages.po b/source/cy/extensions/messages.po
index e1764f25b27..a4fe84b2c95 100644
--- a/source/cy/extensions/messages.po
+++ b/source/cy/extensions/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: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2019-07-09 12:45+0000\n"
+"PO-Revision-Date: 2019-09-07 10:00+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1562676336.000000\n"
+"X-POOTLE-MTIME: 1567850439.000000\n"
#: extensions/inc/command.hrc:29
msgctxt "RID_RSC_ENUM_COMMAND_TYPE"
@@ -1948,7 +1948,7 @@ msgstr "Gwirio am ddiweddariad a fethwyd."
#: extensions/inc/strings.hrc:295
msgctxt "RID_UPDATE_STR_NO_UPD_FOUND"
msgid "%PRODUCTNAME %PRODUCTVERSION is up to date."
-msgstr "Mae %PRODUCTNAME %PRODUCTVERSION yn gyfoes."
+msgstr "Mae %PRODUCTNAME %PRODUCTVERSION yn gyfredol."
#: extensions/inc/strings.hrc:296
msgctxt "RID_UPDATE_STR_UPD_FOUND"
diff --git a/source/cy/filter/source/config/fragments/filters.po b/source/cy/filter/source/config/fragments/filters.po
index 0d6f7760cae..3614f8ee6d3 100644
--- a/source/cy/filter/source/config/fragments/filters.po
+++ b/source/cy/filter/source/config/fragments/filters.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-06-03 17:45+0200\n"
-"PO-Revision-Date: 2019-07-20 10:27+0000\n"
+"PO-Revision-Date: 2019-09-11 09:20+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1563618450.000000\n"
+"X-POOTLE-MTIME: 1568193621.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -473,7 +473,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 2007–365"
-msgstr "Word 2007–365 "
+msgstr "Word 2007–365"
#: MS_Word_2007_XML_Template.xcu
msgctxt ""
@@ -1301,7 +1301,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 2007–365"
-msgstr "Excel 2007–365 "
+msgstr "Excel 2007–365"
#: calc_MS_Excel_2007_XML_Template.xcu
msgctxt ""
diff --git a/source/cy/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/cy/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 9f8711f1c8a..e2175dadb1f 100644
--- a/source/cy/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/cy/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-07-20 14:00+0000\n"
+"PO-Revision-Date: 2019-09-11 09:52+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1563631225.000000\n"
+"X-POOTLE-MTIME: 1568195557.000000\n"
#: ActionTe.ulf
msgctxt ""
@@ -1670,7 +1670,7 @@ msgctxt ""
"OOO_CONTROL_124\n"
"LngText.text"
msgid "Build contributed in collaboration with the community by [Manufacturer]. For credits, see: https://www.documentfoundation.org"
-msgstr "Adeiledd wedi ei gyfrannu ar y cyd â'r gymuned gan [Manufacturer]. Mae cydnabyddiaeth i'w weld yn: http://www.documentfoundation.org"
+msgstr "Adeiledd wedi ei gyfrannu ar y cyd â'r gymuned gan [Manufacturer]. Mae cydnabyddiaeth i'w weld yn: https://www.documentfoundation.org"
#: Control.ulf
msgctxt ""
diff --git a/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po b/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po
index 2fcc98d5764..01c59f892fd 100644
--- a/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-08-28 19:39+0200\n"
-"PO-Revision-Date: 2019-08-31 09:24+0000\n"
+"PO-Revision-Date: 2019-09-11 09:29+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1567243479.000000\n"
+"X-POOTLE-MTIME: 1568194185.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -1832,7 +1832,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "F~ourier Analysis..."
-msgstr "Dadnsoddiad ~Fourier"
+msgstr "Dadansoddiad ~Fourier..."
#: CalcCommands.xcu
msgctxt ""
@@ -3650,7 +3650,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Anchor: To Cell (~resize with cell)"
-msgstr "Angori i ~gell (~newid maint gyda cell)"
+msgstr "Angori i Gell (~newid maint gyda cell)"
#: CalcCommands.xcu
msgctxt ""
@@ -3668,7 +3668,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Anchor to cell (move and ~resize with cell)"
-msgstr "Angori i gell (symud a newid maint gyda chell)"
+msgstr "Angori i gell (symud a ~newid maint gyda chell)"
#: CalcCommands.xcu
msgctxt ""
@@ -5000,7 +5000,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Legend..."
-msgstr "~Mynegai..."
+msgstr "~Egluryn..."
#: ChartCommands.xcu
msgctxt ""
@@ -5081,7 +5081,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format Legend"
-msgstr "Fformatio Allwedd"
+msgstr "Fformatio Egluryn"
#: ChartCommands.xcu
msgctxt ""
@@ -5090,7 +5090,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Legend..."
-msgstr "~Mynegai..."
+msgstr "~Egluryn..."
#: ChartCommands.xcu
msgctxt ""
@@ -5369,7 +5369,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format Wall..."
-msgstr "Wall Fformatio..."
+msgstr "Fformatio Wal..."
#: ChartCommands.xcu
msgctxt ""
@@ -5414,7 +5414,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Legend"
-msgstr "Mewnosod Mynegai"
+msgstr "Mewnosod Egluryn"
#: ChartCommands.xcu
msgctxt ""
@@ -5423,7 +5423,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Legend"
-msgstr "Dileu Mynegai"
+msgstr "Dileu Egluryn"
#: ChartCommands.xcu
msgctxt ""
@@ -5432,7 +5432,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format Legend..."
-msgstr "Fformatio Allwedd..."
+msgstr "Fformatio Egluryn..."
#: ChartCommands.xcu
msgctxt ""
@@ -5855,7 +5855,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Legend On/Off"
-msgstr "Mynegai Ymlaen/Diffodd"
+msgstr "Egluryn Ymlaen/Diffodd"
#: ChartCommands.xcu
msgctxt ""
@@ -5927,7 +5927,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Legend Position"
-msgstr "Safle Mynegai"
+msgstr "Safle Egluryn"
#: ChartCommands.xcu
msgctxt ""
@@ -7196,7 +7196,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Impress R~emote..."
-msgstr "~Rheolwr Pell Impress"
+msgstr "~Rheolwr Pell Impress..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8366,7 +8366,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Change Slide Master..."
-msgstr "Newid y Prif Sleid"
+msgstr "Newid y Prif Sleid..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9464,7 +9464,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Optimal Row Height"
-msgstr "Uchder Rhes Gorau "
+msgstr "Uchder Rhes Gorau"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -18097,7 +18097,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~New Style from Selection"
-msgstr "~Arddull Newydd o'r Dewis..."
+msgstr "~Arddull Newydd o'r Dewis"
#: GenericCommands.xcu
msgctxt ""
@@ -21013,7 +21013,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Send Feedback"
-msgstr "Anfon Adborth..."
+msgstr "Anfon Adborth"
#: GenericCommands.xcu
msgctxt ""
@@ -21040,7 +21040,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~User Guides"
-msgstr "~Canllawiau Defnyddwyr..."
+msgstr "~Canllawiau Defnyddwyr"
#: GenericCommands.xcu
msgctxt ""
@@ -21067,7 +21067,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Open the release notes for the installed version in the default browser"
-msgstr "Agorwch nodiadau ryddhau y fersiwn sydd wedi ei osod yn y porwr rhagosodedig."
+msgstr "Agorwch nodiadau ryddhau y fersiwn sydd wedi ei osod yn y porwr rhagosodedig"
#: GenericCommands.xcu
msgctxt ""
@@ -21076,7 +21076,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "License Information"
-msgstr "Manylion Trwyddedu..."
+msgstr "Manylion Trwyddedu"
#: GenericCommands.xcu
msgctxt ""
@@ -21823,7 +21823,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Email Document..."
-msgstr "_E-bostio Dogfen..."
+msgstr "~E-bostio Dogfen..."
#: GenericCommands.xcu
msgctxt ""
@@ -26314,7 +26314,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "T~ooltips"
-msgstr "_Cynghorion"
+msgstr "~Cynghorion"
#: WriterCommands.xcu
msgctxt ""
@@ -26557,7 +26557,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Caption"
-msgstr "Mewnosod Capsiwn"
+msgstr "Mewnosod Egluryn"
#: WriterCommands.xcu
msgctxt ""
@@ -26566,7 +26566,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Insert Caption..."
-msgstr "Mewnosod Pennawd..."
+msgstr "Mewnosod Egluryn..."
#: WriterCommands.xcu
msgctxt ""
@@ -30769,7 +30769,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Box List Green"
-msgstr " Rhestr Gwyrdd Blwch"
+msgstr "Rhestr Gwyrdd Blwch"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/cy/readlicense_oo/docs.po b/source/cy/readlicense_oo/docs.po
index 4c0fd0be58c..487b103c62c 100644
--- a/source/cy/readlicense_oo/docs.po
+++ b/source/cy/readlicense_oo/docs.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-11-12 12:23+0100\n"
-"PO-Revision-Date: 2018-11-19 14:10+0000\n"
+"PO-Revision-Date: 2019-09-11 09:26+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1542636641.000000\n"
+"X-POOTLE-MTIME: 1568193965.000000\n"
#: readme.xrm
msgctxt ""
@@ -702,7 +702,7 @@ msgctxt ""
"reportbugs1\n"
"readmeitem.text"
msgid "Our system for reporting, tracking and solving bugs is currently Bugzilla, hosted at <a href=\"https://bugs.documentfoundation.org/\">https://bugs.documentfoundation.org/</a>. We encourage all users to feel entitled and welcome to report bugs that may arise on your particular platform. Energetic reporting of bugs is one of the most important contributions that the user community can make to the ongoing development and improvement of ${PRODUCTNAME}."
-msgstr "Bugzilla yw ein system ar gyfer adrodd, olrhain a datrys bygiau ar hyn o bryd, sy'n cael ei gynnal, diolch i <a href=\"https://bugs.documentfoundation.org/\">https://bugs.documentfoundation.org/</a>. Rydym yn annog pob defnyddwyr i feddu'r hawl a bod croeso i roi gwybod am wallau a all godi ar eich platfform penodol. Mae adrodd egnïol ar wallau yn un o'r cyfraniadau pwysicaf y gall y gymuned ddefnyddwyr ei wneud i ddatblygiad a gwelliant parhaus ${PRODUCTNAME}."
+msgstr "Bugzilla yw ein system ar gyfer adrodd, olrhain a datrys bygiau ar hyn o bryd, sy'n cael ei gynnal, diolch i <a href=\"https://bugs.documentfoundation.org/\">https://bugs.documentfoundation.org/</a>. Rydym yn annog pob defnyddwyr i feddu'r hawl a bod croeso i roi gwybod am wallau a all godi ar eich platfform penodol. Mae adrodd egnïol ar wallau yn un o'r cyfraniadau pwysicaf y gall y gymuned ddefnyddwyr ei wneud i ddatblygiad a gwelliant parhaus ${PRODUCTNAME}."
#: readme.xrm
msgctxt ""
diff --git a/source/cy/sc/messages.po b/source/cy/sc/messages.po
index d2ffe38853a..21e73cbba7e 100644
--- a/source/cy/sc/messages.po
+++ b/source/cy/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: 2019-08-28 19:39+0200\n"
-"PO-Revision-Date: 2019-08-31 09:28+0000\n"
+"PO-Revision-Date: 2019-09-11 10:16+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1567243726.000000\n"
+"X-POOTLE-MTIME: 1568196963.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -639,12 +639,12 @@ msgstr "Gwirio Sillafu"
#: sc/inc/globstr.hrc:144
msgctxt "STR_TABLE_AND"
msgid "AND"
-msgstr "AND "
+msgstr "AND"
#: sc/inc/globstr.hrc:145
msgctxt "STR_TABLE_OR"
msgid "OR"
-msgstr "OR "
+msgstr "OR"
#: sc/inc/globstr.hrc:146
msgctxt "STR_TABLE_DEF"
@@ -1882,7 +1882,7 @@ msgstr "Nid yw arae nythog yn cael eu cynnal bob tro."
#: sc/inc/globstr.hrc:395
msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
msgid "Unsupported inline array content."
-msgstr "Cynnwys arae ar-lein heb ei gynnal"
+msgstr "Cynnwys arae ar-lein heb ei gynnal."
#: sc/inc/globstr.hrc:396
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
@@ -2304,7 +2304,7 @@ msgstr "a"
#: sc/inc/globstr.hrc:471
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
-msgstr "Nid oes modd creu, dileu na newid Fformatau Amodol mewn dalennau diogelwyd!"
+msgstr "Nid oes modd creu, dileu na newid Fformatau Amodol mewn dalennau diogelwyd."
#: sc/inc/globstr.hrc:472
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
@@ -2554,7 +2554,7 @@ msgstr "Enw annilys. Nid oes caniatâd i gyfeirio at gell, neu ystod o gellau."
#: sc/inc/globstr.hrc:516
msgctxt "STR_ERR_LONG_LINK_FORMULA_NEEDING_CHECK"
msgid "External content disabled."
-msgstr "Cynnwys allanol wedi ei analluogi"
+msgstr "Cynnwys allanol wedi ei analluogi."
#: sc/inc/pvfundlg.hrc:27
msgctxt "SCSTR_DPFUNCLISTBOX"
@@ -11716,7 +11716,7 @@ msgstr "Math"
#: sc/inc/scfuncs.hrc:3424
msgctxt "SC_OPCODE_MATCH"
msgid "Type can take the value 1 (first column array ascending), 0 (exact match or wildcard or regular expression match) or -1 (first column array descending) and determines the criteria to be used for comparison purposes."
-msgstr "Mae math yn gallu cymryd y gwerth 1 (colofn cyntaf yr arae'n esgyn), 0 cydweddiad union neu gerdyn gwyllt neu gydweddiad mynegiad rheolaidd) neu _1 (colofn gyntaf arae'n disgyn) ac yn pennu'r meini prawf i'w defnyddio ar gyfer pwrpas cymharu."
+msgstr "Mae math yn gallu cymryd y gwerth 1 (colofn cyntaf yr arae'n esgyn), 0 (cydweddiad union neu gerdyn gwyllt neu gydweddiad mynegiad rheolaidd) neu _1 (colofn gyntaf arae'n disgyn) ac yn pennu'r meini prawf i'w defnyddio ar gyfer pwrpas cymharu."
#: sc/inc/scfuncs.hrc:3430
msgctxt "SC_OPCODE_OFFSET"
@@ -12716,7 +12716,7 @@ msgstr "Pa enghraifft o'r hen destun i'w newid."
#: sc/inc/scfuncs.hrc:3822
msgctxt "SC_OPCODE_REGEX"
msgid "Matches and extracts or optionally replaces text using regular expressions."
-msgstr "Cydweddiadau ac echdynion neu o ddewis yn cymryd lle testun gan ddefnyddio mynegiadau rheolaidd"
+msgstr "Cydweddiadau ac echdynion neu o ddewis yn cymryd lle testun gan ddefnyddio mynegiadau rheolaidd."
#: sc/inc/scfuncs.hrc:3823
msgctxt "SC_OPCODE_REGEX"
@@ -12746,7 +12746,7 @@ msgstr "Amnewidyn"
#: sc/inc/scfuncs.hrc:3828
msgctxt "SC_OPCODE_REGEX"
msgid "The replacement text and references to capture groups."
-msgstr "Y restun amnewid a cyfeiriadau i gipio grwpiau"
+msgstr "Y restun amnewid a cyfeiriadau i gipio grwpiau."
#: sc/inc/scfuncs.hrc:3829
msgctxt "SC_OPCODE_REGEX"
@@ -13552,7 +13552,7 @@ msgstr "GrwpioynôlColofnau"
#: sc/inc/scfuncs.hrc:4128
msgctxt "SC_OPCODE_FOURIER"
msgid "Flag to indicate whether the array is grouped by columns or not (default TRUE)."
-msgstr "Nodi i ddangos p'un ai mae'r arae wedi ei grwpio yn ôl colofnau neu beidio (rhagosodedig TRUE)"
+msgstr "Nodi i ddangos p'un ai mae'r arae wedi ei grwpio yn ôl colofnau neu beidio (rhagosodedig TRUE)."
#: sc/inc/scfuncs.hrc:4129
msgctxt "SC_OPCODE_FOURIER"
@@ -13562,7 +13562,7 @@ msgstr "Gwrthdro"
#: sc/inc/scfuncs.hrc:4130
msgctxt "SC_OPCODE_FOURIER"
msgid "Flag to indicate whether an inverse DFT is to be computed (default FALSE)."
-msgstr "Nodi i ddangos p'un ai yw DFT gwrthdro i gael ei gyfrifo (rhagosodiad FALSE)"
+msgstr "Nodi i ddangos p'un ai yw DFT gwrthdro i gael ei gyfrifo (rhagosodiad FALSE)."
#: sc/inc/scfuncs.hrc:4131
msgctxt "SC_OPCODE_FOURIER"
@@ -13572,7 +13572,7 @@ msgstr "Polar"
#: sc/inc/scfuncs.hrc:4132
msgctxt "SC_OPCODE_FOURIER"
msgid "Flag to indicate whether to return the results in polar form (default FALSE)."
-msgstr "Nodi i ddangos p'un ai i ddychwelyd y canlyniadau yn ffurf polar (rhagosodiad FALSE)"
+msgstr "Nodi i ddangos p'un ai i ddychwelyd y canlyniadau yn ffurf polar (rhagosodiad FALSE)."
#: sc/inc/scfuncs.hrc:4133
msgctxt "SC_OPCODE_FOURIER"
@@ -13582,7 +13582,7 @@ msgstr "MinimumMagnitude"
#: sc/inc/scfuncs.hrc:4134
msgctxt "SC_OPCODE_FOURIER"
msgid "In case of Polar=TRUE, the frequency components below this magnitude are clipped out (default 0.0)."
-msgstr "Yn achos Polar=TRUE, mae'r cydrannau amledd islaw y manit yma wedi eu clipio allan (rhagosodiad 0.0)"
+msgstr "Yn achos Polar=TRUE, mae'r cydrannau amledd islaw y manit yma wedi eu clipio allan (rhagosodiad 0.0)."
#: sc/inc/scstyles.hrc:29
msgctxt "RID_CELLSTYLEFAMILY"
@@ -13992,7 +13992,7 @@ msgstr "(Modd rhagolwg)"
#: sc/inc/strings.hrc:105
msgctxt "SCSTR_PRINTOPT_PAGES"
msgid "Pages:"
-msgstr "Tudalennau"
+msgstr "Tudalennau:"
#: sc/inc/strings.hrc:106
msgctxt "SCSTR_PRINTOPT_SUPPRESSEMPTY"
@@ -14017,7 +14017,7 @@ msgstr "Argraffu Celloedd Dethol"
#: sc/inc/strings.hrc:110
msgctxt "SCSTR_PRINTOPT_FROMWHICH"
msgid "From which:"
-msgstr "O'r rhai"
+msgstr "O'r rhai:"
#: sc/inc/strings.hrc:111
msgctxt "SCSTR_PRINTOPT_PRINTALLPAGES"
@@ -14928,7 +14928,7 @@ msgstr "Uwch"
#: sc/inc/strings.hrc:308
msgctxt "STR_MESSAGE_INVALID_INPUT_RANGE"
msgid "Input range is invalid."
-msgstr "Mae'r ystod mewnbwn yn annilys"
+msgstr "Mae'r ystod mewnbwn yn annilys."
#: sc/inc/strings.hrc:309
msgctxt "STR_MESSAGE_INVALID_OUTPUT_ADDR"
@@ -14954,7 +14954,7 @@ msgstr "Pŵer"
#: sc/inc/strings.hrc:314
msgctxt "STR_MESSAGE_XINVALID_RANGE"
msgid "Independent variable(s) range is not valid."
-msgstr "Nid yw ystod newidol(ion) annibynnol yn ddilys/"
+msgstr "Nid yw ystod newidol(ion) annibynnol yn ddilys."
#: sc/inc/strings.hrc:315
msgctxt "STR_MESSAGE_YINVALID_RANGE"
@@ -14969,12 +14969,12 @@ msgstr "Rhaid i'r lefel hyder fod yn y cyfwng (0, 1)."
#: sc/inc/strings.hrc:317
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_COLUMN"
msgid "Y variable range cannot have more than 1 column."
-msgstr "Nid yw ystod newidiolyn Y yn gallu cael mwy nag 1 colofn"
+msgstr "Nid yw ystod newidiolyn Y yn gallu cael mwy nag 1 colofn."
#: sc/inc/strings.hrc:318
msgctxt "STR_MESSAGE_YVARIABLE_MULTI_ROW"
msgid "Y variable range cannot have more than 1 row."
-msgstr "Nid yw ystod newidiolyn Y yn gallu cael mwy nag 1 rhes"
+msgstr "Nid yw ystod newidiolyn Y yn gallu cael mwy nag 1 rhes."
#: sc/inc/strings.hrc:319
msgctxt "STR_MESSAGE_UNIVARIATE_NUMOBS_MISMATCH"
@@ -15163,22 +15163,22 @@ msgstr "Cyfnod"
#: sc/inc/strings.hrc:359
msgctxt "STR_MESSAGE_INVALID_NUMCOLS"
msgid "More than two columns selected in grouped by column mode."
-msgstr "Mwy nag dwy golofn wedi eu dewis yn y modd grwpio yn ôl colofn"
+msgstr "Mwy nag dwy golofn wedi eu dewis yn y modd grwpio yn ôl colofn."
#: sc/inc/strings.hrc:360
msgctxt "STR_MESSAGE_INVALID_NUMROWS"
msgid "More than two rows selected in grouped by row mode."
-msgstr "Mwy na dwy res wedi eu dewis yn y modd grwpio yn ôl rhes"
+msgstr "Mwy na dwy res wedi eu dewis yn y modd grwpio yn ôl rhes."
#: sc/inc/strings.hrc:361
msgctxt "STR_MESSAGE_NODATA_IN_RANGE"
msgid "No data in input range."
-msgstr "Dim data yn yr ystod mewnbwn"
+msgstr "Dim data yn yr ystod mewnbwn."
#: sc/inc/strings.hrc:362
msgctxt "STR_MESSAGE_OUTPUT_TOO_LONG"
msgid "Output is too long to write into the sheet."
-msgstr "Mae'r allbwn yn rhy hir i'w ysgrifennu i'r ddalen"
+msgstr "Mae'r allbwn yn rhy hir i'w ysgrifennu i'r ddalen."
#: sc/inc/strings.hrc:363
msgctxt "STR_INPUT_DATA_RANGE"
@@ -15390,7 +15390,7 @@ msgstr "D_ewisiadau"
#: sc/uiconfig/scalc/ui/aggregatefunctionentry.ui:21
msgctxt "aggregatefunctionentry|name"
msgid "Aggregate Functions"
-msgstr "Swyddogaethau cyfanred:"
+msgstr "Swyddogaethau Cyfanred"
#: sc/uiconfig/scalc/ui/aggregatefunctionentry.ui:37
msgctxt "aggregatefunctionentry|type"
@@ -17036,7 +17036,7 @@ msgstr "Cofnod _Nesaf"
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
-msgstr "Ystodau Cronfa Ddata:"
+msgstr "Ystodau Cronfa Ddata: "
#: sc/uiconfig/scalc/ui/dataproviderentry.ui:46
msgctxt "dataproviderentry|url"
@@ -17136,7 +17136,7 @@ msgstr "Swm Uchaf Rhesi"
#: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:21
msgctxt "datetimetransformationentry|name"
msgid "Date Time Transformations"
-msgstr "Trawsnewidiadau Amser Dyddiad "
+msgstr "Trawsnewidiadau Amser Dyddiad"
#: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:37
msgctxt "datetimetransformationentry|type"
@@ -18566,7 +18566,7 @@ msgstr "Enw"
#: sc/uiconfig/scalc/ui/managenamesdialog.ui:140
msgctxt "managenamesdialog|expression"
msgid "Range or formula expression"
-msgstr "Mynegiad ystod neu fformiwla:"
+msgstr "Mynegiad ystod neu fformiwla"
#: sc/uiconfig/scalc/ui/managenamesdialog.ui:153
msgctxt "managenamesdialog|scope"
@@ -19018,7 +19018,7 @@ msgstr "~Golwg"
#: sc/uiconfig/scalc/ui/notebookbar.ui:10483
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
-msgstr "~Delwedd"
+msgstr "_Delwedd"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11634
msgctxt "CalcNotebookbar|ImageLabel"
@@ -19028,7 +19028,7 @@ msgstr "~Delwedd"
#: sc/uiconfig/scalc/ui/notebookbar.ui:12853
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
-msgstr "~Lluniadu"
+msgstr "_Lluniadu"
#: sc/uiconfig/scalc/ui/notebookbar.ui:12963
msgctxt "CalcNotebookbar|DrawLabel"
@@ -21150,12 +21150,12 @@ msgstr "Atchweliad"
#: sc/uiconfig/scalc/ui/regressiondialog.ui:109
msgctxt "regressiondialog|variable1-range-label"
msgid "Independent variable(s) (X) range:"
-msgstr "Ystod newidiolyn(ion) (X) annibynnol"
+msgstr "Ystod newidiolyn(ion) (X) annibynnol:"
#: sc/uiconfig/scalc/ui/regressiondialog.ui:148
msgctxt "regressiondialog|variable2-range-label"
msgid "Dependent variable (Y) range:"
-msgstr "Ystod newidiolyn(ion) (X) dibynnol"
+msgstr "Ystod newidiolyn (Y) dibynnol:"
#: sc/uiconfig/scalc/ui/regressiondialog.ui:185
msgctxt "regressiondialog|withlabels-check"
@@ -21230,7 +21230,7 @@ msgstr "Opsiynau"
#: sc/uiconfig/scalc/ui/replacenulltransformationentry.ui:21
msgctxt "replacenulltransformationentry|name"
msgid "Replace Null Transformation"
-msgstr "Colofnau ~Ar Ôl"
+msgstr "Amnewid Trawsnewidiad Nwl"
#: sc/uiconfig/scalc/ui/replacenulltransformationentry.ui:37
msgctxt "replacenulltransformationentry|type"
@@ -22560,12 +22560,12 @@ msgstr "Galluogi didoli naturiol"
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:91
msgctxt "sortoptionspage|includenotes"
msgid "Include boundary column(s) containing only comments"
-msgstr "Cynnwys colofnau ffiniol sy'n cynnwys dim ond sylwadau"
+msgstr "Cynnwys colofn(au) ffiniol sy'n cynnwys dim ond sylwadau"
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:106
msgctxt "sortoptionspage|includeimages"
msgid "Include boundary column(s) containing only images"
-msgstr "Cynnwys colofnau ffiniol sy'n cynnwys dim ond delweddau"
+msgstr "Cynnwys colofn(au) ffiniol sy'n cynnwys dim ond delweddau"
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:121
msgctxt "sortoptionspage|copyresult"
@@ -23205,7 +23205,7 @@ msgstr "Trefnu"
#: sc/uiconfig/scalc/ui/tabcolordialog.ui:72
msgctxt "tabcolordialog |label1"
msgid "Palette:"
-msgstr "Palet"
+msgstr "Palet:"
#: sc/uiconfig/scalc/ui/textimportcsv.ui:16
msgctxt "textimportcsv|TextImportCsvDialog"
diff --git a/source/cy/scaddins/messages.po b/source/cy/scaddins/messages.po
index 3d32dc50556..4cf9d6295aa 100644
--- a/source/cy/scaddins/messages.po
+++ b/source/cy/scaddins/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: 2018-02-27 15:06+0100\n"
-"PO-Revision-Date: 2019-08-31 09:28+0000\n"
+"PO-Revision-Date: 2019-09-07 09:48+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1567243738.000000\n"
+"X-POOTLE-MTIME: 1567849688.000000\n"
#: scaddins/inc/analysis.hrc:27
msgctxt "ANALYSIS_Workday"
@@ -3425,7 +3425,7 @@ msgstr "Math"
#: scaddins/inc/datefunc.hrc:33
msgctxt "DATE_FUNCDESC_DiffWeeks"
msgid "Type of calculation: Type=0 means the time interval, Type=1 means calendar weeks."
-msgstr "Math o gyfrifo: Math=0 yn golygu'r ysbaid, Math=1 yn golygu misoedd calendr."
+msgstr "Math o gyfrifo: Math=0 yn golygu'r cyfwng, Math=1 yn golygu misoedd calendr."
#: scaddins/inc/datefunc.hrc:38
msgctxt "DATE_FUNCDESC_DiffMonths"
diff --git a/source/cy/scp2/source/gnome.po b/source/cy/scp2/source/gnome.po
index ecf5e7c1ef7..0dfb2daac1d 100644
--- a/source/cy/scp2/source/gnome.po
+++ b/source/cy/scp2/source/gnome.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: 2018-10-02 17:56+0200\n"
-"PO-Revision-Date: 2018-10-04 09:10+0000\n"
+"PO-Revision-Date: 2019-09-11 09:12+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1538644234.000000\n"
+"X-POOTLE-MTIME: 1568193177.000000\n"
#: module_gnome.ulf
msgctxt ""
@@ -30,4 +30,4 @@ msgctxt ""
"STR_DESC_MODULE_OPTIONAL_GNOME\n"
"LngText.text"
msgid "System integration of %PRODUCTNAME %PRODUCTVERSION into GNOME Desktop Environment."
-msgstr "Integreiddiad system %PRODUCTNAME %PRODUCTVERSION i Amgylchedd Bwrdd Gwaith GNOME"
+msgstr "Integreiddiad system %PRODUCTNAME %PRODUCTVERSION i Amgylchedd Bwrdd Gwaith GNOME."
diff --git a/source/cy/scp2/source/ooo.po b/source/cy/scp2/source/ooo.po
index a2fdde22741..b26cc09b19d 100644
--- a/source/cy/scp2/source/ooo.po
+++ b/source/cy/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-08-28 19:39+0200\n"
-"PO-Revision-Date: 2019-08-30 09:54+0000\n"
+"PO-Revision-Date: 2019-09-11 09:52+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1567158878.000000\n"
+"X-POOTLE-MTIME: 1568195565.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
-msgstr "LibreOffice, y casgliad rhaglenni swyddfa gan The Document Foundation. Gweler http://www.documentfoundation.org"
+msgstr "LibreOffice, y casgliad rhaglenni swyddfa gan The Document Foundation. Gweler https://www.documentfoundation.org"
#: module_helppack.ulf
msgctxt ""
diff --git a/source/cy/sd/messages.po b/source/cy/sd/messages.po
index 654093686a0..c46b37c6c2e 100644
--- a/source/cy/sd/messages.po
+++ b/source/cy/sd/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: 2019-08-28 19:39+0200\n"
-"PO-Revision-Date: 2019-08-13 11:32+0000\n"
+"PO-Revision-Date: 2019-09-11 10:16+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1565695968.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1568196972.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
@@ -159,7 +159,7 @@ msgstr "~Pob Sleid"
#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "S~lides:"
-msgstr "S~leidiau"
+msgstr "S~leidiau:"
#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
@@ -184,7 +184,7 @@ msgstr "Pob ~Tudalen"
#: sd/inc/DocumentRenderer.hrc:92
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Pages:"
-msgstr "~Tudalennau"
+msgstr "~Tudalennau:"
#: sd/inc/DocumentRenderer.hrc:93
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
@@ -1173,7 +1173,7 @@ msgstr "Cyflwyniad"
#: sd/inc/strings.hrc:193
msgctxt "STR_IMPRESS_DOCUMENT_FULLTYPE_60"
msgid "%PRODUCTNAME Presentation format (Impress 6)"
-msgstr "Fformat Cyflwyno %PRODUCTNAME Impress 6)"
+msgstr "Fformat Cyflwyno %PRODUCTNAME (Impress 6)"
#: sd/inc/strings.hrc:194
msgctxt "STR_GRAPHIC_DOCUMENT"
@@ -2576,12 +2576,12 @@ msgstr "- Dim -"
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink: "
-msgstr "Cliciwch %s i ddilyn y ddolen:"
+msgstr "Cliciwch %s i ddilyn y ddolen: "
#: sd/inc/strings.hrc:490
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
-msgstr "Cliciwch i agor dolen:"
+msgstr "Cliciwch i agor dolen: "
#: sd/inc/strings.hrc:492
msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
@@ -3121,7 +3121,7 @@ msgstr "_Testun"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:9848
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
-msgstr "_Testun"
+msgstr "~Testun"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:10778
msgctxt "drawnotebookbar|TableMenuButton"
@@ -3143,7 +3143,7 @@ msgstr "Trosi"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:12005
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
-msgstr "~Delwedd"
+msgstr "_Delwedd"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:12117
msgctxt "drawnotebookbar|ImageLabel"
@@ -3153,7 +3153,7 @@ msgstr "~Delwedd"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:13680
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
-msgstr "~Lluniadu"
+msgstr "_Lluniadu"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:13789
msgctxt "drawnotebookbar|DrawLabel"
@@ -3163,7 +3163,7 @@ msgstr "~Lluniadu"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:14647
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
-msgstr "~Gwrthrych"
+msgstr "_Gwrthrych"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:14757
msgctxt "drawnotebookbar|ObjectLabel"
@@ -3293,7 +3293,7 @@ msgstr "_Testun"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:9394
msgctxt "notebookbar_draw_compact|ReferencesLabel"
msgid "T~ext"
-msgstr "_Testun"
+msgstr "~Testun"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:9524
msgctxt "notebookbar_draw_compact|TableMenuButton"
@@ -3358,7 +3358,7 @@ msgstr "~Ffurflen"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18940
msgctxt "notebookbar_draw_compact|PrintPreviewButton"
msgid "_Master"
-msgstr "~Prif"
+msgstr "_Prif"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18992
msgctxt "notebookbar_draw_compact|FormLabel"
@@ -4875,7 +4875,7 @@ msgstr "Trosi"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11750
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
-msgstr "~Delwedd"
+msgstr "_Delwedd"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11862
msgctxt "impressnotebookbar|ImageLabel"
@@ -4885,7 +4885,7 @@ msgstr "~Delwedd"
#: sd/uiconfig/simpress/ui/notebookbar.ui:13439
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
-msgstr "~Lluniadu"
+msgstr "_Lluniadu"
#: sd/uiconfig/simpress/ui/notebookbar.ui:13549
msgctxt "impressnotebookbar|DrawLabel"
@@ -4925,7 +4925,7 @@ msgstr "~Ffurflen"
#: sd/uiconfig/simpress/ui/notebookbar.ui:16091
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
-msgstr "~Prif"
+msgstr "_Prif"
#: sd/uiconfig/simpress/ui/notebookbar.ui:16957
msgctxt "ImpressNotebookbar|MasterLabel"
@@ -5100,7 +5100,7 @@ msgstr "~Ffurflen"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18482
msgctxt "notebookbar_impress_compact|PrintPreviewButton"
msgid "_Master"
-msgstr "~Prif"
+msgstr "_Prif"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18534
msgctxt "notebookbar_impress_compact|FormLabel"
diff --git a/source/cy/svtools/messages.po b/source/cy/svtools/messages.po
index f1081b24418..3166b55257d 100644
--- a/source/cy/svtools/messages.po
+++ b/source/cy/svtools/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:54+0200\n"
-"PO-Revision-Date: 2019-07-20 14:34+0000\n"
+"PO-Revision-Date: 2019-09-11 10:16+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1563633284.000000\n"
+"X-POOTLE-MTIME: 1568196982.000000\n"
#. To translators: tdf#125447 use no mnemonic in this string
#: include/svtools/strings.hrc:26
@@ -26,7 +26,7 @@ msgstr "Dadwneud: "
#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
msgid "Redo: "
-msgstr "Ail-wneud"
+msgstr "Ail-wneud: "
#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
@@ -41,7 +41,7 @@ msgstr "Testun difformat"
#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
-msgstr "Testun heb ei fformatio [TSV-Calc]"
+msgstr "Testun heb ei fformatio (TSV-Calc)"
#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
@@ -1577,17 +1577,17 @@ msgstr "Bwlch Mawr, Tenau Trwchus"
#: svtools/inc/borderline.hrc:26
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thick Thin, Small Gap"
-msgstr "Bwlch Bach, Trwchus Tenau "
+msgstr "Bwlch Bach, Trwchus Tenau"
#: svtools/inc/borderline.hrc:27
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thick Thin, Medium Gap"
-msgstr "Bwlch Canolig, Trwchus Tenau "
+msgstr "Bwlch Canolig, Trwchus Tenau"
#: svtools/inc/borderline.hrc:28
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thick Thin, Large Gap"
-msgstr "Bwlch Mawr, Trwchus Tenau "
+msgstr "Bwlch Mawr, Trwchus Tenau"
#: svtools/inc/borderline.hrc:29
msgctxt "RID_SVXSTR_BORDERLINE"
diff --git a/source/cy/svx/messages.po b/source/cy/svx/messages.po
index ab063103e9b..098038f583c 100644
--- a/source/cy/svx/messages.po
+++ b/source/cy/svx/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:54+0200\n"
-"PO-Revision-Date: 2019-08-31 09:30+0000\n"
+"PO-Revision-Date: 2019-09-11 10:16+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1567243851.000000\n"
+"X-POOTLE-MTIME: 1568196988.000000\n"
#: include/svx/strings.hrc:25
msgctxt "STR_ObjNameSingulNONE"
@@ -1732,52 +1732,52 @@ msgstr "Cysgod persbectif"
#: include/svx/strings.hrc:370
msgctxt "SIP_SA_CAPTIONTYPE"
msgid "Type of legend"
-msgstr "Math fynegai"
+msgstr "Math o egluryn"
#: include/svx/strings.hrc:371
msgctxt "SIP_SA_CAPTIONFIXEDANGLE"
msgid "Fixed legend angle"
-msgstr "Dewis ongl fwyaf"
+msgstr "Ongl gosodedig egluryn"
#: include/svx/strings.hrc:372
msgctxt "SIP_SA_CAPTIONANGLE"
msgid "Legend angle"
-msgstr "Ongl mynegai"
+msgstr "Ongl egluryn"
#: include/svx/strings.hrc:373
msgctxt "SIP_SA_CAPTIONGAP"
msgid "Legend lines spacing"
-msgstr "Bylchu i linellau mynegai"
+msgstr "Bylchu llinellau egluryn"
#: include/svx/strings.hrc:374
msgctxt "SIP_SA_CAPTIONESCDIR"
msgid "Legend exit alignment"
-msgstr "Aliniad gadael mynegai"
+msgstr "Aliniad gadael egluryn"
#: include/svx/strings.hrc:375
msgctxt "SIP_SA_CAPTIONESCISREL"
msgid "Relative exit legend"
-msgstr "Mynegai gadael perthynol"
+msgstr "Mynegai gadael egluryn"
#: include/svx/strings.hrc:376
msgctxt "SIP_SA_CAPTIONESCREL"
msgid "Relative exit legend"
-msgstr "Mynegai gadael perthynol"
+msgstr "Mynegai gadael egluryn"
#: include/svx/strings.hrc:377
msgctxt "SIP_SA_CAPTIONESCABS"
msgid "Absolute exit of legend"
-msgstr "Diwedd terfynol mynegai"
+msgstr "Diwedd terfynol egluryn"
#: include/svx/strings.hrc:378
msgctxt "SIP_SA_CAPTIONLINELEN"
msgid "Legend line length"
-msgstr "Hyd llinell mynegai"
+msgstr "Hyd llinell egluryn"
#: include/svx/strings.hrc:379
msgctxt "SIP_SA_CAPTIONFITLINELEN"
msgid "AutoLength of legend lines"
-msgstr "AwtoHyd llinellau mynegai"
+msgstr "AwtoHyd llinellau egluryn"
#: include/svx/strings.hrc:380
msgctxt "SIP_SA_ECKENRADIUS"
@@ -2914,7 +2914,7 @@ msgstr "Gwyrdd (Allan o'r Gamut)"
#: include/svx/strings.hrc:612
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
-msgstr "Gwyrdd Chartreuse Allan o'r Gamut)"
+msgstr "Gwyrdd Chartreuse (Allan o'r Gamut)"
#: include/svx/strings.hrc:613
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
@@ -5801,7 +5801,7 @@ msgstr "Degol"
#: include/svx/strings.hrc:1226
msgctxt "RID_SVXSTR_INSERT_HELPTEXT"
msgid "Insert mode. Click to change to overwrite mode."
-msgstr "Modd mewnosod. Cliciwch i newid i'r modd trosysgrifo"
+msgstr "Modd mewnosod. Cliciwch i newid i'r modd trosysgrifo."
#: include/svx/strings.hrc:1227
msgctxt "RID_SVXSTR_OVERWRITE_HELPTEXT"
@@ -6427,7 +6427,7 @@ msgid ""
"Do you want to save the modified version instead?"
msgstr ""
"Mae'r ddelwedd wedi ei newid. Bydd y ddelwedd wreiddiol yn cael ei chadw.\n"
-"Hoffech chi gadw'r fersiwn newydd y ei lle ?"
+"Hoffech chi gadw'r fersiwn newydd y ei lle?"
#: include/svx/strings.hrc:1368
msgctxt "RID_SUBSETMAP"
@@ -12831,7 +12831,7 @@ msgstr "Diweddar"
#: svx/uiconfig/ui/oldcolorwindow.ui:162
msgctxt "oldcolorwindow|color_picker_button"
msgid "Custom Color…"
-msgstr "Lliw Cyfaddas"
+msgstr "Lliw Cyfaddas…"
#: svx/uiconfig/ui/optgridpage.ui:75
msgctxt "optgridpage|usegridsnap"
diff --git a/source/cy/sw/messages.po b/source/cy/sw/messages.po
index fbf97c15c6c..5f7dba52fe5 100644
--- a/source/cy/sw/messages.po
+++ b/source/cy/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: 2019-07-30 19:49+0200\n"
-"PO-Revision-Date: 2019-08-31 09:31+0000\n"
+"PO-Revision-Date: 2019-09-11 09:38+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1567243904.000000\n"
+"X-POOTLE-MTIME: 1568194718.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -1720,7 +1720,7 @@ msgstr "Ystadegau"
#: sw/inc/strings.hrc:255
msgctxt "STR_OUTLINENUMBERING_DISABLED"
msgid "This option is disabled when chapter numbering is assigned to a paragraph style"
-msgstr "Mae'r dewis hwn wedi ei analluogi pan mae rhifo pennawd wedi ei ddynodi i arddull paragraff."
+msgstr "Mae'r dewis hwn wedi ei analluogi pan mae rhifo pennawd wedi ei ddynodi i arddull paragraff"
#. Statusbar-titles
#: sw/inc/strings.hrc:257
@@ -1771,7 +1771,7 @@ msgstr "Cysylltnodi..."
#: sw/inc/strings.hrc:266
msgctxt "STR_STATSTR_TOX_INSERT"
msgid "Inserting Index..."
-msgstr "Mewnosod Mynegai..."
+msgstr "Wrthi'n Mewnosod Mynegai..."
#: sw/inc/strings.hrc:267
msgctxt "STR_STATSTR_TOX_UPDATE"
@@ -1871,7 +1871,7 @@ msgstr "Testun Asiaidd: "
#: sw/inc/strings.hrc:286
msgctxt "STR_CTL_FONT"
msgid "CTL text: "
-msgstr "Testun CTL:"
+msgstr "Testun CTL: "
#: sw/inc/strings.hrc:287
msgctxt "STR_REDLINE_UNKNOWN_AUTHOR"
@@ -2725,7 +2725,7 @@ msgstr "Fformatio cell"
#: sw/inc/strings.hrc:465
msgctxt "STR_INSERT_TOX"
msgid "Insert index/table"
-msgstr "Mewnosod mynegai"
+msgstr "Mewnosod mynegai/tabl"
#: sw/inc/strings.hrc:466
msgctxt "STR_CLEAR_TOX_RANGE"
@@ -6959,22 +6959,22 @@ msgstr "Dewisiadau Hidl ASCII"
#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:104
msgctxt "asciifilterdialog|label2"
msgid "_Character set:"
-msgstr "_Set nod"
+msgstr "_Set nod:"
#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:118
msgctxt "asciifilterdialog|fontft"
msgid "Default fonts:"
-msgstr "Ffontiau rhagosodedig"
+msgstr "Ffontiau rhagosodedig:"
#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:132
msgctxt "asciifilterdialog|languageft"
msgid "Lan_guage:"
-msgstr "I_aith"
+msgstr "I_aith:"
#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:146
msgctxt "asciifilterdialog|label5"
msgid "_Paragraph break:"
-msgstr "_Toriad paragraff"
+msgstr "_Toriad paragraff:"
#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:184
msgctxt "asciifilterdialog|crlf"
@@ -7029,7 +7029,7 @@ msgstr "Rhagolwg"
#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:210
msgctxt "assignfieldsdialog|ST_MATCHESTO"
msgid "Matches to field"
-msgstr "Cydweddiad i faes:"
+msgstr "Cydweddiad i faes"
#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:236
msgctxt "assignfieldsdialog|PREVIEW_LABEL"
@@ -7439,7 +7439,7 @@ msgstr "Rhiff ffôn cartref"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:105
msgctxt "businessdatapage|faxft"
msgid "Homepage/email:"
-msgstr "Tudalen gartref/e-bost"
+msgstr "Tudalen gartref/e-bost:"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:127
msgctxt "businessdatapage|company-atkobject"
@@ -11453,7 +11453,7 @@ msgstr "Newid Cynllun Bloc Cyfeiriadau a Chyfarchiad"
#: sw/uiconfig/swriter/ui/mmmailbody.ui:8
msgctxt "mmmailbody|MailBodyDialog"
msgid "Email Message"
-msgstr "Neges E-bost:"
+msgstr "Neges E-bost"
#: sw/uiconfig/swriter/ui/mmmailbody.ui:90
msgctxt "mmmailbody|bodyft"
@@ -11528,7 +11528,7 @@ msgstr "_Llythyr"
#: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:94
msgctxt "mmoutputtypepage|email"
msgid "_Email message"
-msgstr "Neges _e-bost:"
+msgstr "Neges _e-bost"
#: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:134
msgctxt "mmoutputtypepage|label1"
@@ -12013,7 +12013,7 @@ msgstr "Mynegai Defnyddiwr Newydd"
#: sw/uiconfig/swriter/ui/notebookbar.ui:2193
msgctxt "WriterNotebookbar|FileMenuButton"
msgid "_File"
-msgstr "_Ffeil:"
+msgstr "_Ffeil"
#: sw/uiconfig/swriter/ui/notebookbar.ui:2213
msgctxt "WriterNotebookbar|HelpMenuButton"
@@ -12098,7 +12098,7 @@ msgstr "~Tabl"
#: sw/uiconfig/swriter/ui/notebookbar.ui:12380
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
-msgstr "~Delwedd"
+msgstr "_Delwedd"
#: sw/uiconfig/swriter/ui/notebookbar.ui:12480
msgctxt "WriterNotebookbar|ImageLabel"
@@ -12108,7 +12108,7 @@ msgstr "~Delwedd"
#: sw/uiconfig/swriter/ui/notebookbar.ui:13844
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
-msgstr "~Lluniadu"
+msgstr "_Lluniadu"
#: sw/uiconfig/swriter/ui/notebookbar.ui:13954
msgctxt "WriterNotebookbar|DrawLabel"
@@ -13413,7 +13413,7 @@ msgstr "Defnyddio fel _Rhagosodedig"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:107
msgctxt "optcompatpage|label11"
msgid "Compatibility options for “%DOCNAME”"
-msgstr "Dewisiadau cydnawsedd '%DOCNAME'"
+msgstr "Dewisiadau cydnawsedd “%DOCNAME”"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:166
msgctxt "optcompatpage|globalcompatoptions"
@@ -14912,7 +14912,7 @@ msgstr "Rhif ffôn cartref"
#: sw/uiconfig/swriter/ui/privateuserpage.ui:105
msgctxt "privateuserpage|faxft"
msgid "Homepage/email:"
-msgstr "Tudalen gartref/e-bost"
+msgstr "Tudalen gartref/e-bost:"
#: sw/uiconfig/swriter/ui/privateuserpage.ui:127
msgctxt "privateuserpage|firstname-atkobject"
@@ -17286,7 +17286,7 @@ msgstr "_Testun cudd"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:237
msgctxt "viewoptionspage|hiddenparafield"
msgid "Hidden p_aragraphs"
-msgstr "~Paragraffau cudd"
+msgstr "_Paragraffau cudd"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:257
msgctxt "viewoptionspage|fieldslabel"
diff --git a/source/cy/swext/mediawiki/help.po b/source/cy/swext/mediawiki/help.po
index f2a6dfb6441..3c5c2c1e644 100644
--- a/source/cy/swext/mediawiki/help.po
+++ b/source/cy/swext/mediawiki/help.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-11-15 13:53+0100\n"
-"PO-Revision-Date: 2018-11-19 14:40+0000\n"
+"PO-Revision-Date: 2019-09-11 09:53+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1542638425.000000\n"
+"X-POOTLE-MTIME: 1568195583.000000\n"
#: help.tree
msgctxt ""
@@ -326,7 +326,7 @@ msgctxt ""
"par_id7631458\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the URL of a MediaWiki server, starting with \"https://\".</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Rhowch URL gweinydd MediaWiki, yn cychwyn gyda http://</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Rhowch URL gweinydd MediaWiki, yn cychwyn gyda \"https://\"</ahelp>"
#: wikiaccount.xhp
msgctxt ""
@@ -358,7 +358,7 @@ msgctxt ""
"par_id3112582\n"
"help.text"
msgid "Enter the Internet address of a wiki server in a format like “https://wiki.documentfoundation.org” or copy the URL from a web browser."
-msgstr "Rhowch gyfeiriad Rhyngrwyd gweinyddwr wiki mewn fformat tebyg i “http://wiki.documentfoundation.org” neu gopïo'r URL o borwr gwe."
+msgstr "Rhowch gyfeiriad Rhyngrwyd gweinyddwr wiki mewn fformat tebyg i “https://wiki.documentfoundation.org” neu gopïo'r URL o borwr gwe."
#: wikiaccount.xhp
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"par_id2486342\n"
"help.text"
msgid "<ahelp hid=\".\">Enter an optional short summary or comment.</ahelp> See <link href=\"https://meta.wikimedia.org/wiki/Help:Edit_summary\"><emph>https://meta.wikimedia.org/wiki/Help:Edit_summary</emph></link>."
-msgstr "<ahelp hid=\".\">Rhowch grynodeb neu sylw byr.</ahelp> Gw. <link href=\"https://meta.wikimedia.org/wiki/Help:Edit_summary\"><emph>http://meta.wikimedia.org/wiki/Help:Edit_summary</emph></link>."
+msgstr "<ahelp hid=\".\">Rhowch grynodeb neu sylw byr.</ahelp> Gw. <link href=\"https://meta.wikimedia.org/wiki/Help:Edit_summary\"><emph>https://meta.wikimedia.org/wiki/Help:Edit_summary</emph></link>."
#: wikisend.xhp
msgctxt ""
diff --git a/source/cy/vcl/messages.po b/source/cy/vcl/messages.po
index 0ec61aeaa1b..0b384121fad 100644
--- a/source/cy/vcl/messages.po
+++ b/source/cy/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: 2019-07-03 20:23+0200\n"
-"PO-Revision-Date: 2019-07-20 14:34+0000\n"
+"PO-Revision-Date: 2019-09-11 09:21+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1563633251.000000\n"
+"X-POOTLE-MTIME: 1568193673.000000\n"
#. To translators: This is the first entry of a sequence of paper size names
#: vcl/inc/print.hrc:28
@@ -796,7 +796,7 @@ msgstr "Arddull Ffrâm: "
#: vcl/inc/strings.hrc:102
msgctxt "STR_FPICKER_IMAGE_ANCHOR"
msgid "A~nchor: "
-msgstr "~Angor:"
+msgstr "~Angor: "
#: vcl/inc/strings.hrc:103
msgctxt "STR_FPICKER_SELECTION"
@@ -1205,7 +1205,7 @@ msgstr "Glyff Olaf ar Linellau Eildro"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:43
msgctxt "STR_FONT_FEATURE_ID_FRAC"
msgid "Fraction style:"
-msgstr "Arddull ffracsiynau"
+msgstr "Arddull ffracsiynau:"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:44
msgctxt "STR_FONT_FEATURE_ID_FRAC_PARAM_1"
@@ -1420,7 +1420,7 @@ msgstr "Isysgrif"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:86
msgctxt "STR_FONT_FEATURE_ID_SUPS"
msgid "Superscript"
-msgstr "Uwchysgrif "
+msgstr "Uwchysgrif"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:87
msgctxt "STR_FONT_FEATURE_ID_SWSH"
@@ -1525,7 +1525,7 @@ msgstr "Rhowch eich data dilysu ar gyfer gweinydd “%s”"
#: vcl/uiconfig/ui/cupspassworddialog.ui:145
msgctxt "cupspassworddialog|label1"
msgid "_Domain:"
-msgstr "_Parth"
+msgstr "_Parth:"
#: vcl/uiconfig/ui/editmenu.ui:12
msgctxt "editmenu|undo"
@@ -1715,7 +1715,7 @@ msgstr "_Pob tudalen"
#: vcl/uiconfig/ui/printdialog.ui:556
msgctxt "printdialog|rbPageRange"
msgid "_Pages:"
-msgstr "_Tudalen"
+msgstr "_Tudalen:"
#: vcl/uiconfig/ui/printdialog.ui:577
msgctxt "printdialog|pagerange"
@@ -1760,7 +1760,7 @@ msgstr "_Coladu"
#: vcl/uiconfig/ui/printdialog.ui:758
msgctxt "printdialog|cbPrintOrder"
msgid "_Order:"
-msgstr "_Trefn"
+msgstr "_Trefn:"
#: vcl/uiconfig/ui/printdialog.ui:780
msgctxt "printdialog|rbRangeSelection"
@@ -1780,12 +1780,12 @@ msgstr "Cyfeiriad:"
#: vcl/uiconfig/ui/printdialog.ui:881
msgctxt "printdialog|labelsize"
msgid "Paper size:"
-msgstr "Maint papur"
+msgstr "Maint papur:"
#: vcl/uiconfig/ui/printdialog.ui:895
msgctxt "printdialog|labelorder"
msgid "Order:"
-msgstr "Trefn"
+msgstr "Trefn:"
#: vcl/uiconfig/ui/printdialog.ui:957
msgctxt "printdialog|pagemargintxt1"
@@ -1935,7 +1935,7 @@ msgstr "Maint _papur:"
#: vcl/uiconfig/ui/printerpaperpage.ui:33
msgctxt "printerpaperpage|orientft"
msgid "_Orientation:"
-msgstr "Cy_feiriadedd"
+msgstr "Cy_feiriadedd:"
#: vcl/uiconfig/ui/printerpaperpage.ui:47
msgctxt "printerpaperpage|duplexft"
diff --git a/source/cy/wizards/messages.po b/source/cy/wizards/messages.po
index ed4f7753049..34288427484 100644
--- a/source/cy/wizards/messages.po
+++ b/source/cy/wizards/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-04-24 18:26+0200\n"
-"PO-Revision-Date: 2019-04-27 15:09+0000\n"
+"PO-Revision-Date: 2019-09-11 09:15+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1556377747.000000\n"
+"X-POOTLE-MTIME: 1568193348.000000\n"
#: wizards/com/sun/star/wizards/common/strings.hrc:32
msgctxt "RID_COMMON_START_0"
@@ -490,7 +490,7 @@ msgstr "Hwyl"
#: wizards/com/sun/star/wizards/common/strings.hrc:133
msgctxt "RID_LETTERWIZARDROADMAP_START_1"
msgid "Page Design"
-msgstr "Cynllun Tudalen:"
+msgstr "Cynllun Tudalen"
#: wizards/com/sun/star/wizards/common/strings.hrc:134
msgctxt "RID_LETTERWIZARDROADMAP_START_2"
@@ -740,7 +740,7 @@ msgstr "Ffôn:"
#: wizards/com/sun/star/wizards/common/strings.hrc:185
msgctxt "RID_FAXWIZARDDIALOG_START_45"
msgid "Email:"
-msgstr "E-bost"
+msgstr "E-bost:"
#: wizards/com/sun/star/wizards/common/strings.hrc:186
msgctxt "RID_FAXWIZARDDIALOG_START_46"
@@ -1115,7 +1115,7 @@ msgstr "Cliciwch i newid y testun"
#: wizards/com/sun/star/wizards/common/strings.hrc:270
msgctxt "RID_AGENDAWIZARDDIALOG_START_50"
msgid "Page Design"
-msgstr "Cynllun Tudalen:"
+msgstr "Cynllun Tudalen"
#: wizards/com/sun/star/wizards/common/strings.hrc:271
msgctxt "RID_AGENDAWIZARDDIALOG_START_51"
diff --git a/source/da/helpcontent2/source/text/swriter/guide.po b/source/da/helpcontent2/source/text/swriter/guide.po
index 7fd67d44591..abf0ff770a0 100644
--- a/source/da/helpcontent2/source/text/swriter/guide.po
+++ b/source/da/helpcontent2/source/text/swriter/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-08-28 19:34+0200\n"
-"PO-Revision-Date: 2019-07-12 19:58+0000\n"
+"PO-Revision-Date: 2019-09-13 11:49+0000\n"
"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1562961482.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1568375374.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"bm_id3149973\n"
"help.text"
msgid "<bookmark_value>headings;rearranging</bookmark_value><bookmark_value>rearranging headings</bookmark_value><bookmark_value>moving;headings</bookmark_value><bookmark_value>demoting heading levels</bookmark_value><bookmark_value>promoting heading levels</bookmark_value><bookmark_value>Navigator;heading levels and chapters</bookmark_value><bookmark_value>arranging;headings</bookmark_value><bookmark_value>outlines;arranging chapters</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>overskrifter;omarrangere</bookmark_value><bookmark_value>omarrangere overskrifter</bookmark_value><bookmark_value>flytte;overskrifter</bookmark_value><bookmark_value>sænke overskriftsniveauer</bookmark_value><bookmark_value>hæve overskriftsniveauer</bookmark_value><bookmark_value>Navigator;overskriftsniveauer og kapitler</bookmark_value><bookmark_value>arrangere;overskrifter</bookmark_value><bookmark_value>dispositioner;arrangere kapitler</bookmark_value>"
#: arrange_chapters.xhp
msgctxt ""
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 80b04f2f4ba..692dc8d0307 100644
--- a/source/da/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/da/officecfg/registry/data/org/openoffice/Office/UI.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-08-28 19:39+0200\n"
-"PO-Revision-Date: 2019-08-11 15:31+0000\n"
-"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
+"PO-Revision-Date: 2019-09-13 11:50+0000\n"
+"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1565537469.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1568375427.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -28015,7 +28015,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Delete selected rows"
-msgstr ""
+msgstr "Slet valgte rækker"
#: WriterCommands.xcu
msgctxt ""
@@ -28042,7 +28042,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Delete selected columns"
-msgstr ""
+msgstr "Slet valgte kolonner"
#: WriterCommands.xcu
msgctxt ""
@@ -28069,7 +28069,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Delete table"
-msgstr ""
+msgstr "Slet tabel"
#: WriterCommands.xcu
msgctxt ""
@@ -28195,7 +28195,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Select Cell"
-msgstr ""
+msgstr "Vælg celle"
#: WriterCommands.xcu
msgctxt ""
@@ -28258,7 +28258,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Select Table"
-msgstr ""
+msgstr "Vælg tabel"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/da/scaddins/messages.po b/source/da/scaddins/messages.po
index 4c517cd14c6..688bb905bf1 100644
--- a/source/da/scaddins/messages.po
+++ b/source/da/scaddins/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: 2018-02-27 15:06+0100\n"
-"PO-Revision-Date: 2018-03-06 19:15+0000\n"
-"Last-Translator: scootergrisen <scootergrisen@gmail.com>\n"
+"PO-Revision-Date: 2019-09-14 19:10+0000\n"
+"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1520363755.000000\n"
+"X-POOTLE-MTIME: 1568488259.000000\n"
#: scaddins/inc/analysis.hrc:27
msgctxt "ANALYSIS_Workday"
@@ -4001,32 +4001,32 @@ msgstr "UGER"
#: scaddins/inc/strings.hrc:32
msgctxt "DATE_FUNCNAME_DiffMonths"
msgid "MONTHS"
-msgstr "MÅNEDER (MONTHS på engelsk)"
+msgstr "MÅNEDER"
#: scaddins/inc/strings.hrc:33
msgctxt "DATE_FUNCNAME_DiffYears"
msgid "YEARS"
-msgstr "ÅR (YEARS på engelsk)"
+msgstr "ÅR"
#: scaddins/inc/strings.hrc:34
msgctxt "DATE_FUNCNAME_IsLeapYear"
msgid "ISLEAPYEAR"
-msgstr "ER.SKUDÅR (ISLEAPYEAR på engelsk)"
+msgstr "ER.SKUDÅR"
#: scaddins/inc/strings.hrc:35
msgctxt "DATE_FUNCNAME_DaysInMonth"
msgid "DAYSINMONTH"
-msgstr "DAGEIMÅNED (DAYSINMONTH på engelsk)"
+msgstr "DAGEIMÅNED"
#: scaddins/inc/strings.hrc:36
msgctxt "DATE_FUNCNAME_DaysInYear"
msgid "DAYSINYEAR"
-msgstr "DAGEIÅR (DAYSINYEAR på engelsk)"
+msgstr "DAGEIÅR"
#: scaddins/inc/strings.hrc:37
msgctxt "DATE_FUNCNAME_WeeksInYear"
msgid "WEEKSINYEAR"
-msgstr "UGERIÅR (WEEKSINYEAR på engelsk)"
+msgstr "UGERIÅR"
#: scaddins/inc/strings.hrc:38
msgctxt "DATE_FUNCNAME_Rot13"
diff --git a/source/de/cui/messages.po b/source/de/cui/messages.po
index c08edcafa4a..a5e4a03d8dd 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: 2019-08-28 19:38+0200\n"
-"PO-Revision-Date: 2019-08-31 03:46+0000\n"
+"PO-Revision-Date: 2019-09-17 03:26+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1567223189.000000\n"
+"X-POOTLE-MTIME: 1568690765.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -2693,7 +2693,7 @@ msgstr "Um die Berechnung einzelner Elemente einer Calc-Formel anzuzeigen, wähl
#: cui/inc/tipoftheday.hrc:219
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can rotate cells table orientation with Table > Properties… > Text Flow > Text orientation."
-msgstr "Um die Ausrichtung einer Writer-Tabellenzelle zu drehen, wählen Sie Tabelle - Eigenschaften... - Textfluss - Dropdown-Menü: Textausrichtung."
+msgstr "Um die Ausrichtung einer Writer-Tabellenzelle zu drehen, wählen Sie Tabelle - Eigenschaften... - Register: Textfluss - Dropdown-Menü: Textausrichtung."
#: cui/inc/tipoftheday.hrc:220
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2708,7 +2708,7 @@ msgstr "Umschalt+Strg+Entf löscht in Writer vom Cursor bis zum Ende des aktuell
#: cui/inc/tipoftheday.hrc:222
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need an unnumbered item in a list? Use 'Insert Unnumbered Entry' in the Bullets and Numbering toolbar."
-msgstr "Um einen nicht nummerierten Eintrag in einer Liste in Writer einzufügen, verwenden Sie in der Symbolleiste \"Aufzählungszeichen und Nummerierung\" die Option \"Eintrag ohne Nummer einfügen\"."
+msgstr "Um einen nicht nummerierten Eintrag in eine Liste in Writer einzufügen, verwenden Sie in der Symbolleiste \"Aufzählungszeichen und Nummerierung\" die Option \"Eintrag ohne Nummer einfügen\"."
#: cui/inc/tipoftheday.hrc:223
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -3419,7 +3419,7 @@ msgstr "Wert:"
#: cui/uiconfig/ui/aboutdialog.ui:11
msgctxt "aboutdialog|AboutDialog"
msgid "About %PRODUCTNAME"
-msgstr "Info zu %PRODUCTNAME"
+msgstr "Über %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:14
msgctxt "aboutdialog|description"
diff --git a/source/de/helpcontent2/source/text/shared/00.po b/source/de/helpcontent2/source/text/shared/00.po
index c8d8b800639..ace1f919762 100644
--- a/source/de/helpcontent2/source/text/shared/00.po
+++ b/source/de/helpcontent2/source/text/shared/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2019-07-19 04:17+0000\n"
+"PO-Revision-Date: 2019-09-14 04:42+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1563509840.000000\n"
+"X-POOTLE-MTIME: 1568436126.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -10430,7 +10430,7 @@ msgctxt ""
"par_id366527\n"
"help.text"
msgid "Choose <emph>Format - Text Box and Shape - Line</emph> (Writer)."
-msgstr "Wählen Sie <emph>Format - Textfeld und Form - Linie...</emph> (Writer)."
+msgstr "Wählen Sie <emph>Format - Objekt - Linie...</emph> (Writer)."
#: 00040502.xhp
msgctxt ""
@@ -10470,7 +10470,7 @@ msgctxt ""
"par_id3154285\n"
"help.text"
msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph></caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Line - Line</emph> tab."
-msgstr "Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form</emph></caseinline><caseinline select=\"CALC\"><emph>Objekt</emph></caseinline></switchinline><emph> - Linie... - Register: Linie</emph>."
+msgstr "Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt</emph></caseinline><caseinline select=\"CALC\"><emph>Objekt</emph></caseinline></switchinline><emph> - Linie... - Register: Linie</emph>."
#: 00040502.xhp
msgctxt ""
@@ -10542,7 +10542,7 @@ msgctxt ""
"par_id3151293\n"
"help.text"
msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab.</variable>"
-msgstr "<variable id=\"linienstile\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Linie... - Register: Linienstile</emph>.</variable>"
+msgstr "<variable id=\"linienstile\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Linie... - Register: Linienstile</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10550,7 +10550,7 @@ msgctxt ""
"par_id3149317\n"
"help.text"
msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab.</variable>"
-msgstr "<variable id=\"linienenden\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Linie... - Register: Linienspitzen</emph>.</variable>"
+msgstr "<variable id=\"linienenden\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Linie... - Register: Linienspitzen</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10558,7 +10558,7 @@ msgctxt ""
"par_id3156082\n"
"help.text"
msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area</emph>."
-msgstr "Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Fläche...</emph>."
+msgstr "Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Fläche...</emph>."
#: 00040502.xhp
msgctxt ""
@@ -10590,7 +10590,7 @@ msgctxt ""
"par_id3154948\n"
"help.text"
msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
-msgstr "Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Fläche... - Register: Fläche</emph>."
+msgstr "Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Fläche... - Register: Fläche</emph>."
#: 00040502.xhp
msgctxt ""
@@ -10774,7 +10774,7 @@ msgctxt ""
"par_id3150011\n"
"help.text"
msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab.</variable>"
-msgstr "<variable id=\"schatte\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Fläche... - Register: Schatten</emph>.</variable>"
+msgstr "<variable id=\"schatte\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Fläche... - Register: Schatten</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10782,7 +10782,7 @@ msgctxt ""
"par_id3147441\n"
"help.text"
msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab.</variable>"
-msgstr "<variable id=\"verlauf\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Fläche... - Register: Fläche - Schaltfläche: Farbverlauf</emph>.</variable>"
+msgstr "<variable id=\"verlauf\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Fläche... - Register: Fläche - Schaltfläche: Farbverlauf</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10790,7 +10790,7 @@ msgctxt ""
"par_id3155308\n"
"help.text"
msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab.</variable>"
-msgstr "<variable id=\"schraffur\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Fläche... - Register: Fläche - Schaltfläche: Schraffur</emph>.</variable>"
+msgstr "<variable id=\"schraffur\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Fläche... - Register: Fläche - Schaltfläche: Schraffur</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10798,7 +10798,7 @@ msgctxt ""
"par_id3145800\n"
"help.text"
msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab.</variable>"
-msgstr "<variable id=\"bitmap\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Fläche... - Register: Fläche - Schaltfläche: Bild</emph>.</variable>"
+msgstr "<variable id=\"bitmap\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Fläche... - Register: Fläche - Schaltfläche: Bild</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10806,7 +10806,7 @@ msgctxt ""
"par_id3145251\n"
"help.text"
msgid "<variable id=\"formattext\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - Text Attributes</emph> </caseinline><caseinline select=\"CALC\"><emph>Object - Text - </emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline>.</variable>"
-msgstr "<variable id=\"formattext\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form - Text... - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - Text... - </emph></caseinline><defaultinline><emph>Register: Text</emph></defaultinline></switchinline>.</variable>"
+msgstr "<variable id=\"formattext\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - Text... - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - Text... - </emph></caseinline><defaultinline><emph>Register: Text</emph></defaultinline></switchinline>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10814,7 +10814,7 @@ msgctxt ""
"par_id3152810\n"
"help.text"
msgid "<variable id=\"text\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - Text Attributes</emph> </caseinline><caseinline select=\"CALC\"><emph>Object - Text</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Text</emph> tab.</variable>"
-msgstr "<variable id=\"text\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form - Text...</emph> </caseinline><caseinline select=\"CALC\"><emph>Objekt - Text...</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Register: Text</emph>.</variable>"
+msgstr "<variable id=\"text\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - Text...</emph> </caseinline><caseinline select=\"CALC\"><emph>Objekt - Text...</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Register: Text</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10822,7 +10822,7 @@ msgctxt ""
"par_id3151060\n"
"help.text"
msgid "<variable id=\"laufext\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - Text Attributes </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - Text</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Text Animation</emph> tab.</variable>"
-msgstr "<variable id=\"laufext\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form - Text...</emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - Text...</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Register: Lauftext</emph>.</variable>"
+msgstr "<variable id=\"laufext\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - Text...</emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - Text...</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Register: Lauftext</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10830,7 +10830,7 @@ msgctxt ""
"par_id3149911\n"
"help.text"
msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Position and Size</emph>."
-msgstr "Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Position und Größe...</emph>."
+msgstr "Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Position und Größe...</emph>."
#: 00040502.xhp
msgctxt ""
@@ -10878,7 +10878,7 @@ msgctxt ""
"par_id3153099\n"
"help.text"
msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab.</variable>"
-msgstr "<variable id=\"position2\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Position und Größe... - Register: Position und Größe</emph>.</variable>"
+msgstr "<variable id=\"position2\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Position und Größe... - Register: Position und Größe</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10886,7 +10886,7 @@ msgctxt ""
"par_id3152973\n"
"help.text"
msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Position and Size - Rotation</emph> tab."
-msgstr "Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Position und Größe... - Register: Drehung</emph>."
+msgstr "Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Position und Größe... - Register: Drehung</emph>."
#: 00040502.xhp
msgctxt ""
@@ -10910,7 +10910,7 @@ msgctxt ""
"par_id3145666\n"
"help.text"
msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab.</variable>"
-msgstr "<variable id=\"ecke\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Position und Größe... - Register: Schräg stellen / Eckenradius</emph>.</variable>"
+msgstr "<variable id=\"ecke\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Position und Größe... - Register: Schräg stellen / Eckenradius</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10918,7 +10918,7 @@ msgctxt ""
"par_id3146081\n"
"help.text"
msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab. This is only available for textbox callouts, not for custom shapes callouts.</variable>"
-msgstr "<variable id=\"legende\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Position und Größe... - Register: Legende</emph>. Dies ist nur für Textfeld-Legenden verfügbar, nicht für Legendensymbole.</variable>"
+msgstr "<variable id=\"legende\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Objekt - </emph></caseinline></switchinline><emph>Position und Größe... - Register: Legende</emph>. Dies ist nur für Textfeld-Legenden verfügbar, nicht für Legendensymbole.</variable>"
#: 00040502.xhp
msgctxt ""
diff --git a/source/de/officecfg/registry/data/org/openoffice/Office/UI.po b/source/de/officecfg/registry/data/org/openoffice/Office/UI.po
index 194435e8eb4..76825e330cf 100644
--- a/source/de/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/de/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-08-28 19:39+0200\n"
-"PO-Revision-Date: 2019-08-31 03:57+0000\n"
+"PO-Revision-Date: 2019-09-17 03:28+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1567223860.000000\n"
+"X-POOTLE-MTIME: 1568690914.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -410,7 +410,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flip Vertically"
-msgstr "~Vertikal spiegeln"
+msgstr "~Vertikal"
#: CalcCommands.xcu
msgctxt ""
@@ -428,7 +428,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flip Horizontally"
-msgstr "~Horizontal spiegeln"
+msgstr "~Horizontal"
#: CalcCommands.xcu
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Freeze ~Rows and Columns"
-msgstr "Zeilen/Spalten ~fixieren"
+msgstr "Zeilen/Spalten fi~xieren"
#: CalcCommands.xcu
msgctxt ""
@@ -527,7 +527,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Freeze First Column"
-msgstr "Erste ~Spalte fixieren"
+msgstr "Erste ~Spalte"
#: CalcCommands.xcu
msgctxt ""
@@ -536,7 +536,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Freeze First Row"
-msgstr "Erste ~Zeile fixieren"
+msgstr "Erste ~Zeile"
#: CalcCommands.xcu
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Spreadsheet Theme"
-msgstr "~Tabellendokumentsthema"
+msgstr "~Themen-Auswahl"
#: CalcCommands.xcu
msgctxt ""
@@ -716,7 +716,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Select Sheets..."
-msgstr "~Tabellen auswählen..."
+msgstr "T~abellen..."
#: CalcCommands.xcu
msgctxt ""
@@ -725,7 +725,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sheet ~Events..."
-msgstr "Tabellenerei~gnisse..."
+msgstr "Erei~gnisse..."
#: CalcCommands.xcu
msgctxt ""
@@ -1130,7 +1130,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Column"
-msgstr "~Spalte auswählen"
+msgstr "~Spalte"
#: CalcCommands.xcu
msgctxt ""
@@ -1148,7 +1148,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Row"
-msgstr "~Zeile auswählen"
+msgstr "~Zeile"
#: CalcCommands.xcu
msgctxt ""
@@ -1157,7 +1157,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Unprotected Cells"
-msgstr "Nicht ~gesperrte Zellen auswählen"
+msgstr "Nicht ~gesperrte Zellen"
#: CalcCommands.xcu
msgctxt ""
@@ -1310,7 +1310,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Data Area"
-msgstr "~Datenbereich markieren"
+msgstr "~Datenbereich"
#: CalcCommands.xcu
msgctxt ""
@@ -1319,7 +1319,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cell Edit Mode"
-msgstr "~Zellen bearbeiten"
+msgstr "~Zelle"
#: CalcCommands.xcu
msgctxt ""
@@ -1364,7 +1364,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select to Next Sheet"
-msgstr "Bis zur ~nächsten Tabelle auswählen"
+msgstr "Bis zur ~nächsten Tabelle"
#: CalcCommands.xcu
msgctxt ""
@@ -1373,7 +1373,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select to Previous Sheet"
-msgstr "Bis zur ~vorherigen Tabelle auswählen"
+msgstr "Bis zur ~vorherigen Tabelle"
#: CalcCommands.xcu
msgctxt ""
@@ -1832,7 +1832,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "F~ourier Analysis..."
-msgstr "F~ourier-Analyse..."
+msgstr "Fourier-Anal~yse..."
#: CalcCommands.xcu
msgctxt ""
@@ -1868,7 +1868,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Rows"
-msgstr "~Zeilen löschen"
+msgstr "Ze~ilen löschen"
#: CalcCommands.xcu
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Columns"
-msgstr "Spalten lö~schen"
+msgstr "Spal~ten löschen"
#: CalcCommands.xcu
msgctxt ""
@@ -1967,7 +1967,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show Comment"
-msgstr "Kommentar ~anzeigen"
+msgstr "~Anzeigen"
#: CalcCommands.xcu
msgctxt ""
@@ -1976,7 +1976,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hide Comment"
-msgstr "Kommentar a~usblenden"
+msgstr "A~usblenden"
#: CalcCommands.xcu
msgctxt ""
@@ -2003,7 +2003,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete All Comments"
-msgstr "Alle Kommentare ~löschen"
+msgstr "Alle ~Löschen"
#: CalcCommands.xcu
msgctxt ""
@@ -2030,7 +2030,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Comment"
-msgstr "Kommentar lö~schen"
+msgstr "Lö~schen"
#: CalcCommands.xcu
msgctxt ""
@@ -2048,7 +2048,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "View Headers"
-msgstr "Ko~pfzeilen anzeigen"
+msgstr "Ko~pfzeilen"
#: CalcCommands.xcu
msgctxt ""
@@ -2327,7 +2327,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert ~Cells..."
-msgstr "Zellen e~infügen..."
+msgstr "~Zellen einfügen..."
#: CalcCommands.xcu
msgctxt ""
@@ -2372,7 +2372,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Rows ~Above"
-msgstr "Zeilen ~oberhalb"
+msgstr "~Oberhalb"
#: CalcCommands.xcu
msgctxt ""
@@ -2399,7 +2399,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Columns ~Before"
-msgstr "Spalten ~links"
+msgstr "~Links"
#: CalcCommands.xcu
msgctxt ""
@@ -2426,7 +2426,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Rows ~Below"
-msgstr "Zeilen ~unterhalb"
+msgstr "~Unterhalb"
#: CalcCommands.xcu
msgctxt ""
@@ -2453,7 +2453,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Columns ~After"
-msgstr "Spalten ~rechts"
+msgstr "~Rechts"
#: CalcCommands.xcu
msgctxt ""
@@ -2471,7 +2471,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert ~Sheet..."
-msgstr "~Tabelle einfügen..."
+msgstr "T~abelle einfügen..."
#: CalcCommands.xcu
msgctxt ""
@@ -2606,7 +2606,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Ce~lls..."
-msgstr "Ze~llen..."
+msgstr "Z~ellen..."
#: CalcCommands.xcu
msgctxt ""
@@ -2660,7 +2660,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Optimal Height..."
-msgstr "~Optimale Zeilenhöhe..."
+msgstr "~Optimale Höhe..."
#: CalcCommands.xcu
msgctxt ""
@@ -2759,7 +2759,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Optimal Width..."
-msgstr "O~ptimale Breite..."
+msgstr "Opti~male Breite..."
#: CalcCommands.xcu
msgctxt ""
@@ -2822,7 +2822,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Hide Sheet"
-msgstr "Tabelle ~ausblenden"
+msgstr "Tabelle au~sblenden"
#: CalcCommands.xcu
msgctxt ""
@@ -2840,7 +2840,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Merge Cells"
-msgstr "Zellen ~verbinden"
+msgstr "~Verbinden"
#: CalcCommands.xcu
msgctxt ""
@@ -2849,7 +2849,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Split Cells"
-msgstr "Zellen teile~n"
+msgstr "Tei~len"
#: CalcCommands.xcu
msgctxt ""
@@ -2858,7 +2858,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "M~erge and Center Cells"
-msgstr "Zellen verbinden und ~zentrieren"
+msgstr "Verbinden und ~zentrieren"
#: CalcCommands.xcu
msgctxt ""
@@ -2912,7 +2912,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Text..."
-msgstr "~Text..."
+msgstr "Text~..."
#: CalcCommands.xcu
msgctxt ""
@@ -2930,7 +2930,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Auto~Calculate"
-msgstr "~Automatisch berechnen"
+msgstr "~Automatisch"
#: CalcCommands.xcu
msgctxt ""
@@ -2957,7 +2957,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Protect ~Spreadsheet Structure..."
-msgstr "Tabellenstru~ktur schützen..."
+msgstr "Ta~bellenstruktur schützen..."
#: CalcCommands.xcu
msgctxt ""
@@ -3011,7 +3011,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Recalculate Hard"
-msgstr "Unbedingte Neuberechnung"
+msgstr "~Unbedingte Neuberechnung"
#: CalcCommands.xcu
msgctxt ""
@@ -3074,7 +3074,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Data Provider..."
-msgstr "Datenquelle..."
+msgstr "Daten~quelle..."
#: CalcCommands.xcu
msgctxt ""
@@ -3083,7 +3083,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Refresh Data Provider"
-msgstr "Datenquelle aktualisieren"
+msgstr "Datenquelle aktualisie~ren"
#: CalcCommands.xcu
msgctxt ""
@@ -3227,7 +3227,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sheet ~Tab Color..."
-msgstr "Tabellen~registerfarbe..."
+msgstr "~Registerfarbe..."
#: CalcCommands.xcu
msgctxt ""
@@ -3263,7 +3263,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select All Sheets"
-msgstr "~Alle Tabellen auswählen"
+msgstr "Alle ~Tabellen"
#: CalcCommands.xcu
msgctxt ""
@@ -3704,7 +3704,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "View Grid Lines"
-msgstr "Gitterlinien ~anzeigen"
+msgstr "Gitt~erlinien"
#: CalcCommands.xcu
msgctxt ""
@@ -3749,7 +3749,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Formula to Value"
-msgstr "~Formel in Wert"
+msgstr "~Formel in Wert umwandeln"
#: CalcCommands.xcu
msgctxt ""
@@ -3821,7 +3821,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit Comment"
-msgstr "Kommentar ~bearbeiten"
+msgstr "~Bearbeiten"
#: CalcCommands.xcu
msgctxt ""
@@ -3902,7 +3902,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Colu~mns"
-msgstr "S~palten"
+msgstr "Spa~lten"
#: CalcCommands.xcu
msgctxt ""
@@ -3920,7 +3920,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cell ~Comments"
-msgstr "Zell~kommentare"
+msgstr "~Kommentare"
#: CalcCommands.xcu
msgctxt ""
@@ -3947,7 +3947,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show Formula"
-msgstr "Form~el anzeigen"
+msgstr "~Formel"
#: CalcCommands.xcu
msgctxt ""
@@ -4010,7 +4010,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Time"
-msgstr "Z~eit"
+msgstr "Uhrz~eit"
#: CalcCommands.xcu
msgctxt ""
@@ -4145,7 +4145,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Default"
-msgstr "Standard"
+msgstr "~Standard"
#: CalcCommands.xcu
msgctxt ""
@@ -4172,7 +4172,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Accent 1"
-msgstr "Betont 1"
+msgstr "B~etont 1"
#: CalcCommands.xcu
msgctxt ""
@@ -4199,7 +4199,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Accent 2"
-msgstr "Betont 2"
+msgstr "~Betont 2"
#: CalcCommands.xcu
msgctxt ""
@@ -4226,7 +4226,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Accent 3"
-msgstr "Betont 3"
+msgstr "Be~tont 3"
#: CalcCommands.xcu
msgctxt ""
@@ -4253,7 +4253,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading 1"
-msgstr "Überschrift 1"
+msgstr "Überschrift ~1"
#: CalcCommands.xcu
msgctxt ""
@@ -4280,7 +4280,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading 2"
-msgstr "Überschrift 2"
+msgstr "Überschrift ~2"
#: CalcCommands.xcu
msgctxt ""
@@ -4307,7 +4307,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bad"
-msgstr "Schlecht"
+msgstr "S~chlecht"
#: CalcCommands.xcu
msgctxt ""
@@ -4334,7 +4334,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Error"
-msgstr "Fehler"
+msgstr "~Fehler"
#: CalcCommands.xcu
msgctxt ""
@@ -4361,7 +4361,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Good"
-msgstr "Gut"
+msgstr "~Gut"
#: CalcCommands.xcu
msgctxt ""
@@ -4388,7 +4388,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Neutral"
-msgstr "Neutral"
+msgstr "Ne~utral"
#: CalcCommands.xcu
msgctxt ""
@@ -4415,7 +4415,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Warning"
-msgstr "Warnung"
+msgstr "~Warnung"
#: CalcCommands.xcu
msgctxt ""
@@ -4442,7 +4442,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Footnote"
-msgstr "Fußnote"
+msgstr "Fußn~ote"
#: CalcCommands.xcu
msgctxt ""
@@ -4469,7 +4469,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Note"
-msgstr "Notiz"
+msgstr "Noti~z"
#: CalcCommands.xcu
msgctxt ""
@@ -5126,7 +5126,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Chart T~ype..."
-msgstr "Diagrammt~yp..."
+msgstr "Diagramm~typ..."
#: ChartCommands.xcu
msgctxt ""
@@ -5963,7 +5963,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Te~xt..."
-msgstr "~Text..."
+msgstr "Text~..."
#: ChartCommands.xcu
msgctxt ""
@@ -6638,7 +6638,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Report..."
-msgstr "Bericht..."
+msgstr "Be~richt..."
#: DbuCommands.xcu
msgctxt ""
@@ -6647,7 +6647,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Report Wizard..."
-msgstr "Berichts-Assistent..."
+msgstr "Be~richts-Assistent..."
#: DbuCommands.xcu
msgctxt ""
@@ -6710,7 +6710,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Queries"
-msgstr "~Abfragen"
+msgstr "Abf~ragen"
#: DbuCommands.xcu
msgctxt ""
@@ -6980,7 +6980,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Report As Email..."
-msgstr "Bericht als E-Mail..."
+msgstr "Bericht als ~E-Mail..."
#: DbuCommands.xcu
msgctxt ""
@@ -7250,7 +7250,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Te~xt..."
-msgstr "~Text..."
+msgstr "Text~..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7286,7 +7286,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "3D Objects"
-msgstr "3D-Objekte"
+msgstr "~3D-Objekte"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7664,7 +7664,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "M~aster Notes"
-msgstr "Noti~zenmaster"
+msgstr "Notizenmaster"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8123,7 +8123,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Connector"
-msgstr "Verbinder"
+msgstr "~Verbinder"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8150,7 +8150,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Vertically"
-msgstr "~Vertikal spiegeln"
+msgstr "~Vertikal"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8159,7 +8159,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Horizontally"
-msgstr "~Horizontal spiegeln"
+msgstr "~Horizontal"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8222,7 +8222,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Layer..."
-msgstr "Ebe~ne..."
+msgstr "~Ebene..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8240,7 +8240,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Layout"
-msgstr "Folienl~ayout"
+msgstr "Folienlayout"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8366,7 +8366,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Change Slide Master..."
-msgstr "Folienmaster ändern..."
+msgstr "Folienm~aster ändern..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8393,7 +8393,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Not~es"
-msgstr "Notiz~en"
+msgstr "Noti~zen"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8537,7 +8537,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Transformations"
-msgstr "Umwandlungen"
+msgstr "U~mwandlungen"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8933,7 +8933,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Snap to Snap Guides"
-msgstr "~An Fanglinien fangen"
+msgstr "An Fan~glinien fangen"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8942,7 +8942,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Snap to Page Margins"
-msgstr "Fangen an Seitenrändern"
+msgstr "Fangen an ~Seitenrändern"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8951,7 +8951,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Snap to Object Border"
-msgstr "Fangen am Objektrahmen"
+msgstr "Fangen am ~Objektrahmen"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8960,7 +8960,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Snap to Object Points"
-msgstr "Fangen an Objektpunkten"
+msgstr "Fangen an Objekt~punkten"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9410,7 +9410,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Split Cells"
-msgstr "Zellen teile~n"
+msgstr "Zellen tei~len"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9428,7 +9428,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Minimal Column Width"
-msgstr "Minimale Spaltenbreite"
+msgstr "Spaltenbreite mi~nimieren"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9437,7 +9437,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Optimal Column Width"
-msgstr "Optimale Spaltenbreite"
+msgstr "Opti~male Spaltenbreite"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9446,7 +9446,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Distribute Columns Evenly"
-msgstr "Spalten gleichmäßig ~verteilen"
+msgstr "Spalten gleic~hmäßig verteilen"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9455,7 +9455,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Minimal Row Height"
-msgstr "Minimale Zeilenhöhe"
+msgstr "Zeilenhöhe minimie~ren"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9464,7 +9464,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Optimal Row Height"
-msgstr "Optimale Zeilenhöhe"
+msgstr "~Optimale Zeilenhöhe"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9500,7 +9500,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Rows"
-msgstr "Z~eilen einfügen"
+msgstr "~Zeilen einfügen"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9509,7 +9509,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Column After"
-msgstr "Spalte rechts einfügen"
+msgstr "Spalte ~rechts einfügen"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9518,7 +9518,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Column Before"
-msgstr "Spalte links einfügen"
+msgstr "Spalte ~links einfügen"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9527,7 +9527,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Columns"
-msgstr "S~palten einfügen"
+msgstr "~Spalten einfügen"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9536,7 +9536,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Row"
-msgstr "Zeile löschen"
+msgstr "Ze~ile löschen"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9545,7 +9545,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Column"
-msgstr "Spalte löschen"
+msgstr "Spal~te löschen"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9563,7 +9563,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Select..."
-msgstr "Aus~wählen..."
+msgstr "~Auswählen..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9581,7 +9581,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Column"
-msgstr "Spalte auswählen"
+msgstr "S~palte auswählen"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9590,7 +9590,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Row"
-msgstr "Zeile auswählen"
+msgstr "Z~eile auswählen"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9608,7 +9608,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Properties..."
-msgstr "~Eigenschaften..."
+msgstr "Eigens~chaften..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -10193,7 +10193,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Colu~mn"
-msgstr "S~palte"
+msgstr "Spa~lte"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -14594,7 +14594,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rectangle"
-msgstr "~Rechteck"
+msgstr "Re~chteck"
#: GenericCommands.xcu
msgctxt ""
@@ -14639,7 +14639,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Ellipse"
-msgstr "~Ellipse"
+msgstr "Ellip~se"
#: GenericCommands.xcu
msgctxt ""
@@ -16610,7 +16610,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Options..."
-msgstr "Option~en..."
+msgstr "O~ptionen..."
#: GenericCommands.xcu
msgctxt ""
@@ -16700,7 +16700,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Optimal View"
-msgstr "~Optimale Ansicht"
+msgstr "~Optimal"
#: GenericCommands.xcu
msgctxt ""
@@ -16736,7 +16736,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Lines and Arrows"
-msgstr "Linien und Linienspitzen"
+msgstr "~Linien und Linienspitzen"
#: GenericCommands.xcu
msgctxt ""
@@ -18268,7 +18268,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Float~ing Frame..."
-msgstr "Sch~webender Rahmen..."
+msgstr "Sch~webenden Rahmen..."
#: GenericCommands.xcu
msgctxt ""
@@ -18277,7 +18277,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Enter Group"
-msgstr "Gruppierung ~betreten"
+msgstr "~Betreten"
#: GenericCommands.xcu
msgctxt ""
@@ -18286,7 +18286,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "E~xit Group"
-msgstr "Gruppierung ver~lassen"
+msgstr "Ver~lassen"
#: GenericCommands.xcu
msgctxt ""
@@ -18421,7 +18421,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Formula..."
-msgstr "Fo~rmel..."
+msgstr "~Formel..."
#: GenericCommands.xcu
msgctxt ""
@@ -19249,7 +19249,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "HT~ML Source"
-msgstr "H~TML-Quelltext"
+msgstr "HTML-Q~uelltext"
#: GenericCommands.xcu
msgctxt ""
@@ -19294,7 +19294,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Equalize ~Width"
-msgstr "Breite anglei~chen"
+msgstr "~Breite angleichen"
#: GenericCommands.xcu
msgctxt ""
@@ -19303,7 +19303,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Equalize ~Height"
-msgstr "~Höhe angleichen"
+msgstr "Höhe ~angleichen"
#: GenericCommands.xcu
msgctxt ""
@@ -19321,7 +19321,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "I~ntersect"
-msgstr "~Schneiden"
+msgstr "Sc~hneiden"
#: GenericCommands.xcu
msgctxt ""
@@ -19411,7 +19411,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Clone Formatting"
-msgstr "Format ~übertragen"
+msgstr "Formatierung ~übertragen"
#: GenericCommands.xcu
msgctxt ""
@@ -19474,7 +19474,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Paste Unformatted Text"
-msgstr "Unf~ormatierten Text einfügen"
+msgstr "Unf~ormatierten Text"
#: GenericCommands.xcu
msgctxt ""
@@ -19555,7 +19555,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select ~All"
-msgstr "Alles auswä~hlen"
+msgstr "Alles a~uswählen"
#: GenericCommands.xcu
msgctxt ""
@@ -20122,7 +20122,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Color Bar"
-msgstr "~Farbleiste"
+msgstr "F~arbleiste"
#: GenericCommands.xcu
msgctxt ""
@@ -20383,7 +20383,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Ungroup"
-msgstr "Gruppierung ~aufheben"
+msgstr "~Aufheben"
#: GenericCommands.xcu
msgctxt ""
@@ -20473,7 +20473,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Curve"
-msgstr "Linien und Kurven"
+msgstr "Linien und ~Kurven"
#: GenericCommands.xcu
msgctxt ""
@@ -20779,7 +20779,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Send via ~Bluetooth..."
-msgstr "Über ~Bluetooth senden..."
+msgstr "Über ~Bluetooth..."
#: GenericCommands.xcu
msgctxt ""
@@ -20941,7 +20941,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Redact"
-msgstr "Redigieren"
+msgstr "R~edigieren"
#: GenericCommands.xcu
msgctxt ""
@@ -21013,7 +21013,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Send Feedback"
-msgstr "Rückmeldung geben"
+msgstr "~Rückmeldung geben"
#: GenericCommands.xcu
msgctxt ""
@@ -21049,7 +21049,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Donate to LibreOffice"
-msgstr "~Für LibreOffice spenden"
+msgstr "~Spenden"
#: GenericCommands.xcu
msgctxt ""
@@ -21076,7 +21076,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "License Information"
-msgstr "Lizenzinformation"
+msgstr "~Lizenzinformation"
#: GenericCommands.xcu
msgctxt ""
@@ -21787,7 +21787,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Reset Filter/Sort"
-msgstr "Filter/Sortierung zurücksetzen"
+msgstr "Filter/Sortierung ~zurücksetzen"
#: GenericCommands.xcu
msgctxt ""
@@ -21805,7 +21805,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sort Descending"
-msgstr "Abst~eigend sortieren"
+msgstr "~Absteigend sortieren"
#: GenericCommands.xcu
msgctxt ""
@@ -21841,7 +21841,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sort..."
-msgstr "Sortieren..."
+msgstr "S~ortieren..."
#: GenericCommands.xcu
msgctxt ""
@@ -21868,7 +21868,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Standard Filter..."
-msgstr "Standardfilter..."
+msgstr "S~tandardfilter..."
#: GenericCommands.xcu
msgctxt ""
@@ -21877,7 +21877,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "AutoFilter"
-msgstr "AutoFilter"
+msgstr "AutoF~ilter"
#: GenericCommands.xcu
msgctxt ""
@@ -21913,7 +21913,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Apply Filter"
-msgstr "Filter anwenden"
+msgstr "~Filter anwenden"
#: GenericCommands.xcu
msgctxt ""
@@ -21922,7 +21922,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Refresh"
-msgstr "Aktualisieren"
+msgstr "A~ktualisieren"
#: GenericCommands.xcu
msgctxt ""
@@ -21940,7 +21940,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Find Record..."
-msgstr "Datensatz suchen..."
+msgstr "Datensatz ~suchen..."
#: GenericCommands.xcu
msgctxt ""
@@ -22660,7 +22660,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Delete"
-msgstr "~Löschen"
+msgstr "Lösche~n"
#: GenericCommands.xcu
msgctxt ""
@@ -22849,7 +22849,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Track Chan~ges"
-msgstr "~Änderungen verfolgen"
+msgstr "~Änderungen"
#: GenericCommands.xcu
msgctxt ""
@@ -22975,7 +22975,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "F~lip"
-msgstr "Spi~egeln"
+msgstr "S~piegeln"
#: GenericCommands.xcu
msgctxt ""
@@ -22993,7 +22993,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rot~ate or Flip"
-msgstr "Dre~hen oder spiegeln"
+msgstr "~Drehen oder spiegeln"
#: GenericCommands.xcu
msgctxt ""
@@ -23083,7 +23083,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert non-br~eaking hyphen"
-msgstr "Geschützten ~Bindestrich einfügen"
+msgstr "Geschützten ~Bindestrich"
#: GenericCommands.xcu
msgctxt ""
@@ -23092,7 +23092,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert s~oft Hyphen"
-msgstr "~Weiches Trennzeichen einfügen"
+msgstr "~Weiches Trennzeichen"
#: GenericCommands.xcu
msgctxt ""
@@ -23101,7 +23101,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert ~non-breaking space"
-msgstr "~Geschütztes Leerzeichen einfügen"
+msgstr "~Geschütztes Leerzeichen"
#: GenericCommands.xcu
msgctxt ""
@@ -23110,7 +23110,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert n~arrow no-break space (U+202F)"
-msgstr "~Schmales geschütztes Leerzeichen einfügen (U+202F)"
+msgstr "~Schmales geschütztes Leerzeichen (U+202F)"
#: GenericCommands.xcu
msgctxt ""
@@ -23119,7 +23119,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "No-~width Optional Break"
-msgstr "Weicher Umbruch ~ohne Breite"
+msgstr "Weichen Umbruch ~ohne Breite"
#: GenericCommands.xcu
msgctxt ""
@@ -25576,7 +25576,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Standard Toolbar"
-msgstr "Symbolleiste Standard"
+msgstr "Symbolleisten"
#: ToolbarMode.xcu
msgctxt ""
@@ -25855,7 +25855,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Field ~Hidden Paragraphs"
-msgstr "V~ersteckte Absätze anzeigen"
+msgstr "Vers~teckte Absätze anzeigen"
#: WriterCommands.xcu
msgctxt ""
@@ -25864,7 +25864,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "S~cript..."
-msgstr "Skri~pt..."
+msgstr "Skrip~t..."
#: WriterCommands.xcu
msgctxt ""
@@ -25936,7 +25936,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Endnote"
-msgstr "~Endnote"
+msgstr "E~ndnote"
#: WriterCommands.xcu
msgctxt ""
@@ -26332,7 +26332,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Use header/footer menu"
-msgstr "Kopf-/Fußzeilenmenü anzeigen"
+msgstr "Kopf-/Fußzeilen~menü anzeigen"
#: WriterCommands.xcu
msgctxt ""
@@ -26377,7 +26377,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Update All"
-msgstr "~Alles aktualisieren"
+msgstr "~Alles"
#: WriterCommands.xcu
msgctxt ""
@@ -26575,7 +26575,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "F~ootnote or Endnote..."
-msgstr "Fuß-/End~note..."
+msgstr "Fuß-/~Endnote..."
#: WriterCommands.xcu
msgctxt ""
@@ -26935,7 +26935,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Text Attributes..."
-msgstr "~Text..."
+msgstr "Text~..."
#: WriterCommands.xcu
msgctxt ""
@@ -26980,7 +26980,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Text Box and Shap~e"
-msgstr "Textfeld und Form"
+msgstr "Ob~jekt"
#: WriterCommands.xcu
msgctxt ""
@@ -27070,7 +27070,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "First ~Author"
-msgstr "Erster ~Autor"
+msgstr "~Autor"
#: WriterCommands.xcu
msgctxt ""
@@ -27619,7 +27619,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Properties..."
-msgstr "E~igenschaften..."
+msgstr "Eigens~chaften..."
#: WriterCommands.xcu
msgctxt ""
@@ -28006,7 +28006,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Rows"
-msgstr "~Zeilen"
+msgstr "Ze~ilen"
#: WriterCommands.xcu
msgctxt ""
@@ -28033,7 +28033,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Columns"
-msgstr "~Spalten"
+msgstr "Spal~ten"
#: WriterCommands.xcu
msgctxt ""
@@ -28060,7 +28060,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Table"
-msgstr "~Tabelle"
+msgstr "T~abelle"
#: WriterCommands.xcu
msgctxt ""
@@ -28078,7 +28078,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Split Cells..."
-msgstr "Zellen teile~n..."
+msgstr "Zellen tei~len..."
#: WriterCommands.xcu
msgctxt ""
@@ -28096,7 +28096,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Row Height..."
-msgstr "Zeilen~höhe..."
+msgstr "~Zeilenhöhe..."
#: WriterCommands.xcu
msgctxt ""
@@ -28168,7 +28168,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Row"
-msgstr "~Zeile"
+msgstr "Z~eile"
#: WriterCommands.xcu
msgctxt ""
@@ -28186,7 +28186,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "C~ell"
-msgstr "Z~elle"
+msgstr "~Zelle"
#: WriterCommands.xcu
msgctxt ""
@@ -28222,7 +28222,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Column"
-msgstr "~Spalte"
+msgstr "S~palte"
#: WriterCommands.xcu
msgctxt ""
@@ -28249,7 +28249,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Table"
-msgstr "~Tabelle"
+msgstr "T~abelle"
#: WriterCommands.xcu
msgctxt ""
@@ -28339,7 +28339,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Unprotect Cells"
-msgstr "Zells~chutz aufheben"
+msgstr "Zellschutz ~aufheben"
#: WriterCommands.xcu
msgctxt ""
@@ -28384,7 +28384,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Optimal Column Width"
-msgstr "O~ptimale Spaltenbreite"
+msgstr "Opti~male Spaltenbreite"
#: WriterCommands.xcu
msgctxt ""
@@ -29302,7 +29302,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Minimize Column Width"
-msgstr "Spaltenbreite minimieren"
+msgstr "Spaltenbreite mi~nimieren"
#: WriterCommands.xcu
msgctxt ""
@@ -29311,7 +29311,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Distribute Columns Evenly"
-msgstr "Spalten gleichmäßig ~verteilen"
+msgstr "Spalten gleic~hmäßig verteilen"
#: WriterCommands.xcu
msgctxt ""
@@ -29329,7 +29329,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Minimize Row Height"
-msgstr "Spaltenbreite maximieren"
+msgstr "Zeilenhöhe minimie~ren"
#: WriterCommands.xcu
msgctxt ""
@@ -29707,7 +29707,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Chapter ~Numbering..."
-msgstr "Ka~pitelnummerierung..."
+msgstr "~Kapitelnummerierung..."
#: WriterCommands.xcu
msgctxt ""
@@ -29887,7 +29887,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Clone Formatting"
-msgstr "Format ~übertragen"
+msgstr "Formatierung ~übertragen"
#: WriterCommands.xcu
msgctxt ""
@@ -30427,7 +30427,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Text Body"
-msgstr "Textkörper"
+msgstr "Te~xtkörper"
#: WriterCommands.xcu
msgctxt ""
@@ -30454,7 +30454,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Default ~Character"
-msgstr "Zeichen Standard"
+msgstr "Stan~dard"
#: WriterCommands.xcu
msgctxt ""
@@ -30508,7 +30508,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Strong Emphasis"
-msgstr "Sta~rk betont"
+msgstr "~Stark betont"
#: WriterCommands.xcu
msgctxt ""
@@ -30535,7 +30535,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Qu~otation"
-msgstr "~Zitat"
+msgstr "Z~itat"
#: WriterCommands.xcu
msgctxt ""
@@ -30589,7 +30589,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bullet List"
-msgstr "Aufzählung"
+msgstr "Au~fzählung"
#: WriterCommands.xcu
msgctxt ""
@@ -30616,7 +30616,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Number List"
-msgstr "Nummerierung"
+msgstr "Nu~mmerierung"
#: WriterCommands.xcu
msgctxt ""
@@ -30643,7 +30643,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Alphabet Uppercase List"
-msgstr "Nummerierung Großbuchstaben"
+msgstr "Nummerierung ~Großbuchstaben"
#: WriterCommands.xcu
msgctxt ""
@@ -30670,7 +30670,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Alphabet Lowercase List"
-msgstr "Nummerierung Kleinbuchstaben"
+msgstr "Nummerierung ~Kleinbuchstaben"
#: WriterCommands.xcu
msgctxt ""
@@ -30697,7 +30697,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Roman Uppercase List"
-msgstr "Nummerierung römische Grußbuchstaben"
+msgstr "Nummerierung römische Gr~oßbuchstaben"
#: WriterCommands.xcu
msgctxt ""
@@ -30796,7 +30796,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Roman Lowercase List"
-msgstr "Nummerierung römische Kleinbuchstaben"
+msgstr "Nummerierung römische Kleinbu~chstaben"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/sbasic/shared.po b/source/el/helpcontent2/source/text/sbasic/shared.po
index 067e2a5c035..72f9e33e69a 100644
--- a/source/el/helpcontent2/source/text/sbasic/shared.po
+++ b/source/el/helpcontent2/source/text/sbasic/shared.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2019-09-06 07:33+0000\n"
+"PO-Revision-Date: 2019-09-11 05:57+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1567755218.000000\n"
+"X-POOTLE-MTIME: 1568181461.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -28022,7 +28022,7 @@ msgctxt ""
"par_id3149295\n"
"help.text"
msgid "<emph>Expression:</emph> a numeric expression that represents a valid 8-bit ASCII value (0-255) or a 16-bit Unicode value."
-msgstr ""
+msgstr "<emph>Expression:</emph> αριθμητική παράσταση που αντιπροσωπεύει έγκυρη τιμή ASCII 8 bit (0-255) ή τιμή Unicode 16 bit."
#: 03120102.xhp
msgctxt ""
@@ -28030,7 +28030,7 @@ msgctxt ""
"par_id991552913928635\n"
"help.text"
msgid "When VBA compatibility mode is enabled (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>OPTION VBASUPPORT 1</literal></link>), <emph>Expression</emph> is a numeric expression that represents a valid 8-bit ASCII value (0-255) only."
-msgstr ""
+msgstr "Όταν η κατάσταση συμβατότητας VBA είναι ενεργή (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>OPTION VBASUPPORT 1</literal></link>), η <emph>Expression</emph> είναι αριθμητική παράσταση που αντιπροσωπεύει έγκυρη τιμή 8-bit ASCII (0-255) μόνο."
#: 03120102.xhp
msgctxt ""
@@ -28046,7 +28046,7 @@ msgctxt ""
"par_id111552916434071\n"
"help.text"
msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#err6\"/>, when VBA compatibility mode is enabled and expression is greater than 255."
-msgstr ""
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#err6\"/>, όταν η κατάσταση συμβατότητας είναι ενεργή και η παράσταση είναι μεγαλύτερη από 255."
#: 03120102.xhp
msgctxt ""
@@ -31566,7 +31566,7 @@ msgctxt ""
"par_id161546104675066\n"
"help.text"
msgid "REM Wait until 6:00 PM then call MyMacro."
-msgstr ""
+msgstr "REM Αναμονή μέχρι 6:00 μ.μ, έπειτα κλήση του MyMacro."
#: 03130610.xhp
msgctxt ""
@@ -31574,7 +31574,7 @@ msgctxt ""
"par_id1001546104650052\n"
"help.text"
msgid "REM If after 6:00 PM, exit."
-msgstr ""
+msgstr "REM Εάν μετά τις 6:00 μ.μ., έξοδος."
#: 03130610.xhp
msgctxt ""
@@ -32742,7 +32742,7 @@ msgctxt ""
"hd_id3155310\n"
"help.text"
msgid "<variable id=\"getguitype2\"><link href=\"text/sbasic/shared/03132100.xhp\" name=\"GetGuiType Function\">GetGuiType Function</link></variable>"
-msgstr ""
+msgstr "<variable id=\"getguitype2\"><link href=\"text/sbasic/shared/03132100.xhp\" name=\"Συνάρτηση GetGuiType\">Συνάρτηση GetGuiType</link></variable>"
#: 03132100.xhp
msgctxt ""
@@ -35494,7 +35494,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "GetPathSeparator function"
-msgstr ""
+msgstr "Συνάρτηση GetPathSeparator"
#: GetPathSeparator.xhp
msgctxt ""
@@ -35510,7 +35510,7 @@ msgctxt ""
"N0002\n"
"help.text"
msgid "<variable id=\"getpathseparator01\"><link href=\"text/sbasic/shared/GetPathSeparator.xhp\" name=\"GetPathSeparator\">GetPathSeparator Function</link></variable>"
-msgstr ""
+msgstr "<variable id=\"getpathseparator01\"><link href=\"text/sbasic/shared/GetPathSeparator.xhp\" name=\"GetPathSeparator\">Συνάρτηση GetPathSeparator</link></variable>"
#: GetPathSeparator.xhp
msgctxt ""
@@ -35518,7 +35518,7 @@ msgctxt ""
"N0003\n"
"help.text"
msgid "Returns the operating system-dependent directory separator used to specify file paths."
-msgstr ""
+msgstr "Επιστρέφει το διαχωριστικό καταλόγου που εξαρτάται από το λειτουργικό σύστημα και χρησιμοποιείται στον καθορισμό διαδρομών αρχείου."
#: GetPathSeparator.xhp
msgctxt ""
@@ -35550,7 +35550,7 @@ msgctxt ""
"N0018\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120313.xhp\" name=\"external\">ConvertFromURL</link> function to convert a file URL to a system file name."
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120313.xhp\" name=\"external\">ConvertFromURL</link> συνάρτηση για μετατροπή URL αρχείου σε όνομα αρχείου του συστήματος."
#: GetPathSeparator.xhp
msgctxt ""
@@ -35574,7 +35574,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Option ClassModule"
-msgstr ""
+msgstr "Επιλογή ClassModule"
#: classmodule.xhp
msgctxt ""
@@ -35582,7 +35582,7 @@ msgctxt ""
"N0082\n"
"help.text"
msgid "<bookmark_value>Option ClassModule</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Επιλογή ClassModule</bookmark_value>"
#: classmodule.xhp
msgctxt ""
@@ -35590,7 +35590,7 @@ msgctxt ""
"N0083\n"
"help.text"
msgid "<variable id=\"classmodulestatement\"><link href=\"text/sbasic/shared/classmodule.xhp\" name=\"option classmodule\">Option ClassModule Statement</link></variable>"
-msgstr ""
+msgstr "<variable id=\"classmodulestatement\"><link href=\"text/sbasic/shared/classmodule.xhp\" name=\"επιλογή classmodule\">Δήλωση επιλογής ClassModule</link></variable>"
#: classmodule.xhp
msgctxt ""
@@ -35598,7 +35598,7 @@ msgctxt ""
"N0084\n"
"help.text"
msgid "Specifies that the module is a class module that contains members, properties, procedures and functions."
-msgstr ""
+msgstr "Καθορίζει ότι το άρθρωμα είναι άρθρωμα κλάσης που περιέχει μέλη, ιδιότητες, διεργασίες και συναρτήσεις."
#: classmodule.xhp
msgctxt ""
@@ -35606,7 +35606,7 @@ msgctxt ""
"N0089\n"
"help.text"
msgid "This statement must be used jointly with <literal>Option Compatible</literal> statement or <literal>Option VBASupport 1</literal>, the former is enabling VBA compatibility mode, while the latter is enforcing VBA support on top of compatibility."
-msgstr ""
+msgstr "Αυτή η πρόταση πρέπει να χρησιμοποιείται σε συνεργασία με την δήλωση <literal>Option Compatible</literal> ή <literal>Option VBASupport 1</literal>, η πρώτη ενεργοποιεί την κατάσταση συμβατότητας VBA, ενώ η δεύτερη εξαναγκάζει υποστήριξη VBA πάνω από τη συμβατότητα."
#: classmodule.xhp
msgctxt ""
@@ -35614,7 +35614,7 @@ msgctxt ""
"N0086\n"
"help.text"
msgid "Option ClassModule"
-msgstr ""
+msgstr "Επιλογή ClassModule"
#: classmodule.xhp
msgctxt ""
@@ -35622,7 +35622,7 @@ msgctxt ""
"N0095\n"
"help.text"
msgid "' Optional members go here"
-msgstr ""
+msgstr "' Τα προαιρετικά μέλη πηγαίνουν εδώ"
#: classmodule.xhp
msgctxt ""
@@ -35630,7 +35630,7 @@ msgctxt ""
"N0098\n"
"help.text"
msgid "' Optional construction code goes here"
-msgstr ""
+msgstr "' Ο προαιρετικός κώδικας δόμησης πηγαίνει εδώ"
#: classmodule.xhp
msgctxt ""
@@ -35638,7 +35638,7 @@ msgctxt ""
"N0099\n"
"help.text"
msgid "End Sub ' Constructor"
-msgstr ""
+msgstr "End Sub ' Κατασκευαστής"
#: classmodule.xhp
msgctxt ""
@@ -35646,7 +35646,7 @@ msgctxt ""
"N0101\n"
"help.text"
msgid "' Optional destruction code goes here"
-msgstr ""
+msgstr "' Ο προαιρετικός κώδικας καταστροφής πηγαίνει εδώ"
#: classmodule.xhp
msgctxt ""
@@ -35654,7 +35654,7 @@ msgctxt ""
"N0102\n"
"help.text"
msgid "End Sub ' Destructor"
-msgstr ""
+msgstr "End Sub ' Καταστροφέας"
#: classmodule.xhp
msgctxt ""
@@ -35662,7 +35662,7 @@ msgctxt ""
"N0104\n"
"help.text"
msgid "' Properties go here."
-msgstr ""
+msgstr "' Οι ιδιότητες πηγαίνουν εδώ"
#: classmodule.xhp
msgctxt ""
@@ -35670,7 +35670,7 @@ msgctxt ""
"N0106\n"
"help.text"
msgid "' Procedures & functions go here."
-msgstr ""
+msgstr "' Οι διαδικασίες και οι συναρτήσεις πηγαίνουν εδώ."
#: classmodule.xhp
msgctxt ""
@@ -35678,7 +35678,7 @@ msgctxt ""
"N0108\n"
"help.text"
msgid "Refer to <link href=\"text/sbasic/python/python_platform.xhp\">Identifying the Operating System</link> and <link href=\"text/sbasic/python/python_session.xhp\">Getting Session Information</link> for class module simple examples."
-msgstr ""
+msgstr "Δείτε <link href=\"text/sbasic/python/python_platform.xhp\">Ταυτοποίηση του λειτουργικού συστήματος</link> και <link href=\"text/sbasic/python/python_session.xhp\">Λήψη πληροφοριών συνεδρίας</link> για απλά παραδείγματα αρθρωμάτων κλάσης."
#: classmodule.xhp
msgctxt ""
@@ -35686,7 +35686,7 @@ msgctxt ""
"N0109\n"
"help.text"
msgid "Multiple thorough class examples are available from <link href=\"text/sbasic/guide/access2base.xhp\">Access2Base shared Basic library</link>."
-msgstr ""
+msgstr "Πολλά διεξοδικά παραδείγματα κλάσης είναι διαθέσιμα από την <link href=\"text/sbasic/guide/access2base.xhp\">κοινόχρηστη βιβλιοθήκη Basic Access2Base</link>."
#: code-stubs.xhp
msgctxt ""
@@ -35702,7 +35702,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Option Compatible"
-msgstr ""
+msgstr "Option Compatible"
#: compatible.xhp
msgctxt ""
@@ -35710,7 +35710,7 @@ msgctxt ""
"N0103\n"
"help.text"
msgid "<bookmark_value>Option Compatible</bookmark_value> <bookmark_value>CompatibilityMode</bookmark_value> <bookmark_value>VBA compatibility</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Option Compatible</bookmark_value><bookmark_value>CompatibilityMode</bookmark_value><bookmark_value>Συμβατότητα VBA</bookmark_value>"
#: compatible.xhp
msgctxt ""
@@ -35718,7 +35718,7 @@ msgctxt ""
"N0104\n"
"help.text"
msgid "<variable id=\"compatiblestatement\"><link href=\"text/sbasic/shared/compatible.xhp\" name=\"compatible\">Option Compatible Statement</link></variable>"
-msgstr ""
+msgstr "<variable id=\"compatiblestatement\"><link href=\"text/sbasic/shared/compatible.xhp\" name=\"compatible\">Επιλογή συμβατής δήλωσης</link></variable>"
#: compatible.xhp
msgctxt ""
@@ -35726,7 +35726,7 @@ msgctxt ""
"N0106\n"
"help.text"
msgid "<literal>Option Compatible</literal> turns on the VBA-compatible Basic compiler mode at the module level. The function <literal>CompatibilityMode()</literal> controls runtime mode and affects all code executed after setting or resetting the mode."
-msgstr ""
+msgstr "<literal>Option Compatible</literal> ενεργοποιεί την κατάσταση μεταγλωττιστή Basic συμβατού με VBA στο επίπεδο αρθρώματος. Η συνάρτηση <literal>CompatibilityMode()</literal> ελέγχει την κατάσταση χρόνου εκτέλεσης και επηρεάζει όλον τον εκτελούμενο κώδικα μετά τη ρύθμιση ή επαναρύθμιση της κατάστασης."
#: compatible.xhp
msgctxt ""
@@ -35734,7 +35734,7 @@ msgctxt ""
"N0107\n"
"help.text"
msgid "This option may affect or assist in the following situations:"
-msgstr ""
+msgstr "Αυτή η επιλογή μπορεί να επηρεάσει ή να βοηθήσει τις παρακάτω καταστάσεις:"
#: compatible.xhp
msgctxt ""
@@ -35742,7 +35742,7 @@ msgctxt ""
"N0108\n"
"help.text"
msgid "Allow special characters as identifiers."
-msgstr ""
+msgstr "Να επιτρέπονται ειδικοί χαρακτήρες ως αναγνωριστικά."
#: compatible.xhp
msgctxt ""
@@ -35750,7 +35750,7 @@ msgctxt ""
"N0109\n"
"help.text"
msgid "Create constants including non-printable characters."
-msgstr ""
+msgstr "Δημιουργία σταθερών συμπεριλαμβανομένων μη εκτυπώσιμων χαρακτήρων."
#: compatible.xhp
msgctxt ""
@@ -35758,7 +35758,7 @@ msgctxt ""
"N0110\n"
"help.text"
msgid "Support <literal>Private</literal>/<literal>Public</literal> keywords for procedures."
-msgstr ""
+msgstr "Υποστήριξη λέξεων-κλειδιών για τις διεργασίες <literal>Private</literal>/<literal>Public</literal>."
#: compatible.xhp
msgctxt ""
@@ -35766,7 +35766,7 @@ msgctxt ""
"N0111\n"
"help.text"
msgid "Compulsory <literal>Set</literal> statement for objects."
-msgstr ""
+msgstr "Υποχρεωτική δήλωση για αντικείμενα <literal>Set</literal>."
#: compatible.xhp
msgctxt ""
@@ -35774,7 +35774,7 @@ msgctxt ""
"N0112\n"
"help.text"
msgid "Default values for optional parameters in procedures."
-msgstr ""
+msgstr "Προεπιλεγμένες τιμές για προαιρετικές παραμέτρους στις διεργασίες."
#: compatible.xhp
msgctxt ""
@@ -35782,7 +35782,7 @@ msgctxt ""
"N0113\n"
"help.text"
msgid "Named arguments when multiple optional parameters exist."
-msgstr ""
+msgstr "Επώνυμα ορίσματα με όταν υπάρχουν πολλές προαιρετικές παράμετροι."
#: compatible.xhp
msgctxt ""
@@ -35790,7 +35790,7 @@ msgctxt ""
"N0114\n"
"help.text"
msgid "Preload of %PRODUCTNAME Basic libraries"
-msgstr ""
+msgstr "Προφόρτωση των βιβλιοθηκών Basic του %PRODUCTNAME"
#: compatible.xhp
msgctxt ""
@@ -35798,7 +35798,7 @@ msgctxt ""
"N0115\n"
"help.text"
msgid "<literal>Option Compatible</literal> is required when coding class modules."
-msgstr ""
+msgstr "Απαιτείται <literal>Option Compatible</literal> όταν κωδικοποιούνται αρθρώματα κλάσεων."
#: compatible.xhp
msgctxt ""
@@ -35806,7 +35806,7 @@ msgctxt ""
"N0118\n"
"help.text"
msgid "<variable id=\"compatibilitymodestatement\"><link href=\"text/sbasic/shared/compatible.xhp\" name=\"CompatibilityMode\">CompatibilityMode() Function</link></variable>"
-msgstr ""
+msgstr "<variable id=\"compatibilitymodestatement\"><link href=\"text/sbasic/shared/compatible.xhp\" name=\"CompatibilityMode\">Συνάρτηση CompatibilityMode()</link></variable>"
#: compatible.xhp
msgctxt ""
@@ -35814,7 +35814,7 @@ msgctxt ""
"N0120\n"
"help.text"
msgid "<literal>CompatibilityMode()</literal> function is controlling runtime mode and affects all code executed after setting or resetting the mode. <literal>Option Compatible</literal> turns on VBA compatibility at module level for the %PRODUCTNAME Basic compiler."
-msgstr ""
+msgstr "Η συνάρτηση <literal>CompatibilityMode()</literal> ελέγχει την κατάσταση χρόνου εκτέλεσης και επηρεάζει όλον τον εκτελούμενο κώδικα μετά τη ρύθμιση ή επαναρύθμιση της κατάστασης. Η <literal>Option Compatible</literal> ενεργοποιεί τη συμβατότητα VBA σε επίπεδο αρθρώματος για τον μεταγλωττιστή Basic του %PRODUCTNAME."
#: compatible.xhp
msgctxt ""
@@ -35822,7 +35822,7 @@ msgctxt ""
"N0119\n"
"help.text"
msgid "Use this feature with caution, limit it to document conversion situations for example."
-msgstr ""
+msgstr "Χρησιμοποιήστε αυτό το χαρακτηριστικό με προσοχή, περιορίστε το, π.χ., στις καταστάσεις μετατροπής εγγράφων."
#: compatible.xhp
msgctxt ""
@@ -35830,7 +35830,7 @@ msgctxt ""
"N0121\n"
"help.text"
msgid "This function may affect or help in the following situations:"
-msgstr ""
+msgstr "Αυτή η επιλογή μπορεί να επηρεάσει ή να βοηθήσει στις παρακάτω καταστάσεις:"
#: compatible.xhp
msgctxt ""
@@ -35838,7 +35838,7 @@ msgctxt ""
"N0122\n"
"help.text"
msgid "Creating enumerations with Enum statement"
-msgstr ""
+msgstr "Δημιουργία απαριθμήσεων με τη δήλωση Enum"
#: compatible.xhp
msgctxt ""
@@ -35846,7 +35846,7 @@ msgctxt ""
"N0123\n"
"help.text"
msgid "Updating Dir execution conditions"
-msgstr ""
+msgstr "Ενημέρωση καταστάσεων εκτέλεσης Dir"
#: compatible.xhp
msgctxt ""
@@ -35854,7 +35854,7 @@ msgctxt ""
"N0124\n"
"help.text"
msgid "Running RmDir command in VBA mode"
-msgstr ""
+msgstr "Εκτέλεση εντολής RmDir σε κατάσταση VBA"
#: compatible.xhp
msgctxt ""
@@ -35862,7 +35862,7 @@ msgctxt ""
"N0125\n"
"help.text"
msgid "Changing behaviour of Basic Dir command"
-msgstr ""
+msgstr "αλλαγή συμπεριφοράς της εντολής Basic Dir"
#: compatible.xhp
msgctxt ""
@@ -35870,7 +35870,7 @@ msgctxt ""
"N0126\n"
"help.text"
msgid "<literal>CompatibilityMode()</literal> function may be necessary when resorting to <literal>Option Compatible</literal> or <literal>Option VBASupport</literal> compiler modes."
-msgstr ""
+msgstr "Η συνάρτηση <literal>CompatibilityMode()</literal> μπορεί να είναι απαραίτητη κατά την επαναταξινόμηση των καταστάσεων μεταγλωττιστή <literal>Option Compatible</literal> ή <literal>Option VBASupport</literal>."
#: compatible.xhp
msgctxt ""
@@ -35878,7 +35878,7 @@ msgctxt ""
"N0129\n"
"help.text"
msgid "Refer to <link href=\"text/sbasic/python/python_platform.xhp\">Identifying the Operating System</link> and <link href=\"text/sbasic/python/python_session.xhp\">Getting Session Information</link> for <literal>Option Compatible</literal> simple examples, or <link href=\"text/sbasic/guide/access2base.xhp\">Access2Base shared Basic library</link> for other class examples making use of <literal>Option Compatible</literal> compiler mode."
-msgstr ""
+msgstr "Δείτε τα <link href=\"text/sbasic/python/python_platform.xhp\">Ταυτοποίηση του λειτουργικού συστήματος</link> και <link href=\"text/sbasic/python/python_session.xhp\">Λήψη πληροφοριών συνεδρίας</link> για απλά παραδείγματα του <literal>Option Compatible</literal> ή <link href=\"text/sbasic/guide/access2base.xhp\">Κοινόχρηστη βιβλιοθήκη Basic του Access2Base</link> για άλλα παραδείγματα κλάσης που χρησιμοποιούν την κατάσταση μεταγλωττιστή <literal>Option Compatible</literal>."
#: compatible.xhp
msgctxt ""
@@ -35886,7 +35886,7 @@ msgctxt ""
"N0131\n"
"help.text"
msgid "Variables scope modification in <link href=\"text/sbasic/shared/01020300.xhp\">Using Procedures and Functions</link> with <literal>CompatibilityMode()</literal> function."
-msgstr ""
+msgstr "Τροποποίηση του πεδίου των μεταβλητών στο <link href=\"text/sbasic/shared/01020300.xhp\">Χρήση διεργασιών και συναρτήσεων</link> με τη συνάρτηση <literal>CompatibilityMode()</literal>."
#: enum.xhp
msgctxt ""
@@ -35934,7 +35934,7 @@ msgctxt ""
"N0007\n"
"help.text"
msgid "Within a given enumeration, fit together values that logically relate to one another."
-msgstr ""
+msgstr "Σε δεδομένη απαρίθμηση, συνδέστε τις τιμές που σχετίζονται λογικά μεταξύ τους."
#: enum.xhp
msgctxt ""
@@ -35942,7 +35942,7 @@ msgctxt ""
"N0030\n"
"help.text"
msgid "Enumerated values are rendered to <emph>Long</emph> datatype. Basic functions are public accessors to enumerations. Enumeration names and value names must be unique within a library and across modules."
-msgstr ""
+msgstr "Απαριθμημένες τιμές αποδίδονται με τύπο δεδομένων <emph>Long</emph>. Οι συναρτήσεις Basic είναι στοιχεία πρόσβασης σε απαριθμήσεις. Τα ονόματα των απαριθμήσεων και τα ονόματα τιμής πρέπει να είναι μοναδικά μέσα σε βιβλιοθήκη και μεταξύ των αρθρωμάτων."
#: enum.xhp
msgctxt ""
@@ -35958,7 +35958,7 @@ msgctxt ""
"N0037\n"
"help.text"
msgid "Display WindowManager grouped constant values:"
-msgstr ""
+msgstr "Εμφάνιση του WindowManager με ομαδοποιημένες σταθερές τιμές:"
#: enum.xhp
msgctxt ""
@@ -35966,7 +35966,7 @@ msgctxt ""
"N0051\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03100700.xhp\" name=\"const\">Const</link> statement, <link href=\"text/sbasic/shared/01020100.xhp\" name=\"external\">constants</link>"
-msgstr ""
+msgstr "Δήλωση <link href=\"text/sbasic/shared/03100700.xhp\" name=\"const\">Const</link>, <link href=\"text/sbasic/shared/01020100.xhp\" name=\"external\">σταθερές</link>"
#: enum.xhp
msgctxt ""
@@ -35974,7 +35974,7 @@ msgctxt ""
"N0053\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03103350.xhp\" name=\"Option VBASupport\">Option VBASupport</link> statement"
-msgstr ""
+msgstr "Δήλωση <link href=\"text/sbasic/shared/03103350.xhp\" name=\"Option VBASupport\">Option VBASupport</link>"
#: enum.xhp
msgctxt ""
@@ -35982,7 +35982,7 @@ msgctxt ""
"N0061\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With\">With</link> statement"
-msgstr ""
+msgstr "Δήλωση <link href=\"text/sbasic/shared/03090411.xhp\" name=\"With\">With</link>"
#: keys.xhp
msgctxt ""
@@ -36198,7 +36198,7 @@ msgctxt ""
"hd_id3154232\n"
"help.text"
msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
-msgstr ""
+msgstr "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">Βοήθεια %PRODUCTNAME Basic</link></variable>"
#: main0601.xhp
msgctxt ""
@@ -36238,7 +36238,7 @@ msgctxt ""
"hd_id191548155077269\n"
"help.text"
msgid "Working with Macros in Python"
-msgstr ""
+msgstr "Εργασία με μακροεντολές στο Python"
#: main0601.xhp
msgctxt ""
@@ -36262,7 +36262,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Partition Function"
-msgstr ""
+msgstr "Συνάρτηση κατάτμησης (Partition)"
#: partition.xhp
msgctxt ""
@@ -36270,7 +36270,7 @@ msgctxt ""
"bm_id31548421805896\n"
"help.text"
msgid "<bookmark_value>Partition Function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Συνάρτηση κατάτμησης (Partition)</bookmark_value>"
#: partition.xhp
msgctxt ""
@@ -36278,7 +36278,7 @@ msgctxt ""
"hd_id171548419512929\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/partition.xhp\" name=\"Partition function\">Partition Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/partition.xhp\" name=\"Partition function\">Συνάρτηση κατάτμησης (Partition) [VBA]</link>"
#: partition.xhp
msgctxt ""
@@ -36286,7 +36286,7 @@ msgctxt ""
"par_id461548419700445\n"
"help.text"
msgid "Returns a string indicating where a number occurs within a calculated series of ranges."
-msgstr ""
+msgstr "Επιστρέφει συμβολοσειρά που δείχνει πού εμφανίζεται ένας αριθμός σε υπολογισμένη σειρά περιοχών."
#: partition.xhp
msgctxt ""
@@ -36294,7 +36294,7 @@ msgctxt ""
"par_id111548419647867\n"
"help.text"
msgid "Partition( Number, Start, End, Interval)"
-msgstr ""
+msgstr "Partition(αριθμός, έναρξη, τέλος, διάστημα)"
#: partition.xhp
msgctxt ""
@@ -36302,7 +36302,7 @@ msgctxt ""
"par_id481548420000538\n"
"help.text"
msgid "<emph>Number</emph>: Required. The number to determine the partition."
-msgstr ""
+msgstr "<emph>Αριθμός</emph>: απαιτείται. Ο αριθμός για καθορισμό της κατάτμησης."
#: partition.xhp
msgctxt ""
@@ -36310,7 +36310,7 @@ msgctxt ""
"par_id841548420006137\n"
"help.text"
msgid "<emph>Start</emph>: Required. An integer number defining the lower value of the range of numbers."
-msgstr ""
+msgstr "<emph>Έναρξη</emph>: απαιτείται. Ακέραιος αριθμός που καθορίζει την ελάχιστη τιμή της περιοχής των αριθμών."
#: partition.xhp
msgctxt ""
@@ -36318,7 +36318,7 @@ msgctxt ""
"par_id781548420012105\n"
"help.text"
msgid "<emph>End</emph>: Required. An integer number defining the highest value of the range."
-msgstr ""
+msgstr "<emph>Τέλος</emph>: απαιτείται: Ακέραιος αριθμός που καθορίζει τη μέγιστη τιμή της περιοχής."
#: partition.xhp
msgctxt ""
@@ -36326,7 +36326,7 @@ msgctxt ""
"par_id371548420017250\n"
"help.text"
msgid "<emph>Interval</emph>: Required. An integer number that specifies the size of the partitions within the range of numbers (between Start and End)."
-msgstr ""
+msgstr "<emph>Διάστημα</emph>: απαιτείται. Ακέραιος αριθμός που καθορίζει το μέγεθος των κατατμήσεων στην περιοχή των αριθμών (μεταξύ αρχής και τέλους)."
#: partition.xhp
msgctxt ""
@@ -36334,7 +36334,7 @@ msgctxt ""
"par_id561548420541509\n"
"help.text"
msgid "print \"20:24 the number 20 occurs in the range: \" & retStr"
-msgstr ""
+msgstr "print \"20:24 ο αριθμός 20 εμφανίζεται στην περιοχή: \" & retStr"
#: partition.xhp
msgctxt ""
@@ -36342,7 +36342,7 @@ msgctxt ""
"par_id161548420558523\n"
"help.text"
msgid "print \" 20: 20 the number 20 occurs in the range: \" & retStr"
-msgstr ""
+msgstr "print \" 20: 20 ο αριθμός 20 εμφανίζεται στην περιοχή \" & retStr"
#: partition.xhp
msgctxt ""
@@ -36350,7 +36350,7 @@ msgctxt ""
"par_id561548420579525\n"
"help.text"
msgid "print \"100: the number 120 occurs in the range: \" & retStr"
-msgstr ""
+msgstr "print \" 100: ο αριθμός 120 εμφανίζεται στην περιοχή \" & retStr"
#: partition.xhp
msgctxt ""
@@ -36358,7 +36358,7 @@ msgctxt ""
"par_id921548420596118\n"
"help.text"
msgid "print \" : -1 the number -5 occurs in the range: \" & retStr"
-msgstr ""
+msgstr "print \" ...: -1 ο αριθμός -5 εμφανίζεται στην περιοχή \" & retStr"
#: partition.xhp
msgctxt ""
@@ -36366,7 +36366,7 @@ msgctxt ""
"par_id861548420616153\n"
"help.text"
msgid "print \" 2: 3 the number 2 occurs in the range: \" & retStr"
-msgstr ""
+msgstr "print \" 2: 3 ο αριθμός 2 εμφανίζεται στην περιοχή \" & retStr"
#: replace.xhp
msgctxt ""
@@ -36374,7 +36374,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Replace Function"
-msgstr ""
+msgstr "Συνάρτηση Replace"
#: replace.xhp
msgctxt ""
@@ -36382,7 +36382,7 @@ msgctxt ""
"bm_id721552551162491\n"
"help.text"
msgid "<bookmark_value>Replace function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Συνάρτηση Replace</bookmark_value>"
#: replace.xhp
msgctxt ""
@@ -36390,7 +36390,7 @@ msgctxt ""
"hd_id781552551013521\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/replace.xhp\" name=\"Replace Function\">Replace Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/replace.xhp\" name=\"Συνάρτηση Replace\">Συνάρτηση Replace</link>"
#: replace.xhp
msgctxt ""
@@ -36398,7 +36398,7 @@ msgctxt ""
"par_id291552551013522\n"
"help.text"
msgid "Replaces some string by another."
-msgstr ""
+msgstr "Αντικαθιστά κάποια συμβολοσειρά με μια άλλη."
#: replace.xhp
msgctxt ""
@@ -36406,7 +36406,7 @@ msgctxt ""
"par_id931552552227310\n"
"help.text"
msgid "Replace (Text As String, SearchStr As String, ReplStr As String [, Start As Long [, Count as long [, Compare As Boolean]]]"
-msgstr ""
+msgstr "Replace (Text As String, SearchStr As String, ReplStr As String [, Start As Long [, Count as long [, Compare As Boolean]]]"
#: replace.xhp
msgctxt ""
@@ -36414,7 +36414,7 @@ msgctxt ""
"par_id911552552252024\n"
"help.text"
msgid "String"
-msgstr ""
+msgstr "Συμβολοσειρά"
#: replace.xhp
msgctxt ""
@@ -36422,7 +36422,7 @@ msgctxt ""
"par_id721552552263062\n"
"help.text"
msgid "<emph>Text:</emph> Any string expression that you want to modify."
-msgstr ""
+msgstr "<emph>Text:</emph> Οποιαδήποτε έκφραση συμβολοσειράς που θέλετε να τροποποιήσετε."
#: replace.xhp
msgctxt ""
@@ -36430,7 +36430,7 @@ msgctxt ""
"par_id901552552269836\n"
"help.text"
msgid "<emph>SearchStr:</emph> Any string expression that shall be searched for."
-msgstr ""
+msgstr "<emph>SearchStr:</emph> Οποιαδήποτε έκφραση συμβολοσειράς που θα αναζητηθεί."
#: replace.xhp
msgctxt ""
@@ -36438,7 +36438,7 @@ msgctxt ""
"par_id791552552275383\n"
"help.text"
msgid "<emph>ReplStr:</emph> Any string expression that shall replace the found search string."
-msgstr ""
+msgstr "<emph>ReplStr:</emph> Οποιαδήποτε παράσταση συμβολοσειράς που θα αντικαταστήσει την συμβολοσειρά αναζήτησης που θα βρεθεί."
#: replace.xhp
msgctxt ""
@@ -36446,7 +36446,7 @@ msgctxt ""
"par_id111552552283060\n"
"help.text"
msgid "<emph>Start:</emph> Numeric expression that indicates the character position within the string where the search shall begin. The maximum allowed value is 65535."
-msgstr ""
+msgstr "<emph>Start:</emph> Ακέραια παράσταση που δηλώνει τη θέση του χαρακτήρα εντός της συμβολοσειράς όπου αρχίζει η αναζήτηση. Η μέγιστη επιτρεπτή τιμή είναι 65535."
#: replace.xhp
msgctxt ""
@@ -36454,7 +36454,7 @@ msgctxt ""
"par_id921552552289833\n"
"help.text"
msgid "<emph>Count:</emph> The maximal number of times the replace shall be performed."
-msgstr ""
+msgstr "<emph>Count:</emph> Ο μέγιστος αριθμός φορών που θα εκτελεστεί η αντικατάσταση."
#: replace.xhp
msgctxt ""
@@ -36462,7 +36462,7 @@ msgctxt ""
"par_id891552552302894\n"
"help.text"
msgid "<emph>Compare:</emph> Optional boolean expression that defines the type of comparison. The value of this parameter can be TRUE or FALSE. The default value of TRUE specifies a text comparison that is not case-sensitive. The value of FALSE specifies a binary comparison that is case-sensitive. You can as well use 0 instead of FALSE or 1 instead of TRUE."
-msgstr ""
+msgstr "<emph>Compare:</emph> Προαιρετική παράσταση Μπουλ που καθορίζει τον τύπο της σύγκρισης. Η τιμή αυτής της παραμέτρου μπορεί να είναι TRUE ή FALSE. Η προεπιλεγμένη τιμή TRUE καθορίζει μια σύγκριση κειμένου χωρίς διάκριση πεζών-κεφαλαίων. Η τιμή FALSE καθορίζει δυαδική σύγκριση με διάκριση πεζών-κεφαλαίων. Μπορείτε επίσης να χρησιμοποιήσετε 0 αντί για FALSE ή 1 αντί για TRUE."
#: replace.xhp
msgctxt ""
@@ -36470,7 +36470,7 @@ msgctxt ""
"par_id991552552420717\n"
"help.text"
msgid "msgbox replace (\"aBbcnnbnn\", \"b\", \"$\", 1, 1, FALSE)'returns \"aB$cnnbnn\""
-msgstr ""
+msgstr "msgbox replace (\"aBbcnnbnn\", \"b\", \"$\", 1, 1, FALSE)'επιστρέφει \"aB$cnnbnn\""
#: replace.xhp
msgctxt ""
@@ -36478,7 +36478,7 @@ msgctxt ""
"par_id321552552440672\n"
"help.text"
msgid "REM meaning: \"b\" should be replaced, but"
-msgstr ""
+msgstr "REM σημαίνει: το \"b\" πρέπει να αντικατασταθεί, αλλά"
#: replace.xhp
msgctxt ""
@@ -36486,7 +36486,7 @@ msgctxt ""
"par_id571552552467647\n"
"help.text"
msgid "REM * only when lowercase (parameter 6), hence second occurrence of \"b\""
-msgstr ""
+msgstr "REM * μόνο για πεζό γράμμα (παράμετρος 6), εξού και η δεύτερη εμφάνιση του \"b\""
#: replace.xhp
msgctxt ""
@@ -36494,7 +36494,7 @@ msgctxt ""
"par_id71552552474769\n"
"help.text"
msgid "REM * only first (respecting case) occurrence (parameter 5)"
-msgstr ""
+msgstr "REM * μόνο η πρώτη εμφάνιση (σεβόμενοι πεζά-κεφαλαία) (παράμετρος 5)"
#: special_vba_func.xhp
msgctxt ""
@@ -36518,7 +36518,7 @@ msgctxt ""
"hd_id051820170313205718\n"
"help.text"
msgid "<variable id=\"exclusivevba\"><link href=\"text/sbasic/shared/special_vba_func.xhp\">Exclusive VBA Functions and Statements</link></variable>"
-msgstr ""
+msgstr "<variable id=\"exclusivevba\"><link href=\"text/sbasic/shared/special_vba_func.xhp\">Αποκλειστικές συναρτήσεις και προτάσεις VBA</link></variable>"
#: special_vba_func.xhp
msgctxt ""
@@ -36526,7 +36526,7 @@ msgctxt ""
"par_id051820170314436068\n"
"help.text"
msgid "<ahelp hid=\".\">%PRODUCTNAME Basic adds this set of functions when VBA support is enabled.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Η %PRODUCTNAME Basic προσθέτει αυτό το σύνολο συναρτήσεων όταν η υποστήριξη VBA είναι ενεργή.</ahelp>"
#: special_vba_func.xhp
msgctxt ""
@@ -36542,7 +36542,7 @@ msgctxt ""
"bm_id71543455697570\n"
"help.text"
msgid "<bookmark_value>VBA Statements</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Προτάσεις VBA</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -36550,7 +36550,7 @@ msgctxt ""
"hd_id31543446449360\n"
"help.text"
msgid "VBA Statements"
-msgstr ""
+msgstr "Προτάσεις VBA"
#: special_vba_func.xhp
msgctxt ""
@@ -36590,7 +36590,7 @@ msgctxt ""
"bm_id051920170358102074\n"
"help.text"
msgid "<bookmark_value>VBA Functions;Date and Time Functions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Συναρτήσεις VBA;Συναρτήσεις ημερομηνίας και χρόνου</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -36622,7 +36622,7 @@ msgctxt ""
"bm_id051920170358346963\n"
"help.text"
msgid "<bookmark_value>VBA Functions;Mathematical Functions</bookmark_value> <bookmark_value>VBA Functions;formatting numbers</bookmark_value> <bookmark_value>VBA Functions;partitioning numbers</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Συναρτήσεις VBA;Μαθηματικές συναρτήσεις</bookmark_value> <bookmark_value>VBA Συναρτήσεις;μορφοποίηση αριθμών</bookmark_value> <bookmark_value>Συναρτήσεις VBA;αριθμοί μερισμού</bookmark_value>"
#: special_vba_func.xhp
msgctxt ""
@@ -36654,7 +36654,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "StarDesktop"
-msgstr ""
+msgstr "StarDesktop"
#: stardesktop.xhp
msgctxt ""
@@ -36662,7 +36662,7 @@ msgctxt ""
"N0089\n"
"help.text"
msgid "<bookmark_value>StarDesktop</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>StarDesktop</bookmark_value>"
#: stardesktop.xhp
msgctxt ""
@@ -36670,7 +36670,7 @@ msgctxt ""
"hd_id401544551916353\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/stardesktop.xhp\" name=\"StarDesktop\">StarDesktop</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/stardesktop.xhp\" name=\"StarDesktop\">StarDesktop</link>"
#: stardesktop.xhp
msgctxt ""
@@ -36678,7 +36678,7 @@ msgctxt ""
"N0091\n"
"help.text"
msgid "The StarDesktop object represents %PRODUCTNAME application. Some routines or user interface objects such as current window can be used via StarDesktop."
-msgstr ""
+msgstr "Το αντικείμενο StarDesktop αναπαριστά εφαρμογή του %PRODUCTNAME. Κάποιες ρουτίνες ή αντικείμενα διεπαφής χρήστη όπως το τρέχον παράθυρο μπορούν να χρησιμοποιηθούν μέσω StarDesktop."
#: stardesktop.xhp
msgctxt ""
@@ -36686,7 +36686,7 @@ msgctxt ""
"N0092\n"
"help.text"
msgid "Example:"
-msgstr ""
+msgstr "Παράδειγμα:"
#: uno_objects.xhp
msgctxt ""
@@ -36694,7 +36694,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "UNO Objects"
-msgstr ""
+msgstr "Αντικείμενα UNO"
#: uno_objects.xhp
msgctxt ""
@@ -36702,7 +36702,7 @@ msgctxt ""
"bm_id171544787218331\n"
"help.text"
msgid "<bookmark_value>programming;UNO objects</bookmark_value> <bookmark_value>UNO objects</bookmark_value> <bookmark_value>UNO functions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>προγραμματισμός;αντικείμενα UNO</bookmark_value><bookmark_value>αντικείμενα UNO</bookmark_value><bookmark_value>συναρτήσεις UNO</bookmark_value>"
#: uno_objects.xhp
msgctxt ""
@@ -36710,7 +36710,7 @@ msgctxt ""
"hd_id3156027\n"
"help.text"
msgid "UNO Objects, Functions and Services"
-msgstr ""
+msgstr "Αντικείμενα UNO, συναρτήσεις και υπηρεσίες"
#: uno_objects.xhp
msgctxt ""
@@ -36718,7 +36718,7 @@ msgctxt ""
"par_id3153312\n"
"help.text"
msgid "Functions, objects and services of Unified Network Objects (UNO)."
-msgstr ""
+msgstr "Συναρτήσεις, αντικείμενα και υπηρεσίες του Unified Network Objects (UNO)."
#: vbasupport.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/sbasic/shared/02.po b/source/el/helpcontent2/source/text/sbasic/shared/02.po
index a906146b374..083c2ca202e 100644
--- a/source/el/helpcontent2/source/text/sbasic/shared/02.po
+++ b/source/el/helpcontent2/source/text/sbasic/shared/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2017-05-13 06:55+0000\n"
+"PO-Revision-Date: 2019-09-11 06:01+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494658552.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1568181675.000000\n"
#: 11010000.xhp
msgctxt ""
@@ -1606,7 +1606,7 @@ msgctxt ""
"hd_id11904\n"
"help.text"
msgid "Table Control"
-msgstr ""
+msgstr "Έλεγχος πίνακα"
#: 20000000.xhp
msgctxt ""
@@ -1614,7 +1614,7 @@ msgctxt ""
"par_id7511524\n"
"help.text"
msgid "<image id=\"Graphic3\" src=\"cmd/sc_insertgridcontrol.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_\">Table control icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic3\" src=\"cmd/sc_insertgridcontrol.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_\">Εικονίδιο ελέγχου πίνακα</alt></image>"
#: 20000000.xhp
msgctxt ""
@@ -1622,7 +1622,7 @@ msgctxt ""
"par_id9961854\n"
"help.text"
msgid "<ahelp hid=\".\">Adds a table control that can show a table data. You can populate the data by your program, using API calls.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\"> Προσθέτει ένα στοιχείο ελέγχου πίνακα που παρουσιάζει δεδομένα πίνακα. Μπορείτε να συμπληρώσετε τα δεδομένα από το πρόγραμμά σας, χρησιμοποιώντας κλήσεις API.</ahelp>"
#: 20000000.xhp
msgctxt ""
@@ -1630,7 +1630,7 @@ msgctxt ""
"hd_id11905\n"
"help.text"
msgid "Hyperlink Control"
-msgstr ""
+msgstr "Στοιχείο ελέγχου υπερσυνδέσμου"
#: 20000000.xhp
msgctxt ""
@@ -1638,7 +1638,7 @@ msgctxt ""
"par_id7511525\n"
"help.text"
msgid "<image id=\"Graphic3\" src=\"cmd/sc_inserthyperlinkcontrol.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_\">Insert hyperlink control icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic3\" src=\"cmd/sc_inserthyperlinkcontrol.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_\">Εισαγωγή εικονιδίου στοιχείου ελέγχου υπερσυνδέσμου</alt></image>"
#: 20000000.xhp
msgctxt ""
@@ -1646,4 +1646,4 @@ msgctxt ""
"par_id9961856\n"
"help.text"
msgid "<ahelp hid=\".\">Adds a hyperlink control that can open an address in web browser.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Προσθέτει στοιχείο ελέγχου υπερσυνδέσμου που μπορεί να ανοίξει μια διεύθυνση στον περιηγητή ιστού.</ahelp>"
diff --git a/source/el/helpcontent2/source/text/sbasic/shared/03.po b/source/el/helpcontent2/source/text/sbasic/shared/03.po
index aba6fe1c8bb..1178f8a9afc 100644
--- a/source/el/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/el/helpcontent2/source/text/sbasic/shared/03.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2019-02-06 08:35+0000\n"
+"PO-Revision-Date: 2019-09-11 06:02+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1549442158.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1568181751.000000\n"
#: lib_depot.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"par_id261558858921700\n"
"help.text"
msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
-msgstr ""
+msgstr "Δείτε το <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Άνοιγμα διαλόγου με Basic\">Άνοιγμα διαλόγου με Basic</link> για παράδειγμα της λειτουργίας LoadDialog."
#: lib_tools.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/swriter/guide.po b/source/el/helpcontent2/source/text/swriter/guide.po
index 155cfb2b208..154f0e7767a 100644
--- a/source/el/helpcontent2/source/text/swriter/guide.po
+++ b/source/el/helpcontent2/source/text/swriter/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-08-28 19:34+0200\n"
-"PO-Revision-Date: 2019-07-30 14:44+0000\n"
+"PO-Revision-Date: 2019-09-11 06:03+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@lists.gnome.gr\n"
"Language: el\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1564497859.000000\n"
+"X-POOTLE-MTIME: 1568181811.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -175,7 +175,7 @@ msgctxt ""
"bm_id3149973\n"
"help.text"
msgid "<bookmark_value>headings;rearranging</bookmark_value><bookmark_value>rearranging headings</bookmark_value><bookmark_value>moving;headings</bookmark_value><bookmark_value>demoting heading levels</bookmark_value><bookmark_value>promoting heading levels</bookmark_value><bookmark_value>Navigator;heading levels and chapters</bookmark_value><bookmark_value>arranging;headings</bookmark_value><bookmark_value>outlines;arranging chapters</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>επικεφαλίδες;αναδιάταξη</bookmark_value><bookmark_value>αναδιάταξη επικεφαλίδων</bookmark_value><bookmark_value>μετακίνηση;επικεφαλίδες</bookmark_value><bookmark_value>υποβιβασμός επιπέδων επικεφαλίδων</bookmark_value><bookmark_value>προβιβασμός επιπέδων επικεφαλίδων</bookmark_value><bookmark_value>Πλοηγητής;επίπεδα επικεφαλίδων και κεφαλαίων</bookmark_value><bookmark_value>διάταξη;επικεφαλίδες</bookmark_value><bookmark_value>διάρθρωση;διάταξη κεφαλαίων</bookmark_value>"
#: arrange_chapters.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/swriter/guide.po b/source/en-GB/helpcontent2/source/text/swriter/guide.po
index 2feb1be2ecc..0b9ab1cf669 100644
--- a/source/en-GB/helpcontent2/source/text/swriter/guide.po
+++ b/source/en-GB/helpcontent2/source/text/swriter/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-08-28 19:34+0200\n"
-"PO-Revision-Date: 2019-07-18 11:24+0000\n"
+"PO-Revision-Date: 2019-09-08 15:18+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1563449059.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1567955914.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"bm_id3149973\n"
"help.text"
msgid "<bookmark_value>headings;rearranging</bookmark_value><bookmark_value>rearranging headings</bookmark_value><bookmark_value>moving;headings</bookmark_value><bookmark_value>demoting heading levels</bookmark_value><bookmark_value>promoting heading levels</bookmark_value><bookmark_value>Navigator;heading levels and chapters</bookmark_value><bookmark_value>arranging;headings</bookmark_value><bookmark_value>outlines;arranging chapters</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>headings;rearranging</bookmark_value><bookmark_value>rearranging headings</bookmark_value><bookmark_value>moving;headings</bookmark_value><bookmark_value>demoting heading levels</bookmark_value><bookmark_value>promoting heading levels</bookmark_value><bookmark_value>Navigator;heading levels and chapters</bookmark_value><bookmark_value>arranging;headings</bookmark_value><bookmark_value>outlines;arranging chapters</bookmark_value>"
#: arrange_chapters.xhp
msgctxt ""
diff --git a/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po b/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po
index 0ed4c525e52..8ba99e37414 100644
--- a/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/en-GB/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: 2019-08-28 19:39+0200\n"
-"PO-Revision-Date: 2019-08-09 16:54+0000\n"
+"PO-Revision-Date: 2019-09-08 15:18+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1565369649.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1567955899.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -28015,7 +28015,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Delete selected rows"
-msgstr ""
+msgstr "Delete selected rows"
#: WriterCommands.xcu
msgctxt ""
@@ -28042,7 +28042,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Delete selected columns"
-msgstr ""
+msgstr "Delete selected columns"
#: WriterCommands.xcu
msgctxt ""
@@ -28069,7 +28069,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Delete table"
-msgstr ""
+msgstr "Delete table"
#: WriterCommands.xcu
msgctxt ""
@@ -28195,7 +28195,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Select Cell"
-msgstr ""
+msgstr "Select Cell"
#: WriterCommands.xcu
msgctxt ""
@@ -28258,7 +28258,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Select Table"
-msgstr ""
+msgstr "Select Table"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/en-GB/scp2/source/ooo.po b/source/en-GB/scp2/source/ooo.po
index 1ab53e9a316..dc234f75c4c 100644
--- a/source/en-GB/scp2/source/ooo.po
+++ b/source/en-GB/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-08-28 19:39+0200\n"
-"PO-Revision-Date: 2019-06-11 17:31+0000\n"
+"PO-Revision-Date: 2019-09-08 15:18+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1560274305.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1567955905.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -3702,7 +3702,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_SZL\n"
"LngText.text"
msgid "Silesian"
-msgstr ""
+msgstr "Silesian"
#: module_langpack.ulf
msgctxt ""
@@ -3710,7 +3710,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_SZL\n"
"LngText.text"
msgid "Installs the Silesian user interface"
-msgstr ""
+msgstr "Installs the Silesian user interface"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/es/scp2/source/ooo.po b/source/es/scp2/source/ooo.po
index d87db91aa5e..dc7b0c97405 100644
--- a/source/es/scp2/source/ooo.po
+++ b/source/es/scp2/source/ooo.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-08-28 19:39+0200\n"
-"PO-Revision-Date: 2019-09-03 15:39+0000\n"
-"Last-Translator: alarme <a.armengod@gmail.com>\n"
+"PO-Revision-Date: 2019-09-08 07:23+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1567525146.000000\n"
+"X-POOTLE-MTIME: 1567927394.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -3710,7 +3710,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_SZL\n"
"LngText.text"
msgid "Installs the Silesian user interface"
-msgstr "Instala la interfaz de usuario en Silesiano"
+msgstr "Instala la interfaz de usuario en silesiano"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/es/sd/messages.po b/source/es/sd/messages.po
index 199407fb1c8..e4dcbfd0696 100644
--- a/source/es/sd/messages.po
+++ b/source/es/sd/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: 2019-08-28 19:39+0200\n"
-"PO-Revision-Date: 2019-07-22 15:24+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2019-09-09 19:24+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1563809077.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1568057040.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
@@ -3086,12 +3086,12 @@ msgstr "I~nsertar"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:5737
msgctxt "drawnotebookbar|PageMenuButton"
msgid "_Layout"
-msgstr ""
+msgstr "_Disposición"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:6586
msgctxt "drawnotebookbar|PageLabel"
msgid "~Layout"
-msgstr ""
+msgstr "~Disposición"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:6616
msgctxt "drawnotebookbar|ReviewMenuButton"
@@ -3263,7 +3263,7 @@ msgstr ""
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6464
msgctxt "notebookbar_draw_compact|LayoutLabel"
msgid "~Layout"
-msgstr ""
+msgstr "~Disposición"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7010
msgctxt "notebookbar_draw_compact|ReviewMenuButton"
@@ -4825,7 +4825,7 @@ msgstr ""
#: sd/uiconfig/simpress/ui/notebookbar.ui:7075
msgctxt "impressnotebookbar|LayoutLabel"
msgid "~Layout"
-msgstr ""
+msgstr "Dis~posición"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7103
msgctxt "impressnotebookbar|SlideShowMenuButton"
diff --git a/source/fa/sysui/desktop/share.po b/source/fa/sysui/desktop/share.po
index 8be77c0c973..e90e92dcf31 100644
--- a/source/fa/sysui/desktop/share.po
+++ b/source/fa/sysui/desktop/share.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-05-07 21:35+0200\n"
-"PO-Revision-Date: 2018-11-07 19:06+0000\n"
+"PO-Revision-Date: 2019-09-06 21:18+0000\n"
"Last-Translator: Hossein <hossein.ir@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fa\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1541617567.000000\n"
+"X-POOTLE-MTIME: 1567804703.000000\n"
#: documents.ulf
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"drawing-template\n"
"LngText.text"
msgid "OpenOffice.org 1.0 Drawing Template"
-msgstr ""
+msgstr "الگوی طراحی اپن‌آفیس.ارگ 1.0"
#: documents.ulf
msgctxt ""
@@ -89,13 +89,12 @@ msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "صفحه‌گسترده اپن‌آفیس.ارگ 1.0"
#: documents.ulf
-#, fuzzy
msgctxt ""
"documents.ulf\n"
"spreadsheet-template\n"
"LngText.text"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
-msgstr "صفحه‌گسترده اپن‌آفیس.ارگ 1.0"
+msgstr "الگوی صفحه‌گسترده اپن‌آفیس.ارگ 1.0"
#: documents.ulf
msgctxt ""
@@ -106,13 +105,12 @@ msgid "OpenDocument Text"
msgstr "متن نوشتارباز"
#: documents.ulf
-#, fuzzy
msgctxt ""
"documents.ulf\n"
"oasis-text-flat-xml\n"
"LngText.text"
msgid "OpenDocument Text (Flat XML)"
-msgstr "قالب ارائهٔ نوشتارباز"
+msgstr "متن نوشتارباز (اکس. ام. ال.)"
#: documents.ulf
msgctxt ""
@@ -131,13 +129,12 @@ msgid "OpenDocument Master Document"
msgstr "نوشتار اصلی نوشتارباز"
#: documents.ulf
-#, fuzzy
msgctxt ""
"documents.ulf\n"
"oasis-master-document-template\n"
"LngText.text"
msgid "OpenDocument Master Document Template"
-msgstr "نوشتار اصلی نوشتارباز"
+msgstr "الگوی نوشتار اصلی نوشتارباز"
#: documents.ulf
msgctxt ""
@@ -156,13 +153,12 @@ msgid "OpenDocument Presentation"
msgstr "ارائهٔ نوشتارباز"
#: documents.ulf
-#, fuzzy
msgctxt ""
"documents.ulf\n"
"oasis-presentation-flat-xml\n"
"LngText.text"
msgid "OpenDocument Presentation (Flat XML)"
-msgstr "قالب ارائهٔ نوشتارباز"
+msgstr "ارائهٔ نوشتارباز (اکس. ام. ال.)"
#: documents.ulf
msgctxt ""
@@ -181,13 +177,12 @@ msgid "OpenDocument Drawing"
msgstr "نقاشی نوشتارباز"
#: documents.ulf
-#, fuzzy
msgctxt ""
"documents.ulf\n"
"oasis-drawing-flat-xml\n"
"LngText.text"
msgid "OpenDocument Drawing (Flat XML)"
-msgstr "قالب ارائهٔ نوشتارباز"
+msgstr "طراحی نوشتارباز (اکس. ام. ال.)"
#: documents.ulf
msgctxt ""
@@ -211,7 +206,7 @@ msgctxt ""
"oasis-spreadsheet-flat-xml\n"
"LngText.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
-msgstr ""
+msgstr "صفحه‌گستردهٔ نوشتارباز (اکس. ام. ال.)"
#: documents.ulf
msgctxt ""
@@ -382,13 +377,12 @@ msgid "Microsoft Excel Worksheet"
msgstr "کاربرگ اکسل مایکروسافت"
#: launcher_comment.ulf
-#, fuzzy
msgctxt ""
"launcher_comment.ulf\n"
"writer\n"
"LngText.text"
msgid "Create and edit text and images in letters, reports, documents and Web pages by using Writer."
-msgstr "با استفاده از کاتب، متن و گرافیک نامه‌ها، گزارش‌ها، نوشتارها و صفحات وب را ایجاد یا ویرایش کنید."
+msgstr "با استفاده از کاتب، متن و گرافیک را در نامه‌ها، گزارش‌ها، سندها و صفحات وب را ایجاد یا ویرایش کنید."
#: launcher_comment.ulf
msgctxt ""
@@ -407,7 +401,6 @@ msgid "Create and edit drawings, flow charts, and logos by using Draw."
msgstr "با استفاده از نقاش، نقاشی، روندنما و علامت تجاری طراحی یا ویرایش کنید."
#: launcher_comment.ulf
-#, fuzzy
msgctxt ""
"launcher_comment.ulf\n"
"calc\n"
@@ -501,7 +494,7 @@ msgctxt ""
"xsltfilter\n"
"LngText.text"
msgid "XSLT based filters"
-msgstr ""
+msgstr "الگوهای مبتنی بر اکس. اس. ال. تی."
#: launcher_unityquicklist.ulf
msgctxt ""
diff --git a/source/fr/cui/messages.po b/source/fr/cui/messages.po
index 3c9ea0c4c19..2c9ee4100f9 100644
--- a/source/fr/cui/messages.po
+++ b/source/fr/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: 2019-08-28 19:38+0200\n"
-"PO-Revision-Date: 2019-07-08 09:03+0000\n"
-"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
+"PO-Revision-Date: 2019-09-09 12:20+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1562576624.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1568031626.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -9166,7 +9166,7 @@ msgstr "_Infoballons"
#: cui/uiconfig/ui/optgeneralpage.ui:50
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
-msgstr "Afficher l'alerte \"L'aide locale n'est pas installée\""
+msgstr "Afficher l'alerte « L'aide locale n'est pas installée »"
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
@@ -9201,7 +9201,7 @@ msgstr "Boîtes de dialogue Imprimer"
#: cui/uiconfig/ui/optgeneralpage.ui:218
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
-msgstr "_Impression : spécification du statut \"Document modifié\""
+msgstr "_Impression : spécification du statut « Document modifié »"
#: cui/uiconfig/ui/optgeneralpage.ui:233
msgctxt "optgeneralpage|label4"
diff --git a/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po b/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po
index 3c62430d847..0eafd83010e 100644
--- a/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/fr/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: 2019-08-28 19:39+0200\n"
-"PO-Revision-Date: 2019-09-01 08:00+0000\n"
+"PO-Revision-Date: 2019-09-08 13:16+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1567324807.000000\n"
+"X-POOTLE-MTIME: 1567948587.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -18566,7 +18566,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Preview Dialog"
-msgstr "Boîte de dialogue d'aperçu"
+msgstr "Aperçu de la boîte de dialogue"
#: GenericCommands.xcu
msgctxt ""
diff --git a/source/fy/cui/messages.po b/source/fy/cui/messages.po
index 0e0d5c518ab..73814c906e4 100644
--- a/source/fy/cui/messages.po
+++ b/source/fy/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: 2019-08-28 19:38+0200\n"
-"PO-Revision-Date: 2019-09-02 18:02+0000\n"
+"PO-Revision-Date: 2019-09-09 18:41+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1567447341.000000\n"
+"X-POOTLE-MTIME: 1568054512.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -2443,147 +2443,147 @@ msgstr "As jo tekst oer meardere kolommen ferdiele wolle, selektearje jo de teks
#: cui/inc/tipoftheday.hrc:169
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Uncheck Slide Show > Settings > Presentation always on top if you need another program displays its window to the front of your presentation."
-msgstr ""
+msgstr "Set finkje by Presintaasje > Presintaasje ynstellingen > Presintaasje stees op 'e foargrûn út, as jo in oar programma nedich ha dy't it finster oer jo presintaasje set."
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
-msgstr ""
+msgstr "Selektearje opsjes yn Ark > Opsjes > %PRODUCTNAME Writer > Opmaak helpmiddels > Opmaak werjaan, om op te jaan hokker net te printsjen tekens werjûn wurde."
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
-msgstr ""
+msgstr "Wolle jo deselde yndieling foar it werjaan op it skerm as it printsjen? Selektearje Ark > Opsjes > %PRODUCTNAME Calc > Algemien > Printer ôfmjittingen foar tekst opmaak brûke."
#: cui/inc/tipoftheday.hrc:172
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Customize your footnotes page with Tools > Footnotes and Endnotes…"
-msgstr ""
+msgstr "Jo Fuotnoaten side oanpasse mei Ark > Fuot- en einnoaten…"
#: cui/inc/tipoftheday.hrc:173
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to sum a cell through several sheets? Refer to the range of sheets e.g. =SUM(Sheet1.A1:Sheet3.A1)."
-msgstr ""
+msgstr "Wolle jo fan meardere blêden in sel optelle? Ferwiis nei it berik fan blêden, bgl. =SOM (Blad1.A1:Blad3.A1)."
#: cui/inc/tipoftheday.hrc:174
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can copy from one sheet to another without the clipboard. Select the area to copy, Ctrl+click the target sheet's tab and use Sheet > Fill Cells > Fill Sheets."
-msgstr ""
+msgstr "Jo kinne fan it iene blêd nei it oare kopiearje sûnder it klamboerd. Selektearje it te kopiearjen gebiet, Ctrl+ klik op de ljepper fan it doelblêd en brûk Blêd > Sellen folje > Blêden."
#: cui/inc/tipoftheday.hrc:175
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to insert a value in the same place on several sheets? Select the sheets: hold down Ctrl key and click their tabs before entering."
-msgstr ""
+msgstr "Wolle jo yn meardere blêden op it selde plak in wearde ynfoegje? Selektearje de blêden: hâld Ctrl toets yndrukt en klik op har ljeppers foardat jo se ynfiere."
#: cui/inc/tipoftheday.hrc:176
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Click a column field (row) PivotTable and press F12 to group data. Choices adapt to content: Date (month, quarter, year), number (classes)"
-msgstr ""
+msgstr "Klik op in kolom fjild (rige) yn in draai tabel en druk op F12 om gegevens te groepearjen. In kar oanpasse oan de ynhâld: datum (moanne, fearnsjier, jier), tal (klassen)"
#: cui/inc/tipoftheday.hrc:177
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to count words for just one particular paragraph style? Use Edit > Find & Replace > Paragraph Styles, select the style > Find All and read the number from the status bar."
-msgstr ""
+msgstr "Wolle jo wurden telle foar mar ien spesifyk alinea styl? Brûk Bewurkje > Sykje en ferfange > Alinea stilen, selektearje it opmaak styl > Alles sykje en besjoch it tal op de tastânbalke."
#: cui/inc/tipoftheday.hrc:178
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Toolbars are contextual, they open depending on the context. If you do not want that, uncheck them from View > Toolbars."
-msgstr ""
+msgstr "Arkbalken binne kontekstueel, se iepenje ôfhinklik fan de ynhâld. As jo dat net wolle, set se út yn Byld > Arkbalken."
#: cui/inc/tipoftheday.hrc:179
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Insert and number your formulas in one step: type fn then F3. An AutoText is inserted with formula and number aligned in a table."
-msgstr ""
+msgstr "Foegje jo formulen yn en nûmerje se yn ien stap: typ fn en dan F3. In AutoTekst wurd ynfoege mei formule en nûmer rjochte yn in tabel."
#: cui/inc/tipoftheday.hrc:180
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To automatically number your table rows in Writer, select the relevant column, then apply a numbering style from List Styles."
-msgstr ""
+msgstr "As jo automatysk tabel rijen nûmerje wolle, selektearje jo de relevante kolom en passe jo dan in nûmeringen styl ta fan de list stilen."
#: cui/inc/tipoftheday.hrc:181
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Delete in one step all of your printing areas: select all sheets then Format > Print Ranges > Clear."
-msgstr ""
+msgstr "Yn ien stap al jo print berikken wiskje: selektearje alle blêden en kies dan Yndieling > Print berikken > Wiskje."
#: cui/inc/tipoftheday.hrc:182
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME helps you not to enter two or more spaces in Writer. Check Tools > AutoCorrect Options > Options > Ignore double spaces."
-msgstr ""
+msgstr "%PRODUCTNAME helpt jo om net twa of mear spaasjes yn Writer yn te fieren. Selektearje Ark > AutoKorreksje, ljepper Opsjes > Dûbele spaasjes negearje."
#: cui/inc/tipoftheday.hrc:183
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Transpose a writer table? Copy and paste in Calc, transpose with copy/paste special then copy/paste special > Formatted text in Writer."
-msgstr ""
+msgstr "In tabel yn Writer transponearje? Kopiearje yn Calc, Transponearje mei Plakke spesjaal > Net opmakke tekst yn Writer."
#: cui/inc/tipoftheday.hrc:184
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer lets you number your footnotes per page, chapter, document: Tools > Footnotes and Endnotes > Footnotes tab > Counting."
-msgstr ""
+msgstr "Mei Writer kinne jo fuotnoaten per side, haadstik of dokumint nûmerje: Ark > Fuot- en einnoaten, Ljepper Fuotnoat > Telling."
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
-msgstr ""
+msgstr "Linkshandige? Skeakelje Ark > Opsjes > Taal ynstellingen > Talen > Aziatyske yn en finkje Ark > Opsjes > %PRODUCTNAME Writer > Byld > Werjefte > Rjochts rjochte oan,wat de skowbalke links werjout. "
#: cui/inc/tipoftheday.hrc:186
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To display the scrollbar to the left, enable Tools > Options > Language Settings > Languages > Complex text and check Sheet > Right-To-Left."
-msgstr ""
+msgstr "Om de skowbalke links sjen te litten, skeakelje jo Ark > Opsjes > Taal ynstellingen > Talen > Komplekse tekst en set by Blêd > Fan rjochts nei links oan."
#: cui/inc/tipoftheday.hrc:187
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits."
-msgstr ""
+msgstr "Jo nûmers wurde werjûn as ### yn jo wurkblêd? De kolom is te smel om alle sifers sjen te litten."
#: cui/inc/tipoftheday.hrc:188
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Ctrl+Alt+Shift+V to paste the contents of the clipboard as unformatted text."
-msgstr ""
+msgstr "Brûk Ctrl+Alt+Shift+V om de ynhâld fan it klamboerd te plakken as net opmakke tekst."
#: cui/inc/tipoftheday.hrc:189
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "When editing a cell in place, you can right click and Insert fields: Date, Sheet name, Document title etc."
-msgstr ""
+msgstr "As jo in sel op syn plak bewurkje, kinne jo der op klikke en kieze foar Ynfoegje > Fjild: Datum, Blêd namme, Dokumint titel."
#: cui/inc/tipoftheday.hrc:190
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can restarts the slide show after a pause specified at Slide Show > Slide Show Settings > Loop and repeat."
-msgstr ""
+msgstr "Jo kinne de presintaasje op 'e nij úteinsette nei in skoft dy't opjûn is by Presintaasje > Presintaasje ynstellingen > Opnij en werhelje nij."
#: cui/inc/tipoftheday.hrc:191
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can not see all the text in a cell? Expand the input line in the formula bar and you can scroll."
-msgstr ""
+msgstr "Jo kinne net alle tekst yn in sel sjen? Breid de ynfier rigel yn de formule balke út en jo kinne skowe."
#: cui/inc/tipoftheday.hrc:192
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You often create a document from another? Have you considered using a template?"
-msgstr ""
+msgstr "Meitsje jo faak in dokumint fan in oare? Ha jo oerwage in sjabloan te brûken?"
#: cui/inc/tipoftheday.hrc:193
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "New versions do not bring that new features and bug fixes. They also include security patches. Be safe, put yourself updated!"
-msgstr ""
+msgstr "Nije ferzjes bringe net allinne nije funksjes en brek reparaasjes. Se befetsje ek befeiliging reparaasjes. Wês feilich, en hat dy bywurke!"
#: cui/inc/tipoftheday.hrc:194
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to duplicate the above line? Press Ctrl + D or use Sheet > Fill Cells > Fill Down."
-msgstr ""
+msgstr "Wolle jo de boppesteande rigel duplisearje? Druk op Ctrl+D of brûk Blêd > Sellen folje > Omleech."
#: cui/inc/tipoftheday.hrc:195
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can easily optimize your table per Table > Size > Distribute Rows / Columns Evenly."
-msgstr ""
+msgstr "Jo kinne ienfâldich jo tabel optimalisearje mei Tabel > Grutte > Rigen/Kolommen lykweardich ferdiele."
#: cui/inc/tipoftheday.hrc:196
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Best way to fix bad looking MS Word table cells via Table > Size > Optimal Row Height / Column Width."
-msgstr ""
+msgstr "De beste manier om MS Work tabel dy't der net goed útsjocht te reparearjen Tabel > Grutte > Optimale Rige/Kolom breedte."
#: cui/inc/tipoftheday.hrc:197
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Don't get lost in large documents. Use the Navigator (F5) to find your way through the content."
-msgstr ""
+msgstr "Reitsje net ferdwaald yn grutte dokuminten. Brûk de Navigator (F5) om jo wei nei de ynhâld te finen."
#: cui/inc/tipoftheday.hrc:198
msgctxt "RID_CUI_TIPOFTHEDAY"
diff --git a/source/fy/officecfg/registry/data/org/openoffice/Office/UI.po b/source/fy/officecfg/registry/data/org/openoffice/Office/UI.po
index e62ab60163c..e6a9ad792f7 100644
--- a/source/fy/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/fy/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: 2019-08-28 19:39+0200\n"
-"PO-Revision-Date: 2019-09-02 17:59+0000\n"
+"PO-Revision-Date: 2019-09-09 17:36+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1567447196.000000\n"
+"X-POOTLE-MTIME: 1568050601.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -18763,7 +18763,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Footnote and Endno~te"
-msgstr "Fuot- en einnot~ysje"
+msgstr "Fuot- en einnoa~t"
#: GenericCommands.xcu
msgctxt ""
diff --git a/source/gl/filter/source/config/fragments/filters.po b/source/gl/filter/source/config/fragments/filters.po
index 2ccd40a8899..02c1e908e8c 100644
--- a/source/gl/filter/source/config/fragments/filters.po
+++ b/source/gl/filter/source/config/fragments/filters.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-06-03 17:45+0200\n"
-"PO-Revision-Date: 2019-06-03 20:17+0000\n"
+"PO-Revision-Date: 2019-09-09 19:59+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1559593028.000000\n"
+"X-POOTLE-MTIME: 1568059191.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -536,7 +536,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Works Document"
-msgstr "Documento do Microsoft Works"
+msgstr "Documento do Works da Microsoft"
#: MS_Works_Calc.xcu
msgctxt ""
@@ -545,7 +545,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Works Document"
-msgstr "Documento do Microsoft Works"
+msgstr "Documento do Works da Microsoft"
#: MS_Write.xcu
msgctxt ""
@@ -635,7 +635,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Works for Mac Text Document (v1 - v4)"
-msgstr "Documento de texto do Microsoft Works para Mac (v. 1-4)"
+msgstr "Documento de texto do Works da Microsoft para Mac (v. 1-4)"
#: Mac_Works_Calc.xcu
msgctxt ""
@@ -644,7 +644,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)"
-msgstr "Folla de cálculo do Microsoft Works para Mac (v. 1-4)"
+msgstr "Folla de cálculo do Works da Microsoft para Mac (v. 1-4)"
#: Mariner_Write.xcu
msgctxt ""
diff --git a/source/gl/helpcontent2/source/auxiliary.po b/source/gl/helpcontent2/source/auxiliary.po
index 4e6675c5121..9b20d1c7f62 100644
--- a/source/gl/helpcontent2/source/auxiliary.po
+++ b/source/gl/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: 2019-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-01-14 23:12+0000\n"
+"PO-Revision-Date: 2019-09-09 20:04+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1547507552.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1568059462.000000\n"
#: sbasic.tree
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"0702\n"
"node.text"
msgid "Python Scripts Help"
-msgstr ""
+msgstr "Axuda para scripts en Python"
#: sbasic.tree
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"070202\n"
"node.text"
msgid "Programming with Python"
-msgstr ""
+msgstr "Programar con Python"
#: scalc.tree
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"11\n"
"help_section.text"
msgid "Drawings (Draw)"
-msgstr ""
+msgstr "Debuxos (Draw)"
#: sdraw.tree
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"1101\n"
"node.text"
msgid "General Information and User Interface Usage"
-msgstr ""
+msgstr "Información xeral e uso da interface do usuario"
#: sdraw.tree
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"1102\n"
"node.text"
msgid "Command and Menu Reference"
-msgstr ""
+msgstr "Referencia das ordes e menú"
#: sdraw.tree
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"11020201\n"
"node.text"
msgid "Menus"
-msgstr ""
+msgstr "Menús"
#: sdraw.tree
msgctxt ""
@@ -310,7 +310,7 @@ msgctxt ""
"11020202\n"
"node.text"
msgid "Toolbars"
-msgstr ""
+msgstr "Barras de ferramentas"
#: sdraw.tree
msgctxt ""
@@ -318,7 +318,7 @@ msgctxt ""
"1103\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
-msgstr ""
+msgstr "Cargar, gardar, importar e exportar"
#: sdraw.tree
msgctxt ""
@@ -326,7 +326,7 @@ msgctxt ""
"1104\n"
"node.text"
msgid "Formatting"
-msgstr ""
+msgstr "Formato"
#: sdraw.tree
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"1105\n"
"node.text"
msgid "Printing"
-msgstr ""
+msgstr "Imprimir"
#: sdraw.tree
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"1106\n"
"node.text"
msgid "Effects"
-msgstr ""
+msgstr "Efectos"
#: sdraw.tree
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"1107\n"
"node.text"
msgid "Objects, Graphics, and Bitmaps"
-msgstr ""
+msgstr "Obxectos, gráficos e mapas de bits"
#: sdraw.tree
msgctxt ""
@@ -358,7 +358,7 @@ msgctxt ""
"1108\n"
"node.text"
msgid "Groups and Layers"
-msgstr ""
+msgstr "Grupos e capas"
#: sdraw.tree
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"1109\n"
"node.text"
msgid "Text in Drawings"
-msgstr ""
+msgstr "Texto en debuxos"
#: sdraw.tree
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"1110\n"
"node.text"
msgid "Viewing"
-msgstr ""
+msgstr "Visualizar"
#: shared.tree
msgctxt ""
@@ -606,7 +606,7 @@ msgctxt ""
"04\n"
"help_section.text"
msgid "Presentations (Impress)"
-msgstr ""
+msgstr "Presentacións (Impress)"
#: simpress.tree
msgctxt ""
@@ -686,7 +686,7 @@ msgctxt ""
"0409\n"
"node.text"
msgid "Text in Presentations"
-msgstr ""
+msgstr "Texto en presentacións"
#: simpress.tree
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"030101\n"
"node.text"
msgid "%PRODUCTNAME Formula Elements"
-msgstr ""
+msgstr "Elementos de fórmula do %PRODUCTNAME"
#: smath.tree
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/sbasic/guide.po b/source/gl/helpcontent2/source/text/sbasic/guide.po
index e19ccfef8fb..369e62a1dd0 100644
--- a/source/gl/helpcontent2/source/text/sbasic/guide.po
+++ b/source/gl/helpcontent2/source/text/sbasic/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2018-09-20 21:06+0000\n"
+"PO-Revision-Date: 2019-09-09 20:06+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1537477597.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1568059562.000000\n"
#: access2base.xhp
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Basic Programming Examples"
-msgstr ""
+msgstr "Exemplos de programación en Basic"
#: basic_examples.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"bm_id171559140731329\n"
"help.text"
msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Basic;exemplos de programación</bookmark_value>"
#: basic_examples.xhp
msgctxt ""
@@ -190,7 +190,7 @@ msgctxt ""
"hd_id471559139063621\n"
"help.text"
msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
-msgstr ""
+msgstr "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Exemplos de programación en Basic</link></variable>"
#: control_properties.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"hd_id3155338\n"
"help.text"
msgid "<variable id=\"sample_code\"><link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Programming Examples for Controls in the Dialog Editor\">Programming Examples for Controls in the Dialog Editor</link> </variable>"
-msgstr ""
+msgstr "<variable id=\"sample_code\"><link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Programming Examples for Controls in the Dialog Editor\">Exemplos de programación de controis no Editor de diálogos</link> </variable>"
#: sample_code.xhp
msgctxt ""
@@ -542,7 +542,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Opening a Dialog With Basic"
-msgstr ""
+msgstr "Abrir unha caixa de diálogo con Basic"
#: show_dialog.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/sbasic/python.po b/source/gl/helpcontent2/source/text/sbasic/python.po
index dadefb6fb67..ea4ec22704d 100644
--- a/source/gl/helpcontent2/source/text/sbasic/python.po
+++ b/source/gl/helpcontent2/source/text/sbasic/python.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-07-03 20:22+0200\n"
-"PO-Revision-Date: 2019-02-13 05:28+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2019-09-09 20:06+0000\n"
+"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1550035685.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1568059599.000000\n"
#: main0000.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Opening a Dialog with Python"
-msgstr ""
+msgstr "Abrir unha caixa de diálogo con Python"
#: python_dialogs.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"N0336\n"
"help.text"
msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Abrir unha caixa de diálogo con Python</link></variable>"
#: python_dialogs.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/shared/01.po b/source/gl/helpcontent2/source/text/shared/01.po
index 4bda0744562..9a6c8ee5108 100644
--- a/source/gl/helpcontent2/source/text/shared/01.po
+++ b/source/gl/helpcontent2/source/text/shared/01.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-31 14:53+0200\n"
-"PO-Revision-Date: 2019-08-08 15:24+0000\n"
-"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
+"PO-Revision-Date: 2019-09-17 22:26+0000\n"
+"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1565277872.000000\n"
+"X-POOTLE-MTIME: 1568759169.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -20558,7 +20558,7 @@ msgctxt ""
"hd_id3156543\n"
"help.text"
msgid "AutoFit height"
-msgstr "Axustar automaticamente a altura"
+msgstr "Axustar altura automaticamente"
#: 05040300.xhp
msgctxt ""
@@ -20846,7 +20846,7 @@ msgctxt ""
"hd_id3150742\n"
"help.text"
msgid "AutoFit height"
-msgstr "Axustar automaticamente a altura"
+msgstr "Axustar altura automaticamente"
#: 05040400.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/swriter/00.po b/source/gl/helpcontent2/source/text/swriter/00.po
index 934a2c7df4a..025bcd0f4b3 100644
--- a/source/gl/helpcontent2/source/text/swriter/00.po
+++ b/source/gl/helpcontent2/source/text/swriter/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2019-06-04 21:43+0000\n"
+"PO-Revision-Date: 2019-09-10 20:11+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1559684604.000000\n"
+"X-POOTLE-MTIME: 1568146270.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"par_id3150253\n"
"help.text"
msgid "<image src=\"cmd/sc_wrapoff.png\" id=\"img_id3145389\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145389\">Wrap Off Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_wrapoff.png\" id=\"img_id3145389\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145389\">Icona Desactivar axuste de texto</alt></image>"
#: 00000004.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"par_id3156397\n"
"help.text"
msgid "<image src=\"cmd/sc_wrapon.png\" id=\"img_id3149048\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149048\">Wrap On Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_wrapon.png\" id=\"img_id3149048\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149048\">Icona Activar axuste de texto</alt></image>"
#: 00000004.xhp
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"par_id3154558\n"
"help.text"
msgid "<image src=\"cmd/sc_wrapthrough.png\" id=\"img_id3152999\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152999\">Wrap Through Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_wrapthrough.png\" id=\"img_id3152999\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152999\">Icona Axuste a través</alt></image>"
#: 00000004.xhp
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"par_id3148773\n"
"help.text"
msgid "<image src=\"res/sc06301.png\" id=\"img_id3149026\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149026\">Jump to Previous Script Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"res/sc06301.png\" id=\"img_id3149026\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149026\">Icona Ir ao script anterior</alt></image>"
#: 00000004.xhp
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"par_id3151265\n"
"help.text"
msgid "<image src=\"res/sc06300.png\" id=\"img_id3151272\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151272\"> Jump to Next Script Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"res/sc06300.png\" id=\"img_id3151272\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151272\">Icona Ir ao script seguinte</alt></image>"
#: 00000004.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/swriter/01.po b/source/gl/helpcontent2/source/text/swriter/01.po
index a88309066f9..d6b9dbc4535 100644
--- a/source/gl/helpcontent2/source/text/swriter/01.po
+++ b/source/gl/helpcontent2/source/text/swriter/01.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-08-08 19:08+0000\n"
-"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
+"PO-Revision-Date: 2019-09-17 17:52+0000\n"
+"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1565291325.000000\n"
+"X-POOTLE-MTIME: 1568742754.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"par_id2649311\n"
"help.text"
msgid "<link href=\"text/swriter/main0210.xhp\" name=\"Page View Object Bar\">Page View Object Bar</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/main0210.xhp\" name=\"Page View Object Bar\">Barra de obxectos de vista de páxina</link>"
#: 01150000.xhp
msgctxt ""
@@ -822,7 +822,7 @@ msgctxt ""
"par_id3148933\n"
"help.text"
msgid "To quickly move the cursor to another page while you are in a document, press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F5, type the number of the page that you want to jump to, and then wait a few moments."
-msgstr ""
+msgstr "Para mover rapidamente o cursor a outra páxina mentres está nun documento, prema Maiús+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F5, escriba o número da páxina á que quere ir e agarde un pouquiño."
#: 02110000.xhp
msgctxt ""
@@ -3358,7 +3358,7 @@ msgctxt ""
"par_id3153540\n"
"help.text"
msgid "<link href=\"text/swriter/01/03100000.xhp\" name=\"Formatting Marks On/Off\">Formatting Marks On/Off</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/03100000.xhp\" name=\"Formatting Marks On/Off\">Activar e desactivar as marcas de formato</link>"
#: 03090000.xhp
msgctxt ""
@@ -3494,7 +3494,7 @@ msgctxt ""
"par_id3145249\n"
"help.text"
msgid "<variable id=\"normal_layout_text\"><ahelp hid=\".\">Displays how the document will look when you print it.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"normal_layout_text\"><ahelp hid=\".\">Mostra como se vería o documento ao imprimilo.</ahelp></variable>"
#: 03140000.xhp
msgctxt ""
@@ -3598,7 +3598,7 @@ msgctxt ""
"par_id3149805\n"
"help.text"
msgid "Ends the current line, and moves the text found to the right of the cursor to the next line, without creating a new paragraph."
-msgstr ""
+msgstr "Remata a liña actual e move o texto que se atope á dereita do cursor para a liña seguinte sen crear un parágrafo novo."
#: 04010000.xhp
msgctxt ""
@@ -3622,7 +3622,7 @@ msgctxt ""
"par_id3155182\n"
"help.text"
msgid "Inserts a manual column break (in a multiple column layout), and moves the text found to the right of the cursor to the beginning of the next <link href=\"text/swriter/01/05040500.xhp\" name=\"column\">column</link>. A manual column break is indicated by a nonprinting border at the top of the new column."
-msgstr ""
+msgstr "Insire unha quebra manual de columna (en disposición a varias columnas) e move o texto que se atope á dereita do cursor para o inicio da <link href=\"text/swriter/01/05040500.xhp\" name=\"column\">columna</link> seguinte. A quebra de columna manual indícanse cun bordo non imprimíbel na parte superior da nova columna."
#: 04010000.xhp
msgctxt ""
@@ -3638,7 +3638,7 @@ msgctxt ""
"par_id3149102\n"
"help.text"
msgid "Inserts a manual page break, and moves the text found to the right of the cursor to the beginning of the next page. The inserted page break is indicated by a nonprinting border at the top of the new page."
-msgstr ""
+msgstr "Insire unha quebra de páxina manual e move o texto que se atope á dereita do cursor para o inicio da páxina seguinte. A quebra de páxina inserida indícase cun bordo non imprimíbel na parte superior da nova páxina."
#: 04010000.xhp
msgctxt ""
@@ -4814,7 +4814,7 @@ msgctxt ""
"par_id3145415\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/envaddresspage/addredit\" visibility=\"visible\">Enter the delivery address.</ahelp> You can also click in this box, and select a database, a table, and field, and then click the arrow button to insert the field in the address. If you want, you can apply formatting, such as bold and underline, to the address text."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/envaddresspage/addredit\" visibility=\"visible\">Introduza o enderezo de destinatario.</ahelp> Tamén pode premer no cadro e seleccionar unha base de datos, unha táboa e un campo, e logo premer no botón de frecha para inserir o campo no enderezo. Se quere, pode aplicar formato, como negra e subliñado, ao texto do enderezo."
#: 04070100.xhp
msgctxt ""
@@ -4830,7 +4830,7 @@ msgctxt ""
"par_id3153527\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/envaddresspage/senderedit\">Includes a return address on the envelope. Select the <emph>Sender</emph> check box, and then enter the return address.</ahelp> $[officename] automatically inserts your user data in the <emph>Sender</emph> box, but you can also enter the data that you want."
-msgstr ""
+msgstr "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/envaddresspage/senderedit\">Inclúe un enderezo de remitente no sobre. Seleccione a opción <emph>Remitente</emph> e, a seguir, escriba o enderezo de remitente.</ahelp> $ [officename] insire automaticamente os seus datos de usuario en <emph>Remitente</emph>, pero tamén pode introducir os datos que quixer."
#: 04070100.xhp
msgctxt ""
@@ -9510,7 +9510,7 @@ msgctxt ""
"hd_id511519649431645\n"
"help.text"
msgid "Type pane"
-msgstr ""
+msgstr "Panel de tipos"
#: 04090300.xhp
msgctxt ""
@@ -10334,7 +10334,7 @@ msgctxt ""
"par_id3152772\n"
"help.text"
msgid "<variable id=\"vorlg\"><ahelp hid=\"modules/swriter/ui/tocindexpage/addstylescb\">Includes the paragraph styles that you specify in the <emph>Assign Styles</emph> dialog as index entries. To select the paragraph styles that you want to include in the index, click the <emph>Assign Styles (...)</emph> button to the right of this box.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"vorlg\"><ahelp hid=\"modules/swriter/ui/tocindexpage/addstylescb\">Inclúe os estilos de parágrafo que se especifica no diálogo <emph>Asignar estilos</emph> como entradas de índice. Para seleccionar os estilos de parágrafo que desexe incluír no índice, prema no botón <emph>Asignar Estilos (...</emph>) á dereita desta caixa.</ahelp></variable>"
#: 04120211.xhp
msgctxt ""
@@ -10342,7 +10342,7 @@ msgctxt ""
"par_id41550528154857\n"
"help.text"
msgid "You can include the Figure Index Heading or Bibliography Heading styles, as well as any other relevant heading style, to the Table of Contents."
-msgstr ""
+msgstr "Pode incluír oos estilos Título de índice de figuras ou Título de bibliografía, así como outros estilos de título relevantes, no índice."
#: 04120211.xhp
msgctxt ""
@@ -10358,7 +10358,7 @@ msgctxt ""
"par_id3145776\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/styles\">Opens the <emph>Assign Styles</emph> dialog, where you can select the paragraph styles to include in the index. Choose the proper heading level on which the style will be included in the index.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/styles\">Abre a caixa de diálogo <emph>Asignar estilos</emph>, na que se poden seleccionar que estilos de parágrafo incluír no índice. Escolla o nivel de título axeitado no que se incluirá o estilo no índice.</ahelp>"
#: 04120211.xhp
msgctxt ""
@@ -11142,7 +11142,7 @@ msgctxt ""
"par_id3154504\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/tocentriespage/TocEntriesPage\">Specify the format of the index or table entries. The appearance of this tab changes to reflect the type of index that you selected on the <link href=\"text/swriter/01/04120210.xhp\" name=\"Type\">Type</link> tab.</ahelp>"
-msgstr ""
+msgstr "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/tocentriespage/TocEntriesPage\">Indique o formato das entradas do índice analítico ou táboa. A aparencia desta lapela cambia para reflectir o título de índice que se seleccione na lapela <link href=\"text/swriter/01/04120210.xhp\" name=\"Type\">Tipo</link>.</ahelp>"
#: 04120220.xhp
msgctxt ""
@@ -12758,7 +12758,7 @@ msgctxt ""
"hd_id3149821\n"
"help.text"
msgid "Don't split the table over pages"
-msgstr ""
+msgstr "Non quebrar a páxina entre páxinas"
#: 04150000.xhp
msgctxt ""
@@ -13558,7 +13558,7 @@ msgctxt ""
"par_id3147089\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/textflowpage/spinPageNumber\">Enter the page number for the first page that follows the break. If you want to continue the current page numbering, leave the checkbox unchecked.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/textflowpage/spinPageNumber\">Introduza o número de páxina da primeira páxina que siga a quebra. Se desexa continuar coa numeración de páxina actual deixe sen seleccionar.</ahelp>"
#: 05030200.xhp
msgctxt ""
@@ -13830,7 +13830,7 @@ msgctxt ""
"par_id3154100\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/numparapage/NumParaPage\">Adds or removes outline level, numbering, or bullets from the paragraph. You can also select the style of numbering to use, and reset the numbering in a numbered list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/numparapage/NumParaPage\">Engade ou retira do parágrafo o nivel de esquema, a numeración ou as viñetas. Tamén pode seleccionar o estilo de numeración que desexe empregar e restaurar a numeración nunha lista numerada.</ahelp>"
#: 05030800.xhp
msgctxt ""
@@ -13838,7 +13838,7 @@ msgctxt ""
"par_id3153536\n"
"help.text"
msgid "To change the numbering options for paragraphs that use the same paragraph style, choose <emph>View - Styles</emph>, and then click the <emph>Paragraph Styles</emph> icon. Right-click the style in the list, choose <emph>Modify</emph>, and then click the <emph>Outline & Numbering</emph> tab."
-msgstr ""
+msgstr "Para cambiar as opcións de numeración dos parágrafos que empreguen o mesmo estilo de parágrafo, escolla <emph>Vista - Estilos</emph> e a seguir prema na icona <emph>Estilos de parágrafo</emph>. Prema co botón dereito no estilo da lista, escolla <emph>Modificar</emph> e a seguir prema na lapela <emph>Esquema e numeración</emph>."
#: 05030800.xhp
msgctxt ""
@@ -13846,7 +13846,7 @@ msgctxt ""
"par_id3154470\n"
"help.text"
msgid "To change the numbering options for selected paragraphs, choose <emph>Format - </emph><link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\"><emph>Paragraph</emph></link>, and then click the <emph>Outline & Numbering</emph> tab."
-msgstr ""
+msgstr "Para cambiar as opcións de numeración dos parágrafos seleccionados, escolla <emph>Formato- </emph><link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\"><emph>Parágrafo</emph></link> e a seguir prema na lapela <emph>Esquema e numeración</emph>."
#: 05030800.xhp
msgctxt ""
@@ -13854,7 +13854,7 @@ msgctxt ""
"hd_id1209200804371034\n"
"help.text"
msgid "Outline level"
-msgstr "Nivel do esquema"
+msgstr "Nivel de esquema"
#: 05030800.xhp
msgctxt ""
@@ -13862,7 +13862,7 @@ msgctxt ""
"par_id1209200804371097\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/numparapage/comboLB_OUTLINE_LEVEL\">Assigns an outline level from 1 to 10 to the selected paragraphs or Paragraph Style.</ahelp> Select <emph>Body text</emph> to reset the outline level."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/numparapage/comboLB_OUTLINE_LEVEL\">Asigna un nivel de esquema de 1 a 10 aos parágrafos seleccionados ou estilo de parágrafo.</ahelp> Seleccione <emph>Corpo do texto</emph> para restaurar o nivel de esquema."
#: 05030800.xhp
msgctxt ""
@@ -13886,7 +13886,7 @@ msgctxt ""
"par_id3155178\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/numparapage/comboLB_NUMBER_STYLE\">Select the <link href=\"text/swriter/01/05130004.xhp\" name=\"Numbering Style\">Numbering Style</link> that you want to apply to the paragraph.</ahelp> These styles are also listed in the <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles</link> window if you click the <emph>Numbering Style</emph> icon."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/numparapage/comboLB_NUMBER_STYLE\">Seleccione o <link href=\"text/swriter/01/05130004.xhp\" name=\"Numbering Style\">estilo de numeración</link> que desexe aplicar ao parágrafo.</ahelp> Estes estilos aparecen listados tamén na xanela <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Estilos</link> se preme na icona <emph>Estilo de numeración</emph>."
#: 05030800.xhp
msgctxt ""
@@ -13902,7 +13902,7 @@ msgctxt ""
"par_id3155179\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/numparapage/editnumstyle\">Edit the properties of the selected numbering style.</ahelp> These properties will apply to all paragraphs formatted with the given numbering style."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/numparapage/editnumstyle\">Edite as propiedades do estilo de numeración seleccionado.</ahelp>Estas propiedades aplícanselle a todos os parágrafos formatados co estilo de numeración dado."
#: 05030800.xhp
msgctxt ""
@@ -13910,7 +13910,7 @@ msgctxt ""
"par_id3149106\n"
"help.text"
msgid "This section only appears when you edit the properties of the current paragraph by choosing <emph>Format - Paragraph</emph>."
-msgstr ""
+msgstr "Esta sección só aparece ao editar as propiedades do parágrafo actual escollendo <emph>Formato - Parágrafo</emph>."
#: 05030800.xhp
msgctxt ""
@@ -13926,7 +13926,7 @@ msgctxt ""
"par_id3154831\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/numparapage/checkCB_NEW_START\">Restarts the numbering at the current paragraph.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/numparapage/checkCB_NEW_START\">Reinicia a numeración no parágrafo actual.</ahelp>"
#: 05030800.xhp
msgctxt ""
@@ -13942,7 +13942,7 @@ msgctxt ""
"par_id3148979\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/numparapage/checkCB_NUMBER_NEW_START\">Select this check box, and then enter the number that you want to assign to the paragraph.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/numparapage/checkCB_NUMBER_NEW_START\">Seleccione esta opción e introduza o número que desexe asignarlle ao parágrafo.</ahelp>"
#: 05030800.xhp
msgctxt ""
@@ -13958,7 +13958,7 @@ msgctxt ""
"par_id3153632\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/numparapage/spinNF_NEW_START\">Enter the number that you want to assign to the paragraph.</ahelp> The following paragraphs are numbered consecutively from the number that you enter here."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/numparapage/spinNF_NEW_START\">Introduza o número que desexe asignarlle ao parágrafo.</ahelp> Os parágrafos seguintes numéranse consecutivamente a partir do número que introduza aquí."
#: 05030800.xhp
msgctxt ""
@@ -13974,7 +13974,7 @@ msgctxt ""
"par_id3152771\n"
"help.text"
msgid "Specify the <link href=\"text/swriter/01/06180000.xhp\" name=\"Line numbering\">Line numbering</link> options. To add line numbers to your document, choose <emph>Tools - Line Numbering</emph>."
-msgstr ""
+msgstr "Indique as opcións de <link href=\"text/swriter/01/06180000.xhp\" name=\"Line numbering\">numeración de liñas</link>. Para engadir números de liña ao documento, escolla <emph>Ferramentas - Numeración de liña</emph>."
#: 05030800.xhp
msgctxt ""
@@ -14438,7 +14438,7 @@ msgctxt ""
"par_id3149351\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/footnoteareapage/FootnoteAreaPage\">Specifies the layout options for footnotes, including the line that separates the footnote from the main body of document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/footnoteareapage/FootnoteAreaPage\">Indica as opcións de disposición das notas a rodapé, incluída a liña que separa a nota a rodapé do corpo principal do documento.</ahelp>"
#: 05040600.xhp
msgctxt ""
@@ -14470,7 +14470,7 @@ msgctxt ""
"par_id3147514\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/footnoteareapage/maxheightpage\">Automatically adjusts the height of the footnote area depending on the number of footnotes.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/footnoteareapage/maxheightpage\">Axusta a altura da área de notas a rodapé automaticamente dependendo do número de notas.</ahelp>"
#: 05040600.xhp
msgctxt ""
@@ -14486,7 +14486,7 @@ msgctxt ""
"par_id3149807\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/footnoteareapage/maxheight\">Sets a maximum height for the footnote area. Enable this option, then enter the height.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/footnoteareapage/maxheight\">Define unha altura máxima para a área da notas a rodapé. Active esta opcióne, a seguir, introduza a altura.</ahelp>"
#: 05040600.xhp
msgctxt ""
@@ -14494,7 +14494,7 @@ msgctxt ""
"par_id3154568\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/footnoteareapage/maxheightsb\">Enter the maximum height for the footnote area.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/footnoteareapage/maxheightsb\">Introduza a altura máxima da área de notas a rodapé.</ahelp>"
#: 05040600.xhp
msgctxt ""
@@ -14502,7 +14502,7 @@ msgctxt ""
"hd_id3151318\n"
"help.text"
msgid "Space to text"
-msgstr ""
+msgstr "Distancia ao texto"
#: 05040600.xhp
msgctxt ""
@@ -14510,7 +14510,7 @@ msgctxt ""
"par_id3153665\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/footnoteareapage/spacetotext\">Enter the amount of space to leave between the bottom page margin and the first line of text in the footnote area.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/footnoteareapage/spacetotext\">Introduza a cantidade de espazo que deixar entre a marxe inferior da páxina ea primeira liña de texto da área de notas a rodapé.</ahelp>"
#: 05040600.xhp
msgctxt ""
@@ -14542,7 +14542,7 @@ msgctxt ""
"par_id3155184\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/footnoteareapage/position\">Select the horizontal alignment for the line that separates the main text from the footnote area.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/footnoteareapage/position\">Seleccione o aliñamento horizontal para a liña que separa o texto principal da área de notas a rodapé.</ahelp>"
#: 05040600.xhp
msgctxt ""
@@ -14558,7 +14558,7 @@ msgctxt ""
"par_id3149105\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/footnoteareapage/style\">Select the formatting style for the separator line. If you do not want a separator line, choose \"None\".</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/footnoteareapage/style\">Seleccione o estilo de formato para a liña separadora. Se non quere unha liña separadora escolla «Ningunha».</ahelp>"
#: 05040600.xhp
msgctxt ""
@@ -14574,7 +14574,7 @@ msgctxt ""
"par_id3149106\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/footnoteareapage/thickness\">Select the thickness of the separator line.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/footnoteareapage/thickness\">Seleccione o grosor da liña separadora.</ahelp>"
#: 05040600.xhp
msgctxt ""
@@ -14590,7 +14590,7 @@ msgctxt ""
"par_id3149107\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/footnoteareapage/color\">Select the color of the separator line.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/footnoteareapage/color\">Seleccione a cor da liña separadora.</ahelp>"
#: 05040600.xhp
msgctxt ""
@@ -14606,7 +14606,7 @@ msgctxt ""
"par_id3154827\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/footnoteareapage/length\">Enter the length of the separator line as a percentage of the page width area.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/footnoteareapage/length\">Introduza a lonxitude da liña separadora como porcentaxe da largura da área da páxina.</ahelp>"
#: 05040600.xhp
msgctxt ""
@@ -14614,7 +14614,7 @@ msgctxt ""
"hd_id3149828\n"
"help.text"
msgid "Spacing to footnote contents"
-msgstr ""
+msgstr "Espazamento até o contido da nota a rodapé"
#: 05040600.xhp
msgctxt ""
@@ -14654,7 +14654,7 @@ msgctxt ""
"par_id3147170\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"visible\">Specifies where footnotes and endnotes are displayed as well as their numbering formats.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"visible\">Indica onde se colocan as notas a rodapé e as notas finais, así como o seu formato de numeración.</ahelp>"
#: 05040700.xhp
msgctxt ""
@@ -15126,7 +15126,7 @@ msgctxt ""
"par_id3150568\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the size and the position of the selected object or frame on a page.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Indica o tamaño e posición do obxecto ou marco seleccionado na páxina.</ahelp>"
#: 05060100.xhp
msgctxt ""
@@ -15150,7 +15150,7 @@ msgctxt ""
"par_id3151180\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the width that you want for the selected object.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Introduza a largura que desexa para o obxecto seleccionado.</ahelp>"
#: 05060100.xhp
msgctxt ""
@@ -15198,7 +15198,7 @@ msgctxt ""
"par_id3154099\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the height that you want for the selected object.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Introduza a altura que desexe para o obxecto seleccionado.</ahelp>"
#: 05060100.xhp
msgctxt ""
@@ -18358,7 +18358,7 @@ msgctxt ""
"par_idN10944\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tabletextflowpage/textorientation\">Select the orientation for the text in the cells.</ahelp> You can use the following formatting options to specify the orientation of text in table cells:"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tabletextflowpage/TextDirection\"> Seleccione a dirección do texto nas celas </ahelp> Pode usar as opcións de formato seguintes para indicar a orientación do texto nas celas da táboa:"
#: 05090300.xhp
msgctxt ""
@@ -19510,7 +19510,7 @@ msgctxt ""
"par_id3149883\n"
"help.text"
msgid "Open a blank text document and write a short business letter with a header (<emph>Format - Page - Header</emph>)."
-msgstr ""
+msgstr "Abra un documento de texto baleiro e escriba unha carta comercial breve cunha cabeceira (<emph>Formato - Páxina - Cabeceira</emph>)."
#: 05130100.xhp
msgctxt ""
@@ -23806,7 +23806,7 @@ msgctxt ""
"par_idN10567\n"
"help.text"
msgid "<link href=\"text/swriter/01/mailmerge00.xhp\">Mail Merge Wizard</link> overview"
-msgstr ""
+msgstr "Vista xeral do <link href=\"text/swriter/01/mailmerge00.xhp\">Asistente de combinación de correspondencia</link>"
#: mailmerge02.xhp
msgctxt ""
@@ -23878,7 +23878,7 @@ msgctxt ""
"par_idN10568\n"
"help.text"
msgid "<link href=\"text/swriter/01/mailmerge00.xhp\">Mail Merge Wizard</link> overview"
-msgstr ""
+msgstr "Vista xeral do <link href=\"text/swriter/01/mailmerge00.xhp\">Asistente de combinación de correspondencia</link>"
#: mailmerge03.xhp
msgctxt ""
diff --git a/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po b/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po
index 1b6dc8edb90..79e10c12450 100644
--- a/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/gl/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: 2019-08-28 19:39+0200\n"
-"PO-Revision-Date: 2019-08-29 11:13+0000\n"
+"PO-Revision-Date: 2019-09-15 21:15+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1567077200.000000\n"
+"X-POOTLE-MTIME: 1568582105.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -7610,7 +7610,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Duplicate Page"
-msgstr "Duplicar a páxina"
+msgstr "Duplicar páxina"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7619,7 +7619,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Duplicate ~Slide"
-msgstr "Duplicar a diapo~sitiva"
+msgstr "Duplicar diapo~sitiva"
#: DrawImpressCommands.xcu
msgctxt ""
diff --git a/source/gl/sc/messages.po b/source/gl/sc/messages.po
index 9d4cdf24efc..70dd4debbd7 100644
--- a/source/gl/sc/messages.po
+++ b/source/gl/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: 2019-08-28 19:39+0200\n"
-"PO-Revision-Date: 2019-07-04 08:45+0000\n"
+"PO-Revision-Date: 2019-09-17 22:33+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1562229906.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1568759585.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -16946,7 +16946,7 @@ msgstr "Disposición do esquema con subtotais abaixo"
#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:300
msgctxt "datafieldoptionsdialog|label2"
msgid "Display Options"
-msgstr "Opcións de visualizacións"
+msgstr "Opcións de visualización"
#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:332
msgctxt "datafieldoptionsdialog|show"
@@ -21740,7 +21740,7 @@ msgstr "_Compartir esta folla de cálculo con outros usuarios"
#: sc/uiconfig/scalc/ui/sharedocumentdlg.ui:130
msgctxt "sharedocumentdlg|warning"
msgid "Note: Changes to formatting attributes like fonts, colors, and number formats will not be saved and some functionalities like editing charts and drawing objects are not available in shared mode. Turn off shared mode to get exclusive access needed for those changes and functionalities."
-msgstr "Nota: Os cambios nos atributos de formato como tipos de letra, cores e formato dos números non se gardarán e algunhas funcionalidades como a edición de gráficas e o debuxo de obxectos non estarán dispoñíbeis no modo compartido. Desactive o modo compartido para ter acceso exclusivo a eses cambios e funcionalidades."
+msgstr "Nota: Os cambios nos atributos de formato, como tipos de letra, cores e formato dos números, non se gardarán e algunhas funcionalidades como a edición de gráficas e o debuxo de obxectos non están dispoñíbeis no modo compartido. Desactive o modo compartido para ter acceso exclusivo a eses cambios e funcionalidades."
#: sc/uiconfig/scalc/ui/sharedocumentdlg.ui:201
msgctxt "sharedocumentdlg|name"
@@ -21765,7 +21765,7 @@ msgstr "Esta folla de cálculo está en modo compartido. Isto permite que varios
#: sc/uiconfig/scalc/ui/sharedwarningdialog.ui:13
msgctxt "sharedwarningdialog|SharedWarningDialog"
msgid "Changes to formatting attributes like fonts, colors, and number formats will not be saved and some functionalities like editing charts and drawing objects are not available in shared mode. Turn off shared mode to get exclusive access needed for those changes and functionalities."
-msgstr "Os cambios nos atributos de formato, como tipos de letra, cores e formato dos números non se gardarán e algunhas funcionalidades como a edición de gráficas e o debuxo de obxectos non estarán dispoñíbeis no modo compartido. Desactive o modo compartido para obter acceso exclusivo a eses cambios e funcionalidades."
+msgstr "Os cambios nos atributos de formato, como tipos de letra, cores e formato dos números non se gardarán e algunhas funcionalidades como a edición de gráficas e o debuxo de obxectos non están dispoñíbeis no modo compartido. Desactive o modo compartido para obter acceso exclusivo a eses cambios e funcionalidades."
#: sc/uiconfig/scalc/ui/sharedwarningdialog.ui:32
msgctxt "sharedwarningdialog|ask"
diff --git a/source/gl/sd/messages.po b/source/gl/sd/messages.po
index 505f1391ae0..992f7c67a88 100644
--- a/source/gl/sd/messages.po
+++ b/source/gl/sd/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: 2019-08-28 19:39+0200\n"
-"PO-Revision-Date: 2019-07-04 08:48+0000\n"
+"PO-Revision-Date: 2019-09-09 19:55+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1562230106.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1568058957.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
@@ -5040,7 +5040,7 @@ msgstr "~Ver"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:8955
msgctxt "notebookbar_impress_compact|TableMenuButton"
msgid "T_able"
-msgstr "~Táboa"
+msgstr "_Táboa"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:10701
msgctxt "notebookbar_impress_compact|TableLabel"
diff --git a/source/gl/svx/messages.po b/source/gl/svx/messages.po
index dd0c3abd4e2..4a3ff71bc56 100644
--- a/source/gl/svx/messages.po
+++ b/source/gl/svx/messages.po