: # # This script checks various configure parameters and uses three files: # * autogen.input (ro) # * autogen.lastrun (rw) # * autogen.lastrun.bak (rw) # # If _no_ parameters: # 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; my $aclocal; my $autoconf; # 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+//; 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 ( /^INCLUDE:(.*)/ ) { # include another .conf into this one my $config = "$src_path/distro-configs/$1.conf"; if (! -f $config) { invalid_distro ($config, $1); } push @lst, read_args ($config); } 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 show_distro_configs($$) { my ($prefix, $path) = @_; my $dirh; opendir ($dirh, "$path"); while (($_ = readdir ($dirh))) { if (-d "$path/$_") { show_distro_configs( $prefix eq "" ? "$_/" : "$prefix/$_/", "$path/$_") unless $_ eq '.' || $_ eq '..'; next; } /(.*)\.conf$/ || next; print STDERR "\t$prefix$1\n"; } closedir ($dirh); } sub invalid_distro($$) { my ($config, $distro) = @_; print STDERR "Can't find distro option set: $config\n"; print STDERR "Distros with distro option sets are:\n"; show_distro_configs("", "$src_path/distro-configs"); exit (1); } # Avoid confusing "aclocal: error: non-option arguments are not accepted: '.../m4'." error message. die "\$src_path must not contain spaces, but it is '$src_path'." if ($src_path =~ / /); # Alloc $ACLOCAL to specify which aclocal to use $aclocal = $ENV{ACLOCAL} ? $ENV{ACLOCAL} : 'aclocal'; # Alloc $AUTOCONF to specify which autoconf to use # (e.g. autoconf268 from a backports repo) $autoconf = $ENV{AUTOCONF} ? $ENV{AUTOCONF} : 'autoconf'; my $system = `uname -s`; chomp $system; sanity_checks ($system) unless($system eq 'Darwin'); # If we are running in a LODE env, make sure we find the right aclocal # by making sure that LODE_HOME/opt/bin is in the PATH if (defined $ENV{LODE_HOME}) { my $lode_path = quotemeta "$ENV{LODE_HOME}/opt/bin"; if($ENV{PATH} !~ $lode_path) { $ENV{PATH}="$ENV{LODE_HOME}/opt/bin:$ENV{PATH}"; print STDERR "add LODE_HOME/opt/bin in PATH\n"; } } 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 $src_path_win=$src_path; if ($system =~ /CYGWIN.*/) { $src_path_win=`cygpath -m $src_path`; chomp $src_path_win; } my @modules = <$src_path/*/Makefile>; foreach my $module (@modules) { my $dir = basename (dirname ($module)); mkdir ($dir); system ("rm -f $dir/Makefile"); system ("printf 'module_directory:=$src_path_win/$dir/\ninclude \$(module_directory)/../solenv/gbuild/partial_build.mk\n' > $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 ("rm -f external/$dir/Makefile"); system ("printf 'module_directory:=$src_path_win/external/$dir/\ninclude \$(module_directory)/../../solenv/gbuild/partial_build.mk\n' > 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|-\?)$/) { print STDOUT "autogen.sh - libreoffice configuration helper\n"; print STDOUT " --with-distro use a config from distro-configs/\n"; print STDOUT " the name needs to be passed without extension\n"; print STDOUT " --best-effort don't fail on un-known configure with/enable options\n"; print STDOUT "\nOther arguments passed directly to configure:\n\n"; 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 < 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=$option_checking"; 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: # LibreOffice 界面翻译代码仓库文档基金会
aboutsummaryrefslogtreecommitdiff
path: root/source/sk
diff options
context:
space:
mode:
authorChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2020-10-23 14:42:04 +0200
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2020-10-23 15:00:58 +0200
commit236b483252c94f7b38ca7fecfa16cabab498a1ac (patch)
treefaa476db220327b506da62cd4fcdda7c1d601981 /source/sk
parentc40c10b4dcb3363806f7ad309f5895684948513c (diff)
update translations for master/7.1.0 alpha1
and force-fix errors using pocheck Change-Id: If200fbab2e1c793a45c3f361275028afdced7b91
Diffstat (limited to 'source/sk')
-rw-r--r--source/sk/avmedia/messages.po48
-rw-r--r--source/sk/basctl/messages.po390
-rw-r--r--source/sk/basic/messages.po274
-rw-r--r--source/sk/chart2/messages.po2272
-rw-r--r--source/sk/cui/messages.po9535
-rw-r--r--source/sk/dbaccess/messages.po862
-rw-r--r--source/sk/desktop/messages.po182
-rw-r--r--source/sk/editeng/messages.po30
-rw-r--r--source/sk/extensions/messages.po275
-rw-r--r--source/sk/filter/messages.po948
-rw-r--r--source/sk/formula/messages.po74
-rw-r--r--source/sk/fpicker/messages.po38
-rw-r--r--source/sk/helpcontent2/source/text/sbasic/python.po6
-rw-r--r--source/sk/helpcontent2/source/text/sbasic/shared.po3276
-rw-r--r--source/sk/helpcontent2/source/text/sbasic/shared/03.po263
-rw-r--r--source/sk/helpcontent2/source/text/scalc.po26
-rw-r--r--source/sk/helpcontent2/source/text/scalc/00.po15
-rw-r--r--source/sk/helpcontent2/source/text/scalc/01.po368
-rw-r--r--source/sk/helpcontent2/source/text/scalc/guide.po28
-rw-r--r--source/sk/helpcontent2/source/text/schart/01.po96
-rw-r--r--source/sk/helpcontent2/source/text/sdatabase.po3134
-rw-r--r--source/sk/helpcontent2/source/text/sdraw/01.po40
-rw-r--r--source/sk/helpcontent2/source/text/shared.po130
-rw-r--r--source/sk/helpcontent2/source/text/shared/00.po615
-rw-r--r--source/sk/helpcontent2/source/text/shared/01.po1370
-rw-r--r--source/sk/helpcontent2/source/text/shared/02.po157
-rw-r--r--source/sk/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/sk/helpcontent2/source/text/shared/05.po54
-rw-r--r--source/sk/helpcontent2/source/text/shared/06.po15
-rw-r--r--source/sk/helpcontent2/source/text/shared/autopi.po30
-rw-r--r--source/sk/helpcontent2/source/text/shared/explorer/database.po3189
-rw-r--r--source/sk/helpcontent2/source/text/shared/guide.po210
-rw-r--r--source/sk/helpcontent2/source/text/shared/help.po11
-rw-r--r--source/sk/helpcontent2/source/text/shared/optionen.po466
-rw-r--r--source/sk/helpcontent2/source/text/simpress.po17
-rw-r--r--source/sk/helpcontent2/source/text/simpress/00.po8
-rw-r--r--source/sk/helpcontent2/source/text/simpress/01.po17
-rw-r--r--source/sk/helpcontent2/source/text/simpress/02.po14
-rw-r--r--source/sk/helpcontent2/source/text/simpress/guide.po31
-rw-r--r--source/sk/helpcontent2/source/text/smath/01.po6
-rw-r--r--source/sk/helpcontent2/source/text/swriter.po22
-rw-r--r--source/sk/helpcontent2/source/text/swriter/00.po52
-rw-r--r--source/sk/helpcontent2/source/text/swriter/01.po400
-rw-r--r--source/sk/helpcontent2/source/text/swriter/02.po622
-rw-r--r--source/sk/helpcontent2/source/text/swriter/guide.po24
-rw-r--r--source/sk/officecfg/registry/data/org/openoffice/Office.po60
-rw-r--r--source/sk/officecfg/registry/data/org/openoffice/Office/UI.po504
-rw-r--r--source/sk/readlicense_oo/docs.po26
-rw-r--r--source/sk/sc/messages.po6431
-rw-r--r--source/sk/sd/messages.po2226
-rw-r--r--source/sk/sfx2/messages.po964
-rw-r--r--source/sk/starmath/messages.po984
-rw-r--r--source/sk/svtools/messages.po790
-rw-r--r--source/sk/svx/messages.po5944
-rw-r--r--source/sk/sw/messages.po11925
-rw-r--r--source/sk/uui/messages.po60
-rw-r--r--source/sk/vcl/messages.po328
-rw-r--r--source/sk/wizards/source/resources.po10
-rw-r--r--source/sk/xmlsecurity/messages.po256
59 files changed, 17107 insertions, 43047 deletions
diff --git a/source/sk/avmedia/messages.po b/source/sk/avmedia/messages.po
index e385937abad..c1277128cd9 100644
--- a/source/sk/avmedia/messages.po
+++ b/source/sk/avmedia/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-09-07 17:17+0200\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
"PO-Revision-Date: 2020-10-02 06:35+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: Slovak <https://weblate.documentfoundation.org/projects/libo_ui-master/avmediamessages/sk/>\n"
@@ -13,137 +13,137 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1511541384.000000\n"
#. FaxGP
-#: avmedia/inc/strings.hrc:24
+#: avmedia/inc/strings.hrc:25
msgctxt "AVMEDIA_STR_OPEN"
msgid "Open"
msgstr "Otvoriť"
#. dgNoA
-#: avmedia/inc/strings.hrc:25
+#: avmedia/inc/strings.hrc:26
msgctxt "AVMEDIA_STR_INSERT"
msgid "Apply"
msgstr "Použiť"
#. yViEF
-#: avmedia/inc/strings.hrc:26
+#: avmedia/inc/strings.hrc:27
msgctxt "AVMEDIA_STR_PLAY"
msgid "Play"
msgstr "Prehrať"
#. h9N6V
-#: avmedia/inc/strings.hrc:27
+#: avmedia/inc/strings.hrc:28
msgctxt "AVMEDIA_STR_PAUSE"
msgid "Pause"
msgstr "Pozastaviť"
#. wAyMD
-#: avmedia/inc/strings.hrc:28
+#: avmedia/inc/strings.hrc:29
msgctxt "AVMEDIA_STR_STOP"
msgid "Stop"
msgstr "Zastaviť"
#. 7e23T
-#: avmedia/inc/strings.hrc:29
+#: avmedia/inc/strings.hrc:30
msgctxt "AVMEDIA_STR_LOOP"
msgid "Repeat"
msgstr "Opakovať"
#. pg6tr
-#: avmedia/inc/strings.hrc:30
+#: avmedia/inc/strings.hrc:31
msgctxt "AVMEDIA_STR_MUTE"
msgid "Mute"
msgstr "Stlmiť"
#. m6G23
-#: avmedia/inc/strings.hrc:31
+#: avmedia/inc/strings.hrc:32
msgctxt "AVMEDIA_STR_ZOOM_50"
msgid "50%"
msgstr "50 %"
#. k2SKV
-#: avmedia/inc/strings.hrc:32
+#: avmedia/inc/strings.hrc:33
msgctxt "AVMEDIA_STR_ZOOM_100"
msgid "100%"
msgstr "100 %"
#. yTBHR
-#: avmedia/inc/strings.hrc:33
+#: avmedia/inc/strings.hrc:34
msgctxt "AVMEDIA_STR_ZOOM_200"
msgid "200%"
msgstr "200 %"
#. dBMvq
-#: avmedia/inc/strings.hrc:34
+#: avmedia/inc/strings.hrc:35
msgctxt "AVMEDIA_STR_ZOOM_FIT"
msgid "Scaled"
msgstr "Škálované"
#. eRSnC
-#: avmedia/inc/strings.hrc:35
+#: avmedia/inc/strings.hrc:36
msgctxt "AVMEDIA_STR_VOLUME"
msgid "Volume"
msgstr "Hlasitosť"
#. o3hBG
-#: avmedia/inc/strings.hrc:36
+#: avmedia/inc/strings.hrc:37
msgctxt "AVMEDIA_STR_POSITION"
msgid "Position"
msgstr "Poloha"
#. 9aa7b
-#: avmedia/inc/strings.hrc:37
+#: avmedia/inc/strings.hrc:38
msgctxt "AVMEDIA_STR_MEDIAPLAYER"
msgid "Media Player"
msgstr "Prehrávač médií"
#. BM7GB
-#: avmedia/inc/strings.hrc:38
+#: avmedia/inc/strings.hrc:39
msgctxt "AVMEDIA_MEDIA_PATH"
msgid "Media Path"
msgstr "Cesta k multimédiám"
#. JggdA
-#: avmedia/inc/strings.hrc:39
+#: avmedia/inc/strings.hrc:40
msgctxt "AVMEDIA_MEDIA_PATH_DEFAULT"
msgid "No Media Selected"
msgstr "Nebolo vybrané žiadne multimédium"
#. BFybF
-#: avmedia/inc/strings.hrc:40
+#: avmedia/inc/strings.hrc:41
msgctxt "AVMEDIA_STR_INSERTMEDIA_DLG"
msgid "Insert Audio or Video"
msgstr "Vložiť zvuk alebo video"
#. AvVZ8
-#: avmedia/inc/strings.hrc:41
+#: avmedia/inc/strings.hrc:42
msgctxt "AVMEDIA_STR_OPENMEDIA_DLG"
msgid "Open Audio or Video"
msgstr "Otvoriť zvuk alebo video"
#. FaT3C
-#: avmedia/inc/strings.hrc:42
+#: avmedia/inc/strings.hrc:43
msgctxt "AVMEDIA_STR_ALL_MEDIAFILES"
msgid "All audio and video files"
msgstr "Všetky zvukové a video súbory"
#. oJnCV
-#: avmedia/inc/strings.hrc:43
+#: avmedia/inc/strings.hrc:44
msgctxt "AVMEDIA_STR_ALL_FILES"
msgid "All files"
msgstr "Všetky súbory"
#. QYcS3
-#: avmedia/inc/strings.hrc:44
+#: avmedia/inc/strings.hrc:45
msgctxt "AVMEDIA_STR_ERR_URL"
msgid "The format of the selected file is not supported."
msgstr "Formát zvoleného súboru nie je podporovaný."
#. am3R5
-#: avmedia/inc/strings.hrc:45
+#: avmedia/inc/strings.hrc:46
msgctxt "AVMEDIA_STR_ZOOM_TOOLTIP"
msgid "View"
msgstr "Zobraziť"
diff --git a/source/sk/basctl/messages.po b/source/sk/basctl/messages.po
index d97bc1861c4..56fb3d6886a 100644
--- a/source/sk/basctl/messages.po
+++ b/source/sk/basctl/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-09-28 11:22+0200\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
"PO-Revision-Date: 2020-10-02 06:35+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: Slovak <https://weblate.documentfoundation.org/projects/libo_ui-master/basctlmessages/sk/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1555447090.000000\n"
#. fniWp
@@ -582,185 +582,95 @@ msgid "Basic Macros"
msgstr "Makrá Basicu"
#. tFg7s
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:43
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:46
msgctxt "basicmacrodialog|run"
msgid "Run"
msgstr "Spustiť"
-#. gokwe
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:52
-msgctxt "basicmacrodialog|extended_tip|ok"
-msgid "Runs or saves the current macro."
-msgstr "Spustí alebo uloží aktuálne makro."
-
-#. 6SWBt
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:160
-msgctxt "basicmacrodialog|extended_tip|macros"
-msgid "Lists the macros that are contained in the module selected in the Macro from list."
-msgstr "Zoznam makier, ktoré sú obsiahnuté v module vybranom v zozname Makro z."
-
#. 5TRqv
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:173
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:166
msgctxt "basicmacrodialog|existingmacrosft"
msgid "Existing Macros In:"
msgstr "Existujúce makrá v:"
-#. 8Bfcg
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:242
-msgctxt "basicmacrodialog|extended_tip|libraries"
-msgid "Lists the libraries and the modules where you can open or save your macros. To save a macro with a particular document, open the document, and then open this dialog."
-msgstr "Vypíše knižnice a moduly, v ktorých je možné otvárať a ukladať vaše makrá. Pre uloženie modulu s konkrétnym dokumentom otvorte dokument a potom otvorte tento dialóg."
-
#. Mfysc
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:260
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:248
msgctxt "basicmacrodialog|macrofromft"
msgid "Macro From"
msgstr "Makro z"
#. Qth4v
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:276
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:264
msgctxt "basicmacrodialog|macrotoft"
msgid "Save Macro In"
msgstr "Uložiť makro do"
-#. AjFTi
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:317
-msgctxt "basicmacrodialog|extended_tip|macronameedit"
-msgid "Displays the name of the selected macro. To create or to change the name of a macro, enter a name here."
-msgstr "Zobrazí meno vybraného makra. Pre vytvorenie alebo zmenu mena makra sem zadajte meno."
-
#. BpDb6
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:328
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:311
msgctxt "basicmacrodialog|libraryft1"
msgid "Macro Name"
msgstr "Názov makra"
#. izDZr
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:351
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:334
msgctxt "basicmacrodialog|assign"
msgid "Assign..."
msgstr "Priradiť..."
-#. qEaMG
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:358
-msgctxt "basicmacrodialog|extended_tip|assign"
-msgid "Opens the Customize dialog, where you can assign the selected macro to a menu command, a toolbar, or an event."
-msgstr "Otvorí dialógové okno Prispôsobiť, kde je možné vybrané makro priradiť príkazu menu, klávesovej skratke alebo udalosti."
-
#. dxu7W
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:370
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:348
msgctxt "basicmacrodialog|edit"
msgid "Edit"
msgstr "Upraviť"
-#. dE5A9
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:377
-msgctxt "basicmacrodialog|extended_tip|edit"
-msgid "Starts the %PRODUCTNAME Basic editor and opens the selected macro or dialog for editing."
-msgstr "Spustí editor %PRODUCTNAME Basic a otvorí makro alebo dialógové okno na úpravu."
-
#. 9Uhec
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:389
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:362
msgctxt "basicmacrodialog|delete"
msgid "_Delete"
msgstr "_Zmazať"
-#. Mxvv8
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:396
-msgctxt "basicmacrodialog|extended_tip|delete"
-msgid "Creates a new macro, creates a new module or deletes the selected macro or selected module."
-msgstr "Vytvorí nové makro alebo modul alebo zmaže vybrané makro či modul."
-
#. XkqFC
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:408
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:376
msgctxt "basicmacrodialog|new"
msgid "_New"
msgstr "_Nový"
-#. GN5Ft
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:415
-msgctxt "basicmacrodialog|extended_tip|new"
-msgid "Creates a new library."
-msgstr "Vytvorí novú knižnicu."
-
#. Gh52t
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:427
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:390
msgctxt "basicmacrodialog|organize"
msgid "Organizer..."
msgstr "Organizátor..."
-#. 3L2hk
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:434
-msgctxt "basicmacrodialog|extended_tip|organize"
-msgid "Opens the Macro Organizer dialog, where you can add, edit, or delete existing macro modules, dialogs, and libraries."
-msgstr "Otvorí dialóg Správca makier, v ktorom je možné pridať, upraviť alebo zmazať existujúce moduly makier, dialógy alebo knižnice."
-
#. wAJj2
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:446
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:404
msgctxt "basicmacrodialog|newlibrary"
msgid "New Library"
msgstr "Nová knižnica"
-#. E5rdD
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:453
-msgctxt "basicmacrodialog|extended_tip|newlibrary"
-msgid "Saves the recorded macro in a new library."
-msgstr "Uloží zaznamenané makro do novej knižnice."
-
#. 2xdsE
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:465
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:418
msgctxt "basicmacrodialog|newmodule"
msgid "New Module"
msgstr "Nový modul"
-#. BrAwG
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:472
-msgctxt "basicmacrodialog|extended_tip|newmodule"
-msgid "Saves the recorded macro in a new module."
-msgstr "Uloží zaznamenané makro do nového modulu."
-
-#. gMDg9
-#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:520
-msgctxt "basicmacrodialog|extended_tip|BasicMacroDialog"
-msgid "Opens a dialog to organize macros."
-msgstr "Otvorí dialógové okno na správu makier."
-
#. MDBgX
#: basctl/uiconfig/basicide/ui/breakpointmenus.ui:12
msgctxt "breakpointmenus|manage"
msgid "Manage Breakpoints..."
msgstr "Body prerušenia..."
-#. 2ZNKn
-#: basctl/uiconfig/basicide/ui/breakpointmenus.ui:15
-msgctxt "breakpointmenus|extended_tip|manage"
-msgid "Specifies the options for breakpoints."
-msgstr "Určuje vlastnosti bodov prerušenia."
-
#. faXzj
-#: basctl/uiconfig/basicide/ui/breakpointmenus.ui:28
+#: basctl/uiconfig/basicide/ui/breakpointmenus.ui:23
msgctxt "breakpointmenus|active"
msgid "_Active"
msgstr "_Aktívny"
-#. GD2Yz
-#: basctl/uiconfig/basicide/ui/breakpointmenus.ui:32
-msgctxt "breakpointmenus|extended_tip|active"
-msgid "Activates or deactivates the current breakpoint."
-msgstr "Aktivuje alebo deaktivuje súčasný bod prerušenia."
-
#. FhiYE
-#: basctl/uiconfig/basicide/ui/breakpointmenus.ui:47
+#: basctl/uiconfig/basicide/ui/breakpointmenus.ui:37
msgctxt "breakpointmenus|properties"
msgid "_Properties..."
msgstr "_Vlastnosti..."
-#. GEknG
-#: basctl/uiconfig/basicide/ui/breakpointmenus.ui:51
-msgctxt "breakpointmenus|extended_tip|properties"
-msgid "Specifies the options for breakpoints."
-msgstr "Určuje vlastnosti bodov prerušenia."
-
#. G55tN
#: basctl/uiconfig/basicide/ui/defaultlanguage.ui:30
msgctxt "defaultlanguage|DefaultLanguageDialog"
@@ -821,78 +731,36 @@ msgctxt "dialogpage|label1"
msgid "Dialog:"
msgstr "Dialóg:"
-#. ECCc3
-#: basctl/uiconfig/basicide/ui/dialogpage.ui:92
-msgctxt "dialogpage|extended_tip|library"
-msgid "Deletes the selected element or elements after confirmation."
-msgstr "Po potvrdení odstráni vybraný prvok alebo prvky."
-
-#. jAkNt
-#: basctl/uiconfig/basicide/ui/dialogpage.ui:126
-msgctxt "dialogpage|extended_tip|edit"
-msgid "Opens the %PRODUCTNAME Basic editor so that you can modify the selected library."
-msgstr "Otvorí editor %PRODUCTNAME Basic, v ktorom je možné upraviť vybranú knižnicu."
-
#. n9VLU
-#: basctl/uiconfig/basicide/ui/dialogpage.ui:138
+#: basctl/uiconfig/basicide/ui/dialogpage.ui:129
msgctxt "dialogpage|newmodule"
msgid "_New..."
msgstr "_Nový..."
-#. hfkr2
-#: basctl/uiconfig/basicide/ui/dialogpage.ui:145
-msgctxt "dialogpage|extended_tip|newmodule"
-msgid "Opens the editor and creates a new module."
-msgstr "Otvorí editor a vytvorí nový modul."
-
#. kBzSW
-#: basctl/uiconfig/basicide/ui/dialogpage.ui:158
+#: basctl/uiconfig/basicide/ui/dialogpage.ui:144
msgctxt "dialogpage|newdialog"
msgid "_New..."
msgstr "_Nový..."
-#. JR2oJ
-#: basctl/uiconfig/basicide/ui/dialogpage.ui:181
-msgctxt "dialogpage|extended_tip|delete"
-msgid "Deletes the selected element or elements without requiring confirmation."
-msgstr "Bez nutnosti potvrdenia odstráni vybraný prvok alebo prvky."
-
#. k64f4
-#: basctl/uiconfig/basicide/ui/dialogpage.ui:194
+#: basctl/uiconfig/basicide/ui/dialogpage.ui:175
msgctxt "dialogpage|password"
msgid "_Password..."
msgstr "_Heslo..."
-#. FeCu5
-#: basctl/uiconfig/basicide/ui/dialogpage.ui:201
-msgctxt "dialogpage|extended_tip|password"
-msgid "Assigns or edits the password for the selected library."
-msgstr "Priradí alebo upraví heslo vybranej knižnice."
-
#. sHS7f
-#: basctl/uiconfig/basicide/ui/dialogpage.ui:213
+#: basctl/uiconfig/basicide/ui/dialogpage.ui:189
msgctxt "dialogpage|import"
msgid "_Import..."
msgstr "_Importovať..."
-#. 8VCZB
-#: basctl/uiconfig/basicide/ui/dialogpage.ui:220
-msgctxt "dialogpage|extended_tip|import"
-msgid "Locate that %PRODUCTNAME Basic library that you want to add to the current list, and then click Open."
-msgstr "Vyberte knižnicu %PRODUCTNAME Basic, ktorú chcete pridať do aktuálneho zoznamu, a kliknite na Otvoriť."
-
#. ubE5G
-#: basctl/uiconfig/basicide/ui/dialogpage.ui:232
+#: basctl/uiconfig/basicide/ui/dialogpage.ui:203
msgctxt "dialogpage|export"
msgid "_Export..."
msgstr "_Exportovať..."
-#. weDhB
-#: basctl/uiconfig/basicide/ui/dialogpage.ui:258
-msgctxt "dialogpage|extended_tip|DialogPage"
-msgid "Lists the existing modules or dialogs."
-msgstr "Zoznam existujúcich modulov alebo dialógových okien."
-
#. EGyCn
#: basctl/uiconfig/basicide/ui/dockingwatch.ui:110
msgctxt "dockingwatch|RID_STR_WATCHVARIABLE"
@@ -948,185 +816,83 @@ msgid "Import Libraries"
msgstr "Importovať knižnice"
#. C8ny7
-#: basctl/uiconfig/basicide/ui/importlibdialog.ui:116
+#: basctl/uiconfig/basicide/ui/importlibdialog.ui:119
msgctxt "importlibdialog|ref"
msgid "Insert as reference (read-only)"
msgstr "Vložiť ako odkaz (iba na čítanie)"
-#. gxCjk
-#: basctl/uiconfig/basicide/ui/importlibdialog.ui:125
-msgctxt "importlibdialog|extended_tip|ref"
-msgid "Adds the selected library as a read-only file. The library is reloaded each time you start %PRODUCTNAME."
-msgstr "Pridá vybranú knižnicu ako súbor len na čítanie. Knižnica je načítaná pri každom spustení %PRODUCTNAME."
-
#. B9N7w
-#: basctl/uiconfig/basicide/ui/importlibdialog.ui:136
+#: basctl/uiconfig/basicide/ui/importlibdialog.ui:134
msgctxt "importlibdialog|replace"
msgid "Replace existing libraries"
msgstr "Nahradiť existujúce knižnice"
-#. AyUpF
-#: basctl/uiconfig/basicide/ui/importlibdialog.ui:145
-msgctxt "importlibdialog|extended_tip|replace"
-msgid "Replaces a library that has the same name with the current library."
-msgstr "Nahradí knižnicu, ktorá má rovnaký názov ako aktuálna knižnica."
-
#. GGb7Q
-#: basctl/uiconfig/basicide/ui/importlibdialog.ui:162
+#: basctl/uiconfig/basicide/ui/importlibdialog.ui:155
msgctxt "importlibdialog|label1"
msgid "Options"
msgstr "Možnosti"
-#. 7ZFMZ
-#: basctl/uiconfig/basicide/ui/importlibdialog.ui:277
-msgctxt "importlibdialog|extended_tip|ImportLibDialog"
-msgid "Enter a name or the path to the library that you want to append. You can also select a library from the list."
-msgstr "Zadajte názov knižnice, ktorú chcete pripojiť. Tiež je možné vybrať knižnicu zo zoznamu."
-
#. XdZ7e
-#: basctl/uiconfig/basicide/ui/libpage.ui:41
+#: basctl/uiconfig/basicide/ui/libpage.ui:42
msgctxt "libpage|label1"
msgid "L_ocation:"
msgstr "_Umiestnenie:"
-#. JAxWt
-#: basctl/uiconfig/basicide/ui/libpage.ui:58
-msgctxt "libpage|extended_tip|location"
-msgid "Select the application or the document containing the macro libraries that you want to organize."
-msgstr "Vyberte aplikáciu alebo dokument obsahujúci knižnice, ktoré chcete spravovať."
-
#. C4mjh
-#: basctl/uiconfig/basicide/ui/libpage.ui:85
+#: basctl/uiconfig/basicide/ui/libpage.ui:81
msgctxt "libpage|lingudictsft"
msgid "_Library:"
msgstr "_Knižnica:"
-#. T2NUa
-#: basctl/uiconfig/basicide/ui/libpage.ui:149
-msgctxt "libpage|extended_tip|library"
-msgid "Deletes the selected element or elements after confirmation."
-msgstr "Po potvrdení odstráni vybraný prvok alebo prvky."
-
-#. ARGtS
-#: basctl/uiconfig/basicide/ui/libpage.ui:183
-msgctxt "libpage|extended_tip|edit"
-msgid "Opens the %PRODUCTNAME Basic editor so that you can modify the selected library."
-msgstr "Otvorí editor %PRODUCTNAME Basic, v ktorom je možné upraviť vybranú knižnicu."
-
#. AjENj
-#: basctl/uiconfig/basicide/ui/libpage.ui:195
+#: basctl/uiconfig/basicide/ui/libpage.ui:181
msgctxt "libpage|password"
msgid "_Password..."
msgstr "_Heslo..."
-#. m79WV
-#: basctl/uiconfig/basicide/ui/libpage.ui:202
-msgctxt "libpage|extended_tip|password"
-msgid "Assigns or edits the password for the selected library."
-msgstr "Priradí alebo upraví heslo vybranej knižnice."
-
#. bzX6x
-#: basctl/uiconfig/basicide/ui/libpage.ui:214
+#: basctl/uiconfig/basicide/ui/libpage.ui:195
msgctxt "libpage|new"
msgid "_New..."
msgstr "_Nový..."
-#. Af6Jv
-#: basctl/uiconfig/basicide/ui/libpage.ui:221
-msgctxt "libpage|extended_tip|new"
-msgid "Creates a new library."
-msgstr "Vytvorí novú knižnicu."
-
#. EBVPe
-#: basctl/uiconfig/basicide/ui/libpage.ui:234
+#: basctl/uiconfig/basicide/ui/libpage.ui:210
msgctxt "libpage|import"
msgid "_Import..."
msgstr "_Importovať..."
-#. W7BzD
-#: basctl/uiconfig/basicide/ui/libpage.ui:241
-msgctxt "libpage|extended_tip|import"
-msgid "Locate that %PRODUCTNAME Basic library that you want to add to the current list, and then click Open."
-msgstr "Vyberte knižnicu %PRODUCTNAME Basic, ktorú chcete pridať do aktuálneho zoznamu, a kliknite na Otvoriť."
-
#. GhHRH
-#: basctl/uiconfig/basicide/ui/libpage.ui:254
+#: basctl/uiconfig/basicide/ui/libpage.ui:225
msgctxt "libpage|export"
msgid "_Export..."
msgstr "_Exportovať..."
-#. hMRJK
-#: basctl/uiconfig/basicide/ui/libpage.ui:277
-msgctxt "libpage|extended_tip|delete"
-msgid "Deletes the selected element or elements without requiring confirmation."
-msgstr "Bez nutnosti potvrdenia odstráni vybraný prvok alebo prvky."
-
-#. dfZKj
-#: basctl/uiconfig/basicide/ui/libpage.ui:303
-msgctxt "libpage|extended_tip|LibPage"
-msgid "Select the application or the document containing the macro libraries that you want to organize."
-msgstr "Vyberte aplikáciu alebo dokument obsahujúci knižnice, ktoré chcete spravovať."
-
#. zrJTt
#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:16
msgctxt "managebreakpoints|ManageBreakpointsDialog"
msgid "Manage Breakpoints"
msgstr "Spravovať body prerušenia"
-#. TvBmF
-#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:40
-msgctxt "managebreakpoints|extended_tip|new"
-msgid "Creates a breakpoint on the line number specified."
-msgstr "Vytvorí bod prerušenia na určenom riadku."
-
-#. CCDEi
-#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:60
-msgctxt "managebreakpoints|extended_tip|delete"
-msgid "Deletes the selected breakpoint."
-msgstr "Zmaže vybraný bod prerušenia."
-
#. PcuyN
-#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:146
+#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:139
msgctxt "managebreakpoints|active"
msgid "Active"
msgstr "Aktívne"
-#. fqCCT
-#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:155
-msgctxt "managebreakpoints|extended_tip|active"
-msgid "Activates or deactivates the current breakpoint."
-msgstr "Aktivuje alebo deaktivuje súčasný bod prerušenia."
-
-#. MUMSv
-#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:218
-msgctxt "managebreakpoints|extended_tip|entries"
-msgid "Enter the line number for a new breakpoint, then click New."
-msgstr "Zadajte číslo riadku pre nový bod prerušenia a kliknite na Nový."
-
-#. RVBS5
-#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:245
-msgctxt "managebreakpoints|extended_tip|pass"
-msgid "Specify the number of loops to perform before the breakpoint takes effect."
-msgstr "Určuje počet slučiek, ktoré prebehnú, než bod prerušenia zapôsobí."
-
#. VDCwR
-#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:258
+#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:237
msgctxt "managebreakpoints|label2"
msgid "Pass count:"
msgstr "_Počet prechodov:"
#. 5dExG
-#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:281
+#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:260
msgctxt "managebreakpoints|label1"
msgid "Breakpoints"
msgstr "Body prerušenia"
-#. FGsQQ
-#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:308
-msgctxt "managebreakpoints|extended_tip|ManageBreakpointsDialog"
-msgid "Specifies the options for breakpoints."
-msgstr "Určuje vlastnosti bodov prerušenia."
-
#. M2Sx2
#: basctl/uiconfig/basicide/ui/managelanguages.ui:16
msgctxt "managelanguages|ManageLanguagesDialog"
@@ -1163,102 +929,42 @@ msgctxt "modulepage|label1"
msgid "M_odule:"
msgstr "_Modul:"
-#. fpUvr
-#: basctl/uiconfig/basicide/ui/modulepage.ui:92
-msgctxt "modulepage|extended_tip|library"
-msgid "Lists the existing macro libraries for the current application and any open documents."
-msgstr "Zoznam existujúcich knižníc makier pre aktuálnu aplikáciu a otvorené dokumenty."
-
-#. hBRpM
-#: basctl/uiconfig/basicide/ui/modulepage.ui:126
-msgctxt "modulepage|extended_tip|edit"
-msgid "Opens the %PRODUCTNAME Basic editor so that you can modify the selected library."
-msgstr "Otvorí editor %PRODUCTNAME Basic, v ktorom je možné upraviť vybranú knižnicu."
-
#. KjBGM
-#: basctl/uiconfig/basicide/ui/modulepage.ui:138
+#: basctl/uiconfig/basicide/ui/modulepage.ui:129
msgctxt "modulepage|newmodule"
msgid "_New..."
msgstr "_Nový..."
-#. SGQMi
-#: basctl/uiconfig/basicide/ui/modulepage.ui:145
-msgctxt "modulepage|extended_tip|newmodule"
-msgid "Opens the editor and creates a new module."
-msgstr "Otvorí editor a vytvorí nový modul."
-
#. RakoP
-#: basctl/uiconfig/basicide/ui/modulepage.ui:158
+#: basctl/uiconfig/basicide/ui/modulepage.ui:144
msgctxt "modulepage|newdialog"
msgid "_New..."
msgstr "_Nový..."
-#. AvaAy
-#: basctl/uiconfig/basicide/ui/modulepage.ui:165
-msgctxt "modulepage|extended_tip|newdialog"
-msgid "Lets you manage the macro libraries."
-msgstr "Umožňuje správu knižníc makier."
-
-#. LeigB
-#: basctl/uiconfig/basicide/ui/modulepage.ui:186
-msgctxt "modulepage|extended_tip|delete"
-msgid "Creates a new macro, or deletes the selected macro."
-msgstr "Vytvorí nové makro alebo odstráni vybrané makro."
-
#. 5FC8g
-#: basctl/uiconfig/basicide/ui/modulepage.ui:199
+#: basctl/uiconfig/basicide/ui/modulepage.ui:175
msgctxt "modulepage|password"
msgid "_Password..."
msgstr "_Heslo..."
-#. apZrB
-#: basctl/uiconfig/basicide/ui/modulepage.ui:206
-msgctxt "modulepage|extended_tip|password"
-msgid "Assigns or edits the password for the selected library."
-msgstr "Priradí alebo upraví heslo vybranej knižnice."
-
#. EgCDE
-#: basctl/uiconfig/basicide/ui/modulepage.ui:218
+#: basctl/uiconfig/basicide/ui/modulepage.ui:189
msgctxt "modulepage|import"
msgid "_Import..."
msgstr "_Importovať..."
-#. qCXgD
-#: basctl/uiconfig/basicide/ui/modulepage.ui:225
-msgctxt "modulepage|extended_tip|import"
-msgid "Locate that %PRODUCTNAME Basic library that you want to add to the current list, and then click Open."
-msgstr "Vyberte knižnicu %PRODUCTNAME Basic, ktorú chcete pridať do aktuálneho zoznamu, a kliknite na Otvoriť."
-
#. GAYBh
-#: basctl/uiconfig/basicide/ui/modulepage.ui:237
+#: basctl/uiconfig/basicide/ui/modulepage.ui:203
msgctxt "modulepage|export"
msgid "_Export..."
msgstr "_Exportovať..."
-#. 9Z2WP
-#: basctl/uiconfig/basicide/ui/modulepage.ui:263
-msgctxt "modulepage|extended_tip|ModulePage"
-msgid "Lists the existing modules or dialogs."
-msgstr "Zoznam existujúcich modulov alebo dialógových okien."
-
-#. rCNTN
-#: basctl/uiconfig/basicide/ui/newlibdialog.ui:32
-msgctxt "newlibdialog|extended_tip|ok"
-msgid "Runs or saves the current macro."
-msgstr "Spustí alebo uloží aktuálne makro."
-
#. Skwd5
-#: basctl/uiconfig/basicide/ui/newlibdialog.ui:91
+#: basctl/uiconfig/basicide/ui/newlibdialog.ui:86
msgctxt "newlibdialog|area"
msgid "_Name:"
msgstr "_Meno:"
-#. FWXXE
-#: basctl/uiconfig/basicide/ui/newlibdialog.ui:131
-msgctxt "newlibdialog|extended_tip|NewLibDialog"
-msgid "Enter a name for the new library or module."
-msgstr "Zadajte názov novej knižnice alebo modulu."
-
#. uVgXz
#: basctl/uiconfig/basicide/ui/organizedialog.ui:8
msgctxt "organizedialog|OrganizeDialog"
@@ -1282,21 +988,3 @@ msgstr "Dialógové okná"
msgctxt "organizedialog|libraries"
msgid "Libraries"
msgstr "Knižnice"
-
-#. gsjtC
-#: basctl/uiconfig/basicide/ui/sortmenu.ui:12
-msgctxt "sortmenu|macrosort"
-msgid "_Sorting"
-msgstr "_Zoradenie"
-
-#. GCbAJ
-#: basctl/uiconfig/basicide/ui/sortmenu.ui:22
-msgctxt "sortmenu|alphabetically"
-msgid "_Alphabetically"
-msgstr "_Abecedne"
-
-#. PBmML
-#: basctl/uiconfig/basicide/ui/sortmenu.ui:32
-msgctxt "sortmenu|properorder"
-msgid "_Proper order"
-msgstr "Š_peciálne poradie"
diff --git a/source/sk/basic/messages.po b/source/sk/basic/messages.po
index cac3b300a1d..38e7a990fbc 100644
--- a/source/sk/basic/messages.po
+++ b/source/sk/basic/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-09-07 17:17+0200\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
"PO-Revision-Date: 2020-09-14 08:35+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: Slovak <https://weblate.documentfoundation.org/projects/libo_ui-master/basicmessages/sk/>\n"
@@ -13,817 +13,817 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1507246675.000000\n"
#. CacXi
-#: basic/inc/basic.hrc:26
+#: basic/inc/basic.hrc:27
msgctxt "RID_BASIC_START"
msgid "Syntax error."
msgstr "Chyba syntaxe."
#. phEtF
-#: basic/inc/basic.hrc:27
+#: basic/inc/basic.hrc:28
msgctxt "RID_BASIC_START"
msgid "Return without Gosub."
msgstr "Return bez Gosub."
#. xGnDD
-#: basic/inc/basic.hrc:28
+#: basic/inc/basic.hrc:29
msgctxt "RID_BASIC_START"
msgid "Incorrect entry; please retry."
msgstr "Nesprávna položka, prosím zopakujte zadanie."
#. SDAtt
-#: basic/inc/basic.hrc:29
+#: basic/inc/basic.hrc:30
msgctxt "RID_BASIC_START"
msgid "Invalid procedure call."
msgstr "Neplatné volanie procedúry."
#. ERmVC
-#: basic/inc/basic.hrc:30
+#: basic/inc/basic.hrc:31
msgctxt "RID_BASIC_START"
msgid "Overflow."
msgstr "Pretečenie."
#. 2Cqdp
-#: basic/inc/basic.hrc:31
+#: basic/inc/basic.hrc:32
msgctxt "RID_BASIC_START"
msgid "Not enough memory."
msgstr "Nedostatok pamäti."
#. vQn2L
-#: basic/inc/basic.hrc:32
+#: basic/inc/basic.hrc:33
msgctxt "RID_BASIC_START"
msgid "Array already dimensioned."
msgstr "Pole už má rozmery."
#. iXC8S
-#: basic/inc/basic.hrc:33
+#: basic/inc/basic.hrc:34
msgctxt "RID_BASIC_START"
msgid "Index out of defined range."
msgstr "Index mimo definovaného rozsahu."
#. puyiQ
-#: basic/inc/basic.hrc:34
+#: basic/inc/basic.hrc:35
msgctxt "RID_BASIC_START"
msgid "Duplicate definition."
msgstr "Opakovaná definícia."
#. eqwCs
-#: basic/inc/basic.hrc:35
+#: basic/inc/basic.hrc:36
msgctxt "RID_BASIC_START"
msgid "Division by zero."
msgstr "Delenie nulou."
#. owjv6
-#: basic/inc/basic.hrc:36
+#: basic/inc/basic.hrc:37
msgctxt "RID_BASIC_START"
msgid "Variable not defined."
msgstr "Premenná nie je definovaná."
#. oEA47
-#: basic/inc/basic.hrc:37
+#: basic/inc/basic.hrc:38
msgctxt "RID_BASIC_START"
msgid "Data type mismatch."
msgstr "Typy dát nesúhlasia."
#. bFP4H
-#: basic/inc/basic.hrc:38
+#: basic/inc/basic.hrc:39
msgctxt "RID_BASIC_START"
msgid "Invalid parameter."
msgstr "Neplatný parameter."
#. qZCrY
-#: basic/inc/basic.hrc:39
+#: basic/inc/basic.hrc:40
msgctxt "RID_BASIC_START"
msgid "Process interrupted by user."
msgstr "Proces prerušený používateľom."
#. nnqTQ
-#: basic/inc/basic.hrc:40
+#: basic/inc/basic.hrc:41
msgctxt "RID_BASIC_START"
msgid "Resume without error."
msgstr "Pokračovať bez chýb."
#. QGuZq
-#: basic/inc/basic.hrc:41
+#: basic/inc/basic.hrc:42
msgctxt "RID_BASIC_START"
msgid "Not enough stack memory."
msgstr "Nedostatok pamäti v zásobníku."
#. X8Anp
-#: basic/inc/basic.hrc:42
+#: basic/inc/basic.hrc:43
msgctxt "RID_BASIC_START"
msgid "Sub-procedure or function procedure not defined."
msgstr "Podprocedúra alebo funkčná procedúra nie je definovaná."
#. oF6VV
-#: basic/inc/basic.hrc:43
+#: basic/inc/basic.hrc:44
msgctxt "RID_BASIC_START"
msgid "Error loading DLL file."
msgstr "Chyba pri načítaní­ súboru DLL."
#. 9MUQ8
-#: basic/inc/basic.hrc:44
+#: basic/inc/basic.hrc:45
msgctxt "RID_BASIC_START"
msgid "Wrong DLL call convention."
msgstr "Chyba konvencie volania DLL."
#. AoHjH
-#: basic/inc/basic.hrc:45
+#: basic/inc/basic.hrc:46
msgctxt "RID_BASIC_START"
msgid "Internal error $(ARG1)."
msgstr "Interná chyba $(ARG1)."
#. wgNZg
-#: basic/inc/basic.hrc:46
+#: basic/inc/basic.hrc:47
msgctxt "RID_BASIC_START"
msgid "Invalid file name or file number."
msgstr "Neplatný názov alebo číslo súboru."
#. cdGJ5
-#: basic/inc/basic.hrc:47
+#: basic/inc/basic.hrc:48
msgctxt "RID_BASIC_START"
msgid "File not found."
msgstr "Súbor nenájdený."
#. RQB3i
-#: basic/inc/basic.hrc:48
+#: basic/inc/basic.hrc:49
msgctxt "RID_BASIC_START"
msgid "Incorrect file mode."
msgstr "Nesprávny režim súboru."
#. 2UUYj
-#: basic/inc/basic.hrc:49
+#: basic/inc/basic.hrc:50
msgctxt "RID_BASIC_START"
msgid "File already open."
msgstr "Súbor je už otvorený."
#. BRx4X
-#: basic/inc/basic.hrc:50
+#: basic/inc/basic.hrc:51
msgctxt "RID_BASIC_START"
msgid "Device I/O error."
msgstr "Chyba zariadenia I/O."
#. 3wGUY
-#: basic/inc/basic.hrc:51
+#: basic/inc/basic.hrc:52
msgctxt "RID_BASIC_START"
msgid "File already exists."
msgstr "Súbor už existuje."
#. rAFCG
-#: basic/inc/basic.hrc:52
+#: basic/inc/basic.hrc:53
msgctxt "RID_BASIC_START"
msgid "Incorrect record length."
msgstr "Nesprávna dĺžka záznamu."
#. EnLKw
-#: basic/inc/basic.hrc:53
+#: basic/inc/basic.hrc:54
msgctxt "RID_BASIC_START"
msgid "Disk or hard drive full."
msgstr "Disk je plný."
#. BFTP8
-#: basic/inc/basic.hrc:54
+#: basic/inc/basic.hrc:55
msgctxt "RID_BASIC_START"
msgid "Reading exceeds EOF."
msgstr "Načítavanie prekročilo koniec súboru (EOF)."
#. nuyE7
-#: basic/inc/basic.hrc:55
+#: basic/inc/basic.hrc:56
msgctxt "RID_BASIC_START"
msgid "Incorrect record number."
msgstr "Nesprávne číslo záznamu."
#. sgdJF
-#: basic/inc/basic.hrc:56
+#: basic/inc/basic.hrc:57
msgctxt "RID_BASIC_START"
msgid "Too many files."
msgstr "Príliš veľa súborov."
#. 3iiGy
-#: basic/inc/basic.hrc:57
+#: basic/inc/basic.hrc:58
msgctxt "RID_BASIC_START"
msgid "Device not available."
msgstr "Zariadenie nedostupné."
#. k7uzP
-#: basic/inc/basic.hrc:58
+#: basic/inc/basic.hrc:59
msgctxt "RID_BASIC_START"
msgid "Access denied."
msgstr "Prístup odmietnutý."
#. WcKob
-#: basic/inc/basic.hrc:59
+#: basic/inc/basic.hrc:60
msgctxt "RID_BASIC_START"
msgid "Disk not ready."
msgstr "Disk nie je pripravený."
#. JgiDa
-#: basic/inc/basic.hrc:60
+#: basic/inc/basic.hrc:61
msgctxt "RID_BASIC_START"
msgid "Not implemented."
msgstr "Neimplementované."
#. mAxmt
-#: basic/inc/basic.hrc:61
+#: basic/inc/basic.hrc:62
msgctxt "RID_BASIC_START"
msgid "Renaming on different drives impossible."
msgstr "Premenovanie na rôznych diskoch nie je možné."
#. 8gEYf
-#: basic/inc/basic.hrc:62
+#: basic/inc/basic.hrc:63
msgctxt "RID_BASIC_START"
msgid "Path/File access error."
msgstr "Chyba pri prístupe k súboru."
#. JefUT
-#: basic/inc/basic.hrc:63
+#: basic/inc/basic.hrc:64
msgctxt "RID_BASIC_START"
msgid "Path not found."
msgstr "Cesta nenájdená."
#. QXDRW
-#: basic/inc/basic.hrc:64
+#: basic/inc/basic.hrc:65
msgctxt "RID_BASIC_START"
msgid "Object variable not set."
msgstr "Premenná objektu nie je nastavená."
#. Y9yi3
-#: basic/inc/basic.hrc:65
+#: basic/inc/basic.hrc:66
msgctxt "RID_BASIC_START"
msgid "Invalid string pattern."
msgstr "Neplatný reťazec."
#. K7DhF
-#: basic/inc/basic.hrc:66
+#: basic/inc/basic.hrc:67
msgctxt "RID_BASIC_START"
msgid "Use of zero not permitted."
msgstr "Nedovolené použitie nuly."
#. cJT8h
-#: basic/inc/basic.hrc:67
+#: basic/inc/basic.hrc:68
msgctxt "RID_BASIC_START"
msgid "DDE Error."
msgstr "DDE chyba."
#. 6GqpS
-#: basic/inc/basic.hrc:68
+#: basic/inc/basic.hrc:69
msgctxt "RID_BASIC_START"
msgid "Awaiting response to DDE connection."
msgstr "Čaká sa odozva na pripojenie DDE."
#. eoE3n
-#: basic/inc/basic.hrc:69
+#: basic/inc/basic.hrc:70
msgctxt "RID_BASIC_START"
msgid "No DDE channels available."
msgstr "Nedostupné kanály DDE."
#. uX7nT
-#: basic/inc/basic.hrc:70
+#: basic/inc/basic.hrc:71
msgctxt "RID_BASIC_START"
msgid "No application responded to DDE connect initiation."
msgstr "Na inicializáciu DDE spojenia neodpovedala žiadna aplikácia."
#. TNaxB
-#: basic/inc/basic.hrc:71
+#: basic/inc/basic.hrc:72
msgctxt "RID_BASIC_START"
msgid "Too many applications responded to DDE connect initiation."
msgstr "Na inicializáciu DDE spojenia odpovedalo príliš veľa aplikácií."
#. VroGT
-#: basic/inc/basic.hrc:72
+#: basic/inc/basic.hrc:73
msgctxt "RID_BASIC_START"
msgid "DDE channel locked."
msgstr "DDE kanál zamknutý."
#. Vg79x
-#: basic/inc/basic.hrc:73
+#: basic/inc/basic.hrc:74
msgctxt "RID_BASIC_START"
msgid "External application cannot execute DDE operation."
msgstr "Externá aplikácia nemôže vykonať DDE operáciu."
#. DnKBx
-#: basic/inc/basic.hrc:74
+#: basic/inc/basic.hrc:75
msgctxt "RID_BASIC_START"
msgid "Timeout while waiting for DDE response."
msgstr "Timeout počas čakania na DDE odpoveď."
#. 4q3yy
-#: basic/inc/basic.hrc:75
+#: basic/inc/basic.hrc:76
msgctxt "RID_BASIC_START"
msgid "User pressed ESCAPE during DDE operation."
msgstr "Používateľ stlačil ESCAPE počas DDE operácie."
#. 7WymF
-#: basic/inc/basic.hrc:76
+#: basic/inc/basic.hrc:77
msgctxt "RID_BASIC_START"
msgid "External application busy."
msgstr "Externá aplikácia je zaneprázdnená.­."
#. GGDRf
-#: basic/inc/basic.hrc:77
+#: basic/inc/basic.hrc:78
msgctxt "RID_BASIC_START"
msgid "DDE operation without data."
msgstr "DDE operácia bez dát."
#. p7sHC
-#: basic/inc/basic.hrc:78
+#: basic/inc/basic.hrc:79
msgctxt "RID_BASIC_START"
msgid "Data are in wrong format."
msgstr "Dáta sú v nesprávnom formáte."
#. JDnmB
-#: basic/inc/basic.hrc:79
+#: basic/inc/basic.hrc:80
msgctxt "RID_BASIC_START"
msgid "External application has been terminated."
msgstr "Externá aplikácia bola ukončená."
#. VT4R2
-#: basic/inc/basic.hrc:80
+#: basic/inc/basic.hrc:81
msgctxt "RID_BASIC_START"
msgid "DDE connection interrupted or modified."
msgstr "Spojenie DDE prerušené alebo zmenené."
#. DgSMR
-#: basic/inc/basic.hrc:81
+#: basic/inc/basic.hrc:82
msgctxt "RID_BASIC_START"
msgid "DDE method invoked with no channel open."
msgstr "Bola vyvolaná DDE metóda bez otvoreného kanálu."
#. RHck4
-#: basic/inc/basic.hrc:82
+#: basic/inc/basic.hrc:83
msgctxt "RID_BASIC_START"
msgid "Invalid DDE link format."
msgstr "Neplatný formát odkazu DDE."
#. DUsPA
-#: basic/inc/basic.hrc:83
+#: basic/inc/basic.hrc:84
msgctxt "RID_BASIC_START"
msgid "DDE message has been lost."
msgstr "DDE správa sa stratila."
#. FhoZY
-#: basic/inc/basic.hrc:84
+#: basic/inc/basic.hrc:85
msgctxt "RID_BASIC_START"
msgid "Paste link already performed."
msgstr "Vloženie odkazu už vykonané."
#. SQyEF
-#: basic/inc/basic.hrc:85
+#: basic/inc/basic.hrc:86
msgctxt "RID_BASIC_START"
msgid "Link mode cannot be set due to invalid link topic."
msgstr "Odkazový mód nemôže byť nastavený kvôli neplatnej téme odkazu."
#. J2Rf3
-#: basic/inc/basic.hrc:86
+#: basic/inc/basic.hrc:87
msgctxt "RID_BASIC_START"
msgid "DDE requires the DDEML.DLL file."
msgstr "DDE vyžaduje súbor DDEML.DLL."
#. yfBfX
-#: basic/inc/basic.hrc:87
+#: basic/inc/basic.hrc:88
msgctxt "RID_BASIC_START"
msgid "Module cannot be loaded; invalid format."
msgstr "Modul nemôže byť čítaný; nesprávny formát."
#. eCEEV
-#: basic/inc/basic.hrc:88
+#: basic/inc/basic.hrc:89
msgctxt "RID_BASIC_START"
msgid "Invalid object index."
msgstr "Neplatný index objektu."
#. GLCzx
-#: basic/inc/basic.hrc:89
+#: basic/inc/basic.hrc:90
msgctxt "RID_BASIC_START"
msgid "Object is not available."
msgstr "Objekt je nedostupný."
#. nfXrp
-#: basic/inc/basic.hrc:90
+#: basic/inc/basic.hrc:91
msgctxt "RID_BASIC_START"
msgid "Incorrect property value."
msgstr "Neznáma hodnota vlastnosti."
#. 8qjhR
-#: basic/inc/basic.hrc:91
+#: basic/inc/basic.hrc:92
msgctxt "RID_BASIC_START"
msgid "This property is read-only."
msgstr "Táto vlastnosť je iba na čítanie."
#. ScKEy
-#: basic/inc/basic.hrc:92
+#: basic/inc/basic.hrc:93
msgctxt "RID_BASIC_START"
msgid "This property is write only."
msgstr "Táto vlastnosť je iba na zápis."
#. kTCMC
-#: basic/inc/basic.hrc:93
+#: basic/inc/basic.hrc:94
msgctxt "RID_BASIC_START"
msgid "Invalid object reference."
msgstr "Neplatný odkaz na objekt."
#. fz98J
-#: basic/inc/basic.hrc:94
+#: basic/inc/basic.hrc:95
msgctxt "RID_BASIC_START"
msgid "Property or method not found: $(ARG1)."
msgstr "Vlastnosť alebo metóda nenájdená: $(ARG1)."
#. rWwbT
-#: basic/inc/basic.hrc:95
+#: basic/inc/basic.hrc:96
msgctxt "RID_BASIC_START"
msgid "Object required."
msgstr "Požadovaný objekt."
#. b3XBE
-#: basic/inc/basic.hrc:96
+#: basic/inc/basic.hrc:97
msgctxt "RID_BASIC_START"
msgid "Invalid use of an object."
msgstr "Neplatné použitie objektu."
#. pM7Vq
-#: basic/inc/basic.hrc:97
+#: basic/inc/basic.hrc:98
msgctxt "RID_BASIC_START"
msgid "OLE Automation is not supported by this object."
msgstr "OLE Automation nie je týmto objektom podporovaná."
#. HMAey
-#: basic/inc/basic.hrc:98
+#: basic/inc/basic.hrc:99
msgctxt "RID_BASIC_START"
msgid "This property or method is not supported by the object."
msgstr "Táto vlastnosť alebo metóda nie je objektom podporovaná."
#. DMts6
-#: basic/inc/basic.hrc:99
+#: basic/inc/basic.hrc:100
msgctxt "RID_BASIC_START"
msgid "OLE Automation Error."
msgstr "Chyba OLE Automation."
#. 3VsB3
-#: basic/inc/basic.hrc:100
+#: basic/inc/basic.hrc:101
msgctxt "RID_BASIC_START"
msgid "This action is not supported by given object."
msgstr "Táto činnosť nie je zvoleným objektom podporovaná."
#. vgvzF
-#: basic/inc/basic.hrc:101
+#: basic/inc/basic.hrc:102
msgctxt "RID_BASIC_START"
msgid "Named arguments are not supported by given object."
msgstr "Uvedené argumenty nie sú podporované zvoleným objektom."
#. 4aZxy
-#: basic/inc/basic.hrc:102
+#: basic/inc/basic.hrc:103
msgctxt "RID_BASIC_START"
msgid "The current locale setting is not supported by the given object."
msgstr "Súčasné národné nastavenie nie je zvoleným objektom podporované."
#. AoqGh
-#: basic/inc/basic.hrc:103
+#: basic/inc/basic.hrc:104
msgctxt "RID_BASIC_START"
msgid "Named argument not found."
msgstr "Pomenovaný argument nebol nájdený."
#. G2sC5
-#: basic/inc/basic.hrc:104
+#: basic/inc/basic.hrc:105
msgctxt "RID_BASIC_START"
msgid "Argument is not optional."
msgstr "Argument nie je voliteľný."
#. v78nF
-#: basic/inc/basic.hrc:105 basic/inc/basic.hrc:113
+#: basic/inc/basic.hrc:106 basic/inc/basic.hrc:114
msgctxt "RID_BASIC_START"
msgid "Invalid number of arguments."
msgstr "Neplatný počet argumentov."
#. DVFF3
-#: basic/inc/basic.hrc:106
+#: basic/inc/basic.hrc:107
msgctxt "RID_BASIC_START"
msgid "Object is not a list."
msgstr "Objekt nie je zoznamom."
#. zDijP
-#: basic/inc/basic.hrc:107
+#: basic/inc/basic.hrc:108
msgctxt "RID_BASIC_START"
msgid "Invalid ordinal number."
msgstr "Neplatné poradové číslo."
#. uY35B
-#: basic/inc/basic.hrc:108
+#: basic/inc/basic.hrc:109
msgctxt "RID_BASIC_START"
msgid "Specified DLL function not found."
msgstr "Daná funkcia DLL nenájdená."
#. MPTAv
-#: basic/inc/basic.hrc:109
+#: basic/inc/basic.hrc:110
msgctxt "RID_BASIC_START"
msgid "Invalid clipboard format."
msgstr "Neplatný formát schránky."
#. UC2FV
-#: basic/inc/basic.hrc:110
+#: basic/inc/basic.hrc:111
msgctxt "RID_BASIC_START"
msgid "Object does not have this property."
msgstr "Objekt nemá túto vlastnosť."
#. 9JEU2
-#: basic/inc/basic.hrc:111
+#: basic/inc/basic.hrc:112
msgctxt "RID_BASIC_START"
msgid "Object does not have this method."
msgstr "Objekt nemá túto metódu."
#. azsCo
-#: basic/inc/basic.hrc:112
+#: basic/inc/basic.hrc:113
msgctxt "RID_BASIC_START"
msgid "Required argument lacking."
msgstr "Chýba požadovaný argument."
#. 9WA8D
-#: basic/inc/basic.hrc:114
+#: basic/inc/basic.hrc:115
msgctxt "RID_BASIC_START"
msgid "Error executing a method."
msgstr "Chyba pri vykonaní­ metódy."
#. N3vcw
-#: basic/inc/basic.hrc:115
+#: basic/inc/basic.hrc:116
msgctxt "RID_BASIC_START"
msgid "Unable to set property."
msgstr "Nie je možné nastaviť vlastnosť."
#. k82XW
-#: basic/inc/basic.hrc:116
+#: basic/inc/basic.hrc:117
msgctxt "RID_BASIC_START"
msgid "Unable to determine property."
msgstr "Nie je možné určiť vlastnosť."
#. 5cGpa
#. Compiler errors. These are not runtime errors.
-#: basic/inc/basic.hrc:118
+#: basic/inc/basic.hrc:119
msgctxt "RID_BASIC_START"
msgid "Unexpected symbol: $(ARG1)."
msgstr "Neočakávaný symbol: $(ARG1)."
#. SBpod
-#: basic/inc/basic.hrc:119
+#: basic/inc/basic.hrc:120
msgctxt "RID_BASIC_START"
msgid "Expected: $(ARG1)."
msgstr "Očakáva sa: $(ARG1)."
#. JBaEp
-#: basic/inc/basic.hrc:120
+#: basic/inc/basic.hrc:121
msgctxt "RID_BASIC_START"
msgid "Symbol expected."
msgstr "Očakávaný symbol."
#. CkAE9
-#: basic/inc/basic.hrc:121
+#: basic/inc/basic.hrc:122
msgctxt "RID_BASIC_START"
msgid "Variable expected."
msgstr "Očakávaná premenná."
#. DS5cS
-#: basic/inc/basic.hrc:122
+#: basic/inc/basic.hrc:123
msgctxt "RID_BASIC_START"
msgid "Label expected."
msgstr "Očakávané návestie."
#. k2myJ
-#: basic/inc/basic.hrc:123
+#: basic/inc/basic.hrc:124
msgctxt "RID_BASIC_START"
msgid "Value cannot be applied."
msgstr "Hodnotu nie je možné použiť."
#. oPCtL
-#: basic/inc/basic.hrc:124
+#: basic/inc/basic.hrc:125
msgctxt "RID_BASIC_START"
msgid "Variable $(ARG1) already defined."
msgstr "Premenná $(ARG1) je už definovaná."
#. WmiB6
-#: basic/inc/basic.hrc:125
+#: basic/inc/basic.hrc:126
msgctxt "RID_BASIC_START"
msgid "Sub procedure or function procedure $(ARG1) already defined."
msgstr "Subprocedúra alebo funkčná procedúra $(ARG1) je už definovaná."
#. byksZ
-#: basic/inc/basic.hrc:126
+#: basic/inc/basic.hrc:127
msgctxt "RID_BASIC_START"
msgid "Label $(ARG1) already defined."
msgstr "Návestie $(ARG1) je už definované."
#. GHdG4
-#: basic/inc/basic.hrc:127
+#: basic/inc/basic.hrc:128
msgctxt "RID_BASIC_START"
msgid "Variable $(ARG1) not found."
msgstr "Premenná $(ARG1) nenájdená."
#. DksBU
-#: basic/inc/basic.hrc:128
+#: basic/inc/basic.hrc:129
msgctxt "RID_BASIC_START"
msgid "Array or procedure $(ARG1) not found."
msgstr "Pole alebo procedúra $(ARG1) nenájdená."
#. 7CD6B
-#: basic/inc/basic.hrc:129
+#: basic/inc/basic.hrc:130
msgctxt "RID_BASIC_START"
msgid "Procedure $(ARG1) not found."
msgstr "Procedúra $(ARG1) nenájdená."
#. GREm3
-#: basic/inc/basic.hrc:130
+#: basic/inc/basic.hrc:131
msgctxt "RID_BASIC_START"
msgid "Label $(ARG1) undefined."
msgstr "Návestie $(ARG1) nedefinované."
#. 2VFZq
-#: basic/inc/basic.hrc:131
+#: basic/inc/basic.hrc:132
msgctxt "RID_BASIC_START"
msgid "Unknown data type $(ARG1)."
msgstr "Neznámy dátový typ $(ARG1)."
#. hvsH3
-#: basic/inc/basic.hrc:132
+#: basic/inc/basic.hrc:133
msgctxt "RID_BASIC_START"
msgid "Exit $(ARG1) expected."
msgstr "Očakávané ukončenie $(ARG1)."
#. 7kZX5
-#: basic/inc/basic.hrc:133
+#: basic/inc/basic.hrc:134
msgctxt "RID_BASIC_START"
msgid "Statement block still open: $(ARG1) missing."
msgstr "Blok príkazov je stále otvorený: chýba $(ARG1)."
#. EysAe
-#: basic/inc/basic.hrc:134
+#: basic/inc/basic.hrc:135
msgctxt "RID_BASIC_START"
msgid "Parentheses do not match."
msgstr "Zátvorky nesúhlasia."
#. tGqRY
-#: basic/inc/basic.hrc:135
+#: basic/inc/basic.hrc:136
msgctxt "RID_BASIC_START"
msgid "Symbol $(ARG1) already defined differently."
msgstr "Symbol $(ARG1) už bol definovaný ináč."
#. Nvysh
-#: basic/inc/basic.hrc:136
+#: basic/inc/basic.hrc:137
msgctxt "RID_BASIC_START"
msgid "Parameters do not correspond to procedure."
msgstr "Parametre nesúhlasia s procedúrou."
#. aLCNz
-#: basic/inc/basic.hrc:137
+#: basic/inc/basic.hrc:138
msgctxt "RID_BASIC_START"
msgid "Invalid character in number."
msgstr "Neplatný znak v čísle."
#. ZL3GF
-#: basic/inc/basic.hrc:138
+#: basic/inc/basic.hrc:139
msgctxt "RID_BASIC_START"
msgid "Array must be dimensioned."
msgstr "Pole musí mať rozmer."
#. bvzvK
-#: basic/inc/basic.hrc:139
+#: basic/inc/basic.hrc:140
msgctxt "RID_BASIC_START"
msgid "Else/Endif without If."
msgstr "Else/Endif bez If."
#. BPHwC
-#: basic/inc/basic.hrc:140
+#: basic/inc/basic.hrc:141
msgctxt "RID_BASIC_START"
msgid "$(ARG1) not allowed within a procedure."
msgstr "$(ARG1) nie je povolený v tejto procedúre."
#. t4CFy
-#: basic/inc/basic.hrc:141
+#: basic/inc/basic.hrc:142
msgctxt "RID_BASIC_START"
msgid "$(ARG1) not allowed outside a procedure."
msgstr "$(ARG1) nie je dovolený mimo procedúry."
#. BAmBZ
-#: basic/inc/basic.hrc:142
+#: basic/inc/basic.hrc:143
msgctxt "RID_BASIC_START"
msgid "Dimension specifications do not match."
msgstr "Nesúhlasí zadanie rozmerov poľa."
#. kKjmy
-#: basic/inc/basic.hrc:143
+#: basic/inc/basic.hrc:144
msgctxt "RID_BASIC_START"
msgid "Unknown option: $(ARG1)."
msgstr "Neznáma voľba: $(ARG1)."
#. LCo58
-#: basic/inc/basic.hrc:144
+#: basic/inc/basic.hrc:145
msgctxt "RID_BASIC_START"
msgid "Constant $(ARG1) redefined."
msgstr "Konštanta $(ARG1) predefinovaná."
#. Dx6YA
-#: basic/inc/basic.hrc:145
+#: basic/inc/basic.hrc:146
msgctxt "RID_BASIC_START"
msgid "Program too large."
msgstr "Program je príliš veľký."
#. aAKCD
-#: basic/inc/basic.hrc:146
+#: basic/inc/basic.hrc:147
msgctxt "RID_BASIC_START"
msgid "Strings or arrays not permitted."
msgstr "Reťazce alebo polia nie sú povolené."
#. gqBGJ
-#: basic/inc/basic.hrc:147
+#: basic/inc/basic.hrc:148
msgctxt "RID_BASIC_START"
msgid "An exception occurred $(ARG1)."
msgstr "Vyskytla sa výnimka $(ARG1)."
#. YTygS
-#: basic/inc/basic.hrc:148
+#: basic/inc/basic.hrc:149
msgctxt "RID_BASIC_START"
msgid "This array is fixed or temporarily locked."
msgstr "Toto pole je pevné alebo dočasne zamknuté."
#. AwvaS
-#: basic/inc/basic.hrc:149
+#: basic/inc/basic.hrc:150
msgctxt "RID_BASIC_START"
msgid "Out of string space."
msgstr "Nedostatok pamäte pre reťazce."
#. VosXA
-#: basic/inc/basic.hrc:150
+#: basic/inc/basic.hrc:151
msgctxt "RID_BASIC_START"
msgid "Expression Too Complex."
msgstr "Výraz je príliš zložitý."
#. fYWci
-#: basic/inc/basic.hrc:151
+#: basic/inc/basic.hrc:152
msgctxt "RID_BASIC_START"
msgid "Can't perform requested operation."
msgstr "Nemôžem vykonať požadovanú operáciu."
#. oGvjJ
-#: basic/inc/basic.hrc:152
+#: basic/inc/basic.hrc:153
msgctxt "RID_BASIC_START"
msgid "Too many DLL application clients."
msgstr "Príliš veľa klientov DLL aplikácie."
#. tC47t
-#: basic/inc/basic.hrc:153
+#: basic/inc/basic.hrc:154
msgctxt "RID_BASIC_START"
msgid "For loop not initialized."
msgstr "Neinicializované pre opakovanie."
#. DA4GN
-#: basic/inc/basic.hrc:154
+#: basic/inc/basic.hrc:155
msgctxt "RID_BASIC_START"
msgid "$(ARG1)"
msgstr "$(ARG1)"
#. Vtc9n
-#: basic/inc/strings.hrc:24
+#: basic/inc/strings.hrc:25
msgctxt "STR_BASICKEY_FORMAT_ON"
msgid "On"
msgstr "Zapnúť"
#. yUCEp
-#: basic/inc/strings.hrc:25
+#: basic/inc/strings.hrc:26
msgctxt "STR_BASICKEY_FORMAT_OFF"
msgid "Off"
msgstr "Vypnúť"
#. iGZeR
-#: basic/inc/strings.hrc:26
+#: basic/inc/strings.hrc:27
msgctxt "STR_BASICKEY_FORMAT_TRUE"
msgid "True"
msgstr "Pravda"
#. Vcbum
-#: basic/inc/strings.hrc:27
+#: basic/inc/strings.hrc:28
msgctxt "STR_BASICKEY_FORMAT_FALSE"
msgid "False"
msgstr "Nepravda"
#. wGj5U
-#: basic/inc/strings.hrc:28
+#: basic/inc/strings.hrc:29
msgctxt "STR_BASICKEY_FORMAT_YES"
msgid "Yes"
msgstr "Áno"
#. TYgJR
-#: basic/inc/strings.hrc:29
+#: basic/inc/strings.hrc:30
msgctxt "STR_BASICKEY_FORMAT_NO"
msgid "No"
msgstr "Nie"
#. YXUyZ
#. format currency
-#: basic/inc/strings.hrc:31
+#: basic/inc/strings.hrc:32
msgctxt "STR_BASICKEY_FORMAT_CURRENCY"
msgid "@0.00 $;@(0.00 $)"
msgstr "@0.00 $;@(0.00 $)"
#. AP2X4
-#: basic/inc/strings.hrc:33
+#: basic/inc/strings.hrc:34
msgctxt "IDS_SBERR_TERMINATED"
msgid "The macro running has been interrupted"
msgstr "Bežiace makro bolo prerušené"
diff --git a/source/sk/chart2/messages.po b/source/sk/chart2/messages.po
index 08a75b08edf..2e552f15e7a 100644
--- a/source/sk/chart2/messages.po
+++ b/source/sk/chart2/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-12 15:01+0200\n"
-"PO-Revision-Date: 2020-10-02 06:35+0000\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
+"PO-Revision-Date: 2020-10-17 12:29+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: Slovak <https://weblate.documentfoundation.org/projects/libo_ui-master/chart2messages/sk/>\n"
"Language: sk\n"
@@ -17,25 +17,25 @@ msgstr ""
"X-POOTLE-MTIME: 1547556845.000000\n"
#. NCRDD
-#: chart2/inc/chart.hrc:16
+#: chart2/inc/chart.hrc:17
msgctxt "tp_ChartType|liststore1"
msgid "Bar"
msgstr "Panel"
#. YpLZF
-#: chart2/inc/chart.hrc:17
+#: chart2/inc/chart.hrc:18
msgctxt "tp_ChartType|liststore1"
msgid "Cylinder"
msgstr "Valec"
#. VLXhh
-#: chart2/inc/chart.hrc:18
+#: chart2/inc/chart.hrc:19
msgctxt "tp_ChartType|liststore1"
msgid "Cone"
msgstr "Kužeľ"
#. xsWC2
-#: chart2/inc/chart.hrc:19
+#: chart2/inc/chart.hrc:20
msgctxt "tp_ChartType|liststore1"
msgid "Pyramid"
msgstr "Ihlan"
@@ -308,7 +308,7 @@ msgstr "Legenda"
#: chart2/inc/strings.hrc:68
msgctxt "STR_OBJECT_TITLE"
msgid "Title"
-msgstr "Nadpis"
+msgstr "Názov"
#. daY6i
#: chart2/inc/strings.hrc:69
@@ -320,13 +320,13 @@ msgstr "Názvy"
#: chart2/inc/strings.hrc:70
msgctxt "STR_OBJECT_TITLE_MAIN"
msgid "Main Title"
-msgstr "Hlavný nadpis"
+msgstr "Hlavný názov"
#. 3HPz3
#: chart2/inc/strings.hrc:71
msgctxt "STR_OBJECT_TITLE_SUB"
msgid "Subtitle"
-msgstr "Podnadpis"
+msgstr "Podnázov"
#. eZE2v
#: chart2/inc/strings.hrc:72
@@ -1083,119 +1083,59 @@ msgid "Data Table"
msgstr "Tabuľka s dátami"
#. ywdAz
-#: chart2/uiconfig/ui/chartdatadialog.ui:72
+#: chart2/uiconfig/ui/chartdatadialog.ui:75
msgctxt "chartdatadialog|InsertRow"
msgid "Insert Row"
msgstr "Vložiť riadok"
-#. 8ijLs
-#: chart2/uiconfig/ui/chartdatadialog.ui:77
-msgctxt "chartdatadialog|extended_tip|InsertRow"
-msgid "Inserts a new row below the current row."
-msgstr "Vloží nový riadok pod aktuálny riadok."
-
#. DDsFz
-#: chart2/uiconfig/ui/chartdatadialog.ui:90
+#: chart2/uiconfig/ui/chartdatadialog.ui:88
msgctxt "chartdatadialog|InsertColumn"
msgid "Insert Series"
msgstr "Vložiť rad"
-#. EjHBF
-#: chart2/uiconfig/ui/chartdatadialog.ui:95
-msgctxt "chartdatadialog|extended_tip|InsertColumn"
-msgid "Inserts a new data series after the current column."
-msgstr "Vloží novú postupnosť za aktuálny stĺpec."
-
#. KuFy7
-#: chart2/uiconfig/ui/chartdatadialog.ui:108
+#: chart2/uiconfig/ui/chartdatadialog.ui:101
msgctxt "chartdatadialog|InsertTextColumn"
msgid "Insert Text Column"
msgstr "Vložiť textový stĺpec"
-#. tVACy
-#: chart2/uiconfig/ui/chartdatadialog.ui:113
-msgctxt "chartdatadialog|extended_tip|InsertTextColumn"
-msgid "Inserts a new text column after the current column for hierarchical axes descriptions."
-msgstr "Vloží nový textový stĺpec za aktuálny stĺpec pre hierarchický popis osí."
-
#. 4JgTE
-#: chart2/uiconfig/ui/chartdatadialog.ui:126
+#: chart2/uiconfig/ui/chartdatadialog.ui:114
msgctxt "chartdatadialog|RemoveRow"
msgid "Delete Row"
msgstr "Odstrániť riadok"
-#. DVMcX
-#: chart2/uiconfig/ui/chartdatadialog.ui:131
-msgctxt "chartdatadialog|extended_tip|RemoveRow"
-msgid "Deletes the current row. It is not possible to delete the label row."
-msgstr "Odstráni aktuálny riadok. Riadok hlavičky nie je možné odstrániť."
-
#. JCBmW
-#: chart2/uiconfig/ui/chartdatadialog.ui:144
+#: chart2/uiconfig/ui/chartdatadialog.ui:127
msgctxt "chartdatadialog|RemoveColumn"
msgid "Delete Series"
msgstr "Odstrániť rady"
-#. mSCiJ
-#: chart2/uiconfig/ui/chartdatadialog.ui:149
-msgctxt "chartdatadialog|extended_tip|RemoveColumn"
-msgid "Deletes the current series or text column. It is not possible to delete the first text column."
-msgstr "Odstráni aktuálnu postupnosť alebo textový stĺpec. Prvý textový stĺpec nie je možné odstrániť."
-
#. MUkk3
-#: chart2/uiconfig/ui/chartdatadialog.ui:172
+#: chart2/uiconfig/ui/chartdatadialog.ui:150
msgctxt "chartdatadialog|MoveLeftColumn"
msgid "Move Series Left"
msgstr "Posunúť rad vľavo"
-#. V7UUB
-#: chart2/uiconfig/ui/chartdatadialog.ui:177
-msgctxt "chartdatadialog|extended_tip|MoveLeftColumn"
-msgid "Switches the current column with its neighbor at the left."
-msgstr "Zamení aktuálny stĺpec so stĺpcom vľavo."
-
#. DfxQy
-#: chart2/uiconfig/ui/chartdatadialog.ui:190
+#: chart2/uiconfig/ui/chartdatadialog.ui:163
msgctxt "chartdatadialog|MoveRightColumn"
msgid "Move Series Right"
msgstr "Posunúť rad vpravo"
-#. JxZC8
-#: chart2/uiconfig/ui/chartdatadialog.ui:195
-msgctxt "chartdatadialog|extended_tip|MoveRightColumn"
-msgid "Switches the current column with its neighbor at the right."
-msgstr "Zamení aktuálny stĺpec so stĺpcom vpravo."
-
#. EkxKw
-#: chart2/uiconfig/ui/chartdatadialog.ui:208
+#: chart2/uiconfig/ui/chartdatadialog.ui:176
msgctxt "chartdatadialog|MoveUpRow"
msgid "Move Row Up"
msgstr "Presunúť riadok nahor"
-#. DnZTt
-#: chart2/uiconfig/ui/chartdatadialog.ui:213
-msgctxt "chartdatadialog|extended_tip|MoveUpRow"
-msgid "Switches the current row with its neighbor above."
-msgstr "Zamení aktuálny riadok s riadkom nad ním."
-
#. TvbuK
-#: chart2/uiconfig/ui/chartdatadialog.ui:226
+#: chart2/uiconfig/ui/chartdatadialog.ui:189
msgctxt "chartdatadialog|MoveDownRow"
msgid "Move Row Down"
msgstr "Presunúť riadok nadol"
-#. u8jmj
-#: chart2/uiconfig/ui/chartdatadialog.ui:231
-msgctxt "chartdatadialog|extended_tip|MoveDownRow"
-msgid "Switches the current row with its neighbor below."
-msgstr "Zamení aktuálny riadok s riadkom pod ním."
-
-#. rRJDK
-#: chart2/uiconfig/ui/chartdatadialog.ui:365
-msgctxt "chartdatadialog|extended_tip|ChartDataDialog"
-msgid "Opens the Data Table dialog where you can edit the chart data."
-msgstr "Otvorí dialógové okno Tabuľka dát, v ktorom môžete upraviť dáta grafu."
-
#. KbkRw
#: chart2/uiconfig/ui/charttypedialog.ui:8
msgctxt "charttypedialog|ChartTypeDialog"
@@ -1227,299 +1167,203 @@ msgid "Data Labels for all Data Series"
msgstr "Popisy pre všetky dátové rady"
#. ouq6P
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:105
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:108
msgctxt "dlg_DataLabel|CB_VALUE_AS_NUMBER"
msgid "Show value as _number"
msgstr "Zobraziť hod_noty ako čísla"
-#. sDLeD
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:114
-msgctxt "dlg_DataLabel|extended_tip|CB_VALUE_AS_NUMBER"
-msgid "Displays the absolute values of the data points."
-msgstr "Zobrazí absolútne hodnoty dátových bodov."
-
#. C2XXx
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:125
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:123
msgctxt "dlg_DataLabel|CB_VALUE_AS_PERCENTAGE"
msgid "Show value as _percentage"
msgstr "Zobraziť hodnoty ako _percentá"
-#. 5Hp8E
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:134
-msgctxt "dlg_DataLabel|extended_tip|CB_VALUE_AS_PERCENTAGE"
-msgid "Displays the percentage of the data points in each column."
-msgstr "Zobrazí percentuálne hodnoty dátových bodov v každom stĺpci."
-
#. MYzUe
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:145
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:138
msgctxt "dlg_DataLabel|CB_CATEGORY"
msgid "Show _category"
msgstr "Zobraziť k_ategóriu"
-#. oJGQF
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:154
-msgctxt "dlg_DataLabel|extended_tip|CB_CATEGORY"
-msgid "Shows the data point text labels."
-msgstr "Zobrazí popisy dátových bodov."
-
#. 8mMDV
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:165
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:153
msgctxt "dlg_DataLabel|CB_SYMBOL"
msgid "Show _legend key"
msgstr "Zobraziť kľúč _legendy"
-#. 7WADc
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:174
-msgctxt "dlg_DataLabel|extended_tip|CB_SYMBOL"
-msgid "Displays the legend icons next to each data point label."
-msgstr "Zobrazí vedľa každého popisu dátového bodu ikonu z legendy."
-
#. BA3kD
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:185
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:168
msgctxt "dlg_DataLabel|CB_WRAP_TEXT"
msgid "Auto text _wrap"
msgstr "_Automaticky zalomiť text"
#. bFd8g
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:200
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:183
msgctxt "dlg_DataLabel|PB_NUMBERFORMAT"
msgid "Number _format..."
msgstr "_Formát čísla..."
-#. yHa5z
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:208
-msgctxt "dlg_DataLabel|extended_tip|PB_NUMBERFORMAT"
-msgid "Opens a dialog to select the number format."
-msgstr "Otvorí dialóg pre výber formátu čísla."
-
#. cFD6D
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:219
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:197
msgctxt "dlg_DataLabel|PB_PERCENT_NUMBERFORMAT"
msgid "Percentage f_ormat..."
msgstr "Percentuálny f_ormát..."
-#. Wj42y
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:227
-msgctxt "dlg_DataLabel|extended_tip|PB_PERCENT_NUMBERFORMAT"
-msgid "Opens a dialog to select the percentage format."
-msgstr "Otvorí dialóg pre výber formátu percent."
-
#. ETbFx
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:240
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:213
msgctxt "dlg_DataLabel|CT_LABEL_DIAL"
msgid "ABCD"
msgstr "ABCD"
#. NvbuM
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:259
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:232
msgctxt "dlg_DataLabel|FT_TEXT_SEPARATOR"
msgid "_Separator"
msgstr "_Oddeľovač"
#. m8qsr
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:276
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:249
msgctxt "dlg_DataLabel|liststoreSEPARATOR"
msgid "Space"
msgstr "Medzerník"
#. d6M3S
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:277
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:250
msgctxt "dlg_DataLabel|liststoreSEPARATOR"
msgid "Comma"
msgstr "Čiarka"
#. HUBkD
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:278
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:251
msgctxt "dlg_DataLabel|liststoreSEPARATOR"
msgid "Semicolon"
msgstr "Bodkočiarka"
#. 3CaCX
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:279
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:252
msgctxt "dlg_DataLabel|liststoreSEPARATOR"
msgid "New line"
msgstr "Nový riadok"
#. CAtwB
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:280
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:253
msgctxt "dlg_DataLabel|liststoreSEPARATOR"
msgid "Period"
msgstr "Bodka"
-#. 8Z3DJ
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:284
-msgctxt "dlg_DataLabel|extended_tip|LB_TEXT_SEPARATOR"
-msgid "Selects the separator between multiple text strings for the same object."
-msgstr "Vyberie oddeľovač medzi viacnásobnými textovými reťazcami v rovnakom objekte."
-
#. FDBQW
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:310
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:278
msgctxt "dlg_DataLabel|FT_LABEL_PLACEMENT"
msgid "Place_ment"
msgstr "U_miestnenie"
#. RBvRC
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:327
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:295
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Best fit"
msgstr "Najlepšie umiestnenie"
#. CFGTS
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:328
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:296
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Center"
msgstr "Na stred"
#. kxNDG
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:329
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:297
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Above"
msgstr "Nad"
#. dnhiD
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:330
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:298
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Top left"
msgstr "Nahor doľava"
#. TGuEk
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:331
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:299
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Left"
msgstr "Vľavo"
#. eUxTR
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:332
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:300
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Bottom left"
msgstr "Doľava dole"
#. CGQj7
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:333
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:301
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Below"
msgstr "Pod"
#. UJ7uQ
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:334
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:302
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Bottom right"
msgstr "Vpravo dole"
#. nEFuG
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:335
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:303
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Right"
msgstr "Vpravo"
#. NQCGE
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:336
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:304
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Top right"
msgstr "Nahor doprava"
#. UagUt
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:337
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:305
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Inside"
msgstr "Vnútri"
#. y25DL
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:338
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:306
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Outside"
msgstr "Zvonka"
#. 3HjyB
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:339
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:307
msgctxt "dlg_DataLabel|liststorePLACEMENT"
msgid "Near origin"
msgstr "Blízko počiatku"
-#. TMEug
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:343
-msgctxt "dlg_DataLabel|extended_tip|LB_LABEL_PLACEMENT"
-msgid "Selects the placement of data labels relative to the objects."
-msgstr "Vyberie relatívne umiestnenie popisov dát v objekte."
-
#. 69qZL
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:363
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:326
msgctxt "dlg_DataLabel|STR_DLG_NUMBERFORMAT_FOR_PERCENTAGE_VALUE"
msgid "Number Format for Percentage Value"
msgstr "Formát čísel pre percentnú hodnotu"
#. mFeMA
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:381
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:344
msgctxt "dlg_DataLabel|label1"
msgid "Text Attributes"
msgstr "Atribúty textu"
-#. gE7CA
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:425
-msgctxt "dlg_DataLabel|extended_tip|CT_DIAL"
-msgid "Click in the dial to set the text orientation for the data labels."
-msgstr "Otočenie popisu dát nastavíte kliknutím na požadované miesto kruhovej stupnice."
-
-#. MjCoG
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:445
-msgctxt "dlg_DataLabel|extended_tip|NF_LABEL_DEGREES"
-msgid "Enter the counterclockwise rotation angle for the data labels."
-msgstr "Zadajte pre popisy dát uhol otočenia orientovaný proti smeru hodinových ručičiek."
-
#. Jhjwb
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:459
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:412
msgctxt "dlg_DataLabel|FT_LABEL_DEGREES"
msgid "_Degrees"
msgstr "_Stupňov"
#. vtVy2
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:484
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:437
msgctxt "dlg_DataLabel|FT_LABEL_TEXTDIR"
msgid "Te_xt direction"
msgstr "Smer _textu"
-#. tjcHp
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:501
-msgctxt "dlg_DataLabel|extended_tip|LB_LABEL_TEXTDIR"
-msgid "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled."
-msgstr "Určite smer textu pre odsek, ktorý používa komplexné rozloženie textu (CTL). Táto vlastnosť je dostupná, len ak je povolené komplexné rozloženie."
-
#. xpAEz
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:526
+#: chart2/uiconfig/ui/dlg_DataLabel.ui:474
msgctxt "dlg_DataLabel|label2"
msgid "Rotate Text"
msgstr "Otočiť text"
-#. NpD8D
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:559
-msgctxt "dlg_DataLabel|CB_CUSTOM_LEADER_LINES"
-msgid "_Connect displaced data labels to data points"
-msgstr "_Prepojiť premiestnené popisy údajov s dátovými bodmi"
-
-#. MJdmK
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:568
-msgctxt "dlg_DataLabel|extended_tip|CB_CUSTOM_LEADER_LINES"
-msgid "Draws a line connecting the data labels to the data points"
-msgstr ""
-
-#. UKVF9
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:586
-msgctxt "dlg_DataLabel|label3"
-msgid "Leader Lines"
-msgstr "Prepojovacie čiary"
-
-#. 6bBph
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:602
-msgctxt "dlg_DataLabel|extended_tip|tp_DataLabel"
-msgid "Opens the Data Labels dialog, which enables you to set the data labels."
-msgstr "Otvorí dialógové okno Popisy dát, ktorý umožňuje nastavenie popisu dát."
-
-#. bt7D7
-#: chart2/uiconfig/ui/dlg_DataLabel.ui:624
-msgctxt "dlg_DataLabel|extended_tip|dlg_DataLabels"
-msgid "Opens the Data Labels dialog, which enables you to set the data labels."
-msgstr "Otvorí dialógové okno Popisy dát, ktorý umožňuje nastavenie popisu dát."
-
#. 3GUtp
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:28
msgctxt "dlg_InsertErrorBars|dlg_InsertErrorBars"
@@ -1527,229 +1371,133 @@ msgid "Legend"
msgstr "Legenda"
#. 9Wf9T
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:128
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:131
msgctxt "dlg_InsertErrorBars|RB_NONE"
msgid "_None"
msgstr "_Nič"
-#. pvfsb
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:137
-msgctxt "dlg_InsertErrorBars|extended_tip|RB_NONE"
-msgid "Does not show any error bars."
-msgstr "Nezobrazí žiadne chybové úsečky."
-
#. sMZoy
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:149
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:147
msgctxt "dlg_InsertErrorBars|RB_CONST"
msgid "_Constant Value"
msgstr "Konštantná ho_dnota"
-#. oDzF5
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:159
-msgctxt "dlg_InsertErrorBars|extended_tip|RB_CONST"
-msgid "Displays constant values that you specify in the Parameters area."
-msgstr "Zobrazí konštantné hodnoty, ktoré určíte v oblasti Parametre."
-
#. UzxQQ
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:171
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:164
msgctxt "dlg_InsertErrorBars|RB_PERCENT"
msgid "_Percentage"
msgstr "_Percentuálne"
-#. bGDm2
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:181
-msgctxt "dlg_InsertErrorBars|extended_tip|RB_PERCENT"
-msgid "Displays a percentage. The display refers to the corresponding data point. Set the percentage in the Parameters area."
-msgstr "Zobrazí percentuálnu hodnotu. Toto zobrazenie odkazuje na zodpovedajúce dátové body. Percentuálnu hodnotu nastavte v oblasti Parametre."
-
-#. tSBH9
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:207
-msgctxt "dlg_InsertErrorBars|extended_tip|RB_FUNCTION"
-msgid "Select a function to calculate the error bars."
-msgstr "Vyberte funkciu pre výpočet chybových čiar."
-
#. fkUNn
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:222
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:205
msgctxt "dlg_InsertErrorBars|liststoreFUNCTION"
msgid "Standard Error"
msgstr "Štandardná chyba"
#. zpc6d
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:223
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:206
msgctxt "dlg_InsertErrorBars|liststoreFUNCTION"
msgid "Standard Deviation"
msgstr "Štandardná odchýlka"
#. wA6LE
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:224
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:207
msgctxt "dlg_InsertErrorBars|liststoreFUNCTION"
msgid "Variance"
msgstr "Rozptyl"
#. UASm3
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:225
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:208
msgctxt "dlg_InsertErrorBars|liststoreFUNCTION"
msgid "Error Margin"
msgstr "Chybový pás"
-#. vqTAT
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:229
-msgctxt "dlg_InsertErrorBars|extended_tip|LB_FUNCTION"
-msgid "Select a function to calculate the error bars."
-msgstr "Vyberte funkciu pre výpočet chybových čiar."
-
#. Z5yGF
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:248
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:226
msgctxt "dlg_InsertErrorBars|RB_RANGE"
msgid "Cell _Range"
msgstr "Obla_sť buniek"
-#. Vm5iS
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:258
-msgctxt "dlg_InsertErrorBars|extended_tip|RB_RANGE"
-msgid "Click Cell Range and then specify a cell range from which to take the positive and negative error bar values."
-msgstr "Kliknite na oblasť buniek a potom špecifikujte oblasť buniek, z ktorej chcete definovať kladné a záporné hodnoty chybovej čiary."
-
#. vdvVR
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:276
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:249
msgctxt "dlg_InsertErrorBars|label1"
msgid "Error Category"
msgstr "Chybová kategória"
#. oZaa3
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:309
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:282
msgctxt "dlg_InsertErrorBars|RB_BOTH"
msgid "Positive _and Negative"
msgstr "Kladné _a záporné"
-#. aAhky
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:318
-msgctxt "dlg_InsertErrorBars|extended_tip|RB_BOTH"
-msgid "Shows positive and negative error bars."
-msgstr "Ukáže kladné a záporné chybové čiary."
-
#. jJw8Y
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:329
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:297
msgctxt "dlg_InsertErrorBars|RB_POSITIVE"
msgid "Pos_itive"
msgstr "_Kladné"
-#. yXXuP
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:339
-msgctxt "dlg_InsertErrorBars|extended_tip|RB_POSITIVE"
-msgid "Shows only positive error bars."
-msgstr "Ukáže iba kladné chybové čiary."
-
#. 6YgbM
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:350
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:313
msgctxt "dlg_InsertErrorBars|RB_NEGATIVE"
msgid "Ne_gative"
msgstr "_Záporné"
-#. KsYHq
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:360
-msgctxt "dlg_InsertErrorBars|extended_tip|RB_NEGATIVE"
-msgid "Shows only negative error bars."
-msgstr "Ukáže iba záporné chybové čiary."
-
#. fkKQH
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:410
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:368
msgctxt "dlg_InsertErrorBars|label2"
msgid "Error Indicator"
msgstr "Indikátor chyby"
#. WWuZ8
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:458
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:416
msgctxt "dlg_InsertErrorBars|FT_POSITIVE"
msgid "P_ositive (+)"
msgstr "Kla_dné (+)"
-#. EHq4d
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:476
-msgctxt "dlg_InsertErrorBars|extended_tip|MF_POSITIVE"
-msgid "Enter the value to add to the displayed value as the positive error value."
-msgstr "Vložte hodnotu na pripočítanie k zobrazenej hodnote ako kladnú chybovú hodnotu."
-
-#. SUBEs
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:494
-msgctxt "dlg_InsertErrorBars|extended_tip|ED_RANGE_POSITIVE"
-msgid "Enter the address range from where to get the positive error values. Use the Shrink button to select the range from a sheet."
-msgstr "Vložte adresu oblasti, z ktorej sa má získať kladná chybová hodnota. Použite tlačidlo Zmenšiť pre výber oblasti v liste."
-
#. 5FfdH
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:509
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:457
msgctxt "dlg_InsertErrorBars|IB_RANGE_POSITIVE|tooltip_text"
msgid "Select data range"
msgstr "Vybrať dátovú oblasť"
-#. JYk3c
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:513
-msgctxt "dlg_InsertErrorBars|extended_tip|IB_RANGE_POSITIVE"
-msgid "Click a button to shrink the dialog, then use the mouse to select the cell range in the spreadsheet. Click the button again to restore the dialog to full size."
-msgstr "Kliknite na tlačidlo zmenšiť dialóg, potom použite myš pre výber oblasti buniek v zošite. Pre obnovenie dialógu do pôvodnej veľkosti kliknite znovu na tlačidlo."
-
#. K9wAk
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:539
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:482
msgctxt "dlg_InsertErrorBars|FT_NEGATIVE"
msgid "_Negative (-)"
msgstr "Zápor_né (-)"
-#. Hzr6X
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:557
-msgctxt "dlg_InsertErrorBars|extended_tip|MF_NEGATIVE"
-msgid "Enter the value to subtract from the displayed value as the negative error value."
-msgstr "Vložte hodnotu na odčítanie od zobrazenej hodnoty ako zápornú chybovú hodnotu."
-
-#. DTR5D
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:575
-msgctxt "dlg_InsertErrorBars|extended_tip|ED_RANGE_NEGATIVE"
-msgid "Enter the address range from where to get the negative error values. Use the Shrink button to select the range from a sheet."
-msgstr "Vložte adresu oblasti, z ktorej sa má získať záporná chybová hodnota. Použite tlačidlo Zmenšiť pre výber oblasti v hárku."
-
#. jsckc
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:590
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:523
msgctxt "dlg_InsertErrorBars|IB_RANGE_NEGATIVE|tooltip_text"
msgid "Select data range"
msgstr "Vybrať dátovú oblasť"
-#. mEwUr
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:594
-msgctxt "dlg_InsertErrorBars|extended_tip|IB_RANGE_NEGATIVE"
-msgid "Click a button to shrink the dialog, then use the mouse to select the cell range in the spreadsheet. Click the button again to restore the dialog to full size."
-msgstr "Kliknite na tlačidlo zmenšiť dialóg, potom použite myš pre výber oblasti buniek v zošite. Pre obnovenie dialógu do pôvodnej veľkosti kliknite znovu na tlačidlo."
-
#. GZS6d
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:613
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:541
msgctxt "dlg_InsertErrorBars|CB_SYN_POS_NEG"
msgid "Same value for both"
msgstr "Rovnaká hodnota pre obidva"
-#. wTppD
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:622
-msgctxt "dlg_InsertErrorBars|extended_tip|CB_SYN_POS_NEG"
-msgid "Enable to use the positive error values also as negative error values. You can only change the value of the \"Positive (+)\" box. That value gets copied to the \"Negative (-)\" box automatically."
-msgstr "Povolí použiť kladnú chybovú hodnotu ako zápornú chybovú hodnotu. Budete môcť meniť iba hodnoty v poli 'Kladné (+)'. Tieto hodnoty sa automaticky skopírujú do poľa 'Záporné (-)'."
-
#. ogVMg
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:640
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:563
msgctxt "dlg_InsertErrorBars|label3"
msgid "Parameters"
msgstr "Parametre"
#. MXxxE
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:657
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:580
msgctxt "dlg_InsertErrorBars|STR_DATA_SELECT_RANGE_FOR_POSITIVE_ERRORBARS"
msgid "Select Range for Positive Error Bars"
msgstr "Vyberte oblasť pre kladné chybové úsečky"
#. ixAQm
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:668
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:591
msgctxt "dlg_InsertErrorBars|STR_DATA_SELECT_RANGE_FOR_NEGATIVE_ERRORBARS"
msgid "Select Range for Negative Error Bars"
msgstr "Vyberte oblasť pre záporné chybové úsečky"
#. 68LFy
-#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:679
+#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:602
msgctxt "dlg_InsertErrorBars|STR_CONTROLTEXT_ERROR_BARS_FROM_DATA"
msgid "From Data Table"
msgstr "Z tabuľky dát"
@@ -1803,89 +1551,53 @@ msgid "Axes"
msgstr "Osi"
#. 4Drc8
-#: chart2/uiconfig/ui/insertaxisdlg.ui:106
+#: chart2/uiconfig/ui/insertaxisdlg.ui:110
msgctxt "insertaxisdlg|primaryX"
msgid "_X axis"
msgstr "Os _X"
-#. QyAAw
-#: chart2/uiconfig/ui/insertaxisdlg.ui:115
-msgctxt "insertaxisdlg|extended_tip|primaryX"
-msgid "Displays the X axis as a line with subdivisions."
-msgstr "Zobrazí os X s delením."
-
#. XeWVu
-#: chart2/uiconfig/ui/insertaxisdlg.ui:127
+#: chart2/uiconfig/ui/insertaxisdlg.ui:126
msgctxt "insertaxisdlg|primaryY"
msgid "_Y axis"
msgstr "Os _Y"
-#. 8ZzUp
-#: chart2/uiconfig/ui/insertaxisdlg.ui:136
-msgctxt "insertaxisdlg|extended_tip|primaryY"
-msgid "Displays the Y axis as a line with subdivisions."
-msgstr "Zobrazí os Y s delením."
-
#. FoAXW
-#: chart2/uiconfig/ui/insertaxisdlg.ui:148
+#: chart2/uiconfig/ui/insertaxisdlg.ui:142
msgctxt "insertaxisdlg|primaryZ"
msgid "_Z axis"
msgstr "Os _Z"
-#. DgjxB
-#: chart2/uiconfig/ui/insertaxisdlg.ui:157
-msgctxt "insertaxisdlg|extended_tip|primaryZ"
-msgid "Displays the Z axis as a line with subdivisions."
-msgstr "Zobrazí os Z s delením."
-
#. YZ7GG
-#: chart2/uiconfig/ui/insertaxisdlg.ui:176
+#: chart2/uiconfig/ui/insertaxisdlg.ui:165
msgctxt "insertaxisdlg|label1"
msgid "Axes"
msgstr "Osi"
#. WEUFf
-#: chart2/uiconfig/ui/insertaxisdlg.ui:211
+#: chart2/uiconfig/ui/insertaxisdlg.ui:200
msgctxt "insertaxisdlg|secondaryX"
msgid "X _axis"
msgstr "Os _X"
-#. JGQhE
-#: chart2/uiconfig/ui/insertaxisdlg.ui:220
-msgctxt "insertaxisdlg|extended_tip|secondaryX"
-msgid "Displays a secondary X axis in the chart."
-msgstr "Zobrazí v grafe sekundárnu os X."
-
#. 598Gk
-#: chart2/uiconfig/ui/insertaxisdlg.ui:232
+#: chart2/uiconfig/ui/insertaxisdlg.ui:216
msgctxt "insertaxisdlg|secondaryY"
msgid "Y ax_is"
msgstr "Os _Y"
-#. trDFK
-#: chart2/uiconfig/ui/insertaxisdlg.ui:241
-msgctxt "insertaxisdlg|extended_tip|secondaryY"
-msgid "The major axis and the secondary axis can have different scaling. For example, you can scale one axis to 2 in. and the other to 1.5 in. "
-msgstr "Hlavné osi a sekundárne osi môžu mať rozličnú mierku. Napríklad jedna os môže mať mierku 2 cm a druhá 1 cm. "
-
#. CAFjD
-#: chart2/uiconfig/ui/insertaxisdlg.ui:253
+#: chart2/uiconfig/ui/insertaxisdlg.ui:232
msgctxt "insertaxisdlg|secondaryZ"
msgid "Z axi_s"
msgstr "Os _Z"
#. 2LQwV
-#: chart2/uiconfig/ui/insertaxisdlg.ui:276
+#: chart2/uiconfig/ui/insertaxisdlg.ui:255
msgctxt "insertaxisdlg|label2"
msgid "Secondary Axes"
msgstr "Sekundárne osi"
-#. 7yEDE
-#: chart2/uiconfig/ui/insertaxisdlg.ui:308
-msgctxt "insertaxisdlg|extended_tip|InsertAxisDialog"
-msgid "Specifies the axes to be displayed in the chart."
-msgstr "Určuje, ktoré osi sa majú v grafe zobraziť."
-
#. 2eGKS
#: chart2/uiconfig/ui/insertgriddlg.ui:8
msgctxt "insertgriddlg|InsertGridDialog"
@@ -1893,203 +1605,113 @@ msgid "Grids"
msgstr "Mriežky"
#. adEgJ
-#: chart2/uiconfig/ui/insertgriddlg.ui:106
+#: chart2/uiconfig/ui/insertgriddlg.ui:110
msgctxt "insertgriddlg|primaryX"
msgid "_X axis"
msgstr "Os _X"
-#. TeVcH
-#: chart2/uiconfig/ui/insertgriddlg.ui:115
-msgctxt "insertgriddlg|extended_tip|primaryX"
-msgid "Adds gridlines to the X axis of the chart."
-msgstr "Pridá do grafu mriežku osi X."
-
#. FEBZW
-#: chart2/uiconfig/ui/insertgriddlg.ui:127
+#: chart2/uiconfig/ui/insertgriddlg.ui:126
msgctxt "insertgriddlg|primaryY"
msgid "_Y axis"
msgstr "Os _Y"
-#. 6SmKJ
-#: chart2/uiconfig/ui/insertgriddlg.ui:136
-msgctxt "insertgriddlg|extended_tip|primaryY"
-msgid "Adds gridlines to the Y axis of the chart."
-msgstr "Pridá do grafu mriežku osi Y."
-
#. XEXTu
-#: chart2/uiconfig/ui/insertgriddlg.ui:148
+#: chart2/uiconfig/ui/insertgriddlg.ui:142
msgctxt "insertgriddlg|primaryZ"
msgid "_Z axis"
msgstr "Os _Z"
-#. bF4Eb
-#: chart2/uiconfig/ui/insertgriddlg.ui:157
-msgctxt "insertgriddlg|extended_tip|primaryZ"
-msgid "Adds gridlines to the Z axis of the chart."
-msgstr "Pridá do grafu mriežku osi Z."
-
#. 9QbAA
-#: chart2/uiconfig/ui/insertgriddlg.ui:176
+#: chart2/uiconfig/ui/insertgriddlg.ui:165
msgctxt "insertgriddlg|label1"
msgid "Major Grids"
msgstr "Hlavné mriežky"
#. wqXds
-#: chart2/uiconfig/ui/insertgriddlg.ui:211
+#: chart2/uiconfig/ui/insertgriddlg.ui:200
msgctxt "insertgriddlg|secondaryX"
msgid "X _axis"
msgstr "Os _X"
-#. cfAUn
-#: chart2/uiconfig/ui/insertgriddlg.ui:220
-msgctxt "insertgriddlg|extended_tip|secondaryX"
-msgid "Adds gridlines that subdivide the X axis into smaller sections."
-msgstr "Pridá mriežku, ktorá rozdelí os X na menšie časti."
-
#. PkzaY
-#: chart2/uiconfig/ui/insertgriddlg.ui:232
+#: chart2/uiconfig/ui/insertgriddlg.ui:216
msgctxt "insertgriddlg|secondaryY"
msgid "Y ax_is"
msgstr "Os _Y"
-#. a3asH
-#: chart2/uiconfig/ui/insertgriddlg.ui:241
-msgctxt "insertgriddlg|extended_tip|secondaryY"
-msgid "Adds gridlines that subdivide the Y axis into smaller sections."
-msgstr "Pridá mriežku, ktorá rozdelí os Y na menšie časti."
-
#. CcCG8
-#: chart2/uiconfig/ui/insertgriddlg.ui:253
+#: chart2/uiconfig/ui/insertgriddlg.ui:232
msgctxt "insertgriddlg|secondaryZ"
msgid "Z axi_s"
msgstr "Os _Z"
-#. hcj99
-#: chart2/uiconfig/ui/insertgriddlg.ui:262
-msgctxt "insertgriddlg|extended_tip|secondaryZ"
-msgid "Adds gridlines that subdivide the Z axis into smaller sections."
-msgstr "Pridá mriežku, ktorá rozdelí os Z na menšie časti."
-
#. QBQD4
-#: chart2/uiconfig/ui/insertgriddlg.ui:281
+#: chart2/uiconfig/ui/insertgriddlg.ui:255
msgctxt "insertgriddlg|label2"
msgid "Minor Grids"
msgstr "Vedľajšie mriežky"
-#. URB9E
-#: chart2/uiconfig/ui/insertgriddlg.ui:313
-msgctxt "insertgriddlg|extended_tip|InsertGridDialog"
-msgid "You can divide the axes into sections by assigning gridlines to them. This allows you to get a better overview of the chart, especially if you are working with large charts."
-msgstr "Priradením čiar mriežky je možné osi rozdeliť na úseky. To zlepší prehľadnosť, najmä ak pracujete s veľkými grafmi."
-
#. rqADt
#: chart2/uiconfig/ui/inserttitledlg.ui:8
msgctxt "inserttitledlg|InsertTitleDialog"
msgid "Titles"
-msgstr "Titulky"
+msgstr "Názvy"
#. pAKf8
-#: chart2/uiconfig/ui/inserttitledlg.ui:91
+#: chart2/uiconfig/ui/inserttitledlg.ui:94
msgctxt "inserttitledlg|labelMainTitle"
msgid "_Title"
-msgstr "_Nadpis"
+msgstr "_Názov"
#. ZBgRn
-#: chart2/uiconfig/ui/inserttitledlg.ui:105
+#: chart2/uiconfig/ui/inserttitledlg.ui:108
msgctxt "inserttitledlg|labelSubTitle"
msgid "_Subtitle"
-msgstr "P_odnadpis"
-
-#. aCRZ7
-#: chart2/uiconfig/ui/inserttitledlg.ui:123
-msgctxt "inserttitledlg|extended_tip|maintitle"
-msgid "Enter the desired title for the chart."
-msgstr "Zadajte požadovaný názov grafu."
-
-#. 5eiq7
-#: chart2/uiconfig/ui/inserttitledlg.ui:140
-msgctxt "inserttitledlg|extended_tip|subtitle"
-msgid "Enter the desired subtitle for the chart."
-msgstr "Zadajte požadovaný podnadpis grafu."
+msgstr "P_odnázov"
#. y8KiH
-#: chart2/uiconfig/ui/inserttitledlg.ui:178
+#: chart2/uiconfig/ui/inserttitledlg.ui:171
msgctxt "inserttitledlg|labelPrimaryXaxis"
msgid "_X axis"
msgstr "Os _X"
#. RhsUT
-#: chart2/uiconfig/ui/inserttitledlg.ui:192
+#: chart2/uiconfig/ui/inserttitledlg.ui:185
msgctxt "inserttitledlg|labelPrimaryYaxis"
msgid "_Y axis"
msgstr "Os _Y"
#. ypJFt
-#: chart2/uiconfig/ui/inserttitledlg.ui:206
+#: chart2/uiconfig/ui/inserttitledlg.ui:199
msgctxt "inserttitledlg|labelPrimaryZaxis"
msgid "_Z axis"
msgstr "Os _Z"
-#. qz8WP
-#: chart2/uiconfig/ui/inserttitledlg.ui:224
-msgctxt "inserttitledlg|extended_tip|primaryXaxis"
-msgid "Enter the desired title for the X axis of the chart."
-msgstr "Zadajte požadovaný popis pre os X grafu."
-
-#. 3m5Dk
-#: chart2/uiconfig/ui/inserttitledlg.ui:241
-msgctxt "inserttitledlg|extended_tip|primaryYaxis"
-msgid "Enter the desired title for the Y axis of the chart."
-msgstr "Zadajte požadovaný popis pre os Y grafu."
-
-#. PY2EU
-#: chart2/uiconfig/ui/inserttitledlg.ui:258
-msgctxt "inserttitledlg|extended_tip|primaryZaxis"
-msgid "Enter the desired title for the Z axis of the chart."
-msgstr "Zadajte požadovaný popis pre os Z grafu."
-
#. aHvzY
-#: chart2/uiconfig/ui/inserttitledlg.ui:275
+#: chart2/uiconfig/ui/inserttitledlg.ui:253
msgctxt "inserttitledlg|Axe"
msgid "Axes"
msgstr "Osi"
#. 8XRFP
-#: chart2/uiconfig/ui/inserttitledlg.ui:310
+#: chart2/uiconfig/ui/inserttitledlg.ui:288
msgctxt "inserttitledlg|labelSecondaryXAxis"
msgid "X _axis"
msgstr "Os _X"
#. Tq7G9
-#: chart2/uiconfig/ui/inserttitledlg.ui:324
+#: chart2/uiconfig/ui/inserttitledlg.ui:302
msgctxt "inserttitledlg|labelSecondaryYAxis"
msgid "Y ax_is"
msgstr "Os _Y"
-#. EsHDi
-#: chart2/uiconfig/ui/inserttitledlg.ui:342
-msgctxt "inserttitledlg|extended_tip|secondaryXaxis"
-msgid "Enter the desired secondary title for the X axis of the chart."
-msgstr "Zadajte požadovaný popis vedľajšej osi X grafu."
-
-#. bnwti
-#: chart2/uiconfig/ui/inserttitledlg.ui:359
-msgctxt "inserttitledlg|extended_tip|secondaryYaxis"
-msgid "Enter the desired secondary title for the Y axis of the chart."
-msgstr "Zadajte požadovaný popis vedľajšej osi Y grafu."
-
#. XvJwD
-#: chart2/uiconfig/ui/inserttitledlg.ui:376
+#: chart2/uiconfig/ui/inserttitledlg.ui:344
msgctxt "inserttitledlg|label2"
msgid "Secondary Axes"
msgstr "Sekundárne osi"
-#. Y96AE
-#: chart2/uiconfig/ui/inserttitledlg.ui:408
-msgctxt "inserttitledlg|extended_tip|InsertTitleDialog"
-msgid "Opens a dialog to enter or modify the titles in a chart."
-msgstr "Otvorí dialógové okno na zadanie alebo zmenu popisov grafu."
-
#. 23FsQ
#: chart2/uiconfig/ui/paradialog.ui:8
msgctxt "paradialog|ParagraphDialog"
@@ -2178,175 +1800,169 @@ msgstr "Podnadpis"
#: chart2/uiconfig/ui/sidebarelements.ui:50
msgctxt "sidebarelements|checkbutton_title"
msgid "Title"
-msgstr "Nadpis"
+msgstr "Názov"
#. vkhjB
#: chart2/uiconfig/ui/sidebarelements.ui:71
msgctxt "sidebarelements|l"
msgid "Titles"
-msgstr "Popisy"
-
-#. dB6pP
-#: chart2/uiconfig/ui/sidebarelements.ui:104
-msgctxt "sidebarelements|checkbutton_legend"
-msgid "Show legend"
-msgstr "Zobraziť legendu"
+msgstr "Názvy"
#. XxG3r
-#: chart2/uiconfig/ui/sidebarelements.ui:108
+#: chart2/uiconfig/ui/sidebarelements.ui:111
msgctxt "sidebarelements|checkbutton_legend|tooltip_text"
msgid "Show Legend"
msgstr "Zobraziť legendu"
#. zszn2
-#: chart2/uiconfig/ui/sidebarelements.ui:130
+#: chart2/uiconfig/ui/sidebarelements.ui:132
msgctxt "sidebarelements|placement_label"
msgid "_Placement:"
msgstr "U_miestnenie:"
#. N9Vw3
-#: chart2/uiconfig/ui/sidebarelements.ui:146
+#: chart2/uiconfig/ui/sidebarelements.ui:148
msgctxt "sidebarelements|comboboxtext_legend"
msgid "Right"
msgstr "Vpravo"
#. XWGfH
-#: chart2/uiconfig/ui/sidebarelements.ui:147
+#: chart2/uiconfig/ui/sidebarelements.ui:149
msgctxt "sidebarelements|comboboxtext_legend"
msgid "Top"
msgstr "Hore"
#. AYbfc
-#: chart2/uiconfig/ui/sidebarelements.ui:148
+#: chart2/uiconfig/ui/sidebarelements.ui:150
msgctxt "sidebarelements|comboboxtext_legend"
msgid "Bottom"
msgstr "Dole"
#. Hdrnv
-#: chart2/uiconfig/ui/sidebarelements.ui:149
+#: chart2/uiconfig/ui/sidebarelements.ui:151
msgctxt "sidebarelements|comboboxtext_legend"
msgid "Left"
msgstr "Vľavo"
#. WxtCZ
-#: chart2/uiconfig/ui/sidebarelements.ui:167
+#: chart2/uiconfig/ui/sidebarelements.ui:175
msgctxt "sidebarelements|checkbutton_no_overlay"
msgid "Show the legend without overlapping the chart"
msgstr "Zobraziť legendu bez prekrývania grafu"
#. UVbZR
-#: chart2/uiconfig/ui/sidebarelements.ui:189
+#: chart2/uiconfig/ui/sidebarelements.ui:197
msgctxt "sidebarelements|label_legen"
msgid "Legend"
msgstr "Legenda"
#. Am6Gz
-#: chart2/uiconfig/ui/sidebarelements.ui:222
+#: chart2/uiconfig/ui/sidebarelements.ui:230
msgctxt "sidebarelements|checkbutton_x_axis"
msgid "X axis"
msgstr "Os X"
#. P5gxx
-#: chart2/uiconfig/ui/sidebarelements.ui:237
+#: chart2/uiconfig/ui/sidebarelements.ui:245
msgctxt "sidebarelements|checkbutton_x_axis_title"
msgid "X axis title"
msgstr "Názov osi X"
#. iMXPp
-#: chart2/uiconfig/ui/sidebarelements.ui:252
+#: chart2/uiconfig/ui/sidebarelements.ui:260
msgctxt "sidebarelements|checkbutton_y_axis"
msgid "Y axis"
msgstr "Os Y"
#. vF4oS
-#: chart2/uiconfig/ui/sidebarelements.ui:267
+#: chart2/uiconfig/ui/sidebarelements.ui:275
msgctxt "sidebarelements|checkbutton_y_axis_title"
msgid "Y axis title"
msgstr "Názov osi Y"
#. A35cf
-#: chart2/uiconfig/ui/sidebarelements.ui:282
+#: chart2/uiconfig/ui/sidebarelements.ui:290
msgctxt "sidebarelements|checkbutton_z_axis"
msgid "Z axis"
msgstr "Os Z"
#. RZFAU
-#: chart2/uiconfig/ui/sidebarelements.ui:297
+#: chart2/uiconfig/ui/sidebarelements.ui:305
msgctxt "sidebarelements|checkbutton_z_axis_title"
msgid "Z axis title"
msgstr "Názov osi Z"
#. GoJDH
-#: chart2/uiconfig/ui/sidebarelements.ui:312
+#: chart2/uiconfig/ui/sidebarelements.ui:320
msgctxt "sidebarelements|checkbutton_2nd_x_axis"
msgid "2nd X axis"
msgstr "Sekundárna os X"
#. nsoDZ
-#: chart2/uiconfig/ui/sidebarelements.ui:326
+#: chart2/uiconfig/ui/sidebarelements.ui:334
msgctxt "sidebarelements|checkbutton_2nd_x_axis_title"
msgid "2nd X axis title"
msgstr "Názov sekundárnej osi X"
#. bGsCM
-#: chart2/uiconfig/ui/sidebarelements.ui:340
+#: chart2/uiconfig/ui/sidebarelements.ui:348
msgctxt "sidebarelements|checkbutton_2nd_y_axis"
msgid "2nd Y axis"
msgstr "Sekundárna os Y"
#. yDNuy
-#: chart2/uiconfig/ui/sidebarelements.ui:354
+#: chart2/uiconfig/ui/sidebarelements.ui:362
msgctxt "sidebarelements|checkbutton_2nd_y_axis_title"
msgid "2nd Y axis title"
msgstr "Názov sekundárnej osi Y"
#. ScLEM
-#: chart2/uiconfig/ui/sidebarelements.ui:374
+#: chart2/uiconfig/ui/sidebarelements.ui:382
msgctxt "sidebarelements|label_axes"
msgid "Axes"
msgstr "Osi"
#. RL8AA
-#: chart2/uiconfig/ui/sidebarelements.ui:407
+#: chart2/uiconfig/ui/sidebarelements.ui:415
msgctxt "sidebarelements|checkbutton_gridline_horizontal_major"
msgid "Horizontal major"
msgstr "Hlavná vodorovná"
#. FYBSZ
-#: chart2/uiconfig/ui/sidebarelements.ui:422
+#: chart2/uiconfig/ui/sidebarelements.ui:430
msgctxt "sidebarelements|checkbutton_gridline_vertical_major"
msgid "Vertical major"
msgstr "Hlavná zvislá"
#. VCTTS
-#: chart2/uiconfig/ui/sidebarelements.ui:437
+#: chart2/uiconfig/ui/sidebarelements.ui:445
msgctxt "sidebarelements|checkbutton_gridline_horizontal_minor"
msgid "Horizontal minor"
msgstr "Vedľajšia vodorovná"
#. QDFEZ
-#: chart2/uiconfig/ui/sidebarelements.ui:452
+#: chart2/uiconfig/ui/sidebarelements.ui:460
msgctxt "sidebarelements|checkbutton_gridline_vertical_minor"
msgid "Vertical minor"
msgstr "Vedľajšia zvislá"
#. yeE2v
-#: chart2/uiconfig/ui/sidebarelements.ui:473
+#: chart2/uiconfig/ui/sidebarelements.ui:481
msgctxt "sidebarelements|label_gri"
msgid "Gridlines"
msgstr "Čiary mriežky"
#. uacDo
-#: chart2/uiconfig/ui/sidebarelements.ui:493
+#: chart2/uiconfig/ui/sidebarelements.ui:501
msgctxt "sidebarelements|text_title"
msgid "Title"
-msgstr "Nadpis"
+msgstr "Názvy"
#. jXGDE
-#: chart2/uiconfig/ui/sidebarelements.ui:504
+#: chart2/uiconfig/ui/sidebarelements.ui:512
msgctxt "sidebarelements|text_subtitle"
msgid "Subtitle"
-msgstr "Podnadpis"
+msgstr "Podnázov"
#. SCPM4
#: chart2/uiconfig/ui/sidebarerrorbar.ui:58
@@ -2637,163 +2253,91 @@ msgid "Smooth Lines"
msgstr "Hladké spojnice"
#. vmRbz
-#: chart2/uiconfig/ui/smoothlinesdlg.ui:114
+#: chart2/uiconfig/ui/smoothlinesdlg.ui:108
msgctxt "smoothlinesdlg|TypeLabel"
msgid "Line _Type:"
msgstr "_Typ čiary:"
#. Nkqhi
-#: chart2/uiconfig/ui/smoothlinesdlg.ui:131
+#: chart2/uiconfig/ui/smoothlinesdlg.ui:124
msgctxt "smoothlinesdlg|SplineTypeComboBox"
msgid "Cubic spline"
msgstr "Kubický splajn"
#. LTCVw
-#: chart2/uiconfig/ui/smoothlinesdlg.ui:132
+#: chart2/uiconfig/ui/smoothlinesdlg.ui:125
msgctxt "smoothlinesdlg|SplineTypeComboBox"
msgid "B-spline"
msgstr "B-splajn"
-#. EJdNq
-#: chart2/uiconfig/ui/smoothlinesdlg.ui:136
-msgctxt "smoothlinesdlg|extended_tip|SplineTypeComboBox"
-msgid "Apply a line curve model."
-msgstr "Použiť model krivky."
-
#. eecxc
-#: chart2/uiconfig/ui/smoothlinesdlg.ui:170
+#: chart2/uiconfig/ui/smoothlinesdlg.ui:158
msgctxt "smoothlinesdlg|ResolutionLabel"
msgid "_Resolution:"
msgstr "_Rozlíšenie:"
#. AdG5v
-#: chart2/uiconfig/ui/smoothlinesdlg.ui:184
+#: chart2/uiconfig/ui/smoothlinesdlg.ui:172
msgctxt "smoothlinesdlg|PolynomialsLabel"
msgid "_Degree of polynomials:"
msgstr "~Stupeň polynómov:"
-#. X35yY
-#: chart2/uiconfig/ui/smoothlinesdlg.ui:201
-msgctxt "smoothlinesdlg|extended_tip|ResolutionSpinbutton"
-msgid "Set the resolution."
-msgstr "Nastaviť rozlíšenie."
-
-#. a4btg
-#: chart2/uiconfig/ui/smoothlinesdlg.ui:218
-msgctxt "smoothlinesdlg|extended_tip|PolynomialsSpinButton"
-msgid "Set the degree of the polynomials."
-msgstr "Nastaviť stupeň polynómu."
-
-#. YECJR
-#: chart2/uiconfig/ui/smoothlinesdlg.ui:252
-msgctxt "smoothlinesdlg|extended_tip|SmoothLinesDialog"
-msgid "Apply a line curve model."
-msgstr "Použiť model krivky."
-
#. RyJg5
#: chart2/uiconfig/ui/steppedlinesdlg.ui:131
msgctxt "steppedlinesdlg|step_start_rb"
msgid "_Start with horizontal line"
msgstr "_Začať vodorovnou čiarou"
-#. Zcr4L
-#: chart2/uiconfig/ui/steppedlinesdlg.ui:141
-msgctxt "steppedlinesdlg|extended_tip|step_start_rb"
-msgid "Start with horizontal line and step up vertically at the end."
-msgstr "Začína vodorovnou čiarou a na konci vytvára zvislý stupeň."
-
#. iJCAt
-#: chart2/uiconfig/ui/steppedlinesdlg.ui:152
+#: chart2/uiconfig/ui/steppedlinesdlg.ui:147
msgctxt "steppedlinesdlg|step_center_x_rb"
msgid "Step at the _horizontal mean"
msgstr "Stupeň na stred _vodorovne"
-#. D5DGL
-#: chart2/uiconfig/ui/steppedlinesdlg.ui:163
-msgctxt "steppedlinesdlg|extended_tip|step_center_x_rb"
-msgid "Start to step up vertically and end with horizontal line."
-msgstr "Na začiatku vytvára zvislý stupeň a končí vodorovnou čiarou."
-
#. vtGik
-#: chart2/uiconfig/ui/steppedlinesdlg.ui:174
+#: chart2/uiconfig/ui/steppedlinesdlg.ui:164
msgctxt "steppedlinesdlg|step_end_rb"
msgid "_End with horizontal line"
msgstr "_Končiť vodorovnou čiarou"
-#. nGAhe
-#: chart2/uiconfig/ui/steppedlinesdlg.ui:185
-msgctxt "steppedlinesdlg|extended_tip|step_end_rb"
-msgid "Start with horizontal line, step up vertically in the middle of the X values and end with horizontal line."
-msgstr "Začína vodorovnou čiarou, v strede hodnôt X vytvára zvislý stupeň a končí vodorovnou čiarou."
-
#. X3536
-#: chart2/uiconfig/ui/steppedlinesdlg.ui:196
+#: chart2/uiconfig/ui/steppedlinesdlg.ui:181
msgctxt "steppedlinesdlg|step_center_y_rb"
msgid "Step to the _vertical mean"
msgstr "Stupeň po _stred vertikálne"
-#. S528C
-#: chart2/uiconfig/ui/steppedlinesdlg.ui:207
-msgctxt "steppedlinesdlg|extended_tip|step_center_y_rb"
-msgid "Start to step up vertically to the middle of the Y values, draw a horizontal line and finish by stepping vertically to the end."
-msgstr "Na začiatku začne vytvárať zvislý stupeň do stredu hodnôt Y, potom nakreslí vodorovnú čiaru a na konci zvislý stupeň uzavrie."
-
#. oDDMr
-#: chart2/uiconfig/ui/steppedlinesdlg.ui:235
+#: chart2/uiconfig/ui/steppedlinesdlg.ui:215
msgctxt "steppedlinesdlg|label2"
msgid "Type of Stepping"
msgstr "Typ stupňov"
-#. K2DaE
-#: chart2/uiconfig/ui/titlerotationtabpage.ui:44
-msgctxt "titlerotationtabpage|extended_tip|OrientDegree"
-msgid "Allows you to manually enter the orientation angle."
-msgstr "Môžete ručne zadať uhol orientácie."
-
#. ViJ9k
-#: chart2/uiconfig/ui/titlerotationtabpage.ui:58
+#: chart2/uiconfig/ui/titlerotationtabpage.ui:53
msgctxt "titlerotationtabpage|degreeL"
msgid "_Degrees"
msgstr "_Stupňov"
#. tv9xJ
-#: chart2/uiconfig/ui/titlerotationtabpage.ui:92
+#: chart2/uiconfig/ui/titlerotationtabpage.ui:87
msgctxt "titlerotationtabpage|stackedCB"
msgid "Ve_rtically stacked"
msgstr "Usporiadať zvi_sle"
-#. VGDph
-#: chart2/uiconfig/ui/titlerotationtabpage.ui:102
-msgctxt "titlerotationtabpage|extended_tip|stackedCB"
-msgid "Assigns vertical text orientation for cell contents."
-msgstr "Text v bunkách sa bude zobrazovať zvislo."
-
#. 3BaMa
-#: chart2/uiconfig/ui/titlerotationtabpage.ui:114
+#: chart2/uiconfig/ui/titlerotationtabpage.ui:104
msgctxt "titlerotationtabpage|labelABCD"
msgid "ABCD"
msgstr "ABCD"
#. dAHWb
-#: chart2/uiconfig/ui/titlerotationtabpage.ui:131
+#: chart2/uiconfig/ui/titlerotationtabpage.ui:121
msgctxt "titlerotationtabpage|textdirL"
msgid "Te_xt direction:"
msgstr "Smer _textu:"
-#. i5UYm
-#: chart2/uiconfig/ui/titlerotationtabpage.ui:145
-msgctxt "titlerotationtabpage|extended_tip|textdirLB"
-msgid "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled."
-msgstr "Určite smer textu pre odsek, ktorý používa komplexné rozloženie textu (CTL). Táto vlastnosť je dostupná, len ak je povolené komplexné rozloženie."
-
-#. 9cDiw
-#: chart2/uiconfig/ui/titlerotationtabpage.ui:164
-msgctxt "titlerotationtabpage|extended_tip|dialCtrl"
-msgid "Clicking anywhere on the wheel defines the variable text orientation."
-msgstr "Kliknutím kdekoľvek na koleso určíte orientáciu textu."
-
#. syx89
-#: chart2/uiconfig/ui/titlerotationtabpage.ui:181
+#: chart2/uiconfig/ui/titlerotationtabpage.ui:161
msgctxt "titlerotationtabpage|labelTextOrient"
msgid "Text Orientation"
msgstr "Orientácia textu"
@@ -2822,276 +2366,138 @@ msgctxt "tp_3D_SceneAppearance|liststoreSCHEME"
msgid "Custom"
msgstr "Vlastné"
-#. raML6
-#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:42
-msgctxt "tp_3D_SceneAppearance|extended_tip|LB_SCHEME"
-msgid "Select a scheme from the list box, or click any of the check boxes below."
-msgstr "Vyberte schému zo zoznamu alebo kliknite na zaškrtávacie polia nižšie."
-
#. EyGsf
-#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:78
+#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:73
msgctxt "tp_3D_SceneAppearance|CB_SHADING"
msgid "_Shading"
msgstr "_Tieňovanie"
-#. W68hV
-#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:87
-msgctxt "tp_3D_SceneAppearance|extended_tip|CB_SHADING"
-msgid "Applies Gouraud shading if marked, or flat shading if unmarked."
-msgstr "Pokiaľ je zaškrtnuté, použije sa Gourardovo tieňovanie, inak sa použije ploché tieňovanie."
-
#. SMFrD
-#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:99
+#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:89
msgctxt "tp_3D_SceneAppearance|CB_OBJECTLINES"
msgid "_Object borders"
msgstr "_Orámovanie hrán objektu"
-#. CQjGV
-#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:108
-msgctxt "tp_3D_SceneAppearance|extended_tip|CB_OBJECTLINES"
-msgid "Shows borders around the areas by setting the line style to Solid."
-msgstr "Nastavením štýlu čiary na plný sa zobrazia okraje okolo oblasti."
-
#. CpWRj
-#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:120
+#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:105
msgctxt "tp_3D_SceneAppearance|CB_ROUNDEDEDGE"
msgid "_Rounded edges"
msgstr "Zaoblené _rohy"
-#. c5pNB
-#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:129
-msgctxt "tp_3D_SceneAppearance|extended_tip|CB_ROUNDEDEDGE"
-msgid "Edges are rounded by 5%."
-msgstr "Okraje sa o 5% zaoblia."
-
#. U5CTF
#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:36
msgctxt "tp_3D_SceneGeometry|CBX_RIGHT_ANGLED_AXES"
msgid "_Right-angled axes"
msgstr "P_ravouhlé osi"
-#. QxmLn
-#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:45
-msgctxt "tp_3D_SceneGeometry|extended_tip|CBX_RIGHT_ANGLED_AXES"
-msgid "If Right-angled axes is enabled, you can rotate the chart contents only in X and Y direction, that is, parallel to the chart borders. Right-angled axes is enabled by default for newly created 3D charts. Pie and Donut charts do not support right-angled axes."
-msgstr "Pokiaľ sú zapnuté Pravouhlé osi, môžete rotovať obsah grafu len v smere osí X a Y, tj. paralelne s okrajmi grafu. Pre novo vytvorené 3D grafy sú pravouhlé osi implicitne zapnuté. Koláčové a Prstencové grafy nepodporujú pravouhlé osi."
-
#. y8Tyg
-#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:59
+#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:54
msgctxt "tp_3D_SceneGeometry|FT_X_ROTATION"
msgid "_X rotation"
msgstr "Rotácia _X"
#. TJ2Xp
-#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:73
+#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:68
msgctxt "tp_3D_SceneGeometry|FT_Y_ROTATION"
msgid "_Y rotation"
msgstr "Rotácia _Y"
#. UTAG5
-#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:87
+#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:82
msgctxt "tp_3D_SceneGeometry|FT_Z_ROTATION"
msgid "_Z rotation"
msgstr "Rotácia _Z"
#. ZC8ZQ
-#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:99
+#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:94
msgctxt "tp_3D_SceneGeometry|CBX_PERSPECTIVE"
msgid "_Perspective"
msgstr "_Perspektíva"
-#. xyePC
-#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:111
-msgctxt "tp_3D_SceneGeometry|extended_tip|CBX_PERSPECTIVE"
-msgid "Mark the Perspective box to view the chart as through a camera lens. Use the spin button to set the percentage. With a high percentage nearer objects look bigger than more distant objects."
-msgstr "Zaškrtnite pole Perspektíva pre zobrazenie grafu ako cez objektív kamery. V rolovacom poli nastavte percentá. Pri vyššom percentuálnom nastavení vyzerajú bližšie objekty väčšie ako tie vzdialenejšie."
-
#. mdPAi
-#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:131
+#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:121
msgctxt "tp_3D_SceneGeometry|MTR_FLD_PERSPECTIVE-atkobject"
msgid "Perspective"
msgstr "Perspektíva"
-#. JECHC
-#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:132
-msgctxt "tp_3D_SceneGeometry|extended_tip|MTR_FLD_PERSPECTIVE"
-msgid "Mark the Perspective box to view the chart as through a camera lens. Use the spin button to set the percentage. With a high percentage nearer objects look bigger than more distant objects."
-msgstr "Zaškrtnite pole Perspektíva pre zobrazenie grafu ako cez objektív kamery. V rolovacom poli nastavte percentá. Pri vyššom percentuálnom nastavení vyzerajú bližšie objekty väčšie ako tie vzdialenejšie."
-
-#. PP8jT
-#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:150
-msgctxt "tp_3D_SceneGeometry|extended_tip|MTR_FLD_Z_ROTATION"
-msgid "Sets the rotation of the chart on the z axis. The preview responds to the new settings."
-msgstr "Nastavuje rotáciu grafu na osi z. Náhľad sa mení podľa nových nastavení."
-
-#. AyMWn
-#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:167
-msgctxt "tp_3D_SceneGeometry|extended_tip|MTR_FLD_Y_ROTATION"
-msgid "Sets the rotation of the chart on the y axis. The preview responds to the new settings."
-msgstr "Nastavuje rotáciu grafu na osi y. Náhľad sa mení podľa nových nastavení."
-
-#. EGS4B
-#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:184
-msgctxt "tp_3D_SceneGeometry|extended_tip|MTR_FLD_X_ROTATION"
-msgid "Sets the rotation of the chart on the x axis. The preview responds to the new settings."
-msgstr "Nastavuje rotáciu grafu na osi x. Náhľad sa mení podľa nových nastavení."
-
#. RGQDC
#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:95
msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_1|tooltip_text"
msgid "Light source 1"
msgstr "Zdroj svetla 1"
-#. EQb5g
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:100
-msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_1"
-msgid "Click to enable or disable the specular light source with highlights."
-msgstr "Kliknutím zapnete alebo vypnete odrazový svetelný zdroj so zvýraznením."
-
#. bwfDH
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:114
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:109
msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_2|tooltip_text"
msgid "Light source 2"
msgstr "Zdroj svetla 2"
-#. jkJM8
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:119
-msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_2"
-msgid "Click to enable or disable the uniform light source."
-msgstr "Kliknutím vypnete alebo zapnete jednotný zdroj svetla."
-
#. uMVDV
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:133
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:123
msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_3|tooltip_text"
msgid "Light source 3"
msgstr "Zdroj svetla 3"
-#. ZEUk7
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:138
-msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_3"
-msgid "Click to enable or disable the uniform light source."
-msgstr "Kliknutím vypnete alebo zapnete jednotný zdroj svetla."
-
#. 6CBDG
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:152
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:137
msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_4|tooltip_text"
msgid "Light source 4"
msgstr "Zdroj svetla 4"
-#. X5ZD3
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:157
-msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_4"
-msgid "Click to enable or disable the uniform light source."
-msgstr "Kliknutím vypnete alebo zapnete jednotný zdroj svetla."
-
#. Hf5Du
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:171
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:151
msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_5|tooltip_text"
msgid "Light source 5"
msgstr "Zdroj svetla 5"
-#. mUPX4
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:176
-msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_5"
-msgid "Click to enable or disable the uniform light source."
-msgstr "Kliknutím vypnete alebo zapnete jednotný zdroj svetla."
-
#. T7qDZ
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:190
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:165
msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_6|tooltip_text"
msgid "Light source 6"
msgstr "Zdroj svetla 6"
-#. AAkx2
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:195
-msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_6"
-msgid "Click to enable or disable the uniform light source."
-msgstr "Kliknutím vypnete alebo zapnete jednotný zdroj svetla."
-
#. mSsDD
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:209
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:179
msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_7|tooltip_text"
msgid "Light source 7"
msgstr "Zdroj svetla 7"
-#. Rh9Hz
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:214
-msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_7"
-msgid "Click to enable or disable the uniform light source."
-msgstr "Kliknutím vypnete alebo zapnete jednotný zdroj svetla."
-
#. wY5CR
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:228
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:193
msgctxt "tp_3D_SceneIllumination|BTN_LIGHT_8|tooltip_text"
msgid "Light source 8"
msgstr "Zdroj svetla 8"
-#. EbsUA
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:233
-msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_8"
-msgid "Click to enable or disable the uniform light source."
-msgstr "Kliknutím vypnete alebo zapnete jednotný zdroj svetla."
-
-#. DwEDc
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:267
-msgctxt "tp_3D_SceneIllumination|extended_tip|LB_LIGHTSOURCE"
-msgid "Select a color for the selected light source."
-msgstr "Vyberte farbu pre vybraný zdroj svetla."
-
#. gfdAB
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:282
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:237
msgctxt "tp_3D_SceneIllumination|BTN_LIGHTSOURCE_COLOR|tooltip_text"
msgid "Select a color using the color dialog"
msgstr "Vybrať farbu použitím dialógového okna"
-#. JnBhP
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:286
-msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHTSOURCE_COLOR"
-msgid "Select a color using the color dialog."
-msgstr "Vyberte farbu pomocou dialógu pre výber farby."
-
-#. mgXyK
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:311
+#. XLXEQ
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:261
msgctxt "tp_3D_SceneIllumination|FT_LIGHTSOURCE"
-msgid "_Light Source"
-msgstr ""
-
-#. WssJA
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:357
-msgctxt "tp_3D_SceneIllumination|extended_tip|LB_AMBIENTLIGHT"
-msgid "Select a color for the ambient light."
-msgstr "Vyberte farbu okolitého osvetlenia."
+msgid "_Light source"
+msgstr "Zdroj _svetla"
#. NpAu7
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:372
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:317
msgctxt "tp_3D_SceneIllumination|BTN_AMBIENT_COLOR|tooltip_text"
msgid "Select a color using the color dialog"
msgstr "Vybrať farbu použitím dialógového okna"
-#. 943Za
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:376
-msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_AMBIENT_COLOR"
-msgid "Select a color using the color dialog."
-msgstr "Vyberte farbu pomocou dialógu pre výber farby."
-
-#. LFMGL
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:394
+#. QCb7M
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:334
msgctxt "tp_3D_SceneIllumination|FT_AMBIENTLIGHT"
-msgid "_Ambient Light"
-msgstr ""
+msgid "_Ambient light"
+msgstr "_Okolité osvetlenie"
#. snUGf
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:437
+#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:377
msgctxt "tp_3D_SceneIllumination|CTL_LIGHT_PREVIEW|tooltip_text"
msgid "Light Preview"
msgstr "Náhľad osvetlenia"
-#. tQBhd
-#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:495
-msgctxt "tp_3D_SceneIllumination|extended_tip|tp_3D_SceneIllumination"
-msgid "Set the light sources for the 3D view."
-msgstr "Nastavenie zdrojov svetla pre 3D zobrazenie."
-
#. XRVrG
#: chart2/uiconfig/ui/tp_AxisPositions.ui:48
msgctxt "tp_AxisPositions|FT_CROSSES_OTHER_AXIS_AT"
@@ -3122,236 +2528,170 @@ msgctxt "tp_AxisPositions|LB_CROSSES_OTHER_AXIS_AT"
msgid "Category"
msgstr "Kategória"
-#. eKYhk
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:71
-msgctxt "tp_AxisPositions|extended_tip|LB_CROSSES_OTHER_AXIS_AT"
-msgid "Select where to cross the other axis: at start, at end, at a specified value, or at a category."
-msgstr "Zvoľte, kde sa pretnú osi: na začiatku, na konci, na určenej hodnote alebo v kategórii."
-
-#. FwCEp
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:89
-msgctxt "tp_AxisPositions|extended_tip|EDT_CROSSES_OTHER_AXIS_AT"
-msgid "Enter the value where the axis line should cross the other axis."
-msgstr "Zadajte hodnotu, kde sa osi pretnú."
-
-#. AnLbY
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:112
-msgctxt "tp_AxisPositions|extended_tip|EDT_CROSSES_OTHER_AXIS_AT_CATEGORY"
-msgid "Select the category where the axis line should cross the other axis."
-msgstr "Vyberte kategóriu, kde sa osi pretnú."
-
#. VYVhe
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:131
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:116
msgctxt "tp_AxisPositions|CB_AXIS_BETWEEN_CATEGORIES"
msgid "Axis _between categories"
msgstr "Osi medzi _kategóriami"
#. bW7T9
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:152
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:137
msgctxt "tp_AxisPositions|TXT_AXIS_LINE"
msgid "Axis Line"
msgstr "Čiara osi"
#. 5ezBt
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:185
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:170
msgctxt "tp_AxisPositions|RB_ON"
msgid "_On tick marks"
msgstr "_Na značkách"
-#. FaKJZ
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:194
-msgctxt "tp_AxisPositions|extended_tip|RB_ON"
-msgid "Specifies that the axis is positioned on the first/last tickmarks. This makes the data points visual representation begin/end at the value axis."
-msgstr "Určuje, že os sa umiestni na prvú či poslednú značku. To spôsobí, že vizuálna reprezentácia dátových bodov bude začínať alebo končiť na osi hodnôt."
-
#. gSFeZ
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:205
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:185
msgctxt "tp_AxisPositions|RB_BETWEEN"
msgid "_Between tick marks"
msgstr "_Medzi značkami"
-#. BSx2x
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:215
-msgctxt "tp_AxisPositions|extended_tip|RB_BETWEEN"
-msgid "Specifies that the axis is positioned between the tickmarks. This makes the data points visual representation begin/end at a distance from the value axis."
-msgstr "Určuje, že os sa umiestni medzi značky. To spôsobí, že vizuálna reprezentácia dátových bodov bude začínať alebo končiť v istej vzdialenosti od osi hodnôt."
-
#. ExBDm
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:232
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:207
msgctxt "tp_AxisPositions|TXT_POSITION"
msgid "Position Axis"
msgstr "Upraviť polohu osí"
#. 5AGbD
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:273
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:248
msgctxt "tp_AxisPositions|FT_PLACE_LABELS"
msgid "_Place labels"
msgstr "Umiestniť _popisy"
#. GDk2L
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:289
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:264
msgctxt "tp_AxisPositions|LB_PLACE_LABELS"
msgid "Near axis"
msgstr "Blízko osi"
#. ZWQzB
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:290
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:265
msgctxt "tp_AxisPositions|LB_PLACE_LABELS"
msgid "Near axis (other side)"
msgstr "Blízko osi (opačná strana)"
#. j3GGm
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:291
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:266
msgctxt "tp_AxisPositions|LB_PLACE_LABELS"
msgid "Outside start"
msgstr "Mimo začiatku"
#. mGDNr
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:292
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:267
msgctxt "tp_AxisPositions|LB_PLACE_LABELS"
msgid "Outside end"
msgstr "Mimo konca"
-#. ChAqv
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:296
-msgctxt "tp_AxisPositions|extended_tip|LB_PLACE_LABELS"
-msgid "Select where to place the labels: near axis, near axis (other side), outside start, or outside end."
-msgstr "Zvoľte umiestnenie popisov: blízko osi, blízko osi (opačná strana), mimo začiatok, mimo koniec."
-
#. DUNn4
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:321
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:291
msgctxt "tp_AxisPositions|FT_AXIS_LABEL_DISTANCE"
msgid "_Distance"
msgstr "_Vzdialenosť"
#. Hkjze
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:359
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:329
msgctxt "tp_AxisPositions|TXT_FL_LABELS"
msgid "Labels"
msgstr "Popisy"
#. YBk4g
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:401
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:371
msgctxt "tp_AxisPositions|FT_MAJOR"
msgid "Major:"
msgstr "Hlavné:"
#. G8MEU
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:417
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:387
msgctxt "tp_AxisPositions|FT_MINOR"
msgid "Minor:"
msgstr "Vedľajšie:"
#. UN6Pr
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:431
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:401
msgctxt "tp_AxisPositions|CB_TICKS_INNER"
msgid "_Inner"
msgstr "_Vnútorné"
-#. DpVNk
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:443
-msgctxt "tp_AxisPositions|extended_tip|CB_TICKS_INNER"
-msgid "Specifies that marks are placed on the inner side of the axis."
-msgstr "Určuje, že sa značky zobrazia na vnútornej strane osi."
-
#. EhLxm
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:454
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:419
msgctxt "tp_AxisPositions|CB_TICKS_OUTER"
msgid "_Outer"
msgstr "V_onkajšie"
-#. DGWEb
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:466
-msgctxt "tp_AxisPositions|extended_tip|CB_TICKS_OUTER"
-msgid "Specifies that marks are placed on the outer side of the axis."
-msgstr "Určuje, že sa značky zobrazia na vonkajšej strane osi."
-
#. RJXic
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:477
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:437
msgctxt "tp_AxisPositions|CB_MINOR_INNER"
msgid "I_nner"
msgstr "V_nútorné"
-#. jbRx3
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:489
-msgctxt "tp_AxisPositions|extended_tip|CB_MINOR_INNER"
-msgid "Specifies that minor interval marks are placed on the inner side of the axis."
-msgstr "Určuje, že sa značky vedľajšieho intervalu zobrazia na vnútornej strane osi."
-
#. nBCFJ
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:500
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:455
msgctxt "tp_AxisPositions|CB_MINOR_OUTER"
msgid "O_uter"
msgstr "V_onkajšie"
-#. JAi2f
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:512
-msgctxt "tp_AxisPositions|extended_tip|CB_MINOR_OUTER"
-msgid "Specifies that minor interval marks are placed on the outer side of the axis."
-msgstr "Určuje, že sa značky vedľajšieho intervalu zobrazia na vonkajšej strane osi."
-
#. XWuxR
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:537
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:487
msgctxt "tp_AxisPositions|FT_PLACE_TICKS"
msgid "Place _marks"
msgstr "U_miestniť značky"
#. mvGBB
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:553
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:503
msgctxt "tp_AxisPositions|LB_PLACE_TICKS"
msgid "At labels"
msgstr "Na popisy"
#. dGAYz
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:554
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:504
msgctxt "tp_AxisPositions|LB_PLACE_TICKS"
msgid "At axis"
msgstr "Na osi"
#. TJAJB
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:555
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:505
msgctxt "tp_AxisPositions|LB_PLACE_TICKS"
msgid "At axis and labels"
msgstr "Na osi a popisy"
-#. tED2r
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:559
-msgctxt "tp_AxisPositions|extended_tip|LB_PLACE_TICKS"
-msgid "Select where to place the marks: at labels, at axis, or at axis and labels."
-msgstr "Zvoľte umiestnenie značiek: na popisoch, na osi alebo na osi a popisoch."
-
#. jK9rf
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:584
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:529
msgctxt "tp_AxisPositions|TXT_FL_TICKS"
msgid "Interval Marks"
msgstr "Značky intervalu"
#. 4Jp7G
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:617
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:562
msgctxt "tp_AxisPositions|CB_MAJOR_GRID"
msgid "Show major _grid"
msgstr "Zobraziť _hlavnú mriežku"
#. 7c2Hs
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:633
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:578
msgctxt "tp_AxisPositions|CB_MINOR_GRID"
msgid "_Show minor grid"
msgstr "_Zobraziť vedľajšiu mriežku"
#. Dp5Ar
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:648
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:593
msgctxt "tp_AxisPositions|PB_MAJOR_GRID"
msgid "Mo_re..."
msgstr "_Viac..."
#. k5VQQ
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:661
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:606
msgctxt "tp_AxisPositions|PB_MINOR_GRID"
msgid "Mor_e..."
msgstr "Via_c..."
#. 7eDLK
-#: chart2/uiconfig/ui/tp_AxisPositions.ui:681
+#: chart2/uiconfig/ui/tp_AxisPositions.ui:626
msgctxt "tp_AxisPositions|label2"
msgid "Grids"
msgstr "Mriežky"
@@ -3362,470 +2702,302 @@ msgctxt "tp_ChartType|FT_CAPTION_FOR_WIZARD"
msgid "Choose a Chart Type"
msgstr "Vybrať typ grafu"
-#. wBFXQ
-#: chart2/uiconfig/ui/tp_ChartType.ui:94
-msgctxt "tp_ChartType|extended_tip|subtype"
-msgid "Select a sub type of the basic chart type."
-msgstr "Zvoľte variantu základného typu grafu."
-
#. FSf6b
-#: chart2/uiconfig/ui/tp_ChartType.ui:119
+#: chart2/uiconfig/ui/tp_ChartType.ui:113
msgctxt "tp_ChartType|3dlook"
msgid "_3D Look"
msgstr "_3D vzhľad"
-#. EB95g
-#: chart2/uiconfig/ui/tp_ChartType.ui:130
-msgctxt "tp_ChartType|extended_tip|3dlook"
-msgid "Enables a 3D look for the data values."
-msgstr "Zapne 3D vzhľad dátových hodnôt."
-
#. FprGw
-#: chart2/uiconfig/ui/tp_ChartType.ui:144
+#: chart2/uiconfig/ui/tp_ChartType.ui:132
msgctxt "tp_ChartType|3dscheme"
msgid "Simple"
msgstr "Jednoduché"
#. pKhfX
-#: chart2/uiconfig/ui/tp_ChartType.ui:145
+#: chart2/uiconfig/ui/tp_ChartType.ui:133
msgctxt "tp_ChartType|3dscheme"
msgid "Realistic"
msgstr "Realistické"
-#. zZxWG
-#: chart2/uiconfig/ui/tp_ChartType.ui:152
-msgctxt "tp_ChartType|extended_tip|3dscheme"
-msgid "Select the type of 3D look."
-msgstr "Zvoľte typ 3D vzhľadu."
-
#. FxHfq
-#: chart2/uiconfig/ui/tp_ChartType.ui:170
+#: chart2/uiconfig/ui/tp_ChartType.ui:154
msgctxt "tp_ChartType|shapeft"
msgid "Sh_ape"
msgstr "Ú_tvar"
-#. CCA3V
-#: chart2/uiconfig/ui/tp_ChartType.ui:213
-msgctxt "tp_ChartType|extended_tip|shape"
-msgid "Select a shape from the list."
-msgstr "Vyberte tvar zo zoznamu."
-
#. G2u4D
-#: chart2/uiconfig/ui/tp_ChartType.ui:237
+#: chart2/uiconfig/ui/tp_ChartType.ui:215
msgctxt "tp_ChartType|stack"
msgid "_Stack series"
msgstr "_Zložené rady"
-#. h8wCq
-#: chart2/uiconfig/ui/tp_ChartType.ui:245
-msgctxt "tp_ChartType|extended_tip|stack"
-msgid "Displays stacked series for Line charts."
-msgstr "Zobrazuje zložené rady pre Čiarové grafy."
-
#. KfD2L
-#: chart2/uiconfig/ui/tp_ChartType.ui:266
+#: chart2/uiconfig/ui/tp_ChartType.ui:239
msgctxt "tp_ChartType|ontop"
msgid "On top"
msgstr "Na vrchu"
-#. DY854
-#: chart2/uiconfig/ui/tp_ChartType.ui:275
-msgctxt "tp_ChartType|extended_tip|ontop"
-msgid "Stack series display values on top of each other."
-msgstr "Zložené rady zobrazujú hodnoty nad sebou."
-
#. C7JxK
-#: chart2/uiconfig/ui/tp_ChartType.ui:286
+#: chart2/uiconfig/ui/tp_ChartType.ui:254
msgctxt "tp_ChartType|percent"
msgid "Percent"
msgstr "Percento"
-#. EVNAR
-#: chart2/uiconfig/ui/tp_ChartType.ui:295
-msgctxt "tp_ChartType|extended_tip|percent"
-msgid "Stack series display values as percent."
-msgstr "Skladané rady zobrazujú hodnoty ako percentá."
-
#. ijuPy
-#: chart2/uiconfig/ui/tp_ChartType.ui:306
+#: chart2/uiconfig/ui/tp_ChartType.ui:269
msgctxt "tp_ChartType|deep"
msgid "Deep"
msgstr "Hĺbkový"
#. etF2p
-#: chart2/uiconfig/ui/tp_ChartType.ui:335
+#: chart2/uiconfig/ui/tp_ChartType.ui:298
msgctxt "tp_ChartType|linetypeft"
msgid "_Line type"
msgstr "_Typ čiary"
#. RbyB4
-#: chart2/uiconfig/ui/tp_ChartType.ui:349
+#: chart2/uiconfig/ui/tp_ChartType.ui:312
msgctxt "tp_ChartType|linetype"
msgid "Straight"
msgstr "Priama"
#. dG5tv
-#: chart2/uiconfig/ui/tp_ChartType.ui:350
+#: chart2/uiconfig/ui/tp_ChartType.ui:313
msgctxt "tp_ChartType|linetype"
msgid "Smooth"
msgstr "Vyhladiť"
#. uHHpu
-#: chart2/uiconfig/ui/tp_ChartType.ui:351
+#: chart2/uiconfig/ui/tp_ChartType.ui:314
msgctxt "tp_ChartType|linetype"
msgid "Stepped"
msgstr "Stupňová"
-#. G3eDR
-#: chart2/uiconfig/ui/tp_ChartType.ui:355
-msgctxt "tp_ChartType|extended_tip|linetype"
-msgid "Choose the type of line to draw."
-msgstr "Zvoľte typ čiary."
-
#. JqNUv
-#: chart2/uiconfig/ui/tp_ChartType.ui:366
+#: chart2/uiconfig/ui/tp_ChartType.ui:324
msgctxt "tp_ChartType|properties"
msgid "Properties..."
msgstr "Vlastnosti..."
-#. EnymX
-#: chart2/uiconfig/ui/tp_ChartType.ui:372
-msgctxt "tp_ChartType|extended_tip|properties"
-msgid "Opens a dialog to set the line or curve properties."
-msgstr "Otvorí dialógové okno pre nastavenie vlastností čiary alebo krivky."
-
#. KzGZQ
-#: chart2/uiconfig/ui/tp_ChartType.ui:389
+#: chart2/uiconfig/ui/tp_ChartType.ui:342
msgctxt "tp_ChartType|sort"
msgid "_Sort by X values"
msgstr "_Zoradiť podľa X hodnôt"
-#. tbgi3
-#: chart2/uiconfig/ui/tp_ChartType.ui:397
-msgctxt "tp_ChartType|extended_tip|sort"
-msgid "Connects points by ascending X values, even if the order of values is different, in an XY scatter diagram."
-msgstr "V XY bodovom grafe spojí body podľa vzostupných hodnôt X, aj keď je poradie hodnôt pôvodne iné."
-
#. CmGat
-#: chart2/uiconfig/ui/tp_ChartType.ui:415
+#: chart2/uiconfig/ui/tp_ChartType.ui:363
msgctxt "tp_ChartType|nolinesft"
msgid "_Number of lines"
msgstr "Počet ria_dkov"
-#. bBgDJ
-#: chart2/uiconfig/ui/tp_ChartType.ui:434
-msgctxt "tp_ChartType|extended_tip|nolines"
-msgid "Set the number of lines for the Column and Line chart type."
-msgstr "Určenie počtu čiar pre typy grafov Stĺpcový a Čiarový."
-
-#. M2sxB
-#: chart2/uiconfig/ui/tp_ChartType.ui:503
-msgctxt "tp_ChartType|extended_tip|charttype"
-msgid "Select a basic chart type."
-msgstr "Zvoľte základný typ grafu."
-
#. qRkoY
#: chart2/uiconfig/ui/tp_DataLabel.ui:37
msgctxt "tp_DataLabel|CB_VALUE_AS_NUMBER"
msgid "Show value as _number"
msgstr "Zobraziť hod_noty ako čísla"
-#. uGdoi
-#: chart2/uiconfig/ui/tp_DataLabel.ui:46
-msgctxt "tp_DataLabel|extended_tip|CB_VALUE_AS_NUMBER"
-msgid "Displays the absolute values of the data points."
-msgstr "Zobrazí absolútne hodnoty dátových bodov."
-
#. wRisc
-#: chart2/uiconfig/ui/tp_DataLabel.ui:57
+#: chart2/uiconfig/ui/tp_DataLabel.ui:52
msgctxt "tp_DataLabel|CB_VALUE_AS_PERCENTAGE"
msgid "Show value as _percentage"
msgstr "Zobraziť hodnoty ako _percentá"
-#. FcaPo
-#: chart2/uiconfig/ui/tp_DataLabel.ui:66
-msgctxt "tp_DataLabel|extended_tip|CB_VALUE_AS_PERCENTAGE"
-msgid "Displays the percentage of the data points in each column."
-msgstr "Zobrazí percentuálne hodnoty dátových bodov v každom stĺpci."
-
#. gyqnC
-#: chart2/uiconfig/ui/tp_DataLabel.ui:77
+#: chart2/uiconfig/ui/tp_DataLabel.ui:67
msgctxt "tp_DataLabel|CB_CATEGORY"
msgid "Show _category"
msgstr "Zobraziť k_ategóriu"
-#. EZXZX
-#: chart2/uiconfig/ui/tp_DataLabel.ui:86
-msgctxt "tp_DataLabel|extended_tip|CB_CATEGORY"
-msgid "Shows the data point text labels."
-msgstr "Zobrazí popisy dátových bodov."
-
#. kce65
-#: chart2/uiconfig/ui/tp_DataLabel.ui:97
+#: chart2/uiconfig/ui/tp_DataLabel.ui:82
msgctxt "tp_DataLabel|CB_SYMBOL"
msgid "Show _legend key"
msgstr "Zobraziť kľúč _legendy"
-#. Bm8gp
-#: chart2/uiconfig/ui/tp_DataLabel.ui:106
-msgctxt "tp_DataLabel|extended_tip|CB_SYMBOL"
-msgid "Displays the legend icons next to each data point label."
-msgstr "Zobrazí vedľa každého popisu dátového bodu ikonu z legendy."
-
#. K3uFN
-#: chart2/uiconfig/ui/tp_DataLabel.ui:117
+#: chart2/uiconfig/ui/tp_DataLabel.ui:97
msgctxt "tp_DataLabel|CB_WRAP_TEXT"
msgid "Auto text _wrap"
msgstr "_Automaticky zalomiť text"
#. tgNDD
-#: chart2/uiconfig/ui/tp_DataLabel.ui:132
+#: chart2/uiconfig/ui/tp_DataLabel.ui:112
msgctxt "tp_DataLabel|PB_NUMBERFORMAT"
msgid "Number _format..."
msgstr "_Formát čísla..."
-#. nzq24
-#: chart2/uiconfig/ui/tp_DataLabel.ui:140
-msgctxt "tp_DataLabel|extended_tip|PB_NUMBERFORMAT"
-msgid "Opens a dialog to select the number format."
-msgstr "Otvorí dialóg pre výber formátu čísla."
-
#. PYC2b
-#: chart2/uiconfig/ui/tp_DataLabel.ui:151
+#: chart2/uiconfig/ui/tp_DataLabel.ui:126
msgctxt "tp_DataLabel|PB_PERCENT_NUMBERFORMAT"
msgid "Percentage f_ormat..."
msgstr "Percentuálny f_ormát..."
-#. 3wD3x
-#: chart2/uiconfig/ui/tp_DataLabel.ui:159
-msgctxt "tp_DataLabel|extended_tip|PB_PERCENT_NUMBERFORMAT"
-msgid "Opens a dialog to select the percentage format."
-msgstr "Otvorí dialóg pre výber formátu percent."
-
#. gFELD
-#: chart2/uiconfig/ui/tp_DataLabel.ui:172
+#: chart2/uiconfig/ui/tp_DataLabel.ui:142
msgctxt "tp_DataLabel|CT_LABEL_DIAL"
msgid "ABCD"
msgstr "ABCD"
#. GqA8C
-#: chart2/uiconfig/ui/tp_DataLabel.ui:191
+#: chart2/uiconfig/ui/tp_DataLabel.ui:161
msgctxt "tp_DataLabel|FT_TEXT_SEPARATOR"
msgid "_Separator"
msgstr "_Oddeľovač"
#. oPhGH
-#: chart2/uiconfig/ui/tp_DataLabel.ui:208
+#: chart2/uiconfig/ui/tp_DataLabel.ui:178
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "Space"
msgstr "Medzerník"
#. fR4fG
-#: chart2/uiconfig/ui/tp_DataLabel.ui:209
+#: chart2/uiconfig/ui/tp_DataLabel.ui:179
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "Comma"
msgstr "Čiarka"
#. 5baF4
-#: chart2/uiconfig/ui/tp_DataLabel.ui:210
+#: chart2/uiconfig/ui/tp_DataLabel.ui:180
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "Semicolon"
msgstr "Bodkočiarka"
#. 8MGkQ
-#: chart2/uiconfig/ui/tp_DataLabel.ui:211
+#: chart2/uiconfig/ui/tp_DataLabel.ui:181
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "New line"
msgstr "Nový riadok"
#. bpmiF
-#: chart2/uiconfig/ui/tp_DataLabel.ui:212
+#: chart2/uiconfig/ui/tp_DataLabel.ui:182
msgctxt "tp_DataLabel|liststoreSEPARATOR"
msgid "Period"
msgstr "Bodka"
-#. jjR8u
-#: chart2/uiconfig/ui/tp_DataLabel.ui:216
-msgctxt "tp_DataLabel|extended_tip|LB_TEXT_SEPARATOR"
-msgid "Selects the separator between multiple text strings for the same object."
-msgstr "Vyberie oddeľovač medzi viacnásobnými textovými reťazcami v rovnakom objekte."
-
#. 2MNGz
-#: chart2/uiconfig/ui/tp_DataLabel.ui:242
+#: chart2/uiconfig/ui/tp_DataLabel.ui:207
msgctxt "tp_DataLabel|FT_LABEL_PLACEMENT"
msgid "Place_ment"
msgstr "U_miestnenie"
#. L2MYb
-#: chart2/uiconfig/ui/tp_DataLabel.ui:259
+#: chart2/uiconfig/ui/tp_DataLabel.ui:224
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Best fit"
msgstr "Najlepšie umiestnenie"
#. ba7eW
-#: chart2/uiconfig/ui/tp_DataLabel.ui:260
+#: chart2/uiconfig/ui/tp_DataLabel.ui:225
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Center"
msgstr "Na stred"
#. nW5vs
-#: chart2/uiconfig/ui/tp_DataLabel.ui:261
+#: chart2/uiconfig/ui/tp_DataLabel.ui:226
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Above"
msgstr "Nad"
#. gW9Aa
-#: chart2/uiconfig/ui/tp_DataLabel.ui:262
+#: chart2/uiconfig/ui/tp_DataLabel.ui:227
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Top left"
msgstr "Nahor doľava"
#. UQBcJ
-#: chart2/uiconfig/ui/tp_DataLabel.ui:263
+#: chart2/uiconfig/ui/tp_DataLabel.ui:228
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Left"
msgstr "Vľavo"
#. CVw6x
-#: chart2/uiconfig/ui/tp_DataLabel.ui:264
+#: chart2/uiconfig/ui/tp_DataLabel.ui:229
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Bottom left"
msgstr "Doľava dole"
#. EF7Qb
-#: chart2/uiconfig/ui/tp_DataLabel.ui:265
+#: chart2/uiconfig/ui/tp_DataLabel.ui:230
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Below"
msgstr "Pod"
#. bdAYf
-#: chart2/uiconfig/ui/tp_DataLabel.ui:266
+#: chart2/uiconfig/ui/tp_DataLabel.ui:231
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Bottom right"
msgstr "Vpravo dole"
#. kHGEs
-#: chart2/uiconfig/ui/tp_DataLabel.ui:267
+#: chart2/uiconfig/ui/tp_DataLabel.ui:232
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Right"
msgstr "Vpravo"
#. GFkmP
-#: chart2/uiconfig/ui/tp_DataLabel.ui:268
+#: chart2/uiconfig/ui/tp_DataLabel.ui:233
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Top right"
msgstr "Nahor doprava"
#. KFZhx
-#: chart2/uiconfig/ui/tp_DataLabel.ui:269
+#: chart2/uiconfig/ui/tp_DataLabel.ui:234
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Inside"
msgstr "Vnútri"
#. BJm6w
-#: chart2/uiconfig/ui/tp_DataLabel.ui:270
+#: chart2/uiconfig/ui/tp_DataLabel.ui:235
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Outside"
msgstr "Zvonka"
#. XGkMi
-#: chart2/uiconfig/ui/tp_DataLabel.ui:271
+#: chart2/uiconfig/ui/tp_DataLabel.ui:236
msgctxt "tp_DataLabel|liststorePLACEMENT"
msgid "Near origin"
msgstr "Blízko počiatku"
-#. vq2Bf
-#: chart2/uiconfig/ui/tp_DataLabel.ui:275
-msgctxt "tp_DataLabel|extended_tip|LB_LABEL_PLACEMENT"
-msgid "Selects the placement of data labels relative to the objects."
-msgstr "Vyberie relatívne umiestnenie popisov dát v objekte."
-
#. PNGYD
-#: chart2/uiconfig/ui/tp_DataLabel.ui:295
+#: chart2/uiconfig/ui/tp_DataLabel.ui:255
msgctxt "tp_DataLabel|STR_DLG_NUMBERFORMAT_FOR_PERCENTAGE_VALUE"
msgid "Number Format for Percentage Value"
msgstr "Formát čísel pre percentnú hodnotu"
#. 3BZrx
-#: chart2/uiconfig/ui/tp_DataLabel.ui:313
+#: chart2/uiconfig/ui/tp_DataLabel.ui:273
msgctxt "tp_DataLabel|label1"
msgid "Text Attributes"
msgstr "Atribúty textu"
-#. avLCL
-#: chart2/uiconfig/ui/tp_DataLabel.ui:357
-msgctxt "tp_DataLabel|extended_tip|CT_DIAL"
-msgid "Click in the dial to set the text orientation for the data labels."
-msgstr "Otočenie popisov dát nastavíte kliknutím na požadované miesto kruhovej stupnice."
-
-#. eKwUH
-#: chart2/uiconfig/ui/tp_DataLabel.ui:377
-msgctxt "tp_DataLabel|extended_tip|NF_LABEL_DEGREES"
-msgid "Enter the counterclockwise rotation angle for the data labels."
-msgstr "Zadajte pre popisy dát uhol otočenia orientovaný proti smeru hodinových ručičiek."
-
#. VArif
-#: chart2/uiconfig/ui/tp_DataLabel.ui:391
+#: chart2/uiconfig/ui/tp_DataLabel.ui:341
msgctxt "tp_DataLabel|FT_LABEL_DEGREES"
msgid "_Degrees"
msgstr "_Stupňov"
#. zdP7E
-#: chart2/uiconfig/ui/tp_DataLabel.ui:416
+#: chart2/uiconfig/ui/tp_DataLabel.ui:366
msgctxt "tp_DataLabel|FT_LABEL_TEXTDIR"
msgid "Te_xt direction"
msgstr "Smer _textu"
-#. MYXZo
-#: chart2/uiconfig/ui/tp_DataLabel.ui:433
-msgctxt "tp_DataLabel|extended_tip|LB_LABEL_TEXTDIR"
-msgid "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled."
-msgstr "Určite smer textu pre odsek, ktorý používa komplexné rozloženie textu (CTL). Táto vlastnosť je dostupná, len ak je povolené komplexné rozloženie."
-
#. PKnKk
-#: chart2/uiconfig/ui/tp_DataLabel.ui:458
+#: chart2/uiconfig/ui/tp_DataLabel.ui:403
msgctxt "tp_DataLabel|label2"
msgid "Rotate Text"
msgstr "Otočiť text"
-#. wBzcx
-#: chart2/uiconfig/ui/tp_DataLabel.ui:491
-msgctxt "tp_DataLabel|CB_CUSTOM_LEADER_LINES"
-msgid "_Connect displaced data labels to data points"
-msgstr "_Prepojiť premiestnené popisy údajov s dátovými bodmi"
-
-#. BXobT
-#: chart2/uiconfig/ui/tp_DataLabel.ui:500
-msgctxt "tp_DataLabel|extended_tip|CB_CUSTOM_LEADER_LINES"
-msgid "Draws a line connecting the data labels to the data points"
-msgstr ""
-
-#. MBFBB
-#: chart2/uiconfig/ui/tp_DataLabel.ui:518
-msgctxt "tp_DataLabel|label3"
-msgid "Leader Lines"
-msgstr "Prepojovacie čiary"
-
-#. iDheE
-#: chart2/uiconfig/ui/tp_DataLabel.ui:534
-msgctxt "tp_DataLabel|extended_tip|tp_DataLabel"
-msgid "Opens the Data Labels dialog, which enables you to set the data labels."
-msgstr "Otvorí dialógové okno Popisy dát, ktorý umožňuje nastavenie popisu dát."
-
#. rXE7B
#: chart2/uiconfig/ui/tp_DataPointOption.ui:41
msgctxt "tp_DataPointOption|CB_LEGEND_ENTRY_HIDDEN"
msgid "Hide legend entry"
msgstr "Skryť položku legendy"
-#. k2s9H
-#: chart2/uiconfig/ui/tp_DataPointOption.ui:49
-msgctxt "tp_DataPointOption|extended_tip|CB_LEGEND_ENTRY_HIDDEN"
-msgid "Do not show legend entry for the selected data series or data point."
-msgstr "Pre vybrané rady dát alebo dátové body nezobraziť položky legendy."
-
#. DUQwA
-#: chart2/uiconfig/ui/tp_DataPointOption.ui:67
+#: chart2/uiconfig/ui/tp_DataPointOption.ui:62
msgctxt "tp_DataPointOption|label1"
msgid "Legend Entry"
msgstr "Položka legendy"
@@ -3843,121 +3015,61 @@ msgid "Select data range"
msgstr "Vybrať dátovú oblasť"
#. 2iNp6
-#: chart2/uiconfig/ui/tp_DataSource.ui:70
+#: chart2/uiconfig/ui/tp_DataSource.ui:60
msgctxt "tp_DataSource|FT_SERIES"
msgid "Data _series:"
msgstr "~Dátový rad:"
-#. oFoeg
-#: chart2/uiconfig/ui/tp_DataSource.ui:113
-msgctxt "tp_DataSource|extended_tip|LB_SERIES"
-msgid "Shows a list of all data series in the chart. Click an entry to view and edit that data series. Click Add to insert a new series into the list after the selected entry."
-msgstr "Zobrazuje zoznam všetkých dátových radov grafu. Po kliknutí na záznam sa tento zobrazí a môžete ho upraviť. Kliknutím na Pridať vložíte nové rady do zoznamu za vybraný záznam."
-
#. rqABh
-#: chart2/uiconfig/ui/tp_DataSource.ui:133
+#: chart2/uiconfig/ui/tp_DataSource.ui:118
msgctxt "tp_DataSource|BTN_ADD"
msgid "_Add"
msgstr "_Pridať"
-#. AExBB
-#: chart2/uiconfig/ui/tp_DataSource.ui:141
-msgctxt "tp_DataSource|extended_tip|BTN_ADD"
-msgid "Adds a new entry below the current entry in the Data Series list. If an entry is selected, the new data series gets the same chart type."
-msgstr "Pridá nový záznam pod aktuálny záznam v zozname Dátové rady. Pokiaľ je vybraný nejaký záznam, nový dátový rad bude rovnakého typu."
-
#. dCyXA
-#: chart2/uiconfig/ui/tp_DataSource.ui:159
+#: chart2/uiconfig/ui/tp_DataSource.ui:139
msgctxt "tp_DataSource|BTN_UP-atkobject"
msgid "Up"
msgstr "Nahor"
-#. GTEK3
-#: chart2/uiconfig/ui/tp_DataSource.ui:160
-msgctxt "tp_DataSource|extended_tip|BTN_UP"
-msgid "Moves up the selected entry in the Data Series list."
-msgstr "Posunie označený záznam v zozname Dátových radov vyššie."
-
#. 3v9x2
-#: chart2/uiconfig/ui/tp_DataSource.ui:171
+#: chart2/uiconfig/ui/tp_DataSource.ui:150
msgctxt "tp_DataSource|BTN_REMOVE"
msgid "_Remove"
msgstr "_Odstrániť"
-#. BDDwm
-#: chart2/uiconfig/ui/tp_DataSource.ui:179
-msgctxt "tp_DataSource|extended_tip|BTN_REMOVE"
-msgid "Removes the selected entry from the Data Series list."
-msgstr "Odstráni označený záznam zo zoznamu Dátových radov."
-
#. MkZNf
-#: chart2/uiconfig/ui/tp_DataSource.ui:197
+#: chart2/uiconfig/ui/tp_DataSource.ui:171
msgctxt "tp_DataSource|BTN_DOWN-atkobject"
msgid "Down"
msgstr "Nadol"
-#. 558EK
-#: chart2/uiconfig/ui/tp_DataSource.ui:198
-msgctxt "tp_DataSource|extended_tip|BTN_DOWN"
-msgid "Moves down the selected entry in the Data Series list."
-msgstr "Posunie označený záznam v zozname Dátových radov nižšie."
-
#. mC5Ge
-#: chart2/uiconfig/ui/tp_DataSource.ui:238
+#: chart2/uiconfig/ui/tp_DataSource.ui:211
msgctxt "tp_DataSource|FT_ROLE"
msgid "_Data ranges:"
msgstr "_Dátové oblasti:"
-#. ZB6Dv
-#: chart2/uiconfig/ui/tp_DataSource.ui:291
-msgctxt "tp_DataSource|extended_tip|LB_ROLE"
-msgid "Shows all the data ranges used by the data series that is selected in the Data Series list box. Each data range shows the role name and the source range address."
-msgstr "Zobrazí všetky dátové oblasti používané dátovými radmi, ktoré sú vybrané v zozname Dátové rady. Pre každú dátovú oblasť sa zobrazuje názov roly a adresa zdrojovej oblasti."
-
#. qRMfs
-#: chart2/uiconfig/ui/tp_DataSource.ui:306
+#: chart2/uiconfig/ui/tp_DataSource.ui:274
msgctxt "tp_DataSource|FT_RANGE"
msgid "Ran_ge for %VALUETYPE"
msgstr "O_blasť pre %VALUETYPE"
-#. M2BSw
-#: chart2/uiconfig/ui/tp_DataSource.ui:330
-msgctxt "tp_DataSource|extended_tip|EDT_RANGE"
-msgid "Shows the source range address from the second column of the Data Range list box. You can change the range in the text box or by dragging in the document. To minimize this dialog while you select the data range in Calc, click the Select data range button."
-msgstr "Zobrazuje adresu zdrojovej oblasti z druhého stĺpca zoznamu Dátová oblasť. Oblasť môžete upraviť v textovom poli alebo označiť myšou v dokumente. Ak chcete toto dialógové okno počas označovania dátovej oblasti minimalizovať, kliknite na tlačidlo Vybrať dátovú oblasť."
-
-#. CwKet
-#: chart2/uiconfig/ui/tp_DataSource.ui:347
-msgctxt "tp_DataSource|extended_tip|IMB_RANGE_MAIN"
-msgid "Shows the source range address from the second column of the Data Range list box. You can change the range in the text box or by dragging in the document. To minimize this dialog while you select the data range in Calc, click the Select data range button."
-msgstr "Zobrazuje adresu zdrojovej oblasti z druhého stĺpca zoznamu Dátová oblasť. Oblasť môžete upraviť v textovom poli alebo označiť myšou v dokumente. Ak chcete toto dialógové okno počas označovania dátovej oblasti minimalizovať, kliknite na tlačidlo Vybrať dátovú oblasť."
-
#. FX2CF
-#: chart2/uiconfig/ui/tp_DataSource.ui:371
+#: chart2/uiconfig/ui/tp_DataSource.ui:329
msgctxt "tp_DataSource|FT_CATEGORIES"
msgid "_Categories"
msgstr "Kate_górie"
#. EiwXn
-#: chart2/uiconfig/ui/tp_DataSource.ui:385
+#: chart2/uiconfig/ui/tp_DataSource.ui:343
msgctxt "tp_DataSource|FT_DATALABELS"
msgid "Data _labels"
msgstr "Popisy _dát"
-#. ogTbE
-#: chart2/uiconfig/ui/tp_DataSource.ui:414
-msgctxt "tp_DataSource|extended_tip|EDT_CATEGORIES"
-msgid "Shows the source range address of the categories (the texts you can see on the x-axis of a category chart). For an XY-chart, the text box contains the source range of the data labels which are displayed for the data points. To minimize this dialog while you select the data range in Calc, click the Select data range button."
-msgstr "Zobrazuje adresu zdrojovej oblasti pre kategórie (texty, ktoré sa zobrazia na osi X). Pre graf XY toto textové pole obsahuje zdrojovú oblasť pre popisy dát, ktoré sa zobrazujú pri dátových bodoch. Ak chcete toto dialógové okno počas označovania dátovej oblasti minimalizovať, kliknite na tlačidlo Vybrať dátovú oblasť."
-
-#. EYFEo
-#: chart2/uiconfig/ui/tp_DataSource.ui:431
-msgctxt "tp_DataSource|extended_tip|IMB_RANGE_CAT"
-msgid "Shows the source range address of the categories (the texts you can see on the x-axis of a category chart). For an XY-chart, the text box contains the source range of the data labels which are displayed for the data points. To minimize this dialog while you select the data range in Calc, click the Select data range button."
-msgstr "Zobrazuje adresu zdrojovej oblasti pre kategórie (texty, ktoré sa zobrazia na osi X). Pre graf XY toto textové pole obsahuje zdrojovú oblasť pre popisy dát, ktoré sa zobrazujú pri dátových bodoch. Ak chcete toto dialógové okno počas označovania dátovej oblasti minimalizovať, kliknite na tlačidlo Vybrať dátovú oblasť."
-
#. YwALA
-#: chart2/uiconfig/ui/tp_DataSource.ui:468
+#: chart2/uiconfig/ui/tp_DataSource.ui:416
msgctxt "tp_DataSource|FT_CAPTION_FOR_WIZARD"
msgid "Customize Data Ranges for Individual Data Series"
msgstr "Prispôsobiť dátové oblasti pre jednotlivé dátové rady"
@@ -3968,224 +3080,128 @@ msgctxt "tp_ErrorBars|RB_NONE"
msgid "_None"
msgstr "_Nič"
-#. YVhm9
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:68
-msgctxt "tp_ErrorBars|extended_tip|RB_NONE"
-msgid "Does not show any error bars."
-msgstr "Nezobrazí žiadne chybové úsečky."
-
#. Cq44D
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:80
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:75
msgctxt "tp_ErrorBars|RB_CONST"
msgid "_Constant Value"
msgstr "Konštantná ho_dnota"
-#. Aetuh
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:91
-msgctxt "tp_ErrorBars|extended_tip|RB_CONST"
-msgid "Displays constant values that you specify in the Parameters area."
-msgstr "Zobrazí konštantné hodnoty, ktoré určíte v oblasti Parametre."
-
#. Njqok
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:103
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:93
msgctxt "tp_ErrorBars|RB_PERCENT"
msgid "_Percentage"
msgstr "_Percentuálne"
-#. kqgrm
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:114
-msgctxt "tp_ErrorBars|extended_tip|RB_PERCENT"
-msgid "Displays a percentage. The display refers to the corresponding data point. Set the percentage in the Parameters area."
-msgstr "Zobrazí percentuálnu hodnotu. Toto zobrazenie odkazuje na zodpovedajúce dátové body. Percentuálnu hodnotu nastavte v oblasti Parametre."
-
-#. qCQY8
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:141
-msgctxt "tp_ErrorBars|extended_tip|RB_FUNCTION"
-msgid "Select a function to calculate the error bars."
-msgstr "Vyberte funkciu pre výpočet chybových čiar."
-
#. GnXao
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:156
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:136
msgctxt "tp_ErrorBars|liststoreFUNCTION"
msgid "Standard Error"
msgstr "Štandardná chyba"
#. SQ3rE
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:157
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:137
msgctxt "tp_ErrorBars|liststoreFUNCTION"
msgid "Standard Deviation"
msgstr "Štandardná odchýlka"
#. GagXt
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:158
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:138
msgctxt "tp_ErrorBars|liststoreFUNCTION"
msgid "Variance"
msgstr "Rozptyl"
#. Siyxd
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:159
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:139
msgctxt "tp_ErrorBars|liststoreFUNCTION"
msgid "Error Margin"
msgstr "Chybový pás"
-#. j6oTg
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:163
-msgctxt "tp_ErrorBars|extended_tip|LB_FUNCTION"
-msgid "Select a function to calculate the error bars."
-msgstr "Vyberte funkciu pre výpočet chybových čiar."
-
#. AbhAQ
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:182
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:157
msgctxt "tp_ErrorBars|RB_RANGE"
msgid "Cell _Range"
msgstr "Obla_sť buniek"
-#. x3uW3
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:193
-msgctxt "tp_ErrorBars|extended_tip|RB_RANGE"
-msgid "Click Cell Range and then specify a cell range from which to take the positive and negative error bar values."
-msgstr "Kliknite na oblasť buniek a potom špecifikujte oblasť buniek, z ktorej chcete definovať kladné a záporné hodnoty chybovej čiary."
-
#. 9Y8Vo
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:211
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:181
msgctxt "tp_ErrorBars|label1"
msgid "Error Category"
msgstr "Chybová kategória"
#. q8qXd
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:245
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:215
msgctxt "tp_ErrorBars|RB_BOTH"
msgid "Positive _and Negative"
msgstr "Kladné _a záporné"
-#. LDszs
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:256
-msgctxt "tp_ErrorBars|extended_tip|RB_BOTH"
-msgid "Shows positive and negative error bars."
-msgstr "Ukáže kladné a záporné chybové čiary."
-
#. 6F78D
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:267
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:232
msgctxt "tp_ErrorBars|RB_POSITIVE"
msgid "Pos_itive"
msgstr "_Kladné"
-#. oSnnp
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:278
-msgctxt "tp_ErrorBars|extended_tip|RB_POSITIVE"
-msgid "Shows only positive error bars."
-msgstr "Ukáže iba kladné chybové čiary."
-
#. jdFbj
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:289
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:249
msgctxt "tp_ErrorBars|RB_NEGATIVE"
msgid "Ne_gative"
msgstr "_Záporné"
-#. DvqJN
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:300
-msgctxt "tp_ErrorBars|extended_tip|RB_NEGATIVE"
-msgid "Shows only negative error bars."
-msgstr "Ukáže iba záporné chybové čiary."
-
#. D4Aou
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:350
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:305
msgctxt "tp_ErrorBars|label2"
msgid "Error Indicator"
msgstr "Indikátor chyby"
#. haTNd
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:398
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:353
msgctxt "tp_ErrorBars|FT_POSITIVE"
msgid "P_ositive (+)"
msgstr "Kla_dné (+)"
-#. 7bDeP
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:416
-msgctxt "tp_ErrorBars|extended_tip|MF_POSITIVE"
-msgid "Enter the value to add to the displayed value as the positive error value."
-msgstr "Vložte hodnotu na pripočítanie k zobrazenej hodnote ako kladnú chybovú hodnotu."
-
-#. D5XCD
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:434
-msgctxt "tp_ErrorBars|extended_tip|ED_RANGE_POSITIVE"
-msgid "Enter the address range from where to get the positive error values. Use the Shrink button to select the range from a sheet."
-msgstr "Vložte adresu oblasti, z ktorej sa má získať kladná chybová hodnota. Použite tlačidlo Zmenšiť pre výber oblasti v liste."
-
#. rGBRC
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:449
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:394
msgctxt "tp_ErrorBars|IB_RANGE_POSITIVE|tooltip_text"
msgid "Select data range"
msgstr "Vybrať dátovú oblasť"
-#. QYRko
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:453
-msgctxt "tp_ErrorBars|extended_tip|IB_RANGE_POSITIVE"
-msgid "Click a button to shrink the dialog, then use the mouse to select the cell range in the spreadsheet. Click the button again to restore the dialog to full size."
-msgstr "Kliknite na tlačidlo zmenšiť dialóg, potom použite myš pre výber oblasti buniek v zošite. Pre obnovenie dialógu do pôvodnej veľkosti kliknite znovu na tlačidlo."
-
#. C5ZdQ
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:479
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:419
msgctxt "tp_ErrorBars|FT_NEGATIVE"
msgid "_Negative (-)"
msgstr "Zápor_né (-)"
-#. TAAD2
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:497
-msgctxt "tp_ErrorBars|extended_tip|MF_NEGATIVE"
-msgid "Enter the value to subtract from the displayed value as the negative error value."
-msgstr "Vložte hodnotu na odčítanie od zobrazenej hodnoty ako zápornú chybovú hodnotu."
-
-#. S8d3Y
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:514
-msgctxt "tp_ErrorBars|extended_tip|ED_RANGE_NEGATIVE"
-msgid "Enter the address range from where to get the negative error values. Use the Shrink button to select the range from a sheet."
-msgstr "Vložte adresu oblasti, z ktorej sa má získať záporná chybová hodnota. Použite tlačidlo Zmenšiť pre výber oblasti v liste."
-
#. EVG7h
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:529
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:459
msgctxt "tp_ErrorBars|IB_RANGE_NEGATIVE|tooltip_text"
msgid "Select data range"
msgstr "Vybrať dátovú oblasť"
-#. oEACZ
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:533
-msgctxt "tp_ErrorBars|extended_tip|IB_RANGE_NEGATIVE"
-msgid "Click a button to shrink the dialog, then use the mouse to select the cell range in the spreadsheet. Click the button again to restore the dialog to full size."
-msgstr "Kliknite na tlačidlo zmenšiť dialóg, potom použite myš pre výber oblasti buniek v zošite. Pre obnovenie dialógu do pôvodnej veľkosti kliknite znovu na tlačidlo."
-
#. wdsax
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:552
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:477
msgctxt "tp_ErrorBars|CB_SYN_POS_NEG"
msgid "Same value for both"
msgstr "Rovnaká hodnota pre obidva"
-#. DvgLw
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:561
-msgctxt "tp_ErrorBars|extended_tip|CB_SYN_POS_NEG"
-msgid "Enable to use the positive error values also as negative error values. You can only change the value of the \"Positive (+)\" box. That value gets copied to the \"Negative (-)\" box automatically."
-msgstr "Povolí použiť kladnú chybovú hodnotu ako zápornú chybovú hodnotu. Budete môcť meniť iba hodnoty v poli 'Kladné (+)'. Tieto hodnoty sa automaticky skopírujú do poľa 'Záporné (-)'."
-
#. BEj3C
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:579
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:499
msgctxt "tp_ErrorBars|label3"
msgid "Parameters"
msgstr "Parametre"
#. XxRKD
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:596
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:516
msgctxt "tp_ErrorBars|STR_DATA_SELECT_RANGE_FOR_POSITIVE_ERRORBARS"
msgid "Select Range for Positive Error Bars"
msgstr "Vyberte oblasť pre kladné chybové úsečky"
#. FXjsk
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:607
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:527
msgctxt "tp_ErrorBars|STR_DATA_SELECT_RANGE_FOR_NEGATIVE_ERRORBARS"
msgid "Select Range for Negative Error Bars"
msgstr "Vyberte oblasť pre záporné chybové úsečky"
#. AAfgS
-#: chart2/uiconfig/ui/tp_ErrorBars.ui:618
+#: chart2/uiconfig/ui/tp_ErrorBars.ui:538
msgctxt "tp_ErrorBars|STR_CONTROLTEXT_ERROR_BARS_FROM_DATA"
msgid "From Data Table"
msgstr "Z tabuľky dát"
@@ -4196,86 +3212,50 @@ msgctxt "tp_LegendPosition|left"
msgid "_Left"
msgstr "_Vľavo"
-#. 98N4N
-#: chart2/uiconfig/ui/tp_LegendPosition.ui:39
-msgctxt "tp_LegendPosition|extended_tip|left"
-msgid "Positions the legend at the left of the chart."
-msgstr "Umiestni legendu vľavo od grafu."
-
#. WGGa8
-#: chart2/uiconfig/ui/tp_LegendPosition.ui:50
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:45
msgctxt "tp_LegendPosition|right"
msgid "_Right"
msgstr "Vp_ravo"
-#. BgNsc
-#: chart2/uiconfig/ui/tp_LegendPosition.ui:60
-msgctxt "tp_LegendPosition|extended_tip|right"
-msgid "Positions the legend at the right of the chart."
-msgstr "Umiestni legendu vpravo od grafu."
-
#. aURZs
-#: chart2/uiconfig/ui/tp_LegendPosition.ui:71
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:61
msgctxt "tp_LegendPosition|top"
msgid "_Top"
msgstr "_Hore"
-#. GppCU
-#: chart2/uiconfig/ui/tp_LegendPosition.ui:81
-msgctxt "tp_LegendPosition|extended_tip|top"
-msgid "Positions the legend at the top of the chart."
-msgstr "Umiestni legendu nad graf."
-
#. 9WgFV
-#: chart2/uiconfig/ui/tp_LegendPosition.ui:92
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:77
msgctxt "tp_LegendPosition|bottom"
msgid "_Bottom"
msgstr "_Dole"
-#. dvBdX
-#: chart2/uiconfig/ui/tp_LegendPosition.ui:102
-msgctxt "tp_LegendPosition|extended_tip|bottom"
-msgid "Positions the legend at the bottom of the chart."
-msgstr "Umiestni legendu pod graf."
-
#. z84pQ
-#: chart2/uiconfig/ui/tp_LegendPosition.ui:119
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:99
msgctxt "tp_LegendPosition|TXT_POSITION"
msgid "Position"
msgstr "Poloha"
#. 6teoB
-#: chart2/uiconfig/ui/tp_LegendPosition.ui:154
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:134
msgctxt "tp_LegendPosition|FT_LEGEND_TEXTDIR"
msgid "Te_xt direction"
msgstr "Smer _textu"
-#. PSPoQ
-#: chart2/uiconfig/ui/tp_LegendPosition.ui:170
-msgctxt "tp_LegendPosition|extended_tip|LB_LEGEND_TEXTDIR"
-msgid "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled."
-msgstr "Určite smer textu pre odsek, ktorý používa komplexné rozloženie textu (CTL). Táto vlastnosť je dostupná, len ak je povolené komplexné rozloženie."
-
#. sUDkC
-#: chart2/uiconfig/ui/tp_LegendPosition.ui:188
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:163
msgctxt "tp_LegendPosition|TXT_ORIENTATION"
msgid "Text Orientation"
msgstr "Orientácia textu"
#. VsH8A
-#: chart2/uiconfig/ui/tp_LegendPosition.ui:221
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:196
msgctxt "tp_LegendPosition|CB_NO_OVERLAY"
msgid "Show the legend without overlapping the chart"
msgstr "Zobraziť legendu bez prekrývania grafu"
-#. yi8AX
-#: chart2/uiconfig/ui/tp_LegendPosition.ui:230
-msgctxt "tp_LegendPosition|extended_tip|CB_NO_OVERLAY"
-msgid "Specifies whether the legend should overlap the chart."
-msgstr "Určuje, či má legenda prekrývať graf."
-
#. 82yue
-#: chart2/uiconfig/ui/tp_LegendPosition.ui:248
+#: chart2/uiconfig/ui/tp_LegendPosition.ui:218
msgctxt "tp_LegendPosition|TXT_OVERLAY"
msgid "Overlay"
msgstr "Prekrytie"
@@ -4286,50 +3266,32 @@ msgctxt "tp_PolarOptions|CB_CLOCKWISE"
msgid "_Clockwise direction"
msgstr "V smere hodinový_ch ručičiek"
-#. GikR7
-#: chart2/uiconfig/ui/tp_PolarOptions.ui:39
-msgctxt "tp_PolarOptions|extended_tip|CB_CLOCKWISE"
-msgid "The default direction in which the pieces of a pie chart are ordered is counterclockwise. Enable the Clockwise direction checkbox to draw the pieces in opposite direction."
-msgstr "Východiskový smer, v ktorom sú segmenty koláčového grafu usporiadané, je proti smeru hodinových ručičiek. Zaškrtnite možnosť V smere hodinových ručičiek pre vykreslenie grafu v opačnom smere."
-
#. ATHCu
-#: chart2/uiconfig/ui/tp_PolarOptions.ui:50
+#: chart2/uiconfig/ui/tp_PolarOptions.ui:45
msgctxt "tp_PolarOptions|label1"
msgid "Orientation"
msgstr "Orientácia"
-#. mEJCE
-#: chart2/uiconfig/ui/tp_PolarOptions.ui:90
-msgctxt "tp_PolarOptions|extended_tip|CT_ANGLE_DIAL"
-msgid "Drag the small dot along the circle or click any position on the circle to set the starting angle of a pie or donut chart. The starting angle is the mathematical angle position where the first piece is drawn. The value of 90 degrees draws the first piece at the 12 o'clock position. A value of 0 degrees starts at the 3 o'clock position."
-msgstr "Presuňte malú bodku na kruhu alebo kliknite na ľubovoľnom mieste na kruh pre nastavenie počiatočného uhlu koláčového alebo prstencového grafu. Počiatočný uhol je matematická poloha uhlu, kde bude vykreslená prvá časť grafu. Hodnota 90 stupňov vykreslí prvú časť na pozícii 12 hodín. Hodnota 0 stupňov začína na pozícii 3 hodiny."
-
-#. EEVTg
-#: chart2/uiconfig/ui/tp_PolarOptions.ui:109
-msgctxt "tp_PolarOptions|extended_tip|NF_STARTING_ANGLE"
-msgid "Enter the starting angle between 0 and 359 degrees. You can also click the arrows to change the displayed value."
-msgstr "Vložte počiatočný uhol medzi 0 a 359 stupňami. Pre zmenu hodnôt veľkosti môžete tiež kliknúť na šípky."
-
#. prqEa
-#: chart2/uiconfig/ui/tp_PolarOptions.ui:123
+#: chart2/uiconfig/ui/tp_PolarOptions.ui:108
msgctxt "tp_PolarOptions|FT_ROTATION_DEGREES"
msgid "_Degrees"
msgstr "_Stupňov"
#. iHLKn
-#: chart2/uiconfig/ui/tp_PolarOptions.ui:142
+#: chart2/uiconfig/ui/tp_PolarOptions.ui:127
msgctxt "tp_PolarOptions|label2"
msgid "Starting Angle"
msgstr "Počiatočný uhol"
#. 5zEew
-#: chart2/uiconfig/ui/tp_PolarOptions.ui:170
+#: chart2/uiconfig/ui/tp_PolarOptions.ui:155
msgctxt "tp_PolarOptions|CB_INCLUDE_HIDDEN_CELLS_POLAR"
msgid "Include _values from hidden cells"
msgstr "Zahrnúť hodnoty zo sk_rytých buniek"
#. F5FTp
-#: chart2/uiconfig/ui/tp_PolarOptions.ui:185
+#: chart2/uiconfig/ui/tp_PolarOptions.ui:170
msgctxt "tp_PolarOptions|label3"
msgid "Plot Options"
msgstr "Možnosti diagramu"
@@ -4352,92 +3314,56 @@ msgctxt "tp_RangeChooser|FT_RANGE"
msgid "_Data range:"
msgstr "_Dátová oblasť:"
-#. WKLi7
-#: chart2/uiconfig/ui/tp_RangeChooser.ui:65
-msgctxt "tp_RangeChooser|extended_tip|ED_RANGE"
-msgid "Enter the data range that you want to include in your chart. To minimize this dialog while you select the data range in Calc, click the Select data range button."
-msgstr "Zadajte dátovú oblasť, ktorú chcete použiť v grafe. Ak chcete toto dialógové okno počas označovania dátovej oblasti minimalizovať, kliknite na tlačidlo Vybrať dátovú oblasť."
-
#. FyVoD
-#: chart2/uiconfig/ui/tp_RangeChooser.ui:79
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:74
msgctxt "tp_RangeChooser|IB_RANGE|tooltip_text"
msgid "Select data range"
msgstr "Vybrať dátovú oblasť"
-#. FVivY
-#: chart2/uiconfig/ui/tp_RangeChooser.ui:83
-msgctxt "tp_RangeChooser|extended_tip|IB_RANGE"
-msgid "Enter the data range that you want to include in your chart. To minimize this dialog while you select the data range in Calc, click the Select data range button."
-msgstr "Zadajte dátovú oblasť, ktorú chcete použiť v grafe. Ak chcete toto dialógové okno počas označovania dátovej oblasti minimalizovať, kliknite na tlačidlo Vybrať dátovú oblasť."
-
#. RGGHE
-#: chart2/uiconfig/ui/tp_RangeChooser.ui:100
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:90
msgctxt "tp_RangeChooser|RB_DATAROWS"
msgid "Data series in _rows"
msgstr "Dátový rad v _riadkoch"
-#. w6DuB
-#: chart2/uiconfig/ui/tp_RangeChooser.ui:110
-msgctxt "tp_RangeChooser|extended_tip|RB_DATAROWS"
-msgid "Data series get their data from consecutive rows in the selected range. For scatter charts, the first data series will contain x-values for all series. All other data series are used as y-values, one for each series."
-msgstr "Dátové rady získavajú dáta z po sebe idúcich riadkov v určenej oblasti. Pre bodové grafy obsahuje prvý dátový rad hodnoty x pre všetky dátové rady. Všetky ostatné dátové rady sa použijú ako hodnoty y, jedna pre každý rad."
-
#. wSDqF
-#: chart2/uiconfig/ui/tp_RangeChooser.ui:121
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:106
msgctxt "tp_RangeChooser|RB_DATACOLS"
msgid "Data series in _columns"
msgstr "Dátový rad v stĺp_coch"
-#. RfFZF
-#: chart2/uiconfig/ui/tp_RangeChooser.ui:131
-msgctxt "tp_RangeChooser|extended_tip|RB_DATACOLS"
-msgid "Data series get their data from consecutive columns in the selected range. For scatter charts, the first data column will contain x-values for all series. All other data columns are used as y-values, one for each series."
-msgstr "Dátové rady získavajú dáta z po sebe idúcich stĺpcov v určenej oblasti. Pre bodové grafy obsahuje prvý dátový rad hodnoty x pre všetky dátové rady. Všetky ostatné dátové rady sa použijú ako hodnoty y, jedna pre každý rad."
-
#. CExLY
-#: chart2/uiconfig/ui/tp_RangeChooser.ui:142
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:122
msgctxt "tp_RangeChooser|CB_FIRST_ROW_ASLABELS"
msgid "_First row as label"
msgstr "_Prvý riadok obsahuje popis osy"
-#. HviBv
-#: chart2/uiconfig/ui/tp_RangeChooser.ui:151
-msgctxt "tp_RangeChooser|extended_tip|CB_FIRST_ROW_ASLABELS"
-msgid "For data series in columns: The first row in the range is used as names for data series. For data series in rows: The first row in the range is used as categories. The remaining rows comprise the data series. If this check box is not selected, all rows are data series."
-msgstr "Pre dátové rady v stĺpcoch: Prvý riadok v oblasti sa použije pre názvy dátových radov. Pre dátové rady v riadkoch: Prvý riadok oblasti sa použije ako kategória. Ďalšie riadky predstavujú dátové rady. Pokiaľ nie je toto pole zaškrtnuté, všetky riadky sú dátové rady."
-
#. ER2D7
-#: chart2/uiconfig/ui/tp_RangeChooser.ui:162
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:137
msgctxt "tp_RangeChooser|CB_FIRST_COLUMN_ASLABELS"
msgid "F_irst column as label"
msgstr "Prvý stĺpec ako pop_is"
-#. tTAhH
-#: chart2/uiconfig/ui/tp_RangeChooser.ui:171
-msgctxt "tp_RangeChooser|extended_tip|CB_FIRST_COLUMN_ASLABELS"
-msgid "For data series in columns: The first column in the range is used as names for data series. For data series in rows: The first column in the range is used as categories. The remaining columns comprise the data columns. If this check box is not selected, all columns are data columns."
-msgstr "Pre dátové rady v stĺpcoch: Prvý stĺpec v oblasti sa použije pre názvy dátových radov. Pre dátové rady v riadkoch: Prvý stĺpec v oblasti sa použije ako kategória. Ďalšie stĺpce predstavujú dátové stĺpce. Pokiaľ nie je toto pole zaškrtnuté, všetky stĺpce sú dátové stĺpce."
-
#. k9TMD
-#: chart2/uiconfig/ui/tp_RangeChooser.ui:192
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:162
msgctxt "tp_RangeChooser|CB_TIME_BASED"
msgid "Time based charting"
msgstr "Časovo závislé grafy"
#. iuxE5
-#: chart2/uiconfig/ui/tp_RangeChooser.ui:242
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:212
msgctxt "tp_RangeChooser|label1"
msgid "Start Table Index"
msgstr "Počiatočný index tabuľky"
#. dnmDQ
-#: chart2/uiconfig/ui/tp_RangeChooser.ui:256
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:226
msgctxt "tp_RangeChooser|label2"
msgid "End Table Index"
msgstr "Koncový index tabuľky"
#. FcYeD
-#: chart2/uiconfig/ui/tp_RangeChooser.ui:274
+#: chart2/uiconfig/ui/tp_RangeChooser.ui:244
msgctxt "tp_RangeChooser|STR_PAGE_DATA_RANGE"
msgid "Data Range"
msgstr "Dátová oblasť"
@@ -4448,215 +3374,137 @@ msgctxt "tp_Scale|CBX_REVERSE"
msgid "_Reverse direction"
msgstr "Opačný sme_r"
-#. DNJFK
-#: chart2/uiconfig/ui/tp_Scale.ui:68
-msgctxt "tp_Scale|extended_tip|CBX_REVERSE"
-msgid "Defines where the lower and where the higher values are displayed at the axis. The unchecked state is the mathematical direction."
-msgstr "Určuje, kde na osi sa zobrazujú dolné a horné hodnoty. Pokiaľ nie je pole zaškrtnuté, používa sa matematický smer."
-
#. qBbBL
-#: chart2/uiconfig/ui/tp_Scale.ui:80
+#: chart2/uiconfig/ui/tp_Scale.ui:75
msgctxt "tp_Scale|CBX_LOGARITHM"
msgid "_Logarithmic scale"
msgstr "_Logaritmická mierka"
-#. 3wDMa
-#: chart2/uiconfig/ui/tp_Scale.ui:89
-msgctxt "tp_Scale|extended_tip|CBX_LOGARITHM"
-msgid "Specifies that you want the axis to be subdivided logarithmically."
-msgstr "Určuje, že chcete na osi použiť logaritmickú mierku."
-
#. 2B5CL
-#: chart2/uiconfig/ui/tp_Scale.ui:108
+#: chart2/uiconfig/ui/tp_Scale.ui:98
msgctxt "tp_Scale|TXT_AXIS_TYPE"
msgid "T_ype"
msgstr "T_yp"
#. D6Bre
-#: chart2/uiconfig/ui/tp_Scale.ui:124
+#: chart2/uiconfig/ui/tp_Scale.ui:114
msgctxt "tp_Scale|LB_AXIS_TYPE"
msgid "Automatic"
msgstr "Automatický"
#. TCiZu
-#: chart2/uiconfig/ui/tp_Scale.ui:125
+#: chart2/uiconfig/ui/tp_Scale.ui:115
msgctxt "tp_Scale|LB_AXIS_TYPE"
msgid "Text"
msgstr "Text"
#. vAAUB
-#: chart2/uiconfig/ui/tp_Scale.ui:126
+#: chart2/uiconfig/ui/tp_Scale.ui:116
msgctxt "tp_Scale|LB_AXIS_TYPE"
msgid "Date"
msgstr "Dátum"
-#. 8YZhv
-#: chart2/uiconfig/ui/tp_Scale.ui:130
-msgctxt "tp_Scale|extended_tip|LB_AXIS_TYPE"
-msgid "For some types of axes, you can select to format an axis as text or date, or to detect the type automatically."
-msgstr "Pre niektoré typy osí môžete zvoliť formát, a to buď text alebo dátum, alebo môžete nechať formát zvoliť automaticky."
-
#. Vf7vB
-#: chart2/uiconfig/ui/tp_Scale.ui:164
+#: chart2/uiconfig/ui/tp_Scale.ui:149
msgctxt "tp_Scale|TXT_MIN"
msgid "_Minimum"
msgstr "_Minimum"
#. XUKzj
-#: chart2/uiconfig/ui/tp_Scale.ui:178
+#: chart2/uiconfig/ui/tp_Scale.ui:163
msgctxt "tp_Scale|TXT_MAX"
msgid "Ma_ximum"
msgstr "Ma_ximum"
#. 4jRuB
-#: chart2/uiconfig/ui/tp_Scale.ui:190
+#: chart2/uiconfig/ui/tp_Scale.ui:175
msgctxt "tp_Scale|CBX_AUTO_MIN"
msgid "_Automatic"
msgstr "_Automaticky"
#. Bx5Co
-#: chart2/uiconfig/ui/tp_Scale.ui:205
+#: chart2/uiconfig/ui/tp_Scale.ui:190
msgctxt "tp_Scale|CBX_AUTO_MAX"
msgid "A_utomatic"
msgstr "A_utomatický"
-#. 2Kb67
-#: chart2/uiconfig/ui/tp_Scale.ui:227
-msgctxt "tp_Scale|extended_tip|EDT_MIN"
-msgid "Defines the minimum value for the beginning of the axis."
-msgstr "Určuje minimálnu hodnotu zobrazenú na začiatku osi."
-
-#. AvhE9
-#: chart2/uiconfig/ui/tp_Scale.ui:245
-msgctxt "tp_Scale|extended_tip|EDT_MAX"
-msgid "Defines the maximum value for the end of the axis."
-msgstr "Určuje maximálnu hodnotu zobrazenú na konci osi."
-
#. TsHtd
-#: chart2/uiconfig/ui/tp_Scale.ui:270
+#: chart2/uiconfig/ui/tp_Scale.ui:245
msgctxt "tp_Scale|TXT_TIME_RESOLUTION"
msgid "R_esolution"
msgstr "R_ozlíšenie"
#. yyPFB
-#: chart2/uiconfig/ui/tp_Scale.ui:286 chart2/uiconfig/ui/tp_Scale.ui:378
-#: chart2/uiconfig/ui/tp_Scale.ui:519
+#: chart2/uiconfig/ui/tp_Scale.ui:261 chart2/uiconfig/ui/tp_Scale.ui:343
+#: chart2/uiconfig/ui/tp_Scale.ui:469
msgctxt "tp_Scale|liststoreDATE"
msgid "Days"
msgstr "Dni"
#. 8xKtE
-#: chart2/uiconfig/ui/tp_Scale.ui:287 chart2/uiconfig/ui/tp_Scale.ui:379
-#: chart2/uiconfig/ui/tp_Scale.ui:520
+#: chart2/uiconfig/ui/tp_Scale.ui:262 chart2/uiconfig/ui/tp_Scale.ui:344
+#: chart2/uiconfig/ui/tp_Scale.ui:470
msgctxt "tp_Scale|liststoreDATE"
msgid "Months"
msgstr "Mesiace"
#. WRUy8
-#: chart2/uiconfig/ui/tp_Scale.ui:288 chart2/uiconfig/ui/tp_Scale.ui:380
-#: chart2/uiconfig/ui/tp_Scale.ui:521
+#: chart2/uiconfig/ui/tp_Scale.ui:263 chart2/uiconfig/ui/tp_Scale.ui:345
+#: chart2/uiconfig/ui/tp_Scale.ui:471
msgctxt "tp_Scale|liststoreDATE"
msgid "Years"
msgstr "Roky"
-#. WUANc
-#: chart2/uiconfig/ui/tp_Scale.ui:292
-msgctxt "tp_Scale|extended_tip|LB_TIME_RESOLUTION"
-msgid "Resolution can be set to show days, months, or years as interval steps."
-msgstr "Rozlíšenie môže byť nastavené na kroky po dňoch, mesiacoch alebo rokoch."
-
#. ezN7c
-#: chart2/uiconfig/ui/tp_Scale.ui:304
+#: chart2/uiconfig/ui/tp_Scale.ui:274
msgctxt "tp_Scale|CBX_AUTO_TIME_RESOLUTION"
msgid "Automat_ic"
msgstr "_Automaticky"
#. DbJt9
-#: chart2/uiconfig/ui/tp_Scale.ui:334
+#: chart2/uiconfig/ui/tp_Scale.ui:304
msgctxt "tp_Scale|TXT_STEP_MAIN"
msgid "Ma_jor interval"
msgstr "Hlav_ný interval"
-#. AtZ6D
-#: chart2/uiconfig/ui/tp_Scale.ui:363
-msgctxt "tp_Scale|extended_tip|MT_MAIN_DATE_STEP"
-msgid "Major interval can be set to show a certain number of days, months, or years."
-msgstr "Hlavné intervaly môžu byť nastavené na určitý počet dní, mesiacov alebo rokov."
-
-#. BD5BE
-#: chart2/uiconfig/ui/tp_Scale.ui:384
-msgctxt "tp_Scale|extended_tip|LB_MAIN_TIME_UNIT"
-msgid "Major interval can be set to show a certain number of days, months, or years."
-msgstr "Hlavné intervaly môžu byť nastavené na určitý počet dní, mesiacov alebo rokov."
-
-#. a2Gjv
-#: chart2/uiconfig/ui/tp_Scale.ui:410
-msgctxt "tp_Scale|extended_tip|EDT_STEP_MAIN"
-msgid "Defines the interval for the main division of the axes."
-msgstr "Určuje interval hlavného delenia osi."
-
#. UMEd3
-#: chart2/uiconfig/ui/tp_Scale.ui:429
+#: chart2/uiconfig/ui/tp_Scale.ui:384
msgctxt "tp_Scale|CBX_AUTO_STEP_MAIN"
msgid "Au_tomatic"
msgstr "Au_tomaticky"
#. Pv5GU
-#: chart2/uiconfig/ui/tp_Scale.ui:464
+#: chart2/uiconfig/ui/tp_Scale.ui:419
msgctxt "tp_Scale|TXT_STEP_HELP"
msgid "Minor inter_val"
msgstr "Vedľajší inter_val"
#. WMGqg
-#: chart2/uiconfig/ui/tp_Scale.ui:478
+#: chart2/uiconfig/ui/tp_Scale.ui:433
msgctxt "tp_Scale|TXT_STEP_HELP_COUNT"
msgid "Minor inter_val count"
msgstr "Počet ve_dľajších intervalov"
-#. c9m8j
-#: chart2/uiconfig/ui/tp_Scale.ui:504
-msgctxt "tp_Scale|extended_tip|MT_STEPHELP"
-msgid "Defines the interval for the subdivision of the axes."
-msgstr "Určuje interval vedľajšieho delenia osi."
-
-#. snFL6
-#: chart2/uiconfig/ui/tp_Scale.ui:525
-msgctxt "tp_Scale|extended_tip|LB_HELP_TIME_UNIT"
-msgid "Minor interval can be set to show a certain number of days, months, or years."
-msgstr "Vedľajšie intervaly môžu byť nastavené na určitý počet dní, mesiacov alebo rokov."
-
#. X8FAK
-#: chart2/uiconfig/ui/tp_Scale.ui:537
+#: chart2/uiconfig/ui/tp_Scale.ui:482
msgctxt "tp_Scale|CBX_AUTO_STEP_HELP"
msgid "Aut_omatic"
msgstr "Aut_omaticky"
#. GAKPN
-#: chart2/uiconfig/ui/tp_Scale.ui:567
+#: chart2/uiconfig/ui/tp_Scale.ui:512
msgctxt "tp_Scale|TXT_ORIGIN"
msgid "Re_ference value"
msgstr "Re_ferenčná hodnota"
-#. HbRqw
-#: chart2/uiconfig/ui/tp_Scale.ui:586
-msgctxt "tp_Scale|extended_tip|EDT_ORIGIN"
-msgid "Specifies at which position to display the values along the axis."
-msgstr "Určuje, kde sa majú zobrazovať hodnoty osi."
-
#. Dj9GB
-#: chart2/uiconfig/ui/tp_Scale.ui:598
+#: chart2/uiconfig/ui/tp_Scale.ui:538
msgctxt "tp_Scale|CBX_AUTO_ORIGIN"
msgid "Automat_ic"
msgstr "_Automaticky"
-#. Z35M3
-#: chart2/uiconfig/ui/tp_Scale.ui:607
-msgctxt "tp_Scale|extended_tip|CBX_AUTO_ORIGIN"
-msgid "You must first deselect the Automatic option in order to modify the values."
-msgstr "Ak chcete tieto hodnoty upraviť, musíte najprv odznačiť hodnotu Automaticky."
-
#. wqR5C
-#: chart2/uiconfig/ui/tp_Scale.ui:632
+#: chart2/uiconfig/ui/tp_Scale.ui:567
msgctxt "tp_Scale|FL_SCALE"
msgid "Scale"
msgstr "Mierka"
@@ -4667,158 +3515,92 @@ msgctxt "tp_SeriesToAxis|RBT_OPT_AXIS_1"
msgid "Primary Y axis"
msgstr "Primárna os Y"
-#. ApXPx
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:52
-msgctxt "tp_SeriesToAxis|extended_tip|RBT_OPT_AXIS_1"
-msgid "This option is active as default. All data series are aligned to the primary Y axis."
-msgstr "Táto možnosť je implicitne zapnutá. Všetky riadky dát sú zarovnané k hlavnej osi Y."
-
#. aZ7G8
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:64
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:59
msgctxt "tp_SeriesToAxis|RBT_OPT_AXIS_2"
msgid "Secondary Y axis"
msgstr "Sekundárna os Y"
-#. nTQUy
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:75
-msgctxt "tp_SeriesToAxis|extended_tip|RBT_OPT_AXIS_2"
-msgid "Changes the scaling of the Y axis. This axis is only visible when at least one data series is assigned to it and the axis view is active."
-msgstr "Zmení mierku osi Y. Táto os je viditeľná len ak je k nej priradený aspoň jeden dátový rad a je zapnuté jej zobrazenie."
-
#. hV3cT
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:93
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:83
msgctxt "tp_SeriesToAxis|label1"
msgid "Align Data Series to"
msgstr "Zarovnať dátový rad k"
#. GAF6S
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:135
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:125
msgctxt "tp_SeriesToAxis|FT_GAP"
msgid "_Spacing"
msgstr "Rozo_stupy"
#. 27wWb
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:148
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:138
msgctxt "tp_SeriesToAxis|FT_OVERLAP"
msgid "_Overlap"
msgstr "_Presah"
-#. NKaBT
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:164
-msgctxt "tp_SeriesToAxis|extended_tip|MT_GAP"
-msgid "Defines the spacing between the columns in percent."
-msgstr "Určuje vzdialenosť medzi stĺpcami v percentách."
-
-#. 8E3zD
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:180
-msgctxt "tp_SeriesToAxis|extended_tip|MT_OVERLAP"
-msgid "Defines the necessary settings for overlapping data series."
-msgstr "Určuje nevyhnutné nastavenia pre presahujúce dátové rady."
-
#. uV5Dn
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:198
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:178
msgctxt "tp_SeriesToAxis|CB_BARS_SIDE_BY_SIDE"
msgid "Show _bars side by side"
msgstr "Zobraziť panely vedľa seba"
-#. U5ruY
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:207
-msgctxt "tp_SeriesToAxis|extended_tip|CB_BARS_SIDE_BY_SIDE"
-msgid "The bars from different data series are shown as if they were attached only to one axis."
-msgstr "Stĺpce z rôznych dátových radov sa zobrazujú, ako keby boli pripojené len k jednej osi."
-
#. b7cbo
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:219
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:194
msgctxt "tp_SeriesToAxis|CB_CONNECTOR"
msgid "Connection lines"
msgstr "Spojovacie čiary"
-#. 42zFb
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:228
-msgctxt "tp_SeriesToAxis|extended_tip|CB_CONNECTOR"
-msgid "For \"stacked\" and \"percent\" column (vertical bar) charts, mark this check box to connect the column layers that belong together with lines."
-msgstr "Toto pole zaškrtnite, ak chcete pre stĺpcové grafy typov 'Skladaný' a 'Skladaný percentuálne' prepojiť čiarami vrstvy stĺpcov, ktoré patria k sebe."
-
#. VHcU3
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:246
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:216
msgctxt "tp_SeriesToAxis|label2"
msgid "Settings"
msgstr "Nastavenia"
#. zaB5V
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:287
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:257
msgctxt "tp_SeriesToAxis|FT_MISSING_VALUES"
msgid "Plot missing values"
msgstr "Diagramu chýbajú dáta"
#. fqYSM
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:297
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:267
msgctxt "tp_SeriesToAxis|RB_DONT_PAINT"
msgid "_Leave gap"
msgstr "Nechať me_dzeru"
-#. CFmcS
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:307
-msgctxt "tp_SeriesToAxis|extended_tip|RB_DONT_PAINT"
-msgid "For a missing value, no data will be shown. This is the default for chart types Column, Bar, Line, Net."
-msgstr "Chýbajúce hodnoty nebudú vykreslené. Toto je predvolená voľba pre grafy typu stĺpcový, riadkový, čiarový a sieť."
-
#. ZvtoD
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:318
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:283
msgctxt "tp_SeriesToAxis|RB_ASSUME_ZERO"
msgid "_Assume zero"
msgstr "Prepokl_adať nulu"
-#. y6EGH
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:329
-msgctxt "tp_SeriesToAxis|extended_tip|RB_ASSUME_ZERO"
-msgid "For a missing value, the y-value will be shown as zero. This is the default for chart type Area."
-msgstr "Chýbajúce hodnoty budú mať na osi Y hodnotu nula. Toto je predvolená voľba pre graf typu Oblasť."
-
#. 8rLB4
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:340
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:300
msgctxt "tp_SeriesToAxis|RB_CONTINUE_LINE"
msgid "_Continue line"
msgstr "Po_kračovať čiaru"
-#. 2HArG
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:351
-msgctxt "tp_SeriesToAxis|extended_tip|RB_CONTINUE_LINE"
-msgid "For a missing value, the interpolation from the neighbor values will be shown. This is the default for chart type XY."
-msgstr "Chýbajúce hodnoty budú interpolované zo susedných hodnôt. Toto je predvolená hodnota pre typ grafu XY (bodový)."
-
#. Nw9LX
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:375
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:330
msgctxt "tp_SeriesToAxis|CB_INCLUDE_HIDDEN_CELLS"
msgid "Include _values from hidden cells"
msgstr "Zahrnúť hodnoty zo sk_rytých buniek"
-#. vEDHo
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:384
-msgctxt "tp_SeriesToAxis|extended_tip|CB_INCLUDE_HIDDEN_CELLS"
-msgid "Check to also show values of currently hidden cells within the source cell range."
-msgstr "Zaškrtnite, ak chcete zobraziť aj hodnoty skrytých buniek v zdrojovej oblasti buniek."
-
#. LvZ8x
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:402
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:352
msgctxt "tp_SeriesToAxis|label3"
msgid "Plot Options"
msgstr "Možnosti diagramu"
#. gRgPX
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:435
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:385
msgctxt "tp_SeriesToAxis|CB_LEGEND_ENTRY_HIDDEN"
msgid "Hide legend entry"
msgstr "Skryť položku legendy"
-#. GFmDA
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:443
-msgctxt "tp_SeriesToAxis|extended_tip|CB_LEGEND_ENTRY_HIDDEN"
-msgid "Do not show legend entry for the selected data series or data point."
-msgstr "Pre vybrané rady dát alebo dátové body nezobraziť položky legendy."
-
#. q8CTC
-#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:461
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:406
msgctxt "tp_SeriesToAxis|label4"
msgid "Legend Entry"
msgstr "Položka legendy"
@@ -4829,236 +3611,104 @@ msgctxt "tp_Trendline|linear"
msgid "_Linear"
msgstr "Lineárny"
-#. jir3B
-#: chart2/uiconfig/ui/tp_Trendline.ui:75
-msgctxt "tp_Trendline|extended_tip|linear"
-msgid "A linear trend line is shown."
-msgstr "Je zobrazená lineárna trendová krivka."
-
#. u3nKx
-#: chart2/uiconfig/ui/tp_Trendline.ui:86
+#: chart2/uiconfig/ui/tp_Trendline.ui:81
msgctxt "tp_Trendline|logarithmic"
msgid "L_ogarithmic"
msgstr "L_ogaritmický"
-#. AZT5a
-#: chart2/uiconfig/ui/tp_Trendline.ui:97
-msgctxt "tp_Trendline|extended_tip|logarithmic"
-msgid "A logarithmic trend line is shown."
-msgstr "Je zobrazený logaritmický priebeh trendovej krivky."
-
#. fPNok
-#: chart2/uiconfig/ui/tp_Trendline.ui:108
+#: chart2/uiconfig/ui/tp_Trendline.ui:98
msgctxt "tp_Trendline|exponential"
msgid "_Exponential"
msgstr "~Exponenciálny"
-#. gufBS
-#: chart2/uiconfig/ui/tp_Trendline.ui:119
-msgctxt "tp_Trendline|extended_tip|exponential"
-msgid "An exponential trend line is shown."
-msgstr "Je zobrazený exponenciálny priebeh trendovej krivky."
-
#. a6FDp
-#: chart2/uiconfig/ui/tp_Trendline.ui:130
+#: chart2/uiconfig/ui/tp_Trendline.ui:115
msgctxt "tp_Trendline|power"
msgid "Po_wer"
msgstr "Mo_cninný"
-#. sU36A
-#: chart2/uiconfig/ui/tp_Trendline.ui:141
-msgctxt "tp_Trendline|extended_tip|power"
-msgid "A power trend line is shown."
-msgstr "Je zobrazený mocninový priebeh trendovej krivky."
-
#. QCeGG
-#: chart2/uiconfig/ui/tp_Trendline.ui:152
+#: chart2/uiconfig/ui/tp_Trendline.ui:132
msgctxt "tp_Trendline|polynomial"
msgid "_Polynomial"
msgstr "_Polynomický"
-#. f9EeD
-#: chart2/uiconfig/ui/tp_Trendline.ui:163
-msgctxt "tp_Trendline|extended_tip|polynomial"
-msgid "A polynomial trend line is shown with a given degree."
-msgstr "Zobrazí polynomickú trendovú čiaru daného stupňa."
-
#. BkiE2
-#: chart2/uiconfig/ui/tp_Trendline.ui:174
+#: chart2/uiconfig/ui/tp_Trendline.ui:149
msgctxt "tp_Trendline|movingAverage"
msgid "_Moving Average"
msgstr "_Kĺzavý priemer"
-#. F5WMz
-#: chart2/uiconfig/ui/tp_Trendline.ui:185
-msgctxt "tp_Trendline|extended_tip|movingAverage"
-msgid "A moving average trend line is shown with a given period."
-msgstr "Zobrazí trendovú čiaru s kĺzavým priemerom a s daným obdobím."
-
#. mGkUE
-#: chart2/uiconfig/ui/tp_Trendline.ui:203
+#: chart2/uiconfig/ui/tp_Trendline.ui:173
msgctxt "tp_Trendline|label3"
msgid "Degree"
msgstr "Stupeň"
-#. HwBsk
-#: chart2/uiconfig/ui/tp_Trendline.ui:208
-msgctxt "tp_Trendline|extended_tip|label3"
-msgid "Degree of polynomial trend line."
-msgstr "Stupeň polynomickej trendovej čiary."
-
-#. EAkKg
-#: chart2/uiconfig/ui/tp_Trendline.ui:225
-msgctxt "tp_Trendline|extended_tip|degree"
-msgid "Degree of polynomial trend line."
-msgstr "Stupeň polynomickej trendovej čiary."
-
#. ZvFov
-#: chart2/uiconfig/ui/tp_Trendline.ui:249
+#: chart2/uiconfig/ui/tp_Trendline.ui:209
msgctxt "tp_Trendline|label4"
msgid "Period"
msgstr "Obdobie"
-#. akCwy
-#: chart2/uiconfig/ui/tp_Trendline.ui:254
-msgctxt "tp_Trendline|extended_tip|label4"
-msgid "Number of points to calculate average of moving average trend line."
-msgstr "Počet bodov na výpočet priemeru trendovej čiary kĺzavého priemeru."
-
-#. g3mex
-#: chart2/uiconfig/ui/tp_Trendline.ui:271
-msgctxt "tp_Trendline|extended_tip|period"
-msgid "Number of points to calculate average of moving average trend line."
-msgstr "Počet bodov na výpočet priemeru trendovej čiary kĺzavého priemeru."
-
#. ptaCA
-#: chart2/uiconfig/ui/tp_Trendline.ui:366
+#: chart2/uiconfig/ui/tp_Trendline.ui:316
msgctxt "tp_Trendline|label1"
msgid "Regression Type"
msgstr "Typ regresie"
#. mNh7m
-#: chart2/uiconfig/ui/tp_Trendline.ui:402
+#: chart2/uiconfig/ui/tp_Trendline.ui:352
msgctxt "tp_Trendline|label7"
msgid "Extrapolate Forward"
msgstr "Extrapolovať napred"
-#. 4HshA
-#: chart2/uiconfig/ui/tp_Trendline.ui:408
-msgctxt "tp_Trendline|extended_tip|label7"
-msgid "Trend line is extrapolated for higher x-values."
-msgstr "Trendová čiara je extrapolovaná pre vyššie hodnoty x."
-
#. tUrKr
-#: chart2/uiconfig/ui/tp_Trendline.ui:421
+#: chart2/uiconfig/ui/tp_Trendline.ui:366
msgctxt "tp_Trendline|label8"
msgid "Extrapolate Backward"
msgstr "Extrapolovať naspäť"
-#. tEfNE
-#: chart2/uiconfig/ui/tp_Trendline.ui:427
-msgctxt "tp_Trendline|extended_tip|label8"
-msgid "Trend line is extrapolated for lower x-values."
-msgstr "Trendová čiara je extrapolovaná pre nižšie hodnoty x."
-
#. BGkFJ
-#: chart2/uiconfig/ui/tp_Trendline.ui:465
+#: chart2/uiconfig/ui/tp_Trendline.ui:405
msgctxt "tp_Trendline|setIntercept"
msgid "Force _Intercept"
msgstr "Vnútiť bod pretnutia"
-#. ZJUti
-#: chart2/uiconfig/ui/tp_Trendline.ui:477
-msgctxt "tp_Trendline|extended_tip|setIntercept"
-msgid "For linear, polynomial and exponential trend lines, intercept value is forced to a given value."
-msgstr "Pre lineárnu, polynomickú a exponenciálnu trendovú čiaru je vynútená zadaná hodnota absolútneho členu."
-
#. CSHNm
-#: chart2/uiconfig/ui/tp_Trendline.ui:488
+#: chart2/uiconfig/ui/tp_Trendline.ui:423
msgctxt "tp_Trendline|showEquation"
msgid "Show E_quation"
msgstr "Zobraziť _rovnicu"
-#. nXrm7
-#: chart2/uiconfig/ui/tp_Trendline.ui:497
-msgctxt "tp_Trendline|extended_tip|showEquation"
-msgid "Shows the trend line equation next to the trend line."
-msgstr "Rovnicu trendovej krivky zobrazí vedľa regresnej krivky."
-
#. cA58s
-#: chart2/uiconfig/ui/tp_Trendline.ui:509
+#: chart2/uiconfig/ui/tp_Trendline.ui:439
msgctxt "tp_Trendline|showCorrelationCoefficient"
msgid "Show _Coefficient of Determination (R²)"
msgstr "Zobraziť determinačný koefi_cient (R²)"
-#. CCyCH
-#: chart2/uiconfig/ui/tp_Trendline.ui:518
-msgctxt "tp_Trendline|extended_tip|showCorrelationCoefficient"
-msgid "Shows the coefficient of determination next to the trend line."
-msgstr "Determinačný koeficient zobrazí vedľa regresnej krivky."
-
#. 2S6og
-#: chart2/uiconfig/ui/tp_Trendline.ui:532
+#: chart2/uiconfig/ui/tp_Trendline.ui:457
msgctxt "tp_Trendline|label5"
msgid "Trendline _Name"
msgstr "_Názov trendovej čiary"
-#. GasKo
-#: chart2/uiconfig/ui/tp_Trendline.ui:538
-msgctxt "tp_Trendline|extended_tip|label5"
-msgid "Name of trend line in legend."
-msgstr "Názov trendovej čiary v legende."
-
-#. FBT3Y
-#: chart2/uiconfig/ui/tp_Trendline.ui:554
-msgctxt "tp_Trendline|extended_tip|entry_name"
-msgid "Name of trend line in legend."
-msgstr "Názov trendovej čiary v legende."
-
-#. C4C6e
-#: chart2/uiconfig/ui/tp_Trendline.ui:578
-msgctxt "tp_Trendline|extended_tip|interceptValue"
-msgid "Value of intercept if it is forced."
-msgstr "Hodnota absolútneho členu, ak je vynútená."
-
#. GEKL2
-#: chart2/uiconfig/ui/tp_Trendline.ui:591
+#: chart2/uiconfig/ui/tp_Trendline.ui:501
msgctxt "tp_Trendline|label6"
msgid "_X Variable Name"
msgstr "Názov premennej _X"
-#. 99kQL
-#: chart2/uiconfig/ui/tp_Trendline.ui:597
-msgctxt "tp_Trendline|extended_tip|label6"
-msgid "Name of X variable in trend line equation."
-msgstr "Názov premennej X v rovnici trendovej čiary."
-
-#. Fz8b3
-#: chart2/uiconfig/ui/tp_Trendline.ui:613
-msgctxt "tp_Trendline|extended_tip|entry_Xname"
-msgid "Name of X variable in trend line equation."
-msgstr "Názov premennej X v rovnici trendovej čiary."
-
#. GDQuF
-#: chart2/uiconfig/ui/tp_Trendline.ui:626
+#: chart2/uiconfig/ui/tp_Trendline.ui:526
msgctxt "tp_Trendline|label9"
msgid "_Y Variable Name"
msgstr "Názov premennej _Y"
-#. 2PBW3
-#: chart2/uiconfig/ui/tp_Trendline.ui:632
-msgctxt "tp_Trendline|extended_tip|label9"
-msgid "Name of Y variable in trend line equation."
-msgstr "Názov premennej Y v rovnici trendovej čiary."
-
-#. WHNXu
-#: chart2/uiconfig/ui/tp_Trendline.ui:648
-msgctxt "tp_Trendline|extended_tip|entry_Yname"
-msgid "Name of Y variable in trend line equation."
-msgstr "Názov premennej Y v rovnici trendovej čiary."
-
#. 9WeUe
-#: chart2/uiconfig/ui/tp_Trendline.ui:665
+#: chart2/uiconfig/ui/tp_Trendline.ui:555
msgctxt "tp_Trendline|label2"
msgid "Options"
msgstr "Možnosti"
@@ -5069,146 +3719,80 @@ msgctxt "tp_axisLabel|showlabelsCB"
msgid "Sho_w labels"
msgstr "_Zobraziť popisy"
-#. Xr5zw
-#: chart2/uiconfig/ui/tp_axisLabel.ui:29
-msgctxt "tp_axisLabel|extended_tip|showlabelsCB"
-msgid "Specifies whether to show or hide the axis labels."
-msgstr "Určuje,či sa majú zobraziť alebo skryť názvy osí."
-
#. HFhGL
-#: chart2/uiconfig/ui/tp_axisLabel.ui:67
+#: chart2/uiconfig/ui/tp_axisLabel.ui:62
msgctxt "tp_axisLabel|tile"
msgid "_Tile"
msgstr "_Dlaždice"
-#. cmjFi
-#: chart2/uiconfig/ui/tp_axisLabel.ui:77
-msgctxt "tp_axisLabel|extended_tip|tile"
-msgid "Arranges numbers on the axis side by side."
-msgstr "Umiestni čísla na osi vedľa seba."
-
#. tHrCD
-#: chart2/uiconfig/ui/tp_axisLabel.ui:89
+#: chart2/uiconfig/ui/tp_axisLabel.ui:79
msgctxt "tp_axisLabel|odd"
msgid "St_agger odd"
msgstr "_Nepárne prekladanie"
-#. Q8h6B
-#: chart2/uiconfig/ui/tp_axisLabel.ui:99
-msgctxt "tp_axisLabel|extended_tip|odd"
-msgid "Staggers numbers on the axis, even numbers lower than odd numbers."
-msgstr "Rozloží čísla na osi, párne čísla budú nižšie ako nepárne."
-
#. tByen
-#: chart2/uiconfig/ui/tp_axisLabel.ui:111
+#: chart2/uiconfig/ui/tp_axisLabel.ui:96
msgctxt "tp_axisLabel|even"
msgid "Stagger _even"
msgstr "Pá_rne prekladanie"
-#. 9EMGj
-#: chart2/uiconfig/ui/tp_axisLabel.ui:121
-msgctxt "tp_axisLabel|extended_tip|even"
-msgid "Stagger numbers on the axes, odd numbers lower than even numbers."
-msgstr "Rozloží čísla na osi, nepárne čísla budú nižšie ako párne."
-
#. 2JwY3
-#: chart2/uiconfig/ui/tp_axisLabel.ui:133
+#: chart2/uiconfig/ui/tp_axisLabel.ui:113
msgctxt "tp_axisLabel|auto"
msgid "A_utomatic"
msgstr "A_utomatický"
-#. fj3Rq
-#: chart2/uiconfig/ui/tp_axisLabel.ui:143
-msgctxt "tp_axisLabel|extended_tip|auto"
-msgid "Automatically arranges numbers on the axis."
-msgstr "Automaticky rozmiestni čísla na osi."
-
#. bFH6L
-#: chart2/uiconfig/ui/tp_axisLabel.ui:161
+#: chart2/uiconfig/ui/tp_axisLabel.ui:136
msgctxt "tp_axisLabel|orderL"
msgid "Order"
msgstr "Poradie"
#. GMtbb
-#: chart2/uiconfig/ui/tp_axisLabel.ui:196
+#: chart2/uiconfig/ui/tp_axisLabel.ui:171
msgctxt "tp_axisLabel|overlapCB"
msgid "O_verlap"
msgstr "P_resah"
-#. zwgui
-#: chart2/uiconfig/ui/tp_axisLabel.ui:205
-msgctxt "tp_axisLabel|extended_tip|overlapCB"
-msgid "Specifies that the text in cells may overlap other cells."
-msgstr "Určuje, že text v bunkách môže pretiecť do ďalších buniek."
-
#. AYpQ8
-#: chart2/uiconfig/ui/tp_axisLabel.ui:217
+#: chart2/uiconfig/ui/tp_axisLabel.ui:187
msgctxt "tp_axisLabel|breakCB"
msgid "_Break"
msgstr "_Zalomenie"
-#. eBwTo
-#: chart2/uiconfig/ui/tp_axisLabel.ui:226
-msgctxt "tp_axisLabel|extended_tip|breakCB"
-msgid "Allows a text break."
-msgstr "Povolí zalomenie textu."
-
#. 4EwR7
-#: chart2/uiconfig/ui/tp_axisLabel.ui:244
+#: chart2/uiconfig/ui/tp_axisLabel.ui:209
msgctxt "tp_axisLabel|textflowL"
msgid "Text Flow"
msgstr "Tok textu"
-#. exWTH
-#: chart2/uiconfig/ui/tp_axisLabel.ui:301
-msgctxt "tp_axisLabel|extended_tip|OrientDegree"
-msgid "Allows you to manually enter the orientation angle."
-msgstr "Môžete ručne zadať uhol orientácie."
-
#. 5teDt
-#: chart2/uiconfig/ui/tp_axisLabel.ui:315
+#: chart2/uiconfig/ui/tp_axisLabel.ui:275
msgctxt "tp_axisLabel|degreeL"
msgid "_Degrees"
msgstr "_Stupňov"
#. jFKoF
-#: chart2/uiconfig/ui/tp_axisLabel.ui:349
+#: chart2/uiconfig/ui/tp_axisLabel.ui:309
msgctxt "tp_axisLabel|stackedCB"
msgid "Ve_rtically stacked"
msgstr "Usporiadať zvi_sle"
-#. ra62A
-#: chart2/uiconfig/ui/tp_axisLabel.ui:359
-msgctxt "tp_axisLabel|extended_tip|stackedCB"
-msgid "Assigns vertical text orientation for cell contents."
-msgstr "Text v bunkách sa bude zobrazovať zvislo."
-
#. JBz5H
-#: chart2/uiconfig/ui/tp_axisLabel.ui:371
+#: chart2/uiconfig/ui/tp_axisLabel.ui:326
msgctxt "tp_axisLabel|labelABCD"
msgid "ABCD"
msgstr "ABCD"
#. PE6RQ
-#: chart2/uiconfig/ui/tp_axisLabel.ui:388
+#: chart2/uiconfig/ui/tp_axisLabel.ui:343
msgctxt "tp_axisLabel|textdirL"
msgid "Te_xt direction:"
msgstr "Smer _textu:"
-#. YUAjA
-#: chart2/uiconfig/ui/tp_axisLabel.ui:402
-msgctxt "tp_axisLabel|extended_tip|textdirLB"
-msgid "Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled."
-msgstr "Určite smer textu pre odsek, ktorý používa komplexné rozloženie textu (CTL). Táto vlastnosť je dostupná, len ak je povolené komplexné rozloženie."
-
-#. NxsBh
-#: chart2/uiconfig/ui/tp_axisLabel.ui:421
-msgctxt "tp_axisLabel|extended_tip|dialCtrl"
-msgid "Clicking anywhere on the wheel defines the variable text orientation."
-msgstr "Kliknutím kdekoľvek na koleso určíte orientáciu textu."
-
#. 3WhzS
-#: chart2/uiconfig/ui/tp_axisLabel.ui:438
+#: chart2/uiconfig/ui/tp_axisLabel.ui:383
msgctxt "tp_axisLabel|labelTextOrient"
msgid "Text Orientation"
msgstr "Orientácia textu"
@@ -5231,170 +3815,86 @@ msgctxt "wizelementspage|labelPrimaryZaxis"
msgid "_Z axis"
msgstr "Os _Z"
-#. 7qRfe
-#: chart2/uiconfig/ui/wizelementspage.ui:89
-msgctxt "wizelementspage|extended_tip|primaryXaxis"
-msgid "Enter a label for the x-axis (horizontal)."
-msgstr "Zadajte popis osi x (vodorovná)."
-
-#. 4vThc
-#: chart2/uiconfig/ui/wizelementspage.ui:106
-msgctxt "wizelementspage|extended_tip|primaryYaxis"
-msgid "Enter a label for the y-axis (vertical)."
-msgstr "Zadajte popis osi y (zvislá)."
-
-#. 7zPH5
-#: chart2/uiconfig/ui/wizelementspage.ui:123
-msgctxt "wizelementspage|extended_tip|primaryZaxis"
-msgid "Enter a label for the z-axis. This option is only available for three-dimensional charts."
-msgstr "Zadajte popis osi z. Táto voľba je dostupná len pre trojrozmerné grafy."
-
#. Qpj9H
-#: chart2/uiconfig/ui/wizelementspage.ui:136
+#: chart2/uiconfig/ui/wizelementspage.ui:121
msgctxt "wizelementspage|labelMainTitle"
msgid "_Title"
-msgstr "_Nadpis"
+msgstr "_Názov"
#. nPAjY
-#: chart2/uiconfig/ui/wizelementspage.ui:150
+#: chart2/uiconfig/ui/wizelementspage.ui:135
msgctxt "wizelementspage|labelSubTitle"
msgid "_Subtitle"
-msgstr "P_odnadpis"
-
-#. CWmMQ
-#: chart2/uiconfig/ui/wizelementspage.ui:168
-msgctxt "wizelementspage|extended_tip|maintitle"
-msgid "Enter a title for your chart."
-msgstr "Zadajte nadpis grafu."
-
-#. eNDvd
-#: chart2/uiconfig/ui/wizelementspage.ui:185
-msgctxt "wizelementspage|extended_tip|subtitle"
-msgid "Enter a subtitle for your chart."
-msgstr "Zadajte podnadpis grafu."
+msgstr "P_odnázov"
#. GJ7pJ
-#: chart2/uiconfig/ui/wizelementspage.ui:198
+#: chart2/uiconfig/ui/wizelementspage.ui:173
msgctxt "wizelementspage|labelSecondaryXAxis"
msgid "X _axis"
msgstr "Os _X"
#. bBRgE
-#: chart2/uiconfig/ui/wizelementspage.ui:212
+#: chart2/uiconfig/ui/wizelementspage.ui:187
msgctxt "wizelementspage|labelSecondaryYAxis"
msgid "Y ax_is"
msgstr "Os _Y"
-#. NGoMT
-#: chart2/uiconfig/ui/wizelementspage.ui:230
-msgctxt "wizelementspage|extended_tip|secondaryXaxis"
-msgid "Enter a label for the secondary x-axis. This option is only available for charts that support a secondary x-axis."
-msgstr "Vloží popis pre druhú os x. Táto možnosť je dostupná iba pre grafy, ktoré podporujú druhú os x."
-
#. E6Y7y
-#: chart2/uiconfig/ui/wizelementspage.ui:264
+#: chart2/uiconfig/ui/wizelementspage.ui:234
msgctxt "wizelementspage|show"
msgid "_Display legend"
msgstr "Zobraziť legen_du"
-#. QWAen
-#: chart2/uiconfig/ui/wizelementspage.ui:273
-msgctxt "wizelementspage|extended_tip|show"
-msgid "Specifies whether to display a legend for the chart."
-msgstr "Určuje, či sa má zobrazovať legenda grafu."
-
#. ejdzz
-#: chart2/uiconfig/ui/wizelementspage.ui:294
+#: chart2/uiconfig/ui/wizelementspage.ui:259
msgctxt "wizelementspage|left"
msgid "_Left"
msgstr "_Vľavo"
-#. tGgc2
-#: chart2/uiconfig/ui/wizelementspage.ui:304
-msgctxt "wizelementspage|extended_tip|left"
-msgid "Positions the legend at the left of the chart."
-msgstr "Umiestni legendu vľavo od grafu."
-
#. EjE6h
-#: chart2/uiconfig/ui/wizelementspage.ui:315
+#: chart2/uiconfig/ui/wizelementspage.ui:275
msgctxt "wizelementspage|right"
msgid "_Right"
msgstr "Vp_ravo"
-#. rvAN8
-#: chart2/uiconfig/ui/wizelementspage.ui:325
-msgctxt "wizelementspage|extended_tip|right"
-msgid "Positions the legend at the right of the chart."
-msgstr "Umiestni legendu vpravo od grafu."
-
#. LnxgC
-#: chart2/uiconfig/ui/wizelementspage.ui:336
+#: chart2/uiconfig/ui/wizelementspage.ui:291
msgctxt "wizelementspage|top"
msgid "_Top"
msgstr "_Hore"
-#. Ehv3g
-#: chart2/uiconfig/ui/wizelementspage.ui:346
-msgctxt "wizelementspage|extended_tip|top"
-msgid "Positions the legend at the top of the chart."
-msgstr "Umiestni legendu nad graf."
-
#. GD2qS
-#: chart2/uiconfig/ui/wizelementspage.ui:357
+#: chart2/uiconfig/ui/wizelementspage.ui:307
msgctxt "wizelementspage|bottom"
msgid "_Bottom"
msgstr "_Dole"
-#. NCp3E
-#: chart2/uiconfig/ui/wizelementspage.ui:367
-msgctxt "wizelementspage|extended_tip|bottom"
-msgid "Positions the legend at the bottom of the chart."
-msgstr "Umiestni legendu pod graf."
-
#. REBEt
-#: chart2/uiconfig/ui/wizelementspage.ui:398
+#: chart2/uiconfig/ui/wizelementspage.ui:343
msgctxt "wizelementspage|Axe"
msgid "Choose Titles, Legend, and Grid Settings"
msgstr "Nastavenie názvov, legendy a mriežky"
#. wp2DC
-#: chart2/uiconfig/ui/wizelementspage.ui:431
+#: chart2/uiconfig/ui/wizelementspage.ui:376
msgctxt "wizelementspage|x"
msgid "X axis"
msgstr "Os X"
-#. KbejV
-#: chart2/uiconfig/ui/wizelementspage.ui:440
-msgctxt "wizelementspage|extended_tip|x"
-msgid "Displays grid lines that are perpendicular to the x-axis."
-msgstr "Zobrazí čiary mriežky kolmé na os x."
-
#. KPGMU
-#: chart2/uiconfig/ui/wizelementspage.ui:451
+#: chart2/uiconfig/ui/wizelementspage.ui:391
msgctxt "wizelementspage|y"
msgid "Y ax_is"
msgstr "Os _Y"
-#. Nivye
-#: chart2/uiconfig/ui/wizelementspage.ui:460
-msgctxt "wizelementspage|extended_tip|y"
-msgid "Displays grid lines that are perpendicular to the y-axis."
-msgstr "Zobrazí čiary mriežky kolmé na os y."
-
#. G65v4
-#: chart2/uiconfig/ui/wizelementspage.ui:471
+#: chart2/uiconfig/ui/wizelementspage.ui:406
msgctxt "wizelementspage|z"
msgid "Z axi_s"
msgstr "Os _Z"
-#. uVwTv
-#: chart2/uiconfig/ui/wizelementspage.ui:480
-msgctxt "wizelementspage|extended_tip|z"
-msgid "Displays grid lines that are perpendicular to the z-axis. This option is only available for three-dimensional charts."
-msgstr "Zobrazí čiary mriežky kolmej na os z. Táto voľba je dostupná len pre trojrozmerné grafy."
-
#. wNqwZ
-#: chart2/uiconfig/ui/wizelementspage.ui:497
+#: chart2/uiconfig/ui/wizelementspage.ui:427
msgctxt "wizelementspage|label2"
msgid "Display Grids"
msgstr "Zobraziť mriežky"
diff --git a/source/sk/cui/messages.po b/source/sk/cui/messages.po
index dc0465f9d43..8ea85a4c794 100644
--- a/source/sk/cui/messages.po
+++ b/source/sk/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-12 15:01+0200\n"
-"PO-Revision-Date: 2020-10-08 06:35+0000\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
+"PO-Revision-Date: 2020-10-17 12:29+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: Slovak <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/sk/>\n"
"Language: sk\n"
@@ -17,249 +17,249 @@ msgstr ""
"X-POOTLE-MTIME: 1565181520.000000\n"
#. GyY9M
-#: cui/inc/numcategories.hrc:16
+#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
msgid "All"
msgstr "Všetko"
#. 8AwDu
-#: cui/inc/numcategories.hrc:17
+#: cui/inc/numcategories.hrc:18
msgctxt "numberingformatpage|liststore1"
msgid "User-defined"
msgstr "Definované používateľom"
#. YPFu3
-#: cui/inc/numcategories.hrc:18
+#: cui/inc/numcategories.hrc:19
msgctxt "numberingformatpage|liststore1"
msgid "Number"
msgstr "Číslo"
#. sCP8R
-#: cui/inc/numcategories.hrc:19
+#: cui/inc/numcategories.hrc:20
msgctxt "numberingformatpage|liststore1"
msgid "Percent"
msgstr "Percento"
#. 6C4cy
-#: cui/inc/numcategories.hrc:20
+#: cui/inc/numcategories.hrc:21
msgctxt "numberingformatpage|liststore1"
msgid "Currency"
msgstr "Mena"
#. NgzCi
-#: cui/inc/numcategories.hrc:21
+#: cui/inc/numcategories.hrc:22
msgctxt "numberingformatpage|liststore1"
msgid "Date"
msgstr "Dátum"
#. 4kcAo
-#: cui/inc/numcategories.hrc:22
+#: cui/inc/numcategories.hrc:23
msgctxt "numberingformatpage|liststore1"
msgid "Time"
msgstr "Čas"
#. xnmxf
-#: cui/inc/numcategories.hrc:23
+#: cui/inc/numcategories.hrc:24
msgctxt "numberingformatpage|liststore1"
msgid "Scientific"
msgstr "Vedecká"
#. vMka9
-#: cui/inc/numcategories.hrc:24
+#: cui/inc/numcategories.hrc:25
msgctxt "numberingformatpage|liststore1"
msgid "Fraction"
msgstr "Zlomok"
#. M8AFf
-#: cui/inc/numcategories.hrc:25
+#: cui/inc/numcategories.hrc:26
msgctxt "numberingformatpage|liststore1"
msgid "Boolean Value"
msgstr "Logická hodnota"
#. 2esH2
-#: cui/inc/numcategories.hrc:26
+#: cui/inc/numcategories.hrc:27
msgctxt "numberingformatpage|liststore1"
msgid "Text"
msgstr "Text"
#. E6GDh
-#: cui/inc/strings.hrc:23
+#: cui/inc/strings.hrc:24
msgctxt "RID_SVXSTR_KEY_CONFIG_DIR"
msgid "Configuration"
msgstr "Konfigurácia"
#. z7dmW
-#: cui/inc/strings.hrc:24
+#: cui/inc/strings.hrc:25
msgctxt "RID_SVXSTR_KEY_WORK_PATH"
msgid "My Documents"
msgstr "Moje dokumenty"
#. wnMWp
-#: cui/inc/strings.hrc:25
+#: cui/inc/strings.hrc:26
msgctxt "RID_SVXSTR_KEY_GRAPHICS_PATH"
msgid "Images"
msgstr "Obrázky"
#. AnM4M
-#: cui/inc/strings.hrc:26
+#: cui/inc/strings.hrc:27
msgctxt "RID_SVXSTR_KEY_BITMAP_PATH"
msgid "Icons"
msgstr "Ikony"
#. bpvbo
-#: cui/inc/strings.hrc:27
+#: cui/inc/strings.hrc:28
msgctxt "RID_SVXSTR_KEY_PALETTE_PATH"
msgid "Palettes"
msgstr "Palety"
#. shiKT
-#: cui/inc/strings.hrc:28
+#: cui/inc/strings.hrc:29
msgctxt "RID_SVXSTR_KEY_BACKUP_PATH"
msgid "Backups"
msgstr "Zálohy"
#. ai8eF
-#: cui/inc/strings.hrc:29
+#: cui/inc/strings.hrc:30
msgctxt "RID_SVXSTR_KEY_MODULES_PATH"
msgid "Modules"
msgstr "Moduly"
#. WyhJD
-#: cui/inc/strings.hrc:30
+#: cui/inc/strings.hrc:31
msgctxt "RID_SVXSTR_KEY_TEMPLATE_PATH"
msgid "Templates"
msgstr "Šablóny"
#. mNj9y
-#: cui/inc/strings.hrc:31
+#: cui/inc/strings.hrc:32
msgctxt "RID_SVXSTR_KEY_GLOSSARY_PATH"
msgid "AutoText"
msgstr "Automatický text"
#. co7GJ
-#: cui/inc/strings.hrc:32
+#: cui/inc/strings.hrc:33
msgctxt "RID_SVXSTR_KEY_DICTIONARY_PATH"
msgid "Dictionaries"
msgstr "Slovníky"
#. MbjWM
-#: cui/inc/strings.hrc:33
+#: cui/inc/strings.hrc:34
msgctxt "RID_SVXSTR_KEY_HELP_DIR"
msgid "Help"
msgstr "Pomocník"
#. u2bQB
-#: cui/inc/strings.hrc:34
+#: cui/inc/strings.hrc:35
msgctxt "RID_SVXSTR_KEY_GALLERY_DIR"
msgid "Gallery"
msgstr "Galéria"
#. 2umbs
-#: cui/inc/strings.hrc:35
+#: cui/inc/strings.hrc:36
msgctxt "RID_SVXSTR_KEY_STORAGE_DIR"
msgid "Message Storage"
msgstr "Umiestnenie správ"
#. oMdF8
-#: cui/inc/strings.hrc:36
+#: cui/inc/strings.hrc:37
msgctxt "RID_SVXSTR_KEY_TEMP_PATH"
msgid "Temporary files"
msgstr "Dočasné súbory"
#. 4DDzW
-#: cui/inc/strings.hrc:37
+#: cui/inc/strings.hrc:38
msgctxt "RID_SVXSTR_KEY_PLUGINS_PATH"
msgid "Plug-ins"
msgstr "Zásuvné moduly"
#. v5YHp
-#: cui/inc/strings.hrc:38
+#: cui/inc/strings.hrc:39
msgctxt "RID_SVXSTR_KEY_FAVORITES_DIR"
msgid "Folder Bookmarks"
msgstr "Záložky pre zložku"
#. AJkga
-#: cui/inc/strings.hrc:39
+#: cui/inc/strings.hrc:40
msgctxt "RID_SVXSTR_KEY_FILTER_PATH"
msgid "Filters"
msgstr "Filtre"
#. 2DKUC
-#: cui/inc/strings.hrc:40
+#: cui/inc/strings.hrc:41
msgctxt "RID_SVXSTR_KEY_ADDINS_PATH"
msgid "Add-ins"
msgstr "Doplnky"
#. Tm2DM
-#: cui/inc/strings.hrc:41
+#: cui/inc/strings.hrc:42
msgctxt "RID_SVXSTR_KEY_USERCONFIG_PATH"
msgid "User Configuration"
msgstr "Používateľská konfigurácia"
#. ATuL4
-#: cui/inc/strings.hrc:42
+#: cui/inc/strings.hrc:43
msgctxt "RID_SVXSTR_KEY_USERDICTIONARY_DIR"
msgid "User-defined dictionaries"
msgstr "Používateľom definované slovníky"
#. qxBAu
-#: cui/inc/strings.hrc:43
+#: cui/inc/strings.hrc:44
msgctxt "RID_SVXSTR_KEY_CLASSIFICATION_PATH"
msgid "Classification"
msgstr "Klasifikácia"
#. FrDws
-#: cui/inc/strings.hrc:44
+#: cui/inc/strings.hrc:45
msgctxt "RID_SVXSTR_KEY_AUTOCORRECT_DIR"
msgid "AutoCorrect"
msgstr "Automatické opravy"
#. jD48Q
-#: cui/inc/strings.hrc:45
+#: cui/inc/strings.hrc:46
msgctxt "RID_SVXSTR_KEY_LINGUISTIC_DIR"
msgid "Writing aids"
msgstr "Pomôcky na písanie"
#. VNK5b
#. %n will be replaced at runtime by a number starting with 1 and increasing as necessary
-#: cui/inc/strings.hrc:47
+#: cui/inc/strings.hrc:48
msgctxt "RID_SVXSTR_NEW_MENU"
msgid "New Menu %n"
msgstr "Nové menu %n"
#. dJXBJ
#. %n will be replaced at runtime by a number starting with 1 and increasing as necessary
-#: cui/inc/strings.hrc:49
+#: cui/inc/strings.hrc:50
msgctxt "RID_SVXSTR_NEW_TOOLBAR"
msgid "New Toolbar %n"
msgstr "Nový panel nástrojov %n"
#. PCa2G
-#: cui/inc/strings.hrc:50
+#: cui/inc/strings.hrc:51
msgctxt "RID_SVXSTR_MOVE_MENU"
msgid "Move Menu"
msgstr "Presunúť menu"
#. KbZFf
-#: cui/inc/strings.hrc:51
+#: cui/inc/strings.hrc:52
msgctxt "RID_SVXSTR_ADD_SUBMENU"
msgid "Add Submenu"
msgstr "Pridať podmenu"
#. w2qNv
-#: cui/inc/strings.hrc:52
+#: cui/inc/strings.hrc:53
msgctxt "RID_SVXSTR_SUBMENU_NAME"
msgid "Submenu name"
msgstr "Názov podmenu"
#. qJgZw
-#: cui/inc/strings.hrc:53
+#: cui/inc/strings.hrc:54
msgctxt "RID_SVXSTR_DELETE_ICON_CONFIRM"
msgid "Are you sure to delete the image?"
msgstr "Ste si istí, že chcete odstrániť obraz?"
#. d6e9K
-#: cui/inc/strings.hrc:54
+#: cui/inc/strings.hrc:55
msgctxt "RID_SVXSTR_REPLACE_ICON_WARNING"
msgid ""
"The icon %ICONNAME is already contained in the image list.\n"
@@ -269,19 +269,19 @@ msgstr ""
"Chcete nahradiť existujúcu ikonu?"
#. FRvQe
-#: cui/inc/strings.hrc:55
+#: cui/inc/strings.hrc:56
msgctxt "RID_SVXSTR_REPLACE_ICON_CONFIRM"
msgid "Confirm Icon Replacement"
msgstr "Potvrdiť nahradenie ikony"
#. xC2Wc
-#: cui/inc/strings.hrc:56
+#: cui/inc/strings.hrc:57
msgctxt "RID_SVXSTR_YESTOALL"
msgid "Yes to All"
msgstr "Áno všetky"
#. jCwDZ
-#: cui/inc/strings.hrc:57
+#: cui/inc/strings.hrc:58
msgctxt "RID_SXVSTR_CONFIRM_DELETE_TOOLBAR"
msgid "There are no more commands on the toolbar. Do you want to delete the toolbar?"
msgstr "Na paneli nástrojov nie sú žiadne príkazy. Chcete tento panel odstrániť?"
@@ -290,917 +290,917 @@ msgstr "Na paneli nástrojov nie sú žiadne príkazy. Chcete tento panel odstr
#. Translators: Do not translate %SAVE IN SELECTION% It is a placeholder
#. and will be replaced at runtime by the name of the selected application
#. or document.
-#: cui/inc/strings.hrc:62
+#: cui/inc/strings.hrc:63
msgctxt "RID_SVXSTR_CONFIRM_MENU_RESET"
msgid "The menu configuration for %SAVE IN SELECTION% will be reset to the default settings. Do you want to continue?"
msgstr "Nastavenie menu pre %SAVE IN SELECTION% bude obnovené na pôvodné nastavenie. Chcete pokračovať?"
#. RYeCk
-#: cui/inc/strings.hrc:63
+#: cui/inc/strings.hrc:64
msgctxt "RID_SVXSTR_CONFIRM_TOOLBAR_RESET"
msgid "The toolbar configuration for %SAVE IN SELECTION% will be reset to the default settings. Do you want to continue?"
msgstr "Nastavenie panelu nástrojov pre %SAVE IN SELECTION% bude obnovené na pôvodné nastavenie. Chcete pokračovať?"
#. JgGvm
-#: cui/inc/strings.hrc:64
+#: cui/inc/strings.hrc:65
msgctxt "RID_SVXSTR_CONFIRM_RESTORE_DEFAULT"
msgid "This will delete all changes previously made to this toolbar. Do you really want to reset the toolbar?"
msgstr "Toto odstráni všetky zmeny urobené v paneli nástrojov. Určite chcete obnoviť panel nástrojov?"
#. 4s9MJ
-#: cui/inc/strings.hrc:65
+#: cui/inc/strings.hrc:66
msgctxt "RID_SVXSTR_CONFIRM_RESTORE_DEFAULT_MENU"
msgid "This will delete all changes previously made to this context menu. Do you really want to reset?"
msgstr "Všetky zmeny urobené v kontextovom menu budú odstránené. Určite chcete menu obnoviť?"
#. CPW5b
-#: cui/inc/strings.hrc:66
+#: cui/inc/strings.hrc:67
msgctxt "RID_SVXSTR_MNUCFG_ALREADY_INCLUDED"
msgid "Function is already included in this popup."
msgstr "Funkcia už bola zahrnutá v tejto kontextovej ponuke."
#. G2mu7
-#: cui/inc/strings.hrc:67
+#: cui/inc/strings.hrc:68
msgctxt "RID_SVXSTR_LABEL_NEW_NAME"
msgid "~New name"
msgstr "~Nový názov"
#. Ahhg9
-#: cui/inc/strings.hrc:68
+#: cui/inc/strings.hrc:69
msgctxt "RID_SVXSTR_RENAME_MENU"
msgid "Rename Menu"
msgstr "Premenovať menu"
#. CmDaN
-#: cui/inc/strings.hrc:69
+#: cui/inc/strings.hrc:70
msgctxt "RID_SVXSTR_RENAME_TOOLBAR"
msgid "Rename Toolbar"
msgstr "Premenovať panel nástrojov"
#. GN45E
-#: cui/inc/strings.hrc:71
+#: cui/inc/strings.hrc:72
msgctxt "RID_SVXSTR_HYPDLG_CLOSEBUT"
msgid "Close"
msgstr "Zatvoriť"
#. dkH9d
-#: cui/inc/strings.hrc:72
+#: cui/inc/strings.hrc:73
msgctxt "RID_SVXSTR_HYPDLG_MACROACT1"
msgid "Mouse over object"
msgstr "Myš na objekte"
#. 4QYHe
-#: cui/inc/strings.hrc:73
+#: cui/inc/strings.hrc:74
msgctxt "RID_SVXSTR_HYPDLG_MACROACT2"
msgid "Trigger hyperlink"
msgstr "Previesť hypertextový odkaz"
#. WMQPj
-#: cui/inc/strings.hrc:74
+#: cui/inc/strings.hrc:75
msgctxt "RID_SVXSTR_HYPDLG_MACROACT3"
msgid "Mouse leaves object"
msgstr "Myš opúšťa objekt"
#. E8XCn
-#: cui/inc/strings.hrc:75
+#: cui/inc/strings.hrc:76
msgctxt "RID_SVXSTR_HYPDLG_NOVALIDFILENAME"
msgid "Please type in a valid file name."
msgstr "Prosím zadajte platný názov súboru."
#. ES4Pj
-#: cui/inc/strings.hrc:76
+#: cui/inc/strings.hrc:77
msgctxt "RID_SVXSTR_HYPERDLG_FORM_BUTTON"
msgid "Button"
msgstr "Tlačidlo"
#. MPHHF
-#: cui/inc/strings.hrc:77
+#: cui/inc/strings.hrc:78
msgctxt "RID_SVXSTR_HYPERDLG_FROM_TEXT"
msgid "Text"
msgstr "Text"
#. 9nkb2
-#: cui/inc/strings.hrc:78
+#: cui/inc/strings.hrc:79
msgctxt "RID_SVXSTR_HYPERDLG_QUERYOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr "Súbor už existuje. Prepísať?"
#. smWax
-#: cui/inc/strings.hrc:80
+#: cui/inc/strings.hrc:81
msgctxt "RID_SVXSTR_SELECT_FILE_IFRAME"
msgid "Select File for Floating Frame"
msgstr "Vybrať súbor pre plávajúci rámec"
#. F74rR
-#: cui/inc/strings.hrc:81
+#: cui/inc/strings.hrc:82
msgctxt "RID_SVXSTR_ALLFUNCTIONS"
msgid "All commands"
msgstr "Všetky príkazy"
#. EeB6i
-#: cui/inc/strings.hrc:82
+#: cui/inc/strings.hrc:83
msgctxt "RID_SVXSTR_MACROS"
msgid "Macros"
msgstr "Makrá"
#. mkEjQ
-#: cui/inc/strings.hrc:83
+#: cui/inc/strings.hrc:84
msgctxt "RID_SVXSTR_MYMACROS"
msgid "My Macros"
msgstr "Moje makrá"
#. Cv5m8
-#: cui/inc/strings.hrc:84
+#: cui/inc/strings.hrc:85
msgctxt "RID_SVXSTR_PRODMACROS"
msgid "%PRODUCTNAME Macros"
msgstr "Makrá %PRODUCTNAME"
#. RGCGW
-#: cui/inc/strings.hrc:85
+#: cui/inc/strings.hrc:86
msgctxt "RID_SVXSTR_NOMACRODESC"
msgid "There is no description available for this macro."
msgstr "Pre toto makro popis neexistuje."
#. AFniE
-#: cui/inc/strings.hrc:86
+#: cui/inc/strings.hrc:87
msgctxt "RID_SVXSTR_SELECTOR_RUN"
msgid "Run"
msgstr "Spustiť"
#. whwAN
-#: cui/inc/strings.hrc:87
+#: cui/inc/strings.hrc:88
msgctxt "RID_SVXSTR_ROW"
msgid "Insert Rows"
msgstr "Vložiť riadky"
#. Su38S
#. tdf#119293 Labels depending on row/col
-#: cui/inc/strings.hrc:89
+#: cui/inc/strings.hrc:90
msgctxt "RID_SVXSTR_INSERTROW_BEFORE"
msgid "Above selection"
msgstr "Nad výberom"
#. oBHui
-#: cui/inc/strings.hrc:90
+#: cui/inc/strings.hrc:91
msgctxt "RID_SVXSTR_INSERTROW_AFTER"
msgid "Below selection"
msgstr "Pod výberom"
#. c8nou
-#: cui/inc/strings.hrc:91
+#: cui/inc/strings.hrc:92
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr "Odstrániť z obľúbených"
#. XpjRm
-#: cui/inc/strings.hrc:92
+#: cui/inc/strings.hrc:93
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr "Chýbajúci znak"
#. 7tBGT
-#: cui/inc/strings.hrc:93
+#: cui/inc/strings.hrc:94
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr "Pridať k obľúbeným"
#. AvBBC
#. PPI is pixel per inch, %1 is a number
-#: cui/inc/strings.hrc:95
+#: cui/inc/strings.hrc:96
msgctxt "RID_SVXSTR_PPI"
msgid "(%1 PPI)"
msgstr "(%1 PPI)"
#. thimC
-#: cui/inc/strings.hrc:96
+#: cui/inc/strings.hrc:97
msgctxt "RID_SVXSTR_COL"
msgid "Insert Columns"
msgstr "Vložiť stĺpce"
#. AgqiD
#. tdf#119293 Labels depending on row/col
-#: cui/inc/strings.hrc:98
+#: cui/inc/strings.hrc:99
msgctxt "RID_SVXSTR_INSERTCOL_BEFORE"
msgid "Before selection"
msgstr "Pred výberom"
#. nXnb3
-#: cui/inc/strings.hrc:99
+#: cui/inc/strings.hrc:100
msgctxt "RID_SVXSTR_INSERTCOL_AFTER"
msgid "After selection"
msgstr "Za výberom"
#. QrFJZ
-#: cui/inc/strings.hrc:100
+#: cui/inc/strings.hrc:101
msgctxt "RID_SVXSTR_AUTO_ENTRY"
msgid "Automatic"
msgstr "Automatický"
#. X9CWA
-#: cui/inc/strings.hrc:101
+#: cui/inc/strings.hrc:102
msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
msgid "Link"
msgstr "Odkaz"
#. QCgnw
-#: cui/inc/strings.hrc:102
+#: cui/inc/strings.hrc:103
msgctxt "RID_SVXSTR_LOADACCELCONFIG"
msgid "Load Keyboard Configuration"
msgstr "Načítať konfiguráciu klávesnice"
#. eWQoY
-#: cui/inc/strings.hrc:103
+#: cui/inc/strings.hrc:104
msgctxt "RID_SVXSTR_SAVEACCELCONFIG"
msgid "Save Keyboard Configuration"
msgstr "Uložiť konfiguráciu klávesnice"
#. ggFZE
-#: cui/inc/strings.hrc:104
+#: cui/inc/strings.hrc:105
msgctxt "RID_SVXSTR_FILTERNAME_CFG"
msgid "Configuration (*.cfg)"
msgstr "Nastavenia (*.cfg)"
#. DigQB
-#: cui/inc/strings.hrc:105
+#: cui/inc/strings.hrc:106
msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_NOENTRIES"
msgid "Targets do not exist in the document."
msgstr "Ciele v dokumente neexistujú."
#. pCbRV
-#: cui/inc/strings.hrc:106
+#: cui/inc/strings.hrc:107
msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_DOCNOTOPEN"
msgid "Couldn't open the document."
msgstr "Nie je možné otvoriť súbor."
#. zAUfq
-#: cui/inc/strings.hrc:107
+#: cui/inc/strings.hrc:108
msgctxt "RID_SVXSTR_EDITHINT"
msgid "[Enter text here]"
msgstr "[Tu zadajte text]"
#. ResDx
-#: cui/inc/strings.hrc:108
+#: cui/inc/strings.hrc:109
msgctxt "RID_SVXSTR_HANGUL"
msgid "Hangul"
msgstr "Hangul"
#. 3t3AC
-#: cui/inc/strings.hrc:109
+#: cui/inc/strings.hrc:110
msgctxt "RID_SVXSTR_HANJA"
msgid "Hanja"
msgstr "Hanča"
#. 88dts
-#: cui/inc/strings.hrc:110
+#: cui/inc/strings.hrc:111
msgctxt "RID_SVXSTR_BASICMACROS"
msgid "BASIC Macros"
msgstr "Makrá BASIC"
#. XKYHn
-#: cui/inc/strings.hrc:111
+#: cui/inc/strings.hrc:112
msgctxt "RID_SVXSTR_GROUP_STYLES"
msgid "Styles"
msgstr "Štýly"
#. hFEBv
-#: cui/inc/strings.hrc:113
+#: cui/inc/strings.hrc:114
msgctxt "RID_SVXSTR_EVENT_STARTAPP"
msgid "Start Application"
msgstr "Spustiť aplikáciu"
#. 6tUvx
-#: cui/inc/strings.hrc:114
+#: cui/inc/strings.hrc:115
msgctxt "RID_SVXSTR_EVENT_CLOSEAPP"
msgid "Close Application"
msgstr "Zatvoriť aplikáciu"
#. 6NsQz
-#: cui/inc/strings.hrc:115
+#: cui/inc/strings.hrc:116
msgctxt "RID_SVXSTR_EVENT_NEWDOC"
msgid "New Document"
msgstr "Nový dokument"
#. G6b2e
-#: cui/inc/strings.hrc:116
+#: cui/inc/strings.hrc:117
msgctxt "RID_SVXSTR_EVENT_CLOSEDOC"
msgid "Document closed"
msgstr "Dokument zatvorený"
#. yvsTa
-#: cui/inc/strings.hrc:117
+#: cui/inc/strings.hrc:118
msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEDOC"
msgid "Document is going to be closed"
msgstr "Dokument bude zatvorený"
#. DKpfj
-#: cui/inc/strings.hrc:118
+#: cui/inc/strings.hrc:119
msgctxt "RID_SVXSTR_EVENT_OPENDOC"
msgid "Open Document"
msgstr "Otvoriť dokument"
#. DTDDm
-#: cui/inc/strings.hrc:119
+#: cui/inc/strings.hrc:120
msgctxt "RID_SVXSTR_EVENT_SAVEDOC"
msgid "Save Document"
msgstr "Uložiť dokument"
#. Trc82
-#: cui/inc/strings.hrc:120
+#: cui/inc/strings.hrc:121
msgctxt "RID_SVXSTR_EVENT_SAVEASDOC"
msgid "Save Document As"
msgstr "Uložiť dokument ako"
#. GCbZt
-#: cui/inc/strings.hrc:121
+#: cui/inc/strings.hrc:122
msgctxt "RID_SVXSTR_EVENT_SAVEDOCDONE"
msgid "Document has been saved"
msgstr "Dokument bol uložený"
#. mYtMa
-#: cui/inc/strings.hrc:122
+#: cui/inc/strings.hrc:123
msgctxt "RID_SVXSTR_EVENT_SAVEASDOCDONE"
msgid "Document has been saved as"
msgstr "Dokument bol uložený ako"
#. t8F8W
-#: cui/inc/strings.hrc:123
+#: cui/inc/strings.hrc:124
msgctxt "RID_SVXSTR_EVENT_ACTIVATEDOC"
msgid "Activate Document"
msgstr "Aktivovať dokument"
#. T7QE3
-#: cui/inc/strings.hrc:124
+#: cui/inc/strings.hrc:125
msgctxt "RID_SVXSTR_EVENT_DEACTIVATEDOC"
msgid "Deactivate Document"
msgstr "Deaktivovať dokument"
#. AQXyC
-#: cui/inc/strings.hrc:125
+#: cui/inc/strings.hrc:126
msgctxt "RID_SVXSTR_EVENT_PRINTDOC"
msgid "Print Document"
msgstr "Tlač dokumentu"
#. 8uXuz
-#: cui/inc/strings.hrc:126
+#: cui/inc/strings.hrc:127
msgctxt "RID_SVXSTR_EVENT_MODIFYCHANGED"
msgid "'Modified' status was changed"
msgstr "'Modified' status bol zmenený"
#. 5CKDG
-#: cui/inc/strings.hrc:127
+#: cui/inc/strings.hrc:128
msgctxt "RID_SVXSTR_EVENT_MAILMERGE"
msgid "Printing of form letters started"
msgstr "Tlač formulárových listov"
#. AZ2io
-#: cui/inc/strings.hrc:128
+#: cui/inc/strings.hrc:129
msgctxt "RID_SVXSTR_EVENT_MAILMERGE_END"
msgid "Printing of form letters finished"
msgstr "Tlač formulárových listov dokončená"
#. dHtbz
-#: cui/inc/strings.hrc:129
+#: cui/inc/strings.hrc:130
msgctxt "RID_SVXSTR_EVENT_FIELDMERGE"
msgid "Merging of form fields started"
msgstr "Zlučovanie formulárový polí bolo spustené"
#. uGCdD
-#: cui/inc/strings.hrc:130
+#: cui/inc/strings.hrc:131
msgctxt "RID_SVXSTR_EVENT_FIELDMERGE_FINISHED"
msgid "Merging of form fields finished"
msgstr "Zlučovanie formulárový polí bolo ukončené"
#. srLLa
-#: cui/inc/strings.hrc:131
+#: cui/inc/strings.hrc:132
msgctxt "RID_SVXSTR_EVENT_PAGECOUNTCHANGE"
msgid "Changing the page count"
msgstr "Zmeniť počet strán"
#. AsuQF
-#: cui/inc/strings.hrc:132
+#: cui/inc/strings.hrc:133
msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_OPENED"
msgid "Loaded a sub component"
msgstr "Sub-komponent bol načítaný"
#. Gf22f
-#: cui/inc/strings.hrc:133
+#: cui/inc/strings.hrc:134
msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_CLOSED"
msgid "Closed a sub component"
msgstr "Subkomponent bol zatvorený"
#. QayEb
-#: cui/inc/strings.hrc:134
+#: cui/inc/strings.hrc:135
msgctxt "RID_SVXSTR_EVENT_APPROVEPARAMETER"
msgid "Fill parameters"
msgstr "Vyplniť parametre"
#. mL59X
-#: cui/inc/strings.hrc:135
+#: cui/inc/strings.hrc:136
msgctxt "RID_SVXSTR_EVENT_ACTIONPERFORMED"
msgid "Execute action"
msgstr "Spustiť činnosť"
#. KtHBE
-#: cui/inc/strings.hrc:136
+#: cui/inc/strings.hrc:137
msgctxt "RID_SVXSTR_EVENT_AFTERUPDATE"
msgid "After updating"
msgstr "Po aktualizácii"
#. b6CCj
-#: cui/inc/strings.hrc:137
+#: cui/inc/strings.hrc:138
msgctxt "RID_SVXSTR_EVENT_BEFOREUPDATE"
msgid "Before updating"
msgstr "Pred aktualizáciou"
#. KTBcp
-#: cui/inc/strings.hrc:138
+#: cui/inc/strings.hrc:139
msgctxt "RID_SVXSTR_EVENT_APPROVEROWCHANGE"
msgid "Before record action"
msgstr "Pred zaznamenaním"
#. Fhyio
-#: cui/inc/strings.hrc:139
+#: cui/inc/strings.hrc:140
msgctxt "RID_SVXSTR_EVENT_ROWCHANGE"
msgid "After record action"
msgstr "Po zaznamenaní"
#. PmJgM
-#: cui/inc/strings.hrc:140
+#: cui/inc/strings.hrc:141
msgctxt "RID_SVXSTR_EVENT_CONFIRMDELETE"
msgid "Confirm deletion"
msgstr "Potvrdiť odstránenie"
#. gcREA
-#: cui/inc/strings.hrc:141
+#: cui/inc/strings.hrc:142
msgctxt "RID_SVXSTR_EVENT_ERROROCCURRED"
msgid "Error occurred"
msgstr "Došlo k chybe"
#. oAwDt
-#: cui/inc/strings.hrc:142
+#: cui/inc/strings.hrc:143
msgctxt "RID_SVXSTR_EVENT_ADJUSTMENTVALUECHANGED"
msgid "While adjusting"
msgstr "Pri úprave"
#. AyfwP
-#: cui/inc/strings.hrc:143
+#: cui/inc/strings.hrc:144
msgctxt "RID_SVXSTR_EVENT_FOCUSGAINED"
msgid "When receiving focus"
msgstr "Pri získaní zamerania"
#. BD96B
-#: cui/inc/strings.hrc:144
+#: cui/inc/strings.hrc:145
msgctxt "RID_SVXSTR_EVENT_FOCUSLOST"
msgid "When losing focus"
msgstr "Pri strate zamerania"
#. wEhfE
-#: cui/inc/strings.hrc:145
+#: cui/inc/strings.hrc:146
msgctxt "RID_SVXSTR_EVENT_ITEMSTATECHANGED"
msgid "Item status changed"
msgstr "Zmena stavu položky"
#. FRW7b
-#: cui/inc/strings.hrc:146
+#: cui/inc/strings.hrc:147
msgctxt "RID_SVXSTR_EVENT_KEYTYPED"
msgid "Key pressed"
msgstr "Klávesa stlačená"
#. 4kZCD
-#: cui/inc/strings.hrc:147
+#: cui/inc/strings.hrc:148
msgctxt "RID_SVXSTR_EVENT_KEYUP"
msgid "Key released"
msgstr "Klávesa uvoľnená"
#. ZiS2D
-#: cui/inc/strings.hrc:148
+#: cui/inc/strings.hrc:149
msgctxt "RID_SVXSTR_EVENT_LOADED"
msgid "When loading"
msgstr "Pri načítaní"
#. vEjAG
-#: cui/inc/strings.hrc:149
+#: cui/inc/strings.hrc:150
msgctxt "RID_SVXSTR_EVENT_RELOADING"
msgid "Before reloading"
msgstr "Pred opätovným nahratím"
#. 5FvrE
-#: cui/inc/strings.hrc:150
+#: cui/inc/strings.hrc:151
msgctxt "RID_SVXSTR_EVENT_RELOADED"
msgid "When reloading"
msgstr "Pri opätovnom nahraní"
#. CDcYt
-#: cui/inc/strings.hrc:151
+#: cui/inc/strings.hrc:152
msgctxt "RID_SVXSTR_EVENT_MOUSEDRAGGED"
msgid "Mouse moved while key pressed"
msgstr "Myš sa pohla spolu so stlačeným klávesom"
#. CPpyk
-#: cui/inc/strings.hrc:152
+#: cui/inc/strings.hrc:153
msgctxt "RID_SVXSTR_EVENT_MOUSEENTERED"
msgid "Mouse inside"
msgstr "Myš vnútri"
#. 4hGfp
-#: cui/inc/strings.hrc:153
+#: cui/inc/strings.hrc:154
msgctxt "RID_SVXSTR_EVENT_MOUSEEXITED"
msgid "Mouse outside"
msgstr "Myš von"
#. QEuWr
-#: cui/inc/strings.hrc:154
+#: cui/inc/strings.hrc:155
msgctxt "RID_SVXSTR_EVENT_MOUSEMOVED"
msgid "Mouse moved"
msgstr "Posun myši"
#. 8YA3S
-#: cui/inc/strings.hrc:155
+#: cui/inc/strings.hrc:156
msgctxt "RID_SVXSTR_EVENT_MOUSEPRESSED"
msgid "Mouse button pressed"
msgstr "Stlačené tlačidlo myši"
#. RMuJe
-#: cui/inc/strings.hrc:156
+#: cui/inc/strings.hrc:157
msgctxt "RID_SVXSTR_EVENT_MOUSERELEASED"
msgid "Mouse button released"
msgstr "Uvoľnené tlačidlo myši"
#. 5iPHQ
-#: cui/inc/strings.hrc:157
+#: cui/inc/strings.hrc:158
msgctxt "RID_SVXSTR_EVENT_POSITIONING"
msgid "Before record change"
msgstr "Pred zmenou záznamu"
#. yrBiz
-#: cui/inc/strings.hrc:158
+#: cui/inc/strings.hrc:159
msgctxt "RID_SVXSTR_EVENT_POSITIONED"
msgid "After record change"
msgstr "Po zmene záznamu"
#. bdBH4
-#: cui/inc/strings.hrc:159
+#: cui/inc/strings.hrc:160
msgctxt "RID_SVXSTR_EVENT_RESETTED"
msgid "After resetting"
msgstr "Po zmene nastavenia"
#. eVsFk
-#: cui/inc/strings.hrc:160
+#: cui/inc/strings.hrc:161
msgctxt "RID_SVXSTR_EVENT_APPROVERESETTED"
msgid "Prior to reset"
msgstr "Pred resetovaním"
#. 2oAoV
-#: cui/inc/strings.hrc:161
+#: cui/inc/strings.hrc:162
msgctxt "RID_SVXSTR_EVENT_APPROVEACTIONPERFORMED"
msgid "Approve action"
msgstr "Schváliť činnosť"
#. hQAzK
-#: cui/inc/strings.hrc:162
+#: cui/inc/strings.hrc:163
msgctxt "RID_SVXSTR_EVENT_SUBMITTED"
msgid "Before submitting"
msgstr "Pred odoslaním"
#. CFPSo
-#: cui/inc/strings.hrc:163
+#: cui/inc/strings.hrc:164
msgctxt "RID_SVXSTR_EVENT_TEXTCHANGED"
msgid "Text modified"
msgstr "Text bol zmenený"
#. 2ADMH
-#: cui/inc/strings.hrc:164
+#: cui/inc/strings.hrc:165
msgctxt "RID_SVXSTR_EVENT_UNLOADING"
msgid "Before unloading"
msgstr "Pred vyprázdnením"
#. F8BL3
-#: cui/inc/strings.hrc:165
+#: cui/inc/strings.hrc:166
msgctxt "RID_SVXSTR_EVENT_UNLOADED"
msgid "When unloading"
msgstr "Počas vyprázdňovania"
#. M6fPe
-#: cui/inc/strings.hrc:166
+#: cui/inc/strings.hrc:167
msgctxt "RID_SVXSTR_EVENT_CHANGED"
msgid "Changed"
msgstr "Zmenené"
#. gZyVB
-#: cui/inc/strings.hrc:167
+#: cui/inc/strings.hrc:168
msgctxt "RID_SVXSTR_EVENT_CREATEDOC"
msgid "Document created"
msgstr "Dokument bol vytvorený"
#. BcPDW
-#: cui/inc/strings.hrc:168
+#: cui/inc/strings.hrc:169
msgctxt "RID_SVXSTR_EVENT_LOADDOCFINISHED"
msgid "Document loading finished"
msgstr "Načítanie dokumentu bolo ukončené"
#. ir7AQ
-#: cui/inc/strings.hrc:169
+#: cui/inc/strings.hrc:170
msgctxt "RID_SVXSTR_EVENT_SAVEDOCFAILED"
msgid "Saving of document failed"
msgstr "Ukladanie dokumentu zlyhalo"
#. BFtTF
-#: cui/inc/strings.hrc:170
+#: cui/inc/strings.hrc:171
msgctxt "RID_SVXSTR_EVENT_SAVEASDOCFAILED"
msgid "'Save as' has failed"
msgstr "'Uložiť ako' zlyhalo"
#. N9e6u
-#: cui/inc/strings.hrc:171
+#: cui/inc/strings.hrc:172
msgctxt "RID_SVXSTR_EVENT_COPYTODOC"
msgid "Storing or exporting copy of document"
msgstr "Ukladanie alebo exportovanie kópie dokumentu"
#. okb9H
-#: cui/inc/strings.hrc:172
+#: cui/inc/strings.hrc:173
msgctxt "RID_SVXSTR_EVENT_COPYTODOCDONE"
msgid "Document copy has been created"
msgstr "Bola vytvorená kópia dokumentu"
#. DrYTY
-#: cui/inc/strings.hrc:173
+#: cui/inc/strings.hrc:174
msgctxt "RID_SVXSTR_EVENT_COPYTODOCFAILED"
msgid "Creating of document copy failed"
msgstr "Vytváranie kópie dokumentu zlyhalo"
#. BBJJQ
-#: cui/inc/strings.hrc:174
+#: cui/inc/strings.hrc:175
msgctxt "RID_SVXSTR_EVENT_VIEWCREATED"
msgid "View created"
msgstr "Pohľad bol vytvorený"
#. XN9Az
-#: cui/inc/strings.hrc:175
+#: cui/inc/strings.hrc:176
msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEVIEW"
msgid "View is going to be closed"
msgstr "Pohľad bude zatvorený"
#. a9qty
-#: cui/inc/strings.hrc:176
+#: cui/inc/strings.hrc:177
msgctxt "RID_SVXSTR_EVENT_CLOSEVIEW"
msgid "View closed"
msgstr "Pohľad bol zatvorený"
#. dDunN
-#: cui/inc/strings.hrc:177
+#: cui/inc/strings.hrc:178
msgctxt "RID_SVXSTR_EVENT_TITLECHANGED"
msgid "Document title changed"
msgstr "Názov dokumentu bol zmenený"
#. 6D6BS
-#: cui/inc/strings.hrc:178
+#: cui/inc/strings.hrc:179
msgctxt "RID_SVXSTR_EVENT_SELECTIONCHANGED"
msgid "Selection changed"
msgstr "Výber bol zmenený"
#. XArW3
-#: cui/inc/strings.hrc:179
+#: cui/inc/strings.hrc:180
msgctxt "RID_SVXSTR_EVENT_DOUBLECLICK"
msgid "Double click"
msgstr "Dvojklik"
#. oDkyz
-#: cui/inc/strings.hrc:180
+#: cui/inc/strings.hrc:181
msgctxt "RID_SVXSTR_EVENT_RIGHTCLICK"
msgid "Right click"
msgstr "Pravý klik"
#. tVSz9
-#: cui/inc/strings.hrc:181
+#: cui/inc/strings.hrc:182
msgctxt "RID_SVXSTR_EVENT_CALCULATE"
msgid "Formulas calculated"
msgstr "Vzorce boli vyhodnotené"
#. ESxTQ
-#: cui/inc/strings.hrc:182
+#: cui/inc/strings.hrc:183
msgctxt "RID_SVXSTR_EVENT_CONTENTCHANGED"
msgid "Content changed"
msgstr "Obsah bol zmenený"
#. Zimeo
-#: cui/inc/strings.hrc:184
+#: cui/inc/strings.hrc:185
msgctxt "RID_STR_SEARCH_ANYWHERE"
msgid "anywhere in the field"
msgstr "hocikde v poli"
#. qCKMY
-#: cui/inc/strings.hrc:185
+#: cui/inc/strings.hrc:186
msgctxt "RID_STR_SEARCH_BEGINNING"
msgid "beginning of field"
msgstr "na začiatku poľa"
#. CKVTF
-#: cui/inc/strings.hrc:186
+#: cui/inc/strings.hrc:187
msgctxt "RID_STR_SEARCH_END"
msgid "end of field"
msgstr "na konci poľa"
#. FZwxu
-#: cui/inc/strings.hrc:187
+#: cui/inc/strings.hrc:188
msgctxt "RID_STR_SEARCH_WHOLE"
msgid "entire field"
msgstr "celé pole"
#. AFUFs
-#: cui/inc/strings.hrc:188
+#: cui/inc/strings.hrc:189
msgctxt "RID_STR_FROM_TOP"
msgid "From top"
msgstr "Zhora"
#. FBDbX
-#: cui/inc/strings.hrc:189
+#: cui/inc/strings.hrc:190
msgctxt "RID_STR_FROM_BOTTOM"
msgid "From bottom"
msgstr "Zdola"
#. brdgV
-#: cui/inc/strings.hrc:190
+#: cui/inc/strings.hrc:191
msgctxt "RID_STR_SEARCH_NORECORD"
msgid "No records corresponding to your data found."
msgstr "Neboli nájdené žiadne záznamy zodpovedajúce vašim dátam."
#. VkTjA
-#: cui/inc/strings.hrc:191
+#: cui/inc/strings.hrc:192
msgctxt "RID_STR_SEARCH_GENERAL_ERROR"
msgid "An unknown error occurred. The search could not be finished."
msgstr "Vyskytla sa neznáma chyba. Hľadanie nemohlo byť dokončené."
#. jiQdw
-#: cui/inc/strings.hrc:192
+#: cui/inc/strings.hrc:193
msgctxt "RID_STR_OVERFLOW_FORWARD"
msgid "Overflow, search continued at the beginning"
msgstr "Pretečenie, hľadanie pokračuje na začiatku"
#. EzK3y
-#: cui/inc/strings.hrc:193
+#: cui/inc/strings.hrc:194
msgctxt "RID_STR_OVERFLOW_BACKWARD"
msgid "Overflow, search continued at the end"
msgstr "Pretečenie, hľadanie pokračuje na konci"
#. zwiat
-#: cui/inc/strings.hrc:194
+#: cui/inc/strings.hrc:195
msgctxt "RID_STR_SEARCH_COUNTING"
msgid "counting records"
msgstr "počítam záznamy"
#. 7cVWa
-#: cui/inc/strings.hrc:196
+#: cui/inc/strings.hrc:197
msgctxt "RID_SVXSTR_GALLERY_NOFILES"
msgid "<No Files>"
msgstr "<Žiadne súbory>"
#. AnJUu
-#: cui/inc/strings.hrc:197
+#: cui/inc/strings.hrc:198
msgctxt "RID_SVXSTR_GALLERYPROPS_OBJECT"
msgid "Object;Objects"
msgstr "Objekt;Objekty"
#. GQXSM
-#: cui/inc/strings.hrc:198
+#: cui/inc/strings.hrc:199
msgctxt "RID_SVXSTR_GALLERY_READONLY"
msgid "(read-only)"
msgstr "(iba na čítanie)"
#. sAwgA
-#: cui/inc/strings.hrc:199
+#: cui/inc/strings.hrc:200
msgctxt "RID_SVXSTR_GALLERY_ALLFILES"
msgid "<All Files>"
msgstr "<Všetky súbory>"
#. YkCky
-#: cui/inc/strings.hrc:200
+#: cui/inc/strings.hrc:201
msgctxt "RID_SVXSTR_GALLERY_ID_EXISTS"
msgid "This ID already exists..."
msgstr "Také ID už existuje..."
#. w3AUk
-#: cui/inc/strings.hrc:202
+#: cui/inc/strings.hrc:203
msgctxt "RID_MULTIPATH_DBL_ERR"
msgid "The path %1 already exists."
msgstr "Cesta %1 už existuje."
#. 54BsS
-#: cui/inc/strings.hrc:203
+#: cui/inc/strings.hrc:204
msgctxt "RID_SVXSTR_ARCHIVE_TITLE"
msgid "Select Archives"
msgstr "Vybrať archívy"
#. NDB5V
-#: cui/inc/strings.hrc:204
+#: cui/inc/strings.hrc:205
msgctxt "RID_SVXSTR_ARCHIVE_HEADLINE"
msgid "Archives"
msgstr "Archívy"
#. ffPAq
-#: cui/inc/strings.hrc:205
+#: cui/inc/strings.hrc:206
msgctxt "RID_SVXSTR_MULTIFILE_DBL_ERR"
msgid "The file %1 already exists."
msgstr "Súbor %1 už existuje."
#. 5FyxP
-#: cui/inc/strings.hrc:206
+#: cui/inc/strings.hrc:207
msgctxt "RID_SVXSTR_ADD_IMAGE"
msgid "Add Image"
msgstr "Pridať obraz"
#. eUzGk
-#: cui/inc/strings.hrc:208
+#: cui/inc/strings.hrc:209
msgctxt "RID_SVXSTR_ONE_PASSWORD_MISMATCH"
msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
msgstr "Potvdzovacie heslo nesúhlasí so zadaným heslom. Nastavte heslo znovu zadaním rovnakého hesla do obidvoch polí."
#. mN9jE
-#: cui/inc/strings.hrc:209
+#: cui/inc/strings.hrc:210
msgctxt "RID_SVXSTR_TWO_PASSWORDS_MISMATCH"
msgid "The confirmation passwords did not match the original passwords. Set the passwords again."
msgstr "Potvdzovacie heslo nesúhlasí so zadaným heslom. Nastavte heslo znovu."
#. 48ez3
-#: cui/inc/strings.hrc:210
+#: cui/inc/strings.hrc:211
msgctxt "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON"
msgid "Please enter a password to open or to modify, or check the open read-only option to continue."
msgstr "Prosím zadajte heslo na otvorenie alebo úpravy alebo zaškrtnite možnosť otvoriť len na čítanie a pokračujte."
#. aAbAN
-#: cui/inc/strings.hrc:211
+#: cui/inc/strings.hrc:212
msgctxt "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON_V2"
msgid "Set the password by entering the same password in both boxes."
msgstr "Zadajte heslo, a to tak, že ho napíšete do oboch polí."
#. ZXcFw
-#: cui/inc/strings.hrc:212
+#: cui/inc/strings.hrc:213
msgctxt "RID_SVXSTR_PASSWORD_LEN_INDICATOR"
msgid "Password length limit of %1 reached"
msgstr "Dosiahnutý limit %1 pre dĺžku hesla"
#. Fko49
-#: cui/inc/strings.hrc:214
+#: cui/inc/strings.hrc:215
msgctxt "STR_AUTOLINK"
msgid "Automatic"
msgstr "Automatický"
#. WYHFb
-#: cui/inc/strings.hrc:215
+#: cui/inc/strings.hrc:216
msgctxt "STR_MANUALLINK"
msgid "Manual"
msgstr "Ručne"
#. PFN4j
-#: cui/inc/strings.hrc:216
+#: cui/inc/strings.hrc:217
msgctxt "STR_BROKENLINK"
msgid "Not available"
msgstr "Nedostupné"
#. 5ymS3
-#: cui/inc/strings.hrc:217
+#: cui/inc/strings.hrc:218
msgctxt "STR_CLOSELINKMSG"
msgid "Are you sure you want to remove the selected link?"
msgstr "Určite chcete odstrániť vybraný odkaz?"
#. wyMwT
-#: cui/inc/strings.hrc:218
+#: cui/inc/strings.hrc:219
msgctxt "STR_CLOSELINKMSG_MULTI"
msgid "Are you sure you want to remove the selected link?"
msgstr "Určite chcete odstrániť vybraný odkaz?"
#. CN74h
-#: cui/inc/strings.hrc:219
+#: cui/inc/strings.hrc:220
msgctxt "STR_WAITINGLINK"
msgid "Waiting"
msgstr "Čakám"
#. QJKgF
-#: cui/inc/strings.hrc:221
+#: cui/inc/strings.hrc:222
msgctxt "RID_SVXSTR_SAVE_SCREENSHOT_AS"
msgid "Save Screenshot As..."
msgstr "Uložiť snímku obrazovky ako..."
#. CAaFf
#. $(ROW) can be a number or the caption of the row in quotes
-#: cui/inc/strings.hrc:224
+#: cui/inc/strings.hrc:225
msgctxt "RID_SVXSTR_DIAGRAM_ROW"
msgid "Data Series $(ROW)"
msgstr "Dátový rad $(ROW)"
#. HzhXp
-#: cui/inc/strings.hrc:226
+#: cui/inc/strings.hrc:227
msgctxt "RID_SVXSTR_YES"
msgid "Yes"
msgstr "Áno"
#. RuQiB
-#: cui/inc/strings.hrc:227
+#: cui/inc/strings.hrc:228
msgctxt "RID_SVXSTR_NO"
msgid "No"
msgstr "Nie"
#. irLeD
-#: cui/inc/strings.hrc:229
+#: cui/inc/strings.hrc:230
msgctxt "STR_LINKEDDOC_DOESNOTEXIST"
msgid ""
"The file\n"
@@ -1212,7 +1212,7 @@ msgstr ""
"neexistuje."
#. iQYnX
-#: cui/inc/strings.hrc:230
+#: cui/inc/strings.hrc:231
msgctxt "STR_LINKEDDOC_NO_SYSTEM_FILE"
msgid ""
"The file\n"
@@ -1224,7 +1224,7 @@ msgstr ""
"neexistuje v lokálnom súborovom systéme."
#. 4PaJ2
-#: cui/inc/strings.hrc:231
+#: cui/inc/strings.hrc:232
msgctxt "STR_NAME_CONFLICT"
msgid ""
"The name '$file$' is already used for another database.\n"
@@ -1234,163 +1234,163 @@ msgstr ""
"Vyberte iný názov."
#. KFB7q
-#: cui/inc/strings.hrc:232
+#: cui/inc/strings.hrc:233
msgctxt "RID_SVXSTR_QUERY_DELETE_CONFIRM"
msgid "Do you want to delete the entry?"
msgstr "Chcete odstrániť položku?"
#. gg9gD
-#: cui/inc/strings.hrc:234
+#: cui/inc/strings.hrc:235
msgctxt "RID_SVXSTR_DELQUERY"
msgid "Do you want to delete the following object?"
msgstr "Chcete odstrániť nasledujúci objekt?"
#. 42ivC
-#: cui/inc/strings.hrc:235
+#: cui/inc/strings.hrc:236
msgctxt "RID_SVXSTR_DELQUERY_TITLE"
msgid "Confirm Deletion"
msgstr "Potvrdiť odstránenie"
#. kn5KE
-#: cui/inc/strings.hrc:236
+#: cui/inc/strings.hrc:237
msgctxt "RID_SVXSTR_DELFAILED"
msgid "The selected object could not be deleted."
msgstr "Vybraný objekt nemohol byť odstránený."
#. T7T8x
-#: cui/inc/strings.hrc:237
+#: cui/inc/strings.hrc:238
msgctxt "RID_SVXSTR_DELFAILED_TITLE"
msgid "Error Deleting Object"
msgstr "Chyba pri odstraňovaní objektu"
#. SCgXy
-#: cui/inc/strings.hrc:238
+#: cui/inc/strings.hrc:239
msgctxt "RID_SVXSTR_CREATEFAILED"
msgid "The object could not be created."
msgstr "Objekt nemohol byť vytvorený."
#. TmiCU
-#: cui/inc/strings.hrc:239
+#: cui/inc/strings.hrc:240
msgctxt "RID_SVXSTR_CREATEFAILEDDUP"
msgid " Object with the same name already exists."
msgstr " Objekt s rovnakým názvom už existuje."
#. ffc5M
-#: cui/inc/strings.hrc:240
+#: cui/inc/strings.hrc:241
msgctxt "RID_SVXSTR_CREATEFAILED_TITLE"
msgid "Error Creating Object"
msgstr "Chyba pri vytvorení­ objektu"
#. hpB8B
-#: cui/inc/strings.hrc:241
+#: cui/inc/strings.hrc:242
msgctxt "RID_SVXSTR_RENAMEFAILED"
msgid "The object could not be renamed."
msgstr "Objekt nemohol byť premenovaný."
#. eevjm
-#: cui/inc/strings.hrc:242
+#: cui/inc/strings.hrc:243
msgctxt "RID_SVXSTR_RENAMEFAILED_TITLE"
msgid "Error Renaming Object"
msgstr "Chyba pri premenovaní objektu"
#. fTHFY
-#: cui/inc/strings.hrc:243
+#: cui/inc/strings.hrc:244
msgctxt "RID_SVXSTR_ERROR_TITLE"
msgid "%PRODUCTNAME Error"
msgstr "Chyba %PRODUCTNAME"
#. e6BgS
-#: cui/inc/strings.hrc:244
+#: cui/inc/strings.hrc:245
msgctxt "RID_SVXSTR_ERROR_LANG_NOT_SUPPORTED"
msgid "The scripting language %LANGUAGENAME is not supported."
msgstr "Skriptovací jazyk %LANGUAGENAME nie je podporovaný."
#. EUek9
-#: cui/inc/strings.hrc:245
+#: cui/inc/strings.hrc:246
msgctxt "RID_SVXSTR_ERROR_RUNNING"
msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "Pri behu %LANGUAGENAME skriptu %SCRIPTNAME sa vyskytla chyba."
#. KVQAh
-#: cui/inc/strings.hrc:246
+#: cui/inc/strings.hrc:247
msgctxt "RID_SVXSTR_EXCEPTION_RUNNING"
msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "Pri behu %LANGUAGENAME skriptu %SCRIPTNAME sa vyskytla výnimka."
#. 5bFCQ
-#: cui/inc/strings.hrc:247
+#: cui/inc/strings.hrc:248
msgctxt "RID_SVXSTR_ERROR_AT_LINE"
msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr "Pri behu %LANGUAGENAME skriptu %SCRIPTNAME sa vyskytla chyba na riadku: %LINENUMBER."
#. KTptU
-#: cui/inc/strings.hrc:248
+#: cui/inc/strings.hrc:249
msgctxt "RID_SVXSTR_EXCEPTION_AT_LINE"
msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr "Pri behu %LANGUAGENAME skriptu %SCRIPTNAME sa vyskytla výnimka na riadku: %LINENUMBER."
#. BZDbp
-#: cui/inc/strings.hrc:249
+#: cui/inc/strings.hrc:250
msgctxt "RID_SVXSTR_FRAMEWORK_ERROR_RUNNING"
msgid "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "Pri behu %LANGUAGENAME skriptu %SCRIPTNAME sa vyskytla chyba skriptového rámca."
#. AAghx
-#: cui/inc/strings.hrc:250
+#: cui/inc/strings.hrc:251
msgctxt "RID_SVXSTR_ERROR_TYPE_LABEL"
msgid "Type:"
msgstr "Typ:"
#. GAsca
-#: cui/inc/strings.hrc:251
+#: cui/inc/strings.hrc:252
msgctxt "RID_SVXSTR_ERROR_MESSAGE_LABEL"
msgid "Message:"
msgstr "Správa:"
#. ZcxRY
-#: cui/inc/strings.hrc:253
+#: cui/inc/strings.hrc:254
msgctxt "RID_SVXSTR_CHG_MATH"
msgid "MathType to %PRODUCTNAME Math or reverse"
msgstr "MathType do %PRODUCTNAME Math alebo naopak"
#. Ttggs
-#: cui/inc/strings.hrc:254
+#: cui/inc/strings.hrc:255
msgctxt "RID_SVXSTR_CHG_WRITER"
msgid "WinWord to %PRODUCTNAME Writer or reverse"
msgstr "WinWord do %PRODUCTNAME Writer alebo naopak"
#. ZJRKY
-#: cui/inc/strings.hrc:255
+#: cui/inc/strings.hrc:256
msgctxt "RID_SVXSTR_CHG_CALC"
msgid "Excel to %PRODUCTNAME Calc or reverse"
msgstr "Excel do %PRODUCTNAME Calc alebo naopak"
#. VmuND
-#: cui/inc/strings.hrc:256
+#: cui/inc/strings.hrc:257
msgctxt "RID_SVXSTR_CHG_IMPRESS"
msgid "PowerPoint to %PRODUCTNAME Impress or reverse"
msgstr "PowerPoint do %PRODUCTNAME Impress alebo naopak"
#. sE8as
-#: cui/inc/strings.hrc:257
+#: cui/inc/strings.hrc:258
msgctxt "RID_SVXSTR_CHG_SMARTART"
msgid "SmartArt to %PRODUCTNAME shapes or reverse"
msgstr "Prvky SmartArt na útvary %PRODUCTNAME alebo naopak"
#. AEgXY
-#: cui/inc/strings.hrc:258
+#: cui/inc/strings.hrc:259
msgctxt "RID_SVXSTR_CHG_VISIO"
msgid "Visio to %PRODUCTNAME Draw or reverse"
msgstr "Visio na %PRODUCTNAME Draw alebo naopak"
#. Zarkq
-#: cui/inc/strings.hrc:259
+#: cui/inc/strings.hrc:260
msgctxt "RID_SVXSTR_CHG_PDF"
msgid "PDF to %PRODUCTNAME Draw or reverse"
msgstr "PDF na %PRODUCTNAME Draw alebo naopak"
#. dDtDU
-#: cui/inc/strings.hrc:261
+#: cui/inc/strings.hrc:262
msgctxt "RID_SVXSTR_OPT_DOUBLE_DICTS"
msgid ""
"The specified name already exists.\n"
@@ -1400,7 +1400,7 @@ msgstr ""
"Prosím zadajte nové meno."
#. kzhkA
-#: cui/inc/strings.hrc:262
+#: cui/inc/strings.hrc:263
msgctxt "RID_SVXSTR_OPT_INVALID_DICT_NAME"
msgid ""
"The specified name is invalid.\n"
@@ -1422,133 +1422,133 @@ msgstr ""
#. For example, adding "Grammar By" word "fund" to the new user
#. word "crowdfund", the spell checker will recognize "crowdfund"
#. with suffixes of "fund": "crowdfunding", "crowdfund's" etc.
-#: cui/inc/strings.hrc:277
+#: cui/inc/strings.hrc:278
msgctxt "RID_SVXSTR_OPT_GRAMMAR_BY"
msgid "~Grammar By"
msgstr "~Gramatika podľa"
#. LPb5d
-#: cui/inc/strings.hrc:278
+#: cui/inc/strings.hrc:279
msgctxt "STR_MODIFY"
msgid "~Replace"
msgstr "Nah~radiť"
#. anivV
-#: cui/inc/strings.hrc:279
+#: cui/inc/strings.hrc:280
msgctxt "RID_SVXSTR_CONFIRM_SET_LANGUAGE"
msgid "Do you want to change the '%1' dictionary language?"
msgstr "Chcete zmeniť slovník jazyka '%1'?"
#. XEFrB
-#: cui/inc/strings.hrc:281
+#: cui/inc/strings.hrc:282
msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE"
msgid "Do you really want to delete the color scheme?"
msgstr "Určite chcete odstrániť farebnú schému?"
#. ybdED
-#: cui/inc/strings.hrc:282
+#: cui/inc/strings.hrc:283
msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE_TITLE"
msgid "Color Scheme Deletion"
msgstr "Odstránenie farebnej schémy"
#. DoNBE
-#: cui/inc/strings.hrc:283
+#: cui/inc/strings.hrc:284
msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE1"
msgid "Save scheme"
msgstr "Uložiť schému"
#. tFrki
-#: cui/inc/strings.hrc:284
+#: cui/inc/strings.hrc:285
msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE2"
msgid "Name of color scheme"
msgstr "Názov farebnej schémy"
#. BAGbe
-#: cui/inc/strings.hrc:286
+#: cui/inc/strings.hrc:287
msgctxt "RID_SVXSTR_SPELL"
msgid "Spelling"
msgstr "Kontrola pravopisu"
#. uBohu
-#: cui/inc/strings.hrc:287
+#: cui/inc/strings.hrc:288
msgctxt "RID_SVXSTR_HYPH"
msgid "Hyphenation"
msgstr "Delenie slov"
#. XGkt6
-#: cui/inc/strings.hrc:288
+#: cui/inc/strings.hrc:289
msgctxt "RID_SVXSTR_THES"
msgid "Thesaurus"
msgstr "Slovník synoným"
#. EFrDA
-#: cui/inc/strings.hrc:289
+#: cui/inc/strings.hrc:290
msgctxt "RID_SVXSTR_GRAMMAR"
msgid "Grammar"
msgstr "Kontrola gramatiky"
#. zbEv9
-#: cui/inc/strings.hrc:290
+#: cui/inc/strings.hrc:291
msgctxt "RID_SVXSTR_CAPITAL_WORDS"
msgid "Check uppercase words"
msgstr "Kontrolovať slová písané veľkými písmenami"
#. BbDNe
-#: cui/inc/strings.hrc:291
+#: cui/inc/strings.hrc:292
msgctxt "RID_SVXSTR_WORDS_WITH_DIGITS"
msgid "Check words with numbers "
msgstr "Kontrolovať slová s číslicami "
#. bPDyB
-#: cui/inc/strings.hrc:292
+#: cui/inc/strings.hrc:293
msgctxt "RID_SVXSTR_SPELL_SPECIAL"
msgid "Check special regions"
msgstr "Kontrolovať špeciálne oblasti"
#. XjifG
-#: cui/inc/strings.hrc:293
+#: cui/inc/strings.hrc:294
msgctxt "RID_SVXSTR_SPELL_AUTO"
msgid "Check spelling as you type"
msgstr "Kontrolovať pravopis pri písaní"
#. J3ENq
-#: cui/inc/strings.hrc:294
+#: cui/inc/strings.hrc:295
msgctxt "RID_SVXSTR_GRAMMAR_AUTO"
msgid "Check grammar as you type"
msgstr "Kontrolovať gramatiku pri písaní"
#. f6v3L
-#: cui/inc/strings.hrc:295
+#: cui/inc/strings.hrc:296
msgctxt "RID_SVXSTR_NUM_MIN_WORDLEN"
msgid "Minimal number of characters for hyphenation: "
msgstr "Minimálny počet znakov pre delenie slov: "
#. BCrEf
-#: cui/inc/strings.hrc:296
+#: cui/inc/strings.hrc:297
msgctxt "RID_SVXSTR_NUM_PRE_BREAK"
msgid "Characters before line break: "
msgstr "Znakov pred zalomením riadku: "
#. Kgioh
-#: cui/inc/strings.hrc:297
+#: cui/inc/strings.hrc:298
msgctxt "RID_SVXSTR_NUM_POST_BREAK"
msgid "Characters after line break: "
msgstr "Znakov po zalomení riadku: "
#. AewrH
-#: cui/inc/strings.hrc:298
+#: cui/inc/strings.hrc:299
msgctxt "RID_SVXSTR_HYPH_AUTO"
msgid "Hyphenate without inquiry"
msgstr "Deliť bez opýtania"
#. qCKn9
-#: cui/inc/strings.hrc:299
+#: cui/inc/strings.hrc:300
msgctxt "RID_SVXSTR_HYPH_SPECIAL"
msgid "Hyphenate special regions"
msgstr "Deliť slová v špeciálnych oblastiach"
#. weKUF
-#: cui/inc/strings.hrc:301
+#: cui/inc/strings.hrc:302
msgctxt "RID_SVXSTR_JRE_NOT_RECOGNIZED"
msgid ""
"The folder you selected does not contain a Java runtime environment.\n"
@@ -1558,7 +1558,7 @@ msgstr ""
"Vyberte iný priečinok."
#. jFLdB
-#: cui/inc/strings.hrc:302
+#: cui/inc/strings.hrc:303
msgctxt "RID_SVXSTR_JRE_FAILED_VERSION"
msgid ""
"The Java runtime environment you selected is not the required version.\n"
@@ -1568,13 +1568,13 @@ msgstr ""
"Vyberte iný priečinok."
#. 79uiz
-#: cui/inc/strings.hrc:303
+#: cui/inc/strings.hrc:304
msgctxt "RID_SVXSTR_JAVA_START_PARAM"
msgid "Edit Parameter"
msgstr "Upraviť parameter"
#. fsbAN
-#: cui/inc/strings.hrc:305
+#: cui/inc/strings.hrc:306
msgctxt "RID_SVXSTR_OPT_PROXYPORTS"
msgid ""
"Invalid value!\n"
@@ -1586,37 +1586,37 @@ msgstr ""
"Maximálna hodnota portu je 65535."
#. UCFD6
-#: cui/inc/strings.hrc:307
+#: cui/inc/strings.hrc:308
msgctxt "RID_SVXSTR_DESC_GRADIENT"
msgid "Please enter a name for the gradient:"
msgstr "Prosím zadajte názov prechodu:"
#. UDvKR
-#: cui/inc/strings.hrc:308
+#: cui/inc/strings.hrc:309
msgctxt "RID_SVXSTR_DESC_NEW_BITMAP"
msgid "Please enter a name for the bitmap:"
msgstr "Prosím zadajte názov bitmapy:"
#. QXqJD
-#: cui/inc/strings.hrc:309
+#: cui/inc/strings.hrc:310
msgctxt "RID_SVXSTR_DESC_EXT_BITMAP"
msgid "Please enter a name for the external bitmap:"
msgstr "Prosím zadajte názov externej bitmapy:"
#. SrS6X
-#: cui/inc/strings.hrc:310
+#: cui/inc/strings.hrc:311
msgctxt "RID_SVXSTR_DESC_NEW_PATTERN"
msgid "Please enter a name for the pattern:"
msgstr "Prosím zadajte názov vzoru:"
#. yD7AW
-#: cui/inc/strings.hrc:311
+#: cui/inc/strings.hrc:312
msgctxt "RID_SVXSTR_DESC_LINESTYLE"
msgid "Please enter a name for the line style:"
msgstr "Prosím zadajte názov štýlu čiary:"
#. FQDrh
-#: cui/inc/strings.hrc:312
+#: cui/inc/strings.hrc:313
msgctxt "RID_SVXSTR_ASK_CHANGE_LINESTYLE"
msgid ""
"The line style was modified without saving. \n"
@@ -1626,492 +1626,432 @@ msgstr ""
"Zmeňte zvolený štýl čiary alebo pridajte nový."
#. Z5Dkg
-#: cui/inc/strings.hrc:313
+#: cui/inc/strings.hrc:314
msgctxt "RID_SVXSTR_DESC_HATCH"
msgid "Please enter a name for the hatching:"
msgstr "Prosím zadajte názov šrafovania:"
#. rvyBi
-#: cui/inc/strings.hrc:314
+#: cui/inc/strings.hrc:315
msgctxt "RID_SVXSTR_CHANGE"
msgid "Modify"
msgstr "Zmeniť"
#. ZDhBm
-#: cui/inc/strings.hrc:315
+#: cui/inc/strings.hrc:316
msgctxt "RID_SVXSTR_ADD"
msgid "Add"
msgstr "Pridať"
#. QgAFH
-#: cui/inc/strings.hrc:316
+#: cui/inc/strings.hrc:317
msgctxt "RID_SVXSTR_DESC_COLOR"
msgid "Please enter a name for the new color:"
msgstr "Prosím zadajte názov pre novú farbu:"
#. GKnJR
-#: cui/inc/strings.hrc:317
+#: cui/inc/strings.hrc:318
msgctxt "RID_SVXSTR_TABLE"
msgid "Table"
msgstr "Tabuľka"
#. J6FBw
-#: cui/inc/strings.hrc:318
+#: cui/inc/strings.hrc:319
msgctxt "RID_SVXSTR_DESC_LINEEND"
msgid "Please enter a name for the new arrowhead:"
msgstr "Vložte názov novej šípky:"
#. xD9BU
-#: cui/inc/strings.hrc:319
+#: cui/inc/strings.hrc:320
msgctxt "RID_SVXSTR_CHARNAME_NOSTYLE"
msgid "No %1"
msgstr "Čís. %1"
#. GVkFG
-#: cui/inc/strings.hrc:320
+#: cui/inc/strings.hrc:321
msgctxt "RID_SVXSTR_CHARNAME_FAMILY"
msgid "Family:"
msgstr "Rodina:"
#. 6uDkp
-#: cui/inc/strings.hrc:321
+#: cui/inc/strings.hrc:322
msgctxt "RID_SVXSTR_CHARNAME_FONT"
msgid "Font:"
msgstr "Font:"
#. KFXAV
-#: cui/inc/strings.hrc:322
+#: cui/inc/strings.hrc:323
msgctxt "RID_SVXSTR_CHARNAME_STYLE"
msgid "Style:"
msgstr "Štýl:"
#. gDu75
-#: cui/inc/strings.hrc:323
+#: cui/inc/strings.hrc:324
msgctxt "RID_SVXSTR_CHARNAME_TYPEFACE"
msgid "Typeface:"
msgstr "Rez:"
#. BcWHA
-#: cui/inc/strings.hrc:324
+#: cui/inc/strings.hrc:325
msgctxt "RID_SVXSTR_USE_REPLACE"
msgid "Use replacement table"
msgstr "Použiť tabuľku náhrad"
#. L8BEE
-#: cui/inc/strings.hrc:325
+#: cui/inc/strings.hrc:326
msgctxt "RID_SVXSTR_CPTL_STT_WORD"
msgid "Correct TWo INitial CApitals"
msgstr "Opraviť prvé DVe VEľké písmená"
#. p5h3s
-#: cui/inc/strings.hrc:326
+#: cui/inc/strings.hrc:327
msgctxt "RID_SVXSTR_CPTL_STT_SENT"
msgid "Capitalize first letter of every sentence"
msgstr "Veľké písmeno po znakoch .!? a na začiatku textu"
#. prrWd
-#: cui/inc/strings.hrc:327
+#: cui/inc/strings.hrc:328
msgctxt "RID_SVXSTR_BOLD_UNDER"
msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
msgstr "Automatické *tučné*, /kurzíva/, -prečiarknuté- a _podčiarknuté_"
#. a89xT
-#: cui/inc/strings.hrc:328
+#: cui/inc/strings.hrc:329
msgctxt "RID_SVXSTR_NO_DBL_SPACES"
msgid "Ignore double spaces"
msgstr "Ignorovať dvojité medzery"
#. qEA6h
-#: cui/inc/strings.hrc:329
+#: cui/inc/strings.hrc:330
msgctxt "RID_SVXSTR_DETECT_URL"
msgid "URL Recognition"
msgstr "Rozpoznávať URL"
#. JfySE
-#: cui/inc/strings.hrc:330
+#: cui/inc/strings.hrc:331
msgctxt "RID_SVXSTR_DASH"
msgid "Replace dashes"
msgstr "Nahradiť pomlčky"
#. u2BuA
-#: cui/inc/strings.hrc:331
+#: cui/inc/strings.hrc:332
msgctxt "RID_SVXSTR_CORRECT_ACCIDENTAL_CAPS_LOCK"
msgid "Correct accidental use of cAPS LOCK key"
msgstr "Opraviť náhodné použitie klávesy cAPS LOCK"
#. GZqG9
-#: cui/inc/strings.hrc:332
+#: cui/inc/strings.hrc:333
msgctxt "RID_SVXSTR_NON_BREAK_SPACE"
msgid "Add non-breaking space before specific punctuation marks in French text"
msgstr "Vo francúzskom texte pridávať pred určitá interpunkčné znamienka nezalomiteľnú medzeru"
#. NDmW9
-#: cui/inc/strings.hrc:333
+#: cui/inc/strings.hrc:334
msgctxt "RID_SVXSTR_ORDINAL"
msgid "Format ordinal numbers suffixes (1st -> 1^st)"
msgstr "Formátovať prípony anglických poradových čísiel (1st -> 1^st)"
#. 6oHuF
-#: cui/inc/strings.hrc:334
+#: cui/inc/strings.hrc:335
msgctxt "RID_SVXSTR_OLD_HUNGARIAN"
msgid "Transliterate to Old Hungarian if the text direction is from right to left"
msgstr "Prepísať do staromaďarského písma, ak je smer textu sprava doľava"
#. CNtDd
-#: cui/inc/strings.hrc:335
+#: cui/inc/strings.hrc:336
msgctxt "RID_SVXSTR_ANGLE_QUOTES"
msgid "Replace << and >> with angle quotes"
msgstr "Nahradiť << a >> bočnými úvodzovkami"
#. Rc6Zg
-#: cui/inc/strings.hrc:336
+#: cui/inc/strings.hrc:337
msgctxt "RID_SVXSTR_DEL_EMPTY_PARA"
msgid "Remove blank paragraphs"
msgstr "Odstrániť prázdne odseky"
#. F6HCc
-#: cui/inc/strings.hrc:337
+#: cui/inc/strings.hrc:338
msgctxt "RID_SVXSTR_USER_STYLE"
msgid "Replace Custom Styles"
msgstr "Nahradiť vlastné štýly"
#. itDJG
-#: cui/inc/strings.hrc:338
+#: cui/inc/strings.hrc:339
msgctxt "RID_SVXSTR_BULLET"
msgid "Replace bullets with: %1"
msgstr "Nahradiť odrážky za: %1"
#. BvroE
#. To translators: %1 will be replaced with a percentage, e.g. "10%"
-#: cui/inc/strings.hrc:340
+#: cui/inc/strings.hrc:341
msgctxt "RID_SVXSTR_RIGHT_MARGIN"
msgid "Combine single line paragraphs if length greater than %1"
msgstr "Zlúčiť jednoriadkové odseky, ak je dĺžka väčšia ako %1"
#. M9kNQ
-#: cui/inc/strings.hrc:341
+#: cui/inc/strings.hrc:342
msgctxt "RID_SVXSTR_NUM"
msgid "Bulleted and numbered lists. Bullet symbol: %1"
msgstr "Číslované a odrážkové zoznamy. Symbol odrážky: %1"
#. BJVGT
-#: cui/inc/strings.hrc:342
+#: cui/inc/strings.hrc:343
msgctxt "RID_SVXSTR_BORDER"
msgid "Apply border"
msgstr "Použiť orámovanie"
#. bXpcq
-#: cui/inc/strings.hrc:343
+#: cui/inc/strings.hrc:344
msgctxt "RID_SVXSTR_CREATE_TABLE"
msgid "Create table"
msgstr "Vytvoriť tabuľku"
#. RvEBo
-#: cui/inc/strings.hrc:344
+#: cui/inc/strings.hrc:345
msgctxt "RID_SVXSTR_REPLACE_TEMPLATES"
msgid "Apply Styles"
msgstr "Použiť štýly"
#. 6MGUe
-#: cui/inc/strings.hrc:345
+#: cui/inc/strings.hrc:346
msgctxt "RID_SVXSTR_DEL_SPACES_AT_STT_END"
msgid "Delete spaces and tabs at beginning and end of paragraph"
msgstr "Odstrániť medzery a tabulátory na začiatku a konci odseku"
#. R9Kke
-#: cui/inc/strings.hrc:346
+#: cui/inc/strings.hrc:347
msgctxt "RID_SVXSTR_DEL_SPACES_BETWEEN_LINES"
msgid "Delete spaces and tabs at end and start of line"
msgstr "Odstrániť medzery a tabulátory na začiatku a konci riadka"
#. GFpkR
-#: cui/inc/strings.hrc:347
+#: cui/inc/strings.hrc:348
msgctxt "RID_SVXSTR_CONNECTOR"
msgid "Connector"
msgstr "Spojnica"
#. XDp8d
-#: cui/inc/strings.hrc:348
+#: cui/inc/strings.hrc:349
msgctxt "RID_SVXSTR_DIMENSION_LINE"
msgid "Dimension line"
msgstr "Kótovacia čiara"
#. Mxt3D
-#: cui/inc/strings.hrc:349
+#: cui/inc/strings.hrc:350
msgctxt "RID_SVXSTR_STARTQUOTE"
msgid "Start Quote"
msgstr "Ľavá úvodzovka"
#. o8nY6
-#: cui/inc/strings.hrc:350
+#: cui/inc/strings.hrc:351
msgctxt "RID_SVXSTR_ENDQUOTE"
msgid "End Quote"
msgstr "Pravá úvodzovka"
#. zvqUJ
-#: cui/inc/strings.hrc:352
+#: cui/inc/strings.hrc:353
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Bez orámovania"
#. ABKEK
-#: cui/inc/strings.hrc:353
+#: cui/inc/strings.hrc:354
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Nastaviť len vonkajšie orámovanie tabuľky"
#. ygU8P
-#: cui/inc/strings.hrc:354
+#: cui/inc/strings.hrc:355
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Nastaviť vonkajšie orámovanie a vodorovné čiary"
#. q5KJ8
-#: cui/inc/strings.hrc:355
+#: cui/inc/strings.hrc:356
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Nastaviť vonkajšie orámovanie a všetky vnútorné čiary"
#. H5s9X
-#: cui/inc/strings.hrc:356
+#: cui/inc/strings.hrc:357
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Nastaviť vonkajšie orámovanie bez zmeny vnútorných čiar"
#. T5crG
-#: cui/inc/strings.hrc:357
+#: cui/inc/strings.hrc:358
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Nastaviť len uhlopriečky"
#. S6AAA
-#: cui/inc/strings.hrc:358
+#: cui/inc/strings.hrc:359
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Nastaviť všetky štyri okraje"
#. tknFJ
-#: cui/inc/strings.hrc:359
+#: cui/inc/strings.hrc:360
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Orámovanie len vľavo a vpravo"
#. hSmnW
-#: cui/inc/strings.hrc:360
+#: cui/inc/strings.hrc:361
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Orámovanie len hore a dolu"
#. Dy2UG
-#: cui/inc/strings.hrc:361
+#: cui/inc/strings.hrc:362
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Orámovanie len vľavo"
#. nCjXG
-#: cui/inc/strings.hrc:362
+#: cui/inc/strings.hrc:363
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Orámovanie hore a dolu a všetky vnútorné čiary"
#. 46Fq7
-#: cui/inc/strings.hrc:363
+#: cui/inc/strings.hrc:364
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Orámovanie vľavo a vpravo a všetky vnútorné čiary"
#. cZX7G
-#: cui/inc/strings.hrc:364
+#: cui/inc/strings.hrc:365
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Bez tieňovania"
#. bzAHG
-#: cui/inc/strings.hrc:365
+#: cui/inc/strings.hrc:366
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Tieňovanie vpravo dole"
#. FjBGC
-#: cui/inc/strings.hrc:366
+#: cui/inc/strings.hrc:367
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Tieňovanie hore vpravo"
#. 5BkoC
-#: cui/inc/strings.hrc:367
+#: cui/inc/strings.hrc:368
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Tieňovanie vľavo dole"
#. GYB8M
-#: cui/inc/strings.hrc:368
+#: cui/inc/strings.hrc:369
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Tieňovanie hore vľavo"
#. xTvak
-#: cui/inc/strings.hrc:369
+#: cui/inc/strings.hrc:370
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Podpísané: %1"
#. Uc7wm
-#: cui/inc/strings.hrc:371
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Všetky súbory"
#. 8bnrf
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Zaregistrované databázy"
#. xySty
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_CANNOTCONVERTURL_ERR"
msgid "The URL <%1> cannot be converted to a filesystem path."
msgstr "URL <%1> nie je možné konvertovať na cestu súborovému systému."
#. XtUDA
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:378
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2020 LibreOffice contributors."
msgstr "Copyright © 2000–2020 prispievatelia LibreOffice."
#. GesDU
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:379
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "http://www.libreoffice.org/about-us/credits/"
#. WCnhx
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:380
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Dodávateľom tohto produktu je %OOOVENDOR."
#. Lz9nx
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:381
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice bol vytvorený na základe OpenOffice.org."
#. 9aeNR
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:382
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
msgstr "%PRODUCTNAME je odvodený z LibreOffice, ktorý bol vytvorený na základe OpenOffice.org"
#. q5Myk
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:383
msgctxt "aboutdialog|uilocale"
msgid "UI: $LOCALE"
msgstr "UI: $LOCALE"
#. 3vXzF
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:385
msgctxt "optpathspage|editpaths"
msgid "Edit Paths: %1"
msgstr "Upraviť cesty: %1"
#. 8ZaCL
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Label"
msgstr "Popis"
#. GceL6
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Command"
msgstr "Príkaz"
#. dRqYc
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Tooltip"
msgstr "Tip"
#. 3FZFt
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_QRCODEDATALONG"
msgid "The URL or text is too long for the current error correction level. Either shorten the text or decrease the correction level."
msgstr "URL alebo text je príliš dlhý pre aktuálnu úroveň opravy chýb. Skráťte text alebo znížte úroveň opravy chýb."
#. AD8QJ
-#: cui/inc/strings.hrc:391
+#: cui/inc/strings.hrc:392
msgctxt "RID_SVXSTR_DELETEUSERCOLOR1"
msgid "You can only delete user-defined colors"
msgstr "Zmazať môžete iba používateľom definované farby"
#. 4LWGV
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_DELETEUSERCOLOR2"
msgid "Please select the color to delete"
msgstr "Vyberte farbu, ktorú chcete odstrániť"
-#. FjQQ5
-#: cui/inc/strings.hrc:394
-msgctxt "RID_SVXSTR_ADDITIONS_INSTALLBUTTON"
-msgid "Install"
-msgstr "Inštalovať"
-
-#. 2GUFq
-#: cui/inc/strings.hrc:395
-msgctxt "RID_SVXSTR_ADDITIONS_INSTALLEDBUTTON"
-msgid "Installed"
-msgstr "Nainštalované"
-
-#. TmK5f
-#: cui/inc/strings.hrc:396
-msgctxt "RID_SVXSTR_ADDITIONS_INSTALLING"
-msgid "Installing"
-msgstr "Prebieha inštalácia"
-
-#. ZhUbw
-#: cui/inc/strings.hrc:397
-msgctxt "RID_SVXSTR_ADDITIONS_LICENCE"
-msgid "License:"
-msgstr "Licencia:"
-
-#. himrP
-#: cui/inc/strings.hrc:398
-msgctxt "RID_SVXSTR_ADDITIONS_REQUIREDVERSION"
-msgid "Required version: >="
-msgstr "Požadovaná verzia: >="
-
-#. izdAK
-#: cui/inc/strings.hrc:399
-msgctxt "RID_SVXSTR_ADDITIONS_SEARCHING"
-msgid "Searching..."
-msgstr "Vyhľadáva sa..."
-
-#. HYT6K
-#: cui/inc/strings.hrc:400
-msgctxt "RID_SVXSTR_ADDITIONS_LOADING"
-msgid "Loading..."
-msgstr "Načítava sa..."
-
-#. 88Ect
-#: cui/inc/strings.hrc:401
-msgctxt "RID_SVXSTR_ADDITIONS_DIALOG_TITLE_PREFIX"
-msgid "Extensions"
-msgstr "Rozšírenia"
-
-#. KTtQE
-#: cui/inc/strings.hrc:403
-msgctxt "RID_SVXSTR_UI_APPLYALL"
-msgid "Apply to %MODULE"
-msgstr ""
-
-#. mpS3V
-#: cui/inc/tipoftheday.hrc:47
-msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "%PRODUCTNAME offers a variety of user interface options to make you feel at home"
-msgstr ""
-
#. m8rYd
#: cui/inc/tipoftheday.hrc:48
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -3494,646 +3434,579 @@ msgctxt "STR_MORE_LINK"
msgid "More info"
msgstr "Viac informácií"
-#. sCREc
-#: cui/inc/tipoftheday.hrc:274
-msgctxt "STR_UNO_LINK"
-msgid "Run this action now..."
-msgstr ""
-
-#. WBCME
-#: cui/inc/tipoftheday.hrc:275
-msgctxt "STR_UNO_EXECUTE"
-msgid "Execute the command %COMMAND"
-msgstr ""
-
#. CB6ie
-#. tooltip for STR_UNO_LINK
-#: cui/inc/tipoftheday.hrc:276
+#: cui/inc/tipoftheday.hrc:274
msgctxt "STR_TITLE"
msgid "Tip of the Day"
msgstr "Tip dňa"
#. C6Dsn
-#: cui/inc/tipoftheday.hrc:277
+#: cui/inc/tipoftheday.hrc:275
msgctxt "STR_CMD"
msgid "⌘ Cmd"
msgstr "⌘ Cmd"
#. RpVWs
#. use narrow no-break space U+202F here
-#: cui/inc/tipoftheday.hrc:278
+#: cui/inc/tipoftheday.hrc:276
msgctxt "STR_CTRL"
msgid "Ctrl"
msgstr "Ctrl"
#. mZWSR
-#: cui/inc/tipoftheday.hrc:279
+#: cui/inc/tipoftheday.hrc:277
msgctxt "STR_CMD"
msgid "Alt"
msgstr "Alt"
#. QtEGa
-#: cui/inc/tipoftheday.hrc:280
+#: cui/inc/tipoftheday.hrc:278
msgctxt "STR_CTRL"
msgid "⌥ Opt"
msgstr "⌥ Opt"
-#. DKCuY
-#: cui/inc/toolbarmode.hrc:22
-msgctxt "RID_CUI_TOOLBARMODES"
-msgid "Standard user interface with menu, toolbar, and collapsed sidebar. Intended to user who are familiar with the classic interface."
-msgstr ""
-
-#. S5tR2
-#: cui/inc/toolbarmode.hrc:23
-msgctxt "RID_CUI_TOOLBARMODES"
-msgid "Standard user interface but with only one toolbar. Intended for use on small screens."
-msgstr ""
-
-#. wKg2Q
-#: cui/inc/toolbarmode.hrc:24
-msgctxt "RID_CUI_TOOLBARMODES"
-msgid "Standard user interface with expanded sidebar. Expert users who want to quickly change many different properties are advised to use this UI."
-msgstr ""
-
-#. MEQAE
-#: cui/inc/toolbarmode.hrc:25
-msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Tabbed user interface is the most similar to the Ribbons used by Microsoft. It organize functions in tabs and makes the main menu obsolete."
-msgstr ""
-
-#. hXNUY
-#: cui/inc/toolbarmode.hrc:26
-msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Tabbed Compact variant aims to be familiar with Microsoft's interface having at the same time a short interface for small screen sizes."
-msgstr ""
-
-#. GFycb
-#: cui/inc/toolbarmode.hrc:27
-msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Groupedbar Compact variant provides access to functions in groups with most frequently used features in icons and less often used in a dropdown menu. The compact variant favors vertical size."
-msgstr ""
-
-#. Exopn
-#: cui/inc/toolbarmode.hrc:28
-msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Groupedbar interface provides access to functions in groups with most frequently used features in icons and less often used in a dropdown menu. The full variant favors functions and is slightly larger than other variants."
-msgstr ""
-
-#. LNaMA
-#: cui/inc/toolbarmode.hrc:29
-msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Contextual Single interface shows functions in a single line toolbar with contextual depending content."
-msgstr ""
-
-#. xcPJ4
-#: cui/inc/toolbarmode.hrc:30
-msgctxt "RID_CUI_TOOLBARMODES"
-msgid "The Contextual Groups interface focus on beginners. It exposes to the most frequently used functions on groups with the core action as large icon and a couple of small additional features. All functions have a label. Depending on the context an additional section provides access to those functions."
-msgstr ""
-
#. Xnz8J
-#: cui/inc/treeopt.hrc:33
+#: cui/inc/treeopt.hrc:34
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
#. CaEWP
-#: cui/inc/treeopt.hrc:34
+#: cui/inc/treeopt.hrc:35
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "User Data"
msgstr "Údaje o používateľovi"
#. 7XYLG
-#: cui/inc/treeopt.hrc:35
+#: cui/inc/treeopt.hrc:36
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "General"
msgstr "Všeobecné"
#. HCH7S
-#: cui/inc/treeopt.hrc:36
+#: cui/inc/treeopt.hrc:37
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "View"
msgstr "Zobraziť"
#. HCLxc
-#: cui/inc/treeopt.hrc:37
+#: cui/inc/treeopt.hrc:38
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Print"
msgstr "Tlačiť"
#. zuF6E
-#: cui/inc/treeopt.hrc:38
+#: cui/inc/treeopt.hrc:39
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Paths"
msgstr "Cesty"
#. cSVdD
-#: cui/inc/treeopt.hrc:39
+#: cui/inc/treeopt.hrc:40
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Fonts"
msgstr "Písma"
#. XnLRt
-#: cui/inc/treeopt.hrc:40
+#: cui/inc/treeopt.hrc:41
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Security"
msgstr "Bezpečnosť"
#. ZhEG3
-#: cui/inc/treeopt.hrc:41
+#: cui/inc/treeopt.hrc:42
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Personalization"
msgstr "Prispôsobenie"
#. DLfE7
-#: cui/inc/treeopt.hrc:42
+#: cui/inc/treeopt.hrc:43
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Application Colors"
msgstr "Farby aplikácie"
#. hh7Mg
-#: cui/inc/treeopt.hrc:43
+#: cui/inc/treeopt.hrc:44
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Accessibility"
msgstr "Prístupnosť"
#. oUTLV
-#: cui/inc/treeopt.hrc:44
+#: cui/inc/treeopt.hrc:45
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Advanced"
msgstr "Pokročilé"
#. QR2hr
-#: cui/inc/treeopt.hrc:45
+#: cui/inc/treeopt.hrc:46
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Basic IDE"
msgstr "Basic IDE"
#. ZS4Sx
-#: cui/inc/treeopt.hrc:46
+#: cui/inc/treeopt.hrc:47
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "Online Update"
msgstr "Online aktualizácia"
#. 8CCRN
-#: cui/inc/treeopt.hrc:47
+#: cui/inc/treeopt.hrc:48
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "OpenCL"
msgstr "OpenCL"
#. VNpPF
-#: cui/inc/treeopt.hrc:52
+#: cui/inc/treeopt.hrc:53
msgctxt "SID_LANGUAGE_OPTIONS_RES"
msgid "Language Settings"
msgstr "Nastavenie jazyka"
#. JmAVh
-#: cui/inc/treeopt.hrc:53
+#: cui/inc/treeopt.hrc:54
msgctxt "SID_LANGUAGE_OPTIONS_RES"
msgid "Languages"
msgstr "Jazyky"
#. HEzGc
-#: cui/inc/treeopt.hrc:54
+#: cui/inc/treeopt.hrc:55
msgctxt "SID_LANGUAGE_OPTIONS_RES"
msgid "Writing Aids"
msgstr "Pomôcky na písanie"
#. DLJAB
-#: cui/inc/treeopt.hrc:55
+#: cui/inc/treeopt.hrc:56
msgctxt "SID_LANGUAGE_OPTIONS_RES"
msgid "Searching in Japanese"
msgstr "Hľadanie v japončine"
#. dkSs5
-#: cui/inc/treeopt.hrc:56
+#: cui/inc/treeopt.hrc:57
msgctxt "SID_LANGUAGE_OPTIONS_RES"
msgid "Asian Layout"
msgstr "Ázijské rozloženie"
#. VsApk
-#: cui/inc/treeopt.hrc:57
+#: cui/inc/treeopt.hrc:58
msgctxt "SID_LANGUAGE_OPTIONS_RES"
msgid "Complex Text Layout"
msgstr "Komplexné rozloženie textu"
#. TGnig
-#: cui/inc/treeopt.hrc:62
+#: cui/inc/treeopt.hrc:63
msgctxt "SID_INET_DLG_RES"
msgid "Internet"
msgstr "Internet"
#. QJNEE
-#: cui/inc/treeopt.hrc:63
+#: cui/inc/treeopt.hrc:64
msgctxt "SID_INET_DLG_RES"
msgid "Proxy"
msgstr "Proxy"
#. EhHFs
-#: cui/inc/treeopt.hrc:64
+#: cui/inc/treeopt.hrc:65
msgctxt "SID_INET_DLG_RES"
msgid "Email"
msgstr "E-mail"
#. 4Cajf
-#: cui/inc/treeopt.hrc:69
+#: cui/inc/treeopt.hrc:70
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "%PRODUCTNAME Writer"
msgstr "%PRODUCTNAME Writer"
#. CtZCN
-#: cui/inc/treeopt.hrc:70
+#: cui/inc/treeopt.hrc:71
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "General"
msgstr "Všeobecné"
#. t9DgE
-#: cui/inc/treeopt.hrc:71
+#: cui/inc/treeopt.hrc:72
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "View"
msgstr "Zobraziť"
#. MxbiL
-#: cui/inc/treeopt.hrc:72
+#: cui/inc/treeopt.hrc:73
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Formatting Aids"
msgstr "Pomôcky na formátovanie"
#. V3usW
-#: cui/inc/treeopt.hrc:73
+#: cui/inc/treeopt.hrc:74
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Grid"
msgstr "Mriežka"
#. Cc2Ka
-#: cui/inc/treeopt.hrc:74
+#: cui/inc/treeopt.hrc:75
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Basic Fonts (Western)"
msgstr "Základné písma (západné)"
#. TDUti
-#: cui/inc/treeopt.hrc:75
+#: cui/inc/treeopt.hrc:76
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Basic Fonts (Asian)"
msgstr "Základné písma (ázijské)"
#. nfHR8
-#: cui/inc/treeopt.hrc:76
+#: cui/inc/treeopt.hrc:77
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Basic Fonts (CTL)"
msgstr "Základné písma (CTL)"
#. 38A6E
-#: cui/inc/treeopt.hrc:77
+#: cui/inc/treeopt.hrc:78
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Print"
msgstr "Tlačiť"
#. UCGLq
-#: cui/inc/treeopt.hrc:78
+#: cui/inc/treeopt.hrc:79
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Table"
msgstr "Tabuľka"
#. NVRAk
-#: cui/inc/treeopt.hrc:79
+#: cui/inc/treeopt.hrc:80
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Changes"
msgstr "Zmeny"
#. 3DyC7
-#: cui/inc/treeopt.hrc:80
+#: cui/inc/treeopt.hrc:81
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Comparison"
msgstr "Porovnanie"
#. AtMGC
-#: cui/inc/treeopt.hrc:81
+#: cui/inc/treeopt.hrc:82
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Compatibility"
msgstr "Kompatibilita"
#. byMJP
-#: cui/inc/treeopt.hrc:82
+#: cui/inc/treeopt.hrc:83
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "AutoCaption"
msgstr "Automatické popisy"
#. aGnq6
-#: cui/inc/treeopt.hrc:83
+#: cui/inc/treeopt.hrc:84
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Mail Merge Email"
msgstr "Hromadné rozposielanie e-mailov"
#. trEVm
-#: cui/inc/treeopt.hrc:88
+#: cui/inc/treeopt.hrc:89
msgctxt "SID_SW_ONLINEOPTIONS_RES"
msgid "%PRODUCTNAME Writer/Web"
msgstr "%PRODUCTNAME Writer/Web"
#. BZ7BG
-#: cui/inc/treeopt.hrc:89
+#: cui/inc/treeopt.hrc:90
msgctxt "SID_SW_ONLINEOPTIONS_RES"
msgid "View"
msgstr "Zobraziť"
#. 3q8qM
-#: cui/inc/treeopt.hrc:90
+#: cui/inc/treeopt.hrc:91
msgctxt "SID_SW_ONLINEOPTIONS_RES"
msgid "Formatting Aids"
msgstr "Pomôcky na formátovanie"
#. 9fj7Y
-#: cui/inc/treeopt.hrc:91
+#: cui/inc/treeopt.hrc:92
msgctxt "SID_SW_ONLINEOPTIONS_RES"
msgid "Grid"
msgstr "Mriežka"
#. stfD4
-#: cui/inc/treeopt.hrc:92
+#: cui/inc/treeopt.hrc:93
msgctxt "SID_SW_ONLINEOPTIONS_RES"
msgid "Print"
msgstr "Tlačiť"
#. KpkDS
-#: cui/inc/treeopt.hrc:93
+#: cui/inc/treeopt.hrc:94
msgctxt "SID_SW_ONLINEOPTIONS_RES"
msgid "Table"
msgstr "Tabuľka"
#. 9NS67
-#: cui/inc/treeopt.hrc:94
+#: cui/inc/treeopt.hrc:95
msgctxt "SID_SW_ONLINEOPTIONS_RES"
msgid "Background"
msgstr "Pozadie"
#. 9WCAp
-#: cui/inc/treeopt.hrc:99
+#: cui/inc/treeopt.hrc:100
msgctxt "SID_SM_EDITOPTIONS_RES"
msgid "%PRODUCTNAME Math"
msgstr "%PRODUCTNAME Math"
#. rFHDF
-#: cui/inc/treeopt.hrc:100
+#: cui/inc/treeopt.hrc:101
msgctxt "SID_SM_EDITOPTIONS_RES"
msgid "Settings"
msgstr "Nastavenia"
#. vk6jX
-#: cui/inc/treeopt.hrc:105
+#: cui/inc/treeopt.hrc:106
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "%PRODUCTNAME Calc"
msgstr "%PRODUCTNAME Calc"
#. xe2ry
-#: cui/inc/treeopt.hrc:106
+#: cui/inc/treeopt.hrc:107
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "General"
msgstr "Všeobecné"
#. xE8RH
-#: cui/inc/treeopt.hrc:107
+#: cui/inc/treeopt.hrc:108
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "Defaults"
msgstr "Predvolené"
#. ufTM2
-#: cui/inc/treeopt.hrc:108
+#: cui/inc/treeopt.hrc:109
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "View"
msgstr "Zobraziť"
#. QMCfy
-#: cui/inc/treeopt.hrc:109
+#: cui/inc/treeopt.hrc:110
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "Calculate"
msgstr "Vypočítať"
#. oq8xG
-#: cui/inc/treeopt.hrc:110
+#: cui/inc/treeopt.hrc:111
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "Formula"
msgstr "Vzorec"
#. HUUQP
-#: cui/inc/treeopt.hrc:111
+#: cui/inc/treeopt.hrc:112
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "Sort Lists"
msgstr "Zoradené zoznamy"
#. bostB
-#: cui/inc/treeopt.hrc:112
+#: cui/inc/treeopt.hrc:113
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "Changes"
msgstr "Zmeny"
#. WVbFZ
-#: cui/inc/treeopt.hrc:113
+#: cui/inc/treeopt.hrc:114
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "Compatibility"
msgstr "Kompatibilita"
#. UZGDj
-#: cui/inc/treeopt.hrc:114
+#: cui/inc/treeopt.hrc:115
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "Grid"
msgstr "Mriežka"
#. wrdFF
-#: cui/inc/treeopt.hrc:115
+#: cui/inc/treeopt.hrc:116
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "Print"
msgstr "Tlačiť"
#. EeKzo
-#: cui/inc/treeopt.hrc:120
+#: cui/inc/treeopt.hrc:121
msgctxt "SID_SD_EDITOPTIONS_RES"
msgid "%PRODUCTNAME Impress"
msgstr "%PRODUCTNAME Impress"
#. GxFDj
-#: cui/inc/treeopt.hrc:121
+#: cui/inc/treeopt.hrc:122
msgctxt "SID_SD_EDITOPTIONS_RES"
msgid "General"
msgstr "Všeobecné"
#. unCEW
-#: cui/inc/treeopt.hrc:122
+#: cui/inc/treeopt.hrc:123
msgctxt "SID_SD_EDITOPTIONS_RES"
msgid "View"
msgstr "Zobraziť"
#. UxXLE
-#: cui/inc/treeopt.hrc:123
+#: cui/inc/treeopt.hrc:124
msgctxt "SID_SD_EDITOPTIONS_RES"
msgid "Grid"
msgstr "Mriežka"
#. DLCS4
-#: cui/inc/treeopt.hrc:124
+#: cui/inc/treeopt.hrc:125
msgctxt "SID_SD_EDITOPTIONS_RES"
msgid "Print"
msgstr "Tlačiť"
#. wZWAL
-#: cui/inc/treeopt.hrc:129
+#: cui/inc/treeopt.hrc:130
msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
msgid "%PRODUCTNAME Draw"
msgstr "%PRODUCTNAME Draw"
#. B9gGf
-#: cui/inc/treeopt.hrc:130
+#: cui/inc/treeopt.hrc:131
msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
msgid "General"
msgstr "Všeobecné"
#. oiiBb
-#: cui/inc/treeopt.hrc:131
+#: cui/inc/treeopt.hrc:132
msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
msgid "View"
msgstr "Zobraziť"
#. et8PK
-#: cui/inc/treeopt.hrc:132
+#: cui/inc/treeopt.hrc:133
msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
msgid "Grid"
msgstr "Mriežka"
#. oGTEW
-#: cui/inc/treeopt.hrc:133
+#: cui/inc/treeopt.hrc:134
msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
msgid "Print"
msgstr "Tlačiť"
#. BECZi
-#: cui/inc/treeopt.hrc:138
+#: cui/inc/treeopt.hrc:139
msgctxt "SID_SCH_EDITOPTIONS_RES"
msgid "Charts"
msgstr "Grafy"
#. XAhzo
-#: cui/inc/treeopt.hrc:139
+#: cui/inc/treeopt.hrc:140
msgctxt "SID_SCH_EDITOPTIONS_RES"
msgid "Default Colors"
msgstr "Predvolené farby"
#. oUBac
-#: cui/inc/treeopt.hrc:144
+#: cui/inc/treeopt.hrc:145
msgctxt "SID_FILTER_DLG_RES"
msgid "Load/Save"
msgstr "Načítať/Uložiť"
#. 3go3N
-#: cui/inc/treeopt.hrc:145
+#: cui/inc/treeopt.hrc:146
msgctxt "SID_FILTER_DLG_RES"
msgid "General"
msgstr "Všeobecné"
#. 9aX4K
-#: cui/inc/treeopt.hrc:146
+#: cui/inc/treeopt.hrc:147
msgctxt "SID_FILTER_DLG_RES"
msgid "VBA Properties"
msgstr "Vlastnosti VBA"
#. oAGDd
-#: cui/inc/treeopt.hrc:147
+#: cui/inc/treeopt.hrc:148
msgctxt "SID_FILTER_DLG_RES"
msgid "Microsoft Office"
msgstr "Microsoft Office"
#. UtTyJ
-#: cui/inc/treeopt.hrc:148
+#: cui/inc/treeopt.hrc:149
msgctxt "SID_FILTER_DLG_RES"
msgid "HTML Compatibility"
msgstr "HTML kompatibilita"
#. Qysp7
-#: cui/inc/treeopt.hrc:153
+#: cui/inc/treeopt.hrc:154
msgctxt "SID_SB_STARBASEOPTIONS_RES"
msgid "%PRODUCTNAME Base"
msgstr "%PRODUCTNAME Base"
#. 78XBF
-#: cui/inc/treeopt.hrc:154
+#: cui/inc/treeopt.hrc:155
msgctxt "SID_SB_STARBASEOPTIONS_RES"
msgid "Connections"
msgstr "Spojenia"
#. 54yat
-#: cui/inc/treeopt.hrc:155
+#: cui/inc/treeopt.hrc:156
msgctxt "SID_SB_STARBASEOPTIONS_RES"
msgid "Databases"
msgstr "Databázy"
#. NFYmd
-#: cui/inc/twolines.hrc:27
+#: cui/inc/twolines.hrc:28
msgctxt "twolinespage|liststore1"
msgid "(None)"
msgstr "(Žiadny)"
#. oUwW4
-#: cui/inc/twolines.hrc:28
+#: cui/inc/twolines.hrc:29
msgctxt "twolinespage|liststore1"
msgid "("
msgstr "("
#. mSyZB
-#: cui/inc/twolines.hrc:29
+#: cui/inc/twolines.hrc:30
msgctxt "twolinespage|liststore1"
msgid "["
msgstr "["
#. aDAks
-#: cui/inc/twolines.hrc:30
+#: cui/inc/twolines.hrc:31
msgctxt "twolinespage|liststore1"
msgid "<"
msgstr "<"
#. uVPNB
-#: cui/inc/twolines.hrc:31
+#: cui/inc/twolines.hrc:32
msgctxt "twolinespage|liststore1"
msgid "{"
msgstr "{"
#. 6TmK5
-#: cui/inc/twolines.hrc:32
+#: cui/inc/twolines.hrc:33
msgctxt "twolinespage|liststore1"
msgid "Other Characters..."
msgstr "Iné znaky..."
#. ycpAX
-#: cui/inc/twolines.hrc:37
+#: cui/inc/twolines.hrc:38
msgctxt "twolinespage|liststore2"
msgid "(None)"
msgstr "(Žiadny)"
#. ts6EG
-#: cui/inc/twolines.hrc:38
+#: cui/inc/twolines.hrc:39
msgctxt "twolinespage|liststore2"
msgid ")"
msgstr ")"
#. REFgT
-#: cui/inc/twolines.hrc:39
+#: cui/inc/twolines.hrc:40
msgctxt "twolinespage|liststore2"
msgid "]"
msgstr "]"
#. wFPzF
-#: cui/inc/twolines.hrc:40
+#: cui/inc/twolines.hrc:41
msgctxt "twolinespage|liststore2"
msgid ">"
msgstr ">"
#. HFeFt
-#: cui/inc/twolines.hrc:41
+#: cui/inc/twolines.hrc:42
msgctxt "twolinespage|liststore2"
msgid "}"
msgstr "}"
#. YcMQR
-#: cui/inc/twolines.hrc:42
+#: cui/inc/twolines.hrc:43
msgctxt "twolinespage|liststore2"
msgid "Other Characters..."
msgstr "Iné znaky..."
@@ -4145,77 +4018,47 @@ msgid "Expert Configuration"
msgstr "Expertné nastavenia"
#. GBiPy
-#: cui/uiconfig/ui/aboutconfigdialog.ui:40
+#: cui/uiconfig/ui/aboutconfigdialog.ui:43
msgctxt "aboutconfigdialog|edit"
msgid "Edit"
msgstr "Upraviť"
-#. Z7SA5
-#: cui/uiconfig/ui/aboutconfigdialog.ui:46
-msgctxt "extended_tip|edit"
-msgid "Opens a dialog to edit the preference."
-msgstr "Otvorí dialógové okno na úpravu preferencií."
-
#. 2uM3W
-#: cui/uiconfig/ui/aboutconfigdialog.ui:58
+#: cui/uiconfig/ui/aboutconfigdialog.ui:56
msgctxt "aboutconfigdialog|reset"
msgid "Reset"
msgstr "Obnoviť"
-#. 95seU
-#: cui/uiconfig/ui/aboutconfigdialog.ui:64
-msgctxt "extended_tip|reset"
-msgid "Undo changes done so far in this dialog."
-msgstr "V tomto dialógovom okne zrušíte doterajšie zmeny."
-
-#. j4Avi
-#: cui/uiconfig/ui/aboutconfigdialog.ui:149
-msgctxt "extended_tip|searchEntry"
-msgid "Type the preference you want to display in the text area"
-msgstr "Zadajte preferenciu, ktorú chcete zobraziť v textovej oblasti"
-
#. EhpWF
-#: cui/uiconfig/ui/aboutconfigdialog.ui:161
+#: cui/uiconfig/ui/aboutconfigdialog.ui:149
msgctxt "aboutconfigdialog|searchButton"
msgid "_Search"
msgstr "_Hľadať"
-#. nmtBr
-#: cui/uiconfig/ui/aboutconfigdialog.ui:170
-msgctxt "extended_tip|searchButton"
-msgid "Click to search your preference text in the Preferences tree."
-msgstr "Kliknutím vyhľadáte text predvoľby v strome predvolieb."
-
#. BMohC
-#: cui/uiconfig/ui/aboutconfigdialog.ui:212
+#: cui/uiconfig/ui/aboutconfigdialog.ui:196
msgctxt "aboutconfigdialog|preference"
msgid "Preference Name"
msgstr "Názov predvoľby"
#. PiV9t
-#: cui/uiconfig/ui/aboutconfigdialog.ui:232
+#: cui/uiconfig/ui/aboutconfigdialog.ui:216
msgctxt "aboutconfigdialog|property"
msgid "Property"
msgstr "Vlastnosť"
#. g6RFE
-#: cui/uiconfig/ui/aboutconfigdialog.ui:246
+#: cui/uiconfig/ui/aboutconfigdialog.ui:230
msgctxt "aboutconfigdialog|type"
msgid "Type"
msgstr "Typ"
#. BYBgx
-#: cui/uiconfig/ui/aboutconfigdialog.ui:260
+#: cui/uiconfig/ui/aboutconfigdialog.ui:244
msgctxt "aboutconfigdialog|value"
msgid "Value"
msgstr "Hodnota"
-#. A9J9F
-#: cui/uiconfig/ui/aboutconfigdialog.ui:272
-msgctxt "extended_tip|preferences"
-msgid "List the preferences organized hierarchically in a tree layout."
-msgstr "V stromovom usporiadaní sa hierarchicky zobrazuje zoznam predvolieb."
-
#. B8FF9
#: cui/uiconfig/ui/aboutconfigvaluedialog.ui:8
msgctxt "aboutconfigvaluedialog|AboutConfigValueDialog"
@@ -4235,7 +4078,7 @@ msgid "About %PRODUCTNAME"
msgstr "O aplikácii %PRODUCTNAME"
#. rdEwV
-#: cui/uiconfig/ui/aboutdialog.ui:106
+#: cui/uiconfig/ui/aboutdialog.ui:109
msgctxt "aboutdialog|lbVersion"
msgid "Version:"
msgstr "Verzia:"
@@ -4247,774 +4090,395 @@ msgid "Build:"
msgstr "Zostavenie:"
#. J78bj
-#: cui/uiconfig/ui/aboutdialog.ui:139
+#: cui/uiconfig/ui/aboutdialog.ui:136
msgctxt "aboutdialog|lbEnvironment"
msgid "Environment:"
msgstr "Prostredie:"
#. c2sEB
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:189
msgctxt "aboutdialog|lbExtra"
msgid "Misc:"
msgstr "Rôzne:"
#. FwVyQ
-#: cui/uiconfig/ui/aboutdialog.ui:239
+#: cui/uiconfig/ui/aboutdialog.ui:218
msgctxt "aboutdialog|lbLocale"
msgid "Locale:"
msgstr "Národná prostredie:"
#. SFbP2
-#: cui/uiconfig/ui/aboutdialog.ui:270
+#: cui/uiconfig/ui/aboutdialog.ui:243
msgctxt "aboutdialog|lbUI"
msgid "User Interface:"
msgstr "Používateľské rozhranie:"
#. KFo3i
-#: cui/uiconfig/ui/aboutdialog.ui:310
+#: cui/uiconfig/ui/aboutdialog.ui:277
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME je moderný a ľahko použiteľný kancelársky balík s otvoreným kódom na spracovanie textu, tabuliek, prezentácií a ďalších dokumentov."
#. cFC6E
-#: cui/uiconfig/ui/aboutdialog.ui:349
+#: cui/uiconfig/ui/aboutdialog.ui:316
msgctxt "aboutdialog|credits"
msgid "Credits"
msgstr "Zásluhy"
#. VkRAv
-#: cui/uiconfig/ui/aboutdialog.ui:365
+#: cui/uiconfig/ui/aboutdialog.ui:332
msgctxt "aboutdialog|website"
msgid "Website"
msgstr "Webová stránka"
-#. i4Jo2
-#: cui/uiconfig/ui/aboutdialog.ui:381
-msgctxt "aboutdialog|releasenotes"
+#. zSmJb
+#: cui/uiconfig/ui/aboutdialog.ui:348
+msgctxt "aboutdialog|description"
msgid "Release Notes"
msgstr "Poznámky k vydaniu"
#. 5TUrF
-#: cui/uiconfig/ui/aboutdialog.ui:409
+#: cui/uiconfig/ui/aboutdialog.ui:376
msgctxt "aboutdialog|lbVersionInfo"
msgid "Version Information"
msgstr "Informácie o verzii"
#. jZvGC
-#: cui/uiconfig/ui/aboutdialog.ui:428
+#: cui/uiconfig/ui/aboutdialog.ui:393
msgctxt "aboutdialog|btnCopyVersionTooltip"
msgid "Copy all version information in English"
msgstr "Skopírovať všetky informácie o verzii v angličtine"
-#. UCjik
-#: cui/uiconfig/ui/accelconfigpage.ui:124
-msgctxt "accelconfigpage|extended_tip|shortcuts"
-msgid "Lists the shortcut keys and the associated commands. To assign or modify the shortcut key for the command selected in the Function list, click a shortcut in this list, and then click Modify."
-msgstr "Uvádza zoznam klávesových skratiek a súvisiacich príkazov. Ak chcete priradiť alebo upraviť klávesovú skratku pre príkaz vybraný v zozname funkcií, kliknite na odkaz v tomto zozname a potom kliknite na tlačidlo Upraviť."
-
#. MP3WF
-#: cui/uiconfig/ui/accelconfigpage.ui:137
+#: cui/uiconfig/ui/accelconfigpage.ui:132
msgctxt "accelconfigpage|label21"
msgid "Shortcu_t Keys"
msgstr "Klávesové _skratky"
#. rEN3b
-#: cui/uiconfig/ui/accelconfigpage.ui:163
+#: cui/uiconfig/ui/accelconfigpage.ui:158
msgctxt "accelconfigpage|office"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#. Bgzqd
-#: cui/uiconfig/ui/accelconfigpage.ui:173
-msgctxt "accelconfigpage|extended_tip|office"
-msgid "Displays shortcut keys that are common to all %PRODUCTNAME applications."
-msgstr "Zobrazí klávesové skratky, ktoré sú spoločné pre všetky aplikácie %PRODUCTNAME."
-
#. jjhUE
-#: cui/uiconfig/ui/accelconfigpage.ui:185
+#: cui/uiconfig/ui/accelconfigpage.ui:175
msgctxt "accelconfigpage|module"
msgid "$(MODULE)"
msgstr "$(MODULE)"
-#. VnoU5
-#: cui/uiconfig/ui/accelconfigpage.ui:195
-msgctxt "accelconfigpage|extended_tip|module"
-msgid "Displays shortcut keys for the current %PRODUCTNAME application."
-msgstr "Zobrazí klávesové skratky pre aktuálnu aplikáciu %PRODUCTNAME."
-
#. R2nhJ
-#: cui/uiconfig/ui/accelconfigpage.ui:222
+#: cui/uiconfig/ui/accelconfigpage.ui:207
msgctxt "accelconfigpage|change"
msgid "_Modify"
msgstr "Použ_iť"
-#. F2oLa
-#: cui/uiconfig/ui/accelconfigpage.ui:229
-msgctxt "accelconfigpage|extended_tip|change"
-msgid "Assigns the key combination selected in the Shortcut keys list to the command selected in the Function list."
-msgstr "Priradí kombináciu klávesov vybranú v zozname klávesových skratiek k príkazu vybranému v zozname funkcií."
-
-#. eFsw9
-#: cui/uiconfig/ui/accelconfigpage.ui:248
-msgctxt "accelconfigpage|extended_tip|delete"
-msgid "Deletes the selected element or elements without requiring confirmation."
-msgstr "Odstráni vybraný prvok alebo prvky bez vyžadovania potvrdenia."
-
#. 6MwWq
-#: cui/uiconfig/ui/accelconfigpage.ui:260
+#: cui/uiconfig/ui/accelconfigpage.ui:235
msgctxt "accelconfigpage|load"
msgid "_Load..."
msgstr "_Načítať..."
-#. yANEF
-#: cui/uiconfig/ui/accelconfigpage.ui:267
-msgctxt "accelconfigpage|extended_tip|load"
-msgid "Replaces the shortcut key configuration with one that was previously saved."
-msgstr "Nahradí konfiguráciu klávesovej skratky tou, ktorá bola predtým uložená."
-
#. Uq7F5
-#: cui/uiconfig/ui/accelconfigpage.ui:280
+#: cui/uiconfig/ui/accelconfigpage.ui:250
msgctxt "accelconfigpage|save"
msgid "_Save..."
msgstr "_Uložiť..."
-#. e9TFA
-#: cui/uiconfig/ui/accelconfigpage.ui:287
-msgctxt "accelconfigpage|extended_tip|save"
-msgid "Saves the current shortcut key configuration, so that you can load it later."
-msgstr "Uloží aktuálnu konfiguráciu klávesových skratiek, aby ste ju mohli načítať neskôr."
-
-#. mJmga
-#: cui/uiconfig/ui/accelconfigpage.ui:308
-msgctxt "accelconfigpage|extended_tip|reset"
-msgid "Resets modified values back to the default values."
-msgstr "Resetuje upravené hodnoty späť na predvolené hodnoty."
-
#. BKAsD
-#: cui/uiconfig/ui/accelconfigpage.ui:365
+#: cui/uiconfig/ui/accelconfigpage.ui:325
msgctxt "accelconfigpage|searchEntry"
msgid "Type to search"
msgstr "Zadajte text na vyhľadanie"
#. T5FGo
-#: cui/uiconfig/ui/accelconfigpage.ui:385
+#: cui/uiconfig/ui/accelconfigpage.ui:345
msgctxt "accelconfigpage|label23"
msgid "_Category"
msgstr "_Kategória"
#. xfWzA
-#: cui/uiconfig/ui/accelconfigpage.ui:399
+#: cui/uiconfig/ui/accelconfigpage.ui:359
msgctxt "accelconfigpage|label24"
msgid "_Function"
msgstr "_Funkcia"
#. 7PCeb
-#: cui/uiconfig/ui/accelconfigpage.ui:413
+#: cui/uiconfig/ui/accelconfigpage.ui:373
msgctxt "accelconfigpage|label25"
msgid "_Keys"
msgstr "_Klávesy"
-#. 8DnFJ
-#: cui/uiconfig/ui/accelconfigpage.ui:457
-msgctxt "accelconfigpage|extended_tip|category"
-msgid "Lists the available function categories. To assign shortcuts to Styles, open the \"Styles\" category."
-msgstr "Uvádza dostupné kategórie funkcií. Ak chcete skratky priradiť štýlom, otvorte kategóriu Štýly."
-
-#. wGm8q
-#: cui/uiconfig/ui/accelconfigpage.ui:504
-msgctxt "accelconfigpage|extended_tip|function"
-msgid "Select a function that you want to assign a shortcut key to, click a key combination in the Shortcut keys list, and then click Modify. If the selected function already has a shortcut key, it is displayed in the Keys list."
-msgstr "Vyberte funkciu, ktorej chcete priradiť klávesovú skratku, kliknite na kombináciu klávesov v zozname Klávesové skratky a potom kliknite na príkaz Upraviť. Ak vybraná funkcia už má klávesovú skratku, zobrazí sa v zozname Klávesy."
-
#. CqdJF
-#: cui/uiconfig/ui/accelconfigpage.ui:571
+#: cui/uiconfig/ui/accelconfigpage.ui:522
msgctxt "accelconfigpage|label22"
msgid "F_unctions"
msgstr "_Funkcie"
-#. YDyhc
-#: cui/uiconfig/ui/accelconfigpage.ui:584
-msgctxt "accelconfigpage|extended_tip|AccelConfigPage"
-msgid "Assigns or edits the shortcut keys for %PRODUCTNAME commands, or %PRODUCTNAME Basic macros."
-msgstr "Priradí alebo upraví klávesové skratky príkazov %PRODUCTNAME alebo základných makier %PRODUCTNAME."
-
-#. FAPZ6
-#: cui/uiconfig/ui/acorexceptpage.ui:59
-msgctxt "acorexceptpage|extended_tip|abbrev"
-msgid "Type an abbreviation followed by a period, and then click New. This prevents %PRODUCTNAME from automatically capitalizing the first letter of the word that comes after the period at the end of the abbreviation."
-msgstr "Napíšte skratku zakončenú bodkou a kliknite na tlačidlo Nový. Táto funkcia zabezpečuje, že %PRODUCTNAME nebude pri zapnutej funkcii \"Každé prvé písmeno vety veľkým\" automaticky meniť prvé písmeno slova nasledujúceho po bodke na konci skratky na veľké písmeno."
-
#. vanfV
-#: cui/uiconfig/ui/acorexceptpage.ui:70
+#: cui/uiconfig/ui/acorexceptpage.ui:65
msgctxt "acorexceptpage|autoabbrev"
msgid "_AutoInclude"
msgstr "_Automaticky pridávať výnimky"
-#. 5B9tX
-#: cui/uiconfig/ui/acorexceptpage.ui:79
-msgctxt "acorexceptpage|extended_tip|autoabbrev"
-msgid "Automatically adds abbreviations or words that start with two capital letters to the corresponding list of exceptions. This feature only works if the Correct TWo INitial CApitals option or the Capitalize first letter of every sentence option are selected in the [T] column onOptions tab of this dialog."
-msgstr "Automaticky pridáva skratky zakončené bodkou alebo slová s dvoma začiatočnými veľkými písmenami do príslušného zoznamu výnimiek. Táto funkcia pracuje len v prípade, ak je zaškrtnutá možnosť Opraviť PRvé DVe veľké písmená alebo možnosť Každé prvé písmeno vety veľkým v stĺpci [T] na záložke Možnosti dialógového okna Automatické opravy."
-
#. tpV8t
-#: cui/uiconfig/ui/acorexceptpage.ui:106
+#: cui/uiconfig/ui/acorexceptpage.ui:96
msgctxt "acorexceptpage|newabbrev-atkobject"
msgid "New abbreviations"
msgstr "Nové skratky"
#. CEdQa
-#: cui/uiconfig/ui/acorexceptpage.ui:118
+#: cui/uiconfig/ui/acorexceptpage.ui:108
msgctxt "acorexceptpage|replace"
msgid "_Replace"
msgstr "Nah_radiť"
#. st6Jc
-#: cui/uiconfig/ui/acorexceptpage.ui:142
+#: cui/uiconfig/ui/acorexceptpage.ui:132
msgctxt "acorexceptpage|delabbrev-atkobject"
msgid "Delete abbreviations"
msgstr "Odstrániť skratky"
-#. 9h2WR
-#: cui/uiconfig/ui/acorexceptpage.ui:193
-msgctxt "acorexceptpage|extended_tip|abbrevlist"
-msgid "Lists the abbreviations that are not automatically corrected."
-msgstr "Táto tabuľka obsahuje zoznam skratiek, po ktorých nebudú automaticky opravené malé písmená na veľké."
-
#. VoLnB
-#: cui/uiconfig/ui/acorexceptpage.ui:212
+#: cui/uiconfig/ui/acorexceptpage.ui:197
msgctxt "acorexceptpage|label1"
msgid "Abbreviations (no Subsequent Capital)"
msgstr "Skratky (výnimky pre veľké písmeno po bodke)"
-#. 78P5X
-#: cui/uiconfig/ui/acorexceptpage.ui:256
-msgctxt "acorexceptpage|extended_tip|double"
-msgid "Type the word or abbreviation that starts with two capital letters that you do not want %PRODUCTNAME to change to one initial capital. For example, enter PC to prevent %PRODUCTNAME from changing PC to Pc."
-msgstr "Napíšte slovo alebo skratku začínajúcu dvoma veľkými písmenami, v ktorej %PRODUCTNAME nemá automaticky zmeniť druhé veľké písmeno na malé v prípade zapnutej funkcie \"Opraviť PRvé DVe veľké písmená\". Zadajte napríklad text \"PC\", aby %PRODUCTNAME automaticky nezmenil \"PC\" na \"Pc\"."
-
#. kAzxB
-#: cui/uiconfig/ui/acorexceptpage.ui:267
+#: cui/uiconfig/ui/acorexceptpage.ui:247
msgctxt "acorexceptpage|autodouble"
msgid "A_utoInclude"
msgstr "A_utomaticky pridávať výnimky"
-#. 6fGTF
-#: cui/uiconfig/ui/acorexceptpage.ui:276
-msgctxt "acorexceptpage|extended_tip|autodouble"
-msgid "Automatically adds abbreviations or words that start with two capital letters to the corresponding list of exceptions. This feature only works if the Correct TWo INitial CApitals option or the Capitalize first letter of every sentence option are selected in the [T] column onOptions tab of this dialog."
-msgstr "Automaticky pridáva skratky zakončené bodkou alebo slová s dvoma začiatočnými veľkými písmenami do príslušného zoznamu výnimiek. Táto funkcia pracuje len v prípade, ak je zaškrtnutá možnosť Opraviť PRvé DVe veľké písmená alebo možnosť Každé prvé písmeno vety veľkým v stĺpci [T] na záložke Možnosti dialógového okna Automatické opravy."
-
#. AcEEf
-#: cui/uiconfig/ui/acorexceptpage.ui:303
+#: cui/uiconfig/ui/acorexceptpage.ui:278
msgctxt "acorexceptpage|newdouble-atkobject"
msgid "New words with two initial capitals or small initial"
msgstr "Nové slová s dvomi začiatočnými veľkými písmenami alebo jedným malým"
#. 5Y2Wh
-#: cui/uiconfig/ui/acorexceptpage.ui:315
+#: cui/uiconfig/ui/acorexceptpage.ui:290
msgctxt "acorexceptpage|replace1"
msgid "_Replace"
msgstr "Nah_radiť"
#. 5ZhAJ
-#: cui/uiconfig/ui/acorexceptpage.ui:339
+#: cui/uiconfig/ui/acorexceptpage.ui:314
msgctxt "acorexceptpage|deldouble-atkobject"
msgid "Delete words with two initial capitals or small initial"
msgstr "Zmazať slová s dvomi začiatočnými veľkými písmenami alebo jedným malým"
-#. kCahU
-#: cui/uiconfig/ui/acorexceptpage.ui:390
-msgctxt "acorexceptpage|extended_tip|doublelist"
-msgid "Lists the words or abbreviations that start with two initial capitals that are not automatically corrected. All words which start with two capital letters are listed in the field."
-msgstr "Toto okno obsahuje zoznam slov a skratiek začínajúcich dvoma veľkými písmenami, v ktorých nebude automaticky opravené druhé veľké písmeno na malé."
-
#. 7FHhG
-#: cui/uiconfig/ui/acorexceptpage.ui:409
+#: cui/uiconfig/ui/acorexceptpage.ui:379
msgctxt "acorexceptpage|label2"
msgid "Words With TWo INitial CApitals or sMALL iNITIAL"
msgstr "Slová s dvomi ZAčiatočnými VEľkými PÍsmenami alebo jEDNÝM mALÝM"
-#. 4qMgn
-#: cui/uiconfig/ui/acorexceptpage.ui:424
-msgctxt "acorexceptpage|extended_tip|AcorExceptPage"
-msgid "Specify the abbreviations or letter combinations that you do not want %PRODUCTNAME to correct automatically."
-msgstr "Určuje, ktoré skratky alebo kombinácie znakov nebude %PRODUCTNAME automaticky opravovať."
-
-#. Cd7nJ
-#: cui/uiconfig/ui/acoroptionspage.ui:84
-msgctxt "acoroptionspage|extended_tip|AutocorrectOptionsPage"
-msgid "Select the options for automatically correcting errors as you type, and then click OK."
-msgstr "Nastavte možnosti pre automatické opravy chýb počas písania textu alebo pre hromadnú opravu existujúceho textu a kliknite na OK."
-
-#. D8rmz
-#: cui/uiconfig/ui/acorreplacepage.ui:39
-msgctxt "acorreplacepage|extended_tip|new"
-msgid "Adds or replaces an entry in the replacement table."
-msgstr "Pridá alebo nahradí položku v tabuľke náhrad."
-
#. qjPVK
-#: cui/uiconfig/ui/acorreplacepage.ui:51
+#: cui/uiconfig/ui/acorreplacepage.ui:46
msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "Nah_radiť"
-#. fjsDd
-#: cui/uiconfig/ui/acorreplacepage.ui:59
-msgctxt "acorreplacepage|extended_tip|replace"
-msgid "Adds or replaces an entry in the replacement table."
-msgstr "Pridá alebo nahradí položku v tabuľke náhrad."
-
-#. 7hHNW
-#: cui/uiconfig/ui/acorreplacepage.ui:78
-msgctxt "acorreplacepage|extended_tip|delete"
-msgid "Deletes the selected element or elements without requiring confirmation."
-msgstr "Vymaže vybraný prvok alebo prvky bez potreby potvrdenia."
-
-#. YLcSj
-#: cui/uiconfig/ui/acorreplacepage.ui:145
-msgctxt "acorreplacepage|extended_tip|tabview"
-msgid "Lists the entries for automatically replacing words, abbreviations or word parts while you type. To add an entry, enter text in the Replace and With boxes, and then click New. To edit an entry, select it, change the text in the With box, and then click Replace. To delete an entry, select it, and then click Delete."
-msgstr "Zobrazuje zoznam pre automatické náhrady slov, znakov alebo skratiek. Pre pridanie novej položky vložte nahrádzaný text do poľa Nahradiť, text náhrady do poľa S: a kliknite na tlačidlo Nový. Pre úpravu existujúcej náhrady označte položku v zozname, zmeňte text v poli S: a následne kliknite na tlačidlo Nahradiť. Pre odstránenie existujúcej náhrady označte položku v zozname a kliknite na tlačidlo Zmazať."
-
-#. p6tMV
-#: cui/uiconfig/ui/acorreplacepage.ui:165
-msgctxt "acorreplacepage|extended_tip|newtext"
-msgid "Enter the replacement text, graphic, frame, or OLE object that you want to replace the text in the Replace box. If you have selected text, a graphic, a frame, or an OLE object in your document, the relevant information is already entered here."
-msgstr "Zadajte text, grafiku, rámec, alebo OLE objekt, ktorými chcete nahradiť text v poli Nahradiť. Ak ste označili text, grafiku, rámec, alebo OLE objekt vo vašom dokumente, všetky potrebné informácie sú už v tomto poli zadané."
-
-#. gd9PD
-#: cui/uiconfig/ui/acorreplacepage.ui:182
-msgctxt "acorreplacepage|extended_tip|origtext"
-msgid "Enter the word, abbreviation or word part that you want to replace while you type. Wildcard character sequence .* in the end of word results the replacement of the word before arbitrary suffixes, too. Wildcard character sequence .* before the word results the replacement after arbitrary prefixes, too. For example, the pattern \"i18n.*\" with the replacement text \"internationalization\" finds and replaces \"i18ns\" with \"internationalizations\", or the pattern \".*...\" with the replacement text \"…\" finds and replaces three dots in \"word...\" with the typographically correct precomposed Unicode horizontal ellipsis (\"word…\")."
-msgstr "Zadajte slovo, skratku alebo časť slova, ktorú chcete pri písaní nahradiť. Sekvencia zástupných znakov .* na konci slova spôsobí nahradenie slova pred ľubovolnými príponami. Sekvencia zástupných znakov .* pred slovom vedie k jeho nahradeniu aj po ľubovoľných predponách. Napríklad vzor „dom.*“ s náhradným textom „hrad“ vyhľadá a nahradí výraz „domy“ výrazom „hrady“ alebo vzor „.*...“ s náhradným textom „…“ vyhľadá a nahradí tri bodky v \"slovo...\" typograficky správnym Unicode znakom trojbodka (\"slovo…\")."
-
#. GLT9J
-#: cui/uiconfig/ui/acorreplacepage.ui:195
+#: cui/uiconfig/ui/acorreplacepage.ui:165
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Nahra_diť"
#. RDUE5
-#: cui/uiconfig/ui/acorreplacepage.ui:212
+#: cui/uiconfig/ui/acorreplacepage.ui:182
msgctxt "acorreplacepage|label2"
msgid "_With"
msgstr "_Za"
#. 25PQc
-#: cui/uiconfig/ui/acorreplacepage.ui:227
+#: cui/uiconfig/ui/acorreplacepage.ui:197
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "Iba _text"
-#. 784tz
-#: cui/uiconfig/ui/acorreplacepage.ui:236
-msgctxt "acorreplacepage|extended_tip|textonly"
-msgid "Saves the entry in the With box without formatting. When the replacement is made, the text uses the same format as the document text."
-msgstr "Ak je toto pole zaškrtnuté, po kliknutí na tlačidlo Nový sa položka v poli S: uloží bez formátovania, grafiky a objektov. Pri použití takejto automatickej náhrady sa použije predvolené formátovanie (znakový štýl), aké bude používať text dokumentu."
-
-#. yuDgJ
-#: cui/uiconfig/ui/acorreplacepage.ui:250
-msgctxt "acorreplacepage|extended_tip|AcorReplacePage"
-msgid "Edits the replacement table for automatically correcting or replacing words or abbreviations in your document."
-msgstr "Umožňuje upraviť tabuľku náhrad pre automatické opravy alebo náhrady slov, znakov alebo skratiek."
-
-#. 9Xnti
-#: cui/uiconfig/ui/additionsdialog.ui:17
-msgctxt "customanimationfragment|90"
-msgid "Active version only"
-msgstr "Iba aktívna verzia"
-
-#. 6ZZPG
-#: cui/uiconfig/ui/additionsdialog.ui:30
-msgctxt "bulletandposition|gallery"
-msgid "Sort by"
-msgstr "Zoradiť podľa"
-
-#. LhkwF
-#: cui/uiconfig/ui/additionsdialog.ui:39
-msgctxt "menuassignpage|gear_textOnly"
-msgid "Voting"
-msgstr "Hlasovanie"
-
-#. KsZpM
-#: cui/uiconfig/ui/additionsdialog.ui:48
-msgctxt "menuassignpage|gear_textOnly"
-msgid "Downloads"
-msgstr "Stiahnutia"
-
-#. A4zUt
-#: cui/uiconfig/ui/additionsdialog.ui:57
-msgctxt "menuassignpage|gear_textOnly"
-msgid "Comments"
-msgstr "Poznámky"
-
-#. ncCYE
-#: cui/uiconfig/ui/additionsdialog.ui:76
-msgctxt "menuassignpage|gear_iconAndText"
-msgid "Detail view"
-msgstr "Zobrazenie detailov"
-
-#. SoASj
-#: cui/uiconfig/ui/additionsdialog.ui:87
-msgctxt "menuassignpage|gear_iconAndText"
-msgid "Condensed list"
-msgstr "Skrátený zoznam"
-
-#. MdFgz
-#: cui/uiconfig/ui/additionsdialog.ui:98
-msgctxt "additionsdialog|AdditionsDialog"
-msgid "Additions"
-msgstr "Dodatky"
-
-#. wqAig
-#: cui/uiconfig/ui/additionsdialog.ui:127
-msgctxt "additionsdialog|ProgressLabel"
-msgid "Progress Label"
-msgstr "Popis priebehu"
-
-#. PjJ55
-#: cui/uiconfig/ui/additionsdialog.ui:130
-msgctxt "additionsdialog|ProgressLabel"
-msgid "ProgressLabel"
-msgstr "Popis priebehu"
-
-#. SYKGE
-#: cui/uiconfig/ui/additionsdialog.ui:131
-msgctxt "additionsdialog|ProgressLabel"
-msgid "This label shows that the progress of the operations such as loading extensions, not found, etc."
-msgstr "Tento popis zobrazuje priebeh operácie, napríklad načítanie rozšírenia, to, že nebolo nájdené pod."
-
-#. NrZT8
-#: cui/uiconfig/ui/additionsdialog.ui:189
-#: cui/uiconfig/ui/additionsdialog.ui:190
-msgctxt "additionsdialog|searchEntry"
-msgid "searchEntry"
-msgstr "Vyhľadávaná položka"
-
-#. iamTq
-#: cui/uiconfig/ui/additionsdialog.ui:213
-msgctxt "additionsdialog|buttonGear"
-msgid "Gear Menu"
-msgstr "Ponuka s ozubeným kolesom"
-
-#. CbCbR
-#: cui/uiconfig/ui/additionsdialog.ui:214
-msgctxt "additionsdialog|buttonGear"
-msgid "Contains commands to modify settings of the additions list such as sorting type or view type."
-msgstr "Obsahuje príkazy na úpravu nastavení zoznamu dodatkov, ako je napríklad typ zoradenia alebo typ zobrazenia."
-
-#. fUE2f
-#: cui/uiconfig/ui/additionsfragment.ui:13
-msgctxt "additionsDialog|buttonShowMore"
-msgid "Show More Extensions"
-msgstr "Zobraziť ďalšie rozšírenia"
-
-#. 2pPGn
-#: cui/uiconfig/ui/additionsfragment.ui:18
-msgctxt "additionsDialog|buttonShowMore"
-msgid "ButtonShowMore"
-msgstr "Tlačidlo Zobraziť ďalšie"
-
-#. i9AoG
-#: cui/uiconfig/ui/additionsfragment.ui:19
-msgctxt "additionsDialog|buttonShowMore"
-msgid "This button shows more extensions."
-msgstr "Toto tlačidlo zobrazuje ďalšie rozšírenia."
-
-#. FkECE
-#: cui/uiconfig/ui/additionsfragment.ui:134
-msgctxt "additionsEntry|votingLabel"
-msgid "Vote"
-msgstr "Hlasovať"
-
-#. 5WUFA
-#: cui/uiconfig/ui/additionsfragment.ui:218
-msgctxt "additionsEntry|buttonInstall"
-msgid "button"
-msgstr "tlačidlo"
-
-#. TkztG
-#: cui/uiconfig/ui/additionsfragment.ui:240
-msgctxt "additionsEntry|labelComments"
-msgid "Downloads:"
-msgstr "Na stiahnutie:"
-
-#. cFsEL
-#: cui/uiconfig/ui/additionsfragment.ui:276
-msgctxt "additionsEntry|labelComments"
-msgid "Comments:"
-msgstr "Poznámky:"
-
#. BuMBh
#: cui/uiconfig/ui/agingdialog.ui:15
msgctxt "agingdialog|AgingDialog"
msgid "Aging"
msgstr "Stmavnutie"
-#. A8e8L
-#: cui/uiconfig/ui/agingdialog.ui:147
-msgctxt "agingdialog|extended_tip|value"
-msgid "Specifies the number of colors to which the image is to be reduced."
-msgstr "Určuje počet, na ktorý sa má zmenšiť počet farieb obrázka."
-
#. bJvBm
-#: cui/uiconfig/ui/agingdialog.ui:160
+#: cui/uiconfig/ui/agingdialog.ui:158
msgctxt "agingdialog|label2"
msgid "Aging degree:"
msgstr "Stupeň starnutia:"
#. 6FVBe
-#: cui/uiconfig/ui/agingdialog.ui:184
+#: cui/uiconfig/ui/agingdialog.ui:182
msgctxt "agingdialog|label1"
msgid "Parameters"
msgstr "Parametre"
-#. pciJf
-#: cui/uiconfig/ui/agingdialog.ui:209
-msgctxt "agingdialog|extended_tip|AgingDialog"
-msgid "All pixels are set to their gray values, and then the green and blue color channels are reduced by the amount you specify. The red color channel is not changed."
-msgstr "Všetky pixely sú nastavené na svoje šedé hodnoty a potom sa zelený a modrý farebný kanál zníži o zadanú hodnotu. Kanál červenej farby sa nezmení."
-
#. nxZTH
-#: cui/uiconfig/ui/applyautofmtpage.ui:53
+#: cui/uiconfig/ui/applyautofmtpage.ui:47
msgctxt "applyautofmtpage|edit"
msgid "_Edit..."
msgstr "_Upraviť..."
-#. AYYCs
-#: cui/uiconfig/ui/applyautofmtpage.ui:62
-msgctxt "applyautofmtpage|extended_tip|edit"
-msgid "Modifies the selected AutoCorrect option."
-msgstr "Upraví možnosti zvolenej Automatickej opravy."
-
#. sYxng
-#: cui/uiconfig/ui/applyautofmtpage.ui:76
+#: cui/uiconfig/ui/applyautofmtpage.ui:65
msgctxt "applyautofmtpage|label1"
msgid "[M]: Replace while modifying existing text"
msgstr "[C]: Pri automatickej oprave celého dokumentu"
#. FtXg9
-#: cui/uiconfig/ui/applyautofmtpage.ui:88
+#: cui/uiconfig/ui/applyautofmtpage.ui:77
msgctxt "applyautofmtpage|label2"
msgid "[T]: AutoCorrect while typing"
msgstr "[P]: Pri automatickej oprave počas písania"
#. NujUD
-#: cui/uiconfig/ui/applyautofmtpage.ui:133
+#: cui/uiconfig/ui/applyautofmtpage.ui:122
msgctxt "applyautofmtpage|m"
msgid "[M]"
msgstr "[M]"
#. qanx6
-#: cui/uiconfig/ui/applyautofmtpage.ui:155
+#: cui/uiconfig/ui/applyautofmtpage.ui:137
msgctxt "applyautofmtpage|t"
msgid "[T]"
msgstr "[P]"
-#. 2tG6L
-#: cui/uiconfig/ui/applyautofmtpage.ui:202
-msgctxt "applyautofmtpage|extended_tip|ApplyAutoFmtPage"
-msgid "Select the options for automatically correcting errors as you type, and then click OK."
-msgstr "Nastavte možnosti pre automatické opravy chýb počas písania textu alebo pre hromadnú opravu existujúceho textu a kliknite na OK."
-
#. EjG2g
-#: cui/uiconfig/ui/applylocalizedpage.ui:90
+#: cui/uiconfig/ui/applylocalizedpage.ui:84
msgctxt "applylocalizedpage|m"
msgid "[M]"
msgstr "[M]"
#. YUBPr
-#: cui/uiconfig/ui/applylocalizedpage.ui:112
+#: cui/uiconfig/ui/applylocalizedpage.ui:99
msgctxt "applylocalizedpage|t"
msgid "[T]"
msgstr "[P]"
-#. 9D3Vt
-#: cui/uiconfig/ui/applylocalizedpage.ui:137
-msgctxt "applylocalizedpage|extended_tip|list"
-msgid "Select to apply the replacements while you type [T], or when you modify existing text [M]."
-msgstr "Vyberte, či sa majú automatické náhrady používať vždy počas písania [T], alebo sa po jednorazovom spustení cez menu \"Formát/Automatické opravy/Použiť\" majú použiť hromadne v už existujúcom texte [M]."
-
-#. KM3Dj
-#: cui/uiconfig/ui/applylocalizedpage.ui:198
-msgctxt "applylocalizedpage|extended_tip|checklist"
-msgid "Select to apply the replacements while you type [T], or when you modify existing text [M]."
-msgstr "Vyberte, či sa majú automatické náhrady používať vždy počas písania [T], alebo sa po jednorazovom spustení cez menu \"Formát/Automatické opravy/Použiť\" majú použiť hromadne v už existujúcom texte [M]."
-
#. srHxL
-#: cui/uiconfig/ui/applylocalizedpage.ui:241
+#: cui/uiconfig/ui/applylocalizedpage.ui:218
msgctxt "applylocalizedpage|singlereplace"
msgid "Repla_ce"
msgstr "Nahra_diť"
-#. ybjKY
-#: cui/uiconfig/ui/applylocalizedpage.ui:250
-msgctxt "applylocalizedpage|extended_tip|singlereplace"
-msgid "Automatically replaces the default system symbol for the given type of quotation marks with the special character that you specify."
-msgstr "Automaticky nahradí predvolený systémový symbol pre daný typ úvodzoviek špeciálnym znakom, ktorý zadáte."
-
#. EQrEN
-#: cui/uiconfig/ui/applylocalizedpage.ui:265
+#: cui/uiconfig/ui/applylocalizedpage.ui:237
msgctxt "applylocalizedpage|startquoteft"
msgid "_Start quote:"
msgstr "Ľ_avá úvodzovka:"
#. ASq8L
-#: cui/uiconfig/ui/applylocalizedpage.ui:288
+#: cui/uiconfig/ui/applylocalizedpage.ui:260
msgctxt "applylocalizedpage|startsingle-atkobject"
msgid "Start quote of single quotes"
msgstr "Ľavá jednoduchá úvodzovka"
-#. ZSG3R
-#: cui/uiconfig/ui/applylocalizedpage.ui:289
-msgctxt "applylocalizedpage|extended_tip|startsingle"
-msgid "Select the special character that will automatically replace the current opening quotation mark in your document when you choose Tools - AutoCorrect - Apply."
-msgstr "Vyberte špeciálny znak, ktorý vo vašom dokumente automaticky nahradí aktuálnu úvodnú úvodzovku, keď vyberiete Nástroje - Automatické opravy - Použiť."
-
#. FFEVA
-#: cui/uiconfig/ui/applylocalizedpage.ui:302
+#: cui/uiconfig/ui/applylocalizedpage.ui:273
msgctxt "applylocalizedpage|singlestartex"
msgid "Default"
msgstr "Predvolené"
#. RindW
-#: cui/uiconfig/ui/applylocalizedpage.ui:318
+#: cui/uiconfig/ui/applylocalizedpage.ui:289
msgctxt "applylocalizedpage|defaultsingle"
msgid "_Default"
msgstr "_Predvolené"
#. QY58F
-#: cui/uiconfig/ui/applylocalizedpage.ui:326
+#: cui/uiconfig/ui/applylocalizedpage.ui:297
msgctxt "applylocalizedpage|defaultsingle-atkobject"
msgid "Single quotes default"
msgstr "Predvolené jednoduché úvodzovky"
-#. nHhRe
-#: cui/uiconfig/ui/applylocalizedpage.ui:327
-msgctxt "applylocalizedpage|extended_tip|defaultsingle"
-msgid "Resets the quotation marks to the default symbols."
-msgstr "Obnoví úvodzovky na predvolené symboly."
-
#. GRDaT
-#: cui/uiconfig/ui/applylocalizedpage.ui:341
+#: cui/uiconfig/ui/applylocalizedpage.ui:311
msgctxt "applylocalizedpage|endquoteft"
msgid "_End quote:"
msgstr "Pra_vá úvodzovka:"
#. Am27U
-#: cui/uiconfig/ui/applylocalizedpage.ui:364
+#: cui/uiconfig/ui/applylocalizedpage.ui:334
msgctxt "applylocalizedpage|endsingle-atkobject"
msgid "End quote of single quotes"
msgstr "Pravá jednoduchá úvodzovka"
-#. CHEww
-#: cui/uiconfig/ui/applylocalizedpage.ui:365
-msgctxt "applylocalizedpage|extended_tip|endsingle"
-msgid "Select the special character that will automatically replace the current closing quotation mark in your document when you choose Tools - AutoCorrect - Apply."
-msgstr "Vyberte špeciálny znak, ktorý v dokumente automaticky nahradí aktuálnu ukončovaciu úvodzovku, keď vyberiete Nástroje - Automatické opravy - Použiť."
-
#. M4BCQ
-#: cui/uiconfig/ui/applylocalizedpage.ui:378
+#: cui/uiconfig/ui/applylocalizedpage.ui:347
msgctxt "applylocalizedpage|singleendex"
msgid "Default"
msgstr "Predvolené"
#. VBKmS
-#: cui/uiconfig/ui/applylocalizedpage.ui:403
+#: cui/uiconfig/ui/applylocalizedpage.ui:372
msgctxt "applylocalizedpage|label1"
msgid "Single Quotes"
msgstr "Jednoduché úvodzovky"
#. Kadoe
-#: cui/uiconfig/ui/applylocalizedpage.ui:434
+#: cui/uiconfig/ui/applylocalizedpage.ui:403
msgctxt "applylocalizedpage|doublereplace"
msgid "Repla_ce"
msgstr "Nahra_diť"
-#. AADNo
-#: cui/uiconfig/ui/applylocalizedpage.ui:443
-msgctxt "applylocalizedpage|extended_tip|doublereplace"
-msgid "Automatically replaces the default system symbol for the given type of quotation marks with the special character that you specify."
-msgstr "Automaticky nahradí predvolený systémový symbol pre daný typ úvodzoviek špeciálnym znakom, ktorý zadáte."
-
#. MAW53
-#: cui/uiconfig/ui/applylocalizedpage.ui:458
+#: cui/uiconfig/ui/applylocalizedpage.ui:422
msgctxt "applylocalizedpage|label6"
msgid "_Start quote:"
msgstr "Ľ_avá úvodzovka:"
#. BEFQi
-#: cui/uiconfig/ui/applylocalizedpage.ui:481
+#: cui/uiconfig/ui/applylocalizedpage.ui:445
msgctxt "applylocalizedpage|startdouble-atkobject"
msgid "Start quote of double quotes"
msgstr "Ľavá dvojitá úvodzovka"
-#. XDtCo
-#: cui/uiconfig/ui/applylocalizedpage.ui:482
-msgctxt "applylocalizedpage|extended_tip|startdouble"
-msgid "Select the special character that will automatically replace the current opening quotation mark in your document when you choose Tools - AutoCorrect - Apply."
-msgstr "Vyberte špeciálny znak, ktorý vo vašom dokumente automaticky nahradí aktuálnu úvodnú úvodzovku, keď vyberiete Nástroje - Automatické opravy - Použiť."
-
#. oqBJC
-#: cui/uiconfig/ui/applylocalizedpage.ui:495
+#: cui/uiconfig/ui/applylocalizedpage.ui:458
msgctxt "applylocalizedpage|doublestartex"
msgid "Default"
msgstr "Predvolené"
#. F7yr9
-#: cui/uiconfig/ui/applylocalizedpage.ui:511
+#: cui/uiconfig/ui/applylocalizedpage.ui:474
msgctxt "applylocalizedpage|defaultdouble"
msgid "_Default"
msgstr "_Predvolené"
#. KFTqi
-#: cui/uiconfig/ui/applylocalizedpage.ui:519
+#: cui/uiconfig/ui/applylocalizedpage.ui:482
msgctxt "applylocalizedpage|defaultdouble-atkobject"
msgid "Double quotes default"
msgstr "Predvolené dvojité úvodzovky"
-#. 8oRQv
-#: cui/uiconfig/ui/applylocalizedpage.ui:520
-msgctxt "applylocalizedpage|extended_tip|defaultdouble"
-msgid "Resets the quotation marks to the default symbols."
-msgstr "Obnoví úvodzovky na predvolené symboly."
-
#. cDwwK
-#: cui/uiconfig/ui/applylocalizedpage.ui:534
+#: cui/uiconfig/ui/applylocalizedpage.ui:496
msgctxt "applylocalizedpage|label8"
msgid "_End quote:"
msgstr "Pra_vá úvodzovka:"
#. 85hDi
-#: cui/uiconfig/ui/applylocalizedpage.ui:557
+#: cui/uiconfig/ui/applylocalizedpage.ui:519
msgctxt "applylocalizedpage|enddouble-atkobject"
msgid "End quote of double quotes"
msgstr "Pravá dvojitá úvodzovka"
-#. AurnH
-#: cui/uiconfig/ui/applylocalizedpage.ui:558
-msgctxt "applylocalizedpage|extended_tip|enddouble"
-msgid "Select the special character that will automatically replace the current closing quotation mark in your document when you choose Tools - AutoCorrect - Apply."
-msgstr "Vyberte špeciálny znak, ktorý v dokumente automaticky nahradí aktuálnu ukončovaciu úvodzovku, keď vyberiete Nástroje - Automatické opravy - Použiť."
-
#. FBndB
-#: cui/uiconfig/ui/applylocalizedpage.ui:571
+#: cui/uiconfig/ui/applylocalizedpage.ui:532
msgctxt "applylocalizedpage|doubleendex"
msgid "Default"
msgstr "Predvolené"
#. BDqUY
-#: cui/uiconfig/ui/applylocalizedpage.ui:596
+#: cui/uiconfig/ui/applylocalizedpage.ui:557
msgctxt "applylocalizedpage|label10"
msgid "Double Quotes"
msgstr "Dvojité úvodzovky"
-#. WaGoG
-#: cui/uiconfig/ui/applylocalizedpage.ui:623
-msgctxt "applylocalizedpage|extended_tip|ApplyLocalizedPage"
-msgid "Specify the AutoCorrect options for quotation marks and for options that are specific to the language of the text."
-msgstr "Zadajte možnosti automatických opráv pre úvodzovky a pre možnosti, ktoré sú špecifické pre jazyk textu."
-
#. BXzDP
#: cui/uiconfig/ui/areadialog.ui:8
msgctxt "areadialog|AreaDialog"
@@ -5022,29 +4486,23 @@ msgid "Area"
msgstr "Oblasť"
#. eVAJs
-#: cui/uiconfig/ui/areadialog.ui:134
+#: cui/uiconfig/ui/areadialog.ui:137
msgctxt "areadialog|RID_SVXPAGE_AREA"
msgid "Area"
msgstr "Oblasť"
#. GvZjP
-#: cui/uiconfig/ui/areadialog.ui:180
+#: cui/uiconfig/ui/areadialog.ui:183
msgctxt "areadialog|RID_SVXPAGE_SHADOW"
msgid "Shadow"
msgstr "Tieň"
#. 4XRBr
-#: cui/uiconfig/ui/areadialog.ui:227
+#: cui/uiconfig/ui/areadialog.ui:230
msgctxt "areadialog|RID_SVXPAGE_TRANSPARENCE"
msgid "Transparency"
msgstr "Priehľadnosť"
-#. mqtAE
-#: cui/uiconfig/ui/areadialog.ui:254
-msgctxt "areadialog|extended_tip|AreaDialog"
-msgid "Sets the fill properties of the selected drawing object."
-msgstr "Nastaví vlastnosti výplne vybraného grafického objektu."
-
#. as89H
#: cui/uiconfig/ui/areatabpage.ui:33
msgctxt "areatabpage|tablelb"
@@ -5063,90 +4521,42 @@ msgctxt "areatabpage|tablelb"
msgid "Table"
msgstr "Tabuľka"
-#. WxC4H
-#: cui/uiconfig/ui/areatabpage.ui:39
-msgctxt "areatabpage|extended_tip|tablelb"
-msgid "Set the fill options for the selected drawing object or document element."
-msgstr "Nastavte možnosti výplne pre vybraný grafický objekt alebo prvok dokumentu."
-
#. 2kC9i
-#: cui/uiconfig/ui/areatabpage.ui:51
+#: cui/uiconfig/ui/areatabpage.ui:46
msgctxt "areatabpage|btnnone"
msgid "None"
msgstr "Žiadne"
-#. kTpV7
-#: cui/uiconfig/ui/areatabpage.ui:57
-msgctxt "areatabpage|extended_tip|btnnone"
-msgid "Do not fill the selected object."
-msgstr "Nevyplňujte vybraný objekt."
-
#. AiEuM
-#: cui/uiconfig/ui/areatabpage.ui:69
+#: cui/uiconfig/ui/areatabpage.ui:59
msgctxt "areatabpage|btncolor"
msgid "Color"
msgstr "Farba"
-#. rAxau
-#: cui/uiconfig/ui/areatabpage.ui:75
-msgctxt "areatabpage|extended_tip|btncolor"
-msgid "Fills the object with a gradient selected on this page."
-msgstr "Vyplní objekt prechodom vybraným na tejto stránke."
-
#. zXDcA
-#: cui/uiconfig/ui/areatabpage.ui:87
+#: cui/uiconfig/ui/areatabpage.ui:72
msgctxt "areatabpage|btngradient"
msgid "Gradient"
msgstr "Prechod"
-#. AGYbc
-#: cui/uiconfig/ui/areatabpage.ui:93
-msgctxt "areatabpage|extended_tip|btngradient"
-msgid "Fills the object with a gradient selected on this page."
-msgstr "Vyplní objekt prechodom vybraným na tejto stránke."
-
#. MDHs7
-#: cui/uiconfig/ui/areatabpage.ui:105
+#: cui/uiconfig/ui/areatabpage.ui:85
msgctxt "areatabpage|btnbitmap"
msgid "Bitmap"
msgstr "Rastrový obraz"
-#. ACAkd
-#: cui/uiconfig/ui/areatabpage.ui:111
-msgctxt "areatabpage|extended_tip|btnbitmap"
-msgid "Fills the object with a hatching pattern selected on this page."
-msgstr "Vyplní objekt šrafovacím vzorom vybraným na tejto stránke."
-
#. 9q7GD
-#: cui/uiconfig/ui/areatabpage.ui:123
+#: cui/uiconfig/ui/areatabpage.ui:98
msgctxt "areatabpage|btnpattern"
msgid "Pattern"
msgstr "Vzor"
-#. TyREt
-#: cui/uiconfig/ui/areatabpage.ui:129
-msgctxt "areatabpage|extended_tip|btnpattern"
-msgid "Fills the object with a hatching pattern selected on this page."
-msgstr "Vyplní objekt šrafovacím vzorom vybraným na tejto stránke."
-
#. 5y6vj
-#: cui/uiconfig/ui/areatabpage.ui:141
+#: cui/uiconfig/ui/areatabpage.ui:111
msgctxt "areatabpage|btnhatch"
msgid "Hatch"
msgstr "Šrafovanie"
-#. irCyE
-#: cui/uiconfig/ui/areatabpage.ui:147
-msgctxt "areatabpage|extended_tip|btnhatch"
-msgid "Fills the object with a hatching pattern selected on this page."
-msgstr "Vyplní objekt šrafovacím vzorom vybraným na tejto stránke."
-
-#. TFDzi
-#: cui/uiconfig/ui/areatabpage.ui:201
-msgctxt "areatabpage|extended_tip|AreaTabPage"
-msgid "Set the fill options for the selected drawing object or document element."
-msgstr "Nastavte možnosti výplne pre vybraný grafický objekt alebo prvok dokumentu."
-
#. GSXcM
#: cui/uiconfig/ui/asiantypography.ui:25
msgctxt "asiantypography|checkForbidList"
@@ -5189,74 +4599,50 @@ msgctxt "autocorrectdialog|AutoCorrectDialog"
msgid "AutoCorrect"
msgstr "Automatické opravy"
-#. LSGYn
-#: cui/uiconfig/ui/autocorrectdialog.ui:31
-msgctxt "autocorrectdialog|extended_tip|reset"
-msgid "Resets modified values back to the tab page previous values."
-msgstr "Obnoví upravené hodnoty späť na predchádzajúce hodnoty na záložke."
-
-#. PbHCG
-#: cui/uiconfig/ui/autocorrectdialog.ui:52
-msgctxt "autocorrectdialog|extended_tip|ok"
-msgid "Saves all changes and closes dialog."
-msgstr "Uloží všetky zmeny a zatvorí dialógové okno."
-
-#. Qqmqp
-#: cui/uiconfig/ui/autocorrectdialog.ui:71
-msgctxt "autocorrectdialog|extended_tip|cancel"
-msgid "Closes dialog and discards all changes."
-msgstr "Zatvorí dialógové okno a zruší všetky zmeny."
-
#. HBfWE
-#: cui/uiconfig/ui/autocorrectdialog.ui:120
+#: cui/uiconfig/ui/autocorrectdialog.ui:108
msgctxt "autocorrectdialog|label1"
msgid "Replacements and exceptions for language:"
msgstr "Náhrady a výnimky pre jazyk:"
-#. uThXE
-#: cui/uiconfig/ui/autocorrectdialog.ui:137
-msgctxt "autocorrectdialog|extended_tip|lang"
-msgid "Select the language for which you want to create or edit the replacement rules."
-msgstr "Vyberte jazyk, pre ktorý chcete vytvoriť alebo upraviť položky v tabuľke náhrad a výnimky pre automatické opravy."
-
#. Qpig7
-#: cui/uiconfig/ui/autocorrectdialog.ui:198
+#: cui/uiconfig/ui/autocorrectdialog.ui:181
msgctxt "autocorrectdialog|replace"
msgid "Replace"
msgstr "Nahradiť"
#. gFjcV
-#: cui/uiconfig/ui/autocorrectdialog.ui:244
+#: cui/uiconfig/ui/autocorrectdialog.ui:227
msgctxt "autocorrectdialog|exceptions"
msgid "Exceptions"
msgstr "Výnimky"
#. FCFAS
-#: cui/uiconfig/ui/autocorrectdialog.ui:291
+#: cui/uiconfig/ui/autocorrectdialog.ui:274
msgctxt "autocorrectdialog|options"
msgid "Options"
msgstr "Možnosti"
#. PgrDz
-#: cui/uiconfig/ui/autocorrectdialog.ui:338
+#: cui/uiconfig/ui/autocorrectdialog.ui:321
msgctxt "autocorrectdialog|apply"
msgid "Options"
msgstr "Možnosti"
#. TCyBg
-#: cui/uiconfig/ui/autocorrectdialog.ui:385
+#: cui/uiconfig/ui/autocorrectdialog.ui:368
msgctxt "autocorrectdialog|localized"
msgid "Localized Options"
msgstr "Lokalizované možnosti"
#. G4rrm
-#: cui/uiconfig/ui/autocorrectdialog.ui:432
+#: cui/uiconfig/ui/autocorrectdialog.ui:415
msgctxt "autocorrectdialog|wordcompletion"
msgid "Word Completion"
msgstr "Dokončovanie slov"
#. 2HJ6n
-#: cui/uiconfig/ui/autocorrectdialog.ui:479
+#: cui/uiconfig/ui/autocorrectdialog.ui:462
msgctxt "autocorrectdialog|smarttags"
msgid "Smart Tags"
msgstr "Inteligentné značky"
@@ -5268,311 +4654,257 @@ msgid "Edit Links"
msgstr "Upraviť odkazy"
#. siGFm
-#: cui/uiconfig/ui/baselinksdialog.ui:53
+#: cui/uiconfig/ui/baselinksdialog.ui:56
msgctxt "baselinksdialog|CHANGE_SOURCE"
msgid "_Modify..."
-msgstr "_Zmeniť…"
-
-#. BhCKm
-#: cui/uiconfig/ui/baselinksdialog.ui:60
-msgctxt "baselinksdialog|extended_tip|CHANGE_SOURCE"
-msgid "Change the source file for the selected link."
-msgstr "Zmeňte zdrojový súbor pre vybraný odkaz."
+msgstr "_Zmeniť..."
#. RDZHa
-#: cui/uiconfig/ui/baselinksdialog.ui:72
+#: cui/uiconfig/ui/baselinksdialog.ui:70
msgctxt "baselinksdialog|BREAK_LINK"
msgid "_Break Link"
msgstr "_Prerušiť odkaz"
-#. EXexA
-#: cui/uiconfig/ui/baselinksdialog.ui:79
-msgctxt "baselinksdialog|extended_tip|BREAK_LINK"
-msgid "Breaks the link between the source file and the current document. The most recently updated contents of the source file are kept in the current document."
-msgstr "Preruší spojenie medzi zdrojovým súborom a aktuálnym dokumentom. V aktuálnom dokumente sa bude uchovávať posledná aktualizácia obsahu zdrojového súboru."
-
#. SEEGs
-#: cui/uiconfig/ui/baselinksdialog.ui:91
+#: cui/uiconfig/ui/baselinksdialog.ui:84
msgctxt "baselinksdialog|UPDATE_NOW"
msgid "_Update"
msgstr "Akt_ualizovať"
-#. BmGAY
-#: cui/uiconfig/ui/baselinksdialog.ui:98
-msgctxt "baselinksdialog|extended_tip|UPDATE_NOW"
-msgid "Updates the selected link so that the most recently saved version of the linked file is displayed in the current document."
-msgstr "Aktualizuje vybrané prepojenie tak, aby sa v aktuálnom dokumente zobrazila naposledy uložená verzia prepojeného súboru."
-
#. A6Mz4
-#: cui/uiconfig/ui/baselinksdialog.ui:171
+#: cui/uiconfig/ui/baselinksdialog.ui:159
msgctxt "baselinksdialog|FILES"
msgid "Source file"
msgstr "Zdrojový súbor"
#. MJb22
-#: cui/uiconfig/ui/baselinksdialog.ui:184
+#: cui/uiconfig/ui/baselinksdialog.ui:172
msgctxt "baselinksdialog|LINKS"
msgid "Element"
msgstr "Prvok"
#. 5Hr79
-#: cui/uiconfig/ui/baselinksdialog.ui:197
+#: cui/uiconfig/ui/baselinksdialog.ui:185
msgctxt "baselinksdialog|TYPE"
msgid "Type"
msgstr "Typ"
#. rnFJV
-#: cui/uiconfig/ui/baselinksdialog.ui:210
+#: cui/uiconfig/ui/baselinksdialog.ui:198
msgctxt "baselinksdialog|STATUS"
msgid "Status"
msgstr "Stav"
-#. 7k36Q
-#: cui/uiconfig/ui/baselinksdialog.ui:221
-msgctxt "baselinksdialog|extended_tip|TB_LINKS"
-msgid "Double-click a link in the list to open a file dialog where you can select another object for this link."
-msgstr "Dvojitým kliknutím na odkaz v zozname otvoríte dialógové okno so súborom, kde môžete pre tento odkaz vybrať iný objekt."
-
#. VUouK
-#: cui/uiconfig/ui/baselinksdialog.ui:251
+#: cui/uiconfig/ui/baselinksdialog.ui:234
msgctxt "baselinksdialog|FILES2"
msgid "Source file"
msgstr "Zdrojový súbor"
#. ZukQV
-#: cui/uiconfig/ui/baselinksdialog.ui:265
+#: cui/uiconfig/ui/baselinksdialog.ui:248
msgctxt "baselinksdialog|SOURCE2"
msgid "Element:"
msgstr "Prvok:"
#. jg4VW
-#: cui/uiconfig/ui/baselinksdialog.ui:277
+#: cui/uiconfig/ui/baselinksdialog.ui:260
msgctxt "baselinksdialog|TYPE2"
msgid "Type:"
msgstr "Typ:"
#. BPXPn
-#: cui/uiconfig/ui/baselinksdialog.ui:289
+#: cui/uiconfig/ui/baselinksdialog.ui:272
msgctxt "baselinksdialog|UPDATE"
msgid "Update:"
msgstr "Aktualizácia:"
#. NpTPK
-#: cui/uiconfig/ui/baselinksdialog.ui:354
+#: cui/uiconfig/ui/baselinksdialog.ui:337
msgctxt "baselinksdialog|AUTOMATIC"
msgid "_Automatic"
msgstr "_Automaticky"
-#. wkpVe
-#: cui/uiconfig/ui/baselinksdialog.ui:364
-msgctxt "baselinksdialog|extended_tip|AUTOMATIC"
-msgid "Automatically updates the contents of the link when you open the file. Any changes made in the source file are then displayed in the file containing the link. Linked graphic files can only be updated manually."
-msgstr "Po otvorení súboru sa automaticky aktualizuje obsah odkazu. Všetky zmeny vykonané v zdrojovom súbore sa potom zobrazia v súbore obsahujúcom odkaz. Prepojené grafické súbory je možné aktualizovať iba manuálne."
-
#. GzGG5
-#: cui/uiconfig/ui/baselinksdialog.ui:375
+#: cui/uiconfig/ui/baselinksdialog.ui:353
msgctxt "baselinksdialog|MANUAL"
msgid "Ma_nual"
msgstr "Ručn_e"
-#. x8SG6
-#: cui/uiconfig/ui/baselinksdialog.ui:385
-msgctxt "baselinksdialog|extended_tip|MANUAL"
-msgid "Only updates the link when you click the Update button."
-msgstr "Po kliknutí na tlačidlo Aktualizovať sa aktualizuje len odkaz."
-
-#. D2J77
-#: cui/uiconfig/ui/baselinksdialog.ui:425
-msgctxt "baselinksdialog|extended_tip|BaseLinksDialog"
-msgid "Lets you edit the properties of each link in the current document, including the path to the source file. This command is not available if the current document does not contain links to other files."
-msgstr "Umožní upraviť vlastnosti každého odkazu v aktuálnom dokumente vrátane cesty k zdrojovému súboru. Tento príkaz nie je k dispozícii, ak aktuálny dokument neobsahuje odkazy na iné súbory."
-
#. D264D
#: cui/uiconfig/ui/bitmaptabpage.ui:66
msgctxt "bitmaptabpage|BTN_IMPORT"
msgid "Add / Import"
msgstr "Pridať / importovať"
-#. DwGRp
-#: cui/uiconfig/ui/bitmaptabpage.ui:72
-msgctxt "bitmaptabpage|extended_tip|BTN_IMPORT"
-msgid "Locate the bitmap that you want to import, and then click Open. The bitmap is added to the end of the list of available bitmaps."
-msgstr "Vyhľadajte bitovú mapu, ktorú chcete importovať, a potom kliknite na Otvoriť. Bitová mapa sa pridá na koniec zoznamu dostupných bitmáp."
-
#. UYRCn
-#: cui/uiconfig/ui/bitmaptabpage.ui:90
+#: cui/uiconfig/ui/bitmaptabpage.ui:85
msgctxt "bitmaptabpage|label1"
msgid "Bitmap"
msgstr "Rastrový obraz"
#. CFtG8
-#: cui/uiconfig/ui/bitmaptabpage.ui:138
+#: cui/uiconfig/ui/bitmaptabpage.ui:133
msgctxt "bitmaptabpage|label3"
msgid "Style:"
msgstr "Štýl:"
#. 875YL
-#: cui/uiconfig/ui/bitmaptabpage.ui:154
+#: cui/uiconfig/ui/bitmaptabpage.ui:149
msgctxt "bitmaptabpage|bitmapstyle"
msgid "Custom position/size"
msgstr "Vlastné umiestnenie / veľkosť"
#. exzsR
-#: cui/uiconfig/ui/bitmaptabpage.ui:155
+#: cui/uiconfig/ui/bitmaptabpage.ui:150
msgctxt "bitmaptabpage|bitmapstyle"
msgid "Tiled"
msgstr "Dlaždice"
#. tksrC
-#: cui/uiconfig/ui/bitmaptabpage.ui:156
+#: cui/uiconfig/ui/bitmaptabpage.ui:151
msgctxt "bitmaptabpage|bitmapstyle"
msgid "Stretched"
msgstr "Roztiahnuté"
#. dHVHq
-#: cui/uiconfig/ui/bitmaptabpage.ui:182
+#: cui/uiconfig/ui/bitmaptabpage.ui:177
msgctxt "bitmaptabpage|label4"
msgid "Size:"
msgstr "Veľkosť:"
#. qVMh8
-#: cui/uiconfig/ui/bitmaptabpage.ui:200
+#: cui/uiconfig/ui/bitmaptabpage.ui:195
msgctxt "bitmaptabpage|label5"
msgid "Width:"
msgstr "Šírka:"
#. CQHCj
-#: cui/uiconfig/ui/bitmaptabpage.ui:238
+#: cui/uiconfig/ui/bitmaptabpage.ui:233
msgctxt "bitmaptabpage|label6"
msgid "Height:"
msgstr "Výška:"
#. D7XC6
-#: cui/uiconfig/ui/bitmaptabpage.ui:269
+#: cui/uiconfig/ui/bitmaptabpage.ui:264
msgctxt "bitmaptabpage|scaletsb"
msgid "Scale"
msgstr "Mierka"
#. r9QEy
-#: cui/uiconfig/ui/bitmaptabpage.ui:300
+#: cui/uiconfig/ui/bitmaptabpage.ui:295
msgctxt "bitmaptabpage|label7"
msgid "Position:"
msgstr "Poloha:"
#. qqHXj
-#: cui/uiconfig/ui/bitmaptabpage.ui:316
+#: cui/uiconfig/ui/bitmaptabpage.ui:311
msgctxt "bitmaptabpage|positionlb"
msgid "Top Left"
msgstr "Vľavo hore"
#. SuAZu
-#: cui/uiconfig/ui/bitmaptabpage.ui:317
+#: cui/uiconfig/ui/bitmaptabpage.ui:312
msgctxt "bitmaptabpage|positionlb"
msgid "Top Center"
msgstr "V strede hore"
#. CiwFK
-#: cui/uiconfig/ui/bitmaptabpage.ui:318
+#: cui/uiconfig/ui/bitmaptabpage.ui:313
msgctxt "bitmaptabpage|positionlb"
msgid "Top Right"
msgstr "Vpravo hore"
#. gB3qr
-#: cui/uiconfig/ui/bitmaptabpage.ui:319
+#: cui/uiconfig/ui/bitmaptabpage.ui:314
msgctxt "bitmaptabpage|positionlb"
msgid "Center Left"
msgstr "V strede vľavo"
#. 6nG4k
-#: cui/uiconfig/ui/bitmaptabpage.ui:320
+#: cui/uiconfig/ui/bitmaptabpage.ui:315
msgctxt "bitmaptabpage|positionlb"
msgid "Center"
msgstr "Na stred"
#. 5uwBi
-#: cui/uiconfig/ui/bitmaptabpage.ui:321
+#: cui/uiconfig/ui/bitmaptabpage.ui:316
msgctxt "bitmaptabpage|positionlb"
msgid "Center Right"
msgstr "V strede vpravo"
#. 9bWMT
-#: cui/uiconfig/ui/bitmaptabpage.ui:322
+#: cui/uiconfig/ui/bitmaptabpage.ui:317
msgctxt "bitmaptabpage|positionlb"
msgid "Bottom Left"
msgstr "Vľavo dolu"
#. BFD9u
-#: cui/uiconfig/ui/bitmaptabpage.ui:323
+#: cui/uiconfig/ui/bitmaptabpage.ui:318
msgctxt "bitmaptabpage|positionlb"
msgid "Bottom Center"
msgstr "V strede dolu"
#. TGk6s
-#: cui/uiconfig/ui/bitmaptabpage.ui:324
+#: cui/uiconfig/ui/bitmaptabpage.ui:319
msgctxt "bitmaptabpage|positionlb"
msgid "Bottom Right"
msgstr "Vpravo dolu"
#. s3kat
-#: cui/uiconfig/ui/bitmaptabpage.ui:350
+#: cui/uiconfig/ui/bitmaptabpage.ui:345
msgctxt "bitmaptabpage|label9"
msgid "Tiling Position:"
msgstr "Umiestnenie dlaždíc:"
#. 9ddbX
-#: cui/uiconfig/ui/bitmaptabpage.ui:369
+#: cui/uiconfig/ui/bitmaptabpage.ui:364
msgctxt "bitmaptabpage|label10"
msgid "X-Offset:"
msgstr "Odchýlka X:"
#. C6HnD
-#: cui/uiconfig/ui/bitmaptabpage.ui:407
+#: cui/uiconfig/ui/bitmaptabpage.ui:402
msgctxt "bitmaptabpage|label11"
msgid "Y-Offset:"
msgstr "Odchýlka Y:"
#. oDXfi
-#: cui/uiconfig/ui/bitmaptabpage.ui:452
+#: cui/uiconfig/ui/bitmaptabpage.ui:447
msgctxt "bitmaptabpage|label15"
msgid "Tiling Offset:"
msgstr "Odstup dlaždíc:"
#. GEMsd
-#: cui/uiconfig/ui/bitmaptabpage.ui:475
+#: cui/uiconfig/ui/bitmaptabpage.ui:470
msgctxt "bitmaptabpage|tileofflb"
msgid "Row"
msgstr "Riadok"
#. NFEF6
-#: cui/uiconfig/ui/bitmaptabpage.ui:476
+#: cui/uiconfig/ui/bitmaptabpage.ui:471
msgctxt "bitmaptabpage|tileofflb"
msgid "Column"
msgstr "Stĺpec"
#. CAdor
-#: cui/uiconfig/ui/bitmaptabpage.ui:520
+#: cui/uiconfig/ui/bitmaptabpage.ui:515
msgctxt "bitmaptabpage|label2"
msgid "Options"
msgstr "Možnosti"
#. EqVUn
-#: cui/uiconfig/ui/bitmaptabpage.ui:569
+#: cui/uiconfig/ui/bitmaptabpage.ui:564
msgctxt "bitmaptabpage|CTL_BITMAP_PREVIEW-atkobject"
msgid "Example"
msgstr "Príklad"
#. uFFCW
-#: cui/uiconfig/ui/bitmaptabpage.ui:591
+#: cui/uiconfig/ui/bitmaptabpage.ui:586
msgctxt "bitmaptabpage|label8"
msgid "Preview"
msgstr "Náhľad"
-#. dqv5m
-#: cui/uiconfig/ui/bitmaptabpage.ui:607
-msgctxt "bitmaptabpage|extended_tip|BitmapTabPage"
-msgid "Select a bitmap that you want to use as a fill image, or add your own bitmap pattern."
-msgstr "Vyberte bitmapu, ktorú chcete použiť ako výplňový obrázok, alebo pridajte svoj vlastný bitmapový vzor."
-
#. AYRA3
#: cui/uiconfig/ui/borderareatransparencydialog.ui:8
msgctxt "borderareatransparencydialog|BorderAreaTransparencyDialog"
@@ -5753,38 +5085,20 @@ msgctxt "breaknumberoption|BreakNumberOption"
msgid "Hyphenation"
msgstr "Delenie slov"
-#. kmYk5
-#: cui/uiconfig/ui/breaknumberoption.ui:94
-msgctxt "beforebreak"
-msgid "Sets the minimum number of characters of the word to be hyphenated that must remain at the end of the line."
-msgstr "Určuje minimálny počet znakov rozdeľovaného slova, ktoré musia zostať na konci riadku."
-
#. 8Fp43
-#: cui/uiconfig/ui/breaknumberoption.ui:105
+#: cui/uiconfig/ui/breaknumberoption.ui:103
msgctxt "breaknumberoption|beforelabel"
msgid "Characters Before Break"
msgstr "Znaky pred zalomením"
-#. upKGC
-#: cui/uiconfig/ui/breaknumberoption.ui:138
-msgctxt "afterbreak"
-msgid "Specifies the minimum number of characters of a hyphenated word required at the next line."
-msgstr "Určuje minimálny počet znakov rozdeľovaného slova na nasledujúcom riadku."
-
#. p6cfZ
-#: cui/uiconfig/ui/breaknumberoption.ui:149
+#: cui/uiconfig/ui/breaknumberoption.ui:142
msgctxt "breaknumberoption|afterlabel"
msgid "Characters After Break"
msgstr "Znaky po zalomení"
-#. XN4Hs
-#: cui/uiconfig/ui/breaknumberoption.ui:182
-msgctxt "wordlength"
-msgid "Specifies the minimum number of characters required for automatic hyphenation to be applied."
-msgstr "Určuje minimálny počet znakov slova na použitie automatického delenia slov."
-
#. sAo4B
-#: cui/uiconfig/ui/breaknumberoption.ui:193
+#: cui/uiconfig/ui/breaknumberoption.ui:181
msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Minimálna dĺžka slova"
@@ -5850,139 +5164,139 @@ msgid "Select image..."
msgstr "Vybrať obrázok..."
#. Cv7BZ
-#: cui/uiconfig/ui/bulletandposition.ui:372
+#: cui/uiconfig/ui/bulletandposition.ui:371
msgctxt "bulletandposition|colorft"
msgid "Color:"
msgstr "Farba:"
#. jxFmf
-#: cui/uiconfig/ui/bulletandposition.ui:417
+#: cui/uiconfig/ui/bulletandposition.ui:415
msgctxt "bulletandposition|label2"
msgid "Properties"
msgstr "Vlastnosti"
#. CrtKB
-#: cui/uiconfig/ui/bulletandposition.ui:452
+#: cui/uiconfig/ui/bulletandposition.ui:450
msgctxt "bulletandposition|prefixft"
msgid "Before:"
msgstr "Pred:"
#. VhHma
-#: cui/uiconfig/ui/bulletandposition.ui:466
+#: cui/uiconfig/ui/bulletandposition.ui:464
msgctxt "bulletandposition|suffixft"
msgid "After:"
msgstr "Za:"
#. GAS5v
-#: cui/uiconfig/ui/bulletandposition.ui:506
+#: cui/uiconfig/ui/bulletandposition.ui:504
msgctxt "bulletandposition|beforeafter"
msgid "Separator"
msgstr "Oddeľovač"
#. KjiTB
-#: cui/uiconfig/ui/bulletandposition.ui:552
+#: cui/uiconfig/ui/bulletandposition.ui:550
msgctxt "bulletandposition|widthft"
msgid "Width:"
msgstr "Šírka:"
#. AjgW8
-#: cui/uiconfig/ui/bulletandposition.ui:566
+#: cui/uiconfig/ui/bulletandposition.ui:564
msgctxt "bulletandposition|heightft"
msgid "Height:"
msgstr "Výška:"
#. vqDku
-#: cui/uiconfig/ui/bulletandposition.ui:626
+#: cui/uiconfig/ui/bulletandposition.ui:624
msgctxt "bulletandposition|relsize"
msgid "100"
msgstr "100"
#. pGXFi
-#: cui/uiconfig/ui/bulletandposition.ui:639
+#: cui/uiconfig/ui/bulletandposition.ui:637
msgctxt "bulletandposition|relsizeft"
msgid "_Rel. size:"
msgstr "_Rel. veľkosť:"
#. abzh8
-#: cui/uiconfig/ui/bulletandposition.ui:657
+#: cui/uiconfig/ui/bulletandposition.ui:655
msgctxt "bulletandposition|keepratio"
msgid "Keep ratio"
msgstr "Zachovať pomer"
#. EhFU7
-#: cui/uiconfig/ui/bulletandposition.ui:695
+#: cui/uiconfig/ui/bulletandposition.ui:693
msgctxt "bulletandposition|beforeafter"
msgid "Size"
msgstr "Veľkosť"
#. NoZdN
-#: cui/uiconfig/ui/bulletandposition.ui:730
+#: cui/uiconfig/ui/bulletandposition.ui:728
msgctxt "bulletandposition|indent"
msgid "Indent:"
msgstr "Odsadenie:"
#. mW5ef
-#: cui/uiconfig/ui/bulletandposition.ui:744
+#: cui/uiconfig/ui/bulletandposition.ui:742
msgctxt "bulletandposition|numberingwidth"
msgid "Width:"
msgstr "Šírka:"
#. SDhv3
-#: cui/uiconfig/ui/bulletandposition.ui:759
+#: cui/uiconfig/ui/bulletandposition.ui:757
msgctxt "bulletandposition|indentmf"
msgid "0,00"
msgstr "0,00"
#. eeDkR
-#: cui/uiconfig/ui/bulletandposition.ui:773
+#: cui/uiconfig/ui/bulletandposition.ui:771
msgctxt "bulletandposition|numberingwidthmf"
msgid "0,00"
msgstr "0,00"
#. CRdNb
-#: cui/uiconfig/ui/bulletandposition.ui:784
+#: cui/uiconfig/ui/bulletandposition.ui:782
msgctxt "bulletandposition|relative"
msgid "Relati_ve"
msgstr "Relatí_vne"
#. FhAfv
-#: cui/uiconfig/ui/bulletandposition.ui:851
+#: cui/uiconfig/ui/bulletandposition.ui:849
msgctxt "bulletandposition|ALlabel"
msgid "Alignment:"
msgstr "Zarovnanie:"
#. BfBBW
-#: cui/uiconfig/ui/bulletandposition.ui:870
+#: cui/uiconfig/ui/bulletandposition.ui:868
msgctxt "bulletandposition|position"
msgid "Position"
msgstr "Poloha"
#. MSmfX
-#: cui/uiconfig/ui/bulletandposition.ui:903
+#: cui/uiconfig/ui/bulletandposition.ui:901
msgctxt "bulletandposition|sliderb"
msgid "Slide"
msgstr "Snímka"
#. dBWa8
-#: cui/uiconfig/ui/bulletandposition.ui:918
+#: cui/uiconfig/ui/bulletandposition.ui:916
msgctxt "bulletandposition|selectionrb"
msgid "Selection"
msgstr "Výber"
#. ATaHy
-#: cui/uiconfig/ui/bulletandposition.ui:934
+#: cui/uiconfig/ui/bulletandposition.ui:932
msgctxt "bulletandposition|applytomaster"
msgid "Apply to Master"
msgstr "Použiť na predlohu"
#. DiEaB
-#: cui/uiconfig/ui/bulletandposition.ui:954
+#: cui/uiconfig/ui/bulletandposition.ui:952
msgctxt "bulletandposition|scopelb"
msgid "Scope"
msgstr "Rozsah"
#. GHYEV
-#: cui/uiconfig/ui/bulletandposition.ui:1011
+#: cui/uiconfig/ui/bulletandposition.ui:1009
msgctxt "bulletandposition|label"
msgid "Preview"
msgstr "Náhľad"
@@ -6011,174 +5325,126 @@ msgctxt "calloutdialog|RID_SVXPAGE_CAPTION"
msgid "Callout"
msgstr "Bublina"
-#. VmG2i
-#: cui/uiconfig/ui/calloutpage.ui:35
-msgctxt "calloutpage|extended_tip|valueset"
-msgid "Click the Callout style that you want to apply to the selected callout."
-msgstr "Kliknite na štýl, ktorý chcete použiť na vybranú bublinu."
-
#. cAZqx
-#: cui/uiconfig/ui/calloutpage.ui:64
+#: cui/uiconfig/ui/calloutpage.ui:59
msgctxt "calloutpage|label2"
msgid "_Extension:"
msgstr "Rozšír_enie:"
#. vfBPx
-#: cui/uiconfig/ui/calloutpage.ui:79
+#: cui/uiconfig/ui/calloutpage.ui:74
msgctxt "calloutpage|liststore1"
msgid "Optimal"
msgstr "Optimálne"
#. HjpWL
-#: cui/uiconfig/ui/calloutpage.ui:80
+#: cui/uiconfig/ui/calloutpage.ui:75
msgctxt "calloutpage|liststore1"
msgid "From top"
msgstr "Zhora"
#. CQsFs
-#: cui/uiconfig/ui/calloutpage.ui:81
+#: cui/uiconfig/ui/calloutpage.ui:76
msgctxt "calloutpage|liststore1"
msgid "From left"
msgstr "Zľava"
#. ZjSVS
-#: cui/uiconfig/ui/calloutpage.ui:82
+#: cui/uiconfig/ui/calloutpage.ui:77
msgctxt "calloutpage|liststore1"
msgid "Horizontal"
msgstr "Vodorovné"
#. bzD84
-#: cui/uiconfig/ui/calloutpage.ui:83
+#: cui/uiconfig/ui/calloutpage.ui:78
msgctxt "calloutpage|liststore1"
msgid "Vertical"
msgstr "Zvislé"
-#. StuZd
-#: cui/uiconfig/ui/calloutpage.ui:87
-msgctxt "calloutpage|extended_tip|extension"
-msgid "Select where you want to extend the callout line from, in relation to the callout box."
-msgstr "Vyberte miesto, z ktorého chcete viesť čiaru bubliny, vo vzťahu k bubline s textom."
-
-#. CGjKD
-#: cui/uiconfig/ui/calloutpage.ui:117
-msgctxt "calloutpage|extended_tip|length"
-msgid "Enter the length of the callout line segment that extends from the callout box to the inflection point of the line."
-msgstr "Zadajte dĺžku segmentu čiary bubliny, ktorá sa tiahne od bubliny k inflexnému bodu čiary."
-
#. SFvEw
-#: cui/uiconfig/ui/calloutpage.ui:130
+#: cui/uiconfig/ui/calloutpage.ui:115
msgctxt "calloutpage|lengthft"
msgid "_Length:"
msgstr "_Dĺžka:"
#. Yb2kZ
-#: cui/uiconfig/ui/calloutpage.ui:148
+#: cui/uiconfig/ui/calloutpage.ui:133
msgctxt "calloutpage|optimal"
msgid "_Optimal"
msgstr "_Optimálny"
-#. QEDdo
-#: cui/uiconfig/ui/calloutpage.ui:157
-msgctxt "calloutpage|extended_tip|optimal"
-msgid "Click here to display a single-angled line in an optimal way."
-msgstr "Kliknite sem, aby ste optimálnym spôsobom zobrazili čiaru s jedným uhlom."
-
#. dD3os
-#: cui/uiconfig/ui/calloutpage.ui:176
+#: cui/uiconfig/ui/calloutpage.ui:156
msgctxt "calloutpage|positionft"
msgid "_Position:"
msgstr "_Umiestnenie:"
#. EXWoL
-#: cui/uiconfig/ui/calloutpage.ui:190
+#: cui/uiconfig/ui/calloutpage.ui:170
msgctxt "calloutpage|byft"
msgid "_By:"
msgstr "_O:"
#. R7VbC
-#: cui/uiconfig/ui/calloutpage.ui:205
+#: cui/uiconfig/ui/calloutpage.ui:185
msgctxt "calloutpage|position"
msgid "Top"
msgstr "Hore"
#. G4QwP
-#: cui/uiconfig/ui/calloutpage.ui:206
+#: cui/uiconfig/ui/calloutpage.ui:186
msgctxt "calloutpage|position"
msgid "Middle"
msgstr "Uprostred"
#. WU9cc
-#: cui/uiconfig/ui/calloutpage.ui:207
+#: cui/uiconfig/ui/calloutpage.ui:187
msgctxt "calloutpage|position"
msgid "Bottom"
msgstr "Dole"
#. XAgVD
-#: cui/uiconfig/ui/calloutpage.ui:208
+#: cui/uiconfig/ui/calloutpage.ui:188
msgctxt "calloutpage|position"
msgid "Left"
msgstr "Vľavo"
#. W5B2V
-#: cui/uiconfig/ui/calloutpage.ui:209
+#: cui/uiconfig/ui/calloutpage.ui:189
msgctxt "calloutpage|position"
msgid "Center"
msgstr "Uprostred"
#. NNBsv
-#: cui/uiconfig/ui/calloutpage.ui:210
+#: cui/uiconfig/ui/calloutpage.ui:190
msgctxt "calloutpage|position"
msgid "Right"
msgstr "Vpravo"
-#. ZgPFC
-#: cui/uiconfig/ui/calloutpage.ui:214
-msgctxt "calloutpage|extended_tip|position"
-msgid "Select where you want to extend the callout line from, in relation to the callout box."
-msgstr "Vyberte miesto, z ktorého chcete viesť čiaru bubliny, vo vzťahu k bubline s s textom."
-
-#. rj7LU
-#: cui/uiconfig/ui/calloutpage.ui:233
-msgctxt "calloutpage|extended_tip|by"
-msgid "Select where you want to extend the callout line from, in relation to the callout box."
-msgstr "Vyberte miesto, z ktorého chcete viesť čiaru bubliny, vo vzťahu k bubline s s textom."
-
#. jG4AE
-#: cui/uiconfig/ui/calloutpage.ui:257
+#: cui/uiconfig/ui/calloutpage.ui:227
msgctxt "calloutpage|label1"
msgid "_Spacing:"
msgstr "Rozo_stupy:"
-#. 9SDGt
-#: cui/uiconfig/ui/calloutpage.ui:277
-msgctxt "calloutpage|extended_tip|spacing"
-msgid "Enter the amount of space that you want to leave between the end of the callout line, and the callout box."
-msgstr "Zadajte miesto, ktoré chcete ponechať medzi koncom riadka a bublinou."
-
#. wvzCN
-#: cui/uiconfig/ui/calloutpage.ui:297
+#: cui/uiconfig/ui/calloutpage.ui:262
msgctxt "calloutpage|linetypes"
msgid "Straight Line"
msgstr "Priamka"
#. bQMyC
-#: cui/uiconfig/ui/calloutpage.ui:298
+#: cui/uiconfig/ui/calloutpage.ui:263
msgctxt "calloutpage|linetypes"
msgid "Angled Line"
msgstr "Šikmá čiara"
#. LFs2D
-#: cui/uiconfig/ui/calloutpage.ui:299
+#: cui/uiconfig/ui/calloutpage.ui:264
msgctxt "calloutpage|linetypes"
msgid "Angled Connector Line"
msgstr "Ohnutá spojnica"
-#. mvLuE
-#: cui/uiconfig/ui/calloutpage.ui:316
-msgctxt "calloutpage|extended_tip|CalloutPage"
-msgid "Click the Callout style that you want to apply to the selected callout."
-msgstr "Kliknite na štýl, ktorý chcete použiť na vybranú bublinu."
-
#. vQp3A
#: cui/uiconfig/ui/cellalignment.ui:50
msgctxt "cellalignment|labelDegrees"
@@ -6191,252 +5457,180 @@ msgctxt "cellalignment|labelRefEdge"
msgid "_Reference edge:"
msgstr "_Referenčný okraj:"
-#. YBDvA
-#: cui/uiconfig/ui/cellalignment.ui:83
-msgctxt "cellalignment|extended_tip|spinDegrees"
-msgid "Enter the rotation angle from 0 to 360 for the text in the selected cell(s)."
-msgstr "Zadajte uhol otočenia od 0 do 360 pre text vo vybraných bunkách."
-
-#. D2Ebb
-#: cui/uiconfig/ui/cellalignment.ui:100
-msgctxt "cellalignment|extended_tip|references"
-msgid "Specify the cell edge from which to write the rotated text."
-msgstr "Zadajte okraj bunky, od ktorého sa má písať otočený text."
-
#. Gwudo
-#: cui/uiconfig/ui/cellalignment.ui:122
+#: cui/uiconfig/ui/cellalignment.ui:112
msgctxt "cellalignment|checkVertStack"
msgid "Vertically s_tacked"
msgstr "Usporiadané zvisle"
-#. MDQLn
-#: cui/uiconfig/ui/cellalignment.ui:132
-msgctxt "cellalignment|extended_tip|checkVertStack"
-msgid "Aligns text vertically."
-msgstr "Zarovná text zvisle."
-
#. XBFYt
-#: cui/uiconfig/ui/cellalignment.ui:143
+#: cui/uiconfig/ui/cellalignment.ui:128
msgctxt "cellalignment|checkAsianMode"
msgid "Asian layout _mode"
msgstr "_Režim ázijského rozloženia"
-#. EKAhC
-#: cui/uiconfig/ui/cellalignment.ui:154
-msgctxt "cellalignment|extended_tip|checkAsianMode"
-msgid "Aligns Asian characters one below the other in the selected cell(s). If the cell contains more than one line of text, the lines are converted to text columns that are arranged from right to left. Western characters in the converted text are rotated 90 degrees to the right. Asian characters are not rotated."
-msgstr "Zarovná ázijské znaky pod seba vo vybraných bunkách. Ak bunka obsahuje viac ako jeden riadok textu, riadky sa prevedú na textové stĺpce, ktoré sú usporiadané sprava doľava. Západné znaky v prevedenom texte sú otočené o 90 stupňov doprava. Ázijské znaky sa neotáčajú."
-
-#. rTfQa
-#: cui/uiconfig/ui/cellalignment.ui:178
-msgctxt "cellalignment|extended_tip|dialcontrol"
-msgid "Click in the dial to set the text orientation."
-msgstr "Kliknutím do číselného poľa nastavíte orientáciu textu."
-
#. Kh9JE
-#: cui/uiconfig/ui/cellalignment.ui:198
+#: cui/uiconfig/ui/cellalignment.ui:173
msgctxt "cellalignment|labelTextOrient"
msgid "Text Orientation"
msgstr "Orientácia textu"
#. eM4r3
-#: cui/uiconfig/ui/cellalignment.ui:232
+#: cui/uiconfig/ui/cellalignment.ui:207
msgctxt "cellalignment|checkWrapTextAuto"
msgid "_Wrap text automatically"
msgstr "Automaticky zalomiť te_xt"
-#. warfE
-#: cui/uiconfig/ui/cellalignment.ui:243
-msgctxt "cellalignment|extended_tip|checkWrapTextAuto"
-msgid "Wraps text onto another line at the cell border. The number of lines depends on the width of the cell."
-msgstr "Na hranici bunky zalomí text na ďalší riadok. Počet riadkov závisí od šírky bunky."
-
#. GDRER
-#: cui/uiconfig/ui/cellalignment.ui:254
+#: cui/uiconfig/ui/cellalignment.ui:224
msgctxt "cellalignment|checkShrinkFitCellSize"
msgid "_Shrink to fit cell size"
msgstr "Zmenšiť text podľa veľko_sti bunky"
-#. erdkq
-#: cui/uiconfig/ui/cellalignment.ui:264
-msgctxt "cellalignment|extended_tip|checkShrinkFitCellSize"
-msgid "Reduces the apparent size of the font so that the contents of the cell fit into the current cell width. You cannot apply this command to a cell that contains line breaks."
-msgstr "Zmenší zdanlivú veľkosť písma tak, aby sa obsah bunky zmestil do aktuálnej šírky bunky. Tento príkaz nemôžete použiť na bunku, ktorá obsahuje zalomené riadky."
-
#. Phw2T
-#: cui/uiconfig/ui/cellalignment.ui:275
+#: cui/uiconfig/ui/cellalignment.ui:240
msgctxt "cellalignment|checkHyphActive"
msgid "Hyphenation _active"
msgstr "Delenie slov _aktívne"
-#. XLgra
-#: cui/uiconfig/ui/cellalignment.ui:287
-msgctxt "cellalignment|extended_tip|checkHyphActive"
-msgid "Enables word hyphenation for text wrapping to the next line."
-msgstr "Povolí delenie slov pri zalamovaní textu na ďalší riadok."
-
#. pQLTe
-#: cui/uiconfig/ui/cellalignment.ui:305
+#: cui/uiconfig/ui/cellalignment.ui:265
msgctxt "cellalignment|LabelTxtDir"
msgid "Te_xt direction:"
msgstr "Smer _textu:"
#. jDFtf
-#: cui/uiconfig/ui/cellalignment.ui:341
+#: cui/uiconfig/ui/cellalignment.ui:301
msgctxt "cellalignment|labelProperties"
msgid "Properties"
msgstr "Vlastnosti"
-#. eByBx
-#: cui/uiconfig/ui/cellalignment.ui:379
-msgctxt "cellalignment|extended_tip|spinIndentFrom"
-msgid "Indents from the left edge of the cell by the amount that you enter."
-msgstr "Odsadenie od ľavého okraja bunky o hodnotu, ktorú zadáte."
-
#. dzBtA
-#: cui/uiconfig/ui/cellalignment.ui:392
+#: cui/uiconfig/ui/cellalignment.ui:347
msgctxt "cellalignment|labelHorzAlign"
msgid "Hori_zontal:"
msgstr "_Vodorovne:"
#. Ck3KU
-#: cui/uiconfig/ui/cellalignment.ui:406
+#: cui/uiconfig/ui/cellalignment.ui:361
msgctxt "cellalignment|labelVertAlign"
msgid "_Vertical:"
msgstr "Z_visle:"
#. mF2bB
-#: cui/uiconfig/ui/cellalignment.ui:420
+#: cui/uiconfig/ui/cellalignment.ui:375
msgctxt "cellalignment|labelIndent"
msgid "I_ndent:"
msgstr "_Odsadenie:"
#. FUsYk
-#: cui/uiconfig/ui/cellalignment.ui:435
+#: cui/uiconfig/ui/cellalignment.ui:390
msgctxt "cellalignment|liststoreHorzAlign"
msgid "Default"
msgstr "Predvolené"
#. tweuQ
-#: cui/uiconfig/ui/cellalignment.ui:436
+#: cui/uiconfig/ui/cellalignment.ui:391
msgctxt "cellalignment|liststoreHorzAlign"
msgid "Left"
msgstr "Vľavo"
#. RGwHA
-#: cui/uiconfig/ui/cellalignment.ui:437
+#: cui/uiconfig/ui/cellalignment.ui:392
msgctxt "cellalignment|liststoreHorzAlign"
msgid "Center"
msgstr "Na stred"
#. W9PDc
-#: cui/uiconfig/ui/cellalignment.ui:438
+#: cui/uiconfig/ui/cellalignment.ui:393
msgctxt "cellalignment|liststoreHorzAlign"
msgid "Right"
msgstr "Vpravo"
#. sFf4x
-#: cui/uiconfig/ui/cellalignment.ui:439
+#: cui/uiconfig/ui/cellalignment.ui:394
msgctxt "cellalignment|liststoreHorzAlign"
msgid "Justified"
msgstr "Do bloku"
#. yJ33b
-#: cui/uiconfig/ui/cellalignment.ui:440
+#: cui/uiconfig/ui/cellalignment.ui:395
msgctxt "cellalignment|liststoreHorzAlign"
msgid "Filled"
msgstr "Vyplnené"
#. CF59Y
-#: cui/uiconfig/ui/cellalignment.ui:441
+#: cui/uiconfig/ui/cellalignment.ui:396
msgctxt "cellalignment|liststoreHorzAlign"
msgid "Distributed"
msgstr "Distribuovaný"
-#. 8xDX2
-#: cui/uiconfig/ui/cellalignment.ui:445
-msgctxt "cellalignment|extended_tip|comboboxHorzAlign"
-msgid "Select the horizontal alignment option that you want to apply to the cell contents."
-msgstr "Vyberte možnosť vodorovného zarovnania, ktorú chcete použiť na obsah bunky."
-
#. Cu2BM
-#: cui/uiconfig/ui/cellalignment.ui:459
+#: cui/uiconfig/ui/cellalignment.ui:409
msgctxt "cellalignment|liststoreVertAlign"
msgid "Default"
msgstr "Predvolené"
#. dNANA
-#: cui/uiconfig/ui/cellalignment.ui:460
+#: cui/uiconfig/ui/cellalignment.ui:410
msgctxt "cellalignment|liststoreVertAlign"
msgid "Top"
msgstr "Hore"
#. 8qsJF
-#: cui/uiconfig/ui/cellalignment.ui:461
+#: cui/uiconfig/ui/cellalignment.ui:411
msgctxt "cellalignment|liststoreVertAlign"
msgid "Middle"
msgstr "Uprostred"
#. eGhGU
-#: cui/uiconfig/ui/cellalignment.ui:462
+#: cui/uiconfig/ui/cellalignment.ui:412
msgctxt "cellalignment|liststoreVertAlign"
msgid "Bottom"
msgstr "Dole"
#. TGeEd
-#: cui/uiconfig/ui/cellalignment.ui:463
+#: cui/uiconfig/ui/cellalignment.ui:413
msgctxt "cellalignment|liststoreVertAlign"
msgid "Justified"
msgstr "Do bloku"
#. s7QDA
-#: cui/uiconfig/ui/cellalignment.ui:464
+#: cui/uiconfig/ui/cellalignment.ui:414
msgctxt "cellalignment|liststoreVertAlign"
msgid "Distributed"
msgstr "Distribuovaný"
-#. MH9tT
-#: cui/uiconfig/ui/cellalignment.ui:468
-msgctxt "cellalignment|extended_tip|comboboxVertAlign"
-msgid "Select the vertical alignment option that you want to apply to the cell contents."
-msgstr "Vyberte možnosť vertikálneho zarovnania, ktorú chcete použiť na obsah bunky."
-
#. FT9GJ
-#: cui/uiconfig/ui/cellalignment.ui:491
+#: cui/uiconfig/ui/cellalignment.ui:436
msgctxt "cellalignment|LabelTextAlig"
msgid "Text Alignment"
msgstr "Zarovnanie textu"
#. CDKBz
-#: cui/uiconfig/ui/cellalignment.ui:511
+#: cui/uiconfig/ui/cellalignment.ui:456
msgctxt "cellalignment|labelSTR_BOTTOMLOCK"
msgid "Text Extension From Lower Cell Border"
msgstr "Text vychádza od dolného okraja bunky"
#. 7MTSt
-#: cui/uiconfig/ui/cellalignment.ui:522
+#: cui/uiconfig/ui/cellalignment.ui:467
msgctxt "cellalignment|labelSTR_TOPLOCK"
msgid "Text Extension From Upper Cell Border"
msgstr "Text vychádza od horného okraja bunky"
#. HJYjP
-#: cui/uiconfig/ui/cellalignment.ui:533
+#: cui/uiconfig/ui/cellalignment.ui:478
msgctxt "cellalignment|labelSTR_CELLLOCK"
msgid "Text Extension Inside Cell"
msgstr "Text len vo vnútri bunky"
#. EDRZX
-#: cui/uiconfig/ui/cellalignment.ui:544
+#: cui/uiconfig/ui/cellalignment.ui:489
msgctxt "cellalignment|labelABCD"
msgid "ABCD"
msgstr "ABCD"
-#. U4vgj
-#: cui/uiconfig/ui/cellalignment.ui:560
-msgctxt "cellalignment|extended_tip|CellAlignPage"
-msgid "Sets the alignment options for the contents of the current cell, or the selected cells."
-msgstr "Nastavuje možnosti zarovnania pre obsah aktuálnej bunky alebo vybraných buniek."
-
#. xPtim
#: cui/uiconfig/ui/certdialog.ui:24
msgctxt "certdialog|CertDialog"
@@ -6444,233 +5638,143 @@ msgid "Certificate Path"
msgstr "Cesta pre certifikáty"
#. zZy4o
-#: cui/uiconfig/ui/certdialog.ui:40
+#: cui/uiconfig/ui/certdialog.ui:43
msgctxt "certdialog|add"
msgid "_Select NSS path..."
msgstr "Vybrať _cestu k NSS..."
-#. zx3Mw
-#: cui/uiconfig/ui/certdialog.ui:48
-msgctxt "certdialog|extended_tip|add"
-msgid "Opens a file picker dialog to add a new Network Security Services Certificate directory to the list."
-msgstr "Otvorí dialógové okno na výber súborov a do zoznamu pridá nový adresár certifikátov služieb zabezpečenia."
-
#. GFGjC
-#: cui/uiconfig/ui/certdialog.ui:138
+#: cui/uiconfig/ui/certdialog.ui:137
msgctxt "certdialog|label2"
msgid "Select or add the correct Network Security Services Certificate directory to use for digital signatures:"
msgstr "Vyberte alebo vytvorte priečinok certifikátov Network Security Services na ukladanie elektronických podpisov:"
#. BbEyB
-#: cui/uiconfig/ui/certdialog.ui:161
+#: cui/uiconfig/ui/certdialog.ui:160
msgctxt "certdialog|manual"
msgid "manual"
msgstr "ručne"
#. zWhfK
-#: cui/uiconfig/ui/certdialog.ui:172
+#: cui/uiconfig/ui/certdialog.ui:171
msgctxt "certdialog|certdir"
msgid "Select a Certificate directory"
msgstr "Vybrať priečinok pre certifikáty"
#. 7NJfB
-#: cui/uiconfig/ui/certdialog.ui:209
+#: cui/uiconfig/ui/certdialog.ui:223
msgctxt "certdialog|profile"
msgid "Profile"
msgstr "Profil"
#. YBT5H
-#: cui/uiconfig/ui/certdialog.ui:231
+#: cui/uiconfig/ui/certdialog.ui:236
msgctxt "certdialog|dir"
msgid "Directory"
msgstr "Priečinok"
#. Bt5Lw
-#: cui/uiconfig/ui/certdialog.ui:256
+#: cui/uiconfig/ui/certdialog.ui:261
msgctxt "certdialog|label1"
msgid "Certificate Path"
msgstr "Cesta pre certifikáty"
-#. pbBGM
-#: cui/uiconfig/ui/certdialog.ui:282
-msgctxt "certdialog|extended_tip|CertDialog"
-msgid "Select or add the correct Network Security Services Certificate directory to use for digital signatures."
-msgstr "Vyberte alebo pridajte správny adresár certifikátu služieb zabezpečenia siete, ktorý sa má použiť na digitálne podpisy."
-
-#. xXVpD
-#: cui/uiconfig/ui/charnamepage.ui:243
-msgctxt "charnamepage|extended_tip|weststylelb-nocjk"
-msgid "Select the formatting that you want to apply."
-msgstr "Vyberte formátovanie, ktoré chcete použiť."
-
-#. MR6Nr
-#: cui/uiconfig/ui/charnamepage.ui:339
-msgctxt "charnamepage|extended_tip|westsizelb-nocjk"
-msgid "Enter or select the font size that you want to apply. For scalable fonts, you can also enter decimal values."
-msgstr "Zadajte alebo vyberte veľkosť písma, ktoré chcete použiť. Pre škálovateľné písma môžete tiež zadať desatinné hodnoty."
-
#. YcKtn
-#: cui/uiconfig/ui/charnamepage.ui:370
+#: cui/uiconfig/ui/charnamepage.ui:360
msgctxt "charnamepage|westsizeft-nocjk"
msgid "Size:"
msgstr "Veľkosť:"
#. WQxtG
-#: cui/uiconfig/ui/charnamepage.ui:396
+#: cui/uiconfig/ui/charnamepage.ui:386
msgctxt "charnamepage|westlangft-nocjk"
msgid "Language:"
-msgstr "Jazyk:"
-
-#. 63kyg
-#: cui/uiconfig/ui/charnamepage.ui:431
-msgctxt "charnamepage|extended_tip|westlanglb-nocjk"
-msgid "Sets the language that the spellchecker uses for the selected text or the text that you type. Available language modules have a check mark in front of them."
-msgstr "Nastaví jazyk, ktorý použije kontrola pravopisu pre vybraný text alebo text, ktorý zadávate. Dostupné jazykové moduly sú v zozname označené."
+msgstr "Language:"
#. NgZJ9
-#: cui/uiconfig/ui/charnamepage.ui:450
+#: cui/uiconfig/ui/charnamepage.ui:435
msgctxt "charnamepage|west_features_button-nocjk"
msgid "Features..."
msgstr "Vlastnosti..."
#. nKfjE
-#: cui/uiconfig/ui/charnamepage.ui:529
+#: cui/uiconfig/ui/charnamepage.ui:514
msgctxt "charnamepage|westsizeft-cjk"
msgid "Size:"
msgstr "Veľkosť:"
#. jJc8T
-#: cui/uiconfig/ui/charnamepage.ui:543
+#: cui/uiconfig/ui/charnamepage.ui:528
msgctxt "charnamepage|westlangft-cjk"
msgid "Language:"
-msgstr "Jazyk:"
-
-#. PEg2a
-#: cui/uiconfig/ui/charnamepage.ui:584
-msgctxt "charnamepage|extended_tip|weststylelb-cjk"
-msgid "Select the formatting that you want to apply."
-msgstr "Vyberte formátovanie, ktoré chcete použiť."
-
-#. 8quPQ
-#: cui/uiconfig/ui/charnamepage.ui:606
-msgctxt "charnamepage|extended_tip|westsizelb-cjk"
-msgid "Enter or select the font size that you want to apply. For scalable fonts, you can also enter decimal values."
-msgstr "Zadajte alebo vyberte veľkosť písma, ktoré chcete použiť. Pre škálovateľné písma môžete tiež zadať desatinné hodnoty."
-
-#. zCCrx
-#: cui/uiconfig/ui/charnamepage.ui:637
-msgctxt "charnamepage|extended_tip|westlanglb-cjk"
-msgid "Sets the language that the spellchecker uses for the selected text or the text that you type. Available language modules have a check mark in front of them."
-msgstr "Nastaví jazyk, ktorý použije kontrola pravopisu pre vybraný text alebo text, ktorý zadávate. Dostupné jazykové moduly sú v zozname označené."
+msgstr "Language:"
#. qpSnT
-#: cui/uiconfig/ui/charnamepage.ui:665
+#: cui/uiconfig/ui/charnamepage.ui:635
msgctxt "charnamepage|west_features_button-cjk"
msgid "Features..."
msgstr "Vlastnosti..."
#. LYK4e
-#: cui/uiconfig/ui/charnamepage.ui:691
+#: cui/uiconfig/ui/charnamepage.ui:661
msgctxt "charnamepage|label4"
msgid "Western Text Font"
msgstr "Písmo pre západné texty"
#. q4WZB
-#: cui/uiconfig/ui/charnamepage.ui:756
+#: cui/uiconfig/ui/charnamepage.ui:726
msgctxt "charnamepage|eastsizeft"
msgid "Size:"
msgstr "Veľkosť:"
#. 6MVEP
-#: cui/uiconfig/ui/charnamepage.ui:770
+#: cui/uiconfig/ui/charnamepage.ui:740
msgctxt "charnamepage|eastlangft"
msgid "Language:"
-msgstr "Jazyk:"
-
-#. BhQZB
-#: cui/uiconfig/ui/charnamepage.ui:811
-msgctxt "charnamepage|extended_tip|eaststylelb"
-msgid "Select the formatting that you want to apply."
-msgstr "Vyberte formátovanie, ktoré chcete použiť."
-
-#. JSR99
-#: cui/uiconfig/ui/charnamepage.ui:833
-msgctxt "charnamepage|extended_tip|eastsizelb"
-msgid "Enter or select the font size that you want to apply. For scalable fonts, you can also enter decimal values."
-msgstr "Zadajte alebo vyberte veľkosť písma, ktoré chcete použiť. Pre škálovateľné písma môžete tiež zadať desatinné hodnoty."
-
-#. KLJQT
-#: cui/uiconfig/ui/charnamepage.ui:863
-msgctxt "charnamepage|extended_tip|eastlanglb"
-msgid "Sets the language that the spellchecker uses for the selected text or the text that you type. Available language modules have a check mark in front of them."
-msgstr "Nastaví jazyk, ktorý použije kontrola pravopisu pre vybraný text alebo text, ktorý zadávate. Dostupné jazykové moduly sú v zozname označené."
+msgstr "Language:"
#. 5uQYn
-#: cui/uiconfig/ui/charnamepage.ui:890
+#: cui/uiconfig/ui/charnamepage.ui:845
msgctxt "charnamepage|east_features_button"
msgid "Features..."
msgstr "Vlastnosti..."
#. vAo4E
-#: cui/uiconfig/ui/charnamepage.ui:916
+#: cui/uiconfig/ui/charnamepage.ui:871
msgctxt "charnamepage|label5"
msgid "Asian Text Font"
msgstr "Písmo pre ázijský text"
#. FSm5y
-#: cui/uiconfig/ui/charnamepage.ui:981
+#: cui/uiconfig/ui/charnamepage.ui:936
msgctxt "charnamepage|ctlsizeft"
msgid "Size:"
msgstr "Veľkosť:"
#. j6bmf
-#: cui/uiconfig/ui/charnamepage.ui:995
+#: cui/uiconfig/ui/charnamepage.ui:950
msgctxt "charnamepage|ctllangft"
msgid "Language:"
-msgstr "Jazyk:"
-
-#. 64NvC
-#: cui/uiconfig/ui/charnamepage.ui:1036
-msgctxt "charnamepage|extended_tip|ctlstylelb"
-msgid "Select the formatting that you want to apply."
-msgstr "Vyberte formátovanie, ktoré chcete použiť."
-
-#. CeMCG
-#: cui/uiconfig/ui/charnamepage.ui:1058
-msgctxt "charnamepage|extended_tip|ctlsizelb"
-msgid "Enter or select the font size that you want to apply. For scalable fonts, you can also enter decimal values."
-msgstr "Zadajte alebo vyberte veľkosť písma, ktoré chcete použiť. Pre škálovateľné písma môžete tiež zadať desatinné hodnoty."
-
-#. zCKxL
-#: cui/uiconfig/ui/charnamepage.ui:1088
-msgctxt "charnamepage|extended_tip|ctllanglb"
-msgid "Sets the language that the spellchecker uses for the selected text or the text that you type. Available language modules have a check mark in front of them."
-msgstr "Nastaví jazyk, ktorý použije kontrola pravopisu pre vybraný text alebo text, ktorý zadávate. Dostupné jazykové moduly sú v zozname označené."
+msgstr "Language:"
#. Nobqa
-#: cui/uiconfig/ui/charnamepage.ui:1116
+#: cui/uiconfig/ui/charnamepage.ui:1056
msgctxt "charnamepage|ctl_features_button"
msgid "Features..."
msgstr "Vlastnosti..."
#. C8hPj
-#: cui/uiconfig/ui/charnamepage.ui:1142
+#: cui/uiconfig/ui/charnamepage.ui:1082
msgctxt "charnamepage|label6"
msgid "CTL Font"
msgstr "CTL písmo"
#. RyyME
-#: cui/uiconfig/ui/charnamepage.ui:1180
+#: cui/uiconfig/ui/charnamepage.ui:1120
msgctxt "charnamepage|preview-atkobject"
msgid "Preview"
msgstr "Náhľad"
-#. kbQzU
-#: cui/uiconfig/ui/charnamepage.ui:1199
-msgctxt "charnamepage|extended_tip|CharNamePage"
-msgid "Specify the formatting and the font that you want to apply."
-msgstr "Zadajte formátovanie a písmo, ktoré chcete použiť."
-
#. LE7Wp
#: cui/uiconfig/ui/colorconfigwin.ui:13
msgctxt "colorconfigwin|docboundaries"
@@ -7043,164 +6147,158 @@ msgctxt "colorpage|delete"
msgid "Delete"
msgstr "Odstrániť"
-#. CAmRV
-#: cui/uiconfig/ui/colorpage.ui:211
-msgctxt "colorpage|extended_tip|delete"
-msgid "Deletes the selected element or elements without requiring confirmation."
-msgstr "Vymaže vybraný prvok alebo prvky bez potreby potvrdenia."
-
#. m2Qm7
-#: cui/uiconfig/ui/colorpage.ui:225
+#: cui/uiconfig/ui/colorpage.ui:220
msgctxt "colorpage|label22"
msgid "Custom Palette"
msgstr "Vlastná paleta"
#. 5jjvt
-#: cui/uiconfig/ui/colorpage.ui:291
+#: cui/uiconfig/ui/colorpage.ui:286
msgctxt "colorpage|label1"
msgid "Colors"
msgstr "Farby"
#. CvMfT
-#: cui/uiconfig/ui/colorpage.ui:350
+#: cui/uiconfig/ui/colorpage.ui:345
msgctxt "colorpage|oldpreview-atkobject"
msgid "Old Color"
msgstr "Pôvodná farba"
#. 2m4w9
-#: cui/uiconfig/ui/colorpage.ui:384
+#: cui/uiconfig/ui/colorpage.ui:379
msgctxt "colorpage|label7"
msgid "B"
msgstr "B"
#. DwaiD
-#: cui/uiconfig/ui/colorpage.ui:397
+#: cui/uiconfig/ui/colorpage.ui:392
msgctxt "colorpage|label8"
msgid "G"
msgstr "G"
#. hYiqy
-#: cui/uiconfig/ui/colorpage.ui:410
+#: cui/uiconfig/ui/colorpage.ui:405
msgctxt "colorpage|label9"
msgid "R"
msgstr "R"
#. MKq8c
-#: cui/uiconfig/ui/colorpage.ui:423
+#: cui/uiconfig/ui/colorpage.ui:418
msgctxt "colorpage|label18"
msgid "Hex"
msgstr "Hex"
#. nnSGG
-#: cui/uiconfig/ui/colorpage.ui:499
+#: cui/uiconfig/ui/colorpage.ui:494
msgctxt "colorpage|label10"
msgid "_C"
msgstr "_C"
#. LCfVw
-#: cui/uiconfig/ui/colorpage.ui:512
+#: cui/uiconfig/ui/colorpage.ui:507
msgctxt "colorpage|label16"
msgid "_K"
msgstr "_K"
#. qmNUp
-#: cui/uiconfig/ui/colorpage.ui:525
+#: cui/uiconfig/ui/colorpage.ui:520
msgctxt "colorpage|label17"
msgid "_Y"
msgstr "_Y"
#. TSEpY
-#: cui/uiconfig/ui/colorpage.ui:586
+#: cui/uiconfig/ui/colorpage.ui:581
msgctxt "colorpage|label15"
msgid "_M"
msgstr "_M"
#. VnCYq
-#: cui/uiconfig/ui/colorpage.ui:610
+#: cui/uiconfig/ui/colorpage.ui:605
msgctxt "colorpage|label5"
msgid "Active"
msgstr "Aktívne"
#. AwBVq
-#: cui/uiconfig/ui/colorpage.ui:669
+#: cui/uiconfig/ui/colorpage.ui:664
msgctxt "colorpage|newpreview-atkobject"
msgid "New Color"
msgstr "Nová farba"
#. yFQFh
-#: cui/uiconfig/ui/colorpage.ui:704
+#: cui/uiconfig/ui/colorpage.ui:699
msgctxt "colorpage|B_custom"
msgid "Blue"
msgstr "Modrá"
#. 3DcMm
-#: cui/uiconfig/ui/colorpage.ui:717
+#: cui/uiconfig/ui/colorpage.ui:712
msgctxt "colorpage|R_custom"
msgid "Red"
msgstr "Červená"
#. 2o8Uw
-#: cui/uiconfig/ui/colorpage.ui:729
+#: cui/uiconfig/ui/colorpage.ui:724
msgctxt "colorpage|label4"
msgid "_B"
msgstr "_B"
#. HXuEA
-#: cui/uiconfig/ui/colorpage.ui:742
+#: cui/uiconfig/ui/colorpage.ui:737
msgctxt "colorpage|label3"
msgid "_G"
msgstr "_G"
#. Kd4oX
-#: cui/uiconfig/ui/colorpage.ui:755
+#: cui/uiconfig/ui/colorpage.ui:750
msgctxt "colorpage|label2"
msgid "_R"
msgstr "_R"
#. FgaZg
-#: cui/uiconfig/ui/colorpage.ui:769
+#: cui/uiconfig/ui/colorpage.ui:764
msgctxt "colorpage|G_custom"
msgid "Green"
msgstr "Zelená"
#. FZ69n
-#: cui/uiconfig/ui/colorpage.ui:781
+#: cui/uiconfig/ui/colorpage.ui:776
msgctxt "colorpage|label19"
msgid "_Hex"
msgstr "_Hex"
#. BAYSF
-#: cui/uiconfig/ui/colorpage.ui:823
+#: cui/uiconfig/ui/colorpage.ui:818
msgctxt "colorpage|label11"
msgid "_C"
msgstr "_C"
#. r3QVM
-#: cui/uiconfig/ui/colorpage.ui:836
+#: cui/uiconfig/ui/colorpage.ui:831
msgctxt "colorpage|label12"
msgid "_M"
msgstr "_M"
#. 9C3nc
-#: cui/uiconfig/ui/colorpage.ui:849
+#: cui/uiconfig/ui/colorpage.ui:844
msgctxt "colorpage|label13"
msgid "_K"
msgstr "_K"
#. KeYG5
-#: cui/uiconfig/ui/colorpage.ui:886
+#: cui/uiconfig/ui/colorpage.ui:881
msgctxt "colorpage|label14"
msgid "_Y"
msgstr "_Y"
#. WPVmD
-#: cui/uiconfig/ui/colorpage.ui:928
+#: cui/uiconfig/ui/colorpage.ui:923
msgctxt "colorpage|edit"
msgid "Pick"
msgstr "Vybrať"
#. DpUCG
-#: cui/uiconfig/ui/colorpage.ui:951
+#: cui/uiconfig/ui/colorpage.ui:946
msgctxt "colorpage|label6"
msgid "New"
msgstr "Nový"
@@ -7211,222 +6309,90 @@ msgctxt "colorpickerdialog|ColorPicker"
msgid "Pick a Color"
msgstr "Vybrať farbu"
-#. fMFDR
-#: cui/uiconfig/ui/colorpickerdialog.ui:157
-msgctxt "extended tip | preview"
-msgid "In the left part of the bottom bar, the current result of your work in this dialog is visible."
-msgstr "V ľavej časti dolnej lišty je viditeľný aktuálny výsledok spravených zmien."
-
-#. 7jLV5
-#: cui/uiconfig/ui/colorpickerdialog.ui:173
-msgctxt "extended tip | previous"
-msgid "In the right part of the bottom bar, you will see the original color from the parent tab, Colors."
-msgstr "V pravej časti dolnej lišty je zobrazená pôvodná farba z nadradenej karty Farby."
-
-#. yEApx
-#: cui/uiconfig/ui/colorpickerdialog.ui:198
-msgctxt "extended tip | colorField"
-msgid "Click in the big color area on the left to select a new color. Using this selector area you can modify two components of the color as represented in the RGB or HSB color models. Note that these are the two components not selected with the radio buttons on the right side of the dialog."
-msgstr "Kliknutím do veľkej oblasti farieb vľavo vyberiete novú farbu. Pomocou tejto oblasti výberu môžete upraviť dve zložky farby farebných modelov RGB alebo HSB. Tieto dve zložky sú tie, ktoré nie sú vybrané pomocou prepínačov na pravej strane dialógového okna."
-
-#. N8gjc
-#: cui/uiconfig/ui/colorpickerdialog.ui:215
-msgctxt "extended tip | colorSlider"
-msgid "With the vertical color component slider you can modify the value of each component of the color."
-msgstr "Vertikálnym posúvačom môžete upraviť zložku farby, ktorá je aktuálne zvolená pomocou prepínačov vpravo."
-
#. mjiGo
-#: cui/uiconfig/ui/colorpickerdialog.ui:298
+#: cui/uiconfig/ui/colorpickerdialog.ui:281
msgctxt "colorpickerdialog|redRadiobutton"
msgid "_Red:"
msgstr "_Červená:"
-#. yWDJE
-#: cui/uiconfig/ui/colorpickerdialog.ui:308
-msgctxt "extended tip | redRadiobutton"
-msgid "Sets the Red component modifiable on the vertical color slider, and the Green and Blue components in the two-dimensional color picker field. Allowed values are 0 to 255."
-msgstr "Nastaví červenú zložku (R), ktorú je možné upravovať pomocou vertikálneho posúvača, a zelenú (G) a modrú (B) zložku, ktoré možno nastaviť v dvojrozmernom poli na výber farieb. Povolené hodnoty sú 0 až 255."
-
#. TkTSB
-#: cui/uiconfig/ui/colorpickerdialog.ui:319
+#: cui/uiconfig/ui/colorpickerdialog.ui:297
msgctxt "colorpickerdialog|greenRadiobutton"
msgid "_Green:"
msgstr "_Zelená:"
-#. 3YZDt
-#: cui/uiconfig/ui/colorpickerdialog.ui:329
-msgctxt "extended tip | greenRadiobutton"
-msgid "Sets the Green component modifiable on the vertical color slider, and the Red and Blue components in the two-dimensional color picker field. Allowed values are 0 to 255."
-msgstr "Nastaví zelenú zložku (G), ktorú je možné upravovať pomocou vertikálneho posúvača, a červenú (R) a modrú (B) zložku, ktoré možno nastaviť v dvojrozmernom poli na výber farieb. Povolené hodnoty sú 0 až 255."
-
#. 5FGfv
-#: cui/uiconfig/ui/colorpickerdialog.ui:340
+#: cui/uiconfig/ui/colorpickerdialog.ui:313
msgctxt "colorpickerdialog|blueRadiobutton"
msgid "_Blue:"
msgstr "_Modrá:"
-#. gSvva
-#: cui/uiconfig/ui/colorpickerdialog.ui:350
-msgctxt "extended tip | blueRadiobutton"
-msgid "Sets the Blue component modifiable on the vertical color slider, and the Green and Red components in the two-dimensional color picker field. Allowed values are 0 to 255."
-msgstr "Nastaví modrú zložku (B), ktorú je možné upravovať pomocou vertikálneho posúvača, a červenú (R) a zelenú (G) zložku, ktoré možno nastaviť v dvojrozmernom poli na výber farieb. Povolené hodnoty sú 0 až 255."
-
-#. c5MTh
-#: cui/uiconfig/ui/colorpickerdialog.ui:368
-msgctxt "extended tip | redSpinbutton"
-msgid "Set the Red color value directly. Allowed values are 0 to 255."
-msgstr "Priamo nastavíte hodnotu červenej farby (R). Povolené hodnoty sú 0 až 255."
-
-#. 2yY2G
-#: cui/uiconfig/ui/colorpickerdialog.ui:386
-msgctxt "extended tip | greenSpinbutton"
-msgid "Set the Green color value directly. Allowed values are 0 to 255."
-msgstr "Priamo nastavíte hodnotu zelenej farby (G). Povolené hodnoty sú 0 až 255."
-
-#. UREX7
-#: cui/uiconfig/ui/colorpickerdialog.ui:404
-msgctxt "extended tip | blueSpinbutton"
-msgid "Set the Blue color value directly. Allowed values are 0 to 255."
-msgstr "Priamo nastavíte hodnotu modrej farby (B). Povolené hodnoty sú 0 až 255."
-
#. 2nFsj
-#: cui/uiconfig/ui/colorpickerdialog.ui:417
+#: cui/uiconfig/ui/colorpickerdialog.ui:370
msgctxt "colorpickerdialog|label2"
msgid "Hex _#:"
msgstr "Hex _#:"
-#. zPsRu
-#: cui/uiconfig/ui/colorpickerdialog.ui:435
-msgctxt "extended tip | hexEntry"
-msgid "Displays and sets the color value in the RGB color model expressed as a hexadecimal number."
-msgstr "Zobrazuje a nastavuje hodnotu farby v farebnom modeli RGB vyjadrenú ako hexadecimálne číslo."
-
#. sD6YC
-#: cui/uiconfig/ui/colorpickerdialog.ui:452
+#: cui/uiconfig/ui/colorpickerdialog.ui:400
msgctxt "colorpickerdialog|label1"
msgid "RGB"
msgstr "RGB"
#. wGrVM
-#: cui/uiconfig/ui/colorpickerdialog.ui:491
+#: cui/uiconfig/ui/colorpickerdialog.ui:439
msgctxt "colorpickerdialog|hueRadiobutton"
msgid "H_ue:"
msgstr "_Odtieň:"
-#. qnLnB
-#: cui/uiconfig/ui/colorpickerdialog.ui:501
-msgctxt "extended tip | hueRadiobutton"
-msgid "Sets the Hue component modifiable on the vertical color slider, and the Saturation and Brightness components in the two-dimensional color picker field. Values are expressed in degrees from 0 to 359."
-msgstr "Nastaví zložku Odtieň (Hue) upraviteľnú na vertikálnom posúvači farieb a zložky Sýtosť (Saturation) a Jas (Brightness) v dvojrozmernom poli na výber farieb. Hodnoty sú vyjadrené v stupňoch od 0 do 359."
-
#. C4GE3
-#: cui/uiconfig/ui/colorpickerdialog.ui:512
+#: cui/uiconfig/ui/colorpickerdialog.ui:455
msgctxt "colorpickerdialog|satRadiobutton"
msgid "_Saturation:"
msgstr "_Sýtosť:"
-#. wGdN5
-#: cui/uiconfig/ui/colorpickerdialog.ui:522
-msgctxt "extended tip | satRadiobutton"
-msgid "Sets the Saturation component modifiable on the vertical color slider, and the Hue and Brightness components in the two-dimensional color picker field. Values are expressed in percent (0 to 100)."
-msgstr "Nastaví zložku Sýtosť (Saturation) upraviteľnú na vertikálnom posúvači farieb a zložky Odtieň (Hue) a Jas (Brightness) v dvojrozmernom poli na výber farieb. Hodnoty sú vyjadrené v percentách (0 až 100)."
-
#. NXs9w
-#: cui/uiconfig/ui/colorpickerdialog.ui:533
+#: cui/uiconfig/ui/colorpickerdialog.ui:471
msgctxt "colorpickerdialog|brightRadiobutton"
msgid "Bright_ness:"
msgstr "_Jas:"
-#. KkBQX
-#: cui/uiconfig/ui/colorpickerdialog.ui:543
-msgctxt "extended tip | brightRadiobutton"
-msgid "Sets the Brightness component modifiable on the vertical color slider, and the Hue and Saturation components in the two-dimensional color picker field. Values are expressed in percent (0 to 100)."
-msgstr "Nastaví zložku Jas (Brightness) upraviteľnú na vertikálnom posúvači farieb a komponenty Odtieň (Hue) a Sýtosť (Saturation) v dvojrozmernom poli na výber farieb. Hodnoty sú vyjadrené v percentách (0 až 100)."
-
-#. BCvUX
-#: cui/uiconfig/ui/colorpickerdialog.ui:561
-msgctxt "extended tip | hueSpinbutton"
-msgid "Set the Hue directly in the HSB color model. Values are expressed in degrees from 0 to 359."
-msgstr "Nastaví odtieň (Hue) priamo vo farebnom modeli HSB. Hodnoty sú vyjadrené v stupňoch od 0 do 359."
-
-#. TcDh8
-#: cui/uiconfig/ui/colorpickerdialog.ui:579
-msgctxt "extended tip | satSpinbutton"
-msgid "Set the Saturation directly in the HSB color model. Values are expressed in percent (0 to 100)."
-msgstr "Nastaví sýtosť (Saturation) priamo vo farebnom modeli HSB. Hodnoty sú vyjadrené v percentách (0 až 100)."
-
-#. hucEE
-#: cui/uiconfig/ui/colorpickerdialog.ui:597
-msgctxt "extended tip | brightSpinbutton"
-msgid "Set the Brightness directly in the HSB color model. Values are expressed in percent (0 to 100)."
-msgstr "Nastaví jas (Brightness) priamo vo farebnom modeli HSB. Hodnoty sú vyjadrené v percentách (0 až 100)."
-
#. B7RjF
-#: cui/uiconfig/ui/colorpickerdialog.ui:614
+#: cui/uiconfig/ui/colorpickerdialog.ui:532
msgctxt "colorpickerdialog|label3"
msgid "HSB"
msgstr "HSB"
#. sesZZ
-#: cui/uiconfig/ui/colorpickerdialog.ui:654
+#: cui/uiconfig/ui/colorpickerdialog.ui:572
msgctxt "colorpickerdialog|label5"
msgid "_Cyan:"
msgstr "_Azúrová:"
#. Gw7rx
-#: cui/uiconfig/ui/colorpickerdialog.ui:669
+#: cui/uiconfig/ui/colorpickerdialog.ui:587
msgctxt "colorpickerdialog|label6"
msgid "_Magenta:"
msgstr "_Purpurová:"
#. Uv2KG
-#: cui/uiconfig/ui/colorpickerdialog.ui:684
+#: cui/uiconfig/ui/colorpickerdialog.ui:602
msgctxt "colorpickerdialog|label7"
msgid "_Yellow:"
msgstr "Ž_ltá:"
#. aFvbe
-#: cui/uiconfig/ui/colorpickerdialog.ui:699
+#: cui/uiconfig/ui/colorpickerdialog.ui:617
msgctxt "colorpickerdialog|label8"
msgid "_Key:"
msgstr "Či_erna:"
-#. bNiCN
-#: cui/uiconfig/ui/colorpickerdialog.ui:718
-msgctxt "extended tip | cyanSpinbutton"
-msgid "Set the Cyan color value as expressed in the CMYK color model."
-msgstr "Nastaví hodnotu azúrovej farby (Cyan) vyjadrenej vo farebnom modeli CMYK."
-
-#. mMXFr
-#: cui/uiconfig/ui/colorpickerdialog.ui:736
-msgctxt "extended tip | magSpinbutton"
-msgid "Set the Magenta color value as expressed in the CMYK color model."
-msgstr "Nastaví hodnotu purpurovej (Magenta) farby vyjadrenú vo farebnom modeli CMYK."
-
-#. EEgiy
-#: cui/uiconfig/ui/colorpickerdialog.ui:754
-msgctxt "extended tip | yellowSpinbutton"
-msgid "Set the Yellow color value as expressed in the CMYK color model."
-msgstr "Nastaví hodnotu žltej farby (Yellow) vyjadrenú vo farebnom modeli CMYK."
-
-#. UAAnZ
-#: cui/uiconfig/ui/colorpickerdialog.ui:772
-msgctxt "extended tip | keySpinbutton"
-msgid "Set the Black color value or key (black) as expressed in the CMYK color model."
-msgstr "Nastaví hodnotu čiernej farby (blacK alebo Key), ako je vyjadrené vo farebnom modeli CMYK."
-
#. mxFDw
-#: cui/uiconfig/ui/colorpickerdialog.ui:789
+#: cui/uiconfig/ui/colorpickerdialog.ui:687
msgctxt "colorpickerdialog|label4"
msgid "CMYK"
msgstr "CMYK"
-#. 9KyXs
-#: cui/uiconfig/ui/colorpickerdialog.ui:828
-msgctxt "extended tip | ColorPicker"
-msgid "%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog."
-msgstr "%PRODUCTNAME umožňuje definovať vlastné farby pomocou dvojrozmerného grafického zobrazenia a číselnej reprezentácie v dialógovom okne Výber farby."
-
#. vDFei
#: cui/uiconfig/ui/comment.ui:18
msgctxt "comment|CommentDialog"
@@ -7445,236 +6411,152 @@ msgctxt "comment|label4"
msgid "_Text"
msgstr "_Text"
-#. 4ZGAd
-#: cui/uiconfig/ui/comment.ui:222
-msgctxt "comment|extended_tip|edit"
-msgid "Enter a comment for the recorded change."
-msgstr "Zadajte komentár pre zaznamenanú zmenu."
-
#. bEtYk
-#: cui/uiconfig/ui/comment.ui:243
+#: cui/uiconfig/ui/comment.ui:238
msgctxt "comment|label5"
msgid "_Insert"
msgstr "Vlož_iť"
#. eGHyF
-#: cui/uiconfig/ui/comment.ui:255
+#: cui/uiconfig/ui/comment.ui:250
msgctxt "comment|author"
msgid "Author"
msgstr "Autor"
#. VjKDs
-#: cui/uiconfig/ui/comment.ui:276
+#: cui/uiconfig/ui/comment.ui:271
msgctxt "comment|alttitle"
msgid "Edit Comment"
msgstr "Upraviť poznámku"
#. JKZFi
-#: cui/uiconfig/ui/comment.ui:292
+#: cui/uiconfig/ui/comment.ui:287
msgctxt "comment|label1"
msgid "Contents"
msgstr "Obsah"
-#. qSQBN
-#: cui/uiconfig/ui/comment.ui:317
-msgctxt "comment|extended_tip|CommentDialog"
-msgid "Enter a comment for the recorded change."
-msgstr "Zadajte komentár pre zaznamenanú zmenu."
-
#. B73bz
#: cui/uiconfig/ui/connectortabpage.ui:62
msgctxt "connectortabpage|FT_TYPE"
msgid "_Type:"
msgstr "_Typ:"
-#. G63AW
-#: cui/uiconfig/ui/connectortabpage.ui:79
-msgctxt "connectortabpage|extended_tip|LB_TYPE"
-msgid "Lists the types of connectors that are available."
-msgstr "Zobrazí zoznam spojníc, ktoré sú dostupné."
-
#. VnKTH
-#: cui/uiconfig/ui/connectortabpage.ui:118
+#: cui/uiconfig/ui/connectortabpage.ui:113
msgctxt "connectortabpage|FT_LINE_1"
msgid "Line _1:"
msgstr "Čiara _1:"
#. VHqZH
-#: cui/uiconfig/ui/connectortabpage.ui:132
+#: cui/uiconfig/ui/connectortabpage.ui:127
msgctxt "connectortabpage|FT_LINE_2"
msgid "Line _2:"
msgstr "Čiara _2:"
#. vx3j2
-#: cui/uiconfig/ui/connectortabpage.ui:146
+#: cui/uiconfig/ui/connectortabpage.ui:141
msgctxt "connectortabpage|FT_LINE_3"
msgid "Line _3:"
msgstr "Čiara _3:"
-#. vUAiW
-#: cui/uiconfig/ui/connectortabpage.ui:165
-msgctxt "connectortabpage|extended_tip|MTR_FLD_LINE_1"
-msgid "Enter a skew value for Line 1."
-msgstr "Zadajte hodnotu skosenia pre čiaru 1."
-
-#. SGov7
-#: cui/uiconfig/ui/connectortabpage.ui:183
-msgctxt "connectortabpage|extended_tip|MTR_FLD_LINE_2"
-msgid "Enter a skew value for Line 2."
-msgstr "Zadajte hodnotu skosenia pre čiaru 2."
-
-#. Cv7eg
-#: cui/uiconfig/ui/connectortabpage.ui:201
-msgctxt "connectortabpage|extended_tip|MTR_FLD_LINE_3"
-msgid "Enter a skew value for Line 3."
-msgstr "Zadajte hodnotu skosenia pre čiaru 3."
-
#. xvCfy
-#: cui/uiconfig/ui/connectortabpage.ui:218
+#: cui/uiconfig/ui/connectortabpage.ui:198
msgctxt "connectortabpage|label2"
msgid "Line Skew"
msgstr "Sklon čiary"
#. hAdsA
-#: cui/uiconfig/ui/connectortabpage.ui:254
+#: cui/uiconfig/ui/connectortabpage.ui:234
msgctxt "connectortabpage|FT_HORZ_1"
msgid "_Begin horizontal:"
msgstr "V_odorovný začiatok:"
#. jENzB
-#: cui/uiconfig/ui/connectortabpage.ui:268
+#: cui/uiconfig/ui/connectortabpage.ui:248
msgctxt "connectortabpage|FT_HORZ_2"
msgid "End _horizontal:"
msgstr "Vodorovný _koniec:"
#. WSBhJ
-#: cui/uiconfig/ui/connectortabpage.ui:282
+#: cui/uiconfig/ui/connectortabpage.ui:262
msgctxt "connectortabpage|FT_VERT_1"
msgid "Begin _vertical:"
msgstr "Z_vislý začiatok:"
#. bGjTC
-#: cui/uiconfig/ui/connectortabpage.ui:296
+#: cui/uiconfig/ui/connectortabpage.ui:276
msgctxt "connectortabpage|FT_VERT_2"
msgid "_End vertical:"
msgstr "Z_vislý koniec:"
-#. md9nD
-#: cui/uiconfig/ui/connectortabpage.ui:315
-msgctxt "connectortabpage|extended_tip|MTR_FLD_HORZ_1"
-msgid "Enter the amount of horizontal space you want at the beginning of the connector."
-msgstr "Zadajte hodnotu, o ktorú sa skosí vodorovný začiatok spojnice."
-
-#. pUTnF
-#: cui/uiconfig/ui/connectortabpage.ui:333
-msgctxt "connectortabpage|extended_tip|MTR_FLD_HORZ_2"
-msgid "Enter the amount of horizontal space you want at the end of the connector."
-msgstr "Zadajte hodnotu, o ktorú sa skosí horizontálny koniec spojnice."
-
-#. 23o9a
-#: cui/uiconfig/ui/connectortabpage.ui:351
-msgctxt "connectortabpage|extended_tip|MTR_FLD_VERT_1"
-msgid "Enter the amount of vertical space you want at the beginning of the connector."
-msgstr "Zadajte hodnotu, o ktorú sa skosí zvislý začiatok spojnice."
-
-#. 22Tvd
-#: cui/uiconfig/ui/connectortabpage.ui:369
-msgctxt "connectortabpage|extended_tip|MTR_FLD_VERT_2"
-msgid "Enter the amount of vertical space you want at the end of the connector."
-msgstr "Zadajte hodnotu, o ktorú sa skosí zvislý koniec spojnice."
-
#. idTk6
-#: cui/uiconfig/ui/connectortabpage.ui:386
+#: cui/uiconfig/ui/connectortabpage.ui:346
msgctxt "connectortabpage|label3"
msgid "Line Spacing"
msgstr "Riadkovanie"
#. 6hSVr
-#: cui/uiconfig/ui/connectortabpage.ui:425
+#: cui/uiconfig/ui/connectortabpage.ui:385
msgctxt "connectortabpage|CTL_PREVIEW|tooltip_text"
msgid "Preview"
msgstr "Náhľad"
#. PSBFq
-#: cui/uiconfig/ui/connectortabpage.ui:430
+#: cui/uiconfig/ui/connectortabpage.ui:390
msgctxt "connectortabpage|CTL_PREVIEW-atkobject"
msgid "Example"
msgstr "Príklad"
-#. 3HZXi
-#: cui/uiconfig/ui/connectortabpage.ui:446
-msgctxt "connectortabpage|extended_tip|ConnectorTabPage"
-msgid "Sets the properties of a connector."
-msgstr "Nastavuje vlastnosti konektora."
-
#. ezicB
#: cui/uiconfig/ui/connpooloptions.ui:57
msgctxt "connpooloptions|connectionpooling"
msgid "Connection pooling enabled"
msgstr "Zdieľanie pripojenia zapnuté"
-#. pPghH
-#: cui/uiconfig/ui/connpooloptions.ui:66
-msgctxt "extended_tip|connectionpooling"
-msgid "Specifies whether the chosen connections are pooled."
-msgstr "Určuje, či sú spojenia zdieľané."
-
#. GHbky
-#: cui/uiconfig/ui/connpooloptions.ui:87
+#: cui/uiconfig/ui/connpooloptions.ui:82
msgctxt "connpooloptions|driverslabel"
msgid "Drivers known in %PRODUCTNAME"
msgstr "Ovládače známe pre %PRODUCTNAME"
#. Yohxk
-#: cui/uiconfig/ui/connpooloptions.ui:106
+#: cui/uiconfig/ui/connpooloptions.ui:101
msgctxt "connpooloptions|driverlabel"
msgid "Current driver:"
msgstr "Aktuálny ovládač:"
#. RGWQy
-#: cui/uiconfig/ui/connpooloptions.ui:136
+#: cui/uiconfig/ui/connpooloptions.ui:131
msgctxt "connpooloptions|enablepooling"
msgid "Enable pooling for this driver"
msgstr "Povoliť zdieľanie pre tento ovládač"
-#. b26rn
-#: cui/uiconfig/ui/connpooloptions.ui:145
-msgctxt "extended_tip|enablepooling"
-msgid "Select a driver from the list and mark the Enable pooling for this driver checkbox in order to pool its connection."
-msgstr "Ak chcete, aby ovládač zdieľal spojenie, vyberte ovládač zo zoznamu a označte pole Povoliť zdieľanie pre tento ovládač."
-
#. uzbLN
-#: cui/uiconfig/ui/connpooloptions.ui:164
+#: cui/uiconfig/ui/connpooloptions.ui:154
msgctxt "connpooloptions|timeoutlabel"
msgid "_Timeout (seconds)"
msgstr "Časový _limit (sekundy)"
-#. CUE56
-#: cui/uiconfig/ui/connpooloptions.ui:185
-msgctxt "extended_tip|timeout"
-msgid "Defines the time in seconds after which a pooled connection is freed."
-msgstr "Nastavte čas v sekundách, po ktorom sa zdieľané spojenie uvoľní."
-
#. gWFKz
-#: cui/uiconfig/ui/connpooloptions.ui:232
+#: cui/uiconfig/ui/connpooloptions.ui:217
msgctxt "connpooloptions|drivername"
msgid "Driver name"
msgstr "Názov ovládača"
#. pQGCs
-#: cui/uiconfig/ui/connpooloptions.ui:245
+#: cui/uiconfig/ui/connpooloptions.ui:230
msgctxt "connpooloptions|pool"
msgid "Pool"
msgstr "Zdieľanie"
#. 7Svws
-#: cui/uiconfig/ui/connpooloptions.ui:258
+#: cui/uiconfig/ui/connpooloptions.ui:243
msgctxt "connpooloptions|timeout"
msgid "Timeout"
msgstr "Časový limit"
#. 9ctBe
-#: cui/uiconfig/ui/connpooloptions.ui:296
+#: cui/uiconfig/ui/connpooloptions.ui:281
msgctxt "connpooloptions|label1"
msgid "Connection Pool"
msgstr "Zdieľanie spojení"
@@ -7770,71 +6652,35 @@ msgid "Properties"
msgstr "Vlastnosti"
#. DcBMH
-#: cui/uiconfig/ui/cuiimapdlg.ui:95
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#. EhUMH
-#: cui/uiconfig/ui/cuiimapdlg.ui:114
-msgctxt "cuiimapdlg|extended_tip|urlentry"
-msgid "Enter the URL for the file that you want to open when you click the selected hotspot."
-msgstr "Zadajte URL adresu súboru, ktorý chcete otvoriť po kliknutí na vybranú aktívnu oblasť."
-
#. FLKr9
-#: cui/uiconfig/ui/cuiimapdlg.ui:142
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "_Rámec:"
-#. 2uSg3
-#: cui/uiconfig/ui/cuiimapdlg.ui:167
-msgctxt "cuiimapdlg|extended_tip|frameCB"
-msgid "Enter the name of the target frame that you want to open the URL in. You can also select a standard frame name that is recognized by all browsers from the list."
-msgstr "Zadajte názov cieľového rámca, v ktorom chcete otvoriť URL adresu. Môžete tiež vybrať štandardný názov rámca, ktorý je rozpoznaný všetkými prehľadávačmi zo zoznamu."
-
#. V8Zgo
-#: cui/uiconfig/ui/cuiimapdlg.ui:195
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Meno:"
-#. GcFws
-#: cui/uiconfig/ui/cuiimapdlg.ui:214
-msgctxt "cuiimapdlg|extended_tip|nameentry"
-msgid "Enter a name for the image."
-msgstr "Zadajte názov obrázka."
-
#. BAXQk
-#: cui/uiconfig/ui/cuiimapdlg.ui:242
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "Alternatívny _text:"
-#. m68ou
-#: cui/uiconfig/ui/cuiimapdlg.ui:261
-msgctxt "cuiimapdlg|extended_tip|textentry"
-msgid "Enter the text that you want to display when the mouse rests on the hotspot in a browser."
-msgstr "Zadajte text, ktorý chcete zobraziť, keď sa myš v prehliadači umiestni na aktívnu oblasť."
-
#. bsgYj
-#: cui/uiconfig/ui/cuiimapdlg.ui:289
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Popis:"
-#. mF6Pw
-#: cui/uiconfig/ui/cuiimapdlg.ui:318
-msgctxt "cuiimapdlg|extended_tip|descTV"
-msgid "Enter a description for the hotspot."
-msgstr "Zadajte popis aktívnej oblasti."
-
-#. 7LsXB
-#: cui/uiconfig/ui/cuiimapdlg.ui:356
-msgctxt "cuiimapdlg|extended_tip|IMapDialog"
-msgid "Lists the properties for the selected hotspot."
-msgstr "Uvádza vlastnosti vybranej aktívnej oblasti."
-
#. 8LR3s
#: cui/uiconfig/ui/customizedialog.ui:8
msgctxt "customizedialog|CustomizeDialog"
@@ -7884,47 +6730,29 @@ msgid "Create Database Link"
msgstr "Pripojiť k databáze"
#. XAYvY
-#: cui/uiconfig/ui/databaselinkdialog.ui:90
+#: cui/uiconfig/ui/databaselinkdialog.ui:93
msgctxt "databaselinkdialog|browse"
msgid "Browse..."
msgstr "Prehliadať..."
-#. YPWDd
-#: cui/uiconfig/ui/databaselinkdialog.ui:97
-msgctxt "extended_tip|browse"
-msgid "Opens a file dialog where you can select the database file."
-msgstr "Otvorí dialógové okno, v ktorom môžete vybrať databázový súbor."
-
#. kvNEy
-#: cui/uiconfig/ui/databaselinkdialog.ui:110
+#: cui/uiconfig/ui/databaselinkdialog.ui:108
msgctxt "databaselinkdialog|label1"
msgid "_Database file:"
msgstr "_Databázový súbor:"
#. X5UnF
-#: cui/uiconfig/ui/databaselinkdialog.ui:156
+#: cui/uiconfig/ui/databaselinkdialog.ui:154
msgctxt "databaselinkdialog|label4"
msgid "Registered _name:"
msgstr "Registrovaný _názov:"
-#. qrTa8
-#: cui/uiconfig/ui/databaselinkdialog.ui:175
-msgctxt "extended_tip|name"
-msgid "Enter a name for the database. %PRODUCTNAME uses this name to access the database."
-msgstr "Zadajte názov databázy. Tento názov využíva %PRODUCTNAME na prístup k databáze."
-
#. FrRyU
-#: cui/uiconfig/ui/databaselinkdialog.ui:194
+#: cui/uiconfig/ui/databaselinkdialog.ui:187
msgctxt "databaselinkdialog|alttitle"
msgid "Edit Database Link"
msgstr "Upraviť pripojenie k databáze"
-#. WtSXQ
-#: cui/uiconfig/ui/databaselinkdialog.ui:220
-msgctxt "extended_tip|DatabaseLinkDialog"
-msgid "Creates or edits an entry in the Databases tab page."
-msgstr "Vytvorí či upraví položku zoznamu na karte Databáza."
-
#. ehaGT
#: cui/uiconfig/ui/dbregisterpage.ui:73
msgctxt "dbregisterpage|type"
@@ -7943,38 +6771,20 @@ msgctxt "dbregisterpage|new"
msgid "_New..."
msgstr "_Nový..."
-#. AFdvd
-#: cui/uiconfig/ui/dbregisterpage.ui:130
-msgctxt "extended_tip|new"
-msgid "Opens the Database Link dialog to create a new entry."
-msgstr "Otvorí dialógové okno Pripojenie k databáze, v ktorom môžete vytvoriť nový záznam."
-
#. zqFjG
-#: cui/uiconfig/ui/dbregisterpage.ui:142
+#: cui/uiconfig/ui/dbregisterpage.ui:137
msgctxt "dbregisterpage|delete"
msgid "_Delete"
msgstr "_Zmazať"
-#. ZqToY
-#: cui/uiconfig/ui/dbregisterpage.ui:149
-msgctxt "extended_tip|delete"
-msgid "Removes the selected entry from the list."
-msgstr "Odstráni vybranú položku zo zoznamu."
-
#. eiE2E
-#: cui/uiconfig/ui/dbregisterpage.ui:161
+#: cui/uiconfig/ui/dbregisterpage.ui:151
msgctxt "dbregisterpage|edit"
msgid "_Edit..."
msgstr "_Upraviť..."
-#. fAwt9
-#: cui/uiconfig/ui/dbregisterpage.ui:168
-msgctxt "extended_tip|edit"
-msgid "Opens the Database Link dialog to edit the selected entry."
-msgstr "Otvorí dialógové okno Pripojenie k databáze, v ktorom môžete upraviť vybraný záznam."
-
#. Q3nF4
-#: cui/uiconfig/ui/dbregisterpage.ui:193
+#: cui/uiconfig/ui/dbregisterpage.ui:178
msgctxt "dbregisterpage|label1"
msgid "Registered Databases"
msgstr "Registrované databázy"
@@ -8021,216 +6831,174 @@ msgctxt "dimensionlinestabpage|TSB_BELOW_REF_EDGE"
msgid "Measure _below object"
msgstr "Merať _pod objektom"
-#. DovuA
-#: cui/uiconfig/ui/dimensionlinestabpage.ui:170
-msgctxt "dimensionlinestabpage|extended_tip|TSB_BELOW_REF_EDGE"
-msgid "Reverses the properties set in the Line area."
-msgstr "Obráti nastavenie zadané v poli Čiara."
-
-#. M2qGu
-#: cui/uiconfig/ui/dimensionlinestabpage.ui:189
-msgctxt "dimensionlinestabpage|extended_tip|MTR_LINE_DIST"
-msgid "Specifies the distance between the dimension line and the baseline (line distance = 0)."
-msgstr "Určí vzdialenosť medzi kótovaciu čiarou a základným riadkom (odstup od čiary = 0)."
-
-#. 6wKTs
-#: cui/uiconfig/ui/dimensionlinestabpage.ui:207
-msgctxt "dimensionlinestabpage|extended_tip|MTR_FLD_HELPLINE_OVERHANG"
-msgid "Specifies the length of the left and right guides starting at the baseline (line distance = 0). Positive values extend the guides above the baseline and negative values extend the guides below the baseline."
-msgstr "Určí jednotne dĺžku pravého a ľavého vodidlá od základnej čiary (odstup od čiary = 0). Kladné hodnoty predĺžia vodítka nad základný riadok a záporné vytvoria odstup vodidiel od základného riadku."
-
-#. AdBKh
-#: cui/uiconfig/ui/dimensionlinestabpage.ui:225
-msgctxt "dimensionlinestabpage|extended_tip|MTR_FLD_HELPLINE_DIST"
-msgid "Specifies the length of the right and left guides starting at the dimension line. Positive values extend the guides above the dimension line and negative values extend the guides below the dimension line."
-msgstr "Určí odstup pravého a ľavého vodidlá začínajúcich od kótovacej čiary ku kótovanému objektu. Kladné hodnoty vytvoria medzeru medzi vodidlom a objektom, záporné hodnoty vytvoria prieťah kótovacích čar."
-
-#. hFGhD
-#: cui/uiconfig/ui/dimensionlinestabpage.ui:243
-msgctxt "dimensionlinestabpage|extended_tip|MTR_FLD_HELPLINE1_LEN"
-msgid "Specifies the length of the left guide starting at the dimension line. Positive values extend the guide below the dimension line and negative values extend the guide above the dimension line."
-msgstr "Určí dĺžku ľavého vodidla, ktoré začína od kótovacej čiary. Kladné hodnoty predĺži vodidlo smerom ku kótovanému objektu a záporné udávajú odstup od kótovaného objektu."
-
-#. 3bQD4
-#: cui/uiconfig/ui/dimensionlinestabpage.ui:261
-msgctxt "dimensionlinestabpage|extended_tip|MTR_FLD_HELPLINE2_LEN"
-msgid "Specifies the length of the right guide starting at the dimension line. Positive values extend the guide below the dimension line and negative values extend the guide above the dimension line."
-msgstr "Určí dĺžku pravého vodidlá, ktoré začína od kótovacej čiary. Kladné hodnoty predĺžia vodidlo smerom ku kótovanému objektu a záporné udávajú odstup od kótovaného objektu."
-
-#. BKJDe
-#: cui/uiconfig/ui/dimensionlinestabpage.ui:278
-msgctxt "dimensionlinestabpage|extended_tip|MTR_FLD_DECIMALPLACES"
-msgid "Specifies the number of decimal places used for the display of line properties."
-msgstr "Určí počet desatinných miest použitých na zobrazenie vlastností čiary."
-
#. uruYG
-#: cui/uiconfig/ui/dimensionlinestabpage.ui:295
+#: cui/uiconfig/ui/dimensionlinestabpage.ui:260
msgctxt "dimensionlinestabpage|label1"
msgid "Line"
msgstr "Čiara"
#. E3CgJ
-#: cui/uiconfig/ui/dimensionlinestabpage.ui:331
+#: cui/uiconfig/ui/dimensionlinestabpage.ui:296
msgctxt "dimensionlinestabpage|FT_POSITION"
msgid "_Text position"
msgstr "Umiestnenie _textu"
-#. EBYZf
-#: cui/uiconfig/ui/dimensionlinestabpage.ui:374
-msgctxt "dimensionlinestabpage|extended_tip|CTL_POSITION"
-msgid "Determines the position of the dimension text with respect to the dimension line and the guides."
-msgstr "Určí pozíciu kótovacieho textu vzhľadom na kótovaciu čiaru a vodidlá."
-
#. t8Ewg
-#: cui/uiconfig/ui/dimensionlinestabpage.ui:390
+#: cui/uiconfig/ui/dimensionlinestabpage.ui:350
msgctxt "dimensionlinestabpage|TSB_AUTOPOSV"
msgid "_AutoVertical"
msgstr "_Automaticky zvisle"
-#. mFwVB
-#: cui/uiconfig/ui/dimensionlinestabpage.ui:400
-msgctxt "dimensionlinestabpage|extended_tip|TSB_AUTOPOSV"
-msgid "Determines the optimal vertical position for the dimension text."
-msgstr "Určí optimálnu vertikálnu vzdialenosť pre kótovací text."
-
#. KykMq
-#: cui/uiconfig/ui/dimensionlinestabpage.ui:412
+#: cui/uiconfig/ui/dimensionlinestabpage.ui:367
msgctxt "dimensionlinestabpage|TSB_AUTOPOSH"
msgid "A_utoHorizontal"
msgstr "A_utomaticky vodorovne"
-#. jepxb
-#: cui/uiconfig/ui/dimensionlinestabpage.ui:422
-msgctxt "dimensionlinestabpage|extended_tip|TSB_AUTOPOSH"
-msgid "Determines the optimal horizontal position for the dimension text."
-msgstr "Určí optimálnu horizontálnu pozíciu pre kótovací text."
-
#. yQtE3
-#: cui/uiconfig/ui/dimensionlinestabpage.ui:443
+#: cui/uiconfig/ui/dimensionlinestabpage.ui:393
msgctxt "dimensionlinestabpage|TSB_PARALLEL"
msgid "_Parallel to line"
msgstr "_Rovnobežne s čiarou"
-#. gZdFr
-#: cui/uiconfig/ui/dimensionlinestabpage.ui:453
-msgctxt "dimensionlinestabpage|extended_tip|TSB_PARALLEL"
-msgid "Displays the text parallel to or at 90 degrees to the dimension line."
-msgstr "Zobrazí text rovnobežne alebo v pravom uhle vzhľadom ku kótovacej čiare."
-
#. QNscD
-#: cui/uiconfig/ui/dimensionlinestabpage.ui:465
+#: cui/uiconfig/ui/dimensionlinestabpage.ui:410
msgctxt "dimensionlinestabpage|TSB_SHOW_UNIT"
msgid "Show _measurement units"
msgstr "_Zobraziť merné jednotky"
-#. cJRA9
-#: cui/uiconfig/ui/dimensionlinestabpage.ui:475
-msgctxt "dimensionlinestabpage|extended_tip|TSB_SHOW_UNIT"
-msgid "Shows or hides the dimension measurement units. You can also select a measurement unit you want to display from the list."
-msgstr "Zobrazí alebo skryje merné jednotky kótovania. Výber jednotky môžete uskutočniť aj prostredníctvom zoznamu."
-
-#. EEaqi
-#: cui/uiconfig/ui/dimensionlinestabpage.ui:493
-msgctxt "dimensionlinestabpage|extended_tip|LB_UNIT"
-msgid "Shows or hides the dimension measurement units. You can also select a measurement unit you want to display from the list."
-msgstr "Zobrazí alebo skryje merné jednotky kótovania. Výber jednotky môžete uskutočniť aj prostredníctvom zoznamu."
-
#. gX83d
-#: cui/uiconfig/ui/dimensionlinestabpage.ui:511
+#: cui/uiconfig/ui/dimensionlinestabpage.ui:446
msgctxt "dimensionlinestabpage|label2"
msgid "Legend"
msgstr "Legenda"
#. TmRKU
-#: cui/uiconfig/ui/dimensionlinestabpage.ui:535
+#: cui/uiconfig/ui/dimensionlinestabpage.ui:470
msgctxt "dimensionlinestabpage|STR_MEASURE_AUTOMATIC"
msgid "Automatic"
msgstr "Automatický"
+#. o3vUV
+#: cui/uiconfig/ui/distributiondialog.ui:8
+msgctxt "distributiondialog|DistributionDialog"
+msgid "Distribution"
+msgstr "Rozloženie"
+
+#. wG8jp
+#: cui/uiconfig/ui/distributionpage.ui:36
+msgctxt "distributionpage|hornone"
+msgid "_None"
+msgstr "_Nič"
+
+#. pB5Ai
+#: cui/uiconfig/ui/distributionpage.ui:52
+msgctxt "distributionpage|horleft"
+msgid "_Left"
+msgstr ""
+
+#. pBR9z
+#: cui/uiconfig/ui/distributionpage.ui:68
+msgctxt "distributionpage|horcenter"
+msgid "_Center"
+msgstr ""
+
+#. 6zCGK
+#: cui/uiconfig/ui/distributionpage.ui:84
+msgctxt "distributionpage|horright"
+msgid "_Right"
+msgstr ""
+
+#. b9pAA
+#: cui/uiconfig/ui/distributionpage.ui:126
+msgctxt "distributionpage|hordistance"
+msgid "_Spacing"
+msgstr "Rozo_stupy"
+
+#. 674zH
+#: cui/uiconfig/ui/distributionpage.ui:177
+msgctxt "distributionpage|label"
+msgid "Horizontal"
+msgstr "Vodorovné"
+
+#. x6Mf8
+#: cui/uiconfig/ui/distributionpage.ui:210
+msgctxt "distributionpage|vernone"
+msgid "N_one"
+msgstr ""
+
+#. AqXxA
+#: cui/uiconfig/ui/distributionpage.ui:225
+msgctxt "distributionpage|vertop"
+msgid "_Top"
+msgstr "_Hore"
+
+#. CEBVG
+#: cui/uiconfig/ui/distributionpage.ui:241
+msgctxt "distributionpage|vercenter"
+msgid "C_enter"
+msgstr ""
+
+#. WrxKw
+#: cui/uiconfig/ui/distributionpage.ui:258
+msgctxt "distributionpage|verdistance"
+msgid "S_pacing"
+msgstr "Rozostu_py"
+
+#. FPUuF
+#: cui/uiconfig/ui/distributionpage.ui:274
+msgctxt "distributionpage|verbottom"
+msgid "_Bottom"
+msgstr "_Dole"
+
+#. 74ACK
+#: cui/uiconfig/ui/distributionpage.ui:351
+msgctxt "distributionpage|label1"
+msgid "Vertical"
+msgstr "Zvislé"
+
#. KxUJj
#: cui/uiconfig/ui/editdictionarydialog.ui:26
msgctxt "editdictionarydialog|EditDictionaryDialog"
msgid "Edit Custom Dictionary"
msgstr "Upraviť vlastný slovník"
-#. JCLFA
-#: cui/uiconfig/ui/editdictionarydialog.ui:93
-msgctxt "book"
-msgid "Specifies the book to be edited."
-msgstr "Určuje knihu, ktorá sa má upravovať."
-
-#. trTxg
-#: cui/uiconfig/ui/editdictionarydialog.ui:108
-msgctxt "lang"
-msgid "Assigns a new language to the current custom dictionary."
-msgstr "Priradí nový jazyk k aktuálnemu vlastnému slovníku."
-
#. PV8x9
-#: cui/uiconfig/ui/editdictionarydialog.ui:121
+#: cui/uiconfig/ui/editdictionarydialog.ui:114
msgctxt "editdictionarydialog|book_label"
msgid "_Book:"
msgstr "_Kniha:"
#. HAsZg
-#: cui/uiconfig/ui/editdictionarydialog.ui:135
+#: cui/uiconfig/ui/editdictionarydialog.ui:128
msgctxt "editdictionarydialog|lang_label"
msgid "_Language:"
msgstr "_Jazyk:"
-#. mE3Lo
-#: cui/uiconfig/ui/editdictionarydialog.ui:180
-msgctxt "replace"
-msgid "This input field is only available if you are editing an exception dictionary or a language-dependent custom dictionary. In exception dictionaries, the field shows the alternative suggestion for the current word in the \"Word\" text box. In language-dependent custom dictionaries, the field contains a known root word, as a model of affixation of the new word or its usage in compound words. For example, in a German custom dictionary, the new word “Litschi” (lychee) with the model word “Gummi” (gum) will result recognition of “Litschis” (lychees), “Litschibaum” (lychee tree), “Litschifrucht” (lychee fruit) etc."
-msgstr "Toto vstupné pole je k dispozícii iba ak upravujete slovník výnimiek alebo vlastný slovník závislý od jazyka. V slovníkoch výnimiek pole zobrazuje alternatívny návrh pre aktuálne slovo v textovom poli „Slovo“. V jazykovo závislých vlastných slovníkoch pole obsahuje známe koreňové slovo ako model jeho použitia v zložených slovách. Napríklad v nemeckom vlastnom slovníku nové slovo „Litschi“ (liči) s modelovým slovom „Gummi“ (guma) bude mať za následok uznanie výrazov „Litschis“ (liči), „Litschibaum“ (liči), „Litschifrucht“. (liči ovocie) atď."
-
-#. 5EwBs
-#: cui/uiconfig/ui/editdictionarydialog.ui:197
-msgctxt "word"
-msgid "You can type a new word for inclusion in the dictionary. In the list below you will see the contents of the current custom dictionary."
-msgstr "Môžete zadať nové slovo, ktoré sa má zahrnúť do slovníka. V nasledujúcom zozname uvidíte obsah aktuálneho vlastného slovníka."
-
#. WWwmQ
-#: cui/uiconfig/ui/editdictionarydialog.ui:210
+#: cui/uiconfig/ui/editdictionarydialog.ui:193
msgctxt "editdictionarydialog|word_label"
msgid "_Word"
msgstr "_Slovo"
#. okMAh
-#: cui/uiconfig/ui/editdictionarydialog.ui:224
+#: cui/uiconfig/ui/editdictionarydialog.ui:207
msgctxt "editdictionarydialog|replace_label"
msgid "_Replace By"
msgstr "Nah_radiť"
#. D7JJT
-#: cui/uiconfig/ui/editdictionarydialog.ui:353
+#: cui/uiconfig/ui/editdictionarydialog.ui:336
msgctxt "editdictionarydialog|newreplace"
msgid "_New"
msgstr "_Nový"
-#. CP9Qq
-#: cui/uiconfig/ui/editdictionarydialog.ui:360
-msgctxt "newreplace"
-msgid "Adds the word in the Word text field to your current custom dictionary. The word in the Suggestion field is also added when working with exception dictionaries."
-msgstr "Pridá slovo v textovom poli Slovo do aktuálneho vlastného slovníka. Slovo v poli Návrh sa pridá aj pri práci so slovníkmi výnimiek."
-
#. K2Sst
-#: cui/uiconfig/ui/editdictionarydialog.ui:372
+#: cui/uiconfig/ui/editdictionarydialog.ui:350
msgctxt "editdictionarydialog|delete"
msgid "_Delete"
msgstr "_Zmazať"
-#. VzuAW
-#: cui/uiconfig/ui/editdictionarydialog.ui:379
-msgctxt "delete"
-msgid "Removes the marked word from the current custom dictionary."
-msgstr "Odstráni označené slovo z aktuálneho vlastného slovníka."
-
-#. 35DN3
-#: cui/uiconfig/ui/editdictionarydialog.ui:414
-msgctxt "EditDictionaryDialog"
-msgid "In the Edit Custom Dictionary dialog you have the option to enter new terms or edit existing entries."
-msgstr "V dialógovom okne Upraviť vlastný slovník máte možnosť zadávať nové termíny alebo upravovať existujúce položky."
-
#. XEUyG
#: cui/uiconfig/ui/editmodulesdialog.ui:34
msgctxt "editmodulesdialog|EditModulesDialog"
@@ -8238,67 +7006,37 @@ msgid "Edit Modules"
msgstr "Upraviť moduly"
#. hcGaw
-#: cui/uiconfig/ui/editmodulesdialog.ui:112
+#: cui/uiconfig/ui/editmodulesdialog.ui:115
msgctxt "editmodulesdialog|moredictslink"
msgid "Get more dictionaries online..."
msgstr "~Získať viac slovníkov online..."
#. ibDJj
-#: cui/uiconfig/ui/editmodulesdialog.ui:134
+#: cui/uiconfig/ui/editmodulesdialog.ui:137
msgctxt "editmodulesdialog|label2"
msgid "Language:"
-msgstr "Jazyk:"
-
-#. T7wyy
-#: cui/uiconfig/ui/editmodulesdialog.ui:166
-msgctxt "language"
-msgid "Specifies the language of the module."
-msgstr "Určuje jazyk modulu."
+msgstr "Language:"
#. 9zC9B
-#: cui/uiconfig/ui/editmodulesdialog.ui:198
+#: cui/uiconfig/ui/editmodulesdialog.ui:196
msgctxt "editmodulesdialog|up"
msgid "Move Up"
msgstr "Presunúť nahor"
-#. Da5kZ
-#: cui/uiconfig/ui/editmodulesdialog.ui:205
-msgctxt "up"
-msgid "Increases the priority of the module selected in the list box by one level."
-msgstr "Zvýši prioritu modulu vybraného v zozname o jednu úroveň."
-
#. aGo9M
-#: cui/uiconfig/ui/editmodulesdialog.ui:217
+#: cui/uiconfig/ui/editmodulesdialog.ui:210
msgctxt "editmodulesdialog|down"
msgid "Move Down"
msgstr "Presunúť nadol"
-#. ZEvov
-#: cui/uiconfig/ui/editmodulesdialog.ui:224
-msgctxt "down"
-msgid "Decreases the priority of the module selected in the list box by one level."
-msgstr "Zníži prioritu modulu vybraného v zozname o jednu úroveň."
-
#. Vr5kM
-#: cui/uiconfig/ui/editmodulesdialog.ui:236
+#: cui/uiconfig/ui/editmodulesdialog.ui:224
msgctxt "editmodulesdialog|back"
msgid "_Back"
msgstr "_Späť"
-#. FuJDd
-#: cui/uiconfig/ui/editmodulesdialog.ui:243
-msgctxt "back"
-msgid "Click here to undo the current changes in the list box."
-msgstr "Kliknutím zrušíte aktuálne zmeny v zozname."
-
-#. 4d4Pc
-#: cui/uiconfig/ui/editmodulesdialog.ui:309
-msgctxt "lingudicts"
-msgid "Specifies the language and the available spelling, hyphenation and Thesaurus sub-modules for the selected module."
-msgstr "Určuje jazyk a dostupné podmoduly pravopisu, delenia slov a tezauru pre vybraný modul."
-
#. ZF8AG
-#: cui/uiconfig/ui/editmodulesdialog.ui:334
+#: cui/uiconfig/ui/editmodulesdialog.ui:312
msgctxt "editmodulesdialog|label1"
msgid "Options"
msgstr "Možnosti"
@@ -8351,384 +7089,294 @@ msgctxt "effectspage|liststore1"
msgid "Small capitals"
msgstr "Kapitálky"
-#. 4quGL
-#: cui/uiconfig/ui/effectspage.ui:120
-msgctxt "effectspage|extended_tip|effectslb"
-msgid "Select the font effects that you want to apply."
-msgstr "Vyberte efekty písma, ktoré chcete použiť."
-
#. GJExJ
-#: cui/uiconfig/ui/effectspage.ui:134
+#: cui/uiconfig/ui/effectspage.ui:129
msgctxt "effectspage|liststore2"
msgid "(Without)"
msgstr "(bez)"
#. 2zc6A
-#: cui/uiconfig/ui/effectspage.ui:135
+#: cui/uiconfig/ui/effectspage.ui:130
msgctxt "effectspage|liststore2"
msgid "Embossed"
msgstr "Reliéf"
#. Vq3YD
-#: cui/uiconfig/ui/effectspage.ui:136
+#: cui/uiconfig/ui/effectspage.ui:131
msgctxt "effectspage|liststore2"
msgid "Engraved"
msgstr "Rytina"
-#. D49UU
-#: cui/uiconfig/ui/effectspage.ui:140
-msgctxt "effectspage|extended_tip|relieflb"
-msgid "Select a relief effect to apply to the selected text. The embossed relief makes the characters appear as if they are raised above the page. The engraved relief makes the characters appear as if they are pressed into the page."
-msgstr "Vyberte efekt reliéfu, ktorý sa má použiť na vybraný text. Vďaka vystupujúcemu reliéfu sa znaky zobrazia, akoby boli zdvihnuté nad stránku. Vďaka vygravírovanému reliéfu sa znaky zobrazia, akoby boli vtlačené do stránky."
-
#. G8SPK
-#: cui/uiconfig/ui/effectspage.ui:154
+#: cui/uiconfig/ui/effectspage.ui:144
msgctxt "effectspage|liststore3"
msgid "(Without)"
msgstr "(bez)"
#. V3aSU
-#: cui/uiconfig/ui/effectspage.ui:155
+#: cui/uiconfig/ui/effectspage.ui:145
msgctxt "effectspage|liststore3"
msgid "Dot"
msgstr "Bodka"
#. sek6h
-#: cui/uiconfig/ui/effectspage.ui:156
+#: cui/uiconfig/ui/effectspage.ui:146
msgctxt "effectspage|liststore3"
msgid "Circle"
msgstr "Kruh"
#. rbdan
-#: cui/uiconfig/ui/effectspage.ui:157
+#: cui/uiconfig/ui/effectspage.ui:147
msgctxt "effectspage|liststore3"
msgid "Disc"
msgstr "Disk"
#. CCKAv
-#: cui/uiconfig/ui/effectspage.ui:158
+#: cui/uiconfig/ui/effectspage.ui:148
msgctxt "effectspage|liststore3"
msgid "Accent"
msgstr "Dôraz"
-#. VSsqz
-#: cui/uiconfig/ui/effectspage.ui:162
-msgctxt "effectspage|extended_tip|emphasislb"
-msgid "Select a character to display over or below the entire length of the selected text."
-msgstr "Vyberte znak, ktorý sa má zobraziť nad alebo pod celou dĺžkou vybraného textu."
-
#. Z6WHC
-#: cui/uiconfig/ui/effectspage.ui:176
+#: cui/uiconfig/ui/effectspage.ui:161
msgctxt "effectspage|liststore4"
msgid "Above text"
msgstr "Nad textom"
#. 4dQqG
-#: cui/uiconfig/ui/effectspage.ui:177
+#: cui/uiconfig/ui/effectspage.ui:162
msgctxt "effectspage|liststore4"
msgid "Below text"
msgstr "Pod textom"
-#. HPUf8
-#: cui/uiconfig/ui/effectspage.ui:181
-msgctxt "effectspage|extended_tip|positionlb"
-msgid "Specify where to display the emphasis marks."
-msgstr "Zadajte, kde sa majú zobraziť značky zvýraznenia."
-
#. D848F
-#: cui/uiconfig/ui/effectspage.ui:194
+#: cui/uiconfig/ui/effectspage.ui:174
msgctxt "effectspage|positionft"
msgid "Position:"
msgstr "Poloha:"
#. QBQPF
-#: cui/uiconfig/ui/effectspage.ui:208
+#: cui/uiconfig/ui/effectspage.ui:188
msgctxt "effectspage|emphasisft"
msgid "Emphasis mark:"
msgstr "Značka zvýraznenia:"
#. 5pMfK
-#: cui/uiconfig/ui/effectspage.ui:220
+#: cui/uiconfig/ui/effectspage.ui:200
msgctxt "effectspage|outlinecb"
msgid "Outline"
msgstr "Obrys"
-#. fXVDq
-#: cui/uiconfig/ui/effectspage.ui:230
-msgctxt "effectspage|extended_tip|outlinecb"
-msgid "Displays the outline of the selected characters. This effect does not work with every font."
-msgstr "Zobrazí obrys vybraných znakov. Tento efekt nefunguje pri každom písme."
-
#. umH7r
-#: cui/uiconfig/ui/effectspage.ui:241
+#: cui/uiconfig/ui/effectspage.ui:216
msgctxt "effectspage|shadowcb"
msgid "Shadow"
msgstr "Tieň"
-#. 8tyio
-#: cui/uiconfig/ui/effectspage.ui:251
-msgctxt "effectspage|extended_tip|shadowcb"
-msgid "Adds a shadow that casts below and to the right of the selected characters."
-msgstr "Pridá tieň vrhaný smerom dole a napravo od vybraných znakov."
-
#. KraW7
-#: cui/uiconfig/ui/effectspage.ui:262
+#: cui/uiconfig/ui/effectspage.ui:232
msgctxt "effectspage|hiddencb"
msgid "Hidden"
msgstr "Skrytý"
-#. wFPA3
-#: cui/uiconfig/ui/effectspage.ui:272
-msgctxt "effectspage|extended_tip|hiddencb"
-msgid "Hides the selected characters."
-msgstr "Skryje vybrané znaky."
-
#. GZX6U
-#: cui/uiconfig/ui/effectspage.ui:304
+#: cui/uiconfig/ui/effectspage.ui:269
msgctxt "effectspage|effectsft2"
msgid "Effects"
msgstr "Efekty"
#. BD3Ka
-#: cui/uiconfig/ui/effectspage.ui:341
+#: cui/uiconfig/ui/effectspage.ui:306
msgctxt "effectspage|label46"
msgid "Overlining:"
msgstr "Nadčiarknutie:"
#. WtjES
-#: cui/uiconfig/ui/effectspage.ui:355
+#: cui/uiconfig/ui/effectspage.ui:320
msgctxt "effectspage|label47"
msgid "Strikethrough:"
msgstr "Preškrtnutie:"
#. tCP45
-#: cui/uiconfig/ui/effectspage.ui:369
+#: cui/uiconfig/ui/effectspage.ui:334
msgctxt "effectspage|label48"
msgid "Underlining:"
msgstr "Podčiarknutie:"
#. EGta9
-#: cui/uiconfig/ui/effectspage.ui:384 cui/uiconfig/ui/effectspage.ui:418
+#: cui/uiconfig/ui/effectspage.ui:349 cui/uiconfig/ui/effectspage.ui:378
msgctxt "effectspage|liststore6"
msgid "(Without)"
msgstr "(bez)"
#. wvpKK
-#: cui/uiconfig/ui/effectspage.ui:385 cui/uiconfig/ui/effectspage.ui:419
+#: cui/uiconfig/ui/effectspage.ui:350 cui/uiconfig/ui/effectspage.ui:379
msgctxt "effectspage|liststore6"
msgid "Single"
msgstr "Jediné"
#. dCubb
-#: cui/uiconfig/ui/effectspage.ui:386 cui/uiconfig/ui/effectspage.ui:420
+#: cui/uiconfig/ui/effectspage.ui:351 cui/uiconfig/ui/effectspage.ui:380
msgctxt "effectspage|liststore6"
msgid "Double"
msgstr "Dvojité"
#. JFKfG
-#: cui/uiconfig/ui/effectspage.ui:387 cui/uiconfig/ui/effectspage.ui:421
+#: cui/uiconfig/ui/effectspage.ui:352 cui/uiconfig/ui/effectspage.ui:381
msgctxt "effectspage|liststore6"
msgid "Bold"
msgstr "Tučné"
#. m7Jwh
-#: cui/uiconfig/ui/effectspage.ui:388 cui/uiconfig/ui/effectspage.ui:422
+#: cui/uiconfig/ui/effectspage.ui:353 cui/uiconfig/ui/effectspage.ui:382
msgctxt "effectspage|liststore6"
msgid "Dotted"
msgstr "Bodkované"
#. iC5t6
-#: cui/uiconfig/ui/effectspage.ui:389 cui/uiconfig/ui/effectspage.ui:423
+#: cui/uiconfig/ui/effectspage.ui:354 cui/uiconfig/ui/effectspage.ui:383
msgctxt "effectspage|liststore6"
msgid "Dotted (Bold)"
msgstr "Bodkovaná (tučná)"
#. uGcdw
-#: cui/uiconfig/ui/effectspage.ui:390 cui/uiconfig/ui/effectspage.ui:424
+#: cui/uiconfig/ui/effectspage.ui:355 cui/uiconfig/ui/effectspage.ui:384
msgctxt "effectspage|liststore6"
msgid "Dash"
msgstr "Pomlčka"
#. BLRCY
-#: cui/uiconfig/ui/effectspage.ui:391 cui/uiconfig/ui/effectspage.ui:425
+#: cui/uiconfig/ui/effectspage.ui:356 cui/uiconfig/ui/effectspage.ui:385
msgctxt "effectspage|liststore6"
msgid "Dash (Bold)"
msgstr "Čiarka (tučné)"
#. FCcKo
-#: cui/uiconfig/ui/effectspage.ui:392 cui/uiconfig/ui/effectspage.ui:426
+#: cui/uiconfig/ui/effectspage.ui:357 cui/uiconfig/ui/effectspage.ui:386
msgctxt "effectspage|liststore6"
msgid "Long Dash"
msgstr "Dlhá čiarka"
#. 7UBEL
-#: cui/uiconfig/ui/effectspage.ui:393 cui/uiconfig/ui/effectspage.ui:427
+#: cui/uiconfig/ui/effectspage.ui:358 cui/uiconfig/ui/effectspage.ui:387
msgctxt "effectspage|liststore6"
msgid "Long Dash (Bold)"
msgstr "Dlhá čiarka (tučne)"
#. a58XD
-#: cui/uiconfig/ui/effectspage.ui:394 cui/uiconfig/ui/effectspage.ui:428
+#: cui/uiconfig/ui/effectspage.ui:359 cui/uiconfig/ui/effectspage.ui:388
msgctxt "effectspage|liststore6"
msgid "Dot Dash"
msgstr "Bodka čiarka"
#. MhBD8
-#: cui/uiconfig/ui/effectspage.ui:395 cui/uiconfig/ui/effectspage.ui:429
+#: cui/uiconfig/ui/effectspage.ui:360 cui/uiconfig/ui/effectspage.ui:389
msgctxt "effectspage|liststore6"
msgid "Dot Dash (Bold)"
msgstr "Bodka čiarka (tučné)"
#. AcyEi
-#: cui/uiconfig/ui/effectspage.ui:396 cui/uiconfig/ui/effectspage.ui:430
+#: cui/uiconfig/ui/effectspage.ui:361 cui/uiconfig/ui/effectspage.ui:390
msgctxt "effectspage|liststore6"
msgid "Dot Dot Dash"
msgstr "Bodka bodka čiarka"
#. BRq6u
-#: cui/uiconfig/ui/effectspage.ui:397 cui/uiconfig/ui/effectspage.ui:431
+#: cui/uiconfig/ui/effectspage.ui:362 cui/uiconfig/ui/effectspage.ui:391
msgctxt "effectspage|liststore6"
msgid "Dot Dot Dash (Bold)"
msgstr "Bodka bodka čiarka (tučné)"
#. kEEBv
-#: cui/uiconfig/ui/effectspage.ui:398 cui/uiconfig/ui/effectspage.ui:432
+#: cui/uiconfig/ui/effectspage.ui:363 cui/uiconfig/ui/effectspage.ui:392
msgctxt "effectspage|liststore6"
msgid "Wave"
msgstr "Vlnka"
#. XDicz
-#: cui/uiconfig/ui/effectspage.ui:399 cui/uiconfig/ui/effectspage.ui:433
+#: cui/uiconfig/ui/effectspage.ui:364 cui/uiconfig/ui/effectspage.ui:393
msgctxt "effectspage|liststore6"
msgid "Wave (Bold)"
msgstr "Vlnka (hrubo)"
#. ZxdxD
-#: cui/uiconfig/ui/effectspage.ui:400 cui/uiconfig/ui/effectspage.ui:434
+#: cui/uiconfig/ui/effectspage.ui:365 cui/uiconfig/ui/effectspage.ui:394
msgctxt "effectspage|liststore6"
msgid "Double Wave"
msgstr "Dvojitá vlna"
-#. i6Qpd
-#: cui/uiconfig/ui/effectspage.ui:404
-msgctxt "effectspage|extended_tip|overlinelb"
-msgid "Select the overlining style that you want to apply. To apply the overlining to words only, select the Individual Words box."
-msgstr "Vyberte štýl nadčiarknutia, ktorý chcete použiť. Ak chcete použiť nadčiarknutie iba na slová, zaškrtnite pole Jednotlivé slová."
-
-#. jbrhD
-#: cui/uiconfig/ui/effectspage.ui:438
-msgctxt "effectspage|extended_tip|underlinelb"
-msgid "Select the underlining style that you want to apply. To apply the underlining to words only, select the Individual Words box."
-msgstr "Vyberte štýl podčiarknutia, ktorý chcete použiť. Ak chcete použiť podčiarknutie iba na slová, zaškrtnite pole Jednotlivé slová."
-
#. FgNij
-#: cui/uiconfig/ui/effectspage.ui:452
+#: cui/uiconfig/ui/effectspage.ui:407
msgctxt "effectspage|liststore5"
msgid "(Without)"
msgstr "(bez)"
#. Q4YtH
-#: cui/uiconfig/ui/effectspage.ui:453
+#: cui/uiconfig/ui/effectspage.ui:408
msgctxt "effectspage|liststore5"
msgid "Single"
msgstr "Jediné"
#. 9ndBZ
-#: cui/uiconfig/ui/effectspage.ui:454
+#: cui/uiconfig/ui/effectspage.ui:409
msgctxt "effectspage|liststore5"
msgid "Double"
msgstr "Dvojité"
#. p5Q9A
-#: cui/uiconfig/ui/effectspage.ui:455
+#: cui/uiconfig/ui/effectspage.ui:410
msgctxt "effectspage|liststore5"
msgid "Bold"
msgstr "Tučné"
#. bcZBk
-#: cui/uiconfig/ui/effectspage.ui:456
+#: cui/uiconfig/ui/effectspage.ui:411
msgctxt "effectspage|liststore5"
msgid "With /"
msgstr "Pomocou znaku /"
#. GJKbv
-#: cui/uiconfig/ui/effectspage.ui:457
+#: cui/uiconfig/ui/effectspage.ui:412
msgctxt "effectspage|liststore5"
msgid "With X"
msgstr "Pomocou znaku X"
-#. Pmdav
-#: cui/uiconfig/ui/effectspage.ui:461
-msgctxt "effectspage|extended_tip|strikeoutlb"
-msgid "Select a strikethrough style for the selected text."
-msgstr "Vyberte prečiarknutý štýl pre vybraný text."
-
-#. qtErr
-#: cui/uiconfig/ui/effectspage.ui:483
-msgctxt "effectspage|extended_tip|underlinecolorlb"
-msgid "Select the color for the underlining."
-msgstr "Vyberte farbu podčiarknutia."
-
-#. vuxpt
-#: cui/uiconfig/ui/effectspage.ui:505
-msgctxt "effectspage|extended_tip|overlinecolorlb"
-msgid "Select the color for the overlining."
-msgstr "Vyberte farbu nadčiarknutia."
-
#. VYaEr
-#: cui/uiconfig/ui/effectspage.ui:516
+#: cui/uiconfig/ui/effectspage.ui:454
msgctxt "effectspage|individualwordscb"
msgid "Individual words"
msgstr "Jednotlivé slová"
-#. AP5Gy
-#: cui/uiconfig/ui/effectspage.ui:525
-msgctxt "effectspage|extended_tip|individualwordscb"
-msgid "Applies the selected effect only to words and ignores spaces."
-msgstr "Aplikuje vybraný efekt iba na slová a ignoruje medzery."
-
#. oFKJN
-#: cui/uiconfig/ui/effectspage.ui:571
+#: cui/uiconfig/ui/effectspage.ui:504
msgctxt "effectspage|textdecoration"
msgid "Text Decoration"
msgstr "Dekorácie textu"
#. omW2n
-#: cui/uiconfig/ui/effectspage.ui:607
+#: cui/uiconfig/ui/effectspage.ui:540
msgctxt "effectspage|fontcolorft"
msgid "Font color:"
msgstr "Farba písma:"
-#. ttwFt
-#: cui/uiconfig/ui/effectspage.ui:630
-msgctxt "effectspage|extended_tip|fontcolorlb"
-msgid "Sets the color for the selected text. If you select Automatic, the text color is set to black for light backgrounds and to white for dark backgrounds."
-msgstr "Nastaví farbu pre vybraný text. Ak vyberiete možnosť Automaticky, farba textu sa nastaví na čiernu pre svetlé pozadie a na bielu pre tmavé pozadie."
-
#. aAbzm
-#: cui/uiconfig/ui/effectspage.ui:642
+#: cui/uiconfig/ui/effectspage.ui:569
msgctxt "effectspage|a11ywarning"
msgid "Accessibility option \"Use automatic font color for screen display\" is active. Font color attributes are not currently used to display text."
msgstr "Je aktívna možnosť sprístupnenia \"Pre zobrazenie na obrazovke použiť automatickú farbu písma\". Farba písma preto nebude pri zobrazení textu použitá."
#. AZF8Q
-#: cui/uiconfig/ui/effectspage.ui:656
+#: cui/uiconfig/ui/effectspage.ui:583
msgctxt "effectspage|fonttransparencyft"
msgid "_Transparency:"
msgstr "Priehľadno_sť:"
#. vELSr
-#: cui/uiconfig/ui/effectspage.ui:689
+#: cui/uiconfig/ui/effectspage.ui:616
msgctxt "effectspage|fontcolorft3"
msgid "Font Color"
msgstr "Farba písma"
-#. TzsRB
-#: cui/uiconfig/ui/effectspage.ui:705
-msgctxt "effectspage|extended_tip|EffectsPage"
-msgid "Specify the font effects that you want to use."
-msgstr "Zadajte efekty písma, ktoré chcete použiť."
-
#. GypUU
#: cui/uiconfig/ui/embossdialog.ui:8
msgctxt "embossdialog|EmbossDialog"
@@ -8736,23 +7384,17 @@ msgid "Emboss"
msgstr "Reliéf"
#. uAQBB
-#: cui/uiconfig/ui/embossdialog.ui:138
+#: cui/uiconfig/ui/embossdialog.ui:141
msgctxt "embossdialog|label2"
msgid "_Light source:"
msgstr "Svete_lný zdroj:"
#. GPyhz
-#: cui/uiconfig/ui/embossdialog.ui:192
+#: cui/uiconfig/ui/embossdialog.ui:195
msgctxt "embossdialog|label1"
msgid "Parameters"
msgstr "Parametre"
-#. AuuQ6
-#: cui/uiconfig/ui/embossdialog.ui:217
-msgctxt "embossdialog|extended_tip|EmbossDialog"
-msgid "Displays a dialog for creating reliefs."
-msgstr "Zobrazí dialógové okno na vytvorenie reliéfov."
-
#. RjncS
#: cui/uiconfig/ui/entrycontextmenu.ui:12
msgctxt "entrycontextmenu|remove"
@@ -8796,83 +7438,47 @@ msgid "Assign Macro"
msgstr "Priradiť makro"
#. BgFFN
-#: cui/uiconfig/ui/eventassignpage.ui:84
+#: cui/uiconfig/ui/eventassignpage.ui:85
msgctxt "eventassignpage|eventft"
msgid "Event"
msgstr "Udalosť"
#. ginEm
-#: cui/uiconfig/ui/eventassignpage.ui:97
+#: cui/uiconfig/ui/eventassignpage.ui:98
msgctxt "eventassignpage|assignft"
msgid "Assigned Action"
msgstr "Priradená činnosť"
-#. xj34d
-#: cui/uiconfig/ui/eventassignpage.ui:108
-msgctxt "eventassignpage|extended_tip|assignments"
-msgid "Lists the events that can trigger a macro."
-msgstr "Uvádza zoznam udalostí, ktoré môžu spustiť makro."
-
#. P3GeQ
-#: cui/uiconfig/ui/eventassignpage.ui:121
+#: cui/uiconfig/ui/eventassignpage.ui:117
msgctxt "eventassignpage|libraryft1"
msgid "Assignments"
msgstr "Priradenia"
#. dcPPB
-#: cui/uiconfig/ui/eventassignpage.ui:142
+#: cui/uiconfig/ui/eventassignpage.ui:138
msgctxt "eventassignpage|assign"
msgid "Assign"
msgstr "Priradiť"
-#. dMCaf
-#: cui/uiconfig/ui/eventassignpage.ui:150
-msgctxt "eventassignpage|extended_tip|assign"
-msgid "Assigns the selected macro to the selected event."
-msgstr "Priradí vybrané makro k vybranej udalosti."
-
#. nwUkL
-#: cui/uiconfig/ui/eventassignpage.ui:162
+#: cui/uiconfig/ui/eventassignpage.ui:153
msgctxt "eventassignpage|delete"
msgid "Remove"
msgstr "Odstrániť"
-#. qaQin
-#: cui/uiconfig/ui/eventassignpage.ui:169
-msgctxt "eventassignpage|extended_tip|delete"
-msgid "Removes the macro assignment from the selected entry."
-msgstr "Odstráni priradenie makra z vybranej položky."
-
-#. 9GNQR
-#: cui/uiconfig/ui/eventassignpage.ui:249
-msgctxt "eventassignpage|extended_tip|libraries"
-msgid "Lists the %PRODUCTNAME program and any open %PRODUCTNAME document."
-msgstr "Uvádza program %PRODUCTNAME a akýkoľvek otvorený dokument %PRODUCTNAME."
-
#. y7Vyi
-#: cui/uiconfig/ui/eventassignpage.ui:262
+#: cui/uiconfig/ui/eventassignpage.ui:244
msgctxt "eventassignpage|macrotoft"
msgid "Macro From"
msgstr "Makro z"
-#. n2zaD
-#: cui/uiconfig/ui/eventassignpage.ui:330
-msgctxt "eventassignpage|extended_tip|macros"
-msgid "Lists the available macros. Select the macro that you want to assign to the selected event, and then click Assign."
-msgstr "Uvádza zoznam dostupných makier. Vyberte makro, ktoré chcete priradiť k vybranej udalosti, a potom kliknite na tlačidlo Priradiť."
-
#. d229E
-#: cui/uiconfig/ui/eventassignpage.ui:343
+#: cui/uiconfig/ui/eventassignpage.ui:320
msgctxt "eventassignpage|existingmacrosft"
msgid "Existing Macros"
msgstr "Existujúce makrá"
-#. ZKRQr
-#: cui/uiconfig/ui/eventassignpage.ui:364
-msgctxt "eventassignpage|extended_tip|EventAssignPage"
-msgid "Specifies the macro to run when you click an image, frame, or an OLE object."
-msgstr "Určuje makro, ktoré sa má spustiť po kliknutí na obrázok, rámec alebo objekt OLE."
-
#. 83DK5
#: cui/uiconfig/ui/eventsconfigpage.ui:41
msgctxt "eventsconfigpage|label1"
@@ -8885,60 +7491,30 @@ msgctxt "eventsconfigpage|macro"
msgid "M_acro..."
msgstr "M_akro..."
-#. TqHir
-#: cui/uiconfig/ui/eventsconfigpage.ui:67
-msgctxt "eventsconfigpage|extended_tip|macro"
-msgid "Opens the Macro Selector to assign a macro to the selected event."
-msgstr "Otvára dialógové okno Výber makra na priradenie makra k vybranej udalosti."
-
#. gxSRb
-#: cui/uiconfig/ui/eventsconfigpage.ui:79
+#: cui/uiconfig/ui/eventsconfigpage.ui:74
msgctxt "eventsconfigpage|delete"
msgid "_Remove"
msgstr "_Odstrániť"
-#. FGfuV
-#: cui/uiconfig/ui/eventsconfigpage.ui:86
-msgctxt "eventsconfigpage|extended_tip|delete"
-msgid "Deletes the macro or component assignment for the selected event."
-msgstr "Odstráni priradenie makra alebo komponentu pre vybranú udalosť."
-
#. Ebcvv
-#: cui/uiconfig/ui/eventsconfigpage.ui:126
+#: cui/uiconfig/ui/eventsconfigpage.ui:116
msgctxt "eventsconfigpage|label2"
msgid "Save in:"
msgstr "Uložiť do:"
-#. JQMTJ
-#: cui/uiconfig/ui/eventsconfigpage.ui:143
-msgctxt "eventsconfigpage|extended_tip|savein"
-msgid "Select first where to save the event binding, in the current document or in %PRODUCTNAME."
-msgstr "Najprv vyberte, kam sa má väzba udalosti uložiť, či v aktuálnom dokumente alebo v %PRODUCTNAME."
-
#. C6KwW
-#: cui/uiconfig/ui/eventsconfigpage.ui:182
+#: cui/uiconfig/ui/eventsconfigpage.ui:167
msgctxt "eventsconfigpage|eventft"
msgid "Event"
msgstr "Udalosť"
#. daKJA
-#: cui/uiconfig/ui/eventsconfigpage.ui:206
+#: cui/uiconfig/ui/eventsconfigpage.ui:191
msgctxt "eventsconfigpage|actionft"
msgid "Assigned Action"
msgstr "Priradená činnosť"
-#. Gp5MK
-#: cui/uiconfig/ui/eventsconfigpage.ui:217
-msgctxt "eventsconfigpage|extended_tip|events"
-msgid "The big list box lists the events and the assigned macros. After you selected the location in the Save In list box, select an event in the big list box. Then click Assign Macro."
-msgstr "Rozsiahly zoznam obsahuje zoznam udalostí a priradených makier. Potom, ako vyberiete umiestnenie v zozname Uložiť do vyberte udalosť v zozname. Potom kliknite na Priradiť makro."
-
-#. aCb4v
-#: cui/uiconfig/ui/eventsconfigpage.ui:242
-msgctxt "eventsconfigpage|extended_tip|EventsConfigPage"
-msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
-msgstr "Nastaví možnosti pre automatické nahrádzanie textu počas písania alebo pre hromadné použitie automatických opráv v existujúcom texte."
-
#. BvWSS
#: cui/uiconfig/ui/fmsearchdialog.ui:8
msgctxt "fmsearchdialog|RecordSearchDialog"
@@ -8946,293 +7522,155 @@ msgid "Record Search"
msgstr "Hľadanie záznamu"
#. BiFWr
-#: cui/uiconfig/ui/fmsearchdialog.ui:24
+#: cui/uiconfig/ui/fmsearchdialog.ui:27
msgctxt "fmsearchdialog|pbSearchAgain"
msgid "S_earch"
msgstr "_Hľadať"
-#. LBdux
-#: cui/uiconfig/ui/fmsearchdialog.ui:33
-msgctxt "fmsearchdialog|extended_tip|pbSearchAgain"
-msgid "Starts or cancels the search."
-msgstr "Spustí alebo zruší vyhľadávanie."
-
-#. QReEJ
-#: cui/uiconfig/ui/fmsearchdialog.ui:52
-msgctxt "fmsearchdialog|extended_tip|close"
-msgid "Closes the dialog. The settings of the last search will be saved until you quit %PRODUCTNAME."
-msgstr "Zatvorí dialógové okno. Nastavenia posledného vyhľadávania sa uložia, kým neukončíte program %PRODUCTNAME."
-
-#. UPeyv
-#: cui/uiconfig/ui/fmsearchdialog.ui:146
-msgctxt "fmsearchdialog|extended_tip|cmbSearchText"
-msgid "Enter the search term in the box or select it from the list."
-msgstr "Zadajte hľadaný výraz do poľa alebo ho vyberte zo zoznamu."
-
#. sC6j6
-#: cui/uiconfig/ui/fmsearchdialog.ui:157
+#: cui/uiconfig/ui/fmsearchdialog.ui:146
msgctxt "fmsearchdialog|rbSearchForText"
msgid "_Text:"
msgstr "_Text:"
-#. Abepw
-#: cui/uiconfig/ui/fmsearchdialog.ui:167
-msgctxt "fmsearchdialog|extended_tip|rbSearchForText"
-msgid "Enter the search term in the box or select it from the list."
-msgstr "Zadajte hľadaný výraz do poľa alebo ho vyberte zo zoznamu."
-
#. CrVGp
-#: cui/uiconfig/ui/fmsearchdialog.ui:185
+#: cui/uiconfig/ui/fmsearchdialog.ui:169
msgctxt "fmsearchdialog|rbSearchForNull"
msgid "Field content is _NULL"
msgstr "Obsah poľa je _NULL"
-#. CSSkE
-#: cui/uiconfig/ui/fmsearchdialog.ui:196
-msgctxt "fmsearchdialog|extended_tip|rbSearchForNull"
-msgid "Specifies that fields will be found that contain no data."
-msgstr "Určuje, že sa nájdu polia, ktoré neobsahujú žiadne dáta."
-
#. zxjuF
-#: cui/uiconfig/ui/fmsearchdialog.ui:208
+#: cui/uiconfig/ui/fmsearchdialog.ui:187
msgctxt "fmsearchdialog|rbSearchForNotNull"
msgid "Field content is not NU_LL"
msgstr "Obsah poľa nie je NU_LL"
-#. oybVR
-#: cui/uiconfig/ui/fmsearchdialog.ui:219
-msgctxt "fmsearchdialog|extended_tip|rbSearchForNotNull"
-msgid "Specifies that fields will be found that contain data."
-msgstr "Určuje, že sa nájdu polia, ktoré obsahujú dáta."
-
#. X9FQy
-#: cui/uiconfig/ui/fmsearchdialog.ui:243
+#: cui/uiconfig/ui/fmsearchdialog.ui:217
msgctxt "fmsearchdialog|flSearchFor"
msgid "_Search for"
msgstr "_Hľadať"
#. PGaCY
-#: cui/uiconfig/ui/fmsearchdialog.ui:299
+#: cui/uiconfig/ui/fmsearchdialog.ui:273
msgctxt "fmsearchdialog|rbSingleField"
msgid "_Single field:"
msgstr "_Jedno pole:"
-#. 9kRju
-#: cui/uiconfig/ui/fmsearchdialog.ui:309
-msgctxt "fmsearchdialog|extended_tip|rbSingleField"
-msgid "Searches through a specified data field."
-msgstr "Vyhľadáva v zadanom dátovom poli."
-
-#. TyqAE
-#: cui/uiconfig/ui/fmsearchdialog.ui:327
-msgctxt "fmsearchdialog|extended_tip|lbField"
-msgid "Searches through a specified data field."
-msgstr "Vyhľadáva v zadanom dátovom poli."
-
#. aLBBD
-#: cui/uiconfig/ui/fmsearchdialog.ui:345
+#: cui/uiconfig/ui/fmsearchdialog.ui:309
msgctxt "fmsearchdialog|rbAllFields"
msgid "_All fields"
msgstr "_Všetky polia"
-#. mWvzW
-#: cui/uiconfig/ui/fmsearchdialog.ui:356
-msgctxt "fmsearchdialog|extended_tip|rbAllFields"
-msgid "Searches through all fields."
-msgstr "Vyhľadáva vo všetkých poliach."
-
#. 64yD3
-#: cui/uiconfig/ui/fmsearchdialog.ui:374
+#: cui/uiconfig/ui/fmsearchdialog.ui:333
msgctxt "fmsearchdialog|ftForm"
msgid "Form:"
msgstr "Formulár:"
-#. aCM9Q
-#: cui/uiconfig/ui/fmsearchdialog.ui:391
-msgctxt "fmsearchdialog|extended_tip|lbForm"
-msgid "Specifies the logical form in which you want the search to take place."
-msgstr "Určuje logickú formu, v ktorej sa má vyhľadávanie uskutočniť."
-
#. B2SYL
-#: cui/uiconfig/ui/fmsearchdialog.ui:454
+#: cui/uiconfig/ui/fmsearchdialog.ui:408
msgctxt "fmsearchdialog|label2"
msgid "Where to Search"
msgstr "Kde hľadať"
#. yqEse
-#: cui/uiconfig/ui/fmsearchdialog.ui:504
+#: cui/uiconfig/ui/fmsearchdialog.ui:458
msgctxt "fmsearchdialog|ftPosition"
msgid "_Position:"
msgstr "_Umiestnenie:"
-#. BLRj3
-#: cui/uiconfig/ui/fmsearchdialog.ui:522
-msgctxt "fmsearchdialog|extended_tip|lbPosition"
-msgid "Specifies the relationship of the search term and the field contents."
-msgstr "Určuje vzťah hľadaného výrazu a obsahu poľa."
-
#. c6ZbD
-#: cui/uiconfig/ui/fmsearchdialog.ui:546
+#: cui/uiconfig/ui/fmsearchdialog.ui:495
msgctxt "fmsearchdialog|HalfFullFormsCJK"
msgid "Match character wi_dth"
msgstr "Porovnať šír_ku znaku"
-#. wAKeF
-#: cui/uiconfig/ui/fmsearchdialog.ui:555
-msgctxt "fmsearchdialog|extended_tip|HalfFullFormsCJK"
-msgid "Distinguishes between half-width and full-width character forms."
-msgstr "Rozlišuje medzi formami znaku v polovičnej šírke a plnej šírke."
-
#. EedjA
-#: cui/uiconfig/ui/fmsearchdialog.ui:571
+#: cui/uiconfig/ui/fmsearchdialog.ui:515
msgctxt "fmsearchdialog|SoundsLikeCJK"
msgid "Sounds like (_Japanese)"
msgstr "Homonymum (japončina)"
-#. m2QkD
-#: cui/uiconfig/ui/fmsearchdialog.ui:580
-msgctxt "fmsearchdialog|extended_tip|SoundsLikeCJK"
-msgid "Lets you specify the search options for similar notation used in Japanese text. Select this checkbox, and then click the Sounds button to specify the search options."
-msgstr "Je možné určiť, či sa v japonskom texte hľadá podobná notácia. Zaškrtnite toto políčko a potom kliknite na tlačidlo ... pre určenie možností vyhľadávania."
-
#. 2Gsbd
-#: cui/uiconfig/ui/fmsearchdialog.ui:591
+#: cui/uiconfig/ui/fmsearchdialog.ui:530
msgctxt "fmsearchdialog|SoundsLikeCJKSettings"
msgid "Similarities..."
msgstr "Podobnosti..."
-#. CxVZm
-#: cui/uiconfig/ui/fmsearchdialog.ui:599
-msgctxt "fmsearchdialog|extended_tip|SoundsLikeCJKSettings"
-msgid "Sets the search options for similar notation used in Japanese text."
-msgstr "Nastavuje možnosti pre podobnú notáciu v japonskom texte."
-
#. Ra8jW
-#: cui/uiconfig/ui/fmsearchdialog.ui:621
+#: cui/uiconfig/ui/fmsearchdialog.ui:555
msgctxt "fmsearchdialog|cbApprox"
msgid "S_imilarity search"
msgstr "Hľadanie _podobností"
-#. zDTS6
-#: cui/uiconfig/ui/fmsearchdialog.ui:630
-msgctxt "fmsearchdialog|extended_tip|cbApprox"
-msgid "Find terms that are similar to the Find text. Select this checkbox, and then click the Similarities button to define the similarity options."
-msgstr "Nájde výrazy podobné textu Nájsť. Zaškrtnite toto pole a potom kliknutím na tlačidlo Podobnosti definujte možnosti podobnosti."
-
#. DNGxj
-#: cui/uiconfig/ui/fmsearchdialog.ui:641
+#: cui/uiconfig/ui/fmsearchdialog.ui:570
msgctxt "fmsearchdialog|pbApproxSettings"
msgid "Similarities..."
msgstr "Podobnosti..."
-#. PtuHs
-#: cui/uiconfig/ui/fmsearchdialog.ui:650
-msgctxt "fmsearchdialog|extended_tip|pbApproxSettings"
-msgid "Find terms that are similar to the Find text. Select this checkbox, and then click the Similarities button to define the similarity options."
-msgstr "Nájde výrazy podobné textu Nájsť. Zaškrtnite toto pole a potom kliknutím na tlačidlo Podobnosti definujte možnosti podobnosti."
-
#. 6BpAF
-#: cui/uiconfig/ui/fmsearchdialog.ui:667
+#: cui/uiconfig/ui/fmsearchdialog.ui:591
msgctxt "fmsearchdialog|cbCase"
msgid "_Match case"
msgstr "R_ozlišovať veľkosť"
-#. Gdo9i
-#: cui/uiconfig/ui/fmsearchdialog.ui:676
-msgctxt "fmsearchdialog|extended_tip|cbCase"
-msgid "Specifies that upper and lower case are taken into consideration during the search."
-msgstr "Určuje, že pri hľadaní sa zohľadnia malé a veľké písmená."
-
#. X5q2K
-#: cui/uiconfig/ui/fmsearchdialog.ui:687
+#: cui/uiconfig/ui/fmsearchdialog.ui:606
msgctxt "fmsearchdialog|cbStartOver"
msgid "Fr_om top"
msgstr "Z_hora"
-#. y83im
-#: cui/uiconfig/ui/fmsearchdialog.ui:696
-msgctxt "fmsearchdialog|extended_tip|cbStartOver"
-msgid "Restarts the search. A forward search restarts with the first record. A backwards search restarts with the last record."
-msgstr "Reštartuje vyhľadávanie. Dopredné vyhľadávanie sa reštartuje od prvého záznamu. Spätné vyhľadávanie sa spustí od posledného záznamu."
-
#. WP3XA
-#: cui/uiconfig/ui/fmsearchdialog.ui:707
+#: cui/uiconfig/ui/fmsearchdialog.ui:621
msgctxt "fmsearchdialog|cbRegular"
msgid "_Regular expression"
msgstr "_Regulárny výraz"
-#. 4uneg
-#: cui/uiconfig/ui/fmsearchdialog.ui:716
-msgctxt "fmsearchdialog|extended_tip|cbRegular"
-msgid "Searches with regular expressions."
-msgstr "Vyhľadáva pomocou regulárnych výrazov."
-
#. qzKAB
-#: cui/uiconfig/ui/fmsearchdialog.ui:727
+#: cui/uiconfig/ui/fmsearchdialog.ui:636
msgctxt "fmsearchdialog|cbUseFormat"
msgid "Appl_y field format"
msgstr "Použiť _formát poľa"
-#. BdMDC
-#: cui/uiconfig/ui/fmsearchdialog.ui:736
-msgctxt "fmsearchdialog|extended_tip|cbUseFormat"
-msgid "Specifies that all field formats are considered when searching in the current document."
-msgstr "Určuje, že sa pri vyhľadávaní v aktuálnom dokumente zohľadnia všetky formáty polí."
-
#. 2GvF5
-#: cui/uiconfig/ui/fmsearchdialog.ui:747
+#: cui/uiconfig/ui/fmsearchdialog.ui:651
msgctxt "fmsearchdialog|cbBackwards"
msgid "Search _backwards"
msgstr "Hľadať _dozadu"
-#. QvjG7
-#: cui/uiconfig/ui/fmsearchdialog.ui:756
-msgctxt "fmsearchdialog|extended_tip|cbBackwards"
-msgid "Specifies that the search process will run in reverse direction, from the last to the first record."
-msgstr "Určuje, že proces vyhľadávania bude prebiehať opačným smerom, od posledného po prvý záznam."
-
#. 4ixJZ
-#: cui/uiconfig/ui/fmsearchdialog.ui:767
+#: cui/uiconfig/ui/fmsearchdialog.ui:666
msgctxt "fmsearchdialog|cbWildCard"
msgid "_Wildcard expression"
msgstr "Výraz so _zástupnými znakmi"
-#. BES8b
-#: cui/uiconfig/ui/fmsearchdialog.ui:776
-msgctxt "fmsearchdialog|extended_tip|cbWildCard"
-msgid "Allows a search with a * or ? wildcard."
-msgstr "Umožňuje vyhľadávanie pomocou zástupných znakov * alebo ?."
-
#. xHRxu
-#: cui/uiconfig/ui/fmsearchdialog.ui:800
+#: cui/uiconfig/ui/fmsearchdialog.ui:694
msgctxt "fmsearchdialog|flOptions"
msgid "Settings"
msgstr "Nastavenia"
#. wBBss
-#: cui/uiconfig/ui/fmsearchdialog.ui:835
+#: cui/uiconfig/ui/fmsearchdialog.ui:729
msgctxt "fmsearchdialog|ftRecordLabel"
msgid "Record:"
msgstr "Záznam:"
#. UBLpq
-#: cui/uiconfig/ui/fmsearchdialog.ui:847
+#: cui/uiconfig/ui/fmsearchdialog.ui:741
msgctxt "fmsearchdialog|ftRecord"
msgid "record count"
msgstr "počet záznamov"
#. 8EDSy
-#: cui/uiconfig/ui/fmsearchdialog.ui:873
+#: cui/uiconfig/ui/fmsearchdialog.ui:767
msgctxt "fmsearchdialog|flState"
msgid "State"
msgstr "Štát"
-#. tqCYV
-#: cui/uiconfig/ui/fmsearchdialog.ui:904
-msgctxt "fmsearchdialog|extended_tip|RecordSearchDialog"
-msgid "Searches database tables and forms."
-msgstr "Prehľadáva databázové tabuľky a formuláre."
-
#. zbAyQ
#: cui/uiconfig/ui/fontfeaturesdialog.ui:10
msgctxt "fontfeaturesdialog|FontFeaturesDialog"
@@ -9240,17 +7678,11 @@ msgid "Font Features"
msgstr "Vlastnosti písma"
#. 696Sw
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:163
+#: cui/uiconfig/ui/fontfeaturesdialog.ui:166
msgctxt "fontfeaturesdialog|preview-atkobject"
msgid "Preview"
msgstr "Náhľad"
-#. hib9i
-#: cui/uiconfig/ui/fontfeaturesdialog.ui:199
-msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog"
-msgid "Select and apply font typographical features to characters."
-msgstr "Vyberte typografické vlastnosti písma a použite ich na znaky."
-
#. CJQFA
#: cui/uiconfig/ui/formatcellsdialog.ui:8
msgctxt "formatcellsdialog|FormatCellsDialog"
@@ -9305,72 +7737,36 @@ msgctxt "galleryfilespage|label1"
msgid "_File type:"
msgstr "Typ _súboru:"
-#. p7EMZ
-#: cui/uiconfig/ui/galleryfilespage.ui:62
-msgctxt "galleryfilespage|extended_tip|filetype"
-msgid "Select the type of file that you want to add."
-msgstr "Vyberte typ súboru, ktorý chcete pridať."
-
#. GS6jY
-#: cui/uiconfig/ui/galleryfilespage.ui:112
+#: cui/uiconfig/ui/galleryfilespage.ui:107
msgctxt "galleryfilespage|files-atkobject"
msgid "Files Found"
msgstr "Nájdené súbory"
-#. EP5WY
-#: cui/uiconfig/ui/galleryfilespage.ui:113
-msgctxt "galleryfilespage|extended_tip|files"
-msgid "Lists the available files. Select the file(s) that you want to add, and then click Add. To add all of the files in the list, click Add All."
-msgstr "Uvádza zoznam dostupných súborov. Vyberte súbory, ktoré chcete pridať, a potom kliknite na tlačidlo Pridať. Ak chcete pridať všetky súbory v zozname, kliknite na položku Pridať všetky."
-
#. UnmAz
-#: cui/uiconfig/ui/galleryfilespage.ui:142
+#: cui/uiconfig/ui/galleryfilespage.ui:136
msgctxt "galleryfilespage|preview"
msgid "Pr_eview"
msgstr "_Náhľad"
-#. sWLgt
-#: cui/uiconfig/ui/galleryfilespage.ui:151
-msgctxt "galleryfilespage|extended_tip|preview"
-msgid "Displays or hides a preview of the selected file."
-msgstr "Zobrazí alebo skryje ukážku vybraného súboru."
-
#. EmQfr
-#: cui/uiconfig/ui/galleryfilespage.ui:177
+#: cui/uiconfig/ui/galleryfilespage.ui:166
msgctxt "galleryfilespage|image-atkobject"
msgid "Preview"
msgstr "Náhľad"
#. iGEBB
-#: cui/uiconfig/ui/galleryfilespage.ui:205
+#: cui/uiconfig/ui/galleryfilespage.ui:194
msgctxt "galleryfilespage|findfiles"
msgid "_Find Files..."
msgstr "_Nájsť súbory..."
-#. iqzdT
-#: cui/uiconfig/ui/galleryfilespage.ui:212
-msgctxt "galleryfilespage|extended_tip|findfiles"
-msgid "Locate the directory containing the files that you want to add, and then click OK."
-msgstr "Vyhľadajte adresár obsahujúci súbory, ktoré chcete pridať, a potom kliknite na OK."
-
-#. bhqkR
-#: cui/uiconfig/ui/galleryfilespage.ui:231
-msgctxt "galleryfilespage|extended_tip|add"
-msgid "Adds the selected file(s) to the current theme."
-msgstr "Pridá vybrané súbory k aktuálnej téme."
-
#. oNFEr
-#: cui/uiconfig/ui/galleryfilespage.ui:243
+#: cui/uiconfig/ui/galleryfilespage.ui:222
msgctxt "galleryfilespage|addall"
msgid "A_dd All"
msgstr "Pri_dať všetko"
-#. yHYBJ
-#: cui/uiconfig/ui/galleryfilespage.ui:250
-msgctxt "galleryfilespage|extended_tip|addall"
-msgid "Adds all of the files in the list to the current theme."
-msgstr "Pridá všetky súbory v zozname k aktuálnej téme."
-
#. kfNzx
#: cui/uiconfig/ui/gallerygeneralpage.ui:21
msgctxt "gallerygeneralpage|label1"
@@ -9457,7 +7853,7 @@ msgid "Enter Title"
msgstr "Zadajte názov"
#. DBmvf
-#: cui/uiconfig/ui/gallerytitledialog.ui:86
+#: cui/uiconfig/ui/gallerytitledialog.ui:89
msgctxt "gallerytitledialog|label2"
msgid "Title:"
msgstr "Nadpis:"
@@ -9474,222 +7870,144 @@ msgctxt "galleryupdateprogress|label2"
msgid "File"
msgstr "Súbor"
-#. NTAMc
-#: cui/uiconfig/ui/galleryupdateprogress.ui:103
-msgctxt "galleryupdateprogress|extended_tip|GalleryUpdateProgress"
-msgid "Updates the view in the window or in the selected object."
-msgstr "Aktualizuje zobrazenie v okne alebo vo vybranom objekte."
-
-#. YDCTd
-#: cui/uiconfig/ui/gradientpage.ui:122
-msgctxt "gradientpage|extended_tip|add"
-msgid "Adds a custom gradient to the current list. Specify the properties of your gradient, and then click this button"
-msgstr "Pridá do aktuálneho zoznamu vlastný prechod. Zadajte vlastnosti prechodu a potom kliknite na toto tlačidlo"
-
#. QfZFH
-#: cui/uiconfig/ui/gradientpage.ui:134
+#: cui/uiconfig/ui/gradientpage.ui:129
msgctxt "gradientpage|modify"
msgid "_Modify"
msgstr "Použ_iť"
-#. EeXWP
-#: cui/uiconfig/ui/gradientpage.ui:141
-msgctxt "gradientpage|extended_tip|modify"
-msgid "Applies the current gradient properties to the selected gradient. If you want, you can save the gradient under a different name."
-msgstr "Použije aktuálne vlastnosti prechodu na vybraný prechod. Ak chcete, môžete prechod uložiť pod iným názvom."
-
#. 7ipyi
-#: cui/uiconfig/ui/gradientpage.ui:166
+#: cui/uiconfig/ui/gradientpage.ui:156
msgctxt "gradientpage|label1"
msgid "Gradient"
msgstr "Prechod"
#. GPnwG
-#: cui/uiconfig/ui/gradientpage.ui:214
+#: cui/uiconfig/ui/gradientpage.ui:204
msgctxt "gradientpage|typeft"
msgid "_Type:"
msgstr "_Typ:"
#. 8Qjgv
-#: cui/uiconfig/ui/gradientpage.ui:230
+#: cui/uiconfig/ui/gradientpage.ui:220
msgctxt "gradientpage|gradienttypelb"
msgid "Linear"
msgstr "Lineárny"
#. fgBSm
-#: cui/uiconfig/ui/gradientpage.ui:231
+#: cui/uiconfig/ui/gradientpage.ui:221
msgctxt "gradientpage|gradienttypelb"
msgid "Axial"
msgstr "Osový"
#. FGjhA
-#: cui/uiconfig/ui/gradientpage.ui:232
+#: cui/uiconfig/ui/gradientpage.ui:222
msgctxt "gradientpage|gradienttypelb"
msgid "Radial"
msgstr "Radiálny"
#. VGtK3
-#: cui/uiconfig/ui/gradientpage.ui:233
+#: cui/uiconfig/ui/gradientpage.ui:223
msgctxt "gradientpage|gradienttypelb"
msgid "Ellipsoid"
msgstr "Oválny"
#. 7FRe4
-#: cui/uiconfig/ui/gradientpage.ui:234
+#: cui/uiconfig/ui/gradientpage.ui:224
msgctxt "gradientpage|gradienttypelb"
msgid "Quadratic"
msgstr "Kvadratický"
#. wQDTv
-#: cui/uiconfig/ui/gradientpage.ui:235
+#: cui/uiconfig/ui/gradientpage.ui:225
msgctxt "gradientpage|gradienttypelb"
msgid "Square"
msgstr "Štvorcový"
-#. XasEx
-#: cui/uiconfig/ui/gradientpage.ui:239
-msgctxt "gradientpage|extended_tip|gradienttypelb"
-msgid "Select the gradient that you want to apply."
-msgstr "Vyberte prechod, ktorý chcete použiť."
-
#. BBKZM
-#: cui/uiconfig/ui/gradientpage.ui:267
+#: cui/uiconfig/ui/gradientpage.ui:252
msgctxt "gradientpage|incrementft"
msgid "Increment:"
msgstr "Prírastok:"
#. F5dVt
-#: cui/uiconfig/ui/gradientpage.ui:292
+#: cui/uiconfig/ui/gradientpage.ui:277
msgctxt "gradientpage|autoincrement"
msgid "A_utomatic"
msgstr "Automatický"
#. LAhqj
-#: cui/uiconfig/ui/gradientpage.ui:324
+#: cui/uiconfig/ui/gradientpage.ui:309
msgctxt "gradientpage|centerft"
msgid "Center ( X / Y ):"
msgstr "Stred ( X / Y ):"
-#. mP62s
-#: cui/uiconfig/ui/gradientpage.ui:347
-msgctxt "gradientpage|extended_tip|centerxmtr"
-msgid "Enter the horizontal offset for the gradient, where 0% corresponds to the current horizontal location of the endpoint color in the gradient. The endpoint color is the color that is selected in the To Color box."
-msgstr "Zadajte vodorovné odsadenie prechodu, kde 0% zodpovedá aktuálnemu vodorovnému umiestneniu farby koncového bodu v prechode. Farba koncového bodu je farba, ktorá je vybraná v poli Po farbu."
-
-#. AP27S
-#: cui/uiconfig/ui/gradientpage.ui:365
-msgctxt "gradientpage|extended_tip|centerymtr"
-msgid "Enter the vertical offset for the gradient, where 0% corresponds to the current vertical location of the endpoint color in the gradient. The endpoint color is the color that is selected in the To Color box."
-msgstr "Zadajte vertikálne posunutie prechodu, kde 0% zodpovedá aktuálnemu zvislému umiestneniu farby koncového bodu v prechode. Farba koncového bodu je farba, ktorá je vybraná v poli Po farbu."
-
#. ZZ7yo
-#: cui/uiconfig/ui/gradientpage.ui:399
+#: cui/uiconfig/ui/gradientpage.ui:374
msgctxt "gradientpage|borderft"
msgid "_Border:"
msgstr "_Okraj:"
-#. iZbnF
-#: cui/uiconfig/ui/gradientpage.ui:432
-msgctxt "gradientpage|extended_tip|bordermtr"
-msgid "Enter the amount by which you want to adjust the area of the endpoint color on the gradient. The endpoint color is the color that is selected in the To Color box."
-msgstr "Zadajte hodnotu, o ktorú chcete upraviť plochu farby koncového bodu na prechode. Farba koncového bodu je farba, ktorá je vybraná v poli Po farbu."
-
-#. qCvgc
-#: cui/uiconfig/ui/gradientpage.ui:448
-msgctxt "gradientpage|extended_tip|anglemtr"
-msgid "Enter a rotation angle for the selected gradient."
-msgstr "Zadajte uhol natočenia pre vybraný prechod."
-
#. cGXmA
-#: cui/uiconfig/ui/gradientpage.ui:462
+#: cui/uiconfig/ui/gradientpage.ui:427
msgctxt "gradientpage|angleft"
msgid "A_ngle:"
msgstr "_Uhol:"
-#. fwB6f
-#: cui/uiconfig/ui/gradientpage.ui:480
-msgctxt "gradientpage|extended_tip|colortomtr"
-msgid "Enter the intensity for the color in the To Color box, where 0% corresponds to black, and 100 % to the selected color."
-msgstr "Zadajte intenzitu farby do poľa Po farbu, kde 0% zodpovedá čiernej farbe a 100% zvolenej farbe."
-
-#. C6iys
-#: cui/uiconfig/ui/gradientpage.ui:502
-msgctxt "gradientpage|extended_tip|colortolb"
-msgid "Select a color for the endpoint of the gradient."
-msgstr "Vyberte farbu pre koncový bod prechodu."
-
#. tFEUh
-#: cui/uiconfig/ui/gradientpage.ui:515
+#: cui/uiconfig/ui/gradientpage.ui:470
msgctxt "gradientpage|colortoft"
msgid "_To Color:"
msgstr "_Po farbu:"
-#. RnucA
-#: cui/uiconfig/ui/gradientpage.ui:539
-msgctxt "gradientpage|extended_tip|colorfromlb"
-msgid "Select a color for the beginning point of the gradient."
-msgstr "Vyberte farbu pre začiatočný bod prechodu."
-
-#. B9z2L
-#: cui/uiconfig/ui/gradientpage.ui:555
-msgctxt "gradientpage|extended_tip|colorfrommtr"
-msgid "Enter the intensity for the color in the From Color box, where 0% corresponds to black, and 100 % to the selected color."
-msgstr "Zadajte intenzitu farby do poľa Od farby, kde 0% zodpovedá čiernej a 100% vybranej farbe."
-
#. TQFE8
-#: cui/uiconfig/ui/gradientpage.ui:568
+#: cui/uiconfig/ui/gradientpage.ui:513
msgctxt "gradientpage|colorfromft"
msgid "_From Color:"
msgstr "_Od farby:"
#. RNhur
-#: cui/uiconfig/ui/gradientpage.ui:606
+#: cui/uiconfig/ui/gradientpage.ui:551
msgctxt "gradientpage|a11y_center_x"
msgid "Center X"
msgstr "Stred _X"
#. qkLcz
-#: cui/uiconfig/ui/gradientpage.ui:620
+#: cui/uiconfig/ui/gradientpage.ui:565
msgctxt "gradientpage|a11y_center_y"
msgid "Center Y"
msgstr "Stred _Y"
#. VX2bJ
-#: cui/uiconfig/ui/gradientpage.ui:634
+#: cui/uiconfig/ui/gradientpage.ui:579
msgctxt "gradientpage|a11y_percentage_from"
msgid "From color percentage"
msgstr "Od percenta farby"
#. 3qVyC
-#: cui/uiconfig/ui/gradientpage.ui:648
+#: cui/uiconfig/ui/gradientpage.ui:593
msgctxt "gradientpage|a11y_percentage_to"
msgid "To color percentage"
msgstr "Po percento farby"
#. 58WB2
-#: cui/uiconfig/ui/gradientpage.ui:673
+#: cui/uiconfig/ui/gradientpage.ui:618
msgctxt "gradientpage|propfl"
msgid "Options"
msgstr "Možnosti"
#. 5mDZm
-#: cui/uiconfig/ui/gradientpage.ui:722
+#: cui/uiconfig/ui/gradientpage.ui:667
msgctxt "gradientpage|previewctl-atkobject"
msgid "Example"
msgstr "Príklad"
#. e2Ai2
-#: cui/uiconfig/ui/gradientpage.ui:744
+#: cui/uiconfig/ui/gradientpage.ui:689
msgctxt "gradientpage|label2"
msgid "Preview"
msgstr "Náhľad"
-#. VBG9C
-#: cui/uiconfig/ui/gradientpage.ui:760
-msgctxt "gradientpage|extended_tip|GradientPage"
-msgid "Select a gradient, modify the properties of a gradient, or save a new gradient."
-msgstr "Vyberte prechod, upravte vlastnosti prechodu alebo uložte nový prechod."
-
#. 26WXC
#: cui/uiconfig/ui/hangulhanjaadddialog.ui:8
msgctxt "hangulhanjaadddialog|HangulHanjaAddDialog"
@@ -9697,19 +8015,13 @@ msgid "New Dictionary"
msgstr "Nový slovník"
#. iqNN4
-#: cui/uiconfig/ui/hangulhanjaadddialog.ui:99
+#: cui/uiconfig/ui/hangulhanjaadddialog.ui:102
msgctxt "hangulhanjaadddialog|label2"
msgid "_Name:"
msgstr "_Meno:"
-#. haBfA
-#: cui/uiconfig/ui/hangulhanjaadddialog.ui:118
-msgctxt "hangulhanjaadddialog|extended_tip|entry"
-msgid "Enter a name for the dictionary."
-msgstr "Zadajte názov slovníka."
-
#. S2WpP
-#: cui/uiconfig/ui/hangulhanjaadddialog.ui:136
+#: cui/uiconfig/ui/hangulhanjaadddialog.ui:134
msgctxt "hangulhanjaadddialog|label1"
msgid "Dictionary"
msgstr "Slovník"
@@ -9721,313 +8033,151 @@ msgid "Hangul/Hanja Conversion"
msgstr "Hangul/Hanča Konverzia"
#. kh2or
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:102
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:105
msgctxt "hangulhanjaconversiondialog|label1"
msgid "Original"
msgstr "Pôvodná"
-#. bJGUF
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:119
-msgctxt "hangulhanjaconversiondialog|extended_tip|originalword"
-msgid "Displays the current selection."
-msgstr "Zobrazí aktuálny výber."
-
#. P2Lhg
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:132
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:130
msgctxt "hangulhanjaconversiondialog|label3"
msgid "Word"
msgstr "Slovo"
-#. 3vGK6
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:154
-msgctxt "hangulhanjaconversiondialog|extended_tip|wordinput"
-msgid "Displays the first replacement suggestion from the dictionary."
-msgstr "Zobrazí prvý návrh na nahradenie zo slovníka."
-
#. JQfs4
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:166
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:159
msgctxt "hangulhanjaconversiondialog|find"
msgid "_Find"
msgstr "_Nájsť"
-#. TqDEv
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:173
-msgctxt "hangulhanjaconversiondialog|extended_tip|find"
-msgid "Finds your Hangul input in the dictionary and replaces it with the corresponding Hanja."
-msgstr "Nájde záznam v slovníku Hangul a nahradí ho príslušným záznamom Hanča."
-
#. 3NS8C
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:193
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:181
msgctxt "hangulhanjaconversiondialog|label4"
msgid "Suggestions"
msgstr "Návrhy"
#. ECK62
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:286
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:274
msgctxt "hangulhanjaconversiondialog|label5"
msgid "Format"
msgstr "Formát"
#. xfRqM
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:306
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:294
msgctxt "hangulhanjaconversiondialog|hanja_above"
msgid "Hanja above"
msgstr "Hanča nad"
-#. 3FDwm
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:313
-msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_above"
-msgid "The Hangul part will be displayed as ruby text above the Hanja part."
-msgstr "Časť Hangul sa zobrazí ako ruby text nad časťou Hanča."
-
#. Crewa
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:327
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:310
msgctxt "hangulhanjaconversiondialog|hanja_below"
msgid "Hanja below"
msgstr "Hanča pod"
-#. cuAAs
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:334
-msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_below"
-msgid "The Hangul part will be displayed as ruby text below the Hanja part."
-msgstr "Časť Hangul sa zobrazí ako ruby text pod časťou Hanča."
-
#. haBun
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:348
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:326
msgctxt "hangulhanjaconversiondialog|hangul_above"
msgid "Hangul above"
msgstr "Hangul nad"
-#. yHfhf
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355
-msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_above"
-msgid "The Hanja part will be displayed as ruby text above the Hangul part."
-msgstr "Časť Hanča sa zobrazí ako ruby text nad časťou Hangul."
-
#. FfFPC
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:369
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:342
msgctxt "hangulhanjaconversiondialog|hangul_below"
msgid "Hangul below"
msgstr "Hangul pod"
-#. R37Uk
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:376
-msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_below"
-msgid "The Hanja part will be displayed as ruby text below the Hangul part."
-msgstr "Časť Hanča sa zobrazí ako ruby text pod časťou Hangul."
-
#. ZG2Bm
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:387
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:355
msgctxt "hangulhanjaconversiondialog|simpleconversion"
msgid "_Hangul/Hanja"
msgstr "_Hangul/Hanča"
-#. tSGmu
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:398
-msgctxt "hangulhanjaconversiondialog|extended_tip|simpleconversion"
-msgid "The original characters are replaced by the suggested characters."
-msgstr "Pôvodné znaky sa nahradia navrhovanými znakmi."
-
#. xwknP
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:409
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:372
msgctxt "hangulhanjaconversiondialog|hangulbracket"
msgid "Hanja (Han_gul)"
msgstr "Hanča (Han_gul)"
-#. cGuoW
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:419
-msgctxt "hangulhanjaconversiondialog|extended_tip|hangulbracket"
-msgid "The Hangul part will be displayed in brackets after the Hanja part."
-msgstr "Časť Hangul sa zobrazí v zátvorkách za časťou Hanča."
-
#. 6guxd
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:430
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:388
msgctxt "hangulhanjaconversiondialog|hanjabracket"
msgid "Hang_ul (Hanja)"
msgstr "Hang_ul (Hanča)"
-#. Sefus
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:440
-msgctxt "hangulhanjaconversiondialog|extended_tip|hanjabracket"
-msgid "The Hanja part will be displayed in brackets after the Hangul part."
-msgstr "Časť Hanča sa zobrazí v zátvorkách za časťou Hangul."
-
#. 6CDaz
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:465
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:418
msgctxt "hangulhanjaconversiondialog|label6"
msgid "Conversion"
msgstr "Konverzia"
#. mctf7
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:482
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:435
msgctxt "hangulhanjaconversiondialog|hangulonly"
msgid "Hangul _only"
msgstr "_Len Hangul"
-#. 45H2A
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:491
-msgctxt "hangulhanjaconversiondialog|extended_tip|hangulonly"
-msgid "Check to convert only Hangul. Do not convert Hanja."
-msgstr "Zaškrtnutím tejto možnosti sa skonvertuje iba Hangul, neskonvertuje sa Hanča."
-
#. r3HDY
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:503
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:451
msgctxt "hangulhanjaconversiondialog|hanjaonly"
msgid "Hanja onl_y"
msgstr "Len _Hanča"
-#. Fi82M
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:512
-msgctxt "hangulhanjaconversiondialog|extended_tip|hanjaonly"
-msgid "Check to convert only Hanja. Do not convert Hangul."
-msgstr "Zaškrtnutím tejto možnosti sa skonvertuje iba Hanča, neskonvertuje sa Hangul."
-
#. db8Nj
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:545
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:488
msgctxt "hangulhanjaconversiondialog|ignore"
msgid "_Ignore"
msgstr "_Ignorovať"
-#. 3mrTE
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:554
-msgctxt "hangulhanjaconversiondialog|extended_tip|ignore"
-msgid "No changes will be made to the current selection. The next word or character will be selected for conversion."
-msgstr "V aktuálnom výbere nebudú vykonané žiadne zmeny. Na konverziu bude vybrané nasledujúce slovo alebo znak."
-
#. QTqcN
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:566
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:504
msgctxt "hangulhanjaconversiondialog|ignoreall"
msgid "Always I_gnore"
msgstr "Vždy i_gnorovať"
-#. HBgLV
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:573
-msgctxt "hangulhanjaconversiondialog|extended_tip|ignoreall"
-msgid "No changes will be made to the current selection, and every time the same selection is detected it will be skipped automatically."
-msgstr "V aktuálnom výbere sa nebudú robiť žiadne zmeny a zakaždým, keď sa zistí rovnaký výber, bude automaticky preskočený."
-
#. MVirc
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:585
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:518
msgctxt "hangulhanjaconversiondialog|replace"
msgid "_Replace"
msgstr "Nah_radiť"
-#. ECMPD
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:592
-msgctxt "hangulhanjaconversiondialog|extended_tip|replace"
-msgid "Replaces the selection with the suggested characters or word according to the format options."
-msgstr "Nahradí výber navrhovanými znakmi alebo slovom podľa možností formátu."
-
#. DwnC2
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:604
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:532
msgctxt "hangulhanjaconversiondialog|replaceall"
msgid "Always R_eplace"
msgstr "Vždy _nahradiť"
-#. 9itJD
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:611
-msgctxt "hangulhanjaconversiondialog|extended_tip|replaceall"
-msgid "Replaces the selection with the suggested characters or word according to the format options. Every time the same selection is detected it will be replaced automatically."
-msgstr "Nahradí výber navrhovanými znakmi alebo slovom podľa možností formátu. Zakaždým, keď sa zistí rovnaký výber, nahradí sa automaticky."
-
#. 7eniE
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:623
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:546
msgctxt "hangulhanjaconversiondialog|replacebychar"
msgid "Replace b_y character"
msgstr "Nahradiť _znakom"
-#. F2QEt
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:632
-msgctxt "hangulhanjaconversiondialog|extended_tip|replacebychar"
-msgid "Check to move character-by-character through the selected text. If not checked, full words are replaced."
-msgstr "Zaškrtnutím tohto políčka prechádzate vybraným textom po znakoch. Ak nie je zaškrtnuté, nahradia sa celé slová."
-
#. t2RXx
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:644
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:562
msgctxt "hangulhanjaconversiondialog|options"
msgid "Options..."
msgstr "Možnosti..."
-#. GVqQg
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:650
-msgctxt "hangulhanjaconversiondialog|extended_tip|options"
-msgid "Opens the Hangul/Hanja Options dialog."
-msgstr "Otvorí dialógové okno Možnosti Hangul / Hanča."
-
-#. omcyJ
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:686
-msgctxt "hangulhanjaconversiondialog|extended_tip|HangulHanjaConversionDialog"
-msgid "Converts the selected Korean text from Hangul to Hanja or from Hanja to Hangul."
-msgstr "Prevedie vybraný kórejský text z písma Hangul do písma Hanča alebo z písma Hanča do písma Hangul."
-
#. XiQXK
#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:8
msgctxt "hangulhanjaeditdictdialog|HangulHanjaEditDictDialog"
msgid "Edit Custom Dictionary"
msgstr "Upraviť vlastný slovník"
-#. Wnqcm
-#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:95
-msgctxt "hangulhanjaeditdictdialog|extended_tip|book"
-msgid "Select the user-defined dictionary that you want to edit."
-msgstr "Vyberte slovník definovaný používateľom, ktorý chcete upraviť."
-
#. AnsSG
-#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:113
+#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:111
msgctxt "hangulhanjaeditdictdialog|label4"
msgid "Book"
msgstr "Kniha"
-#. ttFFj
-#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:164
-msgctxt "hangulhanjaeditdictdialog|extended_tip|original"
-msgid "Select the entry in the current dictionary that you want to edit. If you want, you can also type a new entry in this box."
-msgstr "Vyberte záznam v aktuálnom slovníku, ktorý chcete upraviť. Ak chcete, môžete do tohto poľa napísať aj nový záznam."
-
-#. GdYKP
-#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:190
-msgctxt "hangulhanjaeditdictdialog|extended_tip|new"
-msgid "Adds the current replacement definition to the dictionary."
-msgstr "Pridá aktuálnu definíciu náhrady do slovníka."
-
-#. myWFD
-#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:210
-msgctxt "hangulhanjaeditdictdialog|extended_tip|delete"
-msgid "Deletes the selected entry."
-msgstr "Vymaže vybranú položku."
-
#. uPgna
-#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:234
+#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:217
msgctxt "hangulhanjaeditdictdialog|label2"
msgid "Original"
msgstr "Pôvodná"
-#. 8qtRG
-#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:291
-msgctxt "hangulhanjaeditdictdialog|extended_tip|edit1"
-msgid "Type a suggested replacement for the entry that is selected in the Original text box. The replacement word can contain a maximum of eight characters."
-msgstr "Zadajte navrhovanú náhradu za položku, ktorá je vybraná v pôvodnom textovom poli. Náhradné slovo môže obsahovať maximálne osem znakov."
-
-#. qFDF8
-#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:309
-msgctxt "hangulhanjaeditdictdialog|extended_tip|edit2"
-msgid "Type a suggested replacement for the entry that is selected in the Original text box. The replacement word can contain a maximum of eight characters."
-msgstr "Zadajte navrhovanú náhradu za položku, ktorá je vybraná v pôvodnom textovom poli. Náhradné slovo môže obsahovať maximálne osem znakov."
-
-#. rFF8x
-#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:327
-msgctxt "hangulhanjaeditdictdialog|extended_tip|edit3"
-msgid "Type a suggested replacement for the entry that is selected in the Original text box. The replacement word can contain a maximum of eight characters."
-msgstr "Zadajte navrhovanú náhradu za položku, ktorá je vybraná v pôvodnom textovom poli. Náhradné slovo môže obsahovať maximálne osem znakov."
-
-#. HNSTX
-#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:345
-msgctxt "hangulhanjaeditdictdialog|extended_tip|edit4"
-msgid "Type a suggested replacement for the entry that is selected in the Original text box. The replacement word can contain a maximum of eight characters."
-msgstr "Zadajte navrhovanú náhradu za položku, ktorá je vybraná v pôvodnom textovom poli. Náhradné slovo môže obsahovať maximálne osem znakov."
-
#. ZiDNN
-#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:367
+#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:330
msgctxt "hangulhanjaeditdictdialog|label3"
msgid "Suggestions"
msgstr "Návrhy"
@@ -10039,209 +8189,125 @@ msgid "Hangul/Hanja Options"
msgstr "Možnosti Hangul/Hanča"
#. TLs2q
-#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:124
+#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:127
msgctxt "hangulhanjaoptdialog|new"
msgid "New..."
msgstr "Nový..."
-#. hNjua
-#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:131
-msgctxt "hangulhanjaoptdialog|extended_tip|new"
-msgid "Opens the New dictionary dialog box, where you can create a new dictionary."
-msgstr "Otvára dialógové okno Nový slovník, kde môžete vytvoriť nový slovník."
-
#. UbGjT
-#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:143
+#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:141
msgctxt "hangulhanjaoptdialog|edit"
msgid "Edit..."
msgstr "Upraviť..."
-#. NKvWY
-#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:149
-msgctxt "hangulhanjaoptdialog|extended_tip|edit"
-msgid "Opens the Edit Custom Dictionary dialog where you can edit any user-defined dictionary."
-msgstr "Otvára dialógové okno Upraviť vlastný slovník, kde môžete upravovať ľubovoľný slovník definovaný používateľom."
-
-#. qML94
-#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:168
-msgctxt "hangulhanjaoptdialog|extended_tip|delete"
-msgid "Deletes the selected user-defined dictionary."
-msgstr "Odstráni vybraný používateľom definovaný slovník."
-
-#. v7Bkk
-#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:233
-msgctxt "hangulhanjaoptdialog|extended_tip|dicts"
-msgid "Lists all user-defined dictionaries. Select the check box next to the dictionary that you want to use. Clear the check box next to the dictionary that you do not want to use."
-msgstr "Uvádza zoznam všetkých používateľom definovaných slovníkov. Zaškrtnite políčko vedľa slovníka, ktorý chcete použiť. Zrušte zaškrtnutie políčka vedľa slovníka, ktorý nechcete použiť."
-
#. DmfuX
-#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:252
+#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:235
msgctxt "hangulhanjaoptdialog|label1"
msgid "User-defined Dictionaries"
msgstr "Používateľom definované slovníky"
#. DEoRc
-#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:283
+#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:266
msgctxt "hangulhanjaoptdialog|ignorepost"
msgid "Ignore post-positional word"
msgstr "Ignorovať slovo za umiestnením"
-#. B4zEG
-#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:292
-msgctxt "hangulhanjaoptdialog|extended_tip|ignorepost"
-msgid "Ignores positional characters at the end of Korean words when you search a dictionary."
-msgstr "Pri prehľadávaní slovníka ignoruje pozičné znaky na konci kórejských slov."
-
#. EEKAT
-#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:303
+#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:281
msgctxt "hangulhanjaoptdialog|showrecentfirst"
msgid "Show recently used entries first"
msgstr "Najprv zobraziť naposledy použité položky"
-#. aqATS
-#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:312
-msgctxt "hangulhanjaoptdialog|extended_tip|showrecentfirst"
-msgid "Shows the replacement suggestion that you selected the last time as the first entry on the list."
-msgstr "Zobrazuje návrh na nahradenie, ktorý ste vybrali naposledy ako prvý záznam v zozname."
-
#. MKAyM
-#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:323
+#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:296
msgctxt "hangulhanjaoptdialog|autoreplaceunique"
msgid "Replace all unique entries automatically"
msgstr "Automaticky nahradiť všetky jedinečné položky"
-#. HerDJ
-#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:332
-msgctxt "hangulhanjaoptdialog|extended_tip|autoreplaceunique"
-msgid "Automatically replaces words that only have one suggested word replacement."
-msgstr "Automaticky nahradí slová, ktoré majú iba jednu navrhnutú náhradu."
-
#. Bdqne
-#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:349
+#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:317
msgctxt "hangulhanjaoptdialog|label2"
msgid "Options"
msgstr "Možnosti"
-#. UaXFU
-#: cui/uiconfig/ui/hatchpage.ui:89
-msgctxt "hatchpage|extended_tip|add"
-msgid "Adds a custom hatching pattern to the current list. Specify the properties of your hatching pattern, and then click this button."
-msgstr "Pridá vlastný šrafovací vzor do aktuálneho zoznamu. Zadajte vlastnosti šrafovacieho vzoru a potom kliknite na toto tlačidlo."
-
#. TGiD7
-#: cui/uiconfig/ui/hatchpage.ui:101
+#: cui/uiconfig/ui/hatchpage.ui:96
msgctxt "hatchpage|modify"
msgid "_Modify"
msgstr "Použ_iť"
-#. 5VuZv
-#: cui/uiconfig/ui/hatchpage.ui:108
-msgctxt "hatchpage|extended_tip|modify"
-msgid "Applies the current hatching properties to the selected hatching pattern. If you want, you can save the pattern under a different name."
-msgstr "Použije aktuálne vlastnosti šrafovania na vybraný šrafovací vzor. Ak chcete, môžete vzor uložiť pod iným názvom."
-
#. U8bWc
-#: cui/uiconfig/ui/hatchpage.ui:133
+#: cui/uiconfig/ui/hatchpage.ui:123
msgctxt "hatchpage|label2"
msgid "Hatch"
msgstr "Šrafovanie"
#. HNCBu
-#: cui/uiconfig/ui/hatchpage.ui:174
+#: cui/uiconfig/ui/hatchpage.ui:164
msgctxt "hatchpage|distanceft"
msgid "_Spacing:"
msgstr "Rozo_stupy:"
-#. 5Psyb
-#: cui/uiconfig/ui/hatchpage.ui:192
-msgctxt "hatchpage|extended_tip|distancemtr"
-msgid "Enter the amount of space that you want to have between the hatch lines."
-msgstr "Zadajte veľkosť medzery medzi šrafovacími čiarami."
-
#. spGWy
-#: cui/uiconfig/ui/hatchpage.ui:206
+#: cui/uiconfig/ui/hatchpage.ui:191
msgctxt "hatchpage|angleft"
msgid "A_ngle:"
msgstr "_Uhol:"
-#. UBmvt
-#: cui/uiconfig/ui/hatchpage.ui:243
-msgctxt "hatchpage|extended_tip|anglemtr"
-msgid "Enter the rotation angle for the hatch lines, or click a position in the angle grid."
-msgstr "Zadajte uhol natočenia šrafovacích čiar alebo kliknite na pozíciu v mriežke uhlov."
-
#. sEriJ
-#: cui/uiconfig/ui/hatchpage.ui:264
+#: cui/uiconfig/ui/hatchpage.ui:244
msgctxt "hatchpage|linetypeft"
msgid "_Line type:"
msgstr "_Typ čiary:"
#. mv3sN
-#: cui/uiconfig/ui/hatchpage.ui:280
+#: cui/uiconfig/ui/hatchpage.ui:260
msgctxt "hatchpage|linetypelb"
msgid "Single"
msgstr "Jediné"
#. 7DR7B
-#: cui/uiconfig/ui/hatchpage.ui:281
+#: cui/uiconfig/ui/hatchpage.ui:261
msgctxt "hatchpage|linetypelb"
msgid "Crossed"
msgstr "Skrížené"
#. EBDMC
-#: cui/uiconfig/ui/hatchpage.ui:282
+#: cui/uiconfig/ui/hatchpage.ui:262
msgctxt "hatchpage|linetypelb"
msgid "Triple"
msgstr "Trojité"
-#. ZpygN
-#: cui/uiconfig/ui/hatchpage.ui:286
-msgctxt "hatchpage|extended_tip|linetypelb"
-msgid "Select the type of hatch lines that you want to use."
-msgstr "Vyberte typ šrafovacích čiar, ktoré chcete použiť."
-
#. VyTto
-#: cui/uiconfig/ui/hatchpage.ui:300
+#: cui/uiconfig/ui/hatchpage.ui:275
msgctxt "hatchpage|linecolorft"
msgid "Line _color:"
msgstr "_Farba čiary:"
-#. AwxCA
-#: cui/uiconfig/ui/hatchpage.ui:325
-msgctxt "hatchpage|extended_tip|linecolorlb"
-msgid "Select the color of the hatch lines."
-msgstr "Vyberte farbu šrafovacích čiar."
-
#. 3hgCJ
-#: cui/uiconfig/ui/hatchpage.ui:337
+#: cui/uiconfig/ui/hatchpage.ui:307
msgctxt "hatchpage|backgroundcolor"
msgid "Background Color"
msgstr "Farba pozadia"
#. uvmDA
-#: cui/uiconfig/ui/hatchpage.ui:384
+#: cui/uiconfig/ui/hatchpage.ui:354
msgctxt "hatchpage|propfl"
msgid "Options"
msgstr "Možnosti"
#. D8ovo
-#: cui/uiconfig/ui/hatchpage.ui:434
+#: cui/uiconfig/ui/hatchpage.ui:404
msgctxt "hatchpage|previewctl-atkobject"
msgid "Example"
msgstr "Príklad"
#. GbfFA
-#: cui/uiconfig/ui/hatchpage.ui:456
+#: cui/uiconfig/ui/hatchpage.ui:426
msgctxt "hatchpage|label1"
msgid "Preview"
msgstr "Náhľad"
-#. ZeF6M
-#: cui/uiconfig/ui/hatchpage.ui:472
-msgctxt "hatchpage|extended_tip|HatchPage"
-msgid "Set the properties of a hatching pattern, or save a new hatching pattern."
-msgstr "Nastavte vlastnosti šrafovacieho vzoru alebo uložte nový šrafovací vzor."
-
#. QqjhD
#: cui/uiconfig/ui/hyperlinkdialog.ui:10
msgctxt "hyperlinkdialog|HyperlinkDialog"
@@ -10249,79 +8315,61 @@ msgid "Hyperlink"
msgstr "Hypertextový odkaz"
#. FN68B
-#: cui/uiconfig/ui/hyperlinkdialog.ui:27
+#: cui/uiconfig/ui/hyperlinkdialog.ui:30
msgctxt "hyperlinkdialog|reset"
msgid "Reset"
msgstr "Obnoviť"
-#. 3B8Aq
-#: cui/uiconfig/ui/hyperlinkdialog.ui:33
-msgctxt "hyperlinkdialog|extended_tip|reset"
-msgid "Resets the entries in the dialog to their original state."
-msgstr "Obnoví pôvodný stav položiek v dialógovom okne."
-
#. n9DBf
-#: cui/uiconfig/ui/hyperlinkdialog.ui:45
+#: cui/uiconfig/ui/hyperlinkdialog.ui:43
msgctxt "hyperlinkdialog|apply"
msgid "Apply"
msgstr "Použiť"
-#. ixPEZ
-#: cui/uiconfig/ui/hyperlinkdialog.ui:51
-msgctxt "hyperlinkdialog|extended_tip|apply"
-msgid "Applies the data to your document."
-msgstr "Použije dáta na váš dokument."
-
-#. CS6kG
-#: cui/uiconfig/ui/hyperlinkdialog.ui:86
-msgctxt "hyperlinkdialog|extended_tip|cancel"
-msgid "Closes the dialog without saving."
-msgstr "Zatvorí dialógové okno bez uloženia."
-
#. SBQmF
-#: cui/uiconfig/ui/hyperlinkdialog.ui:168
+#: cui/uiconfig/ui/hyperlinkdialog.ui:156
msgctxt "hyperlinkdialog|RID_SVXSTR_HYPERDLG_HLINETTP_HELP"
msgid "This is where you create a hyperlink to a Web page or FTP server connection."
msgstr "Tu môžete vytvoriť odkaz na webovú stránku alebo FTP server."
#. 2H6BD
-#: cui/uiconfig/ui/hyperlinkdialog.ui:182
+#: cui/uiconfig/ui/hyperlinkdialog.ui:170
msgctxt "hyperlinkdialog|RID_SVXSTR_HYPERDLG_HLINETTP"
msgid "Internet"
msgstr "Internet"
#. TwuBW
-#: cui/uiconfig/ui/hyperlinkdialog.ui:240
+#: cui/uiconfig/ui/hyperlinkdialog.ui:228
msgctxt "hyperlinkdialog|RID_SVXSTR_HYPERDLG_HLMAILTP_HELP"
msgid "This is where you create a hyperlink to an email address."
msgstr "Tu môžete vytvoriť odkaz na e-mailovú adresu."
#. nocMA
-#: cui/uiconfig/ui/hyperlinkdialog.ui:254
+#: cui/uiconfig/ui/hyperlinkdialog.ui:242
msgctxt "hyperlinkdialog|RID_SVXSTR_HYPERDLG_HLMAILTP"
msgid "Mail"
msgstr "E-mail"
#. MXhAV
-#: cui/uiconfig/ui/hyperlinkdialog.ui:313
+#: cui/uiconfig/ui/hyperlinkdialog.ui:301
msgctxt "hyperlinkdialog|RID_SVXSTR_HYPERDLG_HLDOCTP_HELP"
msgid "This is where you create a hyperlink to an existing document or a target within a document."
msgstr "Tu môžete vytvoriť odkaz na existujúci dokument alebo cieľ vo vnútri dokumentu."
#. HkUh2
-#: cui/uiconfig/ui/hyperlinkdialog.ui:327
+#: cui/uiconfig/ui/hyperlinkdialog.ui:315
msgctxt "hyperlinkdialog|RID_SVXSTR_HYPERDLG_HLDOCTP"
msgid "Document"
msgstr "Dokument"
#. xFvuL
-#: cui/uiconfig/ui/hyperlinkdialog.ui:386
+#: cui/uiconfig/ui/hyperlinkdialog.ui:374
msgctxt "hyperlinkdialog|RID_SVXSTR_HYPERDLG_HLDOCNTP_HELP"
msgid "This is where you create a new document to which the new link points."
msgstr "Tu môžete vytvoriť nový dokument, na ktorý ukazuje nový odkaz."
#. ZprBE
-#: cui/uiconfig/ui/hyperlinkdialog.ui:400
+#: cui/uiconfig/ui/hyperlinkdialog.ui:388
msgctxt "hyperlinkdialog|RID_SVXSTR_HYPERDLG_HLDOCNTP"
msgid "New Document"
msgstr "Nový dokument"
@@ -10338,408 +8386,222 @@ msgctxt "hyperlinkdocpage|fileopen|tooltip_text"
msgid "Open File"
msgstr "Otvoriť súbor"
-#. mJQ7c
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:68
-msgctxt "hyperlinkdocpage|extended_tip|fileopen"
-msgid "Opens the Open dialog, where you can select a file."
-msgstr "Otvorí dialógové okno Otvoriť, kde môžete vybrať súbor."
-
-#. 9f5SN
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:91
-msgctxt "hyperlinkdocpage|extended_tip|path"
-msgid "Enter a URL for the file that you want to open when you click the hyperlink. If you do not specify a target frame, the file opens in the current document or frame."
-msgstr "Zadajte URL adresu súboru, ktorý chcete otvoriť po kliknutí na hypertextový odkaz. Ak nezadáte cieľový rámec, súbor sa otvorí v aktuálnom dokumente alebo rámci."
-
#. Ewn6K
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:108
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:98
msgctxt "hyperlinkdocpage|label2"
msgid "Document"
msgstr "Dokument"
#. pedja
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:144
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:134
msgctxt "hyperlinkdocpage|target_label"
msgid "Targ_et:"
msgstr "Ci_eľ:"
#. hUini
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:159
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:149
msgctxt "hyperlinkdocpage|url_label"
msgid "URL:"
msgstr "URL:"
#. zH7Fk
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:173
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:163
msgctxt "hyperlinkdocpage|browse|tooltip_text"
msgid "Target in Document"
msgstr "Cieľ v dokumente"
-#. wnXzL
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:178
-msgctxt "hyperlinkdocpage|extended_tip|browse"
-msgid "Opens the Target in Document dialog."
-msgstr "Otvorí dialógové okno Cieľ v dokumente."
-
-#. 3ndEf
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:194
-msgctxt "hyperlinkdocpage|extended_tip|target"
-msgid "Enter a URL for the file that you want to open when you click the hyperlink. If you do not specify a target frame, the file opens in the current document or frame."
-msgstr "Zadajte URL adresu súboru, ktorý chcete otvoriť po kliknutí na hypertextový odkaz. Ak nezadáte cieľový rámec, súbor sa otvorí v aktuálnom dokumente alebo rámci."
-
#. oUByt
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:209
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:189
msgctxt "hyperlinkdocpage|url"
msgid "Test text"
msgstr "Testovací text"
#. 8Gbv5
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:227
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:207
msgctxt "hyperlinkdocpage|label3"
msgid "Target in Document"
msgstr "Cieľ v dokumente"
#. VQxYG
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:266
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:246
msgctxt "hyperlinkdocpage|frame_label"
msgid "F_rame:"
msgstr "_Rámec:"
#. cFnPM
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:281
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:261
msgctxt "hyperlinkdocpage|indication_label"
msgid "Te_xt:"
msgstr "Te_xt:"
#. o2Fic
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:296
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:276
msgctxt "hyperlinkdocpage|name_label"
msgid "N_ame:"
msgstr "M_eno:"
-#. PuhGD
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:313
-msgctxt "hyperlinkdocpage|extended_tip|indication"
-msgid "Specifies the visible text or button caption for the hyperlink."
-msgstr "Určuje viditeľný text alebo popis tlačidla pre hypertextový odkaz."
-
-#. RszPA
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:329
-msgctxt "hyperlinkdocpage|extended_tip|name"
-msgid "Enter a name for the hyperlink."
-msgstr "Vloženie názvu pre hypertextový odkaz."
-
#. y3amv
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:349
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:319
msgctxt "hyperlinkdocpage|form_label"
msgid "F_orm:"
msgstr "F_orma:"
-#. 6TBzX
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:366
-msgctxt "hyperlinkdocpage|extended_tip|form"
-msgid "Specifies whether the hyperlink is inserted as text or as a button."
-msgstr "Určuje, či je hypertextový odkaz vložený ako text alebo ako tlačidlo."
-
#. sAAC7
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:380
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:345
msgctxt "hyperlinkdocpage|script|tooltip_text"
msgid "Events"
msgstr "Udalosti"
-#. EbFym
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:384
-msgctxt "hyperlinkdocpage|extended_tip|script"
-msgid "Opens the Assign Macro dialog, in which you can give events such as \"mouse over object\" or \"trigger hyperlink\" their own program codes."
-msgstr "Otvára dialógové okno Priradiť makro, v ktorom môžete priradiť udalostiam ako „prechod myšou nad objektom“ alebo „spustenie hypertextového odkazu“ svoje vlastné programové kódy."
-
-#. TXrCH
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:407
-msgctxt "hyperlinkdocpage|extended_tip|frame"
-msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
-msgstr "Zadajte názov rámca, v ktorom sa má otvoriť prepojený súbor, alebo vyberte preddefinovaný rámec v zozname. Ak ponecháte toto políčko prázdne, prepojený súbor sa otvorí v aktuálnom okne prehliadača."
-
#. frjow
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:430
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:385
msgctxt "hyperlinkdocpage|label1"
msgid "Further Settings"
msgstr "Ďalšie nastavenia"
-#. 789Vi
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:445
-msgctxt "hyperlinkdocpage|extended_tip|HyperlinkDocPage"
-msgid "Hyperlinks to any document or targets in documents can be edited using the Document tab from the Hyperlink dialog."
-msgstr "Hypertextové odkazy na akýkoľvek dokument alebo ciele v dokumentoch je možné upravovať pomocou karty Dokument v dialógovom okne Hypertextový odkaz."
-
#. BpE9F
#: cui/uiconfig/ui/hyperlinkinternetpage.ui:41
msgctxt "hyperlinkinternetpage|linktyp_internet"
msgid "_Web"
msgstr "_Web"
-#. wL4we
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:51
-msgctxt "hyperlinkinternetpage|extended_tip|linktyp_internet"
-msgid "Creates an \"http://\" hyperlink."
-msgstr "Vytvorí hypertextový odkaz „http://“."
-
#. HybDr
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:62
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:57
msgctxt "hyperlinkinternetpage|linktyp_ftp"
msgid "_FTP"
msgstr "_FTP"
-#. dHmZB
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:73
-msgctxt "hyperlinkinternetpage|extended_tip|linktyp_ftp"
-msgid "Creates an \"FTP://\" hyperlink."
-msgstr "Vytvorí hypertextový odkaz „FTP://“."
-
#. qgyrE
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:93
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:83
msgctxt "hyperlinkinternetpage|target_label"
msgid "_URL:"
msgstr "_URL:"
#. YLtwS
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:108
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:98
msgctxt "hyperlinkinternetpage|login_label"
msgid "_Login name:"
msgstr "_Prihlasovacie meno:"
#. GGnn8
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:123
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:113
msgctxt "hyperlinkinternetpage|password_label"
msgid "_Password:"
msgstr "_Heslo:"
-#. kVJEB
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:141
-msgctxt "hyperlinkinternetpage|extended_tip|login"
-msgid "Specifies your login name, if you are working with FTP addresses."
-msgstr "Určuje vaše prihlasovacie meno, ak pracujete s FTP adresami."
-
-#. cgWAc
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:158
-msgctxt "hyperlinkinternetpage|extended_tip|password"
-msgid "Specifies your password, if you are working with FTP addresses."
-msgstr "Ak pracujete s adresami FTP, zadajte svoje heslo."
-
#. HHhGY
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:169
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:149
msgctxt "hyperlinkinternetpage|anonymous"
msgid "Anonymous _user"
msgstr "Anonymný _používateľ"
-#. Ttx68
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:178
-msgctxt "hyperlinkinternetpage|extended_tip|anonymous"
-msgid "Allows you to log in to the FTP address as an anonymous user."
-msgstr "Umožňuje prihlásiť sa na FTP adresu ako anonymný používateľ."
-
-#. JwfAC
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:201
-msgctxt "hyperlinkinternetpage|extended_tip|target"
-msgid "Enter a URL for the file that you want to open when you click the hyperlink. If you do not specify a target frame, the file opens in the current document or frame."
-msgstr "Zadajte URL adresu súboru, ktorý chcete otvoriť po kliknutí na hypertextový odkaz. Ak nezadáte cieľový rámec, súbor sa otvorí v aktuálnom dokumente alebo rámci."
-
#. XhMm4
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:214
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:184
msgctxt "hyperlinkinternetpage|indication_label"
msgid "Te_xt:"
msgstr "Te_xt:"
-#. fFLgD
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:231
-msgctxt "hyperlinkinternetpage|extended_tip|indication"
-msgid "Specifies the visible text or button caption for the hyperlink."
-msgstr "Určuje viditeľný text alebo popis tlačidla pre hypertextový odkaz."
-
#. ABK2n
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:245
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:210
msgctxt "hyperlinkinternetpage|protocol_label"
msgid "Proto_col:"
msgstr "Proto_kol:"
#. MoZP7
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:266
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:231
msgctxt "hyperlinkinternetpage|label2"
msgid "Hyperlink Type"
msgstr "Typ hypertextového odkazu"
#. x4GDd
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:305
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:270
msgctxt "hyperlinkinternetpage|frame_label"
msgid "F_rame:"
msgstr "_Rámec:"
#. wiRZD
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:320
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:285
msgctxt "hyperlinkinternetpage|name_label"
msgid "Na_me:"
msgstr "_Názov:"
-#. ZdkMh
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:337
-msgctxt "hyperlinkinternetpage|extended_tip|name"
-msgid "Enter a name for the hyperlink."
-msgstr "Vloženie názvu pre hypertextový odkaz."
-
#. UG2wE
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:357
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:317
msgctxt "hyperlinkinternetpage|form_label"
msgid "F_orm:"
msgstr "F_orma:"
-#. QPMun
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:374
-msgctxt "hyperlinkinternetpage|extended_tip|form"
-msgid "Specifies whether the hyperlink is inserted as text or as a button."
-msgstr "Určuje, či je hypertextový odkaz vložený ako text alebo ako tlačidlo."
-
#. MyGFB
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:388
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:343
msgctxt "hyperlinkinternetpage|script|tooltip_text"
msgid "Events"
msgstr "Udalosti"
-#. sYWVn
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:392
-msgctxt "hyperlinkinternetpage|extended_tip|script"
-msgid "Opens the Assign Macro dialog, in which you can give events such as \"mouse over object\" or \"trigger hyperlink\" their own program codes."
-msgstr "Otvára dialógové okno Priradiť makro, v ktorom môžete priradiť udalostiam ako „prechod myšou nad objektom“ alebo „spustenie hypertextového odkazu“ svoje vlastné programové kódy."
-
-#. C5Hqs
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:415
-msgctxt "hyperlinkinternetpage|extended_tip|frame"
-msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
-msgstr "Zadajte názov rámca, v ktorom sa má otvoriť prepojený súbor, alebo vyberte preddefinovaný rámec v zozname. Ak ponecháte toto políčko prázdne, prepojený súbor sa otvorí v aktuálnom okne prehliadača."
-
#. UKQMX
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:438
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:383
msgctxt "hyperlinkinternetpage|label1"
msgid "Further Settings"
msgstr "Ďalšie nastavenia"
-#. 8UdTe
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:453
-msgctxt "hyperlinkinternetpage|extended_tip|HyperlinkInternetPage"
-msgid "Use the Internet page of the Hyperlink dialog to edit hyperlinks with WWW or FTP addresses."
-msgstr "Na úpravu hypertextových odkazov s webovými alebo FTP adresami použite položku Internetová stránka v dialógovom okne Hypertextový odkaz."
-
#. GKAsu
#: cui/uiconfig/ui/hyperlinkmailpage.ui:43
msgctxt "hyperlinkmailpage|receiver_label"
msgid "Re_cipient:"
msgstr "Prí_jemca:"
-#. 3Q6NE
+#. B5Axh
#: cui/uiconfig/ui/hyperlinkmailpage.ui:58
-msgctxt "hyperlinkmailpage|addressbook|tooltip_text"
+msgctxt "hyperlinkmailpage|adressbook|tooltip_text"
msgid "Data Sources..."
-msgstr ""
-
-#. mZ8Wv
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:63
-msgctxt "hyperlinkmailpage|extended_tip|addressbook"
-msgid "Hides or shows the data source browser."
-msgstr ""
+msgstr "Dátové zdroje..."
#. NJi4c
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:78
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:73
msgctxt "hyperlinkmailpage|subject_label"
msgid "_Subject:"
msgstr "P_redmet:"
-#. hseLC
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:96
-msgctxt "hyperlinkmailpage|extended_tip|subject"
-msgid "Specifies the subject that is inserted in the subject line of the new message document."
-msgstr "Určuje predmet, ktorý je vložený do riadku predmetu nového dokumentu správy."
-
-#. 8gCor
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:119
-msgctxt "hyperlinkmailpage|extended_tip|receiver"
-msgid "Assigns the specified email address to the hyperlink."
-msgstr "Priradí uvedenú e-mailovú adresu k hypertextovému odkazu."
-
#. eCvXD
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:148
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:133
msgctxt "hyperlinkmailpage|label2"
msgid "Mail"
msgstr "E-mail"
#. Rx7bX
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:187
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:172
msgctxt "hyperlinkmailpage|frame_label"
msgid "F_rame:"
msgstr "_Rámec:"
#. E6CWA
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:202
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:187
msgctxt "hyperlinkmailpage|indication_label"
msgid "Te_xt:"
msgstr "Te_xt:"
#. BjAaB
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:217
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:202
msgctxt "hyperlinkmailpage|name_label"
msgid "N_ame:"
msgstr "M_eno:"
-#. PJMVD
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:234
-msgctxt "hyperlinkmailpage|extended_tip|indication"
-msgid "Specifies the visible text or button caption for the hyperlink."
-msgstr "Určuje viditeľný text alebo popis tlačidla pre hypertextový odkaz."
-
-#. pJbde
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:250
-msgctxt "hyperlinkmailpage|extended_tip|name"
-msgid "Enter a name for the hyperlink."
-msgstr "Vloženie názvu pre hypertextový odkaz."
-
#. zkpdN
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:270
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:245
msgctxt "hyperlinkmailpage|form_label"
msgid "F_orm:"
msgstr "F_orma:"
-#. ckEPR
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:287
-msgctxt "hyperlinkmailpage|extended_tip|form"
-msgid "Specifies whether the hyperlink is inserted as text or as a button."
-msgstr "Určuje, či je hypertextový odkaz vložený ako text alebo ako tlačidlo."
-
#. 7wzYs
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:301
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:271
msgctxt "hyperlinkmailpage|script|tooltip_text"
msgid "Events"
msgstr "Udalosti"
-#. rukYs
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:305
-msgctxt "hyperlinkmailpage|extended_tip|script"
-msgid "Opens the Assign Macro dialog, in which you can give events such as \"mouse over object\" or \"trigger hyperlink\" their own program codes."
-msgstr "Otvára dialógové okno Priradiť makro, v ktorom môžete priradiť udalostiam ako „prechod myšou nad objektom“ alebo „spustenie hypertextového odkazu“ svoje vlastné programové kódy."
-
-#. CwHdi
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:328
-msgctxt "hyperlinkmailpage|extended_tip|frame"
-msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
-msgstr "Zadajte názov rámca, v ktorom sa má otvoriť prepojený súbor, alebo vyberte preddefinovaný rámec v zozname. Ak ponecháte toto políčko prázdne, prepojený súbor sa otvorí v aktuálnom okne prehliadača."
-
#. BmHDh
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:351
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:311
msgctxt "hyperlinkmailpage|label1"
msgid "Further Settings"
msgstr "Ďalšie nastavenia"
-#. SvyDu
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:366
-msgctxt "hyperlinkmailpage|extended_tip|HyperlinkMailPage"
-msgid "On the Mail page in the Hyperlink dialog you can edit hyperlinks for email addresses."
-msgstr "Na stránke Pošta v dialógovom okne Hypertextový odkaz môžete upraviť hypertextové odkazy na e-mailové adresy."
-
#. FiqBU
#: cui/uiconfig/ui/hyperlinkmarkdialog.ui:18
msgctxt "hyperlinkmarkdialog|HyperlinkMark"
@@ -10747,173 +8609,95 @@ msgid "Target in Document"
msgstr "Cieľ v dokumente"
#. JRUcA
-#: cui/uiconfig/ui/hyperlinkmarkdialog.ui:33
+#: cui/uiconfig/ui/hyperlinkmarkdialog.ui:36
msgctxt "hyperlinkmarkdialog|apply"
msgid "_Apply"
msgstr "_Použiť"
#. jWKYr
-#: cui/uiconfig/ui/hyperlinkmarkdialog.ui:49
+#: cui/uiconfig/ui/hyperlinkmarkdialog.ui:52
msgctxt "hyperlinkmarkdialog|close"
msgid "_Close"
msgstr "_Zatvoriť"
-#. CLEQK
-#: cui/uiconfig/ui/hyperlinkmarkdialog.ui:56
-msgctxt "hyperlinkmarkdialog|extended_tip|close"
-msgid "Once the hyperlink has been completely entered, click on Close to set the link and leave the dialog."
-msgstr "Po úplnom zadaní hypertextového odkazu kliknite na tlačidlo Zavrieť, čím nastavíte odkaz a opustíte dialógové okno."
-
#. P5DCe
-#: cui/uiconfig/ui/hyperlinkmarkdialog.ui:122
+#: cui/uiconfig/ui/hyperlinkmarkdialog.ui:121
msgctxt "hyperlinkmarkdialog|TreeListBox-atkobject"
msgid "Mark Tree"
msgstr "Označiť strom"
-#. iBoH5
-#: cui/uiconfig/ui/hyperlinkmarkdialog.ui:123
-msgctxt "hyperlinkmarkdialog|extended_tip|TreeListBox"
-msgid "Specifies the position in the target document where you wish to jump to."
-msgstr "Určuje pozíciu v cieľovom dokumente, na ktorú chcete prejsť."
-
#. tHygQ
#: cui/uiconfig/ui/hyperlinknewdocpage.ui:57
msgctxt "hyperlinknewdocpage|editnow"
msgid "Edit _now"
msgstr "Upraviť _teraz"
-#. DENWb
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:67
-msgctxt "hyperlinknewdocpage|extended_tip|editnow"
-msgid "Specifies that the new document is created and immediately opened for editing."
-msgstr "Určuje, že nový dokument sa vytvorí a okamžite otvorí na úpravy."
-
#. YAeDk
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:78
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:73
msgctxt "hyperlinknewdocpage|editlater"
msgid "Edit _later"
msgstr "Upraviť _neskôr"
-#. CD5y6
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:89
-msgctxt "hyperlinknewdocpage|extended_tip|editlater"
-msgid "Specifies that the document is created but it is not immediately opened."
-msgstr "Určuje, že dokument je vytvorený, ale nie je okamžite otvorený."
-
#. DqCc6
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:109
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:99
msgctxt "hyperlinknewdocpage|file_label"
msgid "_File:"
msgstr "_Súbor:"
#. PDNz4
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:124
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:114
msgctxt "hyperlinknewdocpage|create|tooltip_text"
msgid "Select Path"
msgstr "Vybrať cestu"
-#. FPajM
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:129
-msgctxt "hyperlinknewdocpage|extended_tip|create"
-msgid "Opens the Select Path dialog, where you can select a path."
-msgstr "Otvára dialógové okno Vybrať cestu, kde môžete vybrať cestu."
-
#. NKd9R
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:144
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:129
msgctxt "hyperlinknewdocpage|types_label"
msgid "File _type:"
msgstr "_Typ súboru:"
-#. TRstM
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:169
-msgctxt "hyperlinknewdocpage|extended_tip|path"
-msgid "Enter a URL for the file that you want to open when you click the hyperlink."
-msgstr "Zadajte URL adresu súboru, ktorý chcete otvoriť po kliknutí na hypertextový odkaz."
-
-#. Ee4g2
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:209
-msgctxt "hyperlinknewdocpage|extended_tip|types"
-msgid "Specifies the file type for the new document."
-msgstr "Určuje typ súboru pre nový dokument."
-
#. 9TYuE
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:237
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:212
msgctxt "hyperlinknewdocpage|label2"
msgid "New Document"
msgstr "Nový dokument"
#. uChAF
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:276
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:251
msgctxt "hyperlinknewdocpage|frame_label"
msgid "F_rame:"
msgstr "_Rámec:"
#. NG5VC
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:291
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:266
msgctxt "hyperlinknewdocpage|indication_label"
msgid "Te_xt:"
msgstr "Te_xt:"
#. SVEq9
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:306
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:281
msgctxt "hyperlinknewdocpage|name_label"
msgid "N_ame:"
msgstr "M_eno:"
-#. J9DQE
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:323
-msgctxt "hyperlinknewdocpage|extended_tip|indication"
-msgid "Specifies the visible text or button caption for the hyperlink."
-msgstr "Určuje viditeľný text alebo popis tlačidla pre hypertextový odkaz."
-
-#. FExJ9
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:339
-msgctxt "hyperlinknewdocpage|extended_tip|name"
-msgid "Enter a name for the hyperlink."
-msgstr "Vloženie názvu pre hypertextový odkaz."
-
#. cSknQ
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:359
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:324
msgctxt "hyperlinknewdocpage|form_label"
msgid "F_orm:"
msgstr "F_orma:"
-#. fARTX
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:375
-msgctxt "hyperlinknewdocpage|extended_tip|form"
-msgid "Specifies whether the hyperlink is inserted as text or as a button."
-msgstr "Určuje, či je hypertextový odkaz vložený ako text alebo ako tlačidlo."
-
#. 5xVHb
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:389
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:349
msgctxt "hyperlinknewdocpage|script|tooltip_text"
msgid "Events"
msgstr "Udalosti"
-#. MikBD
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:393
-msgctxt "hyperlinknewdocpage|extended_tip|script"
-msgid "Opens the Assign Macro dialog, in which you can give events such as \"mouse over object\" or \"trigger hyperlink\" their own program codes."
-msgstr "Otvára dialógové okno Priradiť makro, v ktorom môžete priradiť udalostiam ako „prechod myšou nad objektom“ alebo „spustenie hypertextového odkazu“ svoje vlastné programové kódy."
-
-#. rXaNm
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:416
-msgctxt "hyperlinknewdocpage|extended_tip|frame"
-msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
-msgstr "Zadajte názov rámca, v ktorom sa má otvoriť prepojený súbor, alebo vyberte preddefinovaný rámec v zozname. Ak ponecháte toto políčko prázdne, prepojený súbor sa otvorí v aktuálnom okne prehliadača."
-
#. MS2Cn
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:439
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:389
msgctxt "hyperlinknewdocpage|label1"
msgid "Further Settings"
msgstr "Ďalšie nastavenia"
-#. ztAbs
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:454
-msgctxt "hyperlinknewdocpage|extended_tip|HyperlinkNewDocPage"
-msgid "Use the New Document tab from the Hyperlink dialog to set up a hyperlink to a new document and create the new document simultaneously."
-msgstr "Na karte Nový dokument v dialógovom okne Hypertextový odkaz môžete vytvoriť hypertextový odkaz na nový dokument a súčasne vytvoriť nový dokument."
-
#. XkDqc
#: cui/uiconfig/ui/hyphenate.ui:18
msgctxt "hyphenate|HyphenateDialog"
@@ -10921,71 +8705,29 @@ msgid "Hyphenation"
msgstr "Delenie slov"
#. N4zDD
-#: cui/uiconfig/ui/hyphenate.ui:50
+#: cui/uiconfig/ui/hyphenate.ui:53
msgctxt "hyphenate|hyphall"
msgid "Hyphenate All"
msgstr "Deliť všetky slová"
#. TraEA
-#: cui/uiconfig/ui/hyphenate.ui:100
+#: cui/uiconfig/ui/hyphenate.ui:103
msgctxt "hyphenate|ok"
msgid "Hyphenate"
msgstr "Rozdeliť"
-#. 843cx
-#: cui/uiconfig/ui/hyphenate.ui:108
-msgctxt "hyphenate|extended_tip|ok"
-msgid "Inserts the hyphen at the indicated position."
-msgstr "Vloží pomlčku na určené miesto v slove."
-
#. gEGtP
-#: cui/uiconfig/ui/hyphenate.ui:120
+#: cui/uiconfig/ui/hyphenate.ui:118
msgctxt "hyphenate|continue"
msgid "Skip"
msgstr "Preskočiť"
-#. JqhEE
-#: cui/uiconfig/ui/hyphenate.ui:126
-msgctxt "hyphenate|extended_tip|continue"
-msgid "Ignores the hyphenation suggestion and finds the next word to hyphenate."
-msgstr "Ignoruje návrh na delenie slov a nájde ďalšie slovo na delenie."
-
-#. zXLRC
-#: cui/uiconfig/ui/hyphenate.ui:145
-msgctxt "hyphenate|extended_tip|delete"
-msgid "Removes the current hyphenation point from the displayed word."
-msgstr "Odstráni aktuálny bod rozdelenia zo zobrazeného slova."
-
#. dsjvf
-#: cui/uiconfig/ui/hyphenate.ui:165
+#: cui/uiconfig/ui/hyphenate.ui:153
msgctxt "hyphenate|label1"
msgid "Word:"
msgstr "Slovo:"
-#. fvcRg
-#: cui/uiconfig/ui/hyphenate.ui:193
-msgctxt "hyphenate|extended_tip|worded"
-msgid "Displays the hyphenation suggestion(s) for the selected word."
-msgstr "Zobrazí návrhy delenia pre vybrané slovo."
-
-#. HAF8G
-#: cui/uiconfig/ui/hyphenate.ui:212
-msgctxt "hyphenate|extended_tip|left"
-msgid "Set the position of the hyphen. This option is only available if more than one hyphenation suggestion is displayed."
-msgstr "Nastavte pozíciu rozdeľovacieho znamienka. Táto možnosť je k dispozícii, iba ak je zobrazených viac ako jeden návrh delenia slov."
-
-#. 5gKXt
-#: cui/uiconfig/ui/hyphenate.ui:230
-msgctxt "hyphenate|extended_tip|right"
-msgid "Set the position of the hyphen. This option is only available if more than one hyphenation suggestion is displayed."
-msgstr "Nastavte pozíciu rozdeľovacieho znamienka. Táto možnosť je k dispozícii, iba ak je zobrazených viac ako jeden návrh delenia slov."
-
-#. 8QHd8
-#: cui/uiconfig/ui/hyphenate.ui:268
-msgctxt "hyphenate|extended_tip|HyphenateDialog"
-msgid "Inserts hyphens in words that are too long to fit at the end of a line."
-msgstr "Vloží rozdeľovacie znamienka do slov, ktoré sú príliš dlhé na to, aby sa zmestili na koniec riadku."
-
#. HGCp4
#: cui/uiconfig/ui/iconchangedialog.ui:61
msgctxt "iconchangedialog|label1"
@@ -11003,37 +8745,25 @@ msgid "Change Icon"
msgstr "Zmeniť ikonu"
#. qZXP7
-#: cui/uiconfig/ui/iconselectordialog.ui:145
+#: cui/uiconfig/ui/iconselectordialog.ui:148
msgctxt "iconselectordialog|label1"
msgid "_Icons"
msgstr "_Ikony"
#. ZyFG4
-#: cui/uiconfig/ui/iconselectordialog.ui:168
+#: cui/uiconfig/ui/iconselectordialog.ui:171
msgctxt "iconselectordialog|importButton"
msgid "I_mport..."
msgstr "I_mportovať..."
-#. rAyQo
-#: cui/uiconfig/ui/iconselectordialog.ui:175
-msgctxt "iconselectordialog|extended_tip|importButton"
-msgid "Adds new icons to the list of icons. You see a file open dialog that imports the selected icon or icons into the internal icon directory of %PRODUCTNAME."
-msgstr "Pridá nové ikony do zoznamu ikon. Zobrazí sa dialógové okno na otvorenie súboru, ktorým sa importuje vybraná ikona alebo ikony do interného adresára s ikonami produktu %PRODUCTNAME."
-
#. 46d7Z
-#: cui/uiconfig/ui/iconselectordialog.ui:187
+#: cui/uiconfig/ui/iconselectordialog.ui:185
msgctxt "iconselectordialog|deleteButton"
msgid "_Delete..."
msgstr "_Odstrániť..."
-#. MEMzu
-#: cui/uiconfig/ui/iconselectordialog.ui:194
-msgctxt "iconselectordialog|extended_tip|deleteButton"
-msgid "Click to remove the selected icon from the list. Only user-defined icons can be removed."
-msgstr "Kliknutím odstránite vybranú ikonu zo zoznamu. Odstrániť možno iba ikony definované používateľom."
-
#. C4HU9
-#: cui/uiconfig/ui/iconselectordialog.ui:223
+#: cui/uiconfig/ui/iconselectordialog.ui:216
msgctxt "iconselectordialog|noteLabel"
msgid ""
"Note:\n"
@@ -11050,174 +8780,96 @@ msgctxt "insertfloatingframe|InsertFloatingFrameDialog"
msgid "Floating Frame Properties"
msgstr "Vlastnosti plávajúceho rámca"
-#. DckNs
-#: cui/uiconfig/ui/insertfloatingframe.ui:105
-msgctxt "insertfloatingframe|extended_tip|edname"
-msgid "Enter a name for the floating frame. The name cannot contain spaces, special characters, or begin with an underscore (_)."
-msgstr "Zadajte názov plávajúceho rámca. Názov nesmie obsahovať medzery, špeciálne znaky ani začínať podčiarkovníkom (_)."
-
-#. dxeqd
-#: cui/uiconfig/ui/insertfloatingframe.ui:125
-msgctxt "insertfloatingframe|extended_tip|edurl"
-msgid "Enter the path and the name of the file that you want to display in the floating frame. You can also click the Browse button and locate the file that you want to display."
-msgstr "Zadajte cestu a názov súboru, ktorý chcete zobraziť v plávajúcom rámci. Môžete tiež kliknúť na tlačidlo Prehľadávať a vyhľadať súbor, ktorý chcete zobraziť."
-
#. 6Zg6E
-#: cui/uiconfig/ui/insertfloatingframe.ui:140
+#: cui/uiconfig/ui/insertfloatingframe.ui:133
msgctxt "insertfloatingframe|label6"
msgid "Name:"
msgstr "Názov:"
#. QFERc
-#: cui/uiconfig/ui/insertfloatingframe.ui:153
+#: cui/uiconfig/ui/insertfloatingframe.ui:146
msgctxt "insertfloatingframe|label7"
msgid "Contents:"
msgstr "Obsah:"
#. ExCGU
-#: cui/uiconfig/ui/insertfloatingframe.ui:162
+#: cui/uiconfig/ui/insertfloatingframe.ui:155
msgctxt "insertfloatingframe|buttonbrowse"
msgid "Browse..."
msgstr "Prehliadať..."
-#. EQDKW
-#: cui/uiconfig/ui/insertfloatingframe.ui:169
-msgctxt "insertfloatingframe|extended_tip|buttonbrowse"
-msgid "Locate the file that you want to display in the selected floating frame, and then click Open."
-msgstr "Vyhľadajte súbor, ktorý chcete zobraziť vo vybranom plávajúcom rámci, a potom kliknite na Otvoriť."
-
#. CFNgz
-#: cui/uiconfig/ui/insertfloatingframe.ui:210
+#: cui/uiconfig/ui/insertfloatingframe.ui:198
msgctxt "insertfloatingframe|scrollbaron"
msgid "On"
msgstr "Zapnúť"
-#. qobGp
-#: cui/uiconfig/ui/insertfloatingframe.ui:220
-msgctxt "insertfloatingframe|extended_tip|scrollbaron"
-msgid "Displays the scrollbar for the floating frame."
-msgstr "Zobrazí posúvač pre plávajúci rámec."
-
#. RTCXH
-#: cui/uiconfig/ui/insertfloatingframe.ui:232
+#: cui/uiconfig/ui/insertfloatingframe.ui:215
msgctxt "insertfloatingframe|scrollbaroff"
msgid "Off"
msgstr "Vypnúť"
-#. pdYYk
-#: cui/uiconfig/ui/insertfloatingframe.ui:242
-msgctxt "insertfloatingframe|extended_tip|scrollbaroff"
-msgid "Hides the scrollbar for the floating frame."
-msgstr "Skryje rolovaciu lištu pre plávajúci rámec."
-
#. iucHE
-#: cui/uiconfig/ui/insertfloatingframe.ui:254
+#: cui/uiconfig/ui/insertfloatingframe.ui:232
msgctxt "insertfloatingframe|scrollbarauto"
msgid "Automatic"
msgstr "Automatický"
-#. xEruo
-#: cui/uiconfig/ui/insertfloatingframe.ui:264
-msgctxt "insertfloatingframe|extended_tip|scrollbarauto"
-msgid "Mark this option if the currently active floating frame can have a scrollbar when needed."
-msgstr "Túto možnosť označte, ak práve aktívny pohyblivý rámec môže mať v prípade potreby posúvač."
-
#. NTDhm
-#: cui/uiconfig/ui/insertfloatingframe.ui:282
+#: cui/uiconfig/ui/insertfloatingframe.ui:255
msgctxt "insertfloatingframe|label1"
msgid "Scroll Bar"
msgstr "Posúvač"
#. 9DUFs
-#: cui/uiconfig/ui/insertfloatingframe.ui:315
+#: cui/uiconfig/ui/insertfloatingframe.ui:288
msgctxt "insertfloatingframe|borderon"
msgid "On"
msgstr "Zapnúť"
-#. wE67j
-#: cui/uiconfig/ui/insertfloatingframe.ui:325
-msgctxt "insertfloatingframe|extended_tip|borderon"
-msgid "Displays the border of the floating frame."
-msgstr "Zobrazí okraj plávajúceho rámca."
-
#. P9vwv
-#: cui/uiconfig/ui/insertfloatingframe.ui:337
+#: cui/uiconfig/ui/insertfloatingframe.ui:305
msgctxt "insertfloatingframe|borderoff"
msgid "Off"
msgstr "Vypnúť"
-#. hEBTb
-#: cui/uiconfig/ui/insertfloatingframe.ui:347
-msgctxt "insertfloatingframe|extended_tip|borderoff"
-msgid "Hides the border of the floating frame."
-msgstr "Skryje okraj plávajúceho rámca."
-
#. xBDSb
-#: cui/uiconfig/ui/insertfloatingframe.ui:368
+#: cui/uiconfig/ui/insertfloatingframe.ui:331
msgctxt "insertfloatingframe|label2"
msgid "Border"
msgstr "Orámovanie"
#. RAz7e
-#: cui/uiconfig/ui/insertfloatingframe.ui:404
+#: cui/uiconfig/ui/insertfloatingframe.ui:367
msgctxt "insertfloatingframe|widthlabel"
msgid "Width:"
msgstr "Šírka:"
#. DMLy9
-#: cui/uiconfig/ui/insertfloatingframe.ui:417
+#: cui/uiconfig/ui/insertfloatingframe.ui:380
msgctxt "insertfloatingframe|heightlabel"
msgid "Height:"
msgstr "Výška:"
-#. ieZRs
-#: cui/uiconfig/ui/insertfloatingframe.ui:434
-msgctxt "insertfloatingframe|extended_tip|width"
-msgid "Enter the amount of horizontal space that you want to leave between the right and the left edges of the floating frame and the contents of the frame. Both documents inside and outside the floating frame must be HTML documents."
-msgstr "Zadajte veľkosť vodorovného priestoru, ktorý chcete ponechať medzi pravým a ľavým okrajom plávajúceho rámca a obsahom rámca. Dokumenty vo vnútri aj mimo plávajúceho rámca musia byť dokumenty HTML."
-
-#. R35J9
-#: cui/uiconfig/ui/insertfloatingframe.ui:452
-msgctxt "insertfloatingframe|extended_tip|height"
-msgid "Enter the amount of vertical space that you want to leave between the top and bottom edges of the floating frame and the contents of the frame. Both documents inside and outside the floating frame must be HTML documents."
-msgstr "Zadajte veľkosť vertikálneho priestoru, ktorý chcete ponechať medzi horným a dolným okrajom plávajúceho rámca a obsahom rámca. Dokumenty vo vnútri aj mimo plávajúceho rámca musia byť dokumenty HTML."
-
#. EEPAq
-#: cui/uiconfig/ui/insertfloatingframe.ui:463
+#: cui/uiconfig/ui/insertfloatingframe.ui:416
msgctxt "insertfloatingframe|defaultwidth"
msgid "Default"
msgstr "Predvolené"
-#. NSmeU
-#: cui/uiconfig/ui/insertfloatingframe.ui:472
-msgctxt "insertfloatingframe|extended_tip|defaultwidth"
-msgid "Applies the default horizontal spacing."
-msgstr "Použije predvolené vodorovné rozostupy."
-
#. dQ8BY
-#: cui/uiconfig/ui/insertfloatingframe.ui:483
+#: cui/uiconfig/ui/insertfloatingframe.ui:431
msgctxt "insertfloatingframe|defaultheight"
msgid "Default"
msgstr "Predvolené"
-#. vjLip
-#: cui/uiconfig/ui/insertfloatingframe.ui:492
-msgctxt "insertfloatingframe|extended_tip|defaultheight"
-msgid "Applies the default vertical spacing."
-msgstr "Použije predvolené zvislé rozstupy."
-
#. YqkF7
-#: cui/uiconfig/ui/insertfloatingframe.ui:509
+#: cui/uiconfig/ui/insertfloatingframe.ui:452
msgctxt "insertfloatingframe|label3"
msgid "Padding"
msgstr "Odstup"
-#. Ehuh3
-#: cui/uiconfig/ui/insertfloatingframe.ui:549
-msgctxt "insertfloatingframe|extended_tip|InsertFloatingFrameDialog"
-msgid "Changes the properties of the selected floating frame. Floating frames work best when they contain an html document, and when they are inserted in another html document."
-msgstr "Zmení vlastnosti vybraného plávajúceho rámca. Plávajúce rámce fungujú najlepšie, keď obsahujú html dokument a keď sú vložené do iného html dokumentu."
-
#. DHyVM
#: cui/uiconfig/ui/insertoleobject.ui:16
msgctxt "insertoleobject|InsertOLEObjectDialog"
@@ -11225,59 +8877,47 @@ msgid "Insert OLE Object"
msgstr "Vložiť objekt OLE"
#. APCbM
-#: cui/uiconfig/ui/insertoleobject.ui:100
+#: cui/uiconfig/ui/insertoleobject.ui:103
msgctxt "insertoleobject|createnew"
msgid "Create new"
msgstr "Vytvoriť nový"
#. g7yF2
-#: cui/uiconfig/ui/insertoleobject.ui:117
+#: cui/uiconfig/ui/insertoleobject.ui:120
msgctxt "insertoleobject|createfromfile"
msgid "Create from file"
msgstr "Vytvoriť zo súboru"
#. JcNDd
-#: cui/uiconfig/ui/insertoleobject.ui:197
+#: cui/uiconfig/ui/insertoleobject.ui:200
msgctxt "insertoleobject|label1"
msgid "Object Type"
msgstr "Typ objektu"
#. GYhtz
-#: cui/uiconfig/ui/insertoleobject.ui:243
+#: cui/uiconfig/ui/insertoleobject.ui:246
msgctxt "insertoleobject|urlbtn"
msgid "Search…"
msgstr "Hľadať..."
#. PL3Eq
-#: cui/uiconfig/ui/insertoleobject.ui:256
+#: cui/uiconfig/ui/insertoleobject.ui:259
msgctxt "insertoleobject|linktofile"
msgid "Link to file"
msgstr "Odkaz na súbor"
-#. FDCFK
-#: cui/uiconfig/ui/insertoleobject.ui:265
-msgctxt "insertoleobject|extended_tip|linktofile"
-msgid "Enable this checkbox to insert the OLE object as a link to the original file. If this checkbox is not enabled, the OLE object will be embedded into your document."
-msgstr "Zaškrtnutím tohto poľa vložíte objekt OLE ako odkaz na pôvodný súbor. Ak toto zaškrtávacie pole nie je zaškrtnuté, objekt OLE sa vloží do dokumentu priamo."
-
#. G8yfb
-#: cui/uiconfig/ui/insertoleobject.ui:276
+#: cui/uiconfig/ui/insertoleobject.ui:274
msgctxt "insertoleobject|asicon"
msgid "Display as icon"
msgstr "Zobraziť ako ikonu"
#. ry68g
-#: cui/uiconfig/ui/insertoleobject.ui:298
+#: cui/uiconfig/ui/insertoleobject.ui:296
msgctxt "insertoleobject|label2"
msgid "File"
msgstr "Súbor"
-#. wdBbV
-#: cui/uiconfig/ui/insertoleobject.ui:331
-msgctxt "insertoleobject|extended_tip|InsertOLEObjectDialog"
-msgid "Inserts an OLE object into the current document. The OLE object is inserted as a link or an embedded object."
-msgstr "Vloží objekt OLE do aktuálneho dokumentu. Objekt OLE je vložený ako odkaz alebo ako vložený objekt."
-
#. BCgnf
#: cui/uiconfig/ui/insertrowcolumn.ui:15
msgctxt "insertrowcolumn|InsertRowColumnDialog"
@@ -11290,44 +8930,26 @@ msgctxt "insertrowcolumn|label3"
msgid "_Number:"
msgstr "_Počet:"
-#. P5PWM
-#: cui/uiconfig/ui/insertrowcolumn.ui:128
-msgctxt "insertrowcolumn|extended_tip|insert_number"
-msgid "Enter the number of columns or rows that you want."
-msgstr "Zadajte požadovaný počet stĺpcov alebo riadkov."
-
#. nEwTY
-#: cui/uiconfig/ui/insertrowcolumn.ui:145
+#: cui/uiconfig/ui/insertrowcolumn.ui:140
msgctxt "insertrowcolumn|label1"
msgid "Insert"
msgstr "Vložiť"
#. xdCAE
-#: cui/uiconfig/ui/insertrowcolumn.ui:176
+#: cui/uiconfig/ui/insertrowcolumn.ui:171
msgctxt "insertrowcolumn|insert_before"
msgid "_Before"
msgstr "_Pred"
-#. bX93d
-#: cui/uiconfig/ui/insertrowcolumn.ui:186
-msgctxt "insertrowcolumn|extended_tip|insert_before"
-msgid "Adds new columns to the left of the current column, or adds new rows above the current row."
-msgstr "Pridá nové stĺpce naľavo od aktuálneho stĺpca alebo pridá nové riadky nad aktuálnym riadkom."
-
#. ZmEKX
-#: cui/uiconfig/ui/insertrowcolumn.ui:198
+#: cui/uiconfig/ui/insertrowcolumn.ui:188
msgctxt "insertrowcolumn|insert_after"
msgid "A_fter"
msgstr "_Za"
-#. Rqgws
-#: cui/uiconfig/ui/insertrowcolumn.ui:208
-msgctxt "insertrowcolumn|extended_tip|insert_after"
-msgid "Adds new columns to the right of the current column, or adds new rows below the current row."
-msgstr "Pridá nové stĺpce napravo od aktuálneho stĺpca alebo pridá nové riadky pod aktuálnym riadkom."
-
#. mS7YV
-#: cui/uiconfig/ui/insertrowcolumn.ui:226
+#: cui/uiconfig/ui/insertrowcolumn.ui:211
msgctxt "insertrowcolumn|label2"
msgid "Position"
msgstr "Poloha"
@@ -11344,54 +8966,24 @@ msgctxt "javaclasspathdialog|label1"
msgid "A_ssigned folders and archives"
msgstr "P_riradené priečinky a archívy"
-#. ERHh7
-#: cui/uiconfig/ui/javaclasspathdialog.ui:158
-msgctxt "extended_tip|paths"
-msgid "Specifies the location of Java classes or Java class libraries."
-msgstr "Určuje umiestnenie tried Java a knižníc tried Java."
-
#. 5cgAY
-#: cui/uiconfig/ui/javaclasspathdialog.ui:185
+#: cui/uiconfig/ui/javaclasspathdialog.ui:180
msgctxt "javaclasspathdialog|archive"
msgid "_Add Archive..."
msgstr "Prid_ať archív..."
-#. xV5SQ
-#: cui/uiconfig/ui/javaclasspathdialog.ui:192
-msgctxt "extended_tip|archive"
-msgid "Select an archive file in jar or zip format and add the file to the class path."
-msgstr "Vyberte archív vo formáte jar alebo zip, ktorý chcete pridať do cesty k triedam."
-
#. LBBVG
-#: cui/uiconfig/ui/javaclasspathdialog.ui:204
+#: cui/uiconfig/ui/javaclasspathdialog.ui:194
msgctxt "javaclasspathdialog|folder"
msgid "Add _Folder"
msgstr "Pri_dať priečinok"
-#. WP9Eo
-#: cui/uiconfig/ui/javaclasspathdialog.ui:211
-msgctxt "extended_tip|folder"
-msgid "Select a folder and add the folder to the class path."
-msgstr "Vyberte priečinok, ktorý chcete pridať do cesty k triedam."
-
#. YNHm3
-#: cui/uiconfig/ui/javaclasspathdialog.ui:223
+#: cui/uiconfig/ui/javaclasspathdialog.ui:208
msgctxt "javaclasspathdialog|remove"
msgid "_Remove"
msgstr "_Odstrániť"
-#. fGAwc
-#: cui/uiconfig/ui/javaclasspathdialog.ui:230
-msgctxt "extended_tip|remove"
-msgid "Select an archive or a folder in the list and click Remove to remove the object from the class path."
-msgstr "Ak chcete odstrániť objekt z cesty k triedam, vyberte v zozname archív alebo priečinok a kliknite na tlačidlo Odstrániť."
-
-#. De7GF
-#: cui/uiconfig/ui/javaclasspathdialog.ui:266
-msgctxt "extended_tip|JavaClassPath"
-msgid "Specifies the location of Java classes or Java class libraries."
-msgstr "Určuje umiestnenie tried Java a knižníc tried Java."
-
#. LU9ad
#: cui/uiconfig/ui/javastartparametersdialog.ui:16
msgctxt "javastartparametersdialog|JavaStartParameters"
@@ -11399,71 +8991,41 @@ msgid "Java Start Parameters"
msgstr "Spúšťacie parametre Java"
#. AkVB2
-#: cui/uiconfig/ui/javastartparametersdialog.ui:104
+#: cui/uiconfig/ui/javastartparametersdialog.ui:107
msgctxt "javastartparametersdialog|label4"
msgid "Java start _parameter"
msgstr "Spúšťací _parameter Java"
-#. Btkis
-#: cui/uiconfig/ui/javastartparametersdialog.ui:122
-msgctxt "extended_tip|parameterfield"
-msgid "Enter a start parameter for a JRE as you would on a command line. Click Assign to add the parameter to the list of available start parameters."
-msgstr "Zadajte spúšťací parameter JRE ako na príkazovom riadku. Po kliknutí na Priradiť sa parameter pridá do zoznamu spúšťacích parametrov."
-
#. bbrtf
-#: cui/uiconfig/ui/javastartparametersdialog.ui:135
+#: cui/uiconfig/ui/javastartparametersdialog.ui:133
msgctxt "javastartparametersdialog|label5"
msgid "Assig_ned start parameters"
msgstr "Prirade_né spúšťacie parametre"
-#. xjKFh
-#: cui/uiconfig/ui/javastartparametersdialog.ui:177
-msgctxt "extended_tip|assignlist"
-msgid "Lists the assigned JRE start parameters. To remove a start parameter, select the parameter, and then click Remove."
-msgstr "Zoznam spúšťacích parametrov JRE. Ak chcete parameter odstrániť, označte ho a kliknite na Odstrániť."
-
#. 87Ysi
-#: cui/uiconfig/ui/javastartparametersdialog.ui:192
+#: cui/uiconfig/ui/javastartparametersdialog.ui:185
msgctxt "javastartparametersdialog|label6"
msgid "For example: -Dmyprop=c:\\\\program files\\\\java"
msgstr "Napríklad: -Dmyprop=c:\\\\program files\\\\java"
#. F3A9L
-#: cui/uiconfig/ui/javastartparametersdialog.ui:202
+#: cui/uiconfig/ui/javastartparametersdialog.ui:195
msgctxt "javastartparametersdialog|assignbtn"
msgid "_Add"
msgstr "_Pridať"
-#. 5DJCP
-#: cui/uiconfig/ui/javastartparametersdialog.ui:211
-msgctxt "extended_tip|assignbtn"
-msgid "Adds the current JRE start parameter to the list."
-msgstr "Pridá aktuálny spúšťací parameter JRE do zoznamu."
-
#. sNSWD
-#: cui/uiconfig/ui/javastartparametersdialog.ui:228
+#: cui/uiconfig/ui/javastartparametersdialog.ui:216
msgctxt "javastartparametersdialog|editbtn"
msgid "_Edit"
msgstr "_Upraviť"
-#. 5FP58
-#: cui/uiconfig/ui/javastartparametersdialog.ui:236
-msgctxt "extended_tip|editbtn"
-msgid "Opens a dialog where the selected JRE start parameter can be edited."
-msgstr "Otvorí dialógové okno, v ktorom môžete upraviť vybraný spúšťací parameter JRE."
-
#. fUGmG
-#: cui/uiconfig/ui/javastartparametersdialog.ui:248
+#: cui/uiconfig/ui/javastartparametersdialog.ui:231
msgctxt "javastartparametersdialog|removebtn"
msgid "_Remove"
msgstr "_Odstrániť"
-#. PhsGH
-#: cui/uiconfig/ui/javastartparametersdialog.ui:256
-msgctxt "extended_tip|removebtn"
-msgid "Deletes the selected JRE start parameter."
-msgstr "Odstráni aktuálny spúšťací parameter JRE zo zoznamu."
-
#. RdoKs
#: cui/uiconfig/ui/linedialog.ui:8
msgctxt "linedialog|LineDialog"
@@ -11507,37 +9069,31 @@ msgid "Arrow _style:"
msgstr "Štýl ší_pky:"
#. y6SSb
-#: cui/uiconfig/ui/lineendstabpage.ui:134
+#: cui/uiconfig/ui/lineendstabpage.ui:137
msgctxt "lineendstabpage|FI_TIP"
msgid "Add a selected object to create new arrow styles."
msgstr "Pridať zvolený objekt pre vytvorenie nových štýlov šípok."
#. rgBEv
-#: cui/uiconfig/ui/lineendstabpage.ui:175
+#: cui/uiconfig/ui/lineendstabpage.ui:178
msgctxt "lineendstabpage|BTN_MODIFY"
msgid "_Modify"
msgstr "Použ_iť"
-#. iQUys
-#: cui/uiconfig/ui/lineendstabpage.ui:196
-msgctxt "lineendstabpage|extended_tip|BTN_DELETE"
-msgid "Deletes the selected element or elements after confirmation."
-msgstr "Po potvrdení odstráni vybraný prvok alebo prvky."
-
#. V4C5Z
-#: cui/uiconfig/ui/lineendstabpage.ui:218
+#: cui/uiconfig/ui/lineendstabpage.ui:216
msgctxt "lineendstabpage|BTN_LOAD|tooltip_text"
msgid "Load arrow styles"
msgstr "Načítať štýly šípok"
#. CUTxx
-#: cui/uiconfig/ui/lineendstabpage.ui:232
+#: cui/uiconfig/ui/lineendstabpage.ui:230
msgctxt "lineendstabpage|BTN_SAVE|tooltip_text"
msgid "Save arrow styles"
msgstr "Uložiť štýly šípok"
#. hEYzS
-#: cui/uiconfig/ui/lineendstabpage.ui:311
+#: cui/uiconfig/ui/lineendstabpage.ui:309
msgctxt "lineendstabpage|label1"
msgid "Organize Arrow Styles"
msgstr "Usporiadať štýly šípok"
@@ -11593,31 +9149,25 @@ msgid "Line _style:"
msgstr "Štý_l čiary:"
#. MAsFg
-#: cui/uiconfig/ui/linestyletabpage.ui:347
+#: cui/uiconfig/ui/linestyletabpage.ui:350
msgctxt "linestyletabpage|BTN_MODIFY"
msgid "_Modify"
msgstr "Použ_iť"
-#. wuhfR
-#: cui/uiconfig/ui/linestyletabpage.ui:368
-msgctxt "linestyletabpage|extended_tip|BTN_DELETE"
-msgid "Deletes the selected element or elements after confirmation."
-msgstr "Po potvrdení odstráni vybraný prvok alebo prvky."
-
#. FmGAy
-#: cui/uiconfig/ui/linestyletabpage.ui:390
+#: cui/uiconfig/ui/linestyletabpage.ui:388
msgctxt "linestyletabpage|BTN_LOAD|tooltip_text"
msgid "Load Line Styles"
msgstr "Načítať štýly čiar"
#. JCDCi
-#: cui/uiconfig/ui/linestyletabpage.ui:404
+#: cui/uiconfig/ui/linestyletabpage.ui:402
msgctxt "linestyletabpage|BTN_SAVE|tooltip_text"
msgid "Save Line Styles"
msgstr "Uložiť štýly čiar"
#. VGiHW
-#: cui/uiconfig/ui/linestyletabpage.ui:469
+#: cui/uiconfig/ui/linestyletabpage.ui:467
msgctxt "linestyletabpage|label1"
msgid "Properties"
msgstr "Vlastnosti"
@@ -11797,31 +9347,31 @@ msgid "Select..."
msgstr "Vybrať..."
#. LaBcU
-#: cui/uiconfig/ui/linetabpage.ui:795
+#: cui/uiconfig/ui/linetabpage.ui:794
msgctxt "linetabpage|FT_SYMBOL_WIDTH"
msgid "Widt_h:"
msgstr "Ší_rka:"
#. yhVmm
-#: cui/uiconfig/ui/linetabpage.ui:819
+#: cui/uiconfig/ui/linetabpage.ui:818
msgctxt "linetabpage|CB_SYMBOL_RATIO"
msgid "_Keep ratio"
msgstr "_Zachovať pomer"
#. oV6GJ
-#: cui/uiconfig/ui/linetabpage.ui:837
+#: cui/uiconfig/ui/linetabpage.ui:836
msgctxt "linetabpage|FT_SYMBOL_HEIGHT"
msgid "Hei_ght:"
msgstr "Výš_ka:"
#. 9eaQs
-#: cui/uiconfig/ui/linetabpage.ui:874
+#: cui/uiconfig/ui/linetabpage.ui:873
msgctxt "linetabpage|label4"
msgid "Icon"
msgstr "Ikona"
#. vPJAG
-#: cui/uiconfig/ui/linetabpage.ui:916
+#: cui/uiconfig/ui/linetabpage.ui:915
msgctxt "linetabpage|CTL_PREVIEW-atkobject"
msgid "Example"
msgstr "Príklad"
@@ -11832,12 +9382,6 @@ msgctxt "macroassigndialog|MacroAssignDialog"
msgid "Assign Action"
msgstr "Priradiť činnosť"
-#. 2UNZB
-#: cui/uiconfig/ui/macroassigndialog.ui:90
-msgctxt "macroassigndialog|extended_tip|MacroAssignDialog"
-msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
-msgstr "Nastaví možnosti pre automatické nahrádzanie textu počas písania alebo pre hromadné použitie automatických opráv v existujúcom texte."
-
#. NGu7X
#: cui/uiconfig/ui/macroassignpage.ui:64
msgctxt "macroassignpage|eventft"
@@ -11850,60 +9394,36 @@ msgctxt "macroassignpage|assignft"
msgid "Assigned Action"
msgstr "Priradená činnosť"
-#. PahfF
-#: cui/uiconfig/ui/macroassignpage.ui:99
-msgctxt "macroassignpage|extended_tip|assignments"
-msgid "The big list box lists the events and the assigned macros. After you selected the location in the Save In list box, select an event in the big list box. Then click Assign Macro."
-msgstr "Rozsiahly zoznam obsahuje zoznam udalostí a priradených makier. Potom, ako vyberiete umiestnenie v zozname Uložiť do vyberte udalosť v zozname. Potom kliknite na Priradiť makro."
-
#. jfate
-#: cui/uiconfig/ui/macroassignpage.ui:112
+#: cui/uiconfig/ui/macroassignpage.ui:107
msgctxt "macroassignpage|libraryft1"
msgid "Assignments"
msgstr "Priradenia"
#. YG6nV
-#: cui/uiconfig/ui/macroassignpage.ui:145
+#: cui/uiconfig/ui/macroassignpage.ui:140
msgctxt "macroassignpage|assign"
msgid "M_acro..."
msgstr "M_akro..."
-#. ECTjc
-#: cui/uiconfig/ui/macroassignpage.ui:152
-msgctxt "macroassignpage|extended_tip|assign"
-msgid "Opens the Macro Selector to assign a macro to the selected event."
-msgstr "Otvára dialógové okno Výber makra na priradenie makra k vybranej udalosti."
-
#. nhxq7
-#: cui/uiconfig/ui/macroassignpage.ui:164
+#: cui/uiconfig/ui/macroassignpage.ui:154
msgctxt "macroassignpage|component"
msgid "Com_ponent..."
msgstr "Kom_ponent..."
#. UNHTV
-#: cui/uiconfig/ui/macroassignpage.ui:178
+#: cui/uiconfig/ui/macroassignpage.ui:168
msgctxt "macroassignpage|delete"
msgid "Remove"
msgstr "Odstrániť"
-#. pieEu
-#: cui/uiconfig/ui/macroassignpage.ui:185
-msgctxt "macroassignpage|extended_tip|delete"
-msgid "Deletes the macro or component assignment for the selected event."
-msgstr "Odstráni priradenie makra alebo komponentu pre vybranú udalosť."
-
#. CqT9E
-#: cui/uiconfig/ui/macroassignpage.ui:203
+#: cui/uiconfig/ui/macroassignpage.ui:188
msgctxt "macroassignpage|label1"
msgid "Assign"
msgstr "Priradiť"
-#. v49A4
-#: cui/uiconfig/ui/macroassignpage.ui:217
-msgctxt "macroassignpage|extended_tip|MacroAssignPage"
-msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs."
-msgstr "Nastaví možnosti pre automatické nahrádzanie textu počas písania alebo pre hromadné použitie automatických opráv v existujúcom texte."
-
#. RVDTA
#: cui/uiconfig/ui/macroselectordialog.ui:26
msgctxt "macroselectordialog|MacroSelectorDialog"
@@ -11911,395 +9431,305 @@ msgid "Macro Selector"
msgstr "Výber makra"
#. sgKzf
-#: cui/uiconfig/ui/macroselectordialog.ui:42
+#: cui/uiconfig/ui/macroselectordialog.ui:45
msgctxt "macroselectordialog|add"
msgid "Add"
msgstr "Pridať"
#. fpfnw
-#: cui/uiconfig/ui/macroselectordialog.ui:135
+#: cui/uiconfig/ui/macroselectordialog.ui:138
msgctxt "macroselectordialog|helpmacro"
msgid "Select the library that contains the macro you want. Then select the macro under 'Macro name'."
msgstr "Vyberte knižnicu obsahujúcu vami požadované makro. Potom pod 'Názov makra' vyberte makro."
#. nVAE3
-#: cui/uiconfig/ui/macroselectordialog.ui:151
+#: cui/uiconfig/ui/macroselectordialog.ui:154
msgctxt "macroselectordialog|helptoolbar"
msgid "To add a command to a toolbar, select the category and then the command. Then drag the command to the Commands list of the Toolbars tab page in the Customize dialog."
msgstr "Na pridanie príkazu do menu vyberte kategóriu a potom príkaz. Príkaz môžete presunúť aj do zoznamu príkazov na záložkách menu v dialógovom okne Prispôsobiť."
#. SuCLc
-#: cui/uiconfig/ui/macroselectordialog.ui:236
+#: cui/uiconfig/ui/macroselectordialog.ui:240
msgctxt "macroselectordialog|libraryft"
msgid "Library"
msgstr "Knižnica"
#. ah4q5
-#: cui/uiconfig/ui/macroselectordialog.ui:251
+#: cui/uiconfig/ui/macroselectordialog.ui:255
msgctxt "macroselectordialog|categoryft"
msgid "Category"
msgstr "Kategória"
#. QvKmS
-#: cui/uiconfig/ui/macroselectordialog.ui:330
+#: cui/uiconfig/ui/macroselectordialog.ui:334
msgctxt "macroselectordialog|macronameft"
msgid "Macro Name"
msgstr "Názov makra"
#. 2pAF6
-#: cui/uiconfig/ui/macroselectordialog.ui:346
+#: cui/uiconfig/ui/macroselectordialog.ui:350
msgctxt "macroselectordialog|commandsft"
msgid "Commands"
msgstr "Príkazy"
#. gsUCh
-#: cui/uiconfig/ui/macroselectordialog.ui:415
+#: cui/uiconfig/ui/macroselectordialog.ui:419
msgctxt "macroselectordialog|label1"
msgid "Description"
msgstr "Popis"
#. YTX8B
-#: cui/uiconfig/ui/menuassignpage.ui:46
+#: cui/uiconfig/ui/menuassignpage.ui:44
msgctxt "menuassignpage|insertseparator"
msgid "Insert Separator"
msgstr "Vložiť oddeľovač"
#. RNPyo
-#: cui/uiconfig/ui/menuassignpage.ui:54
+#: cui/uiconfig/ui/menuassignpage.ui:52
msgctxt "menuassignpage|insertsubmenu"
msgid "Insert Submenu"
msgstr "Vložiť podmenu"
#. DXfmq
-#: cui/uiconfig/ui/menuassignpage.ui:104 cui/uiconfig/ui/menuassignpage.ui:176
+#: cui/uiconfig/ui/menuassignpage.ui:102 cui/uiconfig/ui/menuassignpage.ui:174
msgctxt "menuassignpage|gear_add"
msgid "_Add..."
msgstr "P_ridať..."
#. ekuNo
-#: cui/uiconfig/ui/menuassignpage.ui:112 cui/uiconfig/ui/menuassignpage.ui:184
+#: cui/uiconfig/ui/menuassignpage.ui:110 cui/uiconfig/ui/menuassignpage.ui:182
msgctxt "menuassignpage|gear_delete"
msgid "_Delete"
msgstr "_Zmazať"
#. iRLgG
-#: cui/uiconfig/ui/menuassignpage.ui:120 cui/uiconfig/ui/menuassignpage.ui:192
+#: cui/uiconfig/ui/menuassignpage.ui:118 cui/uiconfig/ui/menuassignpage.ui:190
msgctxt "menuassignpage|gear_rename"
msgid "_Rename..."
msgstr "P_remenovať..."
#. rE3BD
-#: cui/uiconfig/ui/menuassignpage.ui:128 cui/uiconfig/ui/menuassignpage.ui:200
+#: cui/uiconfig/ui/menuassignpage.ui:126 cui/uiconfig/ui/menuassignpage.ui:198
msgctxt "menuassignpage|gear_move"
msgid "_Move..."
msgstr "_Presunúť..."
#. iNnSq
-#: cui/uiconfig/ui/menuassignpage.ui:140
+#: cui/uiconfig/ui/menuassignpage.ui:138
msgctxt "menuassignpage|renameItem"
msgid "Rename..."
msgstr "Premenovať..."
#. vtxfm
-#: cui/uiconfig/ui/menuassignpage.ui:148
+#: cui/uiconfig/ui/menuassignpage.ui:146
msgctxt "menuassignpage|changeIcon"
msgid "Change Icon..."
msgstr "Zmeniť ikonu..."
#. pisMz
-#: cui/uiconfig/ui/menuassignpage.ui:156
+#: cui/uiconfig/ui/menuassignpage.ui:154
msgctxt "menuassignpage|resetIcon"
msgid "Reset Icon"
msgstr "Obnoviť ikonu"
#. ooFCE
-#: cui/uiconfig/ui/menuassignpage.ui:164
+#: cui/uiconfig/ui/menuassignpage.ui:162
msgctxt "menuassignpage|restoreItem"
msgid "Restore Default Command"
msgstr "Vrátiť predvolený príkaz"
#. CkLgx
-#: cui/uiconfig/ui/menuassignpage.ui:214
+#: cui/uiconfig/ui/menuassignpage.ui:212
msgctxt "menuassignpage|gear_iconAndText"
msgid "_Icon and text"
msgstr "Ikona _a text"
#. G3FuF
-#: cui/uiconfig/ui/menuassignpage.ui:224
+#: cui/uiconfig/ui/menuassignpage.ui:222
msgctxt "menuassignpage|gear_iconOnly"
msgid "Icon _only"
msgstr "Iba _ikona"
#. DCnZr
-#: cui/uiconfig/ui/menuassignpage.ui:234
+#: cui/uiconfig/ui/menuassignpage.ui:232
msgctxt "menuassignpage|gear_textOnly"
msgid "_Text only"
msgstr "Iba _text"
#. vJPYK
-#: cui/uiconfig/ui/menuassignpage.ui:263
+#: cui/uiconfig/ui/menuassignpage.ui:261
msgctxt "menuassignpage|contentslabel"
msgid "_Search"
msgstr "_Hľadať"
#. 6Vz2j
-#: cui/uiconfig/ui/menuassignpage.ui:280
+#: cui/uiconfig/ui/menuassignpage.ui:278
msgctxt "menuassignpage|desc"
msgid "Description of the currently selected function."
msgstr "Popis aktuálne vybranej funkcie."
-#. 8WPmN
-#: cui/uiconfig/ui/menuassignpage.ui:290
-msgctxt "menuassignpage|extended_tip|desc"
-msgid "The text box contains a short description of the selected command."
-msgstr "Textové pole obsahuje krátky popis vybraného príkazu."
-
#. qiiBX
-#: cui/uiconfig/ui/menuassignpage.ui:307
+#: cui/uiconfig/ui/menuassignpage.ui:300
msgctxt "menuassignpage|label33"
msgid "D_escription"
msgstr "_Popis"
-#. KXCzA
-#: cui/uiconfig/ui/menuassignpage.ui:360
-msgctxt "menuassignpage|extended_tip|functions"
-msgid "Displays the results of the combination of the search string and category of the desired function."
-msgstr "Zobrazí výsledky kombinácie vyhľadávacieho reťazca a kategórie požadovanej funkcie."
-
#. wYjEi
-#: cui/uiconfig/ui/menuassignpage.ui:377
+#: cui/uiconfig/ui/menuassignpage.ui:367
msgctxt "menuassignpage|contentslabel"
msgid "_Available Commands"
msgstr "_Dostupné príkazy"
-#. EY8HF
-#: cui/uiconfig/ui/menuassignpage.ui:393
-msgctxt "menuassignpage|extended_tip|commandcategorylist"
-msgid "Select the menu command category in the drop-down list to restrict the search of commands or scroll the list below. Macros and styles commands are in the bottom of the list."
-msgstr "Ak chcete obmedziť vyhľadávanie príkazov vyberte kategóriu príkazov menu v rozbaľovacom zozname alebo posuňte zoznam nižšie. Príkazy makier a štýlov sú v dolnej časti zoznamu."
-
#. ZrMmi
-#: cui/uiconfig/ui/menuassignpage.ui:408
+#: cui/uiconfig/ui/menuassignpage.ui:393
msgctxt "menuassignpage|contentslabel"
msgid "Categor_y"
msgstr "_Kategória"
#. trbSd
-#: cui/uiconfig/ui/menuassignpage.ui:422
+#: cui/uiconfig/ui/menuassignpage.ui:407
msgctxt "menuassignpage|searchEntry"
msgid "Type to search"
msgstr "Zadajte text na vyhľadanie"
-#. GR5u8
-#: cui/uiconfig/ui/menuassignpage.ui:425
-msgctxt "menuassignpage|extended_tip|searchEntry"
-msgid "Enter a string in the text box to narrow the search of commands."
-msgstr "Zadaním reťazca do textového poľa zúžite vyhľadávanie príkazov."
-
-#. 7gtLC
-#: cui/uiconfig/ui/menuassignpage.ui:448
-msgctxt "menuassignpage|extended_tip|savein"
-msgid "Select the location where the menu is to be attached. If attached to a %PRODUCTNAME module, the menu is available for all files opened in that module. If attached to the file, the menu will be available only when that file is opened and active."
-msgstr "Vyberte umiestnenie, do ktorého sa má menu pridať. Ak je pridané k modulu %PRODUCTNAME, menu je k dispozícii pre všetky súbory otvorené v danom module. Ak je pridané k súboru, menu bude k dispozícii iba vtedy, keď je daný súbor otvorený a aktívny."
-
#. D35vJ
-#: cui/uiconfig/ui/menuassignpage.ui:459
+#: cui/uiconfig/ui/menuassignpage.ui:434
msgctxt "menuassignpage|functionbtn"
msgid "_Function"
msgstr "_Funkcia"
-#. 2HL6E
-#: cui/uiconfig/ui/menuassignpage.ui:490
-msgctxt "menuassignpage|extended_tip|toplevellist"
-msgid "Select the menu where the customization is to be applied. The current set of functions is displayed in the box below."
-msgstr "Vyberte menu, ktoré treba prispôsobiť. Aktuálna sada funkcií sa zobrazuje v poli nižšie."
-
#. QN5Bd
-#: cui/uiconfig/ui/menuassignpage.ui:511
+#: cui/uiconfig/ui/menuassignpage.ui:481
msgctxt "menuassignpage|menugearbtn"
msgid "Gear Menu"
msgstr "Ponuka s ozubeným kolesom"
#. rnmCf
-#: cui/uiconfig/ui/menuassignpage.ui:512
+#: cui/uiconfig/ui/menuassignpage.ui:482
msgctxt "menuassignpage|menugearbtn"
msgid "Contains commands to modify or delete the selected top level menu, and the command to add new top level menus."
msgstr "Obsahuje príkazy umožňujúce upraviť alebo odstrániť vybrané menu najvyššej úrovne a príkaz umožňujúci pridať nové menu najvyššej úrovne."
#. 7PE7X
-#: cui/uiconfig/ui/menuassignpage.ui:533
+#: cui/uiconfig/ui/menuassignpage.ui:503
msgctxt "menuassignpage|toolbargearbtn"
msgid "Gear Menu"
msgstr "Ponuka s ozubeným kolesom"
#. L7fQq
-#: cui/uiconfig/ui/menuassignpage.ui:534
+#: cui/uiconfig/ui/menuassignpage.ui:504
msgctxt "menuassignpage|toolbargearbtn"
msgid "Contains commands to modify or delete the selected toolbar, and the command to add new toolbars."
msgstr "Obsahuje príkazy umožňujúce upraviť alebo odstrániť vybraný panel nástrojov a príkaz umožňujúci pridávať nové panely nástrojov."
#. w7EFX
-#: cui/uiconfig/ui/menuassignpage.ui:687
+#: cui/uiconfig/ui/menuassignpage.ui:671
msgctxt "menuassignpage|insert"
msgid "_Insert"
msgstr "Vlož_iť"
#. Q69cQ
-#: cui/uiconfig/ui/menuassignpage.ui:711
+#: cui/uiconfig/ui/menuassignpage.ui:695
msgctxt "menuassignpage|modify"
msgid "_Modify"
msgstr "_Upraviť"
#. Cwu32
-#: cui/uiconfig/ui/menuassignpage.ui:735
+#: cui/uiconfig/ui/menuassignpage.ui:719
msgctxt "menuassignpage|defaultsbtn"
msgid "_Defaults"
msgstr "_Predvolené"
#. taFyJ
-#: cui/uiconfig/ui/menuassignpage.ui:746
+#: cui/uiconfig/ui/menuassignpage.ui:730
msgctxt "menuassignpage|defaultsbtn"
msgid "Resets the selected toolbar, menu, or context menu to its default state."
msgstr "Obnoví vybranú lištu nástrojov, menu alebo kontextové menu do východiskového stavu."
#. B32nz
-#: cui/uiconfig/ui/menuassignpage.ui:780
+#: cui/uiconfig/ui/menuassignpage.ui:764
msgctxt "menuassignpage|add"
msgid "Add item"
msgstr "Pridať položku"
-#. JrYMp
-#: cui/uiconfig/ui/menuassignpage.ui:790
-msgctxt "menuassignpage|extended_tip|add"
-msgid "Click on the right arrow button to select a function on the left display box and copy to the right display box. This will add the function to the selected menu."
-msgstr "Kliknutím na tlačidlo so šípkou doprava vyberiete funkciu v ľavom zobrazovacom poli a skopírujete ju do pravého zobrazovacieho poľa. Týmto sa funkcia pridá do vybraného menu."
-
#. iree8
-#: cui/uiconfig/ui/menuassignpage.ui:815
+#: cui/uiconfig/ui/menuassignpage.ui:794
msgctxt "menuassignpage|remove"
msgid "Remove item"
msgstr "Odstrániť položku"
-#. AsenA
-#: cui/uiconfig/ui/menuassignpage.ui:825
-msgctxt "menuassignpage|extended_tip|remove"
-msgid "Click on the left arrow button to remove the selected command from the current menu."
-msgstr "Kliknutím na tlačidlo so šípkou doľava odstránite vybraný príkaz z aktuálneho menu."
-
#. t7BYP
-#: cui/uiconfig/ui/menuassignpage.ui:857
+#: cui/uiconfig/ui/menuassignpage.ui:831
msgctxt "menuassignpage|moveupbtn"
msgid "Move up"
msgstr "Presunúť vyššie"
-#. BH9fq
-#: cui/uiconfig/ui/menuassignpage.ui:861
-msgctxt "menuassignpage|extended_tip|up"
-msgid "Click on the Up or Down arrows on the right to move the selected command upward or downward in the list of displayed menu commands."
-msgstr "Kliknutím na šípky nahor alebo nadol vpravo posuniete vybraný príkaz hore alebo dole v zozname zobrazených príkazov menu."
-
#. S6K2N
-#: cui/uiconfig/ui/menuassignpage.ui:875
+#: cui/uiconfig/ui/menuassignpage.ui:844
msgctxt "menuassignpage|movedownbtn"
msgid "Move down"
msgstr "Presunúť nižšie"
-#. RCKEK
-#: cui/uiconfig/ui/menuassignpage.ui:879
-msgctxt "menuassignpage|extended_tip|down"
-msgid "Click on the Up or Down arrows on the right to move the selected command upward or downward in the list of displayed menu commands."
-msgstr "Kliknutím na šípky nahor alebo nadol vpravo posuniete vybraný príkaz hore alebo dole v zozname zobrazených príkazov menu."
-
#. fto8m
-#: cui/uiconfig/ui/menuassignpage.ui:899
+#: cui/uiconfig/ui/menuassignpage.ui:863
msgctxt "menuassignpage|scopelabel"
msgid "S_cope"
msgstr "_Rozsah"
#. SLinm
-#: cui/uiconfig/ui/menuassignpage.ui:912
+#: cui/uiconfig/ui/menuassignpage.ui:876
msgctxt "menuassignpage|targetlabel"
msgid "_Target"
msgstr "_Cieľ"
#. cZEBZ
-#: cui/uiconfig/ui/menuassignpage.ui:925
+#: cui/uiconfig/ui/menuassignpage.ui:889
msgctxt "menuassignpage|functionlabel"
msgid "Assi_gned Commands"
msgstr "_Priradené príkazy"
#. AZQ8V
-#: cui/uiconfig/ui/menuassignpage.ui:938
+#: cui/uiconfig/ui/menuassignpage.ui:902
msgctxt "menuassignpage|customizelabel"
msgid "_Customize"
msgstr "_Prispôsobiť"
-#. yFQHn
-#: cui/uiconfig/ui/menuassignpage.ui:997
-msgctxt "menuassignpage|extended_tip|MenuAssignPage"
-msgid "Lets you customize %PRODUCTNAME menus for all modules."
-msgstr "Umožňuje prispôsobiť menu %PRODUCTNAME pre všetky moduly."
-
#. Mcir5
#: cui/uiconfig/ui/mosaicdialog.ui:21
msgctxt "mosaicdialog|MosaicDialog"
msgid "Mosaic"
msgstr "Mozaika"
-#. aW8Fh
-#: cui/uiconfig/ui/mosaicdialog.ui:160
-msgctxt "mosaicdialog|extended_tip|width"
-msgid "Defines the width of the individual tiles."
-msgstr "Definuje šírku jednotlivých dlaždíc."
-
#. yVvs9
-#: cui/uiconfig/ui/mosaicdialog.ui:173
+#: cui/uiconfig/ui/mosaicdialog.ui:171
msgctxt "mosaicdialog|label2"
msgid "_Width:"
msgstr "Ší_rka:"
#. TsqoC
-#: cui/uiconfig/ui/mosaicdialog.ui:198
+#: cui/uiconfig/ui/mosaicdialog.ui:196
msgctxt "mosaicdialog|height"
msgid "2"
msgstr "2"
-#. zq4c3
-#: cui/uiconfig/ui/mosaicdialog.ui:203
-msgctxt "mosaicdialog|extended_tip|height"
-msgid "Defines the height of the individual tiles."
-msgstr "Definuje výšku jednotlivých dlaždíc."
-
#. Ca8nA
-#: cui/uiconfig/ui/mosaicdialog.ui:216
+#: cui/uiconfig/ui/mosaicdialog.ui:209
msgctxt "mosaicdialog|label3"
msgid "_Height:"
msgstr "_Výška:"
#. HPBw2
-#: cui/uiconfig/ui/mosaicdialog.ui:234
+#: cui/uiconfig/ui/mosaicdialog.ui:227
msgctxt "mosaicdialog|edges"
msgid "E_nhance edges"
msgstr "Vylepšiť hra_ny"
-#. mEUiS
-#: cui/uiconfig/ui/mosaicdialog.ui:243
-msgctxt "mosaicdialog|extended_tip|edges"
-msgid "Enhances, or sharpens, the edges of the object."
-msgstr "Zvýrazní alebo zostrí okraje objektu."
-
#. LKQEa
-#: cui/uiconfig/ui/mosaicdialog.ui:266
+#: cui/uiconfig/ui/mosaicdialog.ui:254
msgctxt "mosaicdialog|label1"
msgid "Parameters"
msgstr "Parametre"
-#. LGB8f
-#: cui/uiconfig/ui/mosaicdialog.ui:291
-msgctxt "mosaicdialog|extended_tip|MosaicDialog"
-msgid "Joins small groups of pixels into rectangular areas of the same color."
-msgstr "Spája malé skupiny pixelov do obdĺžnikových oblastí rovnakej farby."
-
#. NcNCG
#: cui/uiconfig/ui/movemenu.ui:26
msgctxt "movemenu|MoveMenuDialog"
@@ -12307,91 +9737,49 @@ msgid "New Menu"
msgstr "Nová ponuka"
#. kJERC
-#: cui/uiconfig/ui/movemenu.ui:110
+#: cui/uiconfig/ui/movemenu.ui:113
msgctxt "movemenu|menunameft"
msgid "Menu name:"
msgstr "Názov menu:"
-#. Dzrz4
-#: cui/uiconfig/ui/movemenu.ui:129
-msgctxt "movemenu|extended_tip|menuname"
-msgid "Enter a name for the menu. To specify a letter in the name as an accelerator key, enter a tilde (~) before the letter."
-msgstr "Zadajte názov ponuky. Ak chcete určiť písmeno v názve ako klávesovú skratku, zadajte pred písmeno vlnovku (~)."
-
#. YV2LE
-#: cui/uiconfig/ui/movemenu.ui:158
+#: cui/uiconfig/ui/movemenu.ui:156
msgctxt "movemenu|label1"
msgid "Menu _position:"
msgstr "_Pozícia menu:"
#. HZFF5
-#: cui/uiconfig/ui/movemenu.ui:231
+#: cui/uiconfig/ui/movemenu.ui:229
msgctxt "movemenu|up-atkobject"
msgid "Up"
msgstr "Nahor"
#. nRLog
-#: cui/uiconfig/ui/movemenu.ui:250
+#: cui/uiconfig/ui/movemenu.ui:248
msgctxt "movemenu|down-atkobject"
msgid "Down"
msgstr "Nadol"
-#. xFV7x
-#: cui/uiconfig/ui/movemenu.ui:300
-msgctxt "movemenu|extended_tip|MoveMenuDialog"
-msgid "Moves the selected menu entry up one position or down one position in the menu when you click an arrow button."
-msgstr "Po kliknutí na šípku posunie vybranú položku ponuky o jednu pozíciu nahor alebo nadol."
-
#. qoE4K
#: cui/uiconfig/ui/multipathdialog.ui:22
msgctxt "multipathdialog|MultiPathDialog"
msgid "Select Paths"
msgstr "Vybrať cesty"
-#. xFCHr
-#: cui/uiconfig/ui/multipathdialog.ui:45
-msgctxt "multipathdialog|extended_tip|ok"
-msgid "Saves all changes and closes dialog."
-msgstr "Uloží všetky zmeny a zatvorí dialógové okno."
-
-#. LCieM
-#: cui/uiconfig/ui/multipathdialog.ui:64
-msgctxt "multipathdialog|extended_tip|cancel"
-msgid "Closes dialog and discards all changes."
-msgstr "Zatvorí dialógové okno a zruší všetky zmeny."
-
#. yfGYp
-#: cui/uiconfig/ui/multipathdialog.ui:130
+#: cui/uiconfig/ui/multipathdialog.ui:123
msgctxt "multipathdialog|add"
msgid "_Add..."
msgstr "Prid_ať..."
-#. yfofV
-#: cui/uiconfig/ui/multipathdialog.ui:137
-msgctxt "cui/ui/multipathdialog/add"
-msgid "Opens the Select Path dialog to select another folder or the Open dialog to select another file."
-msgstr "Otvorí dialógové okno Vybrať cestu na výber ďalšieho priečinka alebo dialógové okno Otvoriť na výber ďalšieho súboru."
-
-#. e3JxQ
-#: cui/uiconfig/ui/multipathdialog.ui:156
-msgctxt "multipathdialog|extended_tip|delete"
-msgid "Deletes the selected element or elements without requiring confirmation."
-msgstr "Vymaže vybraný prvok alebo prvky bez potreby potvrdenia."
-
#. b9DFN
-#: cui/uiconfig/ui/multipathdialog.ui:201
+#: cui/uiconfig/ui/multipathdialog.ui:200
msgctxt "multipathdialog|pathlist"
msgid "Path list"
msgstr "Zoznam ciest"
-#. EPpjr
-#: cui/uiconfig/ui/multipathdialog.ui:221
-msgctxt "cui/ui/multipathdialog/paths"
-msgid "Contains a list of the paths that have already been added. Mark the default path for new files."
-msgstr "Obsahuje zoznam ciest, ktoré už boli pridané. Označte predvolenú cestu pre nové súbory."
-
#. AsnM3
-#: cui/uiconfig/ui/multipathdialog.ui:246
+#: cui/uiconfig/ui/multipathdialog.ui:231
msgctxt "multipathdialog|label1"
msgid "Mark the Default Path for New Files"
msgstr "Označiť predvolenú cestu pre nové súbory"
@@ -12474,210 +9862,108 @@ msgctxt "newtoolbardialog|label2"
msgid "_Save in:"
msgstr "_Uložiť do:"
-#. BGmuQ
-#: cui/uiconfig/ui/numberingformatpage.ui:88
-msgctxt "numberingformatpage|extended_tip|formatted"
-msgid "Displays the number format code for the selected format. You can also enter a custom format."
-msgstr "Zobrazuje kód formátu čísla pre vybraný formát. Môžete tiež zadať vlastný formát."
-
#. 5ATKM
-#: cui/uiconfig/ui/numberingformatpage.ui:102
+#: cui/uiconfig/ui/numberingformatpage.ui:97
msgctxt "numberingformatpage|add|tooltip_text"
msgid "Add"
msgstr "Pridať"
-#. 29z6z
-#: cui/uiconfig/ui/numberingformatpage.ui:107
-msgctxt "numberingformatpage|extended_tip|add"
-msgid "Adds the number format code that you entered to the user-defined category."
-msgstr "Pridá kód formátu čísla, ktorý ste zadali, do kategórie definovanej používateľom."
-
#. Sjx7f
-#: cui/uiconfig/ui/numberingformatpage.ui:121
+#: cui/uiconfig/ui/numberingformatpage.ui:111
msgctxt "numberingformatpage|edit|tooltip_text"
msgid "Edit Comment"
msgstr "Upraviť poznámku"
-#. DGYGu
-#: cui/uiconfig/ui/numberingformatpage.ui:126
-msgctxt "numberingformatpage|extended_tip|edit"
-msgid "Enter a comment for the selected number format, and then click outside this box."
-msgstr "Zadajte komentár pre vybraný formát čísla a potom kliknite mimo tohto poľa."
-
#. YidmA
-#: cui/uiconfig/ui/numberingformatpage.ui:140
+#: cui/uiconfig/ui/numberingformatpage.ui:125
msgctxt "numberingformatpage|delete|tooltip_text"
msgid "Remove"
msgstr "Odstrániť"
-#. gyLL4
-#: cui/uiconfig/ui/numberingformatpage.ui:145
-msgctxt "numberingformatpage|extended_tip|delete"
-msgid "Deletes the selected number format."
-msgstr "Vymaže zvolený formát čísla."
-
#. BFF82
-#: cui/uiconfig/ui/numberingformatpage.ui:170
+#: cui/uiconfig/ui/numberingformatpage.ui:150
msgctxt "numberingformatpage|commented|tooltip_text"
msgid "Comment"
msgstr "Komentár"
-#. EF7pt
-#: cui/uiconfig/ui/numberingformatpage.ui:173
-msgctxt "numberingformatpage|extended_tip|commented"
-msgid "Adds a comment to the selected number format."
-msgstr "Pridá komentár k vybranému formátu čísla."
-
-#. XNdu6
-#: cui/uiconfig/ui/numberingformatpage.ui:191
+#. uz2qX
+#: cui/uiconfig/ui/numberingformatpage.ui:166
msgctxt "numberingformatpage|formatf"
-msgid "_Format Code"
-msgstr ""
-
-#. 5GA9p
-#: cui/uiconfig/ui/numberingformatpage.ui:237
-msgctxt "numberingformatpage|extended_tip|decimalsed"
-msgid "Enter the number of decimal places that you want to display."
-msgstr "Zadajte počet desatinných miest, ktoré chcete zobraziť."
+msgid "_Format code"
+msgstr "_Formátovací kód"
-#. VnduH
-#: cui/uiconfig/ui/numberingformatpage.ui:254
-msgctxt "numberingformatpage|extended_tip|denominatored"
-msgid "With fraction format, enter the number of places for the denominator that you want to display."
-msgstr "Vo formáte zlomku zadajte počet miest pre menovateľ, ktorý chcete zobraziť."
-
-#. zG6sE
-#: cui/uiconfig/ui/numberingformatpage.ui:277
-msgctxt "numberingformatpage|extended_tip|leadzerosed"
-msgid "Enter the maximum number of zeroes to display in front of the decimal point."
-msgstr "Zadajte maximálny počet núl, ktoré sa majú zobraziť pred desatinnou čiarkou."
+#. jQQZk
+#: cui/uiconfig/ui/numberingformatpage.ui:257
+msgctxt "numberingformatpage|denominatorft"
+msgid "Den_ominator places:"
+msgstr "Počet číslic _menovateľa:"
#. ZiPyf
-#: cui/uiconfig/ui/numberingformatpage.ui:298
+#: cui/uiconfig/ui/numberingformatpage.ui:272
msgctxt "numberingformatpage|decimalsft"
msgid "_Decimal places:"
msgstr "_Desatinné miesta:"
-#. jQQZk
-#: cui/uiconfig/ui/numberingformatpage.ui:312
-msgctxt "numberingformatpage|denominatorft"
-msgid "Den_ominator places:"
-msgstr "Počet číslic _menovateľa:"
-
#. EXEbk
-#: cui/uiconfig/ui/numberingformatpage.ui:333
+#: cui/uiconfig/ui/numberingformatpage.ui:293
msgctxt "numberingformatpage|leadzerosft"
msgid "Leading _zeroes:"
msgstr "Ú_vodné nuly:"
#. BRPVs
-#: cui/uiconfig/ui/numberingformatpage.ui:345
+#: cui/uiconfig/ui/numberingformatpage.ui:305
msgctxt "numberingformatpage|negnumred"
msgid "_Negative numbers red"
msgstr "Zápor_né čísla červené"
-#. 8SFwc
-#: cui/uiconfig/ui/numberingformatpage.ui:354
-msgctxt "numberingformatpage|extended_tip|negnumred"
-msgid "Changes the font color of negative numbers to red."
-msgstr "Zmení farbu písma záporných čísel na červenú."
-
#. 9DhkC
-#: cui/uiconfig/ui/numberingformatpage.ui:372
+#: cui/uiconfig/ui/numberingformatpage.ui:327
msgctxt "numberingformatpage|engineering"
msgid "_Engineering notation"
msgstr "_Inžinierska notácia"
-#. Fg7BD
-#: cui/uiconfig/ui/numberingformatpage.ui:380
-msgctxt "numberingformatpage|extended_tip|engineering"
-msgid "With scientific format, Engineering notation ensures that exponent is a multiple of 3."
-msgstr "Pri vedeckom formáte inžinierska notácia zaručuje násobok 3."
-
#. rrDFo
-#: cui/uiconfig/ui/numberingformatpage.ui:392
+#: cui/uiconfig/ui/numberingformatpage.ui:342
msgctxt "numberingformatpage|thousands"
msgid "_Thousands separator"
msgstr "Oddeľovač _tisícov"
-#. XRqXQ
-#: cui/uiconfig/ui/numberingformatpage.ui:401
-msgctxt "numberingformatpage|extended_tip|thousands"
-msgid "Inserts a separator between thousands. The type of separator that is used depends on your language settings."
-msgstr "Vloží oddeľovač medzi tisíce. Typ použitého oddeľovača závisí od jazykových nastavení."
-
#. rsmBU
-#: cui/uiconfig/ui/numberingformatpage.ui:425
+#: cui/uiconfig/ui/numberingformatpage.ui:370
msgctxt "numberingformatpage|optionsft"
msgid "Options"
msgstr "Možnosti"
-#. qv95K
-#: cui/uiconfig/ui/numberingformatpage.ui:490
-msgctxt "numberingformatpage|extended_tip|categorylb"
-msgid "Select a category from the list, and then select a formatting style in the Format box."
-msgstr "Vyberte kategóriu zo zoznamu a potom vyberte štýl formátovania v poli Formát."
-
#. NTAb6
-#: cui/uiconfig/ui/numberingformatpage.ui:503
+#: cui/uiconfig/ui/numberingformatpage.ui:443
msgctxt "numberingformatpage|categoryft"
msgid "C_ategory"
msgstr "_Kategória"
#. zCSmH
-#: cui/uiconfig/ui/numberingformatpage.ui:547
+#: cui/uiconfig/ui/numberingformatpage.ui:487
msgctxt "numberingformatpage|liststore2"
msgid "Automatically"
msgstr "Automaticky"
-#. gPTsF
-#: cui/uiconfig/ui/numberingformatpage.ui:551
-msgctxt "numberingformatpage|extended_tip|currencylb"
-msgid "Select a currency, and then scroll to the top of the Format list to view the formatting options for the currency."
-msgstr "Vyberte menu a potom sa posuňte na hornú časť zoznamu Formát a zobrazte možnosti formátovania meny."
-
-#. TBLU5
-#: cui/uiconfig/ui/numberingformatpage.ui:592
-msgctxt "numberingformatpage|extended_tip|formatlb"
-msgid "Select how you want the contents of the selected field to be displayed."
-msgstr "Vyberte, ako chcete zobraziť obsah vybraného poľa."
-
#. Wxkzd
-#: cui/uiconfig/ui/numberingformatpage.ui:611
+#: cui/uiconfig/ui/numberingformatpage.ui:541
msgctxt "numberingformatpage|formatft"
msgid "Fo_rmat"
msgstr "Fo_rmát"
-#. h3kCx
-#: cui/uiconfig/ui/numberingformatpage.ui:651
-msgctxt "numberingformatpage|extended_tip|languagelb"
-msgid "Specifies the language setting for the selected field."
-msgstr "Určuje nastavenie jazyka pre vybrané pole."
-
#. hx9FX
-#: cui/uiconfig/ui/numberingformatpage.ui:662
+#: cui/uiconfig/ui/numberingformatpage.ui:587
msgctxt "numberingformatpage|sourceformat"
msgid "So_urce format"
msgstr "Formát _zdroja"
-#. Pugh9
-#: cui/uiconfig/ui/numberingformatpage.ui:671
-msgctxt "numberingformatpage|extended_tip|sourceformat"
-msgid "Uses the same number format as the cells containing the data for the chart."
-msgstr "Používa rovnaký číselný formát ako bunky obsahujúce dáta pre graf."
-
#. iCX4U
-#: cui/uiconfig/ui/numberingformatpage.ui:714
+#: cui/uiconfig/ui/numberingformatpage.ui:634
msgctxt "numberingformatpage|languageft"
msgid "_Language"
msgstr "_Jazyk"
-#. cmmFq
-#: cui/uiconfig/ui/numberingformatpage.ui:736
-msgctxt "numberingformatpage|extended_tip|NumberingFormatPage"
-msgid "Specify the formatting options for the selected cell(s)."
-msgstr "Zadajte možnosti formátovania pre vybrané bunky."
-
#. XxX2T
#: cui/uiconfig/ui/numberingoptionspage.ui:42
msgctxt "numberingoptionspage|fromfile"
@@ -12690,284 +9976,188 @@ msgctxt "numberingoptionspage|gallery"
msgid "Gallery"
msgstr "Galéria"
-#. KJC7w
-#: cui/uiconfig/ui/numberingoptionspage.ui:116
-msgctxt "numberingoptionspage|extended_tip|levellb"
-msgid "Select the level(s) that you want to define the formatting options for."
-msgstr "Vyberte úrovne, pre ktoré chcete definovať možnosti formátovania."
-
#. iHsAJ
-#: cui/uiconfig/ui/numberingoptionspage.ui:129
+#: cui/uiconfig/ui/numberingoptionspage.ui:124
msgctxt "numberingoptionspage|label1"
msgid "Level"
msgstr "Úroveň"
#. AxmSa
-#: cui/uiconfig/ui/numberingoptionspage.ui:176
+#: cui/uiconfig/ui/numberingoptionspage.ui:171
msgctxt "numberingoptionspage|label4"
msgid "Number:"
msgstr "Číslo:"
-#. CJfZf
-#: cui/uiconfig/ui/numberingoptionspage.ui:192
-msgctxt "numberingoptionspage|extended_tip|charstyle"
-msgid "Select the Character Style that you want to use in the numbered list."
-msgstr "V číslovanom zozname vyberte štýl znakov, ktorý chcete použiť."
-
-#. UaFF9
-#: cui/uiconfig/ui/numberingoptionspage.ui:210
-msgctxt "numberingoptionspage|extended_tip|sublevels"
-msgid "Enter the number of previous levels to include in the numbering style. For example, if you enter \"2\" and the previous level uses the \"A, B, C...\" numbering style, the numbering scheme for the current level becomes: \"A.1\"."
-msgstr "Zadajte počet predchádzajúcich úrovní, ktoré sa majú zahrnúť do štýlu číslovania. Napríklad ak zadáte „2“ a predchádzajúca úroveň používa štýl číslovania „A, B, C ...“, schéma číslovania pre aktuálnu úroveň bude „A.1“."
-
-#. ST2Co
-#: cui/uiconfig/ui/numberingoptionspage.ui:227
-msgctxt "numberingoptionspage|extended_tip|startat"
-msgid "Enter a new starting number for the current level."
-msgstr "Zadajte nové počiatočné číslo pre aktuálnu úroveň."
-
#. xWX3x
-#: cui/uiconfig/ui/numberingoptionspage.ui:240
+#: cui/uiconfig/ui/numberingoptionspage.ui:220
msgctxt "numberingoptionspage|startatft"
msgid "Start at:"
msgstr "Začať na:"
-#. QxbQe
-#: cui/uiconfig/ui/numberingoptionspage.ui:256
-msgctxt "numberingoptionspage|extended_tip|numfmtlb"
-msgid "Select a numbering style for the selected levels."
-msgstr "Vyberte štýl číslovania pre vybrané úrovne."
-
#. EDSiA
-#: cui/uiconfig/ui/numberingoptionspage.ui:269
+#: cui/uiconfig/ui/numberingoptionspage.ui:244
msgctxt "numberingoptionspage|bitmapft"
msgid "Graphics:"
msgstr "Grafika:"
#. Hooqo
-#: cui/uiconfig/ui/numberingoptionspage.ui:283
+#: cui/uiconfig/ui/numberingoptionspage.ui:258
msgctxt "numberingoptionspage|widthft"
msgid "Width:"
msgstr "Šírka:"
-#. EetAa
-#: cui/uiconfig/ui/numberingoptionspage.ui:302
-msgctxt "numberingoptionspage|extended_tip|widthmf"
-msgid "Enter a width for the graphic."
-msgstr "Zadajte šírku grafiky."
-
#. PBvy6
-#: cui/uiconfig/ui/numberingoptionspage.ui:315
+#: cui/uiconfig/ui/numberingoptionspage.ui:285
msgctxt "numberingoptionspage|heightft"
msgid "Height:"
msgstr "Výška:"
-#. prqMN
-#: cui/uiconfig/ui/numberingoptionspage.ui:335
-msgctxt "numberingoptionspage|extended_tip|heightmf"
-msgid "Enter a height for the graphic."
-msgstr "Zadajte výšku grafiky."
-
#. bRHQn
-#: cui/uiconfig/ui/numberingoptionspage.ui:346
+#: cui/uiconfig/ui/numberingoptionspage.ui:311
msgctxt "numberingoptionspage|keepratio"
msgid "Keep ratio"
msgstr "Zachovať pomer"
-#. aeFQE
-#: cui/uiconfig/ui/numberingoptionspage.ui:355
-msgctxt "numberingoptionspage|extended_tip|keepratio"
-msgid "Maintains the size proportions of the graphic."
-msgstr "Zachováva proporcie veľkosti grafiky."
-
#. 7Wuu8
-#: cui/uiconfig/ui/numberingoptionspage.ui:368
+#: cui/uiconfig/ui/numberingoptionspage.ui:328
msgctxt "numberingoptionspage|orientft"
msgid "Alignment:"
msgstr "Zarovnanie:"
#. BJjDU
-#: cui/uiconfig/ui/numberingoptionspage.ui:384
+#: cui/uiconfig/ui/numberingoptionspage.ui:344
msgctxt "numberingoptionspage|orientlb"
msgid "Top of baseline"
msgstr "Vrchol základne"
#. YgzFa
-#: cui/uiconfig/ui/numberingoptionspage.ui:385
+#: cui/uiconfig/ui/numberingoptionspage.ui:345
msgctxt "numberingoptionspage|orientlb"
msgid "Center of baseline"
msgstr "Stred základne"
#. rRWyY
-#: cui/uiconfig/ui/numberingoptionspage.ui:386
+#: cui/uiconfig/ui/numberingoptionspage.ui:346
msgctxt "numberingoptionspage|orientlb"
msgid "Bottom of baseline"
msgstr "Spodok základne"
#. GRqAC
-#: cui/uiconfig/ui/numberingoptionspage.ui:387
+#: cui/uiconfig/ui/numberingoptionspage.ui:347
msgctxt "numberingoptionspage|orientlb"
msgid "Top of character"
msgstr "Vrchol znaku"
#. 5z7jX
-#: cui/uiconfig/ui/numberingoptionspage.ui:388
+#: cui/uiconfig/ui/numberingoptionspage.ui:348
msgctxt "numberingoptionspage|orientlb"
msgid "Center of character"
msgstr "Stred znaku"
#. MsKwk
-#: cui/uiconfig/ui/numberingoptionspage.ui:389
+#: cui/uiconfig/ui/numberingoptionspage.ui:349
msgctxt "numberingoptionspage|orientlb"
msgid "Bottom of character"
msgstr "Päta znaku"
#. JJEdP
-#: cui/uiconfig/ui/numberingoptionspage.ui:390
+#: cui/uiconfig/ui/numberingoptionspage.ui:350
msgctxt "numberingoptionspage|orientlb"
msgid "Top of line"
msgstr "Vrchol riadku"
#. UoEug
-#: cui/uiconfig/ui/numberingoptionspage.ui:391
+#: cui/uiconfig/ui/numberingoptionspage.ui:351
msgctxt "numberingoptionspage|orientlb"
msgid "Center of line"
msgstr "Stred riadku"
#. 7dPkC
-#: cui/uiconfig/ui/numberingoptionspage.ui:392
+#: cui/uiconfig/ui/numberingoptionspage.ui:352
msgctxt "numberingoptionspage|orientlb"
msgid "Bottom of line"
msgstr "Päta riadku"
-#. Quwne
-#: cui/uiconfig/ui/numberingoptionspage.ui:396
-msgctxt "numberingoptionspage|extended_tip|orientlb"
-msgid "Select the alignment option for the graphic."
-msgstr "Vyberte možnosť zarovnania pre grafiku."
-
#. CoAAt
-#: cui/uiconfig/ui/numberingoptionspage.ui:407
+#: cui/uiconfig/ui/numberingoptionspage.ui:362
msgctxt "numberingoptionspage|bitmap"
msgid "Select..."
msgstr "Vybrať..."
-#. Eqa4C
-#: cui/uiconfig/ui/numberingoptionspage.ui:419
-msgctxt "numberingoptionspage|extended_tip|bitmap"
-msgid "Select the graphic, or locate the graphic file that you want to use as a bullet."
-msgstr "Vyberte grafiku alebo vyhľadajte grafický súbor, ktorý chcete použiť ako odrážku."
-
-#. NCamZ
-#: cui/uiconfig/ui/numberingoptionspage.ui:441
-msgctxt "numberingoptionspage|extended_tip|color"
-msgid "Select a color for the current numbering style."
-msgstr "Vyberte farbu pre aktuálny štýl číslovania."
-
-#. hJgCL
-#: cui/uiconfig/ui/numberingoptionspage.ui:458
-msgctxt "numberingoptionspage|extended_tip|relsize"
-msgid "Enter the amount by which you want to resize the bullet character with respect to the font height of the current paragraph."
-msgstr "Zadajte veľkosť, o ktorú chcete zmeniť veľkosť odrážky vzhľadom na výšku písma aktuálneho odseku."
-
#. M4aPS
-#: cui/uiconfig/ui/numberingoptionspage.ui:469
+#: cui/uiconfig/ui/numberingoptionspage.ui:408
msgctxt "numberingoptionspage|bullet"
msgid "Select..."
msgstr "Vybrať..."
-#. vfKmd
-#: cui/uiconfig/ui/numberingoptionspage.ui:475
-msgctxt "numberingoptionspage|extended_tip|bullet"
-msgid "Select the graphic, or locate the graphic file that you want to use as a bullet."
-msgstr "Vyberte grafiku alebo vyhľadajte grafický súbor, ktorý chcete použiť ako odrážku."
-
#. RJa39
-#: cui/uiconfig/ui/numberingoptionspage.ui:493
+#: cui/uiconfig/ui/numberingoptionspage.ui:427
msgctxt "numberingoptionspage|prefixft"
msgid "Before:"
msgstr "Pred:"
#. EzDC5
-#: cui/uiconfig/ui/numberingoptionspage.ui:514
+#: cui/uiconfig/ui/numberingoptionspage.ui:448
msgctxt "numberingoptionspage|separator"
msgid "Separator"
msgstr "Oddeľovač"
-#. AEaYR
-#: cui/uiconfig/ui/numberingoptionspage.ui:531
-msgctxt "numberingoptionspage|extended_tip|suffix"
-msgid "Enter a character or the text to display behind the number in the list. If you want to create a numbered list that uses the style \"1.)\", enter \".)\" in this box."
-msgstr "Zadajte znak alebo text, ktorý sa má zobraziť za číslom v zozname. Ak chcete vytvoriť očíslovaný zoznam, ktorý používa štýl „1.)“, do tohto poľa zadajte „.)“."
-
-#. wVrAN
-#: cui/uiconfig/ui/numberingoptionspage.ui:547
-msgctxt "numberingoptionspage|extended_tip|prefix"
-msgid "Enter a character or the text to display in front of the number in the list."
-msgstr "Zadajte znak alebo text, ktorý sa má zobraziť pred číslom v zozname."
-
#. FLJWG
-#: cui/uiconfig/ui/numberingoptionspage.ui:560
+#: cui/uiconfig/ui/numberingoptionspage.ui:484
msgctxt "numberingoptionspage|suffixft"
msgid "After:"
msgstr "Za:"
#. TZVTJ
-#: cui/uiconfig/ui/numberingoptionspage.ui:574
+#: cui/uiconfig/ui/numberingoptionspage.ui:498
msgctxt "numberingoptionspage|sublevelsft"
msgid "Show sublevels:"
msgstr "Zobraziť úrovne:"
#. FaDZX
-#: cui/uiconfig/ui/numberingoptionspage.ui:589
+#: cui/uiconfig/ui/numberingoptionspage.ui:513
msgctxt "numberingoptionspage|bulletft"
msgid "Character:"
msgstr "Znak:"
#. 6jTGa
-#: cui/uiconfig/ui/numberingoptionspage.ui:603
+#: cui/uiconfig/ui/numberingoptionspage.ui:527
msgctxt "numberingoptionspage|relsizeft"
msgid "_Relative size:"
msgstr "_Relatívna veľkosť:"
#. 6r484
-#: cui/uiconfig/ui/numberingoptionspage.ui:617
+#: cui/uiconfig/ui/numberingoptionspage.ui:541
msgctxt "numberingoptionspage|colorft"
msgid "Color:"
msgstr "Farba:"
#. ksG2M
-#: cui/uiconfig/ui/numberingoptionspage.ui:631
+#: cui/uiconfig/ui/numberingoptionspage.ui:555
msgctxt "numberingoptionspage|charstyleft"
msgid "Character style:"
msgstr "Znakový štýl:"
#. S9jNu
-#: cui/uiconfig/ui/numberingoptionspage.ui:668
+#: cui/uiconfig/ui/numberingoptionspage.ui:592
msgctxt "numberingoptionspage|label2"
msgid "Numbering"
msgstr "Číslovanie"
#. kcgWM
-#: cui/uiconfig/ui/numberingoptionspage.ui:695
+#: cui/uiconfig/ui/numberingoptionspage.ui:619
msgctxt "numberingoptionspage|allsame"
msgid "_Consecutive numbering"
msgstr "_Postupné číslovanie"
-#. 48AhR
-#: cui/uiconfig/ui/numberingoptionspage.ui:705
-msgctxt "numberingoptionspage|extended_tip|allsame"
-msgid "Increases the numbering by one as you go down each level in the list hierarchy."
-msgstr "Zvyšuje číslovanie o jeden, keď v hierarchii zoznamov prechádzate o úroveň nižšie."
-
#. 9VSpp
-#: cui/uiconfig/ui/numberingoptionspage.ui:716
+#: cui/uiconfig/ui/numberingoptionspage.ui:635
msgctxt "numberingoptionspage|label3"
msgid "All Levels"
msgstr "všetky úrovne"
#. DJptx
-#: cui/uiconfig/ui/numberingoptionspage.ui:777
+#: cui/uiconfig/ui/numberingoptionspage.ui:696
msgctxt "numberingoptionspage|previewlabel"
msgid "Preview"
msgstr "Náhľad"
@@ -12996,98 +10186,50 @@ msgctxt "numberingpositionpage|indentat"
msgid "Indent at:"
msgstr "Odsadené na:"
-#. PEgTA
-#: cui/uiconfig/ui/numberingpositionpage.ui:149
-msgctxt "numberingpositionpage|extended_tip|indentatmf"
-msgid "Enter the distance from the left page margin to the start of all lines in the numbered paragraph that follow the first line."
-msgstr "Zadajte vzdialenosť od ľavého okraja strany po začiatok všetkých riadkov v očíslovanom odseku, ktorý nasleduje za prvým riadkom."
-
#. FW9wv
-#: cui/uiconfig/ui/numberingpositionpage.ui:162
+#: cui/uiconfig/ui/numberingpositionpage.ui:157
msgctxt "numberingpositionpage|at"
msgid "Tab stop at:"
msgstr "Krok tabulátora na:"
-#. DvSCa
-#: cui/uiconfig/ui/numberingpositionpage.ui:181
-msgctxt "numberingpositionpage|extended_tip|atmf"
-msgid "If you select a tab stop to follow the numbering, you can enter a non-negative value as the tab stop position."
-msgstr "Ak vyberiete zarážku tabulátora, ktorá nasleduje číslovanie, môžete zadať nezápornú hodnotu ako pozíciu zarážky tabulátora."
-
-#. dA4DF
-#: cui/uiconfig/ui/numberingpositionpage.ui:199
-msgctxt "numberingpositionpage|extended_tip|alignedatmf"
-msgid "Enter the distance from the left page margin at which the numbering symbol will be aligned."
-msgstr "Zadajte vzdialenosť od ľavého okraja strany, na ktorú bude zarovnaný symbol číslovania."
-
#. tsTNP
-#: cui/uiconfig/ui/numberingpositionpage.ui:213
+#: cui/uiconfig/ui/numberingpositionpage.ui:198
msgctxt "numberingpositionpage|liststore2"
msgid "Tab stop"
msgstr "Krok tabulátora"
#. 3EFaG
-#: cui/uiconfig/ui/numberingpositionpage.ui:214
+#: cui/uiconfig/ui/numberingpositionpage.ui:199
msgctxt "numberingpositionpage|liststore2"
msgid "Space"
msgstr "Medzerník"
#. GviqT
-#: cui/uiconfig/ui/numberingpositionpage.ui:215
+#: cui/uiconfig/ui/numberingpositionpage.ui:200
msgctxt "numberingpositionpage|liststore2"
msgid "Nothing"
msgstr "Nič"
-#. UWJoe
-#: cui/uiconfig/ui/numberingpositionpage.ui:219
-msgctxt "numberingpositionpage|extended_tip|numfollowedbylb"
-msgid "Enter the distance from the left page margin at which the numbering symbol will be aligned."
-msgstr "Zadajte vzdialenosť od ľavého okraja strany, na ktorú bude zarovnaný symbol číslovania."
-
#. fXRT2
-#: cui/uiconfig/ui/numberingpositionpage.ui:232
+#: cui/uiconfig/ui/numberingpositionpage.ui:212
msgctxt "numberingpositionpage|indent"
msgid "Indent:"
msgstr "Odsadenie:"
-#. DEBG2
-#: cui/uiconfig/ui/numberingpositionpage.ui:251
-msgctxt "numberingpositionpage|extended_tip|indentmf"
-msgid "Enter the amount of space to leave between the left page margin (or the left edge of the text object) and the left edge of the numbering area. If the current paragraph style uses an indent, the amount you enter here is added to the indent."
-msgstr "Zadajte veľkosť medzery medzi ľavým okrajom strany (alebo ľavým okrajom textového objektu) a ľavým okrajom oblasti číslovania. Ak aktuálny štýl odseku používa odsadenie, hodnota, ktorú tu zadáte, sa pridá k odsadeniu."
-
#. YCZDg
-#: cui/uiconfig/ui/numberingpositionpage.ui:262
+#: cui/uiconfig/ui/numberingpositionpage.ui:237
msgctxt "numberingpositionpage|relative"
msgid "Relati_ve"
msgstr "Relatí_vne"
-#. CCTdA
-#: cui/uiconfig/ui/numberingpositionpage.ui:272
-msgctxt "numberingpositionpage|extended_tip|relative"
-msgid "Indents the current level relative to the previous level in the list hierarchy."
-msgstr "Odsadí aktuálnu úroveň v porovnaní s predchádzajúcou úrovňou v hierarchii zoznamu."
-
#. bt7Fj
-#: cui/uiconfig/ui/numberingpositionpage.ui:286
+#: cui/uiconfig/ui/numberingpositionpage.ui:256
msgctxt "numberingpositionpage|numberingwidth"
msgid "Width of numbering:"
msgstr "Šírka číslovania:"
-#. V6FF5
-#: cui/uiconfig/ui/numberingpositionpage.ui:305
-msgctxt "numberingpositionpage|extended_tip|numberingwidthmf"
-msgid "Enter the width of the numbering area. The numbering symbol can be left, center or right in this area."
-msgstr "Zadajte šírku oblasti číslovania. Symbol číslovania môže byť v tejto oblasti vľavo, v strede alebo vpravo."
-
-#. zuD8v
-#: cui/uiconfig/ui/numberingpositionpage.ui:323
-msgctxt "numberingpositionpage|extended_tip|numdistmf"
-msgid "The alignment of the numbering symbol is adjusted to get the desired minimum space. If it is not possible because the numbering area is not wide enough, then the start of the text is adjusted."
-msgstr "Zarovnanie číslovacieho symbolu je upravené tak, aby získal požadovaný minimálny priestor. Ak to nie je možné, pretože oblasť číslovania nie je dostatočne široká, upraví sa začiatok textu."
-
#. EJUm3
-#: cui/uiconfig/ui/numberingpositionpage.ui:336
+#: cui/uiconfig/ui/numberingpositionpage.ui:296
msgctxt "numberingpositionpage|numdist"
msgid ""
"Minimum space between\n"
@@ -13097,73 +10239,49 @@ msgstr ""
"číslovaním a textom:"
#. 8FbxK
-#: cui/uiconfig/ui/numberingpositionpage.ui:352
+#: cui/uiconfig/ui/numberingpositionpage.ui:312
msgctxt "numberingpositionpage|numalign"
msgid "N_umbering alignment:"
msgstr "_Zarovnanie číslovania:"
#. Bu2uC
-#: cui/uiconfig/ui/numberingpositionpage.ui:367
+#: cui/uiconfig/ui/numberingpositionpage.ui:327
msgctxt "numberingpositionpage|liststore1"
msgid "Left"
msgstr "Vľavo"
#. FzFuR
-#: cui/uiconfig/ui/numberingpositionpage.ui:368
+#: cui/uiconfig/ui/numberingpositionpage.ui:328
msgctxt "numberingpositionpage|liststore1"
msgid "Centered"
msgstr "Na stred"
#. BF5Nt
-#: cui/uiconfig/ui/numberingpositionpage.ui:369
+#: cui/uiconfig/ui/numberingpositionpage.ui:329
msgctxt "numberingpositionpage|liststore1"
msgid "Right"
msgstr "Vpravo"
-#. 2cBQp
-#: cui/uiconfig/ui/numberingpositionpage.ui:373
-msgctxt "numberingpositionpage|extended_tip|numalignlb"
-msgid "Set the alignment of the numbering symbols. Select \"Left\" to align the numbering symbol to start directly at the \"Aligned at\" position. Select \"Right\" to align the symbol to end directly before the \"Aligned at\" position. Select \"Centered\" to center the symbol around the \"Aligned at\" position."
-msgstr "Nastavte zarovnanie symbolov číslovania. Vyberte 'vľavo' pre začiatok priamo na pozíciu 'Zarovnané na'. Vyberte 'vpravo' pre zarovnanie priamo pred pozíciu 'Zarovnané na'. Vyberte 'na stred' pre vycentrovanie symbolov na pozíciu 'Zarovnané na'."
-
-#. mLBFy
-#: cui/uiconfig/ui/numberingpositionpage.ui:388
-msgctxt "numberingpositionpage|extended_tip|num2alignlb"
-msgid "Set the alignment of the numbering symbols. Select \"Left\" to align the numbering symbol to start directly at the \"Aligned at\" position. Select \"Right\" to align the symbol to end directly before the \"Aligned at\" position. Select \"Centered\" to center the symbol around the \"Aligned at\" position."
-msgstr "Nastavte zarovnanie symbolov číslovania. Vyberte 'vľavo' pre začiatok priamo na pozíciu 'Zarovnané na'. Vyberte 'vpravo' pre zarovnanie priamo pred pozíciu 'Zarovnané na'. Vyberte 'na stred' pre vycentrovanie symbolov na pozíciu 'Zarovnané na'."
-
#. 6DLtp
-#: cui/uiconfig/ui/numberingpositionpage.ui:405
+#: cui/uiconfig/ui/numberingpositionpage.ui:355
msgctxt "numberingpositionpage|label10"
msgid "Position and Spacing"
msgstr "Umiestnenie a rozostupy"
#. x2AGL
-#: cui/uiconfig/ui/numberingpositionpage.ui:439
+#: cui/uiconfig/ui/numberingpositionpage.ui:389
msgctxt "numberingpositionpage|standard"
msgid "Default"
msgstr "Predvolené"
-#. 4phf2
-#: cui/uiconfig/ui/numberingpositionpage.ui:446
-msgctxt "numberingpositionpage|extended_tip|standard"
-msgid "Resets the indent and the spacing values to the default values."
-msgstr "Obnoví hodnoty odsadenia a medzier na predvolené hodnoty."
-
#. eLFGG
-#: cui/uiconfig/ui/numberingpositionpage.ui:494
+#: cui/uiconfig/ui/numberingpositionpage.ui:439
msgctxt "numberingpositionpage|previewframe"
msgid "Preview"
msgstr "Náhľad"
-#. oBArM
-#: cui/uiconfig/ui/numberingpositionpage.ui:555
-msgctxt "numberingpositionpage|extended_tip|levellb"
-msgid "Select the level(s) that you want to modify."
-msgstr "Vyberte úrovne, ktoré chcete upraviť."
-
#. jRE6s
-#: cui/uiconfig/ui/numberingpositionpage.ui:568
+#: cui/uiconfig/ui/numberingpositionpage.ui:508
msgctxt "numberingpositionpage|1"
msgid "Level"
msgstr "Úroveň"
@@ -13180,12 +10298,6 @@ msgctxt "objectnamedialog|object_name_label"
msgid "_Name:"
msgstr "_Meno:"
-#. uFBRJ
-#: cui/uiconfig/ui/objectnamedialog.ui:128
-msgctxt "objectnamedialog|extended_tip|ObjectNameDialog"
-msgid "Enter a name for the selected object. The name will be visible in the Navigator."
-msgstr "Zadajte názov vybraného objektu. Názov bude viditeľný v Navigátore."
-
#. 4TRWw
#: cui/uiconfig/ui/objecttitledescdialog.ui:15
msgctxt "objecttitledescdialog|ObjectTitleDescDialog"
@@ -13198,464 +10310,260 @@ msgctxt "objecttitledescdialog|object_title_label"
msgid "_Title:"
msgstr "_Nadpis:"
-#. mMZoM
-#: cui/uiconfig/ui/objecttitledescdialog.ui:111
-msgctxt "objecttitledescdialog|extended_tip|object_title_entry"
-msgid "Enter a title text. This short name is visible as an alternative tag in HTML format. Accessibility tools can read this text."
-msgstr "Zadajte text názvu. Tento krátky názov je viditeľný ako alternatívna značka vo formáte HTML. Tento text môžu čítať nástroje prístupnosti."
-
#. kDbQ9
-#: cui/uiconfig/ui/objecttitledescdialog.ui:125
+#: cui/uiconfig/ui/objecttitledescdialog.ui:120
msgctxt "objecttitledescdialog|desc_label"
msgid "_Description:"
msgstr "_Popis:"
-#. vT3u9
-#: cui/uiconfig/ui/objecttitledescdialog.ui:148
-msgctxt "objecttitledescdialog|extended_tip|desc_entry"
-msgid "Enter a description text. The long description text can be entered to describe a complex object or group of objects to users with screen reader software. The description is visible as an alternative tag for accessibility tools."
-msgstr "Zadajte text popisu. Je možné zadať dlhý text popisu, ktorý používateľovi pomocou softvéru na čítanie z obrazovky popíše zložitý objekt alebo skupinu objektov. Popis je viditeľný ako alternatívna značka pre nástroje prístupnosti."
-
-#. 8BCe3
-#: cui/uiconfig/ui/objecttitledescdialog.ui:179
-msgctxt "objecttitledescdialog|extended_tip|ObjectTitleDescDialog"
-msgid "Assigns a title and a description to the selected object. These are accessible for accessibility tools and as alternative tags when you export the document."
-msgstr "Vybranému objektu priradí názov a popis. Tie slúžia pre nástroje prístupnosti a ako alternatívne značky pri exportovaní dokumentu."
-
#. s8E7z
#: cui/uiconfig/ui/optaccessibilitypage.ui:31
msgctxt "optaccessibilitypage|acctool"
msgid "Support _assistive technology tools (program restart required)"
msgstr "Podpora nástrojov _assistive technology (potrebný reštart programu)"
-#. DYfLF
-#: cui/uiconfig/ui/optaccessibilitypage.ui:40
-msgctxt "extended_tip|acctool"
-msgid "Allows you to use assistive tools, such as external screen readers, Braille devices or speech recognition input devices. The Java Runtime Environment must be installed on your computer before you can enable assistive support."
-msgstr "Môžete použiť asistenčné nástroje, napr. externú čítačku obrazovky, braillovské zariadenie alebo vstupné zariadenie na rozpoznávanie reči. Aby ste mohli zapnúť podporu asistenčných nástrojov, musí byť na počítači nainštalovaný Java Runtime Environment."
-
#. EZqPM
-#: cui/uiconfig/ui/optaccessibilitypage.ui:52
+#: cui/uiconfig/ui/optaccessibilitypage.ui:47
msgctxt "optaccessibilitypage|textselinreadonly"
msgid "Use te_xt selection cursor in read-only text documents"
msgstr "Použiť kurzor výberu te_xtu v dokumentoch len na čítanie"
-#. KWSKn
-#: cui/uiconfig/ui/optaccessibilitypage.ui:61
-msgctxt "extended_tip|textselinreadonly"
-msgid "Displays cursor in read-only documents."
-msgstr "Zobrazí kurzor v dokumentoch iba na čítanie."
-
#. APEfF
-#: cui/uiconfig/ui/optaccessibilitypage.ui:73
+#: cui/uiconfig/ui/optaccessibilitypage.ui:63
msgctxt "optaccessibilitypage|animatedgraphics"
msgid "Allow animated _images"
msgstr "Povoliť animované o_brázky"
-#. vvmf3
-#: cui/uiconfig/ui/optaccessibilitypage.ui:82
-msgctxt "extended_tip|animatedgraphics"
-msgid "Previews animated graphics, such as GIF images, in %PRODUCTNAME."
-msgstr "Zobrazuje v %PRODUCTNAME náhľady animovaných obrázkov, napr. vo formáte GIF."
-
#. 3Q66x
-#: cui/uiconfig/ui/optaccessibilitypage.ui:94
+#: cui/uiconfig/ui/optaccessibilitypage.ui:79
msgctxt "optaccessibilitypage|animatedtext"
msgid "Allow animated _text"
msgstr "Povoliť animovaný _text"
-#. dcCgH
-#: cui/uiconfig/ui/optaccessibilitypage.ui:103
-msgctxt "extended_tip|animatedtext"
-msgid "Previews animated text, such as blinking and scrolling, in %PRODUCTNAME."
-msgstr "Zobrazuje v %PRODUCTNAME náhľad animovaného textu, napr. blikajúceho alebo rotujúceho."
-
#. 2A83C
-#: cui/uiconfig/ui/optaccessibilitypage.ui:121
+#: cui/uiconfig/ui/optaccessibilitypage.ui:101
msgctxt "optaccessibilitypage|label1"
msgid "Miscellaneous Options"
msgstr "Rôzne možnosti"
#. pLAWF
-#: cui/uiconfig/ui/optaccessibilitypage.ui:154
+#: cui/uiconfig/ui/optaccessibilitypage.ui:134
msgctxt "optaccessibilitypage|autodetecthc"
msgid "Automatically _detect high contrast mode of operating system"
msgstr "Aut_omatické zistenie vysoko kontrastného módu operačného systému"
-#. S8FrL
-#: cui/uiconfig/ui/optaccessibilitypage.ui:163
-msgctxt "extended_tip|autodetecthc"
-msgid "Switches %PRODUCTNAME into high contrast mode when the system background color is very dark."
-msgstr "Ak je systémová farba pozadia príliš tmavá, %PRODUCTNAME sa prepne do režimu vysokého kontrastu."
-
#. Sc8Cq
-#: cui/uiconfig/ui/optaccessibilitypage.ui:175
+#: cui/uiconfig/ui/optaccessibilitypage.ui:150
msgctxt "optaccessibilitypage|autofontcolor"
msgid "Use automatic font _color for screen display"
msgstr "Použiť automati_ckú farbu písma pre zobrazenie na obrazovke"
-#. DP3mg
-#: cui/uiconfig/ui/optaccessibilitypage.ui:184
-msgctxt "extended_tip|autofontcolor"
-msgid "Displays fonts in %PRODUCTNAME using the system color settings. This option only affects the screen display."
-msgstr "Zobrazuje písma %PRODUCTNAME s použitím systémového nastavenia farieb. Toto nastavenie ovplyvňuje iba zobrazenia na obrazovke."
-
#. n24Cd
-#: cui/uiconfig/ui/optaccessibilitypage.ui:196
+#: cui/uiconfig/ui/optaccessibilitypage.ui:166
msgctxt "optaccessibilitypage|systempagepreviewcolor"
msgid "_Use system colors for page previews"
msgstr "Po_užiť systémové farby pre náhľady stránok"
-#. DRkNv
-#: cui/uiconfig/ui/optaccessibilitypage.ui:205
-msgctxt "extended_tip|systempagepreviewcolor"
-msgid "Applies the high contrast settings of the operating system to page previews."
-msgstr "Použije nastavenie vysokého kontrastu pre náhľady stránok."
-
#. hGpaw
-#: cui/uiconfig/ui/optaccessibilitypage.ui:223
+#: cui/uiconfig/ui/optaccessibilitypage.ui:188
msgctxt "optaccessibilitypage|label2"
msgid "Options for High Contrast Appearance"
msgstr "Možnosti pre zobrazenie vo vysokom kontraste"
-#. yuSqB
-#: cui/uiconfig/ui/optaccessibilitypage.ui:238
-msgctxt "extended_tip|OptAccessibilityPage"
-msgid "Sets options that make %PRODUCTNAME programs more accessible for users with reduced sight, limited dexterity or other disabilities."
-msgstr "Nastavenie volieb, ktoré upravia %PRODUCTNAME tak, aby bol lepšie prístupný používateľom so zhoršeným zrakom, zníženou pohyblivosťou alebo inými problémami."
-
#. kishx
-#: cui/uiconfig/ui/optadvancedpage.ui:61
+#: cui/uiconfig/ui/optadvancedpage.ui:55
msgctxt "optadvancedpage|javaenabled"
msgid "_Use a Java runtime environment"
msgstr "Po_užiť Java Runtime Environment"
-#. xBxzA
-#: cui/uiconfig/ui/optadvancedpage.ui:70
-msgctxt "extended_tip|javaenabled"
-msgid "Allows you to run Java applications in %PRODUCTNAME."
-msgstr "Umožňuje spúšťať aplikácie Java v %PRODUCTNAME."
-
#. DFVFw
-#: cui/uiconfig/ui/optadvancedpage.ui:101
+#: cui/uiconfig/ui/optadvancedpage.ui:89
msgctxt "optadvancedpage|label2"
msgid "_Java runtime environments (JRE) already installed:"
msgstr "Aktuálne nainštalované behové prostredia jazyka Java (JRE):"
#. mBYfC
-#: cui/uiconfig/ui/optadvancedpage.ui:126
+#: cui/uiconfig/ui/optadvancedpage.ui:114
msgctxt "optadvancedpage|add"
msgid "_Add..."
msgstr "Prid_ať..."
-#. kbEGR
-#: cui/uiconfig/ui/optadvancedpage.ui:133
-msgctxt "extended_tip|add"
-msgid "Add a path to the root folder of a JRE on your computer."
-msgstr "Pridá cestu ku koreňovému adresáru JRE na vašom počítači."
-
#. YtgBL
-#: cui/uiconfig/ui/optadvancedpage.ui:145
+#: cui/uiconfig/ui/optadvancedpage.ui:128
msgctxt "optadvancedpage|parameters"
msgid "_Parameters..."
msgstr "_Parametre..."
-#. DJxvJ
-#: cui/uiconfig/ui/optadvancedpage.ui:152
-msgctxt "extended_tip|parameters"
-msgid "Opens the Java Start Parameters dialog."
-msgstr "Otvorí dialógové okno Spúšťacie parametre Java."
-
#. dhf5G
-#: cui/uiconfig/ui/optadvancedpage.ui:164
+#: cui/uiconfig/ui/optadvancedpage.ui:142
msgctxt "optadvancedpage|classpath"
msgid "_Class Path..."
msgstr "_Cesta k triedam..."
-#. qDrtT
-#: cui/uiconfig/ui/optadvancedpage.ui:171
-msgctxt "extended_tip|classpath"
-msgid "Opens the Class Path dialog."
-msgstr "Otvorí dialógové okno Cesta k triedam."
-
#. MxHGu
-#: cui/uiconfig/ui/optadvancedpage.ui:243
+#: cui/uiconfig/ui/optadvancedpage.ui:207
msgctxt "optadvancedpage|vendor"
msgid "Vendor"
msgstr "Poskytovateľ"
#. e6xHG
-#: cui/uiconfig/ui/optadvancedpage.ui:256
+#: cui/uiconfig/ui/optadvancedpage.ui:220
msgctxt "optadvancedpage|version"
msgid "Version"
msgstr "Verzia"
-#. kwgDj
-#: cui/uiconfig/ui/optadvancedpage.ui:267
-msgctxt "extended_tip|javas"
-msgid "Select the JRE that you want to use. On some systems, you must wait a minute until the list gets populated. On some systems, you must restart %PRODUCTNAME to use your changed setting."
-msgstr "Vyberte JRE, ktoré chcete použiť. Na niektorých systémoch musíte chvíľu počkať, než sa zoznam naplní. Na niektorých systémoch musíte reštartovaťc%PRODUCTNAME, aby sa zmeny prejavili."
-
#. erNBk
-#: cui/uiconfig/ui/optadvancedpage.ui:295
+#: cui/uiconfig/ui/optadvancedpage.ui:254
msgctxt "optadvancedpage|javapath"
msgid "Location: "
msgstr "Umiestnenie: "
#. GkBzK
-#: cui/uiconfig/ui/optadvancedpage.ui:312
+#: cui/uiconfig/ui/optadvancedpage.ui:271
msgctxt "optadvancedpage|selectruntime"
msgid "Select a Java Runtime Environment"
msgstr "Vyberte Java Runtime Environment"
#. 7QUQp
-#: cui/uiconfig/ui/optadvancedpage.ui:345
+#: cui/uiconfig/ui/optadvancedpage.ui:301
msgctxt "optadvancedpage|label1"
msgid "Java Options"
msgstr "Možnosti pre Java"
#. rEtsc
-#: cui/uiconfig/ui/optadvancedpage.ui:380
+#: cui/uiconfig/ui/optadvancedpage.ui:336
msgctxt "optadvancedpage|experimental"
msgid "Enable experimental features (may be unstable)"
msgstr "Povoliť experimentálne funkcie (môžu byť nestabilné)"
-#. CyDsa
-#: cui/uiconfig/ui/optadvancedpage.ui:389
-msgctxt "extended_tip|experimental"
-msgid "Enable experimental features"
-msgstr "Povoliť experimentálne funkcie"
-
#. rMVcA
-#: cui/uiconfig/ui/optadvancedpage.ui:400
+#: cui/uiconfig/ui/optadvancedpage.ui:351
msgctxt "optadvancedpage|macrorecording"
msgid "Enable macro recording (may be limited)"
msgstr "Povoliť záznam makier (obmedzená funkčnosť)"
-#. 8Gjtp
-#: cui/uiconfig/ui/optadvancedpage.ui:409
-msgctxt "extended_tip|macrorecording"
-msgid "Enable macro recording"
-msgstr "Povoliť záznam makier"
-
#. NgRXw
-#: cui/uiconfig/ui/optadvancedpage.ui:420
+#: cui/uiconfig/ui/optadvancedpage.ui:366
msgctxt "optadvancedpage|expertconfig"
msgid "Open Expert Configuration"
msgstr "Otvoriť expertné nastavenia"
-#. rAnYG
-#: cui/uiconfig/ui/optadvancedpage.ui:428
-msgctxt "extended_tip|expertconfig"
-msgid "Opens the Expert Configuration dialog for advanced settings and configuration of %PRODUCTNAME."
-msgstr "Otvorí dialógové okno Expertné nastavenia s pokročilými nastaveniami a konfiguráciou %PRODUCTNAME."
-
#. ZLtrh
-#: cui/uiconfig/ui/optadvancedpage.ui:445
+#: cui/uiconfig/ui/optadvancedpage.ui:386
msgctxt "optadvancedpage|label12"
msgid "Optional Features"
msgstr "Voliteľné vlastnosti"
-#. wJx8x
-#: cui/uiconfig/ui/optadvancedpage.ui:461
-msgctxt "extended_tip|OptAdvancedPage"
-msgid "Allows you to run Java applications in %PRODUCTNAME."
-msgstr "Umožňuje spúšťať aplikácie Java v %PRODUCTNAME."
-
#. dmvLE
#: cui/uiconfig/ui/optappearancepage.ui:37
msgctxt "optappearancepage|label3"
msgid "_Scheme:"
msgstr "_Schéma:"
-#. k8ACj
-#: cui/uiconfig/ui/optappearancepage.ui:55
-msgctxt "extended_tip|save"
-msgid "Saves the current settings as a color scheme that you can reload later."
-msgstr "Uloží aktuálne nastavenia ako napr. farebnú schému, ktoré môžete neskôr načítať."
-
-#. 4YuTW
-#: cui/uiconfig/ui/optappearancepage.ui:73
-msgctxt "extended_tip|delete"
-msgid "Deletes the color scheme shown in the Scheme box. You cannot delete the Default scheme."
-msgstr "Odstráni farebnú schému zobrazenú v zozname Schéma. Nemôžete odstrániť predvolenú schému."
-
-#. Gii2p
-#: cui/uiconfig/ui/optappearancepage.ui:89
-msgctxt "extended_tip|colorschemelb"
-msgid "Selects the color scheme you want to use."
-msgstr "Vyberte farebnú schému, ktoré chcete použiť."
-
#. jzELX
-#: cui/uiconfig/ui/optappearancepage.ui:106
+#: cui/uiconfig/ui/optappearancepage.ui:91
msgctxt "optappearancepage|label1"
msgid "Color Scheme"
msgstr "Farebná schéma"
-#. RAEbU
-#: cui/uiconfig/ui/optappearancepage.ui:199
-msgctxt "extended_tip|colorconfig"
-msgid "Select the colors for the user interface elements."
-msgstr "Vyberte farby pre prvky používateľského rozhrania."
-
#. BtFUJ
-#: cui/uiconfig/ui/optappearancepage.ui:231
+#: cui/uiconfig/ui/optappearancepage.ui:211
msgctxt "optappearancepage|uielements"
msgid "User interface elements"
msgstr "Prvky používateľského rozhrania"
#. nrHHF
-#: cui/uiconfig/ui/optappearancepage.ui:246
+#: cui/uiconfig/ui/optappearancepage.ui:226
msgctxt "optappearancepage|colorsetting"
msgid "Color setting"
msgstr "Nastavenia farieb"
#. Jms9Q
-#: cui/uiconfig/ui/optappearancepage.ui:259
+#: cui/uiconfig/ui/optappearancepage.ui:239
msgctxt "optappearancepage|on"
msgid "On"
msgstr "Zapnúť"
#. HFLPF
-#: cui/uiconfig/ui/optappearancepage.ui:280
+#: cui/uiconfig/ui/optappearancepage.ui:260
msgctxt "optappearancepage|label2"
msgid "Custom Colors"
msgstr "Vlastné farby"
-#. vxBRc
-#: cui/uiconfig/ui/optappearancepage.ui:295
-msgctxt "extended_tip|OptAppearancePage"
-msgid "Sets the colors for the %PRODUCTNAME user interface."
-msgstr "Nastavenie farieb pre používateľské rozhranie %PRODUCTNAME."
-
#. nRFne
#: cui/uiconfig/ui/optasianpage.ui:30
msgctxt "optasianpage|charkerning"
msgid "_Western text only"
msgstr "Iba _západný text"
-#. QCvQv
-#: cui/uiconfig/ui/optasianpage.ui:40
-msgctxt "extended_tip|charkerning"
-msgid "Specifies that kerning is only applied to western text."
-msgstr "Určuje, že previs bude použitý len pre západný text."
-
#. WEFrz
-#: cui/uiconfig/ui/optasianpage.ui:52
+#: cui/uiconfig/ui/optasianpage.ui:47
msgctxt "optasianpage|charpunctkerning"
msgid "Western _text and Asian punctuation"
msgstr "Západný _text a ázijská interpunkcia"
-#. PCrHe
-#: cui/uiconfig/ui/optasianpage.ui:62
-msgctxt "extended_tip|charpunctkerning"
-msgid "Specifies that kerning is applied to both western text and Asian punctuation."
-msgstr "Určuje, že previs bude použitý pre západný text i ázijskú interpunkciu."
-
#. 4wTpB
-#: cui/uiconfig/ui/optasianpage.ui:80
+#: cui/uiconfig/ui/optasianpage.ui:70
msgctxt "optasianpage|label1"
msgid "Kerning"
msgstr "Previs"
#. mboKG
-#: cui/uiconfig/ui/optasianpage.ui:112
+#: cui/uiconfig/ui/optasianpage.ui:102
msgctxt "optasianpage|nocompression"
msgid "_No compression"
msgstr "_Bez kompresie"
-#. DGBhs
-#: cui/uiconfig/ui/optasianpage.ui:122
-msgctxt "extended_tip|nocompression"
-msgid "Specifies that no compression at all will occur."
-msgstr "Určuje, že sa nepoužije žiadna kompresia."
-
#. GvJuV
-#: cui/uiconfig/ui/optasianpage.ui:134
+#: cui/uiconfig/ui/optasianpage.ui:119
msgctxt "optasianpage|punctcompression"
msgid "_Compress punctuation only"
msgstr "_Komprimovať iba interpunkciu"
-#. 8FYbX
-#: cui/uiconfig/ui/optasianpage.ui:144
-msgctxt "extended_tip|punctcompression"
-msgid "Specifies that only the punctuation is compressed."
-msgstr "Komprimuje sa iba interpunkcia."
-
#. aGY7H
-#: cui/uiconfig/ui/optasianpage.ui:156
+#: cui/uiconfig/ui/optasianpage.ui:136
msgctxt "optasianpage|punctkanacompression"
msgid "Compress punctuation and Japanese Kana"
msgstr "Komprimovať ~interpunkciu a japonskú Kana"
-#. k2K9z
-#: cui/uiconfig/ui/optasianpage.ui:166
-msgctxt "extended_tip|punctkanacompression"
-msgid "Specifies that punctuation and Japanese Kana are compressed."
-msgstr "Komprimuje sa interpunkcia a japonská Kana."
-
#. DAgwH
-#: cui/uiconfig/ui/optasianpage.ui:184
+#: cui/uiconfig/ui/optasianpage.ui:159
msgctxt "optasianpage|label2"
msgid "Character Spacing"
msgstr "Rozostup znakov"
-#. LbEDU
-#: cui/uiconfig/ui/optasianpage.ui:238
-msgctxt "extended_tip|language"
-msgid "Specifies the language for which you want to define first and last characters."
-msgstr "Určuje jazyk, pre ktorý chcete nastaviť prvý a posledný znak."
-
#. CeSy8
-#: cui/uiconfig/ui/optasianpage.ui:250
+#: cui/uiconfig/ui/optasianpage.ui:220
msgctxt "optasianpage|standard"
msgid "_Default"
msgstr "_Predvolené"
-#. bEKYg
-#: cui/uiconfig/ui/optasianpage.ui:259
-msgctxt "extended_tip|standard"
-msgid "When you mark Default, the following two text boxes are filled with the default characters for the selected language:"
-msgstr "Ak zaškrtnete Predvolené, vyplnia sa nasledujúce dve polia predvolenými znakmi pre vybraný jazyk:"
-
#. WmjE9
-#: cui/uiconfig/ui/optasianpage.ui:279
+#: cui/uiconfig/ui/optasianpage.ui:244
msgctxt "optasianpage|languageft"
msgid "_Language:"
msgstr "_Jazyk:"
#. 3Airv
-#: cui/uiconfig/ui/optasianpage.ui:293
+#: cui/uiconfig/ui/optasianpage.ui:258
msgctxt "optasianpage|startft"
msgid "Not _at start of line:"
msgstr "Nie na _začiatku riadku:"
#. TiFfn
-#: cui/uiconfig/ui/optasianpage.ui:307
+#: cui/uiconfig/ui/optasianpage.ui:272
msgctxt "optasianpage|endft"
msgid "Not at _end of line:"
msgstr "Nie na _konci riadku:"
-#. ebuCA
-#: cui/uiconfig/ui/optasianpage.ui:325
-msgctxt "extended_tip|start"
-msgid "Specifies the characters that should not appear alone at the beginning of a line."
-msgstr "Určuje znaky, ktoré by sa nemali objaviť na začiatku riadku."
-
-#. 6EoPs
-#: cui/uiconfig/ui/optasianpage.ui:342
-msgctxt "extended_tip|end"
-msgid "Specifies the characters that should not appear alone at the end of a line."
-msgstr "Určuje znaky, ktoré by sa nemali objaviť na konci riadku."
-
#. dSvmP
-#: cui/uiconfig/ui/optasianpage.ui:362
+#: cui/uiconfig/ui/optasianpage.ui:317
msgctxt "optasianpage|hintft"
msgid "Without user-defined line break symbols"
msgstr "Bez používateľom definovaných symbolov pre zalomenie riadku"
#. BCwCp
-#: cui/uiconfig/ui/optasianpage.ui:379
+#: cui/uiconfig/ui/optasianpage.ui:334
msgctxt "optasianpage|label3"
msgid "First and Last Characters"
msgstr "Prvé a posledné znaky"
@@ -13666,514 +10574,322 @@ msgctxt "optbasicidepage|codecomplete_enable"
msgid "Enable code completion"
msgstr "Zapnúť dokončovanie kódu"
-#. oQJh3
-#: cui/uiconfig/ui/optbasicidepage.ui:38
-msgctxt "extended_tip|codecomplete_enable"
-msgid "Display methods of a Basic object."
-msgstr "Zobrazí metódy objektu jazyka Basic."
-
#. B8fvE
-#: cui/uiconfig/ui/optbasicidepage.ui:55
+#: cui/uiconfig/ui/optbasicidepage.ui:50
msgctxt "optbasicidepage|label1"
msgid "Code Completion"
msgstr "Dokončovanie kódu"
#. kaYLZ
-#: cui/uiconfig/ui/optbasicidepage.ui:87
+#: cui/uiconfig/ui/optbasicidepage.ui:82
msgctxt "optbasicidepage|autoclose_proc"
msgid "Autoclose procedures"
msgstr "Automaticky ukončiť procedúry"
-#. hjYfe
-#: cui/uiconfig/ui/optbasicidepage.ui:96
-msgctxt "extended_tip|autoclose_proc"
-msgid "Automatically insert closing statements for procedures."
-msgstr "Automaticky bude vkladať uzatváracie príkazy pre procedúry."
-
#. qKTPa
-#: cui/uiconfig/ui/optbasicidepage.ui:107
+#: cui/uiconfig/ui/optbasicidepage.ui:97
msgctxt "optbasicidepage|autoclose_paren"
msgid "Autoclose parenthesis"
msgstr "Automaticky ukončiť zátvorky"
-#. UmekG
-#: cui/uiconfig/ui/optbasicidepage.ui:116
-msgctxt "extended_tip|autoclose_paren"
-msgid "Automatically close open parenthesis."
-msgstr "Automaticky uzatvárať otvorené zátvorky."
-
#. EExBY
-#: cui/uiconfig/ui/optbasicidepage.ui:127
+#: cui/uiconfig/ui/optbasicidepage.ui:112
msgctxt "optbasicidepage|autoclose_quotes"
msgid "Autoclose quotes"
msgstr "Automaticky ukončiť úvodzovky"
-#. GKCkD
-#: cui/uiconfig/ui/optbasicidepage.ui:136
-msgctxt "extended_tip|autoclose_quotes"
-msgid "Automatically close open quotes."
-msgstr "Automaticky uzatvárať otvorené úvodzovky."
-
#. CCtUM
-#: cui/uiconfig/ui/optbasicidepage.ui:147
+#: cui/uiconfig/ui/optbasicidepage.ui:127
msgctxt "optbasicidepage|autocorrect"
msgid "Autocorrection"
msgstr "Automatická oprava"
-#. czdha
-#: cui/uiconfig/ui/optbasicidepage.ui:157
-msgctxt "extended_tip|autocorrect"
-msgid "Correct cases of Basic variables and keywords while typing."
-msgstr "Pri písaní opraví veľkosť písmen premenných a kľúčových slov jazyka Basic."
-
#. dJWhM
-#: cui/uiconfig/ui/optbasicidepage.ui:174
+#: cui/uiconfig/ui/optbasicidepage.ui:149
msgctxt "optbasicidepage|label2"
msgid "Code Suggestion"
msgstr "Návrh kódu"
#. iUBCy
-#: cui/uiconfig/ui/optbasicidepage.ui:206
+#: cui/uiconfig/ui/optbasicidepage.ui:181
msgctxt "optbasicidepage|extendedtypes_enable"
msgid "Use extended types"
msgstr "Použiť rozšírené typy"
-#. zYY9B
-#: cui/uiconfig/ui/optbasicidepage.ui:215
-msgctxt "extended_tip|extendedtypes_enable"
-msgid "Allow UNO object types as valid Basic types."
-msgstr "Povolí objekty typu UNO ako platné typy jazyka Basic."
-
#. rG8Fi
-#: cui/uiconfig/ui/optbasicidepage.ui:232
+#: cui/uiconfig/ui/optbasicidepage.ui:202
msgctxt "optbasicidepage|label3"
msgid "Language Features"
msgstr "Vlastnosti jazyka"
-#. VXGYT
-#: cui/uiconfig/ui/optchartcolorspage.ui:80
-msgctxt "extended_tip|colors"
-msgid "Displays all the colors available for the data series."
-msgstr "Zobrazuje všetky dostupné farby dátových radov."
-
#. vTZjC
-#: cui/uiconfig/ui/optchartcolorspage.ui:93
+#: cui/uiconfig/ui/optchartcolorspage.ui:91
msgctxt "optchartcolorspage|label20"
msgid "Chart Colors"
msgstr "Farby grafu"
#. WA57y
-#: cui/uiconfig/ui/optchartcolorspage.ui:165
+#: cui/uiconfig/ui/optchartcolorspage.ui:163
msgctxt "optchartcolorspage|default"
msgid "_Default"
msgstr "_Predvolené"
-#. mpSKB
-#: cui/uiconfig/ui/optchartcolorspage.ui:172
-msgctxt "extended_tip|default"
-msgid "Restores the color settings that were defined when the program was installed."
-msgstr "Obnoví nastavenie farieb, ktoré bolo definované pri inštalácii programu."
-
#. KoHHw
-#: cui/uiconfig/ui/optchartcolorspage.ui:240
+#: cui/uiconfig/ui/optchartcolorspage.ui:233
msgctxt "optchartcolorspage|label1"
msgid "Color Table"
msgstr "Tabuľka farieb"
-#. xxtZE
-#: cui/uiconfig/ui/optchartcolorspage.ui:255
-msgctxt "extended_tip|OptChartColorsPage"
-msgid "Displays all the colors available for the data series."
-msgstr "Zobrazí všetky dostupné farby dátových radov."
-
#. fVDQp
#: cui/uiconfig/ui/optctlpage.ui:31
msgctxt "optctlpage|sequencechecking"
msgid "Use se_quence checking"
msgstr "Zapnúť kontrolu se_kvencie"
-#. 47pP9
-#: cui/uiconfig/ui/optctlpage.ui:40
-msgctxt "extended_tip|sequencechecking"
-msgid "Enables sequence input checking for languages such as Thai."
-msgstr "Zapína kontrolu poradia pre niektoré jazyky, napr. Thajčinu."
-
#. DTWHd
-#: cui/uiconfig/ui/optctlpage.ui:61
+#: cui/uiconfig/ui/optctlpage.ui:56
msgctxt "optctlpage|restricted"
msgid "Restricted"
msgstr "Obmedzené"
-#. HtGj9
-#: cui/uiconfig/ui/optctlpage.ui:70
-msgctxt "extended_tip|restricted"
-msgid "Prevents the use as well as the printing of illegal character combinations."
-msgstr "Bráni použitiu ako aj tlači neplatných kombinácií znakov."
-
#. wkSPW
-#: cui/uiconfig/ui/optctlpage.ui:81
+#: cui/uiconfig/ui/optctlpage.ui:71
msgctxt "optctlpage|typeandreplace"
msgid "_Type and replace"
msgstr "Písať a nahra_diť"
#. 4fM2r
-#: cui/uiconfig/ui/optctlpage.ui:110
+#: cui/uiconfig/ui/optctlpage.ui:100
msgctxt "optctlpage|label1"
msgid "Sequence Checking"
msgstr "Kontrola sekvencie"
#. oBBi6
-#: cui/uiconfig/ui/optctlpage.ui:145
+#: cui/uiconfig/ui/optctlpage.ui:135
msgctxt "optctlpage|label3"
msgid "Movement:"
msgstr "Pohyb:"
#. R7YUB
-#: cui/uiconfig/ui/optctlpage.ui:155
+#: cui/uiconfig/ui/optctlpage.ui:145
msgctxt "optctlpage|movementlogical"
msgid "Lo_gical"
msgstr "Lo_gické"
-#. W9NrD
-#: cui/uiconfig/ui/optctlpage.ui:165
-msgctxt "extended_tip|movementlogical"
-msgid "Pressing the Right Arrow key moves the text cursor toward the end of the current text. Pressing the Left Arrow key moves the text cursor toward the beginning of the current text."
-msgstr "Textový kurzor sa šípkou vpravo pohybuje smerom ku koncu textu a šípkou vľavo smerom k začiatku textu."
-
#. aEwYW
-#: cui/uiconfig/ui/optctlpage.ui:176
+#: cui/uiconfig/ui/optctlpage.ui:161
msgctxt "optctlpage|movementvisual"
msgid "_Visual"
msgstr "_Vizuálne"
-#. wpUXS
-#: cui/uiconfig/ui/optctlpage.ui:186
-msgctxt "extended_tip|movementvisual"
-msgid "Pressing the Right Arrow key moves the text cursor in the right-hand direction. Pressing the Left Arrow key moves the text cursor in the left-hand direction."
-msgstr "Textový kurzor sa pohybuje šípkou vpravo doprava a šípkou vľavo doľava."
-
#. 78DkF
-#: cui/uiconfig/ui/optctlpage.ui:206
+#: cui/uiconfig/ui/optctlpage.ui:186
msgctxt "optctlpage|label2"
msgid "Cursor Control"
msgstr "Ovládací prvok kurzora"
#. LcTwD
-#: cui/uiconfig/ui/optctlpage.ui:240
+#: cui/uiconfig/ui/optctlpage.ui:220
msgctxt "optctlpage|label5"
msgid "_Numerals:"
msgstr "_Číslice:"
#. BdfCk
-#: cui/uiconfig/ui/optctlpage.ui:255
+#: cui/uiconfig/ui/optctlpage.ui:235
msgctxt "optctlpage|numerals"
msgid "Arabic (1, 2, 3…)"
msgstr "Arabské (1, 2, 3…)"
#. 2n6dr
-#: cui/uiconfig/ui/optctlpage.ui:256
+#: cui/uiconfig/ui/optctlpage.ui:236
msgctxt "optctlpage|numerals"
msgid "Eastern Arabic (٣ ,٢ ,١…)"
msgstr "Východoarabské (٣ ,٢ ,١…)"
#. uFBEA
-#: cui/uiconfig/ui/optctlpage.ui:257
+#: cui/uiconfig/ui/optctlpage.ui:237
msgctxt "optctlpage|numerals"
msgid "System"
msgstr "Systém"
#. 93jgb
-#: cui/uiconfig/ui/optctlpage.ui:258
+#: cui/uiconfig/ui/optctlpage.ui:238
msgctxt "optctlpage|numerals"
msgid "Context"
msgstr "Kontext"
-#. jDGEt
-#: cui/uiconfig/ui/optctlpage.ui:262
-msgctxt "extended_tip|numerals"
-msgid "Selects the type of numerals used within text, text in objects, fields, and controls, in all %PRODUCTNAME modules. Only cell contents of %PRODUCTNAME Calc are not affected."
-msgstr "Vyberte druh číslic použitých v texte, v texte v objektoch, v poliach a ovládacích prvkoch, vo všetkých moduloch %PRODUCTNAME. Ovplyvnený nie je len obsah buniek v %PRODUCTNAME Calc."
-
#. kWczF
-#: cui/uiconfig/ui/optctlpage.ui:279
+#: cui/uiconfig/ui/optctlpage.ui:254
msgctxt "optctlpage|label4"
msgid "General Options"
msgstr "Všeobecné možnosti"
-#. WSTDt
-#: cui/uiconfig/ui/optctlpage.ui:294
-msgctxt "extended_tip|OptCTLPage"
-msgid "Defines the options for documents with complex text layouts."
-msgstr "Určuje možnosti pre dokumenty s komplexným rozložením textu."
-
#. G5EDD
#: cui/uiconfig/ui/optemailpage.ui:34
msgctxt "optemailpage|label2"
msgid "_Email program:"
msgstr "Program _elektronickej pošty:"
-#. bEyeK
-#: cui/uiconfig/ui/optemailpage.ui:53
-msgctxt "extended_tip|url"
-msgid "Enter the email program path and name."
-msgstr "Zadajte názov a cestu k poštovému programu."
-
#. ACQCM
-#: cui/uiconfig/ui/optemailpage.ui:64
+#: cui/uiconfig/ui/optemailpage.ui:59
msgctxt "optemailpage|browse"
msgid "Browse..."
msgstr "Prehliadať..."
-#. Vs69j
-#: cui/uiconfig/ui/optemailpage.ui:71
-msgctxt "extended_tip|browse"
-msgid "Opens a file dialog to select the email program."
-msgstr "Otvorí súborový dialóg na výber poštového programu."
-
#. EHBa5
-#: cui/uiconfig/ui/optemailpage.ui:97
+#: cui/uiconfig/ui/optemailpage.ui:87
msgctxt "optemailpage|browsetitle"
msgid "All files"
msgstr "Všetky súbory"
#. scEyS
-#: cui/uiconfig/ui/optemailpage.ui:122
+#: cui/uiconfig/ui/optemailpage.ui:112
msgctxt "optemailpage|suppress"
msgid "Suppress hidden elements of documents"
msgstr "Vynechať skryté prvky dokumentov"
#. vbcqb
-#: cui/uiconfig/ui/optemailpage.ui:191
+#: cui/uiconfig/ui/optemailpage.ui:181
msgctxt "optemailpage|label1"
msgid "Sending Documents as Email Attachments"
msgstr "Odosielanie dokumentov ako prílohy elektronickej pošty"
-#. DoGA3
-#: cui/uiconfig/ui/optemailpage.ui:199
-msgctxt "extended_tip|OptEmailPage"
-msgid "Enter the email program path and name."
-msgstr "Zadajte názov a cestu k poštovému programu."
-
#. CnnM7
#. A column title, short for Load. This string is repeated as a prefix to an explanatory note under the widget
-#: cui/uiconfig/ui/optfltrembedpage.ui:88
+#: cui/uiconfig/ui/optfltrembedpage.ui:82
msgctxt "optfltrembedpage|column1"
msgid "[L]"
msgstr "[N]"
#. 66D6D
#. A column title, short for Save. This string is repeated as a prefix to an explanatory note under the widget
-#: cui/uiconfig/ui/optfltrembedpage.ui:110
+#: cui/uiconfig/ui/optfltrembedpage.ui:97
msgctxt "optfltrembedpage|column2"
msgid "[S]"
msgstr "[U]"
-#. xrKRQ
-#: cui/uiconfig/ui/optfltrembedpage.ui:135
-msgctxt "extended_tip|checklbcontainer"
-msgid "The [L] and [S] checkbox displays the entries for the pair of OLE objects that can be converted when loading into %PRODUCTNAME [L] and/or when saving into a Microsoft format [S]. "
-msgstr "Zaškrtávacie polia [N] a [U] zobrazujú dvojicu objektov OLE, ktoré môžu byť konvertované pri načítaní do %PRODUCTNAME (N) a / alebo pri ukladaní do niektorého z formátov Microsoftu (U). "
-
#. x5kfq
#. The [L] here is repeated as the column title for the "Load" column of this options page
-#: cui/uiconfig/ui/optfltrembedpage.ui:156
+#: cui/uiconfig/ui/optfltrembedpage.ui:138
msgctxt "optfltrembedpage|label2"
msgid "[L]: Load and convert the object"
msgstr "[N]: Načítať a konvertovať objekt"
#. PiDB7
#. The [S] here is repeated as the column title for the "Save" column of this options page
-#: cui/uiconfig/ui/optfltrembedpage.ui:169
+#: cui/uiconfig/ui/optfltrembedpage.ui:151
msgctxt "optfltrembedpage|label3"
msgid "[S]: Convert and save the object"
msgstr "[U]: Konvertovať a uložiť objekt"
#. f2hGQ
-#: cui/uiconfig/ui/optfltrembedpage.ui:193
+#: cui/uiconfig/ui/optfltrembedpage.ui:175
msgctxt "optfltrembedpage|label1"
msgid "Embedded Objects"
msgstr "Vložené objekty"
#. nvE89
-#: cui/uiconfig/ui/optfltrembedpage.ui:227
+#: cui/uiconfig/ui/optfltrembedpage.ui:209
msgctxt "optfltrembedpage|label5"
msgid "Export as:"
msgstr "Exportovať ako:"
#. FEeH6
-#: cui/uiconfig/ui/optfltrembedpage.ui:242
+#: cui/uiconfig/ui/optfltrembedpage.ui:224
msgctxt "optfltrembedpage|highlighting"
msgid "Highlighting"
msgstr "Zvýraznenie"
-#. mCeit
-#: cui/uiconfig/ui/optfltrembedpage.ui:252
-msgctxt "extended_tip|highlighting"
-msgid "Microsoft Office has two character attributes similar to %PRODUCTNAME character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
-msgstr "Microsoft Office používa dva atribúty znaku podobné pozadiu znaku v %PRODUCTNAME. Vyberte príslušný atribút (zvýraznenie alebo tieňovanie), ktorý chcete použiť pri exporte do formátov súborov Microsoft Office."
-
#. Dnrx7
-#: cui/uiconfig/ui/optfltrembedpage.ui:264
+#: cui/uiconfig/ui/optfltrembedpage.ui:241
msgctxt "optfltrembedpage|shading"
msgid "Shading"
msgstr "Tieňovanie"
-#. 5b274
-#: cui/uiconfig/ui/optfltrembedpage.ui:274
-msgctxt "extended_tip|shading"
-msgid "Microsoft Office has two character attributes similar to %PRODUCTNAME character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
-msgstr "Microsoft Office používa dva atribúty znaku podobné pozadiu znaku v %PRODUCTNAME. Vyberte príslušný atribút (zvýraznenie alebo tieňovanie), ktorý chcete použiť pri exporte do formátov súborov Microsoft Office."
-
#. gKwdG
-#: cui/uiconfig/ui/optfltrembedpage.ui:299
+#: cui/uiconfig/ui/optfltrembedpage.ui:271
msgctxt "optfltrembedpage|label4"
msgid "Character Highlighting"
msgstr "Zvýraznenie znakov"
#. tyACF
-#: cui/uiconfig/ui/optfltrembedpage.ui:330
+#: cui/uiconfig/ui/optfltrembedpage.ui:302
msgctxt "optfltrembedpage|mso_lockfile"
msgid "Create MSO lock file"
msgstr "Vytvoriť zámkový súbor MSO"
-#. NDG4H
-#: cui/uiconfig/ui/optfltrembedpage.ui:340
-msgctxt "extended_tip|mso_lockfile"
-msgid "Mark this checkbox to generate a Microsoft Office lock file in addition to %PRODUCTNAME own lock file."
-msgstr "Ak zaškrtnete toto pole, okrem súboru zámku pre %PRODUCTNAME sa vytvorí aj súbor zámku pre Microsoft Office."
-
-#. Sg5Bw
-#: cui/uiconfig/ui/optfltrembedpage.ui:358
+#. WkpLv
+#: cui/uiconfig/ui/optfltrembedpage.ui:325
msgctxt "optfltrembedpage|label5"
-msgid "Lock Files"
-msgstr ""
-
-#. EUBnP
-#: cui/uiconfig/ui/optfltrembedpage.ui:372
-msgctxt "extended_tip|OptFilterPage"
-msgid "Specifies the settings for importing and exporting Microsoft Office and other documents."
-msgstr "Určuje nastavenia pre importovanie a exportovanie dokumentov Microsoft Office a ďalších formátov."
+msgid "Lock files"
+msgstr "Zamknúť súbory"
#. ttAk5
-#: cui/uiconfig/ui/optfltrpage.ui:30
+#: cui/uiconfig/ui/optfltrpage.ui:29
msgctxt "optfltrpage|wo_basic"
msgid "Load Basic _code"
msgstr "Načítať kód Basi_c"
-#. q4wdN
-#: cui/uiconfig/ui/optfltrpage.ui:39
-msgctxt "extended_tip|wo_basic"
-msgid "Loads and saves the Basic code from a Microsoft document as a special %PRODUCTNAME Basic module with the document. The disabled Microsoft Basic code is visible in the %PRODUCTNAME Basic IDE between Sub and End Sub."
-msgstr "Načíta a uloží kód Basicu z dokumentov Microsoft Office ako špeciálny modul %PRODUCTNAME Basic. Vypnutý kód jazyka Microsoft Basic je viditeľný v %PRODUCTNAME Basic IDE medzi Sub a End Sub, nie je však aktívny."
-
#. AChYC
-#: cui/uiconfig/ui/optfltrpage.ui:50
+#: cui/uiconfig/ui/optfltrpage.ui:46
msgctxt "optfltrpage|wo_exec"
msgid "E_xecutable code"
msgstr "S_pustiteľný kód"
-#. DrWP3
-#: cui/uiconfig/ui/optfltrpage.ui:60
-msgctxt "extended_tip|wo_exec"
-msgid "The VBA (Visual Basic for Applications) code will be loaded ready to be executed. If this checkbox is not checked, the VBA code will be commented out so it can be inspected, but will not run."
-msgstr "Kód VBA (Visual Basic for Applications) bude načítaný tak, aby bol pripravený na spustenie. Ak pole zaškrtnuté nie je, kód VBA bude zakomentovaný, takže ho budete môcť prezerať, ale nie spúšťať."
-
#. avyQV
-#: cui/uiconfig/ui/optfltrpage.ui:71
+#: cui/uiconfig/ui/optfltrpage.ui:64
msgctxt "optfltrpage|wo_saveorig"
msgid "Save _original Basic code"
msgstr "Uložiť pôv_odný kód Basic"
-#. 4pGYB
-#: cui/uiconfig/ui/optfltrpage.ui:80
-msgctxt "extended_tip|wo_saveorig"
-msgid "Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in %PRODUCTNAME. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form."
-msgstr "Určuje, že pôvodný kód Microsoft Basic obsiahnutý v dokumente bude po dobu, kedy je súbor v %PRODUCTNAME otvorený, uložený vo vyhradenej internej pamäti. Pri uložení dokumentu do formátu Microsoftu do neho bude kód Microsoft Basic znovu uložený v pôvodnej nezmenenej forme."
-
#. W6nED
-#: cui/uiconfig/ui/optfltrpage.ui:97
+#: cui/uiconfig/ui/optfltrpage.ui:87
msgctxt "optfltrpage|label1"
msgid "Microsoft Word"
msgstr "Microsoft Word"
#. Z88Ms
-#: cui/uiconfig/ui/optfltrpage.ui:129
+#: cui/uiconfig/ui/optfltrpage.ui:119
msgctxt "optfltrpage|ex_basic"
msgid "Lo_ad Basic code"
msgstr "N_ačítať kód Basic"
-#. QcFGD
-#: cui/uiconfig/ui/optfltrpage.ui:138
-msgctxt "extended_tip|ex_basic"
-msgid "Loads and saves the Basic code from a Microsoft document as a special %PRODUCTNAME Basic module with the document. The disabled Microsoft Basic code is visible in the %PRODUCTNAME Basic IDE between Sub and End Sub."
-msgstr "Načíta a uloží kód Basicu z dokumentov Microsoft Office ako špeciálny modul %PRODUCTNAME Basic. Vypnutý kód jazyka Microsoft Basic je viditeľný v %PRODUCTNAME Basic IDE medzi Sub a End Sub, nie je však aktívny."
-
#. S6ozV
-#: cui/uiconfig/ui/optfltrpage.ui:149
+#: cui/uiconfig/ui/optfltrpage.ui:136
msgctxt "optfltrpage|ex_exec"
msgid "E_xecutable code"
msgstr "S_pustiteľný kód"
-#. qvcsz
-#: cui/uiconfig/ui/optfltrpage.ui:159
-msgctxt "extended_tip|ex_exec"
-msgid "The VBA (Visual Basic for Applications) code will be loaded ready to be executed. If this checkbox is not checked, the VBA code will be commented out so it can be inspected, but will not run."
-msgstr "Kód VBA (Visual Basic for Applications) bude načítaný tak, aby bol pripravený na spustenie. Ak pole zaškrtnuté nie je, kód VBA bude zakomentovaný, takže ho budete môcť prezerať, ale nie spúšťať."
-
#. K6YYX
-#: cui/uiconfig/ui/optfltrpage.ui:170
+#: cui/uiconfig/ui/optfltrpage.ui:154
msgctxt "optfltrpage|ex_saveorig"
msgid "Sa_ve original Basic code"
msgstr "Uložiť pô_vodný kód Basic"
-#. QzDgZ
-#: cui/uiconfig/ui/optfltrpage.ui:179
-msgctxt "extended_tip|ex_saveorig"
-msgid "Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in %PRODUCTNAME. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form."
-msgstr "Určuje, že pôvodný kód Microsoft Basic obsiahnutý v dokumente bude po dobu, kedy je súbor v %PRODUCTNAME otvorený, uložený vo vyhradenej internej pamäti. Pri uložení dokumentu do formátu Microsoftu do neho bude kód Microsoft Basic znovu uložený v pôvodnej nezmenenej forme."
-
#. a5EkB
-#: cui/uiconfig/ui/optfltrpage.ui:196
+#: cui/uiconfig/ui/optfltrpage.ui:177
msgctxt "optfltrpage|label2"
msgid "Microsoft Excel"
msgstr "Microsoft Excel"
#. z9TKA
-#: cui/uiconfig/ui/optfltrpage.ui:228
+#: cui/uiconfig/ui/optfltrpage.ui:209
msgctxt "optfltrpage|pp_basic"
msgid "Load Ba_sic code"
msgstr "Načítať kód Ba_sic"
-#. VR4v5
-#: cui/uiconfig/ui/optfltrpage.ui:237
-msgctxt "extended_tip|pp_basic"
-msgid "Loads and saves the Basic code from a Microsoft document as a special %PRODUCTNAME Basic module with the document. The disabled Microsoft Basic code is visible in the %PRODUCTNAME Basic IDE between Sub and End Sub."
-msgstr "Načíta a uloží kód Basicu z dokumentov Microsoft Office ako špeciálny modul %PRODUCTNAME Basic. Vypnutý kód jazyka Microsoft Basic je viditeľný v %PRODUCTNAME Basic IDE medzi Sub a End Sub, nie je však aktívny."
-
#. VSdyY
-#: cui/uiconfig/ui/optfltrpage.ui:248
+#: cui/uiconfig/ui/optfltrpage.ui:226
msgctxt "optfltrpage|pp_saveorig"
msgid "Sav_e original Basic code"
msgstr "Uložiť pôvo_dný kód Basic"
-#. tTQXM
-#: cui/uiconfig/ui/optfltrpage.ui:257
-msgctxt "extended_tip|pp_saveorig"
-msgid "Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in %PRODUCTNAME. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form."
-msgstr "Určuje, že pôvodný kód Microsoft Basic obsiahnutý v dokumente bude po dobu, kedy je súbor v %PRODUCTNAME otvorený, uložený vo vyhradenej internej pamäti. Pri uložení dokumentu do formátu Microsoftu do neho bude kód Microsoft Basic znovu uložený v pôvodnej nezmenenej forme."
-
#. sazZt
-#: cui/uiconfig/ui/optfltrpage.ui:274
+#: cui/uiconfig/ui/optfltrpage.ui:249
msgctxt "optfltrpage|label3"
msgid "Microsoft PowerPoint"
msgstr "Microsoft PowerPoint"
-#. yV3zh
-#: cui/uiconfig/ui/optfltrpage.ui:289
-msgctxt "extended_tip|OptFltrPage"
-msgid "Specifies the general properties for loading and saving Microsoft Office documents with VBA (Visual Basic for Applications) code."
-msgstr "Všeobecné nastavenia pre načítanie a ukladanie dokumentov Microsoft Office s VBA (Visual Basic for Applications) kódom."
-
#. Q8yvt
#: cui/uiconfig/ui/optfontspage.ui:86
msgctxt "optfontspage|label2"
@@ -14187,127 +10903,67 @@ msgid "Re_place with:"
msgstr "Na_hradiť za:"
#. ctZBz
-#: cui/uiconfig/ui/optfontspage.ui:140
+#: cui/uiconfig/ui/optfontspage.ui:153
msgctxt "optfontspage|always"
msgid "Always"
msgstr "Vždy"
#. pyVz3
-#: cui/uiconfig/ui/optfontspage.ui:161
+#: cui/uiconfig/ui/optfontspage.ui:167
msgctxt "optfontspage|screenonly"
msgid "Screen only"
msgstr "Len na obrazovke"
#. bMguF
-#: cui/uiconfig/ui/optfontspage.ui:175
+#: cui/uiconfig/ui/optfontspage.ui:181
msgctxt "optfontspage|font"
msgid "Font"
msgstr "Písmo"
#. FELgv
-#: cui/uiconfig/ui/optfontspage.ui:189
+#: cui/uiconfig/ui/optfontspage.ui:195
msgctxt "optfontspage|replacewith"
msgid "Replace with"
msgstr "Nahradiť za"
-#. MN8PJ
-#: cui/uiconfig/ui/optfontspage.ui:201
-msgctxt "extended_tip | checklb"
-msgid "Lists the original font and the font that will replace it. Select Always to replace the font, even if the original font is installed on your system. Select Screen only to replace the screen font only and never replace the font for printing."
-msgstr "Vypisuje zoznam pôvodných písiem a písiem, ktoré nahradí. Pre nahradenie obrazovkového písma aj písma tlačiarne, aj keď je originálne písmo nainštalované v systéme, vyberte Vždy. Pre nahradenie písma iba na obrazovke a nie pri tlači zvoľte Len na obrazovke."
-
-#. BGoZq
-#: cui/uiconfig/ui/optfontspage.ui:230
-msgctxt "extended_tip | apply"
-msgid "Applies the selected font replacement."
-msgstr "Použije vybranú náhradu písma."
-
-#. sYmaA
-#: cui/uiconfig/ui/optfontspage.ui:249
-msgctxt "extended_tip | delete"
-msgid "Deletes the selected font replacement."
-msgstr "Odstráni vybranú náhradu písma."
-
-#. gtiJp
-#: cui/uiconfig/ui/optfontspage.ui:272
-msgctxt "extended_tip | font2"
-msgid "Enter or select the name of the replacement font."
-msgstr "Zadajte alebo vyberte názov náhradného písma."
-
-#. SABse
-#: cui/uiconfig/ui/optfontspage.ui:295
-msgctxt "extended_tip | font1"
-msgid "Enter or select the name of the font that you want to replace."
-msgstr "Zadajte alebo vyberte názov písma, ktoré chcete nahradiť."
-
-#. k4PCs
-#: cui/uiconfig/ui/optfontspage.ui:306
-msgctxt "extended_tip | replacements"
-msgid "Substitutes a font with a font of your choice. The substitution replaces a font only when it is displayed on screen, or on screen and when printing. The replacement does not change the font settings that are saved in the document."
-msgstr "Nahradí písmo podľa vášho výberu. Písmo sa nahrádza buď iba pri zobrazení, alebo pri zobrazení a tlači. Nemení sa písmo určené vo formátovaní dokumentu."
-
#. 7ECDC
-#: cui/uiconfig/ui/optfontspage.ui:318
+#: cui/uiconfig/ui/optfontspage.ui:294
msgctxt "optfontspage|usetable"
msgid "_Apply replacement table"
msgstr "Použiť t_abuľku náhrad"
-#. AVB5d
-#: cui/uiconfig/ui/optfontspage.ui:327
-msgctxt "extended_tip | usetable"
-msgid "Enables the font replacement settings that you define."
-msgstr "Povoľuje náhrady písiem, ktoré určíte."
-
#. wDa4A
-#: cui/uiconfig/ui/optfontspage.ui:345
+#: cui/uiconfig/ui/optfontspage.ui:316
msgctxt "optfontspage|label4"
msgid "Replacement Table"
msgstr "Tabuľka náhrad"
#. z93yC
-#: cui/uiconfig/ui/optfontspage.ui:383
+#: cui/uiconfig/ui/optfontspage.ui:354
msgctxt "optfontspage|label8"
msgid "Fon_ts:"
msgstr "Pís_ma:"
#. L9aT3
-#: cui/uiconfig/ui/optfontspage.ui:398
+#: cui/uiconfig/ui/optfontspage.ui:369
msgctxt "optfontspage|label9"
msgid "_Size:"
msgstr "_Veľkosť:"
#. KXCQg
-#: cui/uiconfig/ui/optfontspage.ui:413
+#: cui/uiconfig/ui/optfontspage.ui:384
msgctxt "optfontspage|fontname"
msgid "Automatic"
msgstr "Automatický"
-#. LKiV2
-#: cui/uiconfig/ui/optfontspage.ui:417
-msgctxt "extended_tip | fontname"
-msgid "Select the font for the display of HTML and Basic source code."
-msgstr "Vyberte písmo na zobrazenie zdrojového kódu HTML a Basic."
-
#. Cc5tn
-#: cui/uiconfig/ui/optfontspage.ui:428
+#: cui/uiconfig/ui/optfontspage.ui:394
msgctxt "optfontspage|nonpropfontonly"
msgid "_Non-proportional fonts only"
msgstr "Len _neproporcionálne písma"
-#. aUYNh
-#: cui/uiconfig/ui/optfontspage.ui:437
-msgctxt "extended_tip | nonpropfontonly"
-msgid "Check to display only non-proportional fonts in the Fonts list box."
-msgstr "Ak zaškrtnete toto pole, zobrazia sa v zozname Písma iba neproporcionálne písma."
-
-#. GAiec
-#: cui/uiconfig/ui/optfontspage.ui:454
-msgctxt "extended_tip | fontheight"
-msgid "Select a font size for the display of HTML and Basic source code."
-msgstr "Vyberte veľkosť písma na zobrazenie zdrojového kódu HTML a Basic."
-
#. AafuA
-#: cui/uiconfig/ui/optfontspage.ui:474
+#: cui/uiconfig/ui/optfontspage.ui:430
msgctxt "optfontspage|label1"
msgid "Font Settings for HTML, Basic and SQL Sources"
msgstr "Nastavenia písma pre zdrojový kód HTML, Basic a SQL"
@@ -14318,620 +10974,362 @@ msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "_Rozšírené tipy"
-#. ypuz2
-#: cui/uiconfig/ui/optgeneralpage.ui:44
-msgctxt "extended_tip | exthelp"
-msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
-msgstr "Keď chvíľu podržíte kurzor nad ikonou, príkazom ponuky alebo ovládacím prvkom v dialógovom okne, zobrazí sa krátky pomocný text."
-
#. Cbeuc
-#: cui/uiconfig/ui/optgeneralpage.ui:55
+#: cui/uiconfig/ui/optgeneralpage.ui:50
msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr "Zobrazovať okno \"Pomocník nie je nainštalovaný\""
#. YUaEz
-#: cui/uiconfig/ui/optgeneralpage.ui:69
+#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr "Pri spustení zobrazovať okno 'Tip dňa'"
#. BR6gf
-#: cui/uiconfig/ui/optgeneralpage.ui:90
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Pomocník"
#. aqdMJ
-#: cui/uiconfig/ui/optgeneralpage.ui:121
+#: cui/uiconfig/ui/optgeneralpage.ui:116
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Po_užiť dialógové okná %PRODUCTNAME"
#. ySSsA
-#: cui/uiconfig/ui/optgeneralpage.ui:155
+#: cui/uiconfig/ui/optgeneralpage.ui:150
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Dialógové okná Otvoriť/Uložiť"
#. JAW5C
-#: cui/uiconfig/ui/optgeneralpage.ui:181
+#: cui/uiconfig/ui/optgeneralpage.ui:176
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Použiť _dialógové okna %PRODUCTNAME"
#. F6nzA
-#: cui/uiconfig/ui/optgeneralpage.ui:196
+#: cui/uiconfig/ui/optgeneralpage.ui:191
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Dialógové okná tlače"
#. SFLLC
-#: cui/uiconfig/ui/optgeneralpage.ui:222
+#: cui/uiconfig/ui/optgeneralpage.ui:217
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Tlač zmení stav dokumentu na \"zmenený\""
-#. kPEpF
-#: cui/uiconfig/ui/optgeneralpage.ui:231
-msgctxt "extended_tip | docstatus"
-msgid "Specifies whether the printing of the document counts as a modification."
-msgstr "Určuje, či je tlač dokumentu považovaná za zmenu."
-
#. 4yo9c
-#: cui/uiconfig/ui/optgeneralpage.ui:242
+#: cui/uiconfig/ui/optgeneralpage.ui:232
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Stav dokumentu"
#. zEUCi
-#: cui/uiconfig/ui/optgeneralpage.ui:275
+#: cui/uiconfig/ui/optgeneralpage.ui:265
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretovať ako roky medzi "
-#. huNG6
-#: cui/uiconfig/ui/optgeneralpage.ui:293
-msgctxt "extended_tip | year"
-msgid "Defines a date range, within which the system recognizes a two-digit year."
-msgstr "Určuje rozsah, v rámci ktorého systém rozpoznáva dvojciferne zadaný rok."
-
#. AhF6m
-#: cui/uiconfig/ui/optgeneralpage.ui:306
+#: cui/uiconfig/ui/optgeneralpage.ui:291
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "a "
#. 7r6RF
-#: cui/uiconfig/ui/optgeneralpage.ui:321
+#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Rok (dve číslice)"
#. FqdXe
-#: cui/uiconfig/ui/optgeneralpage.ui:351
+#: cui/uiconfig/ui/optgeneralpage.ui:336
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Zhromažďovať dáta o používaní programu a odosielať ich The Document Foundation"
-#. xkgEo
-#: cui/uiconfig/ui/optgeneralpage.ui:361
-msgctxt "extended_tip | collectusageinfo"
-msgid "Send usage data to help The Document Foundation improve the software usability."
-msgstr "Zapne odosielanie dát o používaní tohto softvéru spoločnosti The Document Foundation, aby mohla zlepšovať jeho použiteľnosť."
-
#. pRnqG
-#: cui/uiconfig/ui/optgeneralpage.ui:372
+#: cui/uiconfig/ui/optgeneralpage.ui:352
msgctxt "optgeneralpage|crashreport"
msgid "Sen_d crash reports to The Document Foundation"
msgstr "Od_osielať správy o páde do The Document Foundation"
#. rS3dG
-#: cui/uiconfig/ui/optgeneralpage.ui:394
+#: cui/uiconfig/ui/optgeneralpage.ui:374
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Pomoc pri zlepšovaní %PRODUCTNAME"
#. 2MFwd
-#: cui/uiconfig/ui/optgeneralpage.ui:425
+#: cui/uiconfig/ui/optgeneralpage.ui:405
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Načítať %PRODUCTNAME počas štartu systému"
#. MKruH
-#: cui/uiconfig/ui/optgeneralpage.ui:440
+#: cui/uiconfig/ui/optgeneralpage.ui:420
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Zapnúť Quickstarter v systémovej lište"
#. 8vGvu
-#: cui/uiconfig/ui/optgeneralpage.ui:461
+#: cui/uiconfig/ui/optgeneralpage.ui:441
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
-msgstr "Rýchle spustenie %PRODUCTNAME"
+msgstr "%PRODUCTNAME Quickstarter"
#. FvigS
-#: cui/uiconfig/ui/optgeneralpage.ui:491
+#: cui/uiconfig/ui/optgeneralpage.ui:472
msgctxt "optgeneralpage|fileassoc"
msgid "Windows Default apps"
msgstr "Predvolená aplikácia systému Windows"
#. fXjVB
-#: cui/uiconfig/ui/optgeneralpage.ui:511
+#: cui/uiconfig/ui/optgeneralpage.ui:491
msgctxt "optgeneralpage|fileassoc"
msgid "%PRODUCTNAME File Associations"
msgstr "Asociácia súborov %PRODUCTNAME"
-#. coFbL
-#: cui/uiconfig/ui/optgeneralpage.ui:525
-msgctxt "extended_tip | OptGeneralPage"
-msgid "Specifies the general settings for %PRODUCTNAME."
-msgstr "Obsahuje všeobecné nastavenia pre %PRODUCTNAME."
-
#. FsiDE
#: cui/uiconfig/ui/opthtmlpage.ui:89
msgctxt "opthtmlpage|size7FT"
msgid "Size _7:"
msgstr "Veľkosť _7:"
-#. eSVmw
-#: cui/uiconfig/ui/opthtmlpage.ui:105
-msgctxt "extended_tip|size7"
-msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML <font size=1> to <font size=7> tags."
-msgstr "Pomocou číselných polí Veľkosť 1 až Veľkosť 7 určite veľkosť písma pre HTML značky <font size = 1> až <font size = 7>."
-
#. SfHVG
-#: cui/uiconfig/ui/opthtmlpage.ui:118
+#: cui/uiconfig/ui/opthtmlpage.ui:113
msgctxt "opthtmlpage|size6FT"
msgid "Size _6:"
msgstr "Veľkosť _6:"
-#. wWFqw
-#: cui/uiconfig/ui/opthtmlpage.ui:134
-msgctxt "extended_tip|size6"
-msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML <font size=1> to <font size=7> tags."
-msgstr "Pomocou číselných polí Veľkosť 1 až Veľkosť 7 určite veľkosť písma pre HTML značky <font size = 1> až <font size = 7>."
-
#. mbGGc
-#: cui/uiconfig/ui/opthtmlpage.ui:147
+#: cui/uiconfig/ui/opthtmlpage.ui:137
msgctxt "opthtmlpage|size5FT"
msgid "Size _5:"
msgstr "Veľkosť _5:"
-#. GAy87
-#: cui/uiconfig/ui/opthtmlpage.ui:163
-msgctxt "extended_tip|size5"
-msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML <font size=1> to <font size=7> tags."
-msgstr "Pomocou číselných polí Veľkosť 1 až Veľkosť 7 určite veľkosť písma pre HTML značky <font size = 1> až <font size = 7>."
-
#. PwaSa
-#: cui/uiconfig/ui/opthtmlpage.ui:176
+#: cui/uiconfig/ui/opthtmlpage.ui:161
msgctxt "opthtmlpage|size4FT"
msgid "Size _4:"
msgstr "Veľkosť _4:"
-#. QEA47
-#: cui/uiconfig/ui/opthtmlpage.ui:192
-msgctxt "extended_tip|size4"
-msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML <font size=1> to <font size=7> tags."
-msgstr "Pomocou číselných polí Veľkosť 1 až Veľkosť 7 určite veľkosť písma pre HTML značky <font size = 1> až <font size = 7>."
-
#. FSRpm
-#: cui/uiconfig/ui/opthtmlpage.ui:205
+#: cui/uiconfig/ui/opthtmlpage.ui:185
msgctxt "opthtmlpage|size3FT"
msgid "Size _3:"
msgstr "Veľkosť _3:"
-#. drCYA
-#: cui/uiconfig/ui/opthtmlpage.ui:221
-msgctxt "extended_tip|size3"
-msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML <font size=1> to <font size=7> tags."
-msgstr "Pomocou číselných polí Veľkosť 1 až Veľkosť 7 určite veľkosť písma pre HTML značky <font size = 1> až <font size = 7>."
-
#. unrKj
-#: cui/uiconfig/ui/opthtmlpage.ui:234
+#: cui/uiconfig/ui/opthtmlpage.ui:209
msgctxt "opthtmlpage|size2FT"
msgid "Size _2:"
msgstr "Veľkosť _2:"
-#. tvwUA
-#: cui/uiconfig/ui/opthtmlpage.ui:250
-msgctxt "extended_tip|size2"
-msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML <font size=1> to <font size=7> tags."
-msgstr "Pomocou číselných polí Veľkosť 1 až Veľkosť 7 určite veľkosť písma pre HTML značky <font size = 1> až <font size = 7>."
-
#. aiSoE
-#: cui/uiconfig/ui/opthtmlpage.ui:263
+#: cui/uiconfig/ui/opthtmlpage.ui:233
msgctxt "opthtmlpage|size1FT"
msgid "Size _1:"
msgstr "Veľkosť _1:"
-#. 99HCd
-#: cui/uiconfig/ui/opthtmlpage.ui:279
-msgctxt "extended_tip|size1"
-msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML <font size=1> to <font size=7> tags."
-msgstr "Pomocou číselných polí Veľkosť 1 až Veľkosť 7 určite veľkosť písma pre HTML značky <font size = 1> až <font size = 7>."
-
#. rRkQd
-#: cui/uiconfig/ui/opthtmlpage.ui:296
+#: cui/uiconfig/ui/opthtmlpage.ui:261
msgctxt "opthtmlpage|label1"
msgid "Font Sizes"
msgstr "Veľkosti písma"
#. JRQrk
-#: cui/uiconfig/ui/opthtmlpage.ui:345
+#: cui/uiconfig/ui/opthtmlpage.ui:310
msgctxt "opthtmlpage|ignorefontnames"
msgid "Ignore _font settings"
msgstr "Ignorovať nastavenia _písiem"
-#. kD39h
-#: cui/uiconfig/ui/opthtmlpage.ui:355
-msgctxt "extended_tip|ignorefontnames"
-msgid "Mark this check box to ignore all font settings when importing. The fonts that were defined in the HTML Page Style will be the fonts that will be used. "
-msgstr "Zaškrtnite toto pole, ak chcete pri importe ignorovať nastavenia písma. Použijú sa písma uvedené v štýle HTML stránky. "
-
#. 7bZSP
-#: cui/uiconfig/ui/opthtmlpage.ui:366
+#: cui/uiconfig/ui/opthtmlpage.ui:326
msgctxt "opthtmlpage|unknowntag"
msgid "_Import unknown HTML tags as fields"
msgstr "_Importovať neznáme HTML značky ako polia"
-#. QvehA
-#: cui/uiconfig/ui/opthtmlpage.ui:376
-msgctxt "extended_tip|unknowntag"
-msgid "Mark this check box if you want tags that are not recognized by %PRODUCTNAME to be imported as fields."
-msgstr "Zaškrtnite toto pole, ak chcete značky, ktoré %PRODUCTNAME nerozpozná, importovať ako pole."
-
#. VFTrU
-#: cui/uiconfig/ui/opthtmlpage.ui:387
+#: cui/uiconfig/ui/opthtmlpage.ui:342
msgctxt "opthtmlpage|numbersenglishus"
msgid "_Use '%ENGLISHUSLOCALE' locale for numbers"
msgstr "_Použiť národné nastavenie '%ENGLISHUSLOCALE' pre čísla"
-#. c4j5A
-#: cui/uiconfig/ui/opthtmlpage.ui:397
-msgctxt "extended_tip|numbersenglishus"
-msgid "If not checked, numbers will be interpreted according to the setting in Language Settings - Language of - Locale setting in the Options dialog box. If checked, numbers will be interpreted as 'English (USA)' locale."
-msgstr "Pokiaľ nie je zaškrtnuté, budú čísla interpretované podľa nastavenia voľby Nastavenie jazyka - Jazyky - Národné nastavenie v dialógovom okne Možnosti. Ak zaškrtnuté je, budú čísla interpretované ako v národnom prostredí 'Angličtina (USA)'."
-
#. Fnsdh
-#: cui/uiconfig/ui/opthtmlpage.ui:414
+#: cui/uiconfig/ui/opthtmlpage.ui:364
msgctxt "opthtmlpage|label2"
msgid "Import"
msgstr "Importovať"
#. UajLE
-#: cui/uiconfig/ui/opthtmlpage.ui:458
+#: cui/uiconfig/ui/opthtmlpage.ui:408
msgctxt "opthtmlpage|charsetFT"
msgid "Character _set:"
msgstr "Znaková _sada:"
-#. bTGc4
-#: cui/uiconfig/ui/opthtmlpage.ui:476
-msgctxt "extended_tip|charset"
-msgid "Select the appropriate character set for the export"
-msgstr "Vyberte znakovú sadu pre export"
-
#. nJtoS
-#: cui/uiconfig/ui/opthtmlpage.ui:493
+#: cui/uiconfig/ui/opthtmlpage.ui:438
msgctxt "opthtmlpage|savegrflocal"
msgid "_Copy local images to Internet"
msgstr "_Kopírovať lokálne obrázky na internet"
-#. fPAEu
-#: cui/uiconfig/ui/opthtmlpage.ui:503
-msgctxt "extended_tip|savegrflocal"
-msgid "Mark this check box to automatically upload the embedded pictures to the Internet server when uploading using FTP. Use the Save As dialog to save the document and enter a complete FTP URL as the file name in the Internet."
-msgstr "Pre automatické nahrávanie vložených obrázkov na webový server pomocou FTP zaškrtnite toto pole. Pre uloženie dokumentu použite dialóg Uložiť ako a ako meno súboru v Internete vyplňte úplnú URL adresu FTP."
-
#. Xc4iM
-#: cui/uiconfig/ui/opthtmlpage.ui:514
+#: cui/uiconfig/ui/opthtmlpage.ui:454
msgctxt "opthtmlpage|printextension"
msgid "_Print layout"
msgstr "Ro_zloženie tlače"
-#. CMsrc
-#: cui/uiconfig/ui/opthtmlpage.ui:524
-msgctxt "extended_tip|printextension"
-msgid "If you mark this field, the print layout of the current document (for example, table of contents with justified page numbers and dot leaders) is exported as well."
-msgstr "Ak zaškrtnete toto pole, exportuje sa s aktuálnym dokumentom aj jeho rozvrhnutie pre tlač (napríklad obsah s číslami stránok zarovnanými do bloku a s vodiacimi bodkami)."
-
#. Wwuvt
-#: cui/uiconfig/ui/opthtmlpage.ui:535
+#: cui/uiconfig/ui/opthtmlpage.ui:470
msgctxt "opthtmlpage|starbasicwarning"
msgid "Display _warning"
msgstr "Zobraziť _výstrahu"
-#. wArnh
-#: cui/uiconfig/ui/opthtmlpage.ui:546
-msgctxt "extended_tip|starbasicwarning"
-msgid "If this field is marked, when exporting to HTML a warning is shown that %PRODUCTNAME Basic macros will be lost."
-msgstr "Ak je toto pole zaškrtnuté, bude pri exporte do HTML zobrazené upozornenie, že makrá jazyka %PRODUCTNAME Basic sa stratia."
-
#. puyKW
-#: cui/uiconfig/ui/opthtmlpage.ui:557
+#: cui/uiconfig/ui/opthtmlpage.ui:487
msgctxt "opthtmlpage|starbasic"
msgid "LibreOffice _Basic"
msgstr "LibreOffice _Basic"
-#. BtWXE
-#: cui/uiconfig/ui/opthtmlpage.ui:567
-msgctxt "extended_tip|starbasic"
-msgid "Mark this check box to include the %PRODUCTNAME Basic instructions when exporting to HTML format."
-msgstr "Ak toto pole zaškrtnete, pri exporte do formátu HTML budú inštrukcie jazyka %PRODUCTNAME Basic zahrnuté."
-
#. sEnBN
-#: cui/uiconfig/ui/opthtmlpage.ui:584
+#: cui/uiconfig/ui/opthtmlpage.ui:509
msgctxt "opthtmlpage|label3"
msgid "Export"
msgstr "Exportovať"
-#. TKsp4
-#: cui/uiconfig/ui/opthtmlpage.ui:606
-msgctxt "extended_tip|OptHtmlPage"
-msgid "Defines settings for HTML pages."
-msgstr "Určuje nastavenie pre stránky HTML."
-
#. ecN5A
#: cui/uiconfig/ui/optionsdialog.ui:18
msgctxt "optionsdialog|OptionsDialog"
msgid "Options"
msgstr "Možnosti"
-#. 5UNGW
-#: cui/uiconfig/ui/optionsdialog.ui:56
-msgctxt "optionsdialog|extended_tip|revert"
-msgid "Resets changes made to the current tab to those applicable when this dialog was opened."
-msgstr "Obnoví zmeny vykonané na aktuálnej záložke na stav pri otvorení tohto dialógového okna."
-
-#. r2pWX
-#: cui/uiconfig/ui/optionsdialog.ui:91
-msgctxt "optionsdialog|extended_tip|ok"
-msgid "Saves all changes and closes dialog."
-msgstr "Uloží všetky zmeny a zatvorí dialógové okno."
-
-#. 9asgn
-#: cui/uiconfig/ui/optionsdialog.ui:110
-msgctxt "optionsdialog|extended_tip|cancel"
-msgid "Closes dialog and discards all changes."
-msgstr "Zatvorí dialógové okno a zruší všetky zmeny."
-
#. CgiEq
-#: cui/uiconfig/ui/optjsearchpage.ui:34
+#: cui/uiconfig/ui/optjsearchpage.ui:33
msgctxt "optjsearchpage|matchcase"
msgid "_uppercase/lowercase"
msgstr "_veľké/malé písmo"
-#. HLhzj
-#: cui/uiconfig/ui/optjsearchpage.ui:43
-msgctxt "extended_tip|matchcase"
-msgid "Specifies the options to be treated as equal in a search."
-msgstr "Určuje možnosti, ktoré sa majú pri vyhľadávaní považovať za rovnaké."
-
#. MkLv3
-#: cui/uiconfig/ui/optjsearchpage.ui:54
+#: cui/uiconfig/ui/optjsearchpage.ui:50
msgctxt "optjsearchpage|matchfullhalfwidth"
msgid "_full-width/half-width forms"
msgstr "_formy s plnou/polovičnou šírkou"
-#. 35mFr
-#: cui/uiconfig/ui/optjsearchpage.ui:63
-msgctxt "extended_tip|matchfullhalfwidth"
-msgid "Specifies the options to be treated as equal in a search."
-msgstr "Určuje možnosti, ktoré sa majú pri vyhľadávaní považovať za rovnaké."
-
#. FPFmB
-#: cui/uiconfig/ui/optjsearchpage.ui:74
+#: cui/uiconfig/ui/optjsearchpage.ui:67
msgctxt "optjsearchpage|matchhiraganakatakana"
msgid "_hiragana/katakana"
msgstr "_hiragana/katakana"
-#. LUPFs
-#: cui/uiconfig/ui/optjsearchpage.ui:83
-msgctxt "extended_tip|matchhiraganakatakana"
-msgid "Specifies the options to be treated as equal in a search."
-msgstr "Určuje možnosti, ktoré sa majú pri vyhľadávaní považovať za rovnaké."
-
#. vx6x8
-#: cui/uiconfig/ui/optjsearchpage.ui:94
+#: cui/uiconfig/ui/optjsearchpage.ui:84
msgctxt "optjsearchpage|matchcontractions"
msgid "_contractions (yo-on, sokuon)"
msgstr "_zúžené tvary (yo-on, sokuon)"
-#. xYeGB
-#: cui/uiconfig/ui/optjsearchpage.ui:103
-msgctxt "extended_tip|matchcontractions"
-msgid "Specifies the options to be treated as equal in a search."
-msgstr "Určuje možnosti, ktoré sa majú pri vyhľadávaní považovať za rovnaké."
-
#. DLxj9
-#: cui/uiconfig/ui/optjsearchpage.ui:114
+#: cui/uiconfig/ui/optjsearchpage.ui:101
msgctxt "optjsearchpage|matchminusdashchoon"
msgid "_minus/dash/cho-on"
msgstr "_mínus/pomlčka/cho-on"
-#. pkg8E
-#: cui/uiconfig/ui/optjsearchpage.ui:123
-msgctxt "extended_tip|matchminusdashchoon"
-msgid "Specifies the options to be treated as equal in a search."
-msgstr "Určuje možnosti, ktoré sa majú pri vyhľadávaní považovať za rovnaké."
-
#. hYq5H
-#: cui/uiconfig/ui/optjsearchpage.ui:134
+#: cui/uiconfig/ui/optjsearchpage.ui:118
msgctxt "optjsearchpage|matchrepeatcharmarks"
msgid "'re_peat character' marks"
msgstr "'o_pakovacie' znaky"
-#. fHHv6
-#: cui/uiconfig/ui/optjsearchpage.ui:143
-msgctxt "extended_tip|matchrepeatcharmarks"
-msgid "Specifies the options to be treated as equal in a search."
-msgstr "Určuje možnosti, ktoré sa majú pri vyhľadávaní považovať za rovnaké."
-
#. 62963
-#: cui/uiconfig/ui/optjsearchpage.ui:154
+#: cui/uiconfig/ui/optjsearchpage.ui:135
msgctxt "optjsearchpage|matchvariantformkanji"
msgid "_variant-form kanji (itaiji)"
msgstr "_variantná forma kanji (itaiji)"
-#. EQ6FA
-#: cui/uiconfig/ui/optjsearchpage.ui:163
-msgctxt "extended_tip|matchvariantformkanji"
-msgid "Specifies the options to be treated as equal in a search."
-msgstr "Určuje možnosti, ktoré sa majú pri vyhľadávaní považovať za rovnaké."
-
#. ghXPH
-#: cui/uiconfig/ui/optjsearchpage.ui:174
+#: cui/uiconfig/ui/optjsearchpage.ui:152
msgctxt "optjsearchpage|matcholdkanaforms"
msgid "_old Kana forms"
msgstr "staré _Kana formy"
-#. 2WWSU
-#: cui/uiconfig/ui/optjsearchpage.ui:183
-msgctxt "extended_tip|matcholdkanaforms"
-msgid "Specifies the options to be treated as equal in a search."
-msgstr "Určuje možnosti, ktoré sa majú pri vyhľadávaní považovať za rovnaké."
-
#. Wxc7u
-#: cui/uiconfig/ui/optjsearchpage.ui:194
+#: cui/uiconfig/ui/optjsearchpage.ui:169
msgctxt "optjsearchpage|matchdiziduzu"
msgid "_di/zi, du/zu"
msgstr "_di/zi, du/zu"
-#. EBvfD
-#: cui/uiconfig/ui/optjsearchpage.ui:203
-msgctxt "extended_tip|matchdiziduzu"
-msgid "Specifies the options to be treated as equal in a search."
-msgstr "Určuje možnosti, ktoré sa majú pri vyhľadávaní považovať za rovnaké."
-
#. mAzGZ
-#: cui/uiconfig/ui/optjsearchpage.ui:214
+#: cui/uiconfig/ui/optjsearchpage.ui:186
msgctxt "optjsearchpage|matchbavahafa"
msgid "_ba/va, ha/fa"
msgstr "_ba/va, ha/fa"
-#. QMJfK
-#: cui/uiconfig/ui/optjsearchpage.ui:223
-msgctxt "extended_tip|matchbavahafa"
-msgid "Specifies the options to be treated as equal in a search."
-msgstr "Určuje možnosti, ktoré sa majú pri vyhľadávaní považovať za rovnaké."
-
#. MJAYD
-#: cui/uiconfig/ui/optjsearchpage.ui:234
+#: cui/uiconfig/ui/optjsearchpage.ui:203
msgctxt "optjsearchpage|matchtsithichidhizi"
msgid "_tsi/thi/chi, dhi/zi"
msgstr "_tsi/thi/chi, dhi/zi"
-#. WBzBC
-#: cui/uiconfig/ui/optjsearchpage.ui:243
-msgctxt "extended_tip|matchtsithichidhizi"
-msgid "Specifies the options to be treated as equal in a search."
-msgstr "Určuje možnosti, ktoré sa majú pri vyhľadávaní považovať za rovnaké."
-
#. CDA8F
-#: cui/uiconfig/ui/optjsearchpage.ui:254
+#: cui/uiconfig/ui/optjsearchpage.ui:220
msgctxt "optjsearchpage|matchhyuiyubyuvyu"
msgid "h_yu/fyu, byu/vyu"
msgstr "h_yu/fyu, byu/vyu"
-#. ZHDR5
-#: cui/uiconfig/ui/optjsearchpage.ui:263
-msgctxt "extended_tip|matchhyuiyubyuvyu"
-msgid "Specifies the options to be treated as equal in a search."
-msgstr "Určuje možnosti, ktoré sa majú pri vyhľadávaní považovať za rovnaké."
-
#. MsCme
-#: cui/uiconfig/ui/optjsearchpage.ui:274
+#: cui/uiconfig/ui/optjsearchpage.ui:237
msgctxt "optjsearchpage|matchseshezeje"
msgid "_se/she, ze/je"
msgstr "_se/she, ze/je"
-#. ZgHGb
-#: cui/uiconfig/ui/optjsearchpage.ui:283
-msgctxt "extended_tip|matchseshezeje"
-msgid "Specifies the options to be treated as equal in a search."
-msgstr "Určuje možnosti, ktoré sa majú pri vyhľadávaní považovať za rovnaké."
-
#. nRKqj
-#: cui/uiconfig/ui/optjsearchpage.ui:294
+#: cui/uiconfig/ui/optjsearchpage.ui:254
msgctxt "optjsearchpage|matchiaiya"
msgid "_ia/iya (piano/piyano)"
msgstr "_ia/iya (piano/piyano)"
-#. SANdY
-#: cui/uiconfig/ui/optjsearchpage.ui:303
-msgctxt "extended_tip|matchiaiya"
-msgid "Specifies the options to be treated as equal in a search."
-msgstr "Určuje možnosti, ktoré sa majú pri vyhľadávaní považovať za rovnaké."
-
#. 4i3uv
-#: cui/uiconfig/ui/optjsearchpage.ui:314
+#: cui/uiconfig/ui/optjsearchpage.ui:271
msgctxt "optjsearchpage|matchkiku"
msgid "_ki/ku (tekisuto/tekusuto)"
msgstr "_ki/ku (tekisuto/tekusuto)"
-#. s4qyS
-#: cui/uiconfig/ui/optjsearchpage.ui:323
-msgctxt "extended_tip|matchkiku"
-msgid "Specifies the options to be treated as equal in a search."
-msgstr "Určuje možnosti, ktoré sa majú pri vyhľadávaní považovať za rovnaké."
-
#. eEXX5
-#: cui/uiconfig/ui/optjsearchpage.ui:334
+#: cui/uiconfig/ui/optjsearchpage.ui:288
msgctxt "optjsearchpage|matchprolongedsoundmark"
msgid "Prolon_ged vowels (ka-/kaa)"
msgstr "Predĺže_né hlásky (ka-/kaa)"
-#. rRCUA
-#: cui/uiconfig/ui/optjsearchpage.ui:343
-msgctxt "extended_tip|matchprolongedsoundmark"
-msgid "Specifies the options to be treated as equal in a search."
-msgstr "Určuje možnosti, ktoré sa majú pri vyhľadávaní považovať za rovnaké."
-
#. rPGGZ
-#: cui/uiconfig/ui/optjsearchpage.ui:360
+#: cui/uiconfig/ui/optjsearchpage.ui:311
msgctxt "optjsearchpage|label1"
msgid "Treat as Equal"
msgstr "Považovať za rovnaké"
#. wT3mJ
-#: cui/uiconfig/ui/optjsearchpage.ui:394
+#: cui/uiconfig/ui/optjsearchpage.ui:345
msgctxt "optjsearchpage|ignorepunctuation"
msgid "Pu_nctuation characters"
msgstr "I_nterpunkčné znaky"
-#. zACWR
-#: cui/uiconfig/ui/optjsearchpage.ui:403
-msgctxt "extended_tip|ignorepunctuation"
-msgid "Specifies the characters to be ignored."
-msgstr "Určuje znaky, ktoré sa majú ignorovať."
-
#. 5JD7N
-#: cui/uiconfig/ui/optjsearchpage.ui:414
+#: cui/uiconfig/ui/optjsearchpage.ui:362
msgctxt "optjsearchpage|ignorewhitespace"
msgid "_Whitespace characters"
msgstr "Znaky _medzier"
-#. vyC8h
-#: cui/uiconfig/ui/optjsearchpage.ui:423
-msgctxt "extended_tip|ignorewhitespace"
-msgid "Specifies the characters to be ignored."
-msgstr "Určuje znaky, ktoré sa majú ignorovať."
-
#. W92kS
-#: cui/uiconfig/ui/optjsearchpage.ui:434
+#: cui/uiconfig/ui/optjsearchpage.ui:379
msgctxt "optjsearchpage|ignoremiddledot"
msgid "Midd_le dots"
msgstr "Stre_dné bodky"
-#. kA2cf
-#: cui/uiconfig/ui/optjsearchpage.ui:443
-msgctxt "extended_tip|ignoremiddledot"
-msgid "Specifies the characters to be ignored."
-msgstr "Určuje znaky, ktoré sa majú ignorovať."
-
#. nZXcM
-#: cui/uiconfig/ui/optjsearchpage.ui:463
+#: cui/uiconfig/ui/optjsearchpage.ui:405
msgctxt "optjsearchpage|label2"
msgid "Ignore"
msgstr "Ignorovať"
@@ -14942,504 +11340,294 @@ msgctxt "optlanguagespage|label4"
msgid "_User interface:"
msgstr "_Používateľské rozhranie:"
-#. PwNF7
-#: cui/uiconfig/ui/optlanguagespage.ui:83
-msgctxt "extended_tip|userinterface"
-msgid "Select the language used for the user interface, for example menus, dialogs, help files. You must have installed at least one additional language pack or a multi-language version of %PRODUCTNAME."
-msgstr "Vyberte jazyk používateľského rozhrania, napr. menu, dialógových okien a pomocníka. Musíte mať nainštalovaný aspoň jeden dodatočný jazykový balíček alebo viacjazyčnú verziu %PRODUCTNAME."
-
#. e8VE3
-#: cui/uiconfig/ui/optlanguagespage.ui:100
+#: cui/uiconfig/ui/optlanguagespage.ui:95
msgctxt "optlanguagespage|label1"
msgid "Language Of"
msgstr "Jazyk"
-#. E3UQs
-#: cui/uiconfig/ui/optlanguagespage.ui:156
-msgctxt "extended_tip|westernlanguage"
-msgid "Specifies the language used for the spellcheck function in western alphabets."
-msgstr "Určuje jazyk na kontrolu pravopisu v západných abecedách."
-
-#. oP5CC
-#: cui/uiconfig/ui/optlanguagespage.ui:188
-msgctxt "extended_tip|asianlanguage"
-msgid "Specifies the language used for the spellcheck function in Asian alphabets."
-msgstr "Určuje jazyk na kontrolu pravopisu v ázijských abecedách."
-
-#. cZNNA
-#: cui/uiconfig/ui/optlanguagespage.ui:220
-msgctxt "extended_tip|complexlanguage"
-msgid "Specifies the language for the complex text layout spellcheck."
-msgstr "Určuje jazyk na kontrolu pravopisu jazykov s komplexným rozvrhnutím textu."
-
#. 3JLVm
-#: cui/uiconfig/ui/optlanguagespage.ui:231
+#: cui/uiconfig/ui/optlanguagespage.ui:211
msgctxt "optlanguagespage|currentdoc"
msgid "For the current document only"
msgstr "Iba pre aktuálny dokument"
-#. Xg3qT
-#: cui/uiconfig/ui/optlanguagespage.ui:241
-msgctxt "extended_tip|currentdoc"
-msgid "Specifies that the settings for default languages are valid only for the current document."
-msgstr "Určuje, že nastavenie východiskových jazykov je platné len pre aktuálny dokument."
-
#. zeaKX
-#: cui/uiconfig/ui/optlanguagespage.ui:252
+#: cui/uiconfig/ui/optlanguagespage.ui:227
msgctxt "optlanguagespage|ctlsupport"
msgid "Complex _text layout:"
msgstr "Komplexné _rozloženie textu (CTL):"
-#. gTEDf
-#: cui/uiconfig/ui/optlanguagespage.ui:261
-msgctxt "extended_tip|ctlsupport"
-msgid "Activates complex text layout support. You can now modify the settings corresponding to complex text layout in %PRODUCTNAME."
-msgstr "Aktivuje podporu komplexného rozloženie textu. Potom môžete v %PRODUCTNAME upraviť nastavenie pre komplexné rozloženie textu."
-
#. mpLF7
-#: cui/uiconfig/ui/optlanguagespage.ui:272
+#: cui/uiconfig/ui/optlanguagespage.ui:242
msgctxt "optlanguagespage|asiansupport"
msgid "Asian:"
msgstr "Ázijské:"
-#. GT6AZ
-#: cui/uiconfig/ui/optlanguagespage.ui:281
-msgctxt "extended_tip|asiansupport"
-msgid "Activates Asian languages support. You can now modify the corresponding Asian language settings in %PRODUCTNAME."
-msgstr "Aktivuje podporu ázijských jazykov. Potom môžete v %PRODUCTNAME upraviť nastavenia pre ázijské jazyky."
-
#. QwDAK
-#: cui/uiconfig/ui/optlanguagespage.ui:294
+#: cui/uiconfig/ui/optlanguagespage.ui:259
msgctxt "optlanguagespage|western"
msgid "Western:"
msgstr "Západné:"
#. K62Ex
-#: cui/uiconfig/ui/optlanguagespage.ui:315
+#: cui/uiconfig/ui/optlanguagespage.ui:280
msgctxt "optlanguagespage|label2"
msgid "Default Languages for Documents"
msgstr "Predvolené jazyky dokumentov"
#. 25J4E
-#: cui/uiconfig/ui/optlanguagespage.ui:346
+#: cui/uiconfig/ui/optlanguagespage.ui:311
msgctxt "optlanguagespage|ignorelanguagechange"
msgid "Ignore s_ystem input language"
msgstr "Ignorovať systémový vstupný jazyk"
-#. CCumn
-#: cui/uiconfig/ui/optlanguagespage.ui:355
-msgctxt "extended_tip|ignorelanguagechange"
-msgid "Indicates whether changes to the system input language/keyboard will be ignored. If ignored, when new text is typed that text will follow the language of the document or current paragraph, not the current system language."
-msgstr "Určuje, či budú ignorované zmeny vstupného jazyka systému alebo klávesnice. Ak sú ignorované, pri písaní nového textu bude tento text zodpovedať jazyku dokumentu alebo aktuálneho odseku, a nie aktuálnemu jazyku systému."
-
#. 83eTv
-#: cui/uiconfig/ui/optlanguagespage.ui:372
+#: cui/uiconfig/ui/optlanguagespage.ui:332
msgctxt "optlanguagespage|label3"
msgid "Enhanced Language Support"
msgstr "Rozšírená podpora jazykov"
#. XqCkq
-#: cui/uiconfig/ui/optlanguagespage.ui:409
+#: cui/uiconfig/ui/optlanguagespage.ui:369
msgctxt "optlanguagespage|localesettingFT"
msgid "Locale setting:"
msgstr "Národné nastavenie:"
#. Zyao3
-#: cui/uiconfig/ui/optlanguagespage.ui:423
+#: cui/uiconfig/ui/optlanguagespage.ui:383
msgctxt "optlanguagespage|label6"
msgid "Decimal separator key:"
msgstr "Oddeľovač desatinných miest:"
#. cuqUB
-#: cui/uiconfig/ui/optlanguagespage.ui:437
+#: cui/uiconfig/ui/optlanguagespage.ui:397
msgctxt "optlanguagespage|defaultcurrency"
msgid "_Default currency:"
msgstr "_Predvolená mena:"
#. XmgPh
-#: cui/uiconfig/ui/optlanguagespage.ui:451
+#: cui/uiconfig/ui/optlanguagespage.ui:411
msgctxt "optlanguagespage|dataaccpatterns"
msgid "Date acceptance _patterns:"
msgstr "Rozpoznávané _formáty dátumov:"
-#. yBkAN
-#: cui/uiconfig/ui/optlanguagespage.ui:469
-msgctxt "extended_tip|localesetting"
-msgid "Specifies the locale setting of the country setting. This influences settings for numbering, currency and units of measure."
-msgstr "Určuje národné prostredie. Tým ovplyvníte formát čísel, menu a merné jednotky."
-
-#. XqESm
-#: cui/uiconfig/ui/optlanguagespage.ui:486
-msgctxt "extended_tip|currencylb"
-msgid "Specifies the default currency that is used for the currency format and the currency fields."
-msgstr "Určuje predvolenú menu, ktorá sa použije pre formát meny a polia meny."
-
-#. eNFJn
-#: cui/uiconfig/ui/optlanguagespage.ui:504
-msgctxt "extended_tip|datepatterns"
-msgid "Specifies the date acceptance patterns for the current locale. Calc spreadsheet and Writer table cell input needs to match locale dependent date acceptance patterns before it is recognized as a valid date."
-msgstr "Určuje pre aktuálne národné prostredie masky na rozpoznanie dátumu. Ak vstup zadaný do bunky hárku Calc alebo do bunky tabuľky vo Writeri zodpovedá niektorej z masiek, je rozpoznaný ako platný dátum."
-
#. WoNAA
-#: cui/uiconfig/ui/optlanguagespage.ui:515
+#: cui/uiconfig/ui/optlanguagespage.ui:460
msgctxt "optlanguagespage|decimalseparator"
msgid "_Same as locale setting ( %1 )"
msgstr "Rovnaké ako národné na_stavenie ( %1 )"
-#. G5VXy
-#: cui/uiconfig/ui/optlanguagespage.ui:524
-msgctxt "extended_tip|decimalseparator"
-msgid "Specifies to use the decimal separator key that is set in your system when you press the respective key on the number pad."
-msgstr "Určuje, že sa pri stlačení príslušného tlačidla na numerickej klávesnici sa použije desatinný oddeľovač, ktorý je nastavený v systéme."
-
#. BGtpx
-#: cui/uiconfig/ui/optlanguagespage.ui:541
+#: cui/uiconfig/ui/optlanguagespage.ui:481
msgctxt "optlanguagespage|label7"
msgid "Formats"
msgstr "Formáty"
-#. HASiD
-#: cui/uiconfig/ui/optlanguagespage.ui:555
-msgctxt "extended_tip|OptLanguagesPage"
-msgid "Defines the default languages and some other locale settings for documents."
-msgstr "Určuje pre dokumenty predvolené jazyky a niekoľko ďalších nastavení národného prostredia."
-
-#. CgUDR
-#: cui/uiconfig/ui/optlingupage.ui:133
-msgctxt "lingumodules"
-msgid "Contains the installed language modules."
-msgstr "Obsahuje nainštalované jazykové moduly."
-
#. 8kxYC
-#: cui/uiconfig/ui/optlingupage.ui:146
+#: cui/uiconfig/ui/optlingupage.ui:141
msgctxt "optlingupage|lingumodulesedit"
msgid "_Edit..."
msgstr "_Upraviť..."
#. va3tH
-#: cui/uiconfig/ui/optlingupage.ui:154
+#: cui/uiconfig/ui/optlingupage.ui:149
msgctxt "optlingupage|lingumodulesedit-atkobject"
msgid "Edit Available language modules"
msgstr "Upraviť dostupné jazykové moduly"
-#. peVgj
-#: cui/uiconfig/ui/optlingupage.ui:155
-msgctxt "lingumodulesedit"
-msgid "To edit a language module, select it and click Edit."
-msgstr "Ak chcete upraviť jazykový modul, vyberte ho a kliknite na tlačidlo Upraviť."
-
-#. SBvTc
-#: cui/uiconfig/ui/optlingupage.ui:178
+#. 2LJ2C
+#: cui/uiconfig/ui/optlingupage.ui:172
msgctxt "optlingupage|lingumodulesft"
-msgid "_Available Language Modules"
-msgstr ""
-
-#. efvBg
-#: cui/uiconfig/ui/optlingupage.ui:260
-msgctxt "lingudicts"
-msgid "Lists the available user dictionaries."
-msgstr "Zobrazí zoznam dostupných používateľských slovníkov."
+msgid "_Available language modules"
+msgstr "_Dostupné jazykové moduly"
#. qBrCR
-#: cui/uiconfig/ui/optlingupage.ui:280
+#: cui/uiconfig/ui/optlingupage.ui:269
msgctxt "optlingupage|lingudictsnew"
msgid "_New..."
msgstr "_Nový..."
-#. 9ozFQ
-#: cui/uiconfig/ui/optlingupage.ui:287
-msgctxt "lingudictsnew"
-msgid "Opens the New Dictionary dialog, in which you can name a new user-defined dictionary or dictionary of exceptions and specify the language."
-msgstr "Otvorí dialógové okno Nový slovník, v ktorom môžete pomenovať nový používateľsky definovaný slovník alebo slovník výnimiek a určiť jazyk."
-
#. mCu3q
-#: cui/uiconfig/ui/optlingupage.ui:299
+#: cui/uiconfig/ui/optlingupage.ui:283
msgctxt "optlingupage|lingudictsedit"
msgid "Ed_it..."
msgstr "Uprav_iť..."
#. B7nKn
-#: cui/uiconfig/ui/optlingupage.ui:306
+#: cui/uiconfig/ui/optlingupage.ui:290
msgctxt "optlingupage|lingudictsedit-atkobject"
msgid "Edit User-defined dictionaries"
msgstr "Upraviť používateľom definované slovníky"
-#. Y2AmA
-#: cui/uiconfig/ui/optlingupage.ui:307
-msgctxt "lingudictsedit"
-msgid "Opens the Edit custom dictionary dialog, in which you can add to your custom dictionary or edit existing entries."
-msgstr "Otvorí dialógové okno Upraviť vlastný slovník, v ktorom môžete pridať svoj vlastný slovník alebo upraviť existujúce položky."
-
#. WCFD5
-#: cui/uiconfig/ui/optlingupage.ui:319
+#: cui/uiconfig/ui/optlingupage.ui:302
msgctxt "optlingupage|lingudictsdelete"
msgid "_Delete"
msgstr "_Zmazať"
-#. LXG4L
-#: cui/uiconfig/ui/optlingupage.ui:326
-msgctxt "lingudictsdelete"
-msgid "Deletes the selected dictionary after a confirmation, provided it is not write-protected."
-msgstr "Po potvrdení odstráni vybraný slovník, pokiaľ nie je chránený proti zápisu."
-
-#. qEqZD
-#: cui/uiconfig/ui/optlingupage.ui:350
+#. hUBdn
+#: cui/uiconfig/ui/optlingupage.ui:328
msgctxt "optlingupage|lingudictsft"
-msgid "_User-defined Dictionaries"
-msgstr ""
+msgid "_User-defined dictionaries"
+msgstr "_Používateľom definované slovníky"
#. XCpcE
-#: cui/uiconfig/ui/optlingupage.ui:387
+#: cui/uiconfig/ui/optlingupage.ui:365
msgctxt "optlingupage|moredictslink"
msgid "Get more dictionaries online..."
msgstr "~Získať viac slovníkov online..."
-#. sE9tc
-#: cui/uiconfig/ui/optlingupage.ui:450
-msgctxt "linguoptions"
-msgid "Defines the options for the spellcheck and hyphenation."
-msgstr "Definuje možnosti kontroly pravopisu a delenia slov."
-
#. 58e5v
-#: cui/uiconfig/ui/optlingupage.ui:463
+#: cui/uiconfig/ui/optlingupage.ui:436
msgctxt "optlingupage|linguoptionsedit"
msgid "Edi_t..."
msgstr "Up_raviť..."
#. 5MSSC
-#: cui/uiconfig/ui/optlingupage.ui:471
+#: cui/uiconfig/ui/optlingupage.ui:444
msgctxt "optlingupage|linguoptionsedit-atkobject"
msgid "Edit Options"
msgstr "Upraviť možnosti"
-#. f85qm
-#: cui/uiconfig/ui/optlingupage.ui:472
-msgctxt "linguoptionsedit"
-msgid "If you want to change a value, select the entry and then click Edit."
-msgstr "Ak chcete zmeniť hodnotu, vyberte položku a potom kliknite na tlačidlo Upraviť."
-
#. gardH
-#: cui/uiconfig/ui/optlingupage.ui:489
+#: cui/uiconfig/ui/optlingupage.ui:461
msgctxt "optlingupage|label4"
msgid "_Options"
msgstr "_Možnosti"
-#. ARk3s
-#: cui/uiconfig/ui/optlingupage.ui:506
-msgctxt "OptLinguPage"
-msgid "Specifies the properties of the spelling, thesaurus and hyphenation."
-msgstr "Určuje vlastnosti kontroly pravopisu, tezauru a delenia slov."
-
#. ADZ8E
#: cui/uiconfig/ui/optnewdictionarydialog.ui:8
msgctxt "optnewdictionarydialog|OptNewDictionaryDialog"
msgid "New Dictionary"
msgstr "Nový slovník"
-#. oWC8W
-#: cui/uiconfig/ui/optnewdictionarydialog.ui:104
-msgctxt "nameedit"
-msgid "Specifies the name of the new custom dictionary."
-msgstr "Určuje názov nového vlastného slovníka."
-
#. XucrZ
-#: cui/uiconfig/ui/optnewdictionarydialog.ui:117
+#: cui/uiconfig/ui/optnewdictionarydialog.ui:112
msgctxt "optnewdictionarydialog|name_label"
msgid "_Name:"
msgstr "_Meno:"
#. ypeEr
-#: cui/uiconfig/ui/optnewdictionarydialog.ui:131
+#: cui/uiconfig/ui/optnewdictionarydialog.ui:126
msgctxt "optnewdictionarydialog|language_label"
msgid "_Language:"
msgstr "_Jazyk:"
#. SmQV7
-#: cui/uiconfig/ui/optnewdictionarydialog.ui:143
+#: cui/uiconfig/ui/optnewdictionarydialog.ui:138
msgctxt "optnewdictionarydialog|except"
msgid "_Exception (-)"
msgstr "_Výnimka (-)"
-#. saphk
-#: cui/uiconfig/ui/optnewdictionarydialog.ui:152
-msgctxt "except"
-msgid "Specifies whether you wish to avoid certain words in your documents."
-msgstr "Určuje, či sa v dokumentoch chcete vyhnúť určitým slovám."
-
-#. VJQ4d
-#: cui/uiconfig/ui/optnewdictionarydialog.ui:175
-msgctxt "language"
-msgid "By selecting a certain language you can limit the use of the custom dictionary."
-msgstr "Výberom určitého jazyka môžete obmedziť používanie používateľom definovaného slovníka."
-
#. CpgB2
-#: cui/uiconfig/ui/optnewdictionarydialog.ui:192
+#: cui/uiconfig/ui/optnewdictionarydialog.ui:177
msgctxt "optnewdictionarydialog|label1"
msgid "Dictionary"
msgstr "Slovník"
-#. Vbp6F
-#: cui/uiconfig/ui/optnewdictionarydialog.ui:217
-msgctxt "OptNewDictionaryDialog"
-msgid "In the Dictionary section you can name a new user-defined dictionary or dictionary of exceptions and specify the language."
-msgstr "V oblasti Slovník môžete pomenovať nový slovník definovaný používateľom alebo slovník výnimiek a určiť jazyk."
-
#. n6vQH
#: cui/uiconfig/ui/optonlineupdatepage.ui:34
msgctxt "optonlineupdatepage|autocheck"
msgid "_Check for updates automatically"
msgstr "Automati_cky vyhľadať aktualizácie"
-#. k3qNc
-#: cui/uiconfig/ui/optonlineupdatepage.ui:43
-msgctxt "extended_tip|autocheck"
-msgid "Mark to check for online updates periodically, then select the time interval how often %PRODUCTNAME will check for online updates."
-msgstr "Zaškrtnite pre pravidelnú kontrolu online aktualizácií, potom vyberte časový interval, ako často bude %PRODUCTNAME online aktualizácie kontrolovať."
-
#. Hbe2C
-#: cui/uiconfig/ui/optonlineupdatepage.ui:64
+#: cui/uiconfig/ui/optonlineupdatepage.ui:60
msgctxt "optonlineupdatepage|everyday"
msgid "Every da_y"
msgstr "Raz _denne"
-#. yFD8D
-#: cui/uiconfig/ui/optonlineupdatepage.ui:74
-msgctxt "extended_tip|everyday"
-msgid "A check will be performed once a day."
-msgstr "Kontrola bude vykonaná raz za deň."
-
#. 3zd7m
-#: cui/uiconfig/ui/optonlineupdatepage.ui:85
+#: cui/uiconfig/ui/optonlineupdatepage.ui:76
msgctxt "optonlineupdatepage|everyweek"
msgid "Every _week"
msgstr "Raz _týždenne"
-#. Xcj78
-#: cui/uiconfig/ui/optonlineupdatepage.ui:95
-msgctxt "extended_tip|everyweek"
-msgid "A check will be performed once a week. This is the default setting."
-msgstr "Kontrola bude vykonaná raz za týždeň. Toto je predvolené nastavenie."
-
#. 29exv
-#: cui/uiconfig/ui/optonlineupdatepage.ui:106
+#: cui/uiconfig/ui/optonlineupdatepage.ui:92
msgctxt "optonlineupdatepage|everymonth"
msgid "Every _month"
msgstr "Raz _mesačne"
-#. oEWBt
-#: cui/uiconfig/ui/optonlineupdatepage.ui:116
-msgctxt "extended_tip|everymonth"
-msgid "A check will be performed once a month."
-msgstr "Kontrola bude vykonaná raz za mesiac."
-
#. pGuvH
-#: cui/uiconfig/ui/optonlineupdatepage.ui:136
+#: cui/uiconfig/ui/optonlineupdatepage.ui:117
msgctxt "optonlineupdatepage|checknow"
msgid "Check _Now"
msgstr "_Overiť teraz"
-#. 4DhgF
-#: cui/uiconfig/ui/optonlineupdatepage.ui:144
-msgctxt "extended_tip|checknow"
-msgid "A check will be performed now."
-msgstr "Kontrola bude vykonaná teraz."
-
#. UvuAC
-#: cui/uiconfig/ui/optonlineupdatepage.ui:169
+#: cui/uiconfig/ui/optonlineupdatepage.ui:145
msgctxt "optonlineupdatepage|lastchecked"
msgid "Last checked: %DATE%, %TIME%"
msgstr "Naposledy overené: %DATE%, %TIME%"
#. rw57A
-#: cui/uiconfig/ui/optonlineupdatepage.ui:182
+#: cui/uiconfig/ui/optonlineupdatepage.ui:158
msgctxt "optonlineupdatepage|neverchecked"
msgid "Last checked: Not yet"
msgstr "Naposledy kontrolované: Nikdy"
#. DWDdu
-#: cui/uiconfig/ui/optonlineupdatepage.ui:230
+#: cui/uiconfig/ui/optonlineupdatepage.ui:206
msgctxt "optonlineupdatepage|autodownload"
msgid "_Download updates automatically"
msgstr "Automaticky stia_hnuť aktualizácie"
-#. 5TCn4
-#: cui/uiconfig/ui/optonlineupdatepage.ui:239
-msgctxt "extended_tip|autodownload"
-msgid "Enable the automatic download of updates to the specified folder."
-msgstr "Povolí automatické sťahovanie aktualizácií do zadaného priečinka."
-
#. AmVMh
-#: cui/uiconfig/ui/optonlineupdatepage.ui:262
+#: cui/uiconfig/ui/optonlineupdatepage.ui:233
msgctxt "optonlineupdatepage|changepath"
msgid "Ch_ange..."
msgstr "Zm_eniť..."
-#. mCu2A
-#: cui/uiconfig/ui/optonlineupdatepage.ui:270
-msgctxt "extended_tip|changepath"
-msgid "Click to select the destination folder for downloaded files."
-msgstr "Po kliknutí vyberte cieľový priečinok, do ktorého sa súbory budú sťahovať."
-
#. iCVFj
-#: cui/uiconfig/ui/optonlineupdatepage.ui:288
+#: cui/uiconfig/ui/optonlineupdatepage.ui:254
msgctxt "optonlineupdatepage|destpathlabel"
msgid "Download destination:"
msgstr "Umiestnenie pre stiahnutie:"
-#. j2D7W
-#: cui/uiconfig/ui/optonlineupdatepage.ui:292
-msgctxt "extended_tip|destpathlabel"
-msgid "Click to select the destination folder for downloaded files."
-msgstr "Po kliknutí vyberte cieľový priečinok, do ktorého sa súbory budú sťahovať."
-
#. vDRC5
-#: cui/uiconfig/ui/optonlineupdatepage.ui:338
+#: cui/uiconfig/ui/optonlineupdatepage.ui:299
msgctxt "optonlineupdatepage|labeldest"
msgid "Download Destination"
msgstr "Umiestnenie pre stiahnutie"
#. JqAh4
-#: cui/uiconfig/ui/optonlineupdatepage.ui:372
+#: cui/uiconfig/ui/optonlineupdatepage.ui:333
msgctxt "optonlineupdatepage|extrabits"
msgid "_Send OS version and basic hardware information"
msgstr "_Poslať verziu OS a základné informácie o hardvéri"
#. b95Sc
-#: cui/uiconfig/ui/optonlineupdatepage.ui:376
+#: cui/uiconfig/ui/optonlineupdatepage.ui:337
msgctxt "optonlineupdatepage|extrabits|tooltip_text"
msgid "This information lets us make optimizations for your hardware and operating system."
msgstr "Tieto informácie nám umožnia optimalizáciu pre váš hardvér a operačný systém."
#. f2Wtr
-#: cui/uiconfig/ui/optonlineupdatepage.ui:401
+#: cui/uiconfig/ui/optonlineupdatepage.ui:362
msgctxt "optonlineupdatepage|useragent_label"
msgid "User Agent:"
msgstr "Identifikácia programu:"
#. agWbu
-#: cui/uiconfig/ui/optonlineupdatepage.ui:413
+#: cui/uiconfig/ui/optonlineupdatepage.ui:374
msgctxt "optonlineupdatepage|useragent_changed"
msgid "Hit apply to update"
msgstr "Pre aktualizáciu kliknite na Prevziať"
#. ZC9EF
-#: cui/uiconfig/ui/optonlineupdatepage.ui:451
+#: cui/uiconfig/ui/optonlineupdatepage.ui:412
msgctxt "optonlineupdatepage|labelagent"
msgid "User Agent"
msgstr "Identifikácia programu"
#. 3J5As
-#: cui/uiconfig/ui/optonlineupdatepage.ui:470
+#: cui/uiconfig/ui/optonlineupdatepage.ui:431
msgctxt "optonlineupdatepage|label1"
msgid "Online Update Options"
msgstr "Možnosti online aktualizácie"
-#. aJHdb
-#: cui/uiconfig/ui/optonlineupdatepage.ui:478
-msgctxt "extended_tip|OptOnlineUpdatePage"
-msgid "Specifies some options for the automatic notification and downloading of online updates to %PRODUCTNAME."
-msgstr "Upresňuje voľby pre automatické upozorňovanie a sťahovanie online aktualizácií %PRODUCTNAME."
-
#. QYxCN
#: cui/uiconfig/ui/optopenclpage.ui:29
msgctxt "optopenclpage|useopencl"
@@ -15482,445 +11670,283 @@ msgctxt "optpathspage|internal_paths"
msgid "Internal Paths"
msgstr "Interné cwsty"
-#. RS5BX
-#: cui/uiconfig/ui/optpathspage.ui:130
-msgctxt "paths"
-msgid "To modify an entry in this list, click the entry and click Edit. You can also double click the entry."
-msgstr "Ak chcete upraviť položku v tomto zozname, kliknite na ňu na Upraviť. Na položku môžete tiež dvojkliknúť."
-
#. rfDum
-#: cui/uiconfig/ui/optpathspage.ui:150
+#: cui/uiconfig/ui/optpathspage.ui:145
msgctxt "optpathspage|label1"
msgid "Paths used by %PRODUCTNAME"
msgstr "Cesty používané %PRODUCTNAME"
#. k8MmB
-#: cui/uiconfig/ui/optpathspage.ui:171
+#: cui/uiconfig/ui/optpathspage.ui:166
msgctxt "optpathspage|default"
msgid "_Default"
msgstr "_Predvolené"
-#. U2Nkh
-#: cui/uiconfig/ui/optpathspage.ui:178
-msgctxt "default"
-msgid "The Default button resets the predefined paths for all selected entries."
-msgstr "Tlačidlo Predvolené resetuje preddefinované cesty pre všetky vybrané položky."
-
#. q8JFc
-#: cui/uiconfig/ui/optpathspage.ui:190
+#: cui/uiconfig/ui/optpathspage.ui:180
msgctxt "optpathspage|edit"
msgid "_Edit..."
msgstr "_Upraviť..."
-#. LTD6T
-#: cui/uiconfig/ui/optpathspage.ui:197
-msgctxt "edit"
-msgid "Click to display the Select Path or Edit Paths dialog."
-msgstr "Kliknutím zobrazíte dialógové okno Vybrať cestu alebo Upraviť cesty."
-
-#. G5xyX
-#: cui/uiconfig/ui/optpathspage.ui:216
-msgctxt "OptPathsPage"
-msgid "This section contains the default paths to important folders in %PRODUCTNAME. These paths can be edited by the user."
-msgstr "Táto časť obsahuje predvolené cesty k dôležitým priečinkom v %PRODUCTNAME. Tieto cesty môže používateľ upravovať."
-
#. pQEWv
#: cui/uiconfig/ui/optproxypage.ui:30
msgctxt "optproxypage|label2"
msgid "Proxy s_erver:"
msgstr "Proxy s_erver:"
-#. KLjce
-#: cui/uiconfig/ui/optproxypage.ui:49
-msgctxt "extended_tip|http"
-msgid "Type the name of the proxy server for HTTP."
-msgstr "Zadajte názov proxy servera pre HTTP."
-
-#. 4Aszp
-#: cui/uiconfig/ui/optproxypage.ui:67
-msgctxt "extended_tip|https"
-msgid "Type the name of the proxy server for HTTPS. Type the port in the right-hand field."
-msgstr "Zadajte názov proxy servera pre HTTPS. Do poľa vpravo zadajte port."
-
-#. wtMPj
-#: cui/uiconfig/ui/optproxypage.ui:85
-msgctxt "extended_tip|ftp"
-msgid "Type the name of the proxy server for FTP."
-msgstr "Zadajte názov proxy servera pre FTP."
-
-#. 6oaAC
-#: cui/uiconfig/ui/optproxypage.ui:103
-msgctxt "extended_tip|noproxy"
-msgid "Specifies the names of the servers that do not require any proxy servers, separated by semicolons."
-msgstr "Zadajte názvy serverov, ktoré nevyžadujú použitie proxy serverov. Názvy oddeľte bodkočiarkou."
-
-#. DyExz
-#: cui/uiconfig/ui/optproxypage.ui:123
-msgctxt "extended_tip|httpport"
-msgid "Type the port for the corresponding proxy server."
-msgstr "Zadajte port príslušného proxy serveru."
-
-#. 5RqLF
-#: cui/uiconfig/ui/optproxypage.ui:143
-msgctxt "extended_tip|httpsport"
-msgid "Type the port for the corresponding proxy server."
-msgstr "Zadajte port príslušného proxy serveru."
-
-#. sTzye
-#: cui/uiconfig/ui/optproxypage.ui:163
-msgctxt "extended_tip|ftpport"
-msgid "Type the port for the corresponding proxy server."
-msgstr "Zadajte port príslušného proxy serveru."
-
#. LBWG4
-#: cui/uiconfig/ui/optproxypage.ui:177
+#: cui/uiconfig/ui/optproxypage.ui:142
msgctxt "optproxypage|proxymode"
msgid "None"
msgstr "Žiadne"
#. 9BdbA
-#: cui/uiconfig/ui/optproxypage.ui:178
+#: cui/uiconfig/ui/optproxypage.ui:143
msgctxt "optproxypage|proxymode"
msgid "System"
msgstr "Systém"
#. 8D2Di
-#: cui/uiconfig/ui/optproxypage.ui:179
+#: cui/uiconfig/ui/optproxypage.ui:144
msgctxt "optproxypage|proxymode"
msgid "Manual"
msgstr "Ručne"
-#. k9TRd
-#: cui/uiconfig/ui/optproxypage.ui:183
-msgctxt "extended_tip|proxymode"
-msgid "Specifies the type of proxy definition."
-msgstr "Určuje typ proxy."
-
#. pkdvs
-#: cui/uiconfig/ui/optproxypage.ui:196
+#: cui/uiconfig/ui/optproxypage.ui:156
msgctxt "optproxypage|httpft"
msgid "HT_TP proxy:"
msgstr "HT_TP proxy:"
#. dGMMs
-#: cui/uiconfig/ui/optproxypage.ui:210
+#: cui/uiconfig/ui/optproxypage.ui:170
msgctxt "optproxypage|httpportft"
msgid "_Port:"
msgstr "_Port:"
#. 5tuq7
-#: cui/uiconfig/ui/optproxypage.ui:223
+#: cui/uiconfig/ui/optproxypage.ui:183
msgctxt "optproxypage|httpsft"
msgid "HTTP_S proxy:"
msgstr "HTTP_S proxy:"
#. egcgL
-#: cui/uiconfig/ui/optproxypage.ui:237
+#: cui/uiconfig/ui/optproxypage.ui:197
msgctxt "optproxypage|ftpft"
msgid "_FTP proxy:"
msgstr "_FTP proxy:"
#. ZaUmG
-#: cui/uiconfig/ui/optproxypage.ui:251
+#: cui/uiconfig/ui/optproxypage.ui:211
msgctxt "optproxypage|noproxyft"
msgid "_No proxy for:"
msgstr "_Bez proxy pre:"
#. UynC6
-#: cui/uiconfig/ui/optproxypage.ui:265
+#: cui/uiconfig/ui/optproxypage.ui:225
msgctxt "optproxypage|httpsportft"
msgid "P_ort:"
msgstr "P_ort:"
#. kmBDu
-#: cui/uiconfig/ui/optproxypage.ui:278
+#: cui/uiconfig/ui/optproxypage.ui:238
msgctxt "optproxypage|ftpportft"
msgid "P_ort:"
msgstr "P_ort:"
#. RW6E4
-#: cui/uiconfig/ui/optproxypage.ui:291
+#: cui/uiconfig/ui/optproxypage.ui:251
msgctxt "optproxypage|noproxydesc"
msgid "Separator ;"
msgstr "Oddeľovač ;"
#. FzAg6
-#: cui/uiconfig/ui/optproxypage.ui:314
+#: cui/uiconfig/ui/optproxypage.ui:274
msgctxt "optproxypage|label1"
msgid "Settings"
msgstr "Nastavenia"
-#. S7T5C
-#: cui/uiconfig/ui/optproxypage.ui:322
-msgctxt "extended_tip|OptProxyPage"
-msgid "Specifies the type of proxy definition."
-msgstr "Určuje typ proxy."
-
#. Cdbvg
#: cui/uiconfig/ui/optsavepage.ui:36
msgctxt "optsavepage|load_docprinter"
msgid "Load printer settings with the document"
msgstr "Načítať nastavenia tlačiarne s dokumentom"
-#. 69Rzq
-#: cui/uiconfig/ui/optsavepage.ui:45
-msgctxt "load_docprinter"
-msgid "If enabled, the printer settings will be loaded with the document. This can cause a document to be printed on a distant printer, if you do not change the printer manually in the Print dialog. If disabled, your standard printer will be used to print this document. The current printer settings will be stored with the document whether or not this option is checked."
-msgstr "Ak je povolené, nastavenia tlačiarne sa načítajú spolu s dokumentom. To môže spôsobiť tlač dokumentu na vzdialenej tlačiarni, ak tlačiareň nezmeníte manuálne v dialógovom okne Tlač. Ak je zakázané, na tlač tohto dokumentu sa použije štandardná tlačiareň. Aktuálne nastavenia tlačiarne sa uložia spolu s dokumentom bez ohľadu na to, či je táto voľba zaškrtnutá."
-
#. VdFnA
-#: cui/uiconfig/ui/optsavepage.ui:56
+#: cui/uiconfig/ui/optsavepage.ui:51
msgctxt "optsavepage|load_settings"
msgid "Load user-specific settings with the document"
msgstr "S dokumentom načítať nastavenia špecifické pre používateľa"
-#. CjEVo
-#: cui/uiconfig/ui/optsavepage.ui:65
-msgctxt "load_settings"
-msgid "Loads the user-specific settings saved in a document with the document."
-msgstr "Spolu s dokumentom načíta nastavenia špecifické pre používateľa uložené v dokumente."
-
#. js6Gn
-#: cui/uiconfig/ui/optsavepage.ui:82
+#: cui/uiconfig/ui/optsavepage.ui:72
msgctxt "optsavepage|label1"
msgid "Load"
msgstr "Načítať"
#. bLvCX
-#: cui/uiconfig/ui/optsavepage.ui:119
+#: cui/uiconfig/ui/optsavepage.ui:109
msgctxt "optsavepage|autosave"
msgid "Save _AutoRecovery information every:"
msgstr "Informácie pre _automatické obnovenie uložiť každých:"
-#. 6L2Yh
-#: cui/uiconfig/ui/optsavepage.ui:128
-msgctxt "autosave"
-msgid "Specifies that %PRODUCTNAME saves the information needed to restore all open documents in case of a crash. You can specify the saving time interval."
-msgstr "Určuje, že %PRODUCTNAME ukladá informácie potrebné na obnovenie všetkých otvorených dokumentov v prípade zlyhania. Môžete určiť časový interval ukladania."
-
-#. ipCBG
-#: cui/uiconfig/ui/optsavepage.ui:146
-msgctxt "autosave_spin"
-msgid "Specifies the time interval in minutes for the automatic recovery option."
-msgstr "Určuje časový interval v minútach pre možnosť automatického ukladania."
-
#. BN5Js
-#: cui/uiconfig/ui/optsavepage.ui:159
+#: cui/uiconfig/ui/optsavepage.ui:139
msgctxt "optsavepage|autosave_mins"
msgid "minutes"
msgstr "minúty"
#. UKeCt
-#: cui/uiconfig/ui/optsavepage.ui:174
+#: cui/uiconfig/ui/optsavepage.ui:154
msgctxt "optsavepage|userautosave"
msgid "Automatically save the document too"
msgstr "Automaticky uložiť aj dokument"
-#. udKBa
-#: cui/uiconfig/ui/optsavepage.ui:183
-msgctxt "userautosave"
-msgid "Specifies that %PRODUCTNAME saves all open documents when saving auto recovery information. Uses the same time interval as AutoRecovery does."
-msgstr "Určuje, že %PRODUCTNAME ukladá všetky otvorené dokumenty pri ukladaní informácií o automatickej obnove. Používa rovnaký časový interval ako funkcia automatického obnovenia."
-
#. kwFtx
-#: cui/uiconfig/ui/optsavepage.ui:194
+#: cui/uiconfig/ui/optsavepage.ui:169
msgctxt "optsavepage|relative_fsys"
msgid "Save URLs relative to file system"
msgstr "Uložiť URL relatívne k súborovému systému"
-#. jDKxF
-#: cui/uiconfig/ui/optsavepage.ui:203
-msgctxt "relative_fsys"
-msgid "Select this box for relative saving of URLs in the file system."
-msgstr "Toto pole zaškrtnite, ak chcete adresy URL v systéme súborov ukladať relatívne."
-
#. 8xmX3
-#: cui/uiconfig/ui/optsavepage.ui:214
+#: cui/uiconfig/ui/optsavepage.ui:184
msgctxt "optsavepage|docinfo"
msgid "_Edit document properties before saving"
msgstr "_Vyzvať na úpravu vlastností dokumentu pred uložením"
-#. LSD3v
-#: cui/uiconfig/ui/optsavepage.ui:223
-msgctxt "docinfo"
-msgid "Specifies that the Properties dialog will appear every time you select the Save As command."
-msgstr "Určuje, že dialógové okno Vlastnosti sa objaví zakaždým, keď použijete príkaz Uložiť ako."
-
#. ctAxA
-#: cui/uiconfig/ui/optsavepage.ui:234
+#: cui/uiconfig/ui/optsavepage.ui:199
msgctxt "optsavepage|relative_inet"
msgid "Save URLs relative to internet"
msgstr "Uložiť URL relatívne k internetu"
-#. WYrQB
-#: cui/uiconfig/ui/optsavepage.ui:243
-msgctxt "relative_inet"
-msgid "Select this box for relative saving of URLs to the Internet."
-msgstr "Vyberte toto pole ak chcete ukladať URL vzhľadom na na internet."
-
#. YsjVX
-#: cui/uiconfig/ui/optsavepage.ui:254
+#: cui/uiconfig/ui/optsavepage.ui:214
msgctxt "optsavepage|backup"
msgid "Al_ways create backup copy"
msgstr "_Vždy vytvoriť záložnú kópiu"
-#. TtAJZ
-#: cui/uiconfig/ui/optsavepage.ui:263
-msgctxt "backup"
-msgid "Saves the previous version of a document as a backup copy whenever you save a document. Every time %PRODUCTNAME creates a backup copy, the previous backup copy is replaced. The backup copy gets the extension .BAK."
-msgstr "Uloží predchádzajúcu verziu dokumentu ako záložnú kópiu pri každom uložení dokumentu. Zakaždým, keď %PRODUCTNAME vytvorí záložnú kópiu, nahradí sa predchádzajúca záložná kópia. Záložná kópia získa príponu .BAK."
-
#. NaGCU
-#: cui/uiconfig/ui/optsavepage.ui:280
+#: cui/uiconfig/ui/optsavepage.ui:235
msgctxt "optsavepage|label2"
msgid "Save"
msgstr "Uložiť"
#. TDBAs
-#: cui/uiconfig/ui/optsavepage.ui:312
+#: cui/uiconfig/ui/optsavepage.ui:267
msgctxt "optsavepage|warnalienformat"
msgid "Warn when not saving in ODF or default format"
msgstr "Upozorniť pri ukladaní do iného ako ODF alebo predvoleného formátu"
-#. zGBEu
-#: cui/uiconfig/ui/optsavepage.ui:321
-msgctxt "warnalienformat"
-msgid "You can choose to get a warning message when you save a document in a format that is not OpenDocument or which you did not set as default format in Load/Save - General in the Options dialog box."
-msgstr "Môžete si vybrať, či sa zobrazí upozornenie, keď uložíte dokument vo formáte, ktorý nie je OpenDocument, alebo ktorý ste nenastavili ako predvolený formát v Načítať / Uložiť - Všeobecné v dialógovom okne Možnosti."
-
#. 5ANvD
#. EN-US, the term 'extended' must not be translated.
-#: cui/uiconfig/ui/optsavepage.ui:341
+#: cui/uiconfig/ui/optsavepage.ui:291
msgctxt "optsavepage|odfwarning_label"
msgid "Not using ODF 1.3 Extended may cause information to be lost."
msgstr "Použitie iného formátu ako rozšíreného ODF 1.3 môže spôsobiť stratu informácií."
#. 6Tfns
-#: cui/uiconfig/ui/optsavepage.ui:371
+#: cui/uiconfig/ui/optsavepage.ui:321
msgctxt "optsavepage|odfversion"
msgid "1.0/1.1"
msgstr "1.0/1.1"
#. BJSfi
-#: cui/uiconfig/ui/optsavepage.ui:372
+#: cui/uiconfig/ui/optsavepage.ui:322
msgctxt "optsavepage|odfversion"
msgid "1.2"
msgstr "1.2"
#. k3jkA
-#: cui/uiconfig/ui/optsavepage.ui:373
+#: cui/uiconfig/ui/optsavepage.ui:323
msgctxt "optsavepage|odfversion"
msgid "1.2 Extended (compatibility mode)"
msgstr "1.2 rozšírený (režim kompatibility)"
#. G826f
-#: cui/uiconfig/ui/optsavepage.ui:374
+#: cui/uiconfig/ui/optsavepage.ui:324
msgctxt "optsavepage|odfversion"
msgid "1.2 Extended"
msgstr "1.2 rozšírený"
#. vLmeZ
-#: cui/uiconfig/ui/optsavepage.ui:375
+#: cui/uiconfig/ui/optsavepage.ui:325
msgctxt "optsavepage|odfversion"
msgid "1.3"
msgstr "1.3"
#. e6EP2
-#: cui/uiconfig/ui/optsavepage.ui:376
+#: cui/uiconfig/ui/optsavepage.ui:326
msgctxt "optsavepage|odfversion"
msgid "1.3 Extended (recommended)"
msgstr "1.3 rozšírený (odporúčané)"
-#. w2urA
-#: cui/uiconfig/ui/optsavepage.ui:380
-msgctxt "odfversion"
-msgid "Some companies or organizations may require ODF documents in the ODF 1.0/1.1, or ODF 1.2 format. You can select these format to save in the listbox. These older formats cannot store all new features, so the new format ODF 1.3 (Extended) is recommended where possible."
-msgstr "Niektoré spoločnosti alebo organizácie môžu vyžadovať dokumenty ODF vo formáte ODF 1.0 / 1.1 alebo ODF 1.2. Formát, v ktorom chcete ukladať, môžete vybrať zo zoznamu. Staršie formáty nemôžu ukladať všetky nové funkcie, preto odporúča používať nový formát ODF 1.3 rozšírený."
-
#. cxPqV
-#: cui/uiconfig/ui/optsavepage.ui:393
+#: cui/uiconfig/ui/optsavepage.ui:338
msgctxt "optsavepage|label5"
msgid "ODF format version:"
msgstr "Verzia ODF formátu:"
#. bF5dA
-#: cui/uiconfig/ui/optsavepage.ui:407
+#: cui/uiconfig/ui/optsavepage.ui:352
msgctxt "optsavepage|saveas_label"
msgid "Always sa_ve as:"
msgstr "_Vždy ukladať ako:"
#. p3xHz
-#: cui/uiconfig/ui/optsavepage.ui:422
+#: cui/uiconfig/ui/optsavepage.ui:367
msgctxt "optsavepage|doctype"
msgid "Text document"
msgstr "Textový dokument"
#. F2tP4
-#: cui/uiconfig/ui/optsavepage.ui:423
+#: cui/uiconfig/ui/optsavepage.ui:368
msgctxt "optsavepage|doctype"
msgid "HTML document"
msgstr "HTML dokument"
#. hA5Di
-#: cui/uiconfig/ui/optsavepage.ui:424
+#: cui/uiconfig/ui/optsavepage.ui:369
msgctxt "optsavepage|doctype"
msgid "Master document"
msgstr "Hlavný dokument"
#. Dfgxy
-#: cui/uiconfig/ui/optsavepage.ui:425
+#: cui/uiconfig/ui/optsavepage.ui:370
msgctxt "optsavepage|doctype"
msgid "Spreadsheet"
msgstr "Tabuľkový dokument"
#. EEvDc
-#: cui/uiconfig/ui/optsavepage.ui:426
+#: cui/uiconfig/ui/optsavepage.ui:371
msgctxt "optsavepage|doctype"
msgid "Presentation"
msgstr "Prezentácia"
#. XgyzS
-#: cui/uiconfig/ui/optsavepage.ui:427
+#: cui/uiconfig/ui/optsavepage.ui:372
msgctxt "optsavepage|doctype"
msgid "Drawing"
msgstr "Kresba"
#. 4DDpx
-#: cui/uiconfig/ui/optsavepage.ui:428
+#: cui/uiconfig/ui/optsavepage.ui:373
msgctxt "optsavepage|doctype"
msgid "Formula"
msgstr "Vzorec"
-#. iCZX2
-#: cui/uiconfig/ui/optsavepage.ui:432
-msgctxt "doctype"
-msgid "Specifies the document type for which you want to define the default file format."
-msgstr "Určuje typ dokumentu, pre ktorý chcete definovať predvolený formát súboru."
-
-#. 69GMF
-#: cui/uiconfig/ui/optsavepage.ui:447
-msgctxt "saveas"
-msgid "Specifies how documents of the type selected on the left will always be saved as this file type. You may select another file type for the current document in the Save as dialog."
-msgstr "Určuje predvolený spôsob ukladania typu dokumentu vybraného vľavo. V dialógovom okne Uložiť ako môžete pre aktuálny dokument vybrať iný typ."
-
#. 29FUf
-#: cui/uiconfig/ui/optsavepage.ui:460
+#: cui/uiconfig/ui/optsavepage.ui:395
msgctxt "optsavepage|label6"
msgid "D_ocument type:"
msgstr "Typ d_okumentu:"
#. CgCxr
-#: cui/uiconfig/ui/optsavepage.ui:478
+#: cui/uiconfig/ui/optsavepage.ui:413
msgctxt "optsavepage|label3"
msgid "Default File Format and ODF Settings"
msgstr "Predvolený formát súborov a nastavenia ODF"
-#. G7BAM
-#: cui/uiconfig/ui/optsavepage.ui:492
-msgctxt "OptSavePage"
-msgid "In the General section, you can select default settings for saving documents, and can select default file formats."
-msgstr "V časti Všeobecné môžete vybrať predvolené nastavenia pre ukladanie dokumentov a vybrať predvolené formáty súborov."
-
#. ArEZy
#: cui/uiconfig/ui/optsecuritypage.ui:35
msgctxt "optsecuritypage|label9"
@@ -15933,92 +11959,68 @@ msgctxt "optsecuritypage|tsas"
msgid "_TSAs..."
msgstr "_Autority časových pečiatok..."
-#. Wzygs
-#: cui/uiconfig/ui/optsecuritypage.ui:56
-msgctxt "extended_tip|tsas"
-msgid "Opens the Time Stamping Authority URLs dialog."
-msgstr "Otvorí dialógové okno Adresy URL autorít časových pečiatok."
-
#. vrbum
-#: cui/uiconfig/ui/optsecuritypage.ui:73
+#: cui/uiconfig/ui/optsecuritypage.ui:68
msgctxt "optsecuritypage|label10"
msgid "TSAs"
msgstr "Autority časových pečiatok"
#. dgPTb
-#: cui/uiconfig/ui/optsecuritypage.ui:110
+#: cui/uiconfig/ui/optsecuritypage.ui:105
msgctxt "optsecuritypage|label7"
msgid "Select the Network Security Services certificate directory to use for digital signatures."
msgstr "Vyberte adresár používaný Network Security Services pre elektronické podpisy."
#. DPGqn
-#: cui/uiconfig/ui/optsecuritypage.ui:123
+#: cui/uiconfig/ui/optsecuritypage.ui:118
msgctxt "optsecuritypage|cert"
msgid "_Certificate..."
msgstr "_Certifikát..."
-#. GFX6B
-#: cui/uiconfig/ui/optsecuritypage.ui:131
-msgctxt "extended_tip|cert"
-msgid "Opens the Certificate Path dialog."
-msgstr "Otvorí dialógové okno Cesta pre certifikáty."
-
#. UCYi2
-#: cui/uiconfig/ui/optsecuritypage.ui:148
+#: cui/uiconfig/ui/optsecuritypage.ui:138
msgctxt "optsecuritypage|label8"
msgid "Certificate Path"
msgstr "Cesta pre certifikáty"
#. pDQrj
-#: cui/uiconfig/ui/optsecuritypage.ui:185
+#: cui/uiconfig/ui/optsecuritypage.ui:175
msgctxt "optsecuritypage|label5"
msgid "Adjust the security level for executing macros and specify trusted macro developers."
msgstr "Upraviť bezpečnostnú úroveň pre spúšťanie makier a zadať dôveryhodné zdroje makier."
#. wBcDQ
-#: cui/uiconfig/ui/optsecuritypage.ui:198
+#: cui/uiconfig/ui/optsecuritypage.ui:188
msgctxt "optsecuritypage|macro"
msgid "Macro Securit_y..."
msgstr "Bezpečnosť _makier..."
-#. eGAGp
-#: cui/uiconfig/ui/optsecuritypage.ui:206
-msgctxt "extended_tip|macro"
-msgid "Opens the Macro Security dialog."
-msgstr "Otvorí dialógové okno Bezpečnosť makier."
-
#. rDJXk
-#: cui/uiconfig/ui/optsecuritypage.ui:223
+#: cui/uiconfig/ui/optsecuritypage.ui:208
msgctxt "optsecuritypage|label3"
msgid "Macro Security"
msgstr "Bezpečnosť makier"
#. UGTda
-#: cui/uiconfig/ui/optsecuritypage.ui:263
+#: cui/uiconfig/ui/optsecuritypage.ui:248
msgctxt "optsecuritypage|savepassword"
msgid "Persistently _save passwords for web connections"
msgstr "Trvale _uložiť heslá pre webové spojenia"
-#. RHiBv
-#: cui/uiconfig/ui/optsecuritypage.ui:272
-msgctxt "extended_tip|savepassword"
-msgid "If enabled, %PRODUCTNAME will securely store all passwords that you use to access files from web servers. You can retrieve the passwords from the list after you enter the master password."
-msgstr "Ak je pole zaškrtnuté, %PRODUCTNAME bezpečne ukladá všetky heslá, ktoré používate na prístup k webu. Ak chcete získať heslo zo zoznamu, je potrebné zadať hlavné heslo."
-
#. Gyqwf
-#: cui/uiconfig/ui/optsecuritypage.ui:295
+#: cui/uiconfig/ui/optsecuritypage.ui:275
msgctxt "optsecuritypage|usemasterpassword"
msgid "Protected _by a master password (recommended)"
msgstr "Chránené hlavným heslom (odporúčané)"
#. ipcrn
-#: cui/uiconfig/ui/optsecuritypage.ui:313
+#: cui/uiconfig/ui/optsecuritypage.ui:293
msgctxt "optsecuritypage|masterpasswordtext"
msgid "Passwords are protected by a master password. You will be asked to enter it once per session, if %PRODUCTNAME retrieves a password from the protected password list."
msgstr "Heslá sú chránené hlavným heslom. Budete požiadaní raz o jeho zadanie počas jednej relácie v prípade, ak %PRODUCTNAME požaduje heslo zo zoznamu uložených hesiel."
#. 7gzb7
-#: cui/uiconfig/ui/optsecuritypage.ui:329
+#: cui/uiconfig/ui/optsecuritypage.ui:309
msgctxt "optsecuritypage|nopasswordsave"
msgid ""
"Disabling the function to persistently store passwords deletes the list of passwords stored and resets the master password.\n"
@@ -16030,65 +12032,41 @@ msgstr ""
"Chcete odstrániť zoznam hesiel a znovu zadať hlavné heslo?"
#. hwg3F
-#: cui/uiconfig/ui/optsecuritypage.ui:367
+#: cui/uiconfig/ui/optsecuritypage.ui:347
msgctxt "optsecuritypage|connections"
msgid "Connect_ions..."
msgstr "Spo_jenia..."
-#. GLEjB
-#: cui/uiconfig/ui/optsecuritypage.ui:375
-msgctxt "extended_tip|connections"
-msgid "Asks for the master password. If master password is correct, shows the Stored Web Connection Information dialog."
-msgstr "Požiada o zadanie hlavného hesla. Ak zadáte správne heslo, zobrazí sa dialógové okno Uložené informácie o webom spojení."
-
#. SWrMn
-#: cui/uiconfig/ui/optsecuritypage.ui:396
+#: cui/uiconfig/ui/optsecuritypage.ui:371
msgctxt "optsecuritypage|masterpassword"
msgid "_Master Password..."
msgstr "_Hlavné heslo..."
-#. w3TQo
-#: cui/uiconfig/ui/optsecuritypage.ui:404
-msgctxt "extended_tip|masterpassword"
-msgid "Opens the Enter Master Password dialog."
-msgstr "Otvorí dialógové okno na zadanie hlavného hesla."
-
#. UtNEn
-#: cui/uiconfig/ui/optsecuritypage.ui:433
+#: cui/uiconfig/ui/optsecuritypage.ui:403
msgctxt "optsecuritypage|label2"
msgid "Passwords for Web Connections"
msgstr "Heslá pre webové spojenia"
#. EYFvA
-#: cui/uiconfig/ui/optsecuritypage.ui:470
+#: cui/uiconfig/ui/optsecuritypage.ui:440
msgctxt "optsecuritypage|label4"
msgid "Adjust security related options and define warnings for hidden information in documents. "
-msgstr "Upraviť nastavenia súvisiace s bezpečnosťou a definovať upozornenia na skryté informácie v súboroch. "
+msgstr "Upraviť nastavenia súvisiace s bezpečnosťou a definovať upozornenia na skryté informácie v súboroch. "
#. CBnzU
-#: cui/uiconfig/ui/optsecuritypage.ui:483
+#: cui/uiconfig/ui/optsecuritypage.ui:453
msgctxt "optsecuritypage|options"
msgid "O_ptions..."
msgstr "Možno_sti..."
-#. pepKZ
-#: cui/uiconfig/ui/optsecuritypage.ui:491
-msgctxt "extended_tip|options"
-msgid "Opens the \"Security Options and Warnings\" dialog."
-msgstr "Otvorí dialógové okno 'Bezpečnostné nastavenia a upozornenia'."
-
#. GqVkJ
-#: cui/uiconfig/ui/optsecuritypage.ui:508
+#: cui/uiconfig/ui/optsecuritypage.ui:473
msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr "Bezpečnostné nastavenia a upozornenia"
-#. rwtuC
-#: cui/uiconfig/ui/optsecuritypage.ui:522
-msgctxt "extended_tip|OptSecurityPage"
-msgid "Defines the security options for saving documents, for web connections, and for opening documents that contain macros."
-msgstr "Určuje možnosti zabezpečenia pre ukladanie dokumentov, pripojenie k webu a otváranie dokumentov obsahujúcich makrá."
-
#. FPuvb
#: cui/uiconfig/ui/optuserpage.ui:34
msgctxt "optuserpage|companyft"
@@ -16149,390 +12127,204 @@ msgctxt "optuserpage|firstname-atkobject"
msgid "First name"
msgstr "Meno"
-#. XfEkD
-#: cui/uiconfig/ui/optuserpage.ui:169
-msgctxt "extended tip | firstname"
-msgid "Type your first name."
-msgstr "Zadajte svoje meno."
-
#. kW7rP
-#: cui/uiconfig/ui/optuserpage.ui:187
+#: cui/uiconfig/ui/optuserpage.ui:186
msgctxt "lastname-atkobject"
msgid "Last name"
msgstr "Priezvisko"
-#. cWaCs
-#: cui/uiconfig/ui/optuserpage.ui:188
-msgctxt "extended tip | lastname"
-msgid "Type your last name."
-msgstr "Zadajte svoje priezvisko."
-
#. DuFHY
-#: cui/uiconfig/ui/optuserpage.ui:206
+#: cui/uiconfig/ui/optuserpage.ui:204
msgctxt "shortname-atkobject"
msgid "Initials"
msgstr "Iniciály"
-#. CYFY2
-#: cui/uiconfig/ui/optuserpage.ui:207
-msgctxt "extended tip | shortname"
-msgid "Type your initials."
-msgstr "Zadajte svoje iniciálky."
-
#. Emfwm
-#: cui/uiconfig/ui/optuserpage.ui:236
+#: cui/uiconfig/ui/optuserpage.ui:233
msgctxt "city-atkobject"
msgid "City"
msgstr "Obec"
-#. UVG4o
-#: cui/uiconfig/ui/optuserpage.ui:237
-msgctxt "extended tip | city"
-msgid "Type the city where you live."
-msgstr "Zadajte mesto, kde žijete."
-
#. CnJ3K
-#: cui/uiconfig/ui/optuserpage.ui:255
+#: cui/uiconfig/ui/optuserpage.ui:251
msgctxt "state-atkobject"
msgid "State"
msgstr "Štát"
-#. y652V
-#: cui/uiconfig/ui/optuserpage.ui:256
-msgctxt "extended tip | state"
-msgid "Type your state."
-msgstr "Zadajte štát."
-
#. ADpC7
-#: cui/uiconfig/ui/optuserpage.ui:274
+#: cui/uiconfig/ui/optuserpage.ui:269
msgctxt "zip-atkobject"
msgid "Zip code"
msgstr "PSČ"
-#. 5vad5
-#: cui/uiconfig/ui/optuserpage.ui:275
-msgctxt "extended tip | zip"
-msgid "Type your ZIP in this field."
-msgstr "Zadajte PSČ."
-
#. p45Kt
-#: cui/uiconfig/ui/optuserpage.ui:305
+#: cui/uiconfig/ui/optuserpage.ui:299
msgctxt "title-atkobject"
msgid "Title"
msgstr "Nadpis"
-#. 5G2ww
-#: cui/uiconfig/ui/optuserpage.ui:306
-msgctxt "extended tip | title"
-msgid "Type your title in this field."
-msgstr "Zadajte svoj titul."
-
#. HCiNt
-#: cui/uiconfig/ui/optuserpage.ui:324
+#: cui/uiconfig/ui/optuserpage.ui:317
msgctxt "position-atkobject"
msgid "Position"
msgstr "Poloha"
-#. QGc4K
-#: cui/uiconfig/ui/optuserpage.ui:325
-msgctxt "extended tip | position"
-msgid "Type your position in the company in this field."
-msgstr "Zadajte svoju pozíciu v zamestnaní."
-
#. qhkwG
-#: cui/uiconfig/ui/optuserpage.ui:354
+#: cui/uiconfig/ui/optuserpage.ui:346
msgctxt "home-atkobject"
msgid "Home telephone number"
msgstr "Telefónne číslo domov"
-#. RNBjN
-#: cui/uiconfig/ui/optuserpage.ui:355
-msgctxt "extended tip | home"
-msgid "Type your private telephone number in this field."
-msgstr "Zadajte svoje súkromné telefónne číslo."
-
#. SfmfD
-#: cui/uiconfig/ui/optuserpage.ui:373
+#: cui/uiconfig/ui/optuserpage.ui:364
msgctxt "work-atkobject"
msgid "Work telephone number"
msgstr "Telefónne číslo do práce"
-#. d5v6D
-#: cui/uiconfig/ui/optuserpage.ui:374
-msgctxt "extended tip | work"
-msgid "Type your work number in this field."
-msgstr "Zadajte svoje pracovné telefónne číslo."
-
#. VEhd3
-#: cui/uiconfig/ui/optuserpage.ui:404
+#: cui/uiconfig/ui/optuserpage.ui:394
msgctxt "fax-atkobject"
msgid "Fax number"
msgstr "Číslo faxu"
-#. CtsEr
-#: cui/uiconfig/ui/optuserpage.ui:405
-msgctxt "extended tip | fax"
-msgid "Type your fax number in this field."
-msgstr "Zadajte svoje číslo faxu."
-
#. 8BG5j
-#: cui/uiconfig/ui/optuserpage.ui:423
+#: cui/uiconfig/ui/optuserpage.ui:412
msgctxt "email-atkobject"
msgid "email address"
msgstr "E-mailová adresa"
-#. PGFMX
-#: cui/uiconfig/ui/optuserpage.ui:424
-msgctxt "extended tip | email"
-msgid "Type your email address."
-msgstr "Zadajte svoju e-mailovú adresu."
-
#. eygE2
-#: cui/uiconfig/ui/optuserpage.ui:441
+#: cui/uiconfig/ui/optuserpage.ui:429
msgctxt "optuserpage|usefordocprop"
msgid "Use data for document properties"
msgstr "Dáta vložiť do vlastností dokumentu"
-#. cGnAb
-#: cui/uiconfig/ui/optuserpage.ui:450
-msgctxt "extended tips | usefordoprop"
-msgid "Mark to use the data in document properties"
-msgstr "Označte, aby sa použili dáta, ktoré sú uvedené vo vlastnostiach dokumentu"
-
#. ZngAH
-#: cui/uiconfig/ui/optuserpage.ui:465
+#: cui/uiconfig/ui/optuserpage.ui:447
msgctxt "optuserpage|rusnameft"
msgid "Last/first/father’s _name/initials:"
msgstr "Priezvisko/meno/meno otca/iniciálky:"
#. 9GPga
-#: cui/uiconfig/ui/optuserpage.ui:489
+#: cui/uiconfig/ui/optuserpage.ui:471
msgctxt "ruslastname-atkobject"
msgid "Last name"
msgstr "Priezvisko"
-#. kU7ef
-#: cui/uiconfig/ui/optuserpage.ui:490
-msgctxt "extended tip | ruslastname"
-msgid "Type your last name."
-msgstr "Zadajte svoje priezvisko."
-
#. gCfx3
-#: cui/uiconfig/ui/optuserpage.ui:508
+#: cui/uiconfig/ui/optuserpage.ui:489
msgctxt "rusfathersname-atkobject"
msgid "Father's name"
msgstr "Meno otca"
-#. WurmE
-#: cui/uiconfig/ui/optuserpage.ui:509
-msgctxt "extended tips | rusfathersname"
-msgid "Type your father's name"
-msgstr "Uveďte meno svojho otca"
-
#. pAF2D
-#: cui/uiconfig/ui/optuserpage.ui:527
+#: cui/uiconfig/ui/optuserpage.ui:507
msgctxt "russhortname-atkobject"
msgid "Initials"
msgstr "Iniciály"
-#. BSSJF
-#: cui/uiconfig/ui/optuserpage.ui:528
-msgctxt "extended tip | russhortname"
-msgid "Type your initials."
-msgstr "Zadajte svoje iniciálky."
-
#. byLGz
-#: cui/uiconfig/ui/optuserpage.ui:546
+#: cui/uiconfig/ui/optuserpage.ui:525
msgctxt "rusfirstname-atkobject"
msgid "First name"
msgstr "Meno"
-#. 2Xsp9
-#: cui/uiconfig/ui/optuserpage.ui:547
-msgctxt "extended tip | rusfirstname"
-msgid "Type your first name."
-msgstr "Zadajte svoje meno."
-
#. 4qdC2
-#: cui/uiconfig/ui/optuserpage.ui:567
+#: cui/uiconfig/ui/optuserpage.ui:545
msgctxt "optuserpage|eastnameft"
msgid "Last/first _name/initials:"
msgstr "Priezvisko/me_no/iniciálky:"
#. Emtmj
-#: cui/uiconfig/ui/optuserpage.ui:591
+#: cui/uiconfig/ui/optuserpage.ui:569
msgctxt "eastlastname-atkobject"
msgid "Last name"
msgstr "Priezvisko"
-#. 9zJxz
-#: cui/uiconfig/ui/optuserpage.ui:592
-msgctxt "extended tip | eastlastname"
-msgid "Type your last name."
-msgstr "Zadajte svoje priezvisko."
-
#. 6MrBD
-#: cui/uiconfig/ui/optuserpage.ui:610
+#: cui/uiconfig/ui/optuserpage.ui:587
msgctxt "eastfirstname-atkobject"
msgid "First name"
msgstr "Meno"
-#. iBZAf
-#: cui/uiconfig/ui/optuserpage.ui:611
-msgctxt "extended tip | eastfirstname"
-msgid "Type your first name."
-msgstr "Zadajte svoje meno."
-
#. mebNB
-#: cui/uiconfig/ui/optuserpage.ui:629
+#: cui/uiconfig/ui/optuserpage.ui:605
msgctxt "eastshortname-atkobject"
msgid "Initials"
msgstr "Iniciály"
-#. i3xBr
-#: cui/uiconfig/ui/optuserpage.ui:630
-msgctxt "extended tip | eastshortname"
-msgid "Type your initials."
-msgstr "Zadajte svoje iniciálky."
-
#. NGEU9
-#: cui/uiconfig/ui/optuserpage.ui:650
+#: cui/uiconfig/ui/optuserpage.ui:625
msgctxt "optuserpage|russtreetft"
msgid "_Street/apartment number:"
msgstr "_Ulica/číslo domu:"
#. oxw3f
-#: cui/uiconfig/ui/optuserpage.ui:674
+#: cui/uiconfig/ui/optuserpage.ui:649
msgctxt "russtreet-atkobject"
msgid "Street"
msgstr "Ulica"
-#. C5n48
-#: cui/uiconfig/ui/optuserpage.ui:675
-msgctxt "extended tips | russrteet"
-msgid "Type the name of your street in this field."
-msgstr "Zadajte ulicu."
-
#. QxpMF
-#: cui/uiconfig/ui/optuserpage.ui:693
+#: cui/uiconfig/ui/optuserpage.ui:667
msgctxt "ruslastname-atkobject"
msgid "Apartment number"
msgstr "Číslo bytu"
-#. ZsKHB
-#: cui/uiconfig/ui/optuserpage.ui:694
-msgctxt "extended tips | apartnum"
-msgid "Type your apartment number"
-msgstr "Uveďte číslo bytu"
-
#. 8kEFB
-#: cui/uiconfig/ui/optuserpage.ui:714
+#: cui/uiconfig/ui/optuserpage.ui:687
msgctxt "optuserpage|icityft"
msgid "_Zip/city:"
msgstr "PSČ/obec:"
#. RhK5j
-#: cui/uiconfig/ui/optuserpage.ui:738
+#: cui/uiconfig/ui/optuserpage.ui:711
msgctxt "icity-atkobject"
msgid "City"
msgstr "Obec"
-#. knxAE
-#: cui/uiconfig/ui/optuserpage.ui:739
-msgctxt "extended tip | icity"
-msgid "Type the city where you live."
-msgstr "Zadajte mesto, kde žijete."
-
#. Hdniz
-#: cui/uiconfig/ui/optuserpage.ui:757
+#: cui/uiconfig/ui/optuserpage.ui:729
msgctxt "izip-atkobject"
msgid "Zip code"
msgstr "PSČ"
-#. 4zTys
-#: cui/uiconfig/ui/optuserpage.ui:758
-msgctxt "extended tip | izip"
-msgid "Type your ZIP in this field."
-msgstr "Zadajte PSČ."
-
-#. VbiGF
-#: cui/uiconfig/ui/optuserpage.ui:787
-msgctxt "extended tip | street"
-msgid "Type the name of your street in this field."
-msgstr "Zadajte ulicu."
-
-#. As2sL
-#: cui/uiconfig/ui/optuserpage.ui:816
-msgctxt "extended tips | country"
-msgid "Type your country and region"
-msgstr "Uveďte štát a región"
-
-#. Lw69w
-#: cui/uiconfig/ui/optuserpage.ui:845
-msgctxt "extended tip | company"
-msgid "Type the name of your company in this field."
-msgstr "Zadajte názov svojej organizácie."
-
#. 9v6o6
-#: cui/uiconfig/ui/optuserpage.ui:868
+#: cui/uiconfig/ui/optuserpage.ui:827
msgctxt "optuserpage|label1"
msgid "Address"
msgstr "Adresa"
#. QfCBu
-#: cui/uiconfig/ui/optuserpage.ui:903
+#: cui/uiconfig/ui/optuserpage.ui:862
msgctxt "optuserpage|signingkeylabel"
msgid "OpenPGP signing key:"
msgstr "OpenPGP kľúč pre podpis:"
#. 4KEFW
-#: cui/uiconfig/ui/optuserpage.ui:917
+#: cui/uiconfig/ui/optuserpage.ui:876
msgctxt "optuserpage|encryptionkeylabel"
msgid "OpenPGP encryption key:"
msgstr "OpenPGP kľúč pre šifrovanie:"
#. GCS8p
-#: cui/uiconfig/ui/optuserpage.ui:933 cui/uiconfig/ui/optuserpage.ui:952
+#: cui/uiconfig/ui/optuserpage.ui:892 cui/uiconfig/ui/optuserpage.ui:906
msgctxt "optuserpage|liststore1"
msgid "No key"
msgstr "Žiadny kláves"
-#. UJXE4
-#: cui/uiconfig/ui/optuserpage.ui:937
-msgctxt "extended tip | encryptionkey"
-msgid "Select your OpenPGP key from the drop-down list for encrypting ODF documents."
-msgstr "V roletovom menu vyberte svoj OpenPGP kľúč na zašifrovanie ODF dokumentu."
-
-#. m27Ub
-#: cui/uiconfig/ui/optuserpage.ui:956
-msgctxt "extended tip | signingkey"
-msgid "Select your OpenPGP key from the drop-down list for signing ODF documents."
-msgstr "V roletovom menu vyberte svoj OpenPGP kľúč na podpísanie ODF dokumentu."
-
#. 8USbk
-#: cui/uiconfig/ui/optuserpage.ui:967
+#: cui/uiconfig/ui/optuserpage.ui:916
msgctxt "optuserpage|encrypttoself"
msgid "When encrypting documents, always encrypt to self"
msgstr "Pri šifrovaní dokumentov vždy šifrovať aj pre seba"
-#. FaxaF
-#: cui/uiconfig/ui/optuserpage.ui:976
-msgctxt "extended tip | encrypttoself"
-msgid "Mark this checkbox to also encrypt the file with your public key, so you can open the document with your private key."
-msgstr "Ak zaškrtnete toto pole, tak súbor sa zašifruje vaším verejným kľúčom. Budete ho môcť otvoriť pomocou vášho privátneho kľúča."
-
#. P5BBC
-#: cui/uiconfig/ui/optuserpage.ui:994
+#: cui/uiconfig/ui/optuserpage.ui:940
msgctxt "optuserpage|cryptographylabel"
msgid "Cryptography"
msgstr "Šifrovanie"
-#. PjCQu
-#: cui/uiconfig/ui/optuserpage.ui:1010
-msgctxt "extended tip | OptUserPage"
-msgid "Use this tab page to enter or edit user data."
-msgstr "Použite túto záložku na vkladanie alebo úpravu údajov o používateľovi."
-
#. DryvE
#: cui/uiconfig/ui/optviewpage.ui:50
msgctxt "optviewpage|label11"
@@ -16563,380 +12355,308 @@ msgctxt "optviewpage|mousepos"
msgid "No automatic positioning"
msgstr "Bez automatického umiestňovania"
-#. pDN23
-#: cui/uiconfig/ui/optviewpage.ui:87
-msgctxt "extended_tip | mousepos"
-msgid "Specifies if and how the mouse pointer will be positioned in newly opened dialogs."
-msgstr "Určuje, či a ako sa do novootvorených dialógových okien umiestňuje kurzor."
-
#. GCAp5
-#: cui/uiconfig/ui/optviewpage.ui:103
+#: cui/uiconfig/ui/optviewpage.ui:98
msgctxt "optviewpage|mousemiddle"
msgid "No function"
msgstr "Bez funkcie"
#. 2b59y
-#: cui/uiconfig/ui/optviewpage.ui:104
+#: cui/uiconfig/ui/optviewpage.ui:99
msgctxt "optviewpage|mousemiddle"
msgid "Automatic scrolling"
msgstr "Automatické posúvanie"
#. 8ELrc
-#: cui/uiconfig/ui/optviewpage.ui:105
+#: cui/uiconfig/ui/optviewpage.ui:100
msgctxt "optviewpage|mousemiddle"
msgid "Paste clipboard"
msgstr "Vložiť obsah schránky výberu"
-#. DeQ72
-#: cui/uiconfig/ui/optviewpage.ui:109
-msgctxt "extended_tip | mousemiddle"
-msgid "Defines the function of the middle mouse button."
-msgstr "Určuje funkciu prostredného tlačidla myši."
-
#. NbJKy
-#: cui/uiconfig/ui/optviewpage.ui:126
+#: cui/uiconfig/ui/optviewpage.ui:116
msgctxt "optviewpage|label4"
msgid "Mouse"
msgstr "Myš"
#. crQSQ
-#: cui/uiconfig/ui/optviewpage.ui:164
+#: cui/uiconfig/ui/optviewpage.ui:154
msgctxt "optviewpage|label13"
msgid "Menu icons:"
msgstr "Ikony v menu:"
#. XKRM7
-#: cui/uiconfig/ui/optviewpage.ui:180
+#: cui/uiconfig/ui/optviewpage.ui:170
msgctxt "optviewpage|menuicons"
msgid "Automatic"
msgstr "Automatický"
#. Fbyi9
-#: cui/uiconfig/ui/optviewpage.ui:181
+#: cui/uiconfig/ui/optviewpage.ui:171
msgctxt "optviewpage|menuicons"
msgid "Hide"
msgstr "Skryť"
#. WTgFx
-#: cui/uiconfig/ui/optviewpage.ui:182
+#: cui/uiconfig/ui/optviewpage.ui:172
msgctxt "optviewpage|menuicons"
msgid "Show"
msgstr "Ukázať"
-#. CpRAh
-#: cui/uiconfig/ui/optviewpage.ui:186
-msgctxt "extended_tip | menuicons"
-msgid "Displays icons next to the corresponding menu items. Select from \"Automatic\", \"Hide\" and \"Show\". \"Automatic\" displays icons according to system settings and themes."
-msgstr "V menu vedľa príslušných položiek sa zobrazia ikony. Dostupné voľby sú 'Automaticky', 'Skryť' a 'Zobraziť'. V prípade voľby 'Automaticky' sa ikony zobrazia v závislosti od nastavenia systému a zvoleného motívu vzhľadu."
-
#. evVAC
-#: cui/uiconfig/ui/optviewpage.ui:212
+#: cui/uiconfig/ui/optviewpage.ui:197
msgctxt "optviewpage|contextmenushortcuts"
msgid "Automatic"
msgstr "Automatický"
#. 36Dg2
-#: cui/uiconfig/ui/optviewpage.ui:213
+#: cui/uiconfig/ui/optviewpage.ui:198
msgctxt "optviewpage|contextmenushortcuts"
msgid "Hide"
msgstr "Skryť"
#. aE3Cq
-#: cui/uiconfig/ui/optviewpage.ui:214
+#: cui/uiconfig/ui/optviewpage.ui:199
msgctxt "optviewpage|contextmenushortcuts"
msgid "Show"
msgstr "Ukázať"
#. ZutFR
-#: cui/uiconfig/ui/optviewpage.ui:226
+#: cui/uiconfig/ui/optviewpage.ui:211
msgctxt "optviewpage|label10"
msgid "Shortcuts:"
msgstr "Skratky:"
#. EWdHF
-#: cui/uiconfig/ui/optviewpage.ui:250
+#: cui/uiconfig/ui/optviewpage.ui:235
msgctxt "optviewpage|label3"
msgid "Visibility"
msgstr "Viditelnosť"
#. LxFLY
-#: cui/uiconfig/ui/optviewpage.ui:289
+#: cui/uiconfig/ui/optviewpage.ui:274
msgctxt "optviewpage|notebookbariconsize"
msgid "Automatic"
msgstr "Automatický"
#. oKQEA
-#: cui/uiconfig/ui/optviewpage.ui:290
+#: cui/uiconfig/ui/optviewpage.ui:275
msgctxt "optviewpage|notebookbariconsize"
msgid "Small"
msgstr "Malé"
#. JHk7X
-#: cui/uiconfig/ui/optviewpage.ui:291
+#: cui/uiconfig/ui/optviewpage.ui:276
msgctxt "optviewpage|notebookbariconsize"
msgid "Large"
msgstr "Veľké"
-#. E7vjR
-#: cui/uiconfig/ui/optviewpage.ui:295
-msgctxt "extended_tip | notebookbariconsize"
-msgid "Specifies the display size of notebook bar icons."
-msgstr "Určuje veľkosť zobrazenia ikon pre panel so záložkami."
-
#. G8qAD
-#: cui/uiconfig/ui/optviewpage.ui:308
+#: cui/uiconfig/ui/optviewpage.ui:288
msgctxt "optviewpage|label7"
msgid "_Notebookbar:"
msgstr "_Panel so záložkami:"
#. CsRM4
-#: cui/uiconfig/ui/optviewpage.ui:324
+#: cui/uiconfig/ui/optviewpage.ui:304
msgctxt "optviewpage|sidebariconsize"
msgid "Automatic"
msgstr "Automatický"
#. wMYTk
-#: cui/uiconfig/ui/optviewpage.ui:325
+#: cui/uiconfig/ui/optviewpage.ui:305
msgctxt "optviewpage|sidebariconsize"
msgid "Small"
msgstr "Malé"
#. AFBcQ
-#: cui/uiconfig/ui/optviewpage.ui:326
+#: cui/uiconfig/ui/optviewpage.ui:306
msgctxt "optviewpage|sidebariconsize"
msgid "Large"
msgstr "Veľké"
-#. W8yUi
-#: cui/uiconfig/ui/optviewpage.ui:330
-msgctxt "extended_tip | sidebariconsize"
-msgid "Specifies the display size of sidebar icons."
-msgstr "Určuje veľkosť ikon zobrazených v postrannom paneli."
-
#. kPSBA
-#: cui/uiconfig/ui/optviewpage.ui:343
+#: cui/uiconfig/ui/optviewpage.ui:318
msgctxt "optviewpage|label9"
msgid "Sidebar:"
msgstr "Postranný panel:"
#. R5bS2
-#: cui/uiconfig/ui/optviewpage.ui:359
+#: cui/uiconfig/ui/optviewpage.ui:334
msgctxt "optviewpage|iconsize"
msgid "Automatic"
msgstr "Automatický"
#. LEpgg
-#: cui/uiconfig/ui/optviewpage.ui:360
+#: cui/uiconfig/ui/optviewpage.ui:335
msgctxt "optviewpage|iconsize"
msgid "Small"
msgstr "Malé"
#. q4LX3
-#: cui/uiconfig/ui/optviewpage.ui:361
+#: cui/uiconfig/ui/optviewpage.ui:336
msgctxt "optviewpage|iconsize"
msgid "Large"
msgstr "Veľké"
#. oYDs8
-#: cui/uiconfig/ui/optviewpage.ui:362
+#: cui/uiconfig/ui/optviewpage.ui:337
msgctxt "optviewpage|iconsize"
msgid "Extra Large"
msgstr "Veľmi veľké"
-#. bhmh9
-#: cui/uiconfig/ui/optviewpage.ui:366
-msgctxt "extended_tip | iconsize"
-msgid "Specifies the display size of toolbar icons."
-msgstr "Určuje veľkosť zobrazenia ikon pre panely nástrojov."
-
#. PdeBj
-#: cui/uiconfig/ui/optviewpage.ui:379
+#: cui/uiconfig/ui/optviewpage.ui:349
msgctxt "optviewpage|label8"
msgid "Toolbar:"
msgstr "Panel nástrojov:"
-#. juDWx
-#: cui/uiconfig/ui/optviewpage.ui:397
+#. hZsaQ
+#: cui/uiconfig/ui/optviewpage.ui:367
msgctxt "optviewpage|label1"
-msgid "Icon Size"
-msgstr ""
+msgid "Icon size"
+msgstr "Veľkosť ikon"
#. 8CiB5
-#: cui/uiconfig/ui/optviewpage.ui:435
+#: cui/uiconfig/ui/optviewpage.ui:405
msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "Automatický"
#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:436
+#: cui/uiconfig/ui/optviewpage.ui:406
msgctxt "optviewpage|iconstyle"
msgid "Galaxy"
msgstr "Galaxy"
#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:437
+#: cui/uiconfig/ui/optviewpage.ui:407
msgctxt "optviewpage|iconstyle"
msgid "High Contrast"
msgstr "Vysoký kontrast"
#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:438
+#: cui/uiconfig/ui/optviewpage.ui:408
msgctxt "optviewpage|iconstyle"
msgid "Oxygen"
msgstr "Oxygen"
#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:439
+#: cui/uiconfig/ui/optviewpage.ui:409
msgctxt "optviewpage|iconstyle"
msgid "Classic"
msgstr "Klasický"
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:440
+#: cui/uiconfig/ui/optviewpage.ui:410
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr "Sifr"
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:411
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr "Breeze"
-#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:445
-msgctxt "extended_tip | iconstyle"
-msgid "Specifies the icon style for icons in toolbars and dialogs."
-msgstr "Určuje štýl ikon na nástrojových lištách a v dialógových oknách."
-
#. anMTd
-#: cui/uiconfig/ui/optviewpage.ui:458
+#: cui/uiconfig/ui/optviewpage.ui:423
msgctxt "optviewpage|label6"
msgid "Icon s_tyle:"
msgstr "Štýl i_kon:"
-#. eMqmK
-#: cui/uiconfig/ui/optviewpage.ui:476
+#. a86VJ
+#: cui/uiconfig/ui/optviewpage.ui:441
msgctxt "optviewpage|label1"
-msgid "Icon Style"
-msgstr ""
+msgid "Icon style"
+msgstr "Štýl ikon"
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:515
+#: cui/uiconfig/ui/optviewpage.ui:480
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr "Vyžaduje reštart"
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:519
+#: cui/uiconfig/ui/optviewpage.ui:484
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr "Použiť hardvérové urýchlenie"
-#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:528
-msgctxt "extended_tip | useaccel"
-msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
-msgstr "Pre vylepšenie zobrazenie budú použité hardvérové vlastnosti grafickej karty."
-
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:539
+#: cui/uiconfig/ui/optviewpage.ui:499
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr "Použiť vyhl_adzovanie"
-#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:548
-msgctxt "extended_tip | useaa"
-msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
-msgstr "Ak je podporované, môžete zapnúť alebo vypnúť vyhladzovanie grafiky (antialiasing). Pri zapnutom vyhladzovaní má väčšina grafických objektov menej artefaktov."
-
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:559
+#: cui/uiconfig/ui/optviewpage.ui:514
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr "Na všetko vykresľovanie použiť knižnicu Skia"
-#. Dix5D
-#: cui/uiconfig/ui/optviewpage.ui:574
+#. NaqGG
+#: cui/uiconfig/ui/optviewpage.ui:529
msgctxt "optviewpage|forceskia"
-msgid "Ignore Skia denylist"
-msgstr "Ignorovať zoznam zakázaných knižnice SKIA"
+msgid "Ignore Skia blacklist"
+msgstr "Ignorovať zoznam zakázaných knižnice Skia"
#. v9eeZ
-#: cui/uiconfig/ui/optviewpage.ui:578
+#: cui/uiconfig/ui/optviewpage.ui:533
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this may expose driver bugs"
msgstr "Vyžaduje reštart. Pri povolení sa môžu prejaviť chyby ovládače"
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:591
+#: cui/uiconfig/ui/optviewpage.ui:546
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr "Vynútiť softvérové vykresľovanie knižnicou Skia"
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:595
+#: cui/uiconfig/ui/optviewpage.ui:550
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr "Vyžaduje reštart. Povolením sa zabráni použitie grafického ovládača."
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:610
+#: cui/uiconfig/ui/optviewpage.ui:565
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr "Knižnica Skia je aktuálne povolená."
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:622
+#: cui/uiconfig/ui/optviewpage.ui:577
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr "Knižnica Skia je aktuálne zakázaná."
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:638
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr "Grafický výstup"
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:669
+#: cui/uiconfig/ui/optviewpage.ui:624
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr "Zob_raziť náhľad písiem"
-#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:678
-msgctxt "extended_tip | showfontpreview"
-msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
-msgstr "Pri výbere písma sa názov písma zobrazí daným písmom, napr. v zozname písiem v poli Písmo v paneli nástrojov Formátovanie."
-
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:639
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr "Vyhladzovanie pí_sma na obrazovke"
-#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:698
-msgctxt "extended_tip | aafont"
-msgid "Select to smooth the screen appearance of text."
-msgstr "Zvoľte, ak chcete vyhladzovať zobrazovanie textu na obrazovke."
-
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:718
+#: cui/uiconfig/ui/optviewpage.ui:663
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr "o_d:"
-#. 9tsFW
-#: cui/uiconfig/ui/optviewpage.ui:735
-msgctxt "extended_tip | aanf"
-msgid "Enter the smallest font size to apply antialiasing."
-msgstr "Zadajte najmenšiu veľkosť písma na vyhladzovanie."
-
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:758
+#: cui/uiconfig/ui/optviewpage.ui:698
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr "Zoznamy písiem"
@@ -17049,81 +12769,74 @@ msgctxt "pageformatpage|labelPageNumbers"
msgid "Page numbers:"
msgstr "Čísla strán:"
-#. G3G5M
+#. RNDFy
#: cui/uiconfig/ui/pageformatpage.ui:530
msgctxt "pageformatpage|checkRegisterTrue"
-msgid "Page li_ne spacing"
-msgstr "_Riadkovanie strany"
-
-#. 3BsGZ
-#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:534
-msgctxt "pageformatpage|checkRegisterTrue"
-msgid "All paragraph styles with the option Page line spacing checked will be affected, assuming the line spacing defined here. This will align them to an invisible vertical page grid, regardless of their font size, so that each line is the same height."
-msgstr "Ovplyvnené budú všetky štýly odsekov so zaškrtnutou voľbou Riadkovanie strán, za predpokladu, že riadkovanie je tu definované. To ich zarovná na neviditeľnú vertikálnu mriežku stránky bez ohľadu na ich veľkosť písma, takže každý riadok bude mať rovnakú výšku."
+msgid "Register-tr_ue"
+msgstr "Zarovnať riadkové re_gistre"
#. 46djR
-#: cui/uiconfig/ui/pageformatpage.ui:549
+#: cui/uiconfig/ui/pageformatpage.ui:548
msgctxt "pageformatpage|liststorePageLayout"
msgid "Right and left"
msgstr "Vpravo a vľavo"
#. xetCH
-#: cui/uiconfig/ui/pageformatpage.ui:550
+#: cui/uiconfig/ui/pageformatpage.ui:549
msgctxt "pageformatpage|liststorePageLayout"
msgid "Mirrored"
msgstr "Zrkadliť"
#. 47EHF
-#: cui/uiconfig/ui/pageformatpage.ui:551
+#: cui/uiconfig/ui/pageformatpage.ui:550
msgctxt "pageformatpage|liststorePageLayout"
msgid "Only right"
msgstr "Iba vpravo"
#. ALSy9
-#: cui/uiconfig/ui/pageformatpage.ui:552
+#: cui/uiconfig/ui/pageformatpage.ui:551
msgctxt "pageformatpage|liststorePageLayout"
msgid "Only left"
msgstr "Iba vľavo"
#. Fhvzk
-#: cui/uiconfig/ui/pageformatpage.ui:574
+#: cui/uiconfig/ui/pageformatpage.ui:573
msgctxt "pageformatpage|labelTblAlign"
msgid "Table alignment:"
msgstr "Zarovnanie tabuľky:"
#. 79BH9
-#: cui/uiconfig/ui/pageformatpage.ui:586
+#: cui/uiconfig/ui/pageformatpage.ui:585
msgctxt "pageformatpage|checkbuttonHorz"
msgid "Hori_zontal"
msgstr "_Vodorovne"
#. krxQZ
-#: cui/uiconfig/ui/pageformatpage.ui:601
+#: cui/uiconfig/ui/pageformatpage.ui:600
msgctxt "pageformatpage|checkbuttonVert"
msgid "_Vertical"
msgstr "Z_visle"
#. FPLFK
-#: cui/uiconfig/ui/pageformatpage.ui:616
+#: cui/uiconfig/ui/pageformatpage.ui:615
msgctxt "pageformatpage|checkAdaptBox"
msgid "_Fit object to paper format"
msgstr "_Prispôsobiť objekt formátu papiera"
#. bqcXW
-#: cui/uiconfig/ui/pageformatpage.ui:635
+#: cui/uiconfig/ui/pageformatpage.ui:634
msgctxt "pageformatpage|labelRegisterStyle"
msgid "Reference _Style:"
msgstr "Referenčný š_týl:"
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:669
+#: cui/uiconfig/ui/pageformatpage.ui:668
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Nastavenia rozloženia"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:690
+#: cui/uiconfig/ui/pageformatpage.ui:689
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
@@ -17398,11 +13111,11 @@ msgctxt "paraindentspacing|checkCB_REGISTER"
msgid "A_ctivate"
msgstr "A_ktivovať"
-#. HifGU
+#. CZshb
#: cui/uiconfig/ui/paraindentspacing.ui:505
msgctxt "paraindentspacing|label3"
-msgid "Follow Page Line Spacing"
-msgstr ""
+msgid "Register-true"
+msgstr "Register-true"
#. pbs4W
#: cui/uiconfig/ui/paratabspage.ui:118
@@ -17482,26 +13195,20 @@ msgctxt "paratabspage|buttonBTN_DELALL"
msgid "Delete _all"
msgstr "_Odstrániť všetko"
-#. qctkA
-#: cui/uiconfig/ui/paratabspage.ui:550
-msgctxt "paratabspage|extended_tip|buttonBTN_DEL"
-msgid "Deletes the selected element or elements after confirmation."
-msgstr "Po potvrdení odstráni vybraný prvok alebo prvky."
-
#. WCcAj
-#: cui/uiconfig/ui/paratabspage.ui:563
+#: cui/uiconfig/ui/paratabspage.ui:558
msgctxt "paratabspage|label4"
msgid "points"
msgstr "bod(y)"
#. GcMMk
-#: cui/uiconfig/ui/paratabspage.ui:576
+#: cui/uiconfig/ui/paratabspage.ui:571
msgctxt "paratabspage|label5"
msgid "dashes"
msgstr "pomlčky"
#. CYnkr
-#: cui/uiconfig/ui/paratabspage.ui:589
+#: cui/uiconfig/ui/paratabspage.ui:584
msgctxt "paratabspage|label6"
msgid "underscores"
msgstr "podčiarniky"
@@ -17512,74 +13219,56 @@ msgctxt "password|PasswordDialog"
msgid "Set Password"
msgstr "Nastaviť heslo"
-#. XDzCT
-#: cui/uiconfig/ui/password.ui:100
-msgctxt "password|extended_tip|newpassEntry"
-msgid "Type a password. A password is case sensitive."
-msgstr "Zadajte heslo. V hesle sa rozlišujú malé a veľké písmená."
-
-#. QbKd2
-#: cui/uiconfig/ui/password.ui:119
-msgctxt "password|extended_tip|confirmpassEntry"
-msgid "Re-enter the password."
-msgstr "Znova zadajte heslo."
-
#. vMhFF
-#: cui/uiconfig/ui/password.ui:132
+#: cui/uiconfig/ui/password.ui:122
msgctxt "password|label1"
msgid "Note: After a password has been set, the document will only open with the password. Should you lose the password, there will be no way to recover the document. Please also note that this password is case-sensitive."
msgstr "Poznámka: Po nastavení hesla sa dokument možno otvoriť iba s heslom. Ak heslo zabudnete, dokument nebude možné žiadnym spôsobom obnoviť. Upozornenie: Pri hesle záleží na veľkosti písmen."
#. scLkF
-#: cui/uiconfig/ui/password.ui:166
+#: cui/uiconfig/ui/password.ui:156
msgctxt "password|readonly"
msgid "Open file read-only"
msgstr "Otvoriť súbor len na čítanie"
#. f5Ydx
-#: cui/uiconfig/ui/password.ui:215
+#: cui/uiconfig/ui/password.ui:205
msgctxt "password|label7"
msgid "Enter password to allow editing"
msgstr "Heslo pre umožnenie úprav v dokumente"
#. AgwpD
-#: cui/uiconfig/ui/password.ui:259
+#: cui/uiconfig/ui/password.ui:249
msgctxt "password|label8"
msgid "Confirm password"
msgstr "Potvrdiť heslo"
#. SEgNR
-#: cui/uiconfig/ui/password.ui:303
+#: cui/uiconfig/ui/password.ui:293
msgctxt "password|label6"
msgid "File Sharing Password"
msgstr "Heslo na zdieľanie súboru"
#. Sjh3k
-#: cui/uiconfig/ui/password.ui:315
+#: cui/uiconfig/ui/password.ui:305
msgctxt "password|label3"
msgid "_Options"
msgstr "_Možnosti"
-#. xgwm4
-#: cui/uiconfig/ui/password.ui:321
-msgctxt "password|extended_tip|expander"
-msgid "Click to show or hide the file sharing password options."
-msgstr "Kliknutím zobraziť alebo skryť možnosti hesla pre zdieľanie súborov."
-
#. wqXmU
-#: cui/uiconfig/ui/password.ui:338
+#: cui/uiconfig/ui/password.ui:323
msgctxt "password|label4"
msgid "_Enter password to open"
msgstr "Zadať h_eslo na otvorenie"
#. ujTNz
-#: cui/uiconfig/ui/password.ui:382
+#: cui/uiconfig/ui/password.ui:367
msgctxt "password|label5"
msgid "Confirm password"
msgstr "Potvrdiť heslo"
#. FfyCu
-#: cui/uiconfig/ui/password.ui:426
+#: cui/uiconfig/ui/password.ui:411
msgctxt "password|label2"
msgid "File Encryption Password"
msgstr "Heslo na ochranu súboru"
@@ -17596,120 +13285,66 @@ msgctxt "pastespecial|label2"
msgid "Source:"
msgstr "Zdroj:"
-#. WzCXw
-#: cui/uiconfig/ui/pastespecial.ui:116
-msgctxt "pastespecial|extended_tip|source"
-msgid "Displays the source of the clipboard contents."
-msgstr "Zobrazí zdroj obsahu schránky."
-
-#. RwDM8
-#: cui/uiconfig/ui/pastespecial.ui:181
-msgctxt "pastespecial|extended_tip|list"
-msgid "Select a format for the clipboard contents that you want to paste. The available format depends on the copied or cut source format."
-msgstr "Vyberte formát obsahu schránky, ktorý chcete vložiť. Dostupný formát závisí na formáte skopírovaného alebo vystrihnutého zdrojového objektu."
-
#. gjnwU
-#: cui/uiconfig/ui/pastespecial.ui:194
+#: cui/uiconfig/ui/pastespecial.ui:184
msgctxt "pastespecial|label1"
msgid "Selection"
msgstr "Výber"
-#. xNCmW
-#: cui/uiconfig/ui/pastespecial.ui:226
-msgctxt "pastespecial|extended_tip|PasteSpecialDialog"
-msgid "Inserts the contents of the clipboard into the current file in a format that you can specify."
-msgstr "Vloží obsah schránky do aktuálneho súboru vo formáte, ktorý možno špecifikovať."
-
-#. WiEC6
-#: cui/uiconfig/ui/patterntabpage.ui:75
-msgctxt "patterntabpage|extended_tip|BTN_ADD"
-msgid "Adds a custom pattern to the current list. Specify the properties of your pattern, and then click this button."
-msgstr "Pridá do aktuálneho zoznamu vlastný vzor. Zadajte vlastnosti vzoru a potom kliknite na toto tlačidlo."
-
#. 68KjX
-#: cui/uiconfig/ui/patterntabpage.ui:87
+#: cui/uiconfig/ui/patterntabpage.ui:82
msgctxt "patterntabpage|BTN_MODIFY"
msgid "_Modify"
msgstr "_Upraviť"
-#. 4LFRB
-#: cui/uiconfig/ui/patterntabpage.ui:94
-msgctxt "patterntabpage|extended_tip|BTN_MODIFY"
-msgid "Applies the current pattern properties to the selected pattern. If you want, you can save the pattern under a different name."
-msgstr "Použije aktuálne vlastnosti vzoru na vybraný vzor. Ak chcete, môžete vzor uložiť pod iným názvom."
-
#. SnESZ
-#: cui/uiconfig/ui/patterntabpage.ui:119
+#: cui/uiconfig/ui/patterntabpage.ui:109
msgctxt "patterntabpage|label3"
msgid "Pattern"
msgstr "Vzor"
#. qr5PS
-#: cui/uiconfig/ui/patterntabpage.ui:166
+#: cui/uiconfig/ui/patterntabpage.ui:156
msgctxt "patterntabpage|label4"
msgid "Pattern Editor:"
msgstr "Editor vzorov:"
#. 7nWqN
-#: cui/uiconfig/ui/patterntabpage.ui:197
+#: cui/uiconfig/ui/patterntabpage.ui:187
msgctxt "patterntabpage|CTL_PIXEL-atkobject"
msgid "Pattern Editor"
msgstr "Editor vzorov"
-#. ED8Xx
-#: cui/uiconfig/ui/patterntabpage.ui:198
-msgctxt "patterntabpage|extended_tip|CTL_PIXEL"
-msgid "Draw the pattern in the 8 x 8 pixel board. Click on a pattern pixel to activate it, click again to deactivate it."
-msgstr "Nakreslite vzor na štvorec s rozmermi 8 x 8 pixelov. Kliknutím na pixel vzoru ho aktivujete, ďalším kliknutím ho deaktivujete."
-
#. BvHTn
-#: cui/uiconfig/ui/patterntabpage.ui:229
+#: cui/uiconfig/ui/patterntabpage.ui:218
msgctxt "patterntabpage|label5"
msgid "Foreground Color:"
msgstr "Farba popredia:"
-#. EkYFZ
-#: cui/uiconfig/ui/patterntabpage.ui:253
-msgctxt "patterntabpage|extended_tip|LB_COLOR"
-msgid "Set the color of the activated pattern pixels."
-msgstr "Nastavte farbu aktivovaných pixelov vzoru."
-
#. S8mpk
-#: cui/uiconfig/ui/patterntabpage.ui:280
+#: cui/uiconfig/ui/patterntabpage.ui:264
msgctxt "patterntabpage|label6"
msgid "Background Color:"
msgstr "Farba pozadia:"
-#. h8fmT
-#: cui/uiconfig/ui/patterntabpage.ui:304
-msgctxt "patterntabpage|extended_tip|LB_BACKGROUND_COLOR"
-msgid "Set the color of the deactivated pattern pixels."
-msgstr "Nastavte farbu deaktivovaných pixelov vzoru."
-
#. hg7RL
-#: cui/uiconfig/ui/patterntabpage.ui:329
+#: cui/uiconfig/ui/patterntabpage.ui:308
msgctxt "patterntabpage|label1"
msgid "Options"
msgstr "Možnosti"
#. 2U7Pc
-#: cui/uiconfig/ui/patterntabpage.ui:378
+#: cui/uiconfig/ui/patterntabpage.ui:357
msgctxt "patterntabpage|CTL_PREVIEW-atkobject"
msgid "Example"
msgstr "Príklad"
#. wCrAc
-#: cui/uiconfig/ui/patterntabpage.ui:400
+#: cui/uiconfig/ui/patterntabpage.ui:379
msgctxt "patterntabpage|label2"
msgid "Preview"
msgstr "Náhľad"
-#. zmVMN
-#: cui/uiconfig/ui/patterntabpage.ui:416
-msgctxt "patterntabpage|extended_tip|PatternTabPage"
-msgid "Fills the object with a simple two color pattern selected on this page."
-msgstr "Vyplní objekt jednoduchým dvojfarebným vzorom vybraným na tejto stránke."
-
#. WCjNN
#: cui/uiconfig/ui/percentdialog.ui:14
msgctxt "percentdialog|PercentDialog"
@@ -17722,12 +13357,6 @@ msgctxt "percentdialog|label1"
msgid "Minimum Size"
msgstr "Minimálna veľkosť"
-#. uqcmG
-#: cui/uiconfig/ui/percentdialog.ui:122
-msgctxt "percentdialog|extended_tip|PercentDialog"
-msgid "Enter the minimum length for combining single-lined paragraphs as a percentage of the page width."
-msgstr "Zadajte minimálnu dĺžku (v percentách šírky stránky) na spojenie jednoriadkových odsekov."
-
#. 9RySH
#: cui/uiconfig/ui/personalization_tab.ui:33
msgctxt "personalization_tab|no_persona"
@@ -17746,90 +13375,42 @@ msgctxt "personalization_tab|personas_label"
msgid "LibreOffice Themes"
msgstr "Motívy vzhľadu LibreOffice"
-#. C5MHG
-#: cui/uiconfig/ui/pickbulletpage.ui:43
-msgctxt "pickbulletpage|extended_tip|valueset"
-msgid "Click the bullet style that you want to use."
-msgstr "Kliknite na štýl odrážky, ktorý chcete použiť."
-
#. K4D8E
-#: cui/uiconfig/ui/pickbulletpage.ui:58
+#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
msgid "Selection"
msgstr "Výber"
-#. eYCSe
-#: cui/uiconfig/ui/pickbulletpage.ui:66
-msgctxt "pickbulletpage|extended_tip|PickBulletPage"
-msgid "Displays the different bullet styles that you can apply."
-msgstr "Zobrazuje rôzne štýly odrážok, ktoré môžete použiť."
-
-#. LkXNn
-#: cui/uiconfig/ui/pickgraphicpage.ui:49
-msgctxt "pickgraphicpage|extended_tip|valueset"
-msgid "Click the graphics that you want to use as bullets."
-msgstr "Kliknite na grafiku, ktorú chcete použiť ako odrážky."
-
#. GkQdm
-#: cui/uiconfig/ui/pickgraphicpage.ui:66
+#: cui/uiconfig/ui/pickgraphicpage.ui:61
msgctxt "pickgraphicpage|errorft"
msgid "The Gallery theme 'Bullets' is empty (no images)."
msgstr "Motív galérie 'Odrážky' je prázdny (žiadne obrázky)."
#. NrrxW
-#: cui/uiconfig/ui/pickgraphicpage.ui:76
+#: cui/uiconfig/ui/pickgraphicpage.ui:71
msgctxt "pickgraphicpage|browseBtn"
msgid "Add and Resize"
msgstr "Pridať a zmeniť veľkosť"
#. bX3Eo
-#: cui/uiconfig/ui/pickgraphicpage.ui:104
+#: cui/uiconfig/ui/pickgraphicpage.ui:99
msgctxt "pickgraphicpage|label25"
msgid "Selection"
msgstr "Výber"
-#. CDrF8
-#: cui/uiconfig/ui/pickgraphicpage.ui:112
-msgctxt "pickgraphicpage|extended_tip|PickGraphicPage"
-msgid "Displays the different graphics that you can use as bullets in a bulleted list."
-msgstr "Zobrazuje rôzne grafiky, ktoré môžete použiť ako odrážky v zozname s odrážkami."
-
-#. Qd4sn
-#: cui/uiconfig/ui/picknumberingpage.ui:43
-msgctxt "picknumberingpage|extended_tip|valueset"
-msgid "Click the numbering style that you want to use."
-msgstr "Kliknite na štýl číslovania, ktorý chcete použiť."
-
#. 9JnpQ
-#: cui/uiconfig/ui/picknumberingpage.ui:58
+#: cui/uiconfig/ui/picknumberingpage.ui:52
msgctxt "picknumberingpage|label25"
msgid "Selection"
msgstr "Výber"
-#. mQsy5
-#: cui/uiconfig/ui/picknumberingpage.ui:66
-msgctxt "picknumberingpage|extended_tip|PickNumberingPage"
-msgid "Displays the different numbering styles that you can apply."
-msgstr "Zobrazuje rôzne štýly číslovania, ktoré môžete použiť."
-
-#. BDFqB
-#: cui/uiconfig/ui/pickoutlinepage.ui:43
-msgctxt "pickoutlinepage|extended_tip|valueset"
-msgid "Click the outline style that you want to use."
-msgstr "Kliknite na štýl obrysu, ktorý chcete použiť."
-
#. i8h33
-#: cui/uiconfig/ui/pickoutlinepage.ui:58
+#: cui/uiconfig/ui/pickoutlinepage.ui:52
msgctxt "pickoutlinepage|label25"
msgid "Selection"
msgstr "Výber"
-#. FnZK4
-#: cui/uiconfig/ui/pickoutlinepage.ui:66
-msgctxt "pickoutlinepage|extended_tip|PickOutlinePage"
-msgid "Displays the different styles that you can apply to a hierarchical list. %PRODUCTNAME supports up to nine outline levels in a list hierarchy."
-msgstr "Zobrazuje rôzne štýly, ktoré môžete použiť na hierarchický zoznam. %PRODUCTNAME podporuje až deväť úrovní v hierarchii zoznamov."
-
#. hRP6U
#: cui/uiconfig/ui/positionpage.ui:66
msgctxt "positionpage|normal"
@@ -17980,291 +13561,165 @@ msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Pozícia _Y:"
-#. TCRj5
-#: cui/uiconfig/ui/possizetabpage.ui:95
-msgctxt "possizetabpage|extended_tip|MTR_FLD_POS_X"
-msgid "Enter the horizontal distance that you want to move the object relative to the base point selected in the grid."
-msgstr "Zadajte vodorovnú vzdialenosť, o ktorú chcete objekt posunúť vo vzťahu k základnému bodu vybranému v mriežke."
-
-#. 88ohS
-#: cui/uiconfig/ui/possizetabpage.ui:114
-msgctxt "possizetabpage|extended_tip|MTR_FLD_POS_Y"
-msgid "Enter the vertical distance that you want to move the object relative to the base point selected in the grid."
-msgstr "Zadajte vertikálnu vzdialenosť, o ktorú chcete objekt posunúť, vo vzťahu k základnému bodu vybranému v mriežke."
-
-#. fo7DN
-#: cui/uiconfig/ui/possizetabpage.ui:156
-msgctxt "possizetabpage|extended_tip|CTL_POSRECT"
-msgid "Click a base point in the grid, and then enter the amount that you want to shift the object relative to the base point that you selected in the Position Y and Position X boxes. The base points correspond to the selection handles on an object."
-msgstr "Kliknite na základný bod v mriežke a potom zadajte hodnotu, o ktorú chcete posunúť objekt vo vzťahu k základnému bodu, ktorý ste vybrali v poliach Pozícia Y a Pozícia X. Základné body zodpovedajú úchytom výberu na objekte."
-
#. 35vDU
-#: cui/uiconfig/ui/possizetabpage.ui:174
+#: cui/uiconfig/ui/possizetabpage.ui:159
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "_Základný bod:"
#. Vxpqo
-#: cui/uiconfig/ui/possizetabpage.ui:199
+#: cui/uiconfig/ui/possizetabpage.ui:184
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Poloha"
#. pFULX
-#: cui/uiconfig/ui/possizetabpage.ui:241
+#: cui/uiconfig/ui/possizetabpage.ui:226
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "Ší_rka:"
#. jGiQW
-#: cui/uiconfig/ui/possizetabpage.ui:255
+#: cui/uiconfig/ui/possizetabpage.ui:240
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "Výš_ka:"
-#. RnbvF
-#: cui/uiconfig/ui/possizetabpage.ui:275
-msgctxt "possizetabpage|extended_tip|MTR_FLD_WIDTH"
-msgid "Enter a width for the selected object."
-msgstr "Zadajte šírku vybraného objektu."
-
-#. iEYQc
-#: cui/uiconfig/ui/possizetabpage.ui:294
-msgctxt "possizetabpage|extended_tip|MTR_FLD_HEIGHT"
-msgid "Enter a height for the selected object."
-msgstr "Zadajte výšku vybraného objektu."
-
#. VTzYW
-#: cui/uiconfig/ui/possizetabpage.ui:305
+#: cui/uiconfig/ui/possizetabpage.ui:280
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "_Zachovať pomer"
-#. 9AxVT
-#: cui/uiconfig/ui/possizetabpage.ui:314
-msgctxt "possizetabpage|extended_tip|CBX_SCALE"
-msgid "Maintains proportions when you resize the selected object."
-msgstr "Zachová proporcie pri zmene veľkosti vybraného objektu."
-
-#. AzyvU
-#: cui/uiconfig/ui/possizetabpage.ui:357
-msgctxt "possizetabpage|extended_tip|CTL_SIZERECT"
-msgid "Click a base point in the grid, and then enter the new size dimensions for the selected object in the Width and Height boxes."
-msgstr "Kliknite na základný bod v mriežke a potom zadajte nové rozmery veľkosti pre vybraný objekt do polí Šírka a Výška."
-
#. 4A7Le
-#: cui/uiconfig/ui/possizetabpage.ui:375
+#: cui/uiconfig/ui/possizetabpage.ui:340
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "_Základný bod:"
#. C2Xds
-#: cui/uiconfig/ui/possizetabpage.ui:400
+#: cui/uiconfig/ui/possizetabpage.ui:365
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Veľkosť"
#. 2mfBD
-#: cui/uiconfig/ui/possizetabpage.ui:440
+#: cui/uiconfig/ui/possizetabpage.ui:405
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Polo_ha"
-#. 3CGAx
-#: cui/uiconfig/ui/possizetabpage.ui:450
-msgctxt "possizetabpage|extended_tip|TSB_POSPROTECT"
-msgid "Prevents changes to the position or the size of the selected object."
-msgstr "Zabráni zmenám polohy alebo veľkosti vybraného objektu."
-
#. qD3T7
-#: cui/uiconfig/ui/possizetabpage.ui:462
+#: cui/uiconfig/ui/possizetabpage.ui:422
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "Veľko_sť"
-#. 5Fftz
-#: cui/uiconfig/ui/possizetabpage.ui:472
-msgctxt "possizetabpage|extended_tip|TSB_SIZEPROTECT"
-msgid "Prevents you from resizing the object."
-msgstr "Zabráni zmeniť veľkosť objektu."
-
#. 4Ezcc
-#: cui/uiconfig/ui/possizetabpage.ui:490
+#: cui/uiconfig/ui/possizetabpage.ui:445
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Zamknúť"
#. vpzXL
-#: cui/uiconfig/ui/possizetabpage.ui:524
+#: cui/uiconfig/ui/possizetabpage.ui:479
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "Prispôsobiť ší_rku na text"
-#. zZUic
-#: cui/uiconfig/ui/possizetabpage.ui:534
-msgctxt "possizetabpage|extended_tip|TSB_AUTOGROW_WIDTH"
-msgid "Expands the width of the object to the width of the text, if the object is smaller than the text."
-msgstr "Ak je objekt menší ako text, rozšíri šírku objektu na šírku textu."
-
#. XPXA3
-#: cui/uiconfig/ui/possizetabpage.ui:546
+#: cui/uiconfig/ui/possizetabpage.ui:496
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "Prispôsobiť _výšku na text"
-#. EoEoC
-#: cui/uiconfig/ui/possizetabpage.ui:556
-msgctxt "possizetabpage|extended_tip|TSB_AUTOGROW_HEIGHT"
-msgid "Expands the height of the object to the height of the text, if the object is smaller than the text."
-msgstr "Rozšíri výšku objektu na výšku textu, ak je objekt menší ako text."
-
#. A4B3x
-#: cui/uiconfig/ui/possizetabpage.ui:574
+#: cui/uiconfig/ui/possizetabpage.ui:519
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Prispôsobiť"
-#. 5AEGM
-#: cui/uiconfig/ui/possizetabpage.ui:597
-msgctxt "possizetabpage|extended_tip|PositionAndSize"
-msgid "Resizes or moves the selected object."
-msgstr "Zmení veľkosť alebo presunie vybraný objekt."
-
#. BydCX
#: cui/uiconfig/ui/posterdialog.ui:15
msgctxt "posterdialog|PosterDialog"
msgid "Posterize"
msgstr "Posterizovať"
-#. ySBCG
-#: cui/uiconfig/ui/posterdialog.ui:146
-msgctxt "posterdialog|extended_tip|value"
-msgid "Specifies the number of colors to which the image is to be reduced."
-msgstr "Určuje počet, na ktorý sa má zmenšiť počet farieb obrázka."
-
#. 2ncug
-#: cui/uiconfig/ui/posterdialog.ui:159
+#: cui/uiconfig/ui/posterdialog.ui:157
msgctxt "posterdialog|label2"
msgid "Poster colors:"
msgstr "Farby posterizácie:"
#. 3iZDQ
-#: cui/uiconfig/ui/posterdialog.ui:183
+#: cui/uiconfig/ui/posterdialog.ui:181
msgctxt "posterdialog|label1"
msgid "Parameters"
msgstr "Parametre"
-#. DoLFC
-#: cui/uiconfig/ui/posterdialog.ui:208
-msgctxt "posterdialog|extended_tip|PosterDialog"
-msgid "Opens a dialog to determine the number of poster colors."
-msgstr "Otvorí dialógové okno na určenie počtu farieb posterizácie."
-
#. YodDB
-#: cui/uiconfig/ui/qrcodegen.ui:14
+#: cui/uiconfig/ui/qrcodegen.ui:15
msgctxt "qrcodegen|QrCodeGenDialog"
msgid "QR Code Generator"
msgstr "Generátor QR kódu"
#. CCQhf
-#: cui/uiconfig/ui/qrcodegen.ui:116
+#: cui/uiconfig/ui/qrcodegen.ui:117
msgctxt "qrcodegen|edit_name"
msgid "www.libreoffice.org"
msgstr "sk.libreoffice.org"
-#. B4bcB
-#: cui/uiconfig/ui/qrcodegen.ui:119
-msgctxt "qr text"
-msgid "The text from which to generate the QR code."
-msgstr "Text, z ktorého sa má vygenerovať QR kód."
-
#. PFE57
#. Text to be stored in the QR
-#: cui/uiconfig/ui/qrcodegen.ui:133
+#: cui/uiconfig/ui/qrcodegen.ui:129
msgctxt "qrcodegen|label_text"
msgid "URL/Text :"
msgstr "URL/Text:"
#. HYC7f
#. Set Border around QR
-#: cui/uiconfig/ui/qrcodegen.ui:148
+#: cui/uiconfig/ui/qrcodegen.ui:144
msgctxt "qrcodegen|label_border"
msgid "Border :"
msgstr "Orámovanie:"
#. i2kkj
#. Error Correction Level of QR code
-#: cui/uiconfig/ui/qrcodegen.ui:168
+#: cui/uiconfig/ui/qrcodegen.ui:164
msgctxt "qrcodegen|label_ecc"
msgid "Error Correction:"
msgstr "Oprava chýb:"
-#. ecSS4
-#: cui/uiconfig/ui/qrcodegen.ui:199
-msgctxt "edit border"
-msgid "The width in dots of the border surrounding the QR code."
-msgstr "Šírka okraja okolo QR kódu b bodoch."
-
#. vUJPT
-#: cui/uiconfig/ui/qrcodegen.ui:215
+#: cui/uiconfig/ui/qrcodegen.ui:203
msgctxt "qrcodegen|ErrorCorrection"
msgid "Low"
msgstr "Nízka"
-#. GeYR9
-#: cui/uiconfig/ui/qrcodegen.ui:228
-msgctxt "button_low"
-msgid "7% of codewords can be restored."
-msgstr "Možno obnoviť 7% kódových slov."
-
#. 2gaf5
-#: cui/uiconfig/ui/qrcodegen.ui:239
+#: cui/uiconfig/ui/qrcodegen.ui:219
msgctxt "qrcodegen|ErrorCorrection"
msgid "Medium"
msgstr "Stredná"
-#. 3A5XB
-#: cui/uiconfig/ui/qrcodegen.ui:253
-msgctxt "button_medium"
-msgid "15% of codewords can be restored."
-msgstr "Možno obnoviť 15% kódových slov."
-
#. GBf3R
-#: cui/uiconfig/ui/qrcodegen.ui:264
+#: cui/uiconfig/ui/qrcodegen.ui:236
msgctxt "qrcodegen|ErrorCorrection"
msgid "Quartile"
msgstr "Kvartil"
-#. x4g64
-#: cui/uiconfig/ui/qrcodegen.ui:278
-msgctxt "button_quartile"
-msgid "25% of codewords can be restored."
-msgstr "Možno obnoviť 25% kódových slov."
-
#. WS3ER
-#: cui/uiconfig/ui/qrcodegen.ui:289
+#: cui/uiconfig/ui/qrcodegen.ui:253
msgctxt "qrcodegen|ErrorCorrection"
msgid "High"
msgstr "Vysoká"
-#. A2TRN
-#: cui/uiconfig/ui/qrcodegen.ui:303
-msgctxt "button_high"
-msgid "30% of codewords can be restored."
-msgstr "Možno obnoviť 30% kódových slov."
-
#. VCCGD
-#: cui/uiconfig/ui/qrcodegen.ui:326
+#: cui/uiconfig/ui/qrcodegen.ui:282
msgctxt "qrcodegen|QR Code Properties"
msgid "Options"
msgstr "Možnosti"
-#. fj4HR
-#: cui/uiconfig/ui/qrcodegen.ui:357
-msgctxt "qr code dialog title"
-msgid "Generate QR Code for any text or URL."
-msgstr "Vygenerovať QR kód pre akýkoľvek text alebo URL."
-
#. 3HNDZ
#: cui/uiconfig/ui/querychangelineenddialog.ui:7
msgctxt "querychangelineenddialog|AskChangeLineEndDialog"
@@ -18493,84 +13948,48 @@ msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Pozícia _Y:"
-#. EiCXd
-#: cui/uiconfig/ui/rotationtabpage.ui:89
-msgctxt "rotationtabpage|extended_tip|MTR_FLD_POS_X"
-msgid "Enter the horizontal distance from the left edge of the page to the pivot point."
-msgstr "Zadajte vodorovnú vzdialenosť od ľavého okraja strany k vzťažnému bodu."
-
-#. 3gEFD
-#: cui/uiconfig/ui/rotationtabpage.ui:107
-msgctxt "rotationtabpage|extended_tip|MTR_FLD_POS_Y"
-msgid "Enter the vertical distance from the top edge of the page to the pivot point."
-msgstr "Zadajte vertikálnu vzdialenosť od horného okraja strany k referenčnému bodu."
+#. GpHXD
+#: cui/uiconfig/ui/rotationtabpage.ui:123
+msgctxt "rotationtabpage|FT_POSPRESETS"
+msgid "_Default settings:"
+msgstr "_Predvolené nastavenia:"
#. 6tTrN
-#: cui/uiconfig/ui/rotationtabpage.ui:147
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Bod rotácie"
-#. Kpeuu
-#: cui/uiconfig/ui/rotationtabpage.ui:150
-msgctxt "rotationtabpage|extended_tip|CTL_RECT"
-msgid "Click where you want to place the pivot point."
-msgstr "Kliknite na miesto, kam chcete umiestniť vzťažný bod."
-
-#. GpHXD
-#: cui/uiconfig/ui/rotationtabpage.ui:168
-msgctxt "rotationtabpage|FT_POSPRESETS"
-msgid "_Default settings:"
-msgstr "_Predvolené nastavenia:"
-
#. mNM6u
-#: cui/uiconfig/ui/rotationtabpage.ui:193
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Vzťažný bod"
#. w4tmF
-#: cui/uiconfig/ui/rotationtabpage.ui:235
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Uhol:"
-#. 2nqLU
-#: cui/uiconfig/ui/rotationtabpage.ui:256
-msgctxt "rotationtabpage|extended_tip|NF_ANGLE"
-msgid "Enter the number of degrees that you want to rotate the selected object."
-msgstr "Zadajte počet stupňov, o ktoré chcete otočiť vybraný objekt."
-
#. G7xCD
-#: cui/uiconfig/ui/rotationtabpage.ui:284
+#: cui/uiconfig/ui/rotationtabpage.ui:264
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Rotačný uhol"
-#. RCbZK
-#: cui/uiconfig/ui/rotationtabpage.ui:288
-msgctxt "rotationtabpage|extended_tip|CTL_ANGLE"
-msgid "Click to specify the rotation angle in multiples of 45 degrees."
-msgstr "Kliknite, aby ste určili uhol natočenia v násobkoch 45 stupňov."
-
#. LrED9
-#: cui/uiconfig/ui/rotationtabpage.ui:302
+#: cui/uiconfig/ui/rotationtabpage.ui:277
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "_Predvolené nastavenia:"
#. Hg259
-#: cui/uiconfig/ui/rotationtabpage.ui:327
+#: cui/uiconfig/ui/rotationtabpage.ui:302
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Rotačný uhol"
-#. ByBjr
-#: cui/uiconfig/ui/rotationtabpage.ui:343
-msgctxt "rotationtabpage|extended_tip|Rotation"
-msgid "Rotates the selected object."
-msgstr "Otočí vybraný objekt."
-
#. r67NG
#: cui/uiconfig/ui/screenshotannotationdialog.ui:8
msgctxt "screenshotannotationdialog|ScreenshotAnnotationDialog"
@@ -18602,77 +14021,41 @@ msgid "%MACROLANG Macros"
msgstr "Makrá %MACROLANG"
#. FrF4C
-#: cui/uiconfig/ui/scriptorganizer.ui:34
+#: cui/uiconfig/ui/scriptorganizer.ui:37
msgctxt "scriptorganizer|run"
msgid "Run"
msgstr "Spustiť"
#. nVYFP
-#: cui/uiconfig/ui/scriptorganizer.ui:161
+#: cui/uiconfig/ui/scriptorganizer.ui:165
msgctxt "scriptorganizer|create"
msgid "Create..."
msgstr "Vytvoriť..."
-#. xsmtf
-#: cui/uiconfig/ui/scriptorganizer.ui:167
-msgctxt "scriptorganizer|extended_tip|create"
-msgid "Creates a new script."
-msgstr "Vytvorí nový skript."
-
-#. pUCto
-#: cui/uiconfig/ui/scriptorganizer.ui:186
-msgctxt "scriptorganizer|extended_tip|edit"
-msgid "Opens the default script editor for your operating system."
-msgstr "Otvorí predvolený editor skriptov pre váš operačný systém."
-
#. 8iqip
-#: cui/uiconfig/ui/scriptorganizer.ui:198
+#: cui/uiconfig/ui/scriptorganizer.ui:192
msgctxt "scriptorganizer|rename"
msgid "Rename..."
msgstr "Premenovať..."
-#. D6WNC
-#: cui/uiconfig/ui/scriptorganizer.ui:204
-msgctxt "scriptorganizer|extended_tip|rename"
-msgid "Opens a dialog where you can change the name of the selected script."
-msgstr "Otvorí dialógové okno, v ktorom môžete zmeniť názov vybraného skriptu."
-
#. vvvff
-#: cui/uiconfig/ui/scriptorganizer.ui:216
+#: cui/uiconfig/ui/scriptorganizer.ui:205
msgctxt "scriptorganizer|delete"
msgid "Delete..."
msgstr "Odstrániť..."
-#. wZgUF
-#: cui/uiconfig/ui/scriptorganizer.ui:222
-msgctxt "scriptorganizer|extended_tip|delete"
-msgid "Prompts you to delete the selected script."
-msgstr "Zobrazí výzvu na odstránenie vybraného skriptu."
-
#. fQdom
-#: cui/uiconfig/ui/scriptorganizer.ui:246
+#: cui/uiconfig/ui/scriptorganizer.ui:230
msgctxt "scriptorganizer|macrosft"
msgid "Macros"
msgstr "Makrá"
-#. vX8VC
-#: cui/uiconfig/ui/scriptorganizer.ui:271
-msgctxt "scriptorganizer|extended_tip|ScriptOrganizerDialog"
-msgid "Select a macro or script from My Macros, %PRODUCTNAME Macros, or an open document. To view the available macros or scripts, double-click an entry."
-msgstr "Vyberte makro alebo skript z priečinka Moje makrá, Makrá %PRODUCTNAME alebo z otvoreného dokumentu. Ak chcete zobraziť dostupné makrá alebo skripty, dvakrát kliknite na položku."
-
#. U3sDy
#: cui/uiconfig/ui/searchattrdialog.ui:22
msgctxt "searchattrdialog|SearchAttrDialog"
msgid "Attributes"
msgstr "Atribúty"
-#. C5Fet
-#: cui/uiconfig/ui/searchattrdialog.ui:155
-msgctxt "searchattrdialog|extended_tip|SearchAttrDialog"
-msgid "Choose the text attributes that you want to search for. For example, if you search for the Font attribute, all instances of text that do not use the default font are found. All text that has a directly coded font attribute, and all text where a style switches the font attribute, are found."
-msgstr "Vyberte textové atribúty, ktoré chcete vyhľadať. Napríklad ak hľadáte atribút Písmo, nájdu sa všetky inštancie textu, ktoré nepoužívajú predvolené písmo. Nájde sa všetok text, ktorý má priamo určený atribút písma, ako aj všetok text, pri ktorom štýl mení atribút písma."
-
#. 2nKNE
#: cui/uiconfig/ui/searchformatdialog.ui:8
msgctxt "searchformatdialog|SearchFormatDialog"
@@ -18745,252 +14128,126 @@ msgctxt "securityoptionsdialog|savesenddocs"
msgid "_When saving or sending"
msgstr "Pri _ukladaní alebo posielaní"
-#. nPLGw
-#: cui/uiconfig/ui/securityoptionsdialog.ui:117
-msgctxt "extended_tip|savesenddocs"
-msgid "Select to see a warning dialog when you try to save or send a document that contains recorded changes, versions, or comments."
-msgstr "Zvoľte, ak chcete pri ukladaní alebo odosielaní dokumentu zobraziť upozornenie, že dokument obsahuje zaznamenané zmeny, verzie alebo komentáre."
-
#. 6f6yg
-#: cui/uiconfig/ui/securityoptionsdialog.ui:128
+#: cui/uiconfig/ui/securityoptionsdialog.ui:123
msgctxt "securityoptionsdialog|whensigning"
msgid "When _signing"
msgstr "Pri _podpisovaní"
-#. zPKQY
-#: cui/uiconfig/ui/securityoptionsdialog.ui:137
-msgctxt "extended_tip|whensigning"
-msgid "Select to see a warning dialog when you try to sign a document that contains recorded changes, versions, fields, references to other sources (for example linked sections or linked pictures), or comments."
-msgstr "Zvoľte, ak chcete pri podpisovaní zobraziť upozornenie, že dokument obsahuje zaznamenané zmeny, verzie, polia, odkazy na ďalšie zdroje (napríklad odkazom pripojené oblasti alebo obrázky) alebo komentáre."
-
#. D6Lsv
-#: cui/uiconfig/ui/securityoptionsdialog.ui:148
+#: cui/uiconfig/ui/securityoptionsdialog.ui:138
msgctxt "securityoptionsdialog|whenprinting"
msgid "When _printing"
msgstr "Pri _tlači"
-#. fYdUd
-#: cui/uiconfig/ui/securityoptionsdialog.ui:157
-msgctxt "extended_tip|whenprinting"
-msgid "Select to see a warning dialog when you try to print a document that contains recorded changes or comments."
-msgstr "Zvoľte, ak chcete pri tlači zobraziť upozornenie, že dokument obsahuje zaznamenané zmeny a komentáre."
-
#. 8BnPF
-#: cui/uiconfig/ui/securityoptionsdialog.ui:168
+#: cui/uiconfig/ui/securityoptionsdialog.ui:153
msgctxt "securityoptionsdialog|whenpdf"
msgid "When creating PDF _files"
msgstr "Pri vytváraní PD_F súborov"
-#. jVm3C
-#: cui/uiconfig/ui/securityoptionsdialog.ui:177
-msgctxt "extended_tip|whenpdf"
-msgid "Select to see a warning dialog when you try to export a document to PDF format that displays recorded changes in Writer, or that displays comments."
-msgstr "Zvoľte, ak chcete pri exporte dokumentu do formátu PDF zobraziť upozornenie, že sú zobrazené zaznamenané zmeny alebo komentáre."
-
#. pfCsh
-#: cui/uiconfig/ui/securityoptionsdialog.ui:249
+#: cui/uiconfig/ui/securityoptionsdialog.ui:229
msgctxt "securityoptionsdialog|label3"
msgid "Warn if document contains recorded changes, versions, hidden information or notes:"
msgstr "Upozorniť v prípade, že dokument obsahuje zaznamenané zmeny, verzie, skryté informácie alebo poznámky:"
#. 3yxBp
-#: cui/uiconfig/ui/securityoptionsdialog.ui:265
+#: cui/uiconfig/ui/securityoptionsdialog.ui:245
msgctxt "securityoptionsdialog|label1"
msgid "Security Warnings"
msgstr "Bezpečnostné upozornenia"
#. 8Vywd
-#: cui/uiconfig/ui/securityoptionsdialog.ui:299
+#: cui/uiconfig/ui/securityoptionsdialog.ui:279
msgctxt "securityoptionsdialog|removepersonal"
msgid "_Remove personal information on saving"
msgstr "_Odstrániť osobné informácie pri ukladaní"
-#. kjZqN
-#: cui/uiconfig/ui/securityoptionsdialog.ui:309
-msgctxt "extended_tip|removepersonal"
-msgid "Select to always remove user data from the file properties. If this option is not selected, you can still remove the personal information for the current document with the Reset Properties button on File - Properties - General."
-msgstr "Zvoľte, ak chcete z vlastností súboru vždy odstrániť údaje o používateľovi. Ak táto voľba nie je vybraná, stále môžete osobné informácie aktuálneho dokumentu odstrániť pomocou tlačidla Vlastnosti nastaviť na pôvodné v dialógovom okne Súbor - Vlastnosti - Všeobecné."
-
#. y5FFs
-#: cui/uiconfig/ui/securityoptionsdialog.ui:320
+#: cui/uiconfig/ui/securityoptionsdialog.ui:295
msgctxt "securityoptionsdialog|password"
msgid "Recommend password protection on sa_ving"
msgstr "Odporučiť ochranu heslom pri _ukladaní"
-#. kWgcV
-#: cui/uiconfig/ui/securityoptionsdialog.ui:330
-msgctxt "extended_tip|password"
-msgid "Select to always enable the Save with password option in the file save dialogs. Deselect the option to save files by default without password."
-msgstr "Ak zaškrtnete toto pole, bude v dialógovom okne na uloženie súboru ako východisková zaškrtnutá možnosť Uložiť s heslom. Ak pole nie je zaškrtnuté, ukladajú sa súbory bez hesla."
-
#. i3F7P
-#: cui/uiconfig/ui/securityoptionsdialog.ui:341
+#: cui/uiconfig/ui/securityoptionsdialog.ui:311
msgctxt "securityoptionsdialog|ctrlclick"
msgid "Ctrl-click required _to open hyperlinks"
msgstr "Na otváranie _hypertextových odkazov požadovať Ctrl-klik"
-#. nxTdt
-#: cui/uiconfig/ui/securityoptionsdialog.ui:351
-msgctxt "extended_tip|ctrlclick"
-msgid "If enabled, you must hold down the Ctrl key while clicking a hyperlink to follow that link. If not enabled, a click opens the hyperlink."
-msgstr "Ak je pole zaškrtnuté, musíte pri kliknutí na hypertextové prepojenie podržať kláves Ctrl. Ak pole nie je zaškrtnuté, otvorí sa hypertextový odkaz po kliknutí."
-
#. Ubb9Q
-#: cui/uiconfig/ui/securityoptionsdialog.ui:362
+#: cui/uiconfig/ui/securityoptionsdialog.ui:327
msgctxt "securityoptionsdialog|blockuntrusted"
msgid "Block any links from documents not among the trusted locations (see Macro Security)"
msgstr "V dokumentoch blokovať všetky odkazy, ktoré nie sú uvedené v zozname dôveryhodných umiestnení (pozri Bezpečnosť makier)"
-#. Zm9kD
-#: cui/uiconfig/ui/securityoptionsdialog.ui:372
-msgctxt "extended_tip|blockuntrusted"
-msgid "Blocks the use of linked images by documents not in the trusted locations defined on the Trusted Sources tab of the Macro Security dialog."
-msgstr "Zablokuje použitie odkazovaných obrázkov v dokumentoch, ktoré sa nenachádzajú v dôveryhodných umiestneniach uvedených na karte Dôveryhodné zdroje v dialógovom okne Bezpečnosť makier (Nástroje - Možnosti - Bezpečnosť)."
-
#. vQGT6
-#: cui/uiconfig/ui/securityoptionsdialog.ui:438
+#: cui/uiconfig/ui/securityoptionsdialog.ui:398
msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Možnosti zabezpečenia"
-#. GENQg
-#: cui/uiconfig/ui/securityoptionsdialog.ui:470
-msgctxt "extended_tip|SecurityOptionsDialog"
-msgid "Set security related options and warnings about hidden information in documents."
-msgstr "Nastaví možnosti týkajúce sa bezpečnosti a upozorňovania na skryté informácie v dokumentoch."
-
#. md3EB
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
msgstr "Vybrať cesty"
-#. R45hT
-#: cui/uiconfig/ui/selectpathdialog.ui:42
-msgctxt "selectpathdialog|extended_tip|ok"
-msgid "Saves all changes and closes dialog."
-msgstr "Uloží všetky zmeny a zatvorí dialógové okno."
-
-#. 2rXGN
-#: cui/uiconfig/ui/selectpathdialog.ui:61
-msgctxt "selectpathdialog|extended_tip|cancel"
-msgid "Closes dialog and discards all changes."
-msgstr "Zatvorí dialógové okno a zruší všetky zmeny."
-
#. oN39A
-#: cui/uiconfig/ui/selectpathdialog.ui:127
+#: cui/uiconfig/ui/selectpathdialog.ui:117
msgctxt "selectpathdialog|add"
msgid "_Add..."
msgstr "Prid_ať..."
-#. dUWC3
-#: cui/uiconfig/ui/selectpathdialog.ui:134
-msgctxt "cui/ui/selectpathdialog/add"
-msgid "Opens the Select Path dialog to select another folder or the Open dialog to select another file."
-msgstr "Otvorí dialógové okno Vybrať cestu na výber iného priečinka alebo dialógové okno Otvoriť na výber iného súboru."
-
-#. WKcRy
-#: cui/uiconfig/ui/selectpathdialog.ui:153
-msgctxt "selectpathdialog|extended_tip|delete"
-msgid "Deletes the selected element or elements without requiring confirmation."
-msgstr "Vymaže vybraný prvok alebo prvky bez potreby potvrdenia."
-
-#. UADPU
-#: cui/uiconfig/ui/selectpathdialog.ui:201
-msgctxt "cui/ui/selectpathdialog/paths"
-msgid "Contains a list of the paths that have already been added. Mark the default path for new files."
-msgstr "Obsahuje zoznam už pridaných ciest. Označte predvolenú cestu pre nové súbory."
-
#. oADTt
-#: cui/uiconfig/ui/selectpathdialog.ui:220
+#: cui/uiconfig/ui/selectpathdialog.ui:195
msgctxt "selectpathdialog|label1"
msgid "Paths"
msgstr "Cesty"
#. UzFeh
-#: cui/uiconfig/ui/shadowtabpage.ui:45
+#: cui/uiconfig/ui/shadowtabpage.ui:40
msgctxt "shadowtabpage|TSB_SHOW_SHADOW"
msgid "_Use shadow"
msgstr "_Použiť tieň"
-#. 6bXyA
-#: cui/uiconfig/ui/shadowtabpage.ui:55
-msgctxt "shadowtabpage|extended_tip|TSB_SHOW_SHADOW"
-msgid "Adds a shadow to the selected drawing object."
-msgstr "Pridá tieň k vybranému objektu kreslenia."
-
-#. GGsRg
-#: cui/uiconfig/ui/shadowtabpage.ui:85
-msgctxt "shadowtabpage|extended_tip|MTR_SHADOW_TRANSPARENT"
-msgid "Enter a percentage from 0% (opaque) to 100% (transparent) to specify the transparency of the shadow."
-msgstr "Zadajte percento od 0% (nepriehľadné) do 100% (priehľadné), aby ste určili priehľadnosť tieňa."
-
-#. FEWDn
-#: cui/uiconfig/ui/shadowtabpage.ui:116
-msgctxt "shadowtabpage|extended_tip|MTR_FLD_DISTANCE"
-msgid "Enter the distance that you want the shadow to be offset from the selected object."
-msgstr "Zadajte vzdialenosť, o ktorú má byť tieň posunutý od vybraného objektu."
-
-#. 3PNWf
-#: cui/uiconfig/ui/shadowtabpage.ui:143
-msgctxt "shadowtabpage|extended_tip|CTL_POSITION"
-msgid "Click where you want to cast the shadow."
-msgstr "Kliknite na miesto, kam chcete vrhať tieň."
-
-#. BEyDS
-#: cui/uiconfig/ui/shadowtabpage.ui:169
-msgctxt "shadowtabpage|extended_tip|LB_SHADOW_COLOR"
-msgid "Select a color for the shadow."
-msgstr "Vyberte farbu tieňa."
-
#. 4BFuT
-#: cui/uiconfig/ui/shadowtabpage.ui:182
+#: cui/uiconfig/ui/shadowtabpage.ui:139
msgctxt "shadowtabpage|FT_DISTANCE"
msgid "_Distance:"
msgstr "_Vzdialenosť:"
#. 5ZBde
-#: cui/uiconfig/ui/shadowtabpage.ui:196
+#: cui/uiconfig/ui/shadowtabpage.ui:153
msgctxt "shadowtabpage|FT_SHADOW_COLOR"
msgid "_Color:"
msgstr "_Farba:"
-#. kGyDZ
-#: cui/uiconfig/ui/shadowtabpage.ui:210
-msgctxt "shadowtabpage|FT_SHADOW_BLUR"
-msgid "_Blur:"
-msgstr "_Rozostrenie:"
-
#. DMAGP
-#: cui/uiconfig/ui/shadowtabpage.ui:224
+#: cui/uiconfig/ui/shadowtabpage.ui:167
msgctxt "shadowtabpage|FT_TRANSPARENT"
msgid "_Transparency:"
msgstr "Priehľadno_sť:"
#. JsPjd
-#: cui/uiconfig/ui/shadowtabpage.ui:254
+#: cui/uiconfig/ui/shadowtabpage.ui:197
msgctxt "shadowtabpage|label"
msgid "Properties"
msgstr "Vlastnosti"
#. SYFAn
-#: cui/uiconfig/ui/shadowtabpage.ui:303
+#: cui/uiconfig/ui/shadowtabpage.ui:246
msgctxt "shadowtabpage|CTL_COLOR_PREVIEW-atkobject"
msgid "Example"
msgstr "Príklad"
#. HcTUC
-#: cui/uiconfig/ui/shadowtabpage.ui:325
+#: cui/uiconfig/ui/shadowtabpage.ui:268
msgctxt "shadowtabpage|label"
msgid "Preview"
msgstr "Náhľad"
-#. nxBPj
-#: cui/uiconfig/ui/shadowtabpage.ui:340
-msgctxt "shadowtabpage|extended_tip|ShadowTabPage"
-msgid "Add a shadow to the selected drawing object, and define the properties of the shadow."
-msgstr "Pridajte tieň do vybraného nakresleného objektu a definujte vlastnosti tieňa."
-
#. C7Ct3
#: cui/uiconfig/ui/showcoldialog.ui:16
msgctxt "showcoldialog|ShowColDialog"
@@ -19015,101 +14272,65 @@ msgctxt "signatureline|edit_name"
msgid "John Doe"
msgstr "Ján Novák"
-#. F8khU
-#: cui/uiconfig/ui/signatureline.ui:114
-msgctxt "signatureline|extended_tip|edit_name"
-msgid "Enter your name as signer of the document. Your name will be inserted above the signature horizontal line."
-msgstr "Ako podpisovateľ dokumentu zadajte svoje meno. Vaše meno bude vložené nad vodorovnú čiaru podpisu."
-
#. bMy9F
-#: cui/uiconfig/ui/signatureline.ui:129
+#: cui/uiconfig/ui/signatureline.ui:124
msgctxt "signatureline|edit_title"
msgid "Director"
msgstr "riaditeľ"
-#. BfTFx
-#: cui/uiconfig/ui/signatureline.ui:132
-msgctxt "signatureline|extended_tip|edit_title"
-msgid "Enter the title of the signer. The title is displayed in the signature line graphic box."
-msgstr "Zadajte funkciu podpisujúceho. Funkcia sa zobrazuje v grafickom poli podpisového riadka."
-
#. 3SKcg
-#: cui/uiconfig/ui/signatureline.ui:147
+#: cui/uiconfig/ui/signatureline.ui:137
msgctxt "signatureline|edit_email"
msgid "john.doe@example.org"
msgstr "jan.novak@example.org"
-#. DF2wM
-#: cui/uiconfig/ui/signatureline.ui:150
-msgctxt "signatureline|extended_tip|edit_email"
-msgid "Enter the email of the signer. The email is not displayed in the signature line graphic box, but is used for the digital signature."
-msgstr "Zadajte e-mail podpisujúceho. E-mail sa nezobrazuje v grafickom poli riadku podpisu, ale slúži na digitálny podpis."
-
#. As8u6
#. Suggested Signer Name
-#: cui/uiconfig/ui/signatureline.ui:164
+#: cui/uiconfig/ui/signatureline.ui:149
msgctxt "signatureline|label_name"
msgid "Name:"
msgstr "Meno:"
#. dMWtK
#. Suggested Signer Title
-#: cui/uiconfig/ui/signatureline.ui:178
+#: cui/uiconfig/ui/signatureline.ui:163
msgctxt "signatureline|label_title"
msgid "Title:"
msgstr "Pozícia:"
#. 48kX8
#. Suggested Signer email
-#: cui/uiconfig/ui/signatureline.ui:192
+#: cui/uiconfig/ui/signatureline.ui:177
msgctxt "signatureline|label_email"
msgid "Email:"
msgstr "E-mail:"
#. 4C6SW
-#: cui/uiconfig/ui/signatureline.ui:209
+#: cui/uiconfig/ui/signatureline.ui:194
msgctxt "signatureline|label_suggestedsigner"
msgid "Suggested Signer"
msgstr "Navrhnutý podpisujúci"
#. 4R5Hz
-#: cui/uiconfig/ui/signatureline.ui:243
+#: cui/uiconfig/ui/signatureline.ui:228
msgctxt "signatureline|checkbox_can_add_comments"
msgid "Signer can add comments"
msgstr "Podpisujúci môže pridávať komentáre"
-#. Gonpf
-#: cui/uiconfig/ui/signatureline.ui:252
-msgctxt "signatureline|extended_tip|checkbox_can_add_comments"
-msgid "Enable signer to insert comments in the Sign Signature Line dialog at time of signature."
-msgstr "Povoľte podpisujúcemu, aby mohol v čase podpisu vkladať komentáre do dialógového okna Podpísať podpisový riadok podpisu."
-
#. BPMGM
-#: cui/uiconfig/ui/signatureline.ui:263
+#: cui/uiconfig/ui/signatureline.ui:243
msgctxt "signatureline|checkbox_show_sign_date"
msgid "Show sign date in signature line"
msgstr "Na riadku podpisu zobraziť dátum podpisu"
-#. QnaFT
-#: cui/uiconfig/ui/signatureline.ui:272
-msgctxt "signatureline|extended_tip|checkbox_show_sign_date"
-msgid "Mark this checkbox to display the date of the signature, at the time when the document is digitally signed."
-msgstr "Zaškrtnutím tohto políčka zobrazíte dátum podpisu v čase, keď bude dokument digitálne podpísaný."
-
#. fSsbq
-#: cui/uiconfig/ui/signatureline.ui:286
+#: cui/uiconfig/ui/signatureline.ui:261
msgctxt "signatureline|label_instructions"
msgid "Instructions to the signer:"
msgstr "Pokyny pre podpisujúceho:"
-#. AdqtN
-#: cui/uiconfig/ui/signatureline.ui:311
-msgctxt "signatureline|extended_tip|edit_instructions"
-msgid "Insert instructions for the signer. The instructions appears in the Sign Signature Line dialog box, at the time of signature."
-msgstr "Vložte pokyny pre podpisujúceho. Pokyny sa zobrazia v čase podpisovania v dialógovom okne Podpísať podpisový riadok."
-
#. jqCPH
-#: cui/uiconfig/ui/signatureline.ui:330
+#: cui/uiconfig/ui/signatureline.ui:300
msgctxt "signatureline|label_more"
msgid "More"
msgstr "Viac"
@@ -19121,106 +14342,82 @@ msgid "Sign Signature Line"
msgstr "Podpísať podpisový riadok"
#. 8JC4v
-#: cui/uiconfig/ui/signsignatureline.ui:53
+#: cui/uiconfig/ui/signsignatureline.ui:56
msgctxt "signsignatureline|ok"
msgid "Sign"
msgstr "Podpísať"
#. yE7r7
-#: cui/uiconfig/ui/signsignatureline.ui:110
+#: cui/uiconfig/ui/signsignatureline.ui:113
msgctxt "signsignatureline|edit_name"
msgid "Type your name here"
msgstr "Sem zadajte svoje meno"
-#. XNvhh
-#: cui/uiconfig/ui/signsignatureline.ui:113
-msgctxt "signsignatureline|extended_tip|edit_name"
-msgid "Enter your name as signer of the document. Your name will be inserted above the signature horizontal line."
-msgstr "Ako podpisovateľ dokumentu zadajte svoje meno. Vaše meno bude vložené nad vodorovnú čiaru podpisu."
-
#. dgTR9
#. Name of the signer
-#: cui/uiconfig/ui/signsignatureline.ui:127
+#: cui/uiconfig/ui/signsignatureline.ui:125
msgctxt "signsignatureline|label_name"
msgid "Your Name:"
msgstr "Vaše meno:"
#. 5dFsN
#. Certificate to be used for signing
-#: cui/uiconfig/ui/signsignatureline.ui:141
+#: cui/uiconfig/ui/signsignatureline.ui:139
msgctxt "signsignatureline|label_certificate"
msgid "Certificate:"
msgstr "Certifikát:"
#. SNBEH
-#: cui/uiconfig/ui/signsignatureline.ui:152
+#: cui/uiconfig/ui/signsignatureline.ui:150
msgctxt "signsignatureline|btn_select_certificate"
msgid "Select Certificate"
msgstr "Vybrať certifikát"
-#. uJ9EC
-#: cui/uiconfig/ui/signsignatureline.ui:158
-msgctxt "signsignatureline|extended_tip|btn_select_certificate"
-msgid "Click on the Select Certificate button to open the Select Certificate dialog box, where your certificates are listed. Select the certificate suitable for signing the document."
-msgstr "Kliknutím na tlačidlo Vybrať certifikát otvoríte dialógové okno Vybrať certifikát, kde sú uvedené vaše certifikáty. Vyberte certifikát vhodný na podpísanie dokumentu."
-
#. 3vSAS
#. Name of the signer
-#: cui/uiconfig/ui/signsignatureline.ui:173
+#: cui/uiconfig/ui/signsignatureline.ui:166
msgctxt "signsignatureline|label_name"
msgid "or"
msgstr "alebo"
#. XhtMy
-#: cui/uiconfig/ui/signsignatureline.ui:182
+#: cui/uiconfig/ui/signsignatureline.ui:175
msgctxt "signsignatureline|btn_load_image"
msgid "Use Signature Image"
msgstr "Použiť obraz podpisu"
#. SVjkF
-#: cui/uiconfig/ui/signsignatureline.ui:197
+#: cui/uiconfig/ui/signsignatureline.ui:190
msgctxt "signsignatureline|btn_clear_image"
msgid "Clear"
msgstr "Zmazať"
#. wZRg8
-#: cui/uiconfig/ui/signsignatureline.ui:213
+#: cui/uiconfig/ui/signsignatureline.ui:206
msgctxt "signsignatureline|label_image_dimensions"
msgid "Best image size: 600 x 100 px"
msgstr "Ideálna veľkosť obrázku: 600 x 100 pixelov"
#. xUxqT
-#: cui/uiconfig/ui/signsignatureline.ui:244
+#: cui/uiconfig/ui/signsignatureline.ui:237
msgctxt "signsignatureline|label_sign"
msgid "Sign"
msgstr "Podpísať"
#. ViryY
-#: cui/uiconfig/ui/signsignatureline.ui:281
+#: cui/uiconfig/ui/signsignatureline.ui:274
msgctxt "signsignatureline|label_add_comment"
msgid "Add comment:"
msgstr "Pridať komentár:"
-#. CJAg3
-#: cui/uiconfig/ui/signsignatureline.ui:306
-msgctxt "signsignatureline|extended_tip|edit_comment"
-msgid "Enter comments about the signature. The comments are displayed in the Description field of the certificate."
-msgstr "Zadajte komentáre k podpisu. Komentáre sa zobrazujú v poli Popis certifikátu."
-
#. k4PqT
-#: cui/uiconfig/ui/signsignatureline.ui:322
+#: cui/uiconfig/ui/signsignatureline.ui:310
msgctxt "signsignatureline|label_hint"
msgid "Instructions from the document creator:"
msgstr "Pokyny od autora dokumentu:"
-#. J8MFU
-#: cui/uiconfig/ui/signsignatureline.ui:343
-msgctxt "signsignatureline|extended_tip|label_hint_text"
-msgid "This area displays the instructions entered by the document creator when adding the signature line."
-msgstr "Táto oblasť zobrazuje pokyny zadané tvorcom dokumentu pri pridávaní riadku podpisu."
-
#. kVoG9
-#: cui/uiconfig/ui/signsignatureline.ui:360
+#: cui/uiconfig/ui/signsignatureline.ui:343
msgctxt "signsignatureline|label_more"
msgid "More"
msgstr "Viac"
@@ -19255,174 +14452,84 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "S_kombinovať"
-#. FBUtw
-#: cui/uiconfig/ui/similaritysearchdialog.ui:157
-msgctxt "similaritysearchdialog|extended_tip|relaxbox"
-msgid "Searches for a term that matches any combination of the similarity search settings."
-msgstr "Vyhľadá výraz, ktorý sa zhoduje s ľubovoľnou kombináciou nastavení vyhľadávania podobnosti."
-
-#. ncAU3
-#: cui/uiconfig/ui/similaritysearchdialog.ui:174
-msgctxt "similaritysearchdialog|extended_tip|otherfld"
-msgid "Enter the number of characters in the search term that can be exchanged."
-msgstr "Zadajte počet znakov v hľadanom výraze, ktoré je možné vymeniť."
-
-#. K5dwk
-#: cui/uiconfig/ui/similaritysearchdialog.ui:190
-msgctxt "similaritysearchdialog|extended_tip|longerfld"
-msgid "Enter the maximum number of characters by which a word can exceed the number of characters in the search term."
-msgstr "Zadajte maximálny počet znakov, o ktoré môže slovo presiahnuť počet znakov vo hľadanom výraze."
-
-#. iK8Hr
-#: cui/uiconfig/ui/similaritysearchdialog.ui:206
-msgctxt "similaritysearchdialog|extended_tip|shorterfld"
-msgid "Enter the number of characters by which a word can be shorter than the search term."
-msgstr "Zadajte počet znakov, o ktoré môže byť slovo kratšie ako hľadaný výraz."
-
-#. TBNnx
-#: cui/uiconfig/ui/similaritysearchdialog.ui:234
-msgctxt "similaritysearchdialog|extended_tip|SimilaritySearchDialog"
-msgid "Find terms that are similar to the Find text. Select this checkbox, and then click the Similarities button to define the similarity options."
-msgstr "Nájde výrazy podobné textu Nájsť. Zaškrtnite toto pole a potom kliknutím na tlačidlo Podobnosti definujte možnosti podobnosti."
-
#. VNDAt
#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#. 2e5NJ
-#: cui/uiconfig/ui/slantcornertabpage.ui:90
-msgctxt "slantcornertabpage|extended_tip|controlx1"
-msgid "Enter the X coordinate of the control point 1"
-msgstr ""
-
#. CkJx5
-#: cui/uiconfig/ui/slantcornertabpage.ui:115
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#. ozMHB
-#: cui/uiconfig/ui/slantcornertabpage.ui:135
-msgctxt "slantcornertabpage|extended_tip|controly1"
-msgid "Enter the Y coordinate of the control point 1"
-msgstr ""
-
#. gpixF
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "Ovládací bod 1"
#. krHiw
-#: cui/uiconfig/ui/slantcornertabpage.ui:193
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "Polome_r:"
-#. v8XnA
-#: cui/uiconfig/ui/slantcornertabpage.ui:212
-msgctxt "slantcornertabpage|extended_tip|MTR_FLD_RADIUS"
-msgid "Enter the radius of the circle that you want to use to round the corners."
-msgstr "Zadajte polomer kruhu, ktorý chcete použiť na zaoblenie rohov."
-
#. WVN9Y
-#: cui/uiconfig/ui/slantcornertabpage.ui:229
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Polomer rohu"
#. oVtU3
-#: cui/uiconfig/ui/slantcornertabpage.ui:263
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Uhol:"
-#. sUHCF
-#: cui/uiconfig/ui/slantcornertabpage.ui:282
-msgctxt "slantcornertabpage|extended_tip|MTR_FLD_ANGLE"
-msgid "Enter the angle of the slant axis."
-msgstr "Zadajte uhol šikmej osi."
-
#. ATpxT
-#: cui/uiconfig/ui/slantcornertabpage.ui:299
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Skosenie"
#. mtFaZ
-#: cui/uiconfig/ui/slantcornertabpage.ui:340
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#. nvSvt
-#: cui/uiconfig/ui/slantcornertabpage.ui:360
-msgctxt "slantcornertabpage|extended_tip|controlx2"
-msgid "Enter the X coordinate of the control point 2"
-msgstr ""
-
#. 3EL7K
-#: cui/uiconfig/ui/slantcornertabpage.ui:385
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#. zAyqa
-#: cui/uiconfig/ui/slantcornertabpage.ui:405
-msgctxt "slantcornertabpage|extended_tip|controly2"
-msgid "Enter the Y coordinate of the control point 2"
-msgstr ""
-
#. FzWQs
-#: cui/uiconfig/ui/slantcornertabpage.ui:429
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Ovládací bod 2"
-#. hQu5B
-#: cui/uiconfig/ui/slantcornertabpage.ui:444
-msgctxt "slantcornertabpage|extended_tip|SlantAndCornerRadius"
-msgid "Slants the selected object, or rounds the corners of a rectangular object."
-msgstr "Nakloní vybraný objekt alebo zaoblí rohy obdĺžnikového objektu."
-
#. 6HGgg
#: cui/uiconfig/ui/smarttagoptionspage.ui:34
msgctxt "smarttagoptionspage|main"
msgid "Label text with smart tags"
msgstr "Text označiť inteligentnými značkami"
-#. u2yey
-#: cui/uiconfig/ui/smarttagoptionspage.ui:43
-msgctxt "smarttagoptionspage|extended_tip|main"
-msgid "Enables Smart Tags to be evaluated and shown in your text document."
-msgstr "Umožňuje vyhodnotenie a zobrazenie inteligentných značiek v textovom dokumente."
-
#. vfc7b
-#: cui/uiconfig/ui/smarttagoptionspage.ui:77
+#: cui/uiconfig/ui/smarttagoptionspage.ui:72
msgctxt "smarttagoptionspage|properties"
msgid "Properties..."
msgstr "Vlastnosti..."
-#. fENAa
-#: cui/uiconfig/ui/smarttagoptionspage.ui:85
-msgctxt "smarttagoptionspage|extended_tip|properties"
-msgid "To configure a Smart Tag, select the name of the Smart Tag, then click Properties. Not all Smart Tags can be configured."
-msgstr "Ak chcete nakonfigurovať inteligentnú značku, vyberte názov inteligentnej značky a potom kliknite na položku Vlastnosti. Nie všetky inteligentné značky je možné konfigurovať."
-
#. 4xp5D
-#: cui/uiconfig/ui/smarttagoptionspage.ui:157
+#: cui/uiconfig/ui/smarttagoptionspage.ui:147
msgctxt "smarttagoptionspage|label1"
msgid "Currently Installed Smart Tags"
msgstr "Aktuálne nainštalované inteligentné značky"
-#. dUASA
-#: cui/uiconfig/ui/smarttagoptionspage.ui:177
-msgctxt "smarttagoptionspage|extended_tip|SmartTagOptionsPage"
-msgid "When you have installed at least one Smart Tag extension, you see the Smart Tags page."
-msgstr "Po nainštalovaní aspoň jedného rozšírenia s inteligentnými značkami sa zobrazí stránka Inteligentné značky."
-
#. y7D3W
#: cui/uiconfig/ui/smoothdialog.ui:15
msgctxt "smoothdialog|SmoothDialog"
@@ -19430,65 +14537,41 @@ msgid "Smooth"
msgstr "Vyhladiť"
#. BwUut
-#: cui/uiconfig/ui/smoothdialog.ui:156
+#: cui/uiconfig/ui/smoothdialog.ui:159
msgctxt "smoothdialog|label2"
msgid "_Smooth radius:"
msgstr "Polomer _vyhladenia:"
#. b62Mc
-#: cui/uiconfig/ui/smoothdialog.ui:180
+#: cui/uiconfig/ui/smoothdialog.ui:183
msgctxt "smoothdialog|label1"
msgid "Parameters"
msgstr "Parametre"
-#. RHoUb
-#: cui/uiconfig/ui/smoothdialog.ui:205
-msgctxt "smoothdialog|extended_tip|SmoothDialog"
-msgid "Softens or blurs the image by applying a low pass filter."
-msgstr "Zmäkčí alebo rozostrí obraz použitím dolnopriepustného filtra."
-
#. xAH4y
#: cui/uiconfig/ui/solarizedialog.ui:13
msgctxt "solarizedialog|SolarizeDialog"
msgid "Solarization"
msgstr "Solarizácia"
-#. GEGrA
-#: cui/uiconfig/ui/solarizedialog.ui:145
-msgctxt "solarizedialog|extended_tip|value"
-msgid "Specifies the number of colors to which the image is to be reduced."
-msgstr "Určuje počet, na ktorý sa má zmenšiť počet farieb obrázka."
-
#. Cjvhw
-#: cui/uiconfig/ui/solarizedialog.ui:158
+#: cui/uiconfig/ui/solarizedialog.ui:156
msgctxt "solarizedialog|label2"
msgid "Threshold _value:"
msgstr "Prahová _hodnota:"
#. zN2jC
-#: cui/uiconfig/ui/solarizedialog.ui:170
+#: cui/uiconfig/ui/solarizedialog.ui:168
msgctxt "solarizedialog|invert"
msgid "_Invert"
msgstr "_Invertovať"
-#. owmYE
-#: cui/uiconfig/ui/solarizedialog.ui:179
-msgctxt "solarizedialog|extended_tip|invert"
-msgid "Specifies to also invert all pixels."
-msgstr "Určuje, že sa tiež majú invertovať všetky pixely."
-
#. vd8sF
-#: cui/uiconfig/ui/solarizedialog.ui:202
+#: cui/uiconfig/ui/solarizedialog.ui:195
msgctxt "solarizedialog|label1"
msgid "Parameters"
msgstr "Parametre"
-#. Vec6B
-#: cui/uiconfig/ui/solarizedialog.ui:227
-msgctxt "solarizedialog|extended_tip|SolarizeDialog"
-msgid "Opens a dialog for defining solarization. Solarization refers to an effect that looks like what can happen when there is too much light during photo development. The colors become partly inverted."
-msgstr "Otvára dialógové okno na definovanie solarizácie. Solarizácia označuje efekt, ktorý vyzerá ako to, čo sa môže stať, keď je počas vývoja fotografie príliš veľa svetla. Farby sú čiastočne obrátené."
-
#. JpXVy
#: cui/uiconfig/ui/specialcharacters.ui:8
msgctxt "specialcharacters|SpecialCharactersDialog"
@@ -19496,83 +14579,65 @@ msgid "Special Characters"
msgstr "Špeciálne znaky"
#. FEFAp
-#: cui/uiconfig/ui/specialcharacters.ui:24
+#: cui/uiconfig/ui/specialcharacters.ui:27
msgctxt "specialcharacters|insert"
msgid "_Insert"
msgstr "Vlož_iť"
#. CLtzq
-#: cui/uiconfig/ui/specialcharacters.ui:107
+#: cui/uiconfig/ui/specialcharacters.ui:110
msgctxt "specialcharacters|subsetft"
msgid "Subset:"
msgstr "Podmnožina:"
#. mPCRR
-#: cui/uiconfig/ui/specialcharacters.ui:121
+#: cui/uiconfig/ui/specialcharacters.ui:124
msgctxt "specialcharacters|fontft"
msgid "Font:"
msgstr "Font:"
#. 3LCFE
-#: cui/uiconfig/ui/specialcharacters.ui:135
+#: cui/uiconfig/ui/specialcharacters.ui:138
msgctxt "specialcharacters|srchft"
msgid "Search:"
msgstr "Hľadať:"
-#. eCjVg
-#: cui/uiconfig/ui/specialcharacters.ui:163
-msgctxt "specialcharacters|extended_tip|subsetlb"
-msgid "Select a Unicode category for the current font."
-msgstr "Vyberte Unicode kategóriu pre aktuálne písmo."
-
-#. JPWW8
-#: cui/uiconfig/ui/specialcharacters.ui:186
-msgctxt "specialcharacters|extended_tip|fontlb"
-msgid "Select a font to display the special characters that are associated with it."
-msgstr "Vyberte písmo, aby sa zobrazili špeciálne znaky, ktoré sú s ním spojené."
-
#. LxRMr
-#: cui/uiconfig/ui/specialcharacters.ui:233
+#: cui/uiconfig/ui/specialcharacters.ui:226
msgctxt "specialcharacters|hexlabel"
msgid "Hexadecimal:"
msgstr "Šestnástkovo:"
#. XFFYD
-#: cui/uiconfig/ui/specialcharacters.ui:287
+#: cui/uiconfig/ui/specialcharacters.ui:280
msgctxt "specialcharacters|decimallabel"
msgid "Decimal:"
msgstr "Desiatkovo:"
#. UAnec
-#: cui/uiconfig/ui/specialcharacters.ui:312
+#: cui/uiconfig/ui/specialcharacters.ui:305
msgctxt "specialcharacters|favbtn"
msgid "Add to Favorites"
msgstr "Pridať k obľúbeným"
#. REwcC
-#: cui/uiconfig/ui/specialcharacters.ui:316
+#: cui/uiconfig/ui/specialcharacters.ui:309
msgctxt "specialcharacters|favbtn|tooltip_text"
msgid "Maximum Limit: 16 Characters"
msgstr "Maximum: 16 znakov"
#. ti8sG
-#: cui/uiconfig/ui/specialcharacters.ui:363
+#: cui/uiconfig/ui/specialcharacters.ui:356
msgctxt "specialcharacters|symboltext1"
msgid "Recent Characters:"
msgstr "Nedávne znaky:"
#. LQZ7q
-#: cui/uiconfig/ui/specialcharacters.ui:597
+#: cui/uiconfig/ui/specialcharacters.ui:590
msgctxt "specialcharacters|favbtn|symboltext2"
msgid "Favorite Characters:"
msgstr "Často používané znaky:"
-#. DhG6L
-#: cui/uiconfig/ui/specialcharacters.ui:894
-msgctxt "specialcharacters|extended_tip|SpecialCharactersDialog"
-msgid "Allows a user to insert characters from the range of symbols found in the installed fonts."
-msgstr "Umožňuje používateľovi vložiť znaky z rozsahu symbolov nájdených v nainštalovaných písmach."
-
#. 2pg6B
#: cui/uiconfig/ui/spellingdialog.ui:30
msgctxt "spellingdialog|SpellingDialog"
@@ -19580,203 +14645,119 @@ msgid "Spelling: $LANGUAGE ($LOCATION)"
msgstr "Kontrola pravopisu: $LANGUAGE ($LOCATION)"
#. FcbQv
-#: cui/uiconfig/ui/spellingdialog.ui:61
+#: cui/uiconfig/ui/spellingdialog.ui:64
msgctxt "spellingdialog|options"
msgid "_Options..."
msgstr "Možno_sti..."
-#. CTnCk
-#: cui/uiconfig/ui/spellingdialog.ui:68
-msgctxt "spellingdialog|extended_tip|options"
-msgid "Opens a dialog, where you can select the user-defined dictionaries, and set the rules for the spellchecking."
-msgstr "Otvorí dialógové okno, kde môžete vybrať používateľom definované slovníky a nastaviť pravidlá kontroly pravopisu."
-
-#. yuEBN
-#: cui/uiconfig/ui/spellingdialog.ui:88
-msgctxt "spellingdialog|extended_tip|undo"
-msgid "Click to undo the last change in the current sentence. Click again to undo the previous change in the same sentence."
-msgstr "Kliknutím zrušíte poslednú zmenu v aktuálnej vete. Opätovným kliknutím vrátite predchádzajúcu zmenu v tej istej vete späť."
-
#. XESAQ
-#: cui/uiconfig/ui/spellingdialog.ui:145
+#: cui/uiconfig/ui/spellingdialog.ui:138
msgctxt "spellingdialog|explainlink"
msgid "More..."
msgstr "Viac..."
-#. fsyKA
-#: cui/uiconfig/ui/spellingdialog.ui:173
-msgctxt "spellingdialog|extended_tip|sentence"
-msgid "Displays the sentence with the misspelled word highlighted. Edit the word or the sentence, or click one of the suggestions in the text box below."
-msgstr "Zobrazí vetu so zvýrazneným nesprávne napísaným slovom. Upravte slovo alebo vetu alebo kliknite na jeden z návrhov v textovom poli nižšie."
-
#. 4E4ES
-#: cui/uiconfig/ui/spellingdialog.ui:190
+#: cui/uiconfig/ui/spellingdialog.ui:178
msgctxt "spellingdialog|suggestionsft"
msgid "_Suggestions"
msgstr "Náv_rhy"
-#. MZdqY
-#: cui/uiconfig/ui/spellingdialog.ui:233
-msgctxt "spellingdialog|extended_tip|suggestionslb"
-msgid "Lists suggested words to replace the misspelled word. Select the word that you want to use, and then click Correct or Correct All."
-msgstr "Zobrazí zoznam navrhovaných slov, ktoré majú nahradiť nesprávne napísané slovo. Vyberte slovo, ktoré chcete použiť, a potom kliknite na tlačidlo Opraviť alebo Opraviť všetko."
-
#. 7Lgq7
-#: cui/uiconfig/ui/spellingdialog.ui:246
+#: cui/uiconfig/ui/spellingdialog.ui:229
msgctxt "spellingdialog|checkgrammar"
msgid "Chec_k grammar"
msgstr "Kontrolovať _gramatiku"
-#. 3VnDN
-#: cui/uiconfig/ui/spellingdialog.ui:255
-msgctxt "spellingdialog|extended_tip|checkgrammar"
-msgid "Enable Check grammar to work first on all spelling errors, then on all grammar errors."
-msgstr "Povoľte možnosť Skontrolovať gramatiku, aby najskôr spracovala pravopisné chyby, až potom gramatické chyby."
-
#. gPGys
-#: cui/uiconfig/ui/spellingdialog.ui:275
+#: cui/uiconfig/ui/spellingdialog.ui:253
msgctxt "spellingdialog|notindictft"
msgid "_Not in dictionary"
msgstr "_Nie je v slovníku"
#. R7k8J
-#: cui/uiconfig/ui/spellingdialog.ui:295
+#: cui/uiconfig/ui/spellingdialog.ui:273
msgctxt "spellingdialog|paste"
msgid "Paste"
msgstr "Vložiť"
#. vTAkA
-#: cui/uiconfig/ui/spellingdialog.ui:308
+#: cui/uiconfig/ui/spellingdialog.ui:286
msgctxt "spellingdialog|insert"
msgid "Special Character"
msgstr "Špeciálny znak"
#. qLx9c
-#: cui/uiconfig/ui/spellingdialog.ui:339
+#: cui/uiconfig/ui/spellingdialog.ui:317
msgctxt "spellingdialog|languageft"
msgid "Text languag_e:"
msgstr "Jazyk t_extu:"
-#. g7zja
-#: cui/uiconfig/ui/spellingdialog.ui:371
-msgctxt "spellingdialog|extended_tip|languagelb"
-msgid "Specifies the language to use to check the spelling."
-msgstr "Určuje jazyk, ktorý sa použije na kontrolu pravopisu."
-
#. bxC8G
-#: cui/uiconfig/ui/spellingdialog.ui:395
+#: cui/uiconfig/ui/spellingdialog.ui:368
msgctxt "spellingdialog|resumeft"
msgid "Res_ume"
msgstr "Po_kračovať"
#. D2E4f
-#: cui/uiconfig/ui/spellingdialog.ui:407
+#: cui/uiconfig/ui/spellingdialog.ui:380
msgctxt "spellingdialog|nosuggestionsft"
msgid "(no suggestions)"
msgstr "(žiadne návrhy)"
#. dCCnN
-#: cui/uiconfig/ui/spellingdialog.ui:419
+#: cui/uiconfig/ui/spellingdialog.ui:392
msgctxt "spellingdialog|alttitleft"
msgid "Spelling: $LANGUAGE ($LOCATION)"
msgstr "Kontrola pravopisu: $LANGUAGE ($LOCATION)"
#. 5LDdh
-#: cui/uiconfig/ui/spellingdialog.ui:442
+#: cui/uiconfig/ui/spellingdialog.ui:415
msgctxt "spellingdialog|change"
msgid "Co_rrect"
msgstr "_Opraviť"
-#. m7FFp
-#: cui/uiconfig/ui/spellingdialog.ui:451
-msgctxt "spellingdialog|extended_tip|change"
-msgid "Replaces the unknown word with the current suggestion. If you changed more than just the misspelled word, the entire sentence is replaced."
-msgstr "Nahradí neznáme slovo aktuálnym návrhom. Ak ste zmenili viac než nesprávne napísané slovo, nahradí sa celá veta."
-
#. dZvFo
-#: cui/uiconfig/ui/spellingdialog.ui:462
+#: cui/uiconfig/ui/spellingdialog.ui:430
msgctxt "spellingdialog|changeall"
msgid "Correct A_ll"
msgstr "Opraviť _všetko"
-#. 9kjPB
-#: cui/uiconfig/ui/spellingdialog.ui:471
-msgctxt "spellingdialog|extended_tip|changeall"
-msgid "Replaces all occurrences of the unknown word with the current suggestion."
-msgstr "Nahradí všetky výskyty neznámeho slova aktuálnym návrhom."
-
#. GYcSJ
-#: cui/uiconfig/ui/spellingdialog.ui:482
+#: cui/uiconfig/ui/spellingdialog.ui:445
msgctxt "spellingdialog|autocorrect"
msgid "Alwa_ys Correct"
msgstr "Vžd_y opraviť"
-#. GhEsr
-#: cui/uiconfig/ui/spellingdialog.ui:491
-msgctxt "spellingdialog|extended_tip|autocorrect"
-msgid "Adds the current combination of the incorrect word and the replacement word to the AutoCorrect replacements table."
-msgstr "Pridá aktuálnu kombináciu nesprávneho slova a náhradného slova do tabuľky náhrad automatických opráv."
-
#. DoqLo
-#: cui/uiconfig/ui/spellingdialog.ui:514
+#: cui/uiconfig/ui/spellingdialog.ui:472
msgctxt "spellingdialog|ignore"
msgid "_Ignore Once"
msgstr "_Ignorovať raz"
-#. M5qZF
-#: cui/uiconfig/ui/spellingdialog.ui:523
-msgctxt "spellingdialog|extended_tip|ignore"
-msgid "Skips the unknown word and continues with the spellcheck."
-msgstr "Preskočí neznáme slovo a pokračuje kontrolou pravopisu."
-
#. 32F96
-#: cui/uiconfig/ui/spellingdialog.ui:534
+#: cui/uiconfig/ui/spellingdialog.ui:487
msgctxt "spellingdialog|ignoreall"
msgid "I_gnore All"
msgstr "I_gnorovať všetky"
-#. B5UQJ
-#: cui/uiconfig/ui/spellingdialog.ui:543
-msgctxt "spellingdialog|extended_tip|ignoreall"
-msgid "Skips all occurrences of the unknown word until the end of the current %PRODUCTNAME session and continues with the spellcheck."
-msgstr "Preskočí všetky výskyty neznámeho slova až do konca aktuálnej relácie %PRODUCTNAME a pokračuje kontrolou pravopisu."
-
#. ZZNQM
-#: cui/uiconfig/ui/spellingdialog.ui:554
+#: cui/uiconfig/ui/spellingdialog.ui:502
msgctxt "spellingdialog|ignorerule"
msgid "I_gnore Rule"
msgstr "I_gnorovať pravidlo"
-#. E63nm
-#: cui/uiconfig/ui/spellingdialog.ui:563
-msgctxt "spellingdialog|extended_tip|ignorerule"
-msgid "While performing a grammar check, click Ignore Rule to ignore the rule that is currently flagged as a grammar error."
-msgstr "Počas vykonávania kontroly gramatiky kliknite na Ignorovať pravidlo, čím ignorujete pravidlo, ktoré je momentálne označené ako gramatická chyba."
-
#. evAcz
-#: cui/uiconfig/ui/spellingdialog.ui:574
+#: cui/uiconfig/ui/spellingdialog.ui:517
msgctxt "spellingdialog|add"
msgid "_Add to Dictionary"
msgstr "_Pridať do slovníka"
#. CEWcz
-#: cui/uiconfig/ui/spellingdialog.ui:589
+#: cui/uiconfig/ui/spellingdialog.ui:532
msgctxt "spellingdialog|addmb"
msgid "_Add to Dictionary"
msgstr "_Pridať do slovníka"
-#. YFz8g
-#: cui/uiconfig/ui/spellingdialog.ui:603
-msgctxt "spellingdialog|extended_tip|addmb"
-msgid "Adds the unknown word to a user-defined dictionary."
-msgstr "Pridá neznáme slovo do používateľom definovaného slovníka."
-
-#. GSZVa
-#: cui/uiconfig/ui/spellingdialog.ui:644
-msgctxt "spellingdialog|extended_tip|SpellingDialog"
-msgid "Checks the document or the current selection for spelling errors. If a grammar checking extension is installed, the dialog also checks for grammar errors."
-msgstr "Skontroluje pravopisné chyby dokumentu alebo aktuálneho výberu. Ak je nainštalované rozšírenie na kontrolu gramatiky, dialógové okno tiež skontroluje gramatické chyby."
-
#. fM6Vt
#: cui/uiconfig/ui/spelloptionsdialog.ui:8
msgctxt "spelloptionsdialog|SpellOptionsDialog"
@@ -19825,12 +14806,6 @@ msgctxt "splitcellsdialog|label2"
msgid "Direction"
msgstr "Smer"
-#. WFHAy
-#: cui/uiconfig/ui/splitcellsdialog.ui:278
-msgctxt "splitcellsdialog|extended_tip|SplitCellsDialog"
-msgid "Splits the cell or group of cells horizontally or vertically into the number of cells that you enter."
-msgstr "Rozdelí bunku alebo skupinu buniek vodorovne alebo zvisle na počet, ktorý zadáte."
-
#. hbDka
#: cui/uiconfig/ui/storedwebconnectiondialog.ui:18
msgctxt "storedwebconnectiondialog|StoredWebConnectionDialog"
@@ -19867,234 +14842,138 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "Zmeniť _heslo..."
-#. M4C6V
-#: cui/uiconfig/ui/swpossizepage.ui:77
-msgctxt "swpossizepage|extended_tip|width"
-msgid "Enter the width that you want for the selected object."
-msgstr "Zadajte požadovanú šírku vybraného objektu."
-
#. ADAyE
-#: cui/uiconfig/ui/swpossizepage.ui:90
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "Ší_rka:"
-#. 5jMac
-#: cui/uiconfig/ui/swpossizepage.ui:120
-msgctxt "swpossizepage|extended_tip|height"
-msgid "Enter the height that you want for the selected object."
-msgstr "Zadajte požadovanú výšku vybraného objektu."
-
#. D2QY9
-#: cui/uiconfig/ui/swpossizepage.ui:133
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "Výš_ka:"
#. UpdQN
-#: cui/uiconfig/ui/swpossizepage.ui:151
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "_Zachovať pomer"
-#. vRbyX
-#: cui/uiconfig/ui/swpossizepage.ui:160
-msgctxt "swpossizepage|extended_tip|ratio"
-msgid "Maintains the height and width ratio when you change the width or the height setting."
-msgstr "Zachová pomer výšky a šírky keď zmeníte ich nastavenie."
-
#. Dhk9o
-#: cui/uiconfig/ui/swpossizepage.ui:177
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Veľkosť"
#. okeh5
-#: cui/uiconfig/ui/swpossizepage.ui:233
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "K _strane"
-#. cAYrG
-#: cui/uiconfig/ui/swpossizepage.ui:243
-msgctxt "swpossizepage|extended_tip|topage"
-msgid "Anchors the selection to the current page."
-msgstr "Ukotví výber na aktuálnu stranu."
-
#. 7GtoG
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "K od_seku"
-#. NhNym
-#: cui/uiconfig/ui/swpossizepage.ui:264
-msgctxt "swpossizepage|extended_tip|topara"
-msgid "Anchors the selection to the current paragraph."
-msgstr "Ukotví výber k aktuálnemu odseku."
-
#. Uj9Pu
-#: cui/uiconfig/ui/swpossizepage.ui:275
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "K zn_aku"
-#. KpVFy
-#: cui/uiconfig/ui/swpossizepage.ui:285
-msgctxt "swpossizepage|extended_tip|tochar"
-msgid "Anchors the selection to a character."
-msgstr "Ukotví výber k znaku."
-
#. GNmu5
-#: cui/uiconfig/ui/swpossizepage.ui:296
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "_Ako znak"
-#. F5EmK
-#: cui/uiconfig/ui/swpossizepage.ui:306
-msgctxt "swpossizepage|extended_tip|aschar"
-msgid "Anchors the selection as character. The height of the current line is resized to match the height of the selection."
-msgstr "Ukotví výber ako znak. Výška aktuálneho riadku sa zmení tak, aby zodpovedala výške výberu."
-
#. e4F9d
-#: cui/uiconfig/ui/swpossizepage.ui:317
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "K rá_mcu"
#. ckR4Z
-#: cui/uiconfig/ui/swpossizepage.ui:339
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Ukotviť"
#. 7XWqU
-#: cui/uiconfig/ui/swpossizepage.ui:379
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "_Vodorovne:"
#. nCjCJ
-#: cui/uiconfig/ui/swpossizepage.ui:393
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "o:"
#. JAihS
-#: cui/uiconfig/ui/swpossizepage.ui:407
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "_o:"
#. bEU2H
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "_k:"
-#. 7c9uU
-#: cui/uiconfig/ui/swpossizepage.ui:440
-msgctxt "swpossizepage|extended_tip|byhori"
-msgid "Enter the amount of space to leave between the left edge of the selected object and the reference point that you select in the To box."
-msgstr "Zadajte veľkosť medzery medzi ľavým okrajom vybraného objektu a referenčným bodom, ktorý ste vybrali v poli K."
-
-#. 93Nyg
-#: cui/uiconfig/ui/swpossizepage.ui:455
-msgctxt "swpossizepage|extended_tip|horianchor"
-msgid "Select the reference point for the selected horizontal alignment option."
-msgstr "Vyberte referenčný bod pre vybranú možnosť horizontálneho zarovnania."
-
-#. drz3i
-#: cui/uiconfig/ui/swpossizepage.ui:470
-msgctxt "swpossizepage|extended_tip|horipos"
-msgid "Select the horizontal alignment option for the object."
-msgstr "Vyberte pre objekt možnosť vodorovného zarovnania."
-
#. NKeEB
-#: cui/uiconfig/ui/swpossizepage.ui:483
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "Z_vislé:"
-#. DRm4w
-#: cui/uiconfig/ui/swpossizepage.ui:499
-msgctxt "swpossizepage|extended_tip|vertpos"
-msgid "Select the vertical alignment option for the object."
-msgstr "Vyberte pre objekt možnosť vertikálneho zarovnania."
-
-#. ys5CR
-#: cui/uiconfig/ui/swpossizepage.ui:517
-msgctxt "swpossizepage|extended_tip|byvert"
-msgid "Enter the amount of space to leave between the top edge of the selected object and the reference point that you select in the To box."
-msgstr "Zadajte veľkosť medzery medzi horným okrajom vybraného objektu a referenčným bodom, ktorý ste vybrali v poli K."
-
#. 5jQc3
-#: cui/uiconfig/ui/swpossizepage.ui:530
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "_k:"
-#. 5YHD7
-#: cui/uiconfig/ui/swpossizepage.ui:546
-msgctxt "swpossizepage|extended_tip|vertanchor"
-msgid "Select the reference point for the selected vertical alignment option."
-msgstr "Vyberte referenčný bod pre vybranú možnosť vertikálneho zarovnania."
-
#. ZFE5p
-#: cui/uiconfig/ui/swpossizepage.ui:557
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "_Zrkadliť na párnych stranách"
-#. rubDV
-#: cui/uiconfig/ui/swpossizepage.ui:567
-msgctxt "swpossizepage|extended_tip|mirror"
-msgid "Reverses the current horizontal alignment settings on even pages."
-msgstr "Obráti aktuálne nastavenie vodorovného zarovnania na párnych stranách."
-
#. iTRvh
-#: cui/uiconfig/ui/swpossizepage.ui:579
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "Sledovať tok te_xtu"
-#. zfpt5
-#: cui/uiconfig/ui/swpossizepage.ui:589
-msgctxt "swpossizepage|extended_tip|followtextflow"
-msgid "Keeps the selected object within the layout boundaries of the text that the object is anchored to. To place the selected object anywhere in your document, do not select this option."
-msgstr "Udržuje vybraný objekt v medziach rozloženia textu, ku ktorému je objekt ukotvený. Ak chcete umiestniť vybraný objekt kamkoľvek do dokumentu, nevyberajte túto možnosť."
-
#. hKBGx
-#: cui/uiconfig/ui/swpossizepage.ui:607
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Poloha"
#. 3PMgB
-#: cui/uiconfig/ui/swpossizepage.ui:638
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "Polo_ha"
#. YuVkA
-#: cui/uiconfig/ui/swpossizepage.ui:654
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "Veľko_sť"
#. 7MV8R
-#: cui/uiconfig/ui/swpossizepage.ui:676
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Zamknúť"
-#. YeGXE
-#: cui/uiconfig/ui/swpossizepage.ui:690
-msgctxt "swpossizepage|extended_tip|SwPosSizePage"
-msgid "Specifies the size and the position of the selected object or frame on a page."
-msgstr "Určuje veľkosť a polohu vybraného objektu alebo rámca na strane."
-
#. C7DcB
#: cui/uiconfig/ui/textanimtabpage.ui:70
msgctxt "textanimtabpage|liststoreEFFECT"
@@ -20125,372 +15004,210 @@ msgctxt "textanimtabpage|liststoreEFFECT"
msgid "Scroll In"
msgstr "Jeden priebeh"
-#. Ew3yG
-#: cui/uiconfig/ui/textanimtabpage.ui:78
-msgctxt "textanimtabpage|extended_tip|LB_EFFECT"
-msgid "Select the animation effect that you want to apply to the text in the selected drawing object. To remove an animation effect, select No Effect."
-msgstr "Vyberte efekt animácie, ktorý chcete použiť na text vo vybranom grafickom objekte. Ak chcete efekt animácie odstrániť, vyberte možnosť Bez efektov."
-
#. FpCUy
-#: cui/uiconfig/ui/textanimtabpage.ui:99
+#: cui/uiconfig/ui/textanimtabpage.ui:94
msgctxt "textanimtabpage|FT_DIRECTION"
msgid "Direction:"
msgstr "Smer:"
#. XD5iJ
-#: cui/uiconfig/ui/textanimtabpage.ui:118
+#: cui/uiconfig/ui/textanimtabpage.ui:113
msgctxt "textanimtabpage|BTN_UP|tooltip_text"
msgid "To top"
msgstr "Nahor"
#. bz7eu
-#: cui/uiconfig/ui/textanimtabpage.ui:125
+#: cui/uiconfig/ui/textanimtabpage.ui:120
msgctxt "textanimtabpage|BTN_UP-atkobject"
msgid "Up"
msgstr "Nahor"
-#. DaCJR
-#: cui/uiconfig/ui/textanimtabpage.ui:126
-msgctxt "textanimtabpage|extended_tip|BTN_UP"
-msgid "Scrolls text from bottom to top."
-msgstr "Posúva text zdola nahor."
-
#. xD7QC
-#: cui/uiconfig/ui/textanimtabpage.ui:140
+#: cui/uiconfig/ui/textanimtabpage.ui:134
msgctxt "textanimtabpage|BTN_RIGHT|tooltip_text"
msgid "To right"
msgstr "Doprava"
#. VN5hz
-#: cui/uiconfig/ui/textanimtabpage.ui:147
+#: cui/uiconfig/ui/textanimtabpage.ui:141
msgctxt "textanimtabpage|BTN_RIGHT-atkobject"
msgid "Right"
msgstr "Vpravo"
-#. wYUTD
-#: cui/uiconfig/ui/textanimtabpage.ui:148
-msgctxt "textanimtabpage|extended_tip|BTN_RIGHT"
-msgid "Scrolls text from left to right."
-msgstr "Posúva text zľava doprava."
-
#. qufE7
-#: cui/uiconfig/ui/textanimtabpage.ui:162
+#: cui/uiconfig/ui/textanimtabpage.ui:155
msgctxt "textanimtabpage|BTN_LEFT|tooltip_text"
msgid "To left"
msgstr "Doľava"
#. XGbGL
-#: cui/uiconfig/ui/textanimtabpage.ui:169
+#: cui/uiconfig/ui/textanimtabpage.ui:162
msgctxt "textanimtabpage|BTN_LEFT-atkobject"
msgid "Left"
msgstr "Vľavo"
-#. DKAFm
-#: cui/uiconfig/ui/textanimtabpage.ui:170
-msgctxt "textanimtabpage|extended_tip|BTN_LEFT"
-msgid "Scrolls text from right to left."
-msgstr "Posúva text sprava doľava."
-
#. Y9HDp
-#: cui/uiconfig/ui/textanimtabpage.ui:184
+#: cui/uiconfig/ui/textanimtabpage.ui:176
msgctxt "textanimtabpage|BTN_DOWN|tooltip_text"
msgid "To bottom"
msgstr "Nadol"
#. AaxJ6
-#: cui/uiconfig/ui/textanimtabpage.ui:191
+#: cui/uiconfig/ui/textanimtabpage.ui:183
msgctxt "textanimtabpage|BTN_DOWN-atkobject"
msgid "Down"
msgstr "Nadol"
-#. LmUmC
-#: cui/uiconfig/ui/textanimtabpage.ui:192
-msgctxt "textanimtabpage|extended_tip|BTN_DOWN"
-msgid "Scrolls text from top to bottom."
-msgstr "Posúva text zhora nadol."
-
#. C8qts
-#: cui/uiconfig/ui/textanimtabpage.ui:238
+#: cui/uiconfig/ui/textanimtabpage.ui:229
msgctxt "textanimtabpage|FT_EFFECTS"
msgid "E_ffect"
msgstr "E_fekt"
#. yTfAi
-#: cui/uiconfig/ui/textanimtabpage.ui:273
+#: cui/uiconfig/ui/textanimtabpage.ui:264
msgctxt "textanimtabpage|TSB_START_INSIDE"
msgid "S_tart inside"
msgstr "Spus_tiť vo vnútri"
-#. WeZT4
-#: cui/uiconfig/ui/textanimtabpage.ui:283
-msgctxt "textanimtabpage|extended_tip|TSB_START_INSIDE"
-msgid "Text is visible and inside the drawing object when the effect is applied."
-msgstr "Po použití efektu je text viditeľný a nachádza sa vnútri nakresleného objektu."
-
#. AojvU
-#: cui/uiconfig/ui/textanimtabpage.ui:295
+#: cui/uiconfig/ui/textanimtabpage.ui:281
msgctxt "textanimtabpage|TSB_STOP_INSIDE"
msgid "Text _visible when exiting"
-msgstr "_Viditelný text pri ukončení"
-
-#. 6a3Ed
-#: cui/uiconfig/ui/textanimtabpage.ui:305
-msgctxt "textanimtabpage|extended_tip|TSB_STOP_INSIDE"
-msgid "Text remains visible after the effect is applied."
-msgstr "Text zostáva viditeľný aj po použití efektu."
+msgstr "Text _visible when exiting"
#. mH7ec
-#: cui/uiconfig/ui/textanimtabpage.ui:319
+#: cui/uiconfig/ui/textanimtabpage.ui:300
msgctxt "textanimtabpage|FT_COUNT"
msgid "Animation cycles:"
msgstr "Cykly animácie:"
#. r33uA
-#: cui/uiconfig/ui/textanimtabpage.ui:336
+#: cui/uiconfig/ui/textanimtabpage.ui:317
msgctxt "textanimtabpage|TSB_ENDLESS"
msgid "_Continuous"
msgstr "_Súvislé"
-#. RBFeu
-#: cui/uiconfig/ui/textanimtabpage.ui:349
-msgctxt "textanimtabpage|extended_tip|TSB_ENDLESS"
-msgid "Plays the animation effect continuously. To specify the number of times to play the effect, clear this checkbox, and enter a number in the Continuous box."
-msgstr "Neustále prehráva efekt animácie. Ak chcete určiť počet opakovaní efektu, zrušte zaškrtnutie tohto políčka a do poľa Súvislé zadajte číslo."
-
-#. 9wuKa
-#: cui/uiconfig/ui/textanimtabpage.ui:370
-msgctxt "textanimtabpage|extended_tip|NUM_FLD_COUNT"
-msgid "Enter the number of times that you want the animation effect to repeat."
-msgstr "Zadajte počet opakovaní efektu animácie."
-
#. FGuFE
-#: cui/uiconfig/ui/textanimtabpage.ui:390
+#: cui/uiconfig/ui/textanimtabpage.ui:361
msgctxt "textanimtabpage|FT_AMOUNT"
msgid "Increment:"
msgstr "Prírastok:"
#. D2oYy
-#: cui/uiconfig/ui/textanimtabpage.ui:407
+#: cui/uiconfig/ui/textanimtabpage.ui:378
msgctxt "textanimtabpage|TSB_PIXEL"
msgid "_Pixels"
msgstr "_bodov"
-#. rwAQy
-#: cui/uiconfig/ui/textanimtabpage.ui:420
-msgctxt "textanimtabpage|extended_tip|TSB_PIXEL"
-msgid "Measures increment value in pixels."
-msgstr "Meria hodnotu prírastku v pixeloch."
-
-#. fq4Ps
-#: cui/uiconfig/ui/textanimtabpage.ui:441
-msgctxt "textanimtabpage|extended_tip|MTR_FLD_AMOUNT"
-msgid "Enter the number of increments by which to scroll the text."
-msgstr "Zadajte počet prírastkov, o ktoré sa bude text posúvať."
-
#. n9msn
-#: cui/uiconfig/ui/textanimtabpage.ui:461
+#: cui/uiconfig/ui/textanimtabpage.ui:422
msgctxt "textanimtabpage|FT_DELAY"
msgid "Delay:"
msgstr "Pozdržať:"
#. cKvSH
-#: cui/uiconfig/ui/textanimtabpage.ui:478
+#: cui/uiconfig/ui/textanimtabpage.ui:439
msgctxt "textanimtabpage|TSB_AUTO"
msgid "_Automatic"
msgstr "_Automaticky"
-#. HwKA5
-#: cui/uiconfig/ui/textanimtabpage.ui:491
-msgctxt "textanimtabpage|extended_tip|TSB_AUTO"
-msgid "%PRODUCTNAME automatically determines the amount of time to wait before repeating the effect. To manually assign the delay period, clear this checkbox, and then enter a value in the Automatic box."
-msgstr "%PRODUCTNAME automaticky určuje čas, ktorý treba počkať, kým sa efekt zopakuje. Ak chcete manuálne priradiť dobu oneskorenia, zrušte zaškrtnutie tohto políčka a potom zadajte hodnotu do poľa Automaticky."
-
-#. aagEf
-#: cui/uiconfig/ui/textanimtabpage.ui:512
-msgctxt "textanimtabpage|extended_tip|MTR_FLD_DELAY"
-msgid "Enter the amount of time to wait before repeating the effect."
-msgstr "Zadajte čas, ktorý chcete počkať, kým sa efekt zopakuje."
-
#. pbjT5
-#: cui/uiconfig/ui/textanimtabpage.ui:536
+#: cui/uiconfig/ui/textanimtabpage.ui:487
msgctxt "textanimtabpage|label2"
msgid "Properties"
msgstr "Vlastnosti"
-#. 7cYvC
-#: cui/uiconfig/ui/textanimtabpage.ui:552
-msgctxt "textanimtabpage|extended_tip|TextAnimation"
-msgid "Adds an animation effect to the text in the selected drawing object."
-msgstr "Pridá efekt animácie k textu vo vybranom grafickom objekte."
-
#. 4iDya
#: cui/uiconfig/ui/textattrtabpage.ui:60
msgctxt "textattrtabpage|TSB_AUTOGROW_WIDTH"
msgid "Fit wi_dth to text"
msgstr "Prispôsobiť ší_rku na text"
-#. JswCU
-#: cui/uiconfig/ui/textattrtabpage.ui:70
-msgctxt "textattrtabpage|extended_tip|TSB_AUTOGROW_WIDTH"
-msgid "Expands the width of the object to the width of the text, if the object is smaller than the text."
-msgstr "Ak je objekt menší ako text, rozšíri šírku objektu na šírku textu."
-
#. AFJcc
-#: cui/uiconfig/ui/textattrtabpage.ui:81
+#: cui/uiconfig/ui/textattrtabpage.ui:76
msgctxt "textattrtabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit h_eight to text"
msgstr "Prispôsobiť _výšku na text"
-#. pgGDH
-#: cui/uiconfig/ui/textattrtabpage.ui:91
-msgctxt "textattrtabpage|extended_tip|TSB_AUTOGROW_HEIGHT"
-msgid "Expands the height of the object to the height of the text, if the object is smaller than the text."
-msgstr "Rozšíri výšku objektu na výšku textu, ak je objekt menší ako text."
-
#. gKSp5
-#: cui/uiconfig/ui/textattrtabpage.ui:102
+#: cui/uiconfig/ui/textattrtabpage.ui:92
msgctxt "textattrtabpage|TSB_FIT_TO_SIZE"
msgid "_Fit to frame"
msgstr "Prispôsobiť do _rámca"
-#. qAEnD
-#: cui/uiconfig/ui/textattrtabpage.ui:112
-msgctxt "textattrtabpage|extended_tip|TSB_FIT_TO_SIZE"
-msgid "Resizes the text to fit the entire area of the drawing or text object."
-msgstr "Zmení veľkosť textu tak, aby sa zmestil na celú plochu výkresu alebo textového objektu."
-
#. HNhqB
-#: cui/uiconfig/ui/textattrtabpage.ui:123
+#: cui/uiconfig/ui/textattrtabpage.ui:108
msgctxt "textattrtabpage|TSB_CONTOUR"
msgid "_Adjust to contour"
msgstr "Prispôsobiť na _krivku"
-#. QBTi6
-#: cui/uiconfig/ui/textattrtabpage.ui:133
-msgctxt "textattrtabpage|extended_tip|TSB_CONTOUR"
-msgid "Adapts the text flow so that it matches the contours of the selected drawing object."
-msgstr "Prispôsobí tok textu tak, aby sa zhodoval s obrysmi vybraného nakresleného objektu."
-
#. ZxFbp
-#: cui/uiconfig/ui/textattrtabpage.ui:150
+#: cui/uiconfig/ui/textattrtabpage.ui:130
msgctxt "textattrtabpage|label1"
msgid "Drawing Object Text"
msgstr "Text objektu kresby"
#. E7JrK
-#: cui/uiconfig/ui/textattrtabpage.ui:183
+#: cui/uiconfig/ui/textattrtabpage.ui:163
msgctxt "textattrtabpage|TSB_WORDWRAP_TEXT"
msgid "_Word wrap text in shape"
msgstr "_Obtekanie slov textu v t_vare"
-#. 4rpt3
-#: cui/uiconfig/ui/textattrtabpage.ui:193
-msgctxt "textattrtabpage|extended_tip|TSB_WORDWRAP_TEXT"
-msgid "Wraps the text that you add after double-clicking a custom shape to fit inside the shape."
-msgstr "Zalomí text, ktorý pridáte po dvojitom kliknutí k vlastnému útvaru, aby sa zmestil dovnútra útvaru."
-
#. T4kEz
-#: cui/uiconfig/ui/textattrtabpage.ui:204
+#: cui/uiconfig/ui/textattrtabpage.ui:179
msgctxt "textattrtabpage|TSB_AUTOGROW_SIZE"
msgid "_Resize shape to fit text"
msgstr "Pr_ispôsobiť veľkosť tvaru textu"
-#. iFsgJ
-#: cui/uiconfig/ui/textattrtabpage.ui:214
-msgctxt "textattrtabpage|extended_tip|TSB_AUTOGROW_SIZE"
-msgid "Resizes a custom shape to fit the text that you enter after double-clicking the shape."
-msgstr "Zmení veľkosť vlastného útvaru tak, aby sa prispôsobil textu, ktorý zadáte po dvojitom kliknutí na útvar."
-
#. CWdDn
-#: cui/uiconfig/ui/textattrtabpage.ui:231
+#: cui/uiconfig/ui/textattrtabpage.ui:201
msgctxt "textattrtabpage|label8"
msgid "Custom Shape Text"
msgstr "Text vlastného útvaru"
#. 7Ad2Q
-#: cui/uiconfig/ui/textattrtabpage.ui:278
+#: cui/uiconfig/ui/textattrtabpage.ui:248
msgctxt "textattrtabpage|label4"
msgid "_Left:"
msgstr "_Ľavý:"
#. dMFkF
-#: cui/uiconfig/ui/textattrtabpage.ui:292
+#: cui/uiconfig/ui/textattrtabpage.ui:262
msgctxt "textattrtabpage|label5"
msgid "_Right:"
msgstr "_Vpravo:"
#. nxccs
-#: cui/uiconfig/ui/textattrtabpage.ui:306
+#: cui/uiconfig/ui/textattrtabpage.ui:276
msgctxt "textattrtabpage|label6"
msgid "_Top:"
msgstr "_Hore:"
#. avsGr
-#: cui/uiconfig/ui/textattrtabpage.ui:320
+#: cui/uiconfig/ui/textattrtabpage.ui:290
msgctxt "textattrtabpage|label7"
msgid "_Bottom:"
msgstr "_Dolu:"
-#. qhk2Q
-#: cui/uiconfig/ui/textattrtabpage.ui:339
-msgctxt "textattrtabpage|extended_tip|MTR_FLD_LEFT"
-msgid "Enter the amount of space to leave between the left edge of the drawing or text object and the left border of the text."
-msgstr "Zadajte veľkosť medzery medzi ľavým okrajom grafického alebo textového objektu a ľavým okrajom textu."
-
-#. Gscsa
-#: cui/uiconfig/ui/textattrtabpage.ui:357
-msgctxt "textattrtabpage|extended_tip|MTR_FLD_RIGHT"
-msgid "Enter the amount of space to leave between the right edge of the drawing or text object and the right border of the text."
-msgstr "Zadajte veľkosť medzery medzi pravým okrajom grafického alebo textového objektu a pravým okrajom textu."
-
-#. 7CCsd
-#: cui/uiconfig/ui/textattrtabpage.ui:375
-msgctxt "textattrtabpage|extended_tip|MTR_FLD_TOP"
-msgid "Enter the amount of space to leave between the top edge of the drawing or text object and the upper border of the text."
-msgstr "Zadajte veľkosť medzery medzi horným okrajom grafického alebo textového objektu a horným okrajom textu."
-
-#. T3o9E
-#: cui/uiconfig/ui/textattrtabpage.ui:393
-msgctxt "textattrtabpage|extended_tip|MTR_FLD_BOTTOM"
-msgid "Enter the amount of space to leave between the bottom edge of the drawing or text object and the lower border of the text."
-msgstr "Zadajte veľkosť medzery, ktorá sa má ponechať medzi spodným okrajom grafického alebo textového objektu a spodným okrajom textu."
-
#. aYFEA
-#: cui/uiconfig/ui/textattrtabpage.ui:410
+#: cui/uiconfig/ui/textattrtabpage.ui:360
msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Vzdialenosť od okrajov"
-#. gMHiC
-#: cui/uiconfig/ui/textattrtabpage.ui:462
-msgctxt "textattrtabpage|extended_tip|CTL_POSITION"
-msgid "Click where you want to place the anchor for the text."
-msgstr "Kliknite na miesto, kam chcete umiestniť ukotvenie textu."
-
#. PUoRb
-#: cui/uiconfig/ui/textattrtabpage.ui:478
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Plná ší_rka"
-#. jU6YX
-#: cui/uiconfig/ui/textattrtabpage.ui:488
-msgctxt "textattrtabpage|extended_tip|TSB_FULL_WIDTH"
-msgid "Anchors the text to the full width of the drawing object or text object."
-msgstr "Ukotví objekt na celú šírku objektu kresby alebo textu."
-
#. BP2Vk
-#: cui/uiconfig/ui/textattrtabpage.ui:506
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Ukotvenie textu"
-#. 3zrBD
-#: cui/uiconfig/ui/textattrtabpage.ui:528
-msgctxt "textattrtabpage|extended_tip|TextAttributesPage"
-msgid "Sets the layout and anchoring properties for text in the selected drawing or text object."
-msgstr "Nastavuje vlastnosti rozloženia a ukotvenia pre text vo vybranom grafickom alebo textovom objekte."
-
#. 3Huae
#: cui/uiconfig/ui/textdialog.ui:8
msgctxt "textdialog|TextDialog"
@@ -20515,246 +15232,144 @@ msgctxt "textflowpage|checkAuto"
msgid "A_utomatically"
msgstr "A_utomaticky"
-#. iKEC7
-#: cui/uiconfig/ui/textflowpage.ui:82
-msgctxt "textflowpage|extended_tip|checkAuto"
-msgid "Automatically inserts hyphens where they are needed in a paragraph."
-msgstr "Automatický vkladá rozdeľovače na potrebné miesta."
-
-#. MzDMB
-#: cui/uiconfig/ui/textflowpage.ui:102
-msgctxt "textflowpage|extended_tip|spinMaxNum"
-msgid "Enter the maximum number of consecutive lines that can be hyphenated."
-msgstr "Zadajte maximálny počet po sebe idúcich riadkov, na ktorých môže byť rozdelené slovo."
-
-#. zBD7h
-#: cui/uiconfig/ui/textflowpage.ui:121
-msgctxt "textflowpage|extended_tip|spinLineBegin"
-msgid "Enter the minimum number of characters that must appear at the beginning of the line after the hyphen."
-msgstr "Zadajte minimálny počet znakov, ktoré musia byť na začiatku riadku po spojovníku."
-
-#. FFGUz
-#: cui/uiconfig/ui/textflowpage.ui:141
-msgctxt "textflowpage|extended_tip|spinLineEnd"
-msgid "Enter the minimum number of characters to leave at the end of the line before a hyphen is inserted."
-msgstr "Zadajte minimálny počet znakov, ktoré majú zostať na konci riadku, kým sa vloží spojovník."
-
#. c6KN2
-#: cui/uiconfig/ui/textflowpage.ui:155
+#: cui/uiconfig/ui/textflowpage.ui:135
msgctxt "textflowpage|labelLineEnd"
msgid "C_haracters at line end"
msgstr "Z_naky na konci riadka"
#. AGfNV
-#: cui/uiconfig/ui/textflowpage.ui:169
+#: cui/uiconfig/ui/textflowpage.ui:149
msgctxt "textflowpage|labelLineBegin"
msgid "Cha_racters at line begin"
msgstr "Znaky na začiatku _riadka"
#. FTX7o
-#: cui/uiconfig/ui/textflowpage.ui:183
+#: cui/uiconfig/ui/textflowpage.ui:163
msgctxt "textflowpage|labelMaxNum"
msgid "_Maximum number of consecutive hyphens"
msgstr "_Max. počet spojovníkov za sebou"
#. GgHhP
-#: cui/uiconfig/ui/textflowpage.ui:194
+#: cui/uiconfig/ui/textflowpage.ui:174
msgctxt "textflowpage|checkNoCaps"
msgid "Don't hyphenate words in _CAPS"
msgstr "N_edeliť slová s VEĽKÝMI PÍSMENAMI"
#. stYh3
-#: cui/uiconfig/ui/textflowpage.ui:217
+#: cui/uiconfig/ui/textflowpage.ui:197
msgctxt "textflowpage|LabelHyphenation"
msgid "Hyphenation"
msgstr "Delenie slov"
#. ZLB8K
-#: cui/uiconfig/ui/textflowpage.ui:249
+#: cui/uiconfig/ui/textflowpage.ui:229
msgctxt "textflowpage|checkInsert"
msgid "_Insert"
msgstr "Vlož_iť"
-#. Zje9t
-#: cui/uiconfig/ui/textflowpage.ui:259
-msgctxt "textflowpage|extended_tip|checkInsert"
-msgid "Select this check box, and then select the break type that you want to use."
-msgstr "Zaškrtnite toto pole a potom vyberte typ zalomenia, ktorý chcete použiť."
-
#. JiDat
-#: cui/uiconfig/ui/textflowpage.ui:270
+#: cui/uiconfig/ui/textflowpage.ui:245
msgctxt "textflowpage|checkPageStyle"
msgid "With page st_yle:"
msgstr "So štýlom stran_y:"
-#. RFwGc
-#: cui/uiconfig/ui/textflowpage.ui:283
-msgctxt "textflowpage|extended_tip|checkPageStyle"
-msgid "Select this check box, and then select the page style that you want to use for the first page after the break."
-msgstr "Zaškrtnite toto pole a potom vyberte štýl stránky, ktorý chcete použiť pre prvú stranu po zalomení."
-
#. fMeRA
-#: cui/uiconfig/ui/textflowpage.ui:296
+#: cui/uiconfig/ui/textflowpage.ui:266
msgctxt "textflowpage|labelType"
msgid "_Type:"
msgstr "_Typ:"
-#. tX6ag
-#: cui/uiconfig/ui/textflowpage.ui:317
-msgctxt "textflowpage|extended_tip|spinPageNumber"
-msgid "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."
-msgstr "Zadajte číslo prvej strany, ktorá nasleduje po zalomení. Ak chcete pokračovať v súčasnom číslovaní stránok, nechajte zaškrtávacie políčko nezaškrtnuté."
-
#. nrtWo
-#: cui/uiconfig/ui/textflowpage.ui:328
+#: cui/uiconfig/ui/textflowpage.ui:293
msgctxt "textflowpage|labelPageNum"
msgid "Page _number:"
msgstr "Čí_slo strany:"
#. xNBLd
-#: cui/uiconfig/ui/textflowpage.ui:349
+#: cui/uiconfig/ui/textflowpage.ui:314
msgctxt "textflowpage|labelPosition"
msgid "Position:"
msgstr "Poloha:"
#. bFKWE
-#: cui/uiconfig/ui/textflowpage.ui:369
+#: cui/uiconfig/ui/textflowpage.ui:334
msgctxt "textflowpage|comboPageStyle-atkobject"
msgid "Page Style"
msgstr "Štýl strany"
-#. E97k4
-#: cui/uiconfig/ui/textflowpage.ui:370
-msgctxt "textflowpage|extended_tip|comboPageStyle"
-msgid "Select the formatting style to use for the first page after the break."
-msgstr "Vyberte štýl formátovania, ktorý sa použije pre prvú stránku po zalomení."
-
#. aziF3
-#: cui/uiconfig/ui/textflowpage.ui:384
+#: cui/uiconfig/ui/textflowpage.ui:348
msgctxt "textflowpage|comboBreakType"
msgid "Page"
msgstr "Strana"
#. MeAgB
-#: cui/uiconfig/ui/textflowpage.ui:385
+#: cui/uiconfig/ui/textflowpage.ui:349
msgctxt "textflowpage|comboBreakType"
msgid "Column"
msgstr "Stĺpec"
-#. eLRHP
-#: cui/uiconfig/ui/textflowpage.ui:389
-msgctxt "textflowpage|extended_tip|comboBreakType"
-msgid "Select the break type that you want to insert."
-msgstr "Vyberte typ zalomenia, ktorý chcete vložiť."
-
#. 8RF2z
-#: cui/uiconfig/ui/textflowpage.ui:403
+#: cui/uiconfig/ui/textflowpage.ui:362
msgctxt "textflowpage|comboBreakPosition"
msgid "Before"
msgstr "Pred"
#. vMWKU
-#: cui/uiconfig/ui/textflowpage.ui:404
+#: cui/uiconfig/ui/textflowpage.ui:363
msgctxt "textflowpage|comboBreakPosition"
msgid "After"
msgstr "Za"
-#. BJqRd
-#: cui/uiconfig/ui/textflowpage.ui:408
-msgctxt "textflowpage|extended_tip|comboBreakPosition"
-msgid "Select where you want to insert the break."
-msgstr "Vyberte, kam chcete zalomenie vložiť."
-
#. B657G
-#: cui/uiconfig/ui/textflowpage.ui:428
+#: cui/uiconfig/ui/textflowpage.ui:382
msgctxt "textflowpage|label3"
msgid "Breaks"
msgstr "Zalomenia"
#. MEpn4
-#: cui/uiconfig/ui/textflowpage.ui:460
+#: cui/uiconfig/ui/textflowpage.ui:414
msgctxt "textflowpage|checkSplitPara"
msgid "_Do not split paragraph"
msgstr "_Nerozdeľovať odsek"
-#. XLpSD
-#: cui/uiconfig/ui/textflowpage.ui:470
-msgctxt "textflowpage|extended_tip|checkSplitPara"
-msgid "Shifts the entire paragraph to the next page or column after a break is inserted."
-msgstr "Pri zalomení stránky či stĺpca sa odsek nerozdeľuje, ale celý sa posunie na nasledujúcu stránku alebo do nasledujúceho stĺpca."
-
#. vWpZR
-#: cui/uiconfig/ui/textflowpage.ui:482
+#: cui/uiconfig/ui/textflowpage.ui:431
msgctxt "textflowpage|checkKeepPara"
msgid "_Keep with next paragraph"
msgstr "_Ponechať s nasledujúcim odsekom"
-#. i6pDE
-#: cui/uiconfig/ui/textflowpage.ui:492
-msgctxt "textflowpage|extended_tip|checkKeepPara"
-msgid "Keeps the current paragraph and the following paragraph together when a break or column break is inserted."
-msgstr "Pri zalomení stránky či stĺpca ponechá súčasný a nasledujúci odsek spolu."
-
#. dQZQ7
-#: cui/uiconfig/ui/textflowpage.ui:504
+#: cui/uiconfig/ui/textflowpage.ui:448
msgctxt "textflowpage|checkOrphan"
msgid "_Orphan control"
msgstr "K_ontrola sirôt"
-#. zADSo
-#: cui/uiconfig/ui/textflowpage.ui:517
-msgctxt "textflowpage|extended_tip|checkOrphan"
-msgid "Specifies the minimum number of lines in a paragraph before a page break. Select this check box, and then enter a number in the Lines box."
-msgstr "Určuje minimálny počet riadkov v odseku pred zalomením strany. Zaškrtnite toto políčko a potom do poľa Riadky zadajte číslo."
-
#. pnW52
-#: cui/uiconfig/ui/textflowpage.ui:528
+#: cui/uiconfig/ui/textflowpage.ui:467
msgctxt "textflowpage|checkWidow"
msgid "_Widow control"
msgstr "Kontrola _vdov"
-#. SmFT5
-#: cui/uiconfig/ui/textflowpage.ui:541
-msgctxt "textflowpage|extended_tip|checkWidow"
-msgid "Specifies the minimum number of lines in a paragraph in the first page after the break. Select this check box, and then enter a number in the Lines box."
-msgstr "Určuje minimálny počet riadkov v odseku na prvej strane po zalomení. Zaškrtnite toto políčko a potom do poľa Riadky zadajte číslo."
-
-#. mb9LZ
-#: cui/uiconfig/ui/textflowpage.ui:561
-msgctxt "textflowpage|extended_tip|spinOrphan"
-msgid "Specifies the minimum number of lines in a paragraph before a page break. Select this check box, and then enter a number in the Lines box."
-msgstr "Určuje minimálny počet riadkov v odseku pred zalomením strany. Zaškrtnite toto políčko a potom do poľa Riadky zadajte číslo."
-
-#. 3cNEP
-#: cui/uiconfig/ui/textflowpage.ui:582
-msgctxt "textflowpage|extended_tip|spinWidow"
-msgid "Specifies the minimum number of lines in a paragraph in the first page after the break. Select this check box, and then enter a number in the Lines box."
-msgstr "Určuje minimálny počet riadkov v odseku na prvej strane po zalomení. Zaškrtnite toto políčko a potom do poľa Riadky zadajte číslo."
-
#. dcEiB
-#: cui/uiconfig/ui/textflowpage.ui:595
+#: cui/uiconfig/ui/textflowpage.ui:519
msgctxt "textflowpage|labelOrphan"
msgid "lines"
msgstr "riadkov"
#. 6swWD
-#: cui/uiconfig/ui/textflowpage.ui:607
+#: cui/uiconfig/ui/textflowpage.ui:531
msgctxt "textflowpage|labelWidow"
msgid "lines"
msgstr "riadkov"
#. nXryi
-#: cui/uiconfig/ui/textflowpage.ui:623
+#: cui/uiconfig/ui/textflowpage.ui:547
msgctxt "textflowpage|labelOptions"
msgid "Options"
msgstr "Možnosti"
-#. qrhEF
-#: cui/uiconfig/ui/textflowpage.ui:640
-msgctxt "textflowpage|extended_tip|TextFlowPage"
-msgid "Specify hyphenation and pagination options."
-msgstr "Zadajte možnosti delenia slov a stránkovania."
-
#. 5BskL
#: cui/uiconfig/ui/thesaurus.ui:23
msgctxt "thesaurus|ThesaurusDialog"
@@ -20762,71 +15377,35 @@ msgid "Thesaurus"
msgstr "Slovník synoným"
#. BBvLD
-#: cui/uiconfig/ui/thesaurus.ui:55
+#: cui/uiconfig/ui/thesaurus.ui:58
msgctxt "thesaurus|replace"
msgid "_Replace"
msgstr "Nah_radiť"
#. x792E
-#: cui/uiconfig/ui/thesaurus.ui:102
+#: cui/uiconfig/ui/thesaurus.ui:105
msgctxt "thesaurus|label1"
msgid "Current word:"
msgstr "Aktuálne slovo:"
#. GQz9P
-#: cui/uiconfig/ui/thesaurus.ui:117
+#: cui/uiconfig/ui/thesaurus.ui:120
msgctxt "thesaurus|label2"
msgid "Alternatives:"
msgstr "Alternatívy:"
#. DqB5k
-#: cui/uiconfig/ui/thesaurus.ui:132
+#: cui/uiconfig/ui/thesaurus.ui:135
msgctxt "thesaurus|label3"
msgid "Replace with:"
msgstr "Nahradiť za:"
-#. wMG8r
-#: cui/uiconfig/ui/thesaurus.ui:150
-msgctxt "thesaurus|extended_tip|replaceed"
-msgid "The word or words in the \"Replace with\" text box will replace the original word in the document when you click the Replace button. You can also type text directly in this box."
-msgstr "Slovo alebo slová v textovom poli „Nahradiť za“ nahradia pôvodné slovo v dokumente po kliknutí na tlačidlo Nahradiť. Môžete tiež zadať text priamo do tohto poľa."
-
-#. xW3j2
-#: cui/uiconfig/ui/thesaurus.ui:170
-msgctxt "thesaurus|extended_tip|left"
-msgid "Recalls the previous contents of the \"Current word\" text box."
-msgstr "Pripomína predchádzajúci obsah textového poľa „Aktuálne slovo“."
-
-#. MysZM
-#: cui/uiconfig/ui/thesaurus.ui:186
-msgctxt "thesaurus|extended_tip|langcb"
-msgid "Select a language for the thesaurus."
-msgstr "Vyberte jazyk pre tezaurus."
-
-#. 2GzjN
-#: cui/uiconfig/ui/thesaurus.ui:211
-msgctxt "thesaurus|extended_tip|wordcb"
-msgid "Displays the current word, or the related term that you selected by double-clicking a line in the Alternatives list. You can also type text directly in this box to look up your text."
-msgstr "Dvojitým kliknutím na riadok v zozname Alternatívy zobrazí aktuálne slovo alebo súvisiaci výraz, ktorý ste vybrali. Môžete tiež zadať text priamo do tohto poľa a vyhľadať text."
-
-#. FGgNh
-#: cui/uiconfig/ui/thesaurus.ui:263
-msgctxt "thesaurus|extended_tip|alternatives"
-msgid "Click an entry in the Alternatives list to copy the related term to the \"Replace with\" text box. Double-click an entry to copy the related term to the \"Current word\" text box and to look up that term."
-msgstr "Kliknutím na položku v zozname Alternatívy skopírujete súvisiaci výraz do textového poľa „Nahradiť“. Dvojitým kliknutím na položku skopírujete súvisiaci výraz do textového poľa „Aktuálne slovo“ a vyhľadáte daný výraz."
-
#. qZ6KM
-#: cui/uiconfig/ui/thesaurus.ui:281
+#: cui/uiconfig/ui/thesaurus.ui:259
msgctxt "thesaurus|RID_SVXSTR_ERR_TEXTNOTFOUND"
msgid "No alternatives found."
msgstr "Nenájdená iná možnosť."
-#. VGEXu
-#: cui/uiconfig/ui/thesaurus.ui:320
-msgctxt "thesaurus|extended_tip|ThesaurusDialog"
-msgid "Opens a dialog box to replace the current word with a synonym, or a related term."
-msgstr "Otvorí dialógové okno na nahradenie aktuálneho slova synonymom alebo súvisiacim výrazom."
-
#. BeTCk
#: cui/uiconfig/ui/tipofthedaydialog.ui:8
msgctxt "TipOfTheDayDialog|Name"
@@ -20863,264 +15442,120 @@ msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr "Odkaz"
-#. WGqn5
-#: cui/uiconfig/ui/toolbarmodedialog.ui:13
-msgctxt "ToolbarmodeDialog|Name"
-msgid "Select Your Preferred User Interface"
-msgstr ""
-
-#. odHug
-#: cui/uiconfig/ui/toolbarmodedialog.ui:110
-msgctxt "ToolbarmodeDialog|radiobutton1"
-msgid "Standard Toolbar"
-msgstr ""
-
-#. wTDDF
-#: cui/uiconfig/ui/toolbarmodedialog.ui:127
-msgctxt "ToolbarmodeDialog|radiobutton2"
-msgid "Single Toolbar"
-msgstr ""
-
-#. AMgFL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:145
-msgctxt "ToolbarmodeDialog|radiobutton3"
-msgid "Sidebar"
-msgstr ""
-
-#. WRYEa
-#: cui/uiconfig/ui/toolbarmodedialog.ui:163
-msgctxt "ToolbarmodeDialog|radiobutton4"
-msgid "Tabbed"
-msgstr ""
-
-#. YvSd9
-#: cui/uiconfig/ui/toolbarmodedialog.ui:181
-msgctxt "ToolbarmodeDialog|radiobutton5"
-msgid "Tabbed Compact"
-msgstr ""
-
-#. jAJbo
-#: cui/uiconfig/ui/toolbarmodedialog.ui:199
-msgctxt "ToolbarmodeDialog|radiobutton6"
-msgid "Groupedbar Compact"
-msgstr ""
-
-#. yT3UT
-#: cui/uiconfig/ui/toolbarmodedialog.ui:217
-msgctxt "ToolbarmodeDialog|radiobutton7"
-msgid "Groupedbar"
-msgstr ""
-
-#. iSVgL
-#: cui/uiconfig/ui/toolbarmodedialog.ui:235
-msgctxt "ToolbarmodeDialog|radiobutton8"
-msgid "Contextual Single"
-msgstr ""
-
-#. TrcWq
-#: cui/uiconfig/ui/toolbarmodedialog.ui:253
-msgctxt "ToolbarmodeDialog|radiobutton9"
-msgid "Contextual Groups"
-msgstr ""
-
-#. kGdXR
-#: cui/uiconfig/ui/toolbarmodedialog.ui:277
-msgctxt "ToolbarmodeDialog|leftframe"
-msgid "UI variants"
-msgstr ""
-
-#. H7m7J
-#: cui/uiconfig/ui/toolbarmodedialog.ui:350
-msgctxt "ToolbarmodeDialog|rightframe"
-msgid "Preview"
-msgstr ""
-
#. WChLB
#: cui/uiconfig/ui/transparencytabpage.ui:77
msgctxt "transparencytabpage|RBT_TRANS_OFF"
msgid "_No transparency"
msgstr "Žiad_na priehľadnosť"
-#. vysNZ
-#: cui/uiconfig/ui/transparencytabpage.ui:87
-msgctxt "transparencytabpage|extended_tip|RBT_TRANS_OFF"
-msgid "Turns off color transparency."
-msgstr "Vypne priehľadnosť farby."
-
#. DEU8f
-#: cui/uiconfig/ui/transparencytabpage.ui:98
+#: cui/uiconfig/ui/transparencytabpage.ui:93
msgctxt "transparencytabpage|RBT_TRANS_LINEAR"
msgid "_Transparency:"
msgstr "Priehľadno_sť:"
-#. RpVxj
-#: cui/uiconfig/ui/transparencytabpage.ui:111
-msgctxt "transparencytabpage|extended_tip|RBT_TRANS_LINEAR"
-msgid "Turns on color transparency. Select this option, and then enter a number in the box, where 0% is fully opaque and 100% is fully transparent."
-msgstr "Zapne priehľadnosť farby. Vyberte túto možnosť a potom do poľa zadajte číslo, kde 0% je úplne nepriehľadné a 100% je úplne priehľadné."
-
#. mHokD
-#: cui/uiconfig/ui/transparencytabpage.ui:122
+#: cui/uiconfig/ui/transparencytabpage.ui:112
msgctxt "transparencytabpage|RBT_TRANS_GRADIENT"
msgid "_Gradient"
msgstr "_Prechod"
-#. 6WDfQ
-#: cui/uiconfig/ui/transparencytabpage.ui:132
-msgctxt "transparencytabpage|extended_tip|RBT_TRANS_GRADIENT"
-msgid "Applies a transparency gradient to the current fill color. Select this option, and then set the gradient properties."
-msgstr "Použije prechod priehľadnosti na aktuálnu farbu výplne. Vyberte túto možnosť a potom nastavte vlastnosti prechodu."
-
-#. FBxYk
-#: cui/uiconfig/ui/transparencytabpage.ui:152
-msgctxt "transparencytabpage|extended_tip|MTR_TRANSPARENT"
-msgid "Adjusts the transparency of the current fill color. Enter a number between 0% (opaque) and 100% (transparent)."
-msgstr "Upravuje priehľadnosť aktuálnej farby výplne. Zadajte číslo od 0% (nepriehľadné) do 100% (priehľadné)."
-
-#. 7XQDC
-#: cui/uiconfig/ui/transparencytabpage.ui:188
-msgctxt "transparencytabpage|extended_tip|MTR_TRGR_END_VALUE"
-msgid "Enter a transparency value for the endpoint of the gradient, where 0% is fully opaque and 100% is fully transparent."
-msgstr "Zadajte hodnotu priehľadnosti pre koncový bod gradientu, kde 0% je úplne nepriehľadné a 100% je úplne priehľadné."
-
-#. fq8QF
-#: cui/uiconfig/ui/transparencytabpage.ui:205
-msgctxt "transparencytabpage|extended_tip|MTR_TRGR_START_VALUE"
-msgid "Enter a transparency value for the beginning point of the gradient, where 0% is fully opaque and 100% is fully transparent."
-msgstr "Zadajte hodnotu priehľadnosti pre začiatočný bod prechodu, kde 0% je úplne nepriehľadné a 100% je úplne priehľadné."
-
-#. 5EEBy
-#: cui/uiconfig/ui/transparencytabpage.ui:222
-msgctxt "transparencytabpage|extended_tip|MTR_TRGR_BORDER"
-msgid "Enter the amount by which you want to adjust the transparent area of the gradient. The default value is 0%."
-msgstr "Zadajte hodnotu, o ktorú chcete upraviť priehľadnú oblasť prechodu. Predvolená hodnota je 0%."
-
-#. Yr5Vv
-#: cui/uiconfig/ui/transparencytabpage.ui:239
-msgctxt "transparencytabpage|extended_tip|MTR_TRGR_ANGLE"
-msgid "Enter a rotation angle for the gradient."
-msgstr "Zadajte uhol natočenia prechodu."
-
-#. tJHu5
-#: cui/uiconfig/ui/transparencytabpage.ui:256
-msgctxt "transparencytabpage|extended_tip|MTR_TRGR_CENTER_Y"
-msgid "Enter the vertical offset for the gradient."
-msgstr "Zadajte zvislé posunutie prechodu."
-
-#. nascp
-#: cui/uiconfig/ui/transparencytabpage.ui:273
-msgctxt "transparencytabpage|extended_tip|MTR_TRGR_CENTER_X"
-msgid "Enter the horizontal offset for the gradient."
-msgstr "Zadajte vodorovné odsadenie prechodu."
-
#. YgMd8
-#: cui/uiconfig/ui/transparencytabpage.ui:287
+#: cui/uiconfig/ui/transparencytabpage.ui:237
msgctxt "transparencytabpage|liststoreTYPE"
msgid "Linear"
msgstr "Lineárny"
#. 8CgMQ
-#: cui/uiconfig/ui/transparencytabpage.ui:288
+#: cui/uiconfig/ui/transparencytabpage.ui:238
msgctxt "transparencytabpage|liststoreTYPE"
msgid "Axial"
msgstr "Osový"
#. hyMck
-#: cui/uiconfig/ui/transparencytabpage.ui:289
+#: cui/uiconfig/ui/transparencytabpage.ui:239
msgctxt "transparencytabpage|liststoreTYPE"
msgid "Radial"
msgstr "Radiálny"
#. mEnF6
-#: cui/uiconfig/ui/transparencytabpage.ui:290
+#: cui/uiconfig/ui/transparencytabpage.ui:240
msgctxt "transparencytabpage|liststoreTYPE"
msgid "Ellipsoid"
msgstr "Oválny"
#. GDBS5
-#: cui/uiconfig/ui/transparencytabpage.ui:291
+#: cui/uiconfig/ui/transparencytabpage.ui:241
msgctxt "transparencytabpage|liststoreTYPE"
msgid "Quadratic"
msgstr "Kvadratický"
#. NgYW8
-#: cui/uiconfig/ui/transparencytabpage.ui:292
+#: cui/uiconfig/ui/transparencytabpage.ui:242
msgctxt "transparencytabpage|liststoreTYPE"
msgid "Square"
msgstr "Štvorcový"
-#. 9hAzC
-#: cui/uiconfig/ui/transparencytabpage.ui:296
-msgctxt "transparencytabpage|extended_tip|LB_TRGR_GRADIENT_TYPES"
-msgid "Select the type of transparency gradient that you want to apply."
-msgstr "Vyberte typ gradientu priehľadnosti, ktorý chcete použiť."
-
#. EmYEU
-#: cui/uiconfig/ui/transparencytabpage.ui:314
+#: cui/uiconfig/ui/transparencytabpage.ui:259
msgctxt "transparencytabpage|FT_TRGR_TYPE"
msgid "Ty_pe:"
msgstr "Ty_p:"
#. kfKen
-#: cui/uiconfig/ui/transparencytabpage.ui:335
+#: cui/uiconfig/ui/transparencytabpage.ui:280
msgctxt "transparencytabpage|FT_TRGR_CENTER_X"
msgid "Center _X:"
msgstr "Stred _X:"
#. Nsx4p
-#: cui/uiconfig/ui/transparencytabpage.ui:356
+#: cui/uiconfig/ui/transparencytabpage.ui:301
msgctxt "transparencytabpage|FT_TRGR_CENTER_Y"
msgid "Center _Y:"
msgstr "Stred _Y:"
#. RWNkA
-#: cui/uiconfig/ui/transparencytabpage.ui:377
+#: cui/uiconfig/ui/transparencytabpage.ui:322
msgctxt "transparencytabpage|FT_TRGR_ANGLE"
msgid "_Angle:"
msgstr "_Uhol:"
#. uRCB3
-#: cui/uiconfig/ui/transparencytabpage.ui:398
+#: cui/uiconfig/ui/transparencytabpage.ui:343
msgctxt "transparencytabpage|FT_TRGR_BORDER"
msgid "_Border:"
msgstr "_Okraj:"
#. JBFw6
-#: cui/uiconfig/ui/transparencytabpage.ui:419
+#: cui/uiconfig/ui/transparencytabpage.ui:364
msgctxt "transparencytabpage|FT_TRGR_START_VALUE"
msgid "_Start value:"
msgstr "_Počiatočná hodnota:"
#. opX8T
-#: cui/uiconfig/ui/transparencytabpage.ui:440
+#: cui/uiconfig/ui/transparencytabpage.ui:385
msgctxt "transparencytabpage|FT_TRGR_END_VALUE"
msgid "_End value:"
msgstr "_Konečná hodnota:"
#. vFPGU
-#: cui/uiconfig/ui/transparencytabpage.ui:497
+#: cui/uiconfig/ui/transparencytabpage.ui:442
msgctxt "transparencytabpage|CTL_BITMAP_PREVIEW-atkobject"
msgid "Example"
msgstr "Príklad"
#. AiQzg
-#: cui/uiconfig/ui/transparencytabpage.ui:532
+#: cui/uiconfig/ui/transparencytabpage.ui:477
msgctxt "transparencytabpage|CTL_TRANS_PREVIEW-atkobject"
msgid "Example"
msgstr "Príklad"
#. UMCGy
-#: cui/uiconfig/ui/transparencytabpage.ui:576
+#: cui/uiconfig/ui/transparencytabpage.ui:521
msgctxt "transparencytabpage|FL_PROP"
msgid "Area Transparency Mode"
msgstr "Režim priehľadnosti"
-#. 2tXmW
-#: cui/uiconfig/ui/transparencytabpage.ui:585
-msgctxt "transparencytabpage|extended_tip|TransparencyTabPage"
-msgid "Set the transparency options for the fill that you apply to the selected object."
-msgstr "Nastavte možnosti priehľadnosti pre výplň, ktorú použijete na vybraný objekt."
-
#. vUHk9
#: cui/uiconfig/ui/tsaurldialog.ui:16
msgctxt "tsaurldialog|TSAURLDialog"
@@ -21128,25 +15563,25 @@ msgid "Time Stamping Authority URLs"
msgstr "Adresy URL autorít časových pečiatok"
#. osDWc
-#: cui/uiconfig/ui/tsaurldialog.ui:66
+#: cui/uiconfig/ui/tsaurldialog.ui:67
msgctxt "tsaurldialog|add"
msgid "_Add..."
msgstr "Prid_ať..."
#. px3EH
-#: cui/uiconfig/ui/tsaurldialog.ui:143
+#: cui/uiconfig/ui/tsaurldialog.ui:145
msgctxt "tsaurldialog|label2"
msgid "Add or delete Time Stamp Authority URLs"
msgstr "Pridajte alebo odstráňte URL autority časových pečiatok"
#. fUEE7
-#: cui/uiconfig/ui/tsaurldialog.ui:205
+#: cui/uiconfig/ui/tsaurldialog.ui:207
msgctxt "tsaurldialog|enteraurl"
msgid "Enter a Time Stamp Authority URL"
msgstr "Zadajte URL autority časových pečiatok"
#. NEFBL
-#: cui/uiconfig/ui/tsaurldialog.ui:233
+#: cui/uiconfig/ui/tsaurldialog.ui:235
msgctxt "tsaurldialog|label1"
msgid "TSA URL"
msgstr "URL autority časových pečiatok"
@@ -21199,126 +15634,60 @@ msgctxt "wordcompletionpage|enablewordcomplete"
msgid "Enable word _completion"
msgstr "Zapnúť _dokončovanie slov"
-#. C6wQP
-#: cui/uiconfig/ui/wordcompletionpage.ui:79
-msgctxt "wordcompletionpage|extended_tip|enablewordcomplete"
-msgid "Stores frequently used words, and automatically completes a word after you type three letters that match the first three letters of a stored word."
-msgstr "Uloží často používané slová a po dokončení troch písmen, ktoré sa zhodujú s prvými tromi písmenami uloženého slova, sa slovo automaticky dokončí."
-
#. F6ECQ
-#: cui/uiconfig/ui/wordcompletionpage.ui:100
+#: cui/uiconfig/ui/wordcompletionpage.ui:95
msgctxt "wordcompletionpage|appendspace"
msgid "_Append space"
msgstr "_Pridať medzeru"
-#. B3Tgo
-#: cui/uiconfig/ui/wordcompletionpage.ui:109
-msgctxt "wordcompletionpage|extended_tip|appendspace"
-msgid "If you do not add punctuation after the word, %PRODUCTNAME adds a space."
-msgstr "Ak za slovo nepridáte interpunkciu, %PRODUCTNAME pridá medzeru."
-
#. YyYGC
-#: cui/uiconfig/ui/wordcompletionpage.ui:120
+#: cui/uiconfig/ui/wordcompletionpage.ui:110
msgctxt "wordcompletionpage|showastip"
msgid "_Show as tip"
msgstr "Zobraziť ako _tip"
-#. AM5rj
-#: cui/uiconfig/ui/wordcompletionpage.ui:129
-msgctxt "wordcompletionpage|extended_tip|showastip"
-msgid "Displays the completed word as a Help Tip."
-msgstr "Dokončené slovo zobrazí ako bublinu."
-
#. RJa2G
-#: cui/uiconfig/ui/wordcompletionpage.ui:168
+#: cui/uiconfig/ui/wordcompletionpage.ui:153
msgctxt "wordcompletionpage|label2"
msgid "Mi_n. word length:"
msgstr "Mi_n. dĺžka slova:"
-#. XSEGa
-#: cui/uiconfig/ui/wordcompletionpage.ui:187
-msgctxt "wordcompletionpage|extended_tip|minwordlen"
-msgid "Enter the minimum word length for a word to become eligible for the word completion feature."
-msgstr "Zadajte minimálnu dĺžku slova, aby sa slovo stalo funkčným pre dokončovanie slova."
-
#. YAb3D
-#: cui/uiconfig/ui/wordcompletionpage.ui:200
+#: cui/uiconfig/ui/wordcompletionpage.ui:180
msgctxt "wordcompletionpage|label1"
msgid "_Max. entries:"
msgstr "_Max. počet položiek:"
-#. Ypa2L
-#: cui/uiconfig/ui/wordcompletionpage.ui:219
-msgctxt "wordcompletionpage|extended_tip|maxentries"
-msgid "Enter the maximum number of words that you want to store in the Word Completion list."
-msgstr "Do zoznamu Dokončovanie slov zadajte maximálny počet slov, ktoré chcete uložiť."
-
#. SzABn
-#: cui/uiconfig/ui/wordcompletionpage.ui:232
+#: cui/uiconfig/ui/wordcompletionpage.ui:207
msgctxt "wordcompletionpage|label3"
msgid "Acc_ept with:"
msgstr "Pri_jať s:"
-#. gPj5A
-#: cui/uiconfig/ui/wordcompletionpage.ui:248
-msgctxt "wordcompletionpage|extended_tip|acceptwith"
-msgid "Select the key that you want to use to accept the automatic word completion."
-msgstr "Vyberte kláves, ktorý chcete použiť na prijatie návrhu automatického dokončovania slov."
-
#. iedK3
-#: cui/uiconfig/ui/wordcompletionpage.ui:283
+#: cui/uiconfig/ui/wordcompletionpage.ui:253
msgctxt "acorreplacepage|collectedwords"
msgid "Collected Words"
msgstr "Zozbierané slová"
-#. GCXAm
-#: cui/uiconfig/ui/wordcompletionpage.ui:329
-msgctxt "wordcompletionpage|extended_tip|entries"
-msgid "Lists the collected words. The list is valid until you close the current document. To make the list available to other documents in the current session, disable \"When closing a document, remove the words collected from it from the list\"."
-msgstr "Uvádza zozbierané slová. Zoznam je platný, kým nezavriete aktuálny dokument. Ak chcete zoznam sprístupniť pre ďalšie dokumenty v aktuálnej relácii, deaktivujte možnosť „Pri zatváraní dokumentu odstráňte zo zoznamu zozbierané slová“."
-
#. Akygd
-#: cui/uiconfig/ui/wordcompletionpage.ui:342
+#: cui/uiconfig/ui/wordcompletionpage.ui:307
msgctxt "wordcompletionpage|whenclosing"
msgid "_When closing a document, remove the words collected from it from the list"
msgstr "_Pri zatváraní dokumentu, odstrániť slová zo zoznamu, ktoré boli zozbierané z daného dokumentu"
-#. RFvtW
-#: cui/uiconfig/ui/wordcompletionpage.ui:352
-msgctxt "wordcompletionpage|extended_tip|whenclosing"
-msgid "When enabled, the list gets cleared when closing the current document. When disabled, makes the current Word Completion list available to other documents after you close the current document. The list remains available until you exit %PRODUCTNAME."
-msgstr "Ak je táto možnosť zapnutá, zoznam sa vymaže pri zatváraní aktuálneho dokumentu. Ak je vypnutá, po zatvorení aktuálneho dokumentu sa aktuálny zoznam dokončovania slov sprístupní pre ďalšie dokumenty. Zoznam zostáva k dispozícii, kým neukončíte program %PRODUCTNAME."
-
#. f7oAK
-#: cui/uiconfig/ui/wordcompletionpage.ui:367
+#: cui/uiconfig/ui/wordcompletionpage.ui:327
msgctxt "wordcompletionpage|collectwords"
msgid "C_ollect words"
msgstr "Zhr_omažďovať návrhy"
-#. AJuiz
-#: cui/uiconfig/ui/wordcompletionpage.ui:376
-msgctxt "wordcompletionpage|extended_tip|collectwords"
-msgid "Adds the frequently used words to a list. To remove a word from the Word Completion list, select the word, and then click Delete Entry."
-msgstr "Pridá často používané slová do zoznamu. Ak chcete slovo odstrániť zo zoznamu Dokončovanie slov, vyberte ho a potom kliknite na položku Odstrániť záznam."
-
#. yzZjo
-#: cui/uiconfig/ui/wordcompletionpage.ui:388
+#: cui/uiconfig/ui/wordcompletionpage.ui:343
msgctxt "wordcompletionpage|delete"
msgid "_Delete"
msgstr "_Zmazať"
-#. 4HjyH
-#: cui/uiconfig/ui/wordcompletionpage.ui:397
-msgctxt "wordcompletionpage|extended_tip|delete"
-msgid "Removes the selected word or words from the Word Completion list."
-msgstr "Odstráni vybrané slovo alebo slová zo zoznamu Dokončovanie slov."
-
-#. zqnKv
-#: cui/uiconfig/ui/wordcompletionpage.ui:428
-msgctxt "wordcompletionpage|extended_tip|WordCompletionPage"
-msgid "Stores frequently used words, and automatically completes a word after you type three letters that match the first three letters of a stored word."
-msgstr "Uloží často používané slová a po dokončení troch písmen, ktoré sa zhodujú s prvými tromi písmenami uloženého slova, sa slovo automaticky dokončí."
-
#. gzUCC
#: cui/uiconfig/ui/zoomdialog.ui:19
msgctxt "zoomdialog|ZoomDialog"
@@ -21331,146 +15700,74 @@ msgctxt "zoomdialog|optimal"
msgid "Optimal"
msgstr "Optimálne"
-#. Yd7ht
-#: cui/uiconfig/ui/zoomdialog.ui:122
-msgctxt "zoomdialog|extended_tip|optimal"
-msgid "Resizes the display to fit the width of the text in the document at the moment the command is started."
-msgstr "Zmení veľkosť zobrazenia tak, aby zodpovedala šírke textu v dokumente v okamihu spustenia príkazu."
-
#. RfuDU
-#: cui/uiconfig/ui/zoomdialog.ui:134
+#: cui/uiconfig/ui/zoomdialog.ui:129
msgctxt "zoomdialog|fitwandh"
msgid "Fit width and height"
msgstr "Prispôsobiť šírku a výšku"
-#. ZHbzV
-#: cui/uiconfig/ui/zoomdialog.ui:144
-msgctxt "zoomdialog|extended_tip|fitwandh"
-msgid "Displays the entire page on your screen."
-msgstr "Zobrazí celú stranu na obrazovke."
-
#. P9XGA
-#: cui/uiconfig/ui/zoomdialog.ui:156
+#: cui/uiconfig/ui/zoomdialog.ui:146
msgctxt "zoomdialog|fitw"
msgid "Fit width"
msgstr "Prispôsobiť šírku"
-#. ANMvA
-#: cui/uiconfig/ui/zoomdialog.ui:166
-msgctxt "zoomdialog|extended_tip|fitw"
-msgid "Displays the complete width of the document page. The top and bottom edges of the page may not be visible."
-msgstr "Zobrazí celú šírku strany dokumentu. Horný a dolný okraj strany nemusia byť viditeľné."
-
#. qeWB6
-#: cui/uiconfig/ui/zoomdialog.ui:178
+#: cui/uiconfig/ui/zoomdialog.ui:163
msgctxt "zoomdialog|100pc"
msgid "100%"
msgstr "100 %"
-#. kwdpk
-#: cui/uiconfig/ui/zoomdialog.ui:188
-msgctxt "zoomdialog|extended_tip|100pc"
-msgid "Displays the document at its actual size."
-msgstr "Zobrazí dokument v skutočnej veľkosti."
-
#. DE7hS
-#: cui/uiconfig/ui/zoomdialog.ui:205
+#: cui/uiconfig/ui/zoomdialog.ui:185
msgctxt "zoomdialog|variable"
msgid "Variable:"
msgstr "Premenná:"
-#. zSg6i
-#: cui/uiconfig/ui/zoomdialog.ui:218
-msgctxt "zoomdialog|extended_tip|variable"
-msgid "Enter the zoom factor at which you want to display the document. Enter a percentage in the box."
-msgstr "Zadajte faktor zväčšenia, pri ktorom chcete dokument zobraziť. Do poľa zadajte percento."
-
#. QGHoo
-#: cui/uiconfig/ui/zoomdialog.ui:239
+#: cui/uiconfig/ui/zoomdialog.ui:214
msgctxt "zoomdialog|zoomsb-atkobject"
msgid "Variable"
msgstr "Premenná"
-#. tnqjj
-#: cui/uiconfig/ui/zoomdialog.ui:240
-msgctxt "zoomdialog|extended_tip|zoomsb"
-msgid "Enter the zoom factor at which you want to display the document. Enter a percentage in the box."
-msgstr "Zadajte faktor zväčšenia, pri ktorom chcete dokument zobraziť. Do poľa zadajte percento."
-
#. 8iPB6
-#: cui/uiconfig/ui/zoomdialog.ui:265
+#: cui/uiconfig/ui/zoomdialog.ui:239
msgctxt "zoomdialog|label2"
msgid "Zoom Factor"
msgstr "Faktor mierky zobrazenia"
#. CzsKr
-#: cui/uiconfig/ui/zoomdialog.ui:298
+#: cui/uiconfig/ui/zoomdialog.ui:272
msgctxt "zoomdialog|automatic"
msgid "Automatic"
msgstr "Automatický"
-#. CQYiS
-#: cui/uiconfig/ui/zoomdialog.ui:307
-msgctxt "zoomdialog|extended_tip|automatic"
-msgid "The automatic view layout displays pages side by side, as many as the zoom factor allows."
-msgstr "Automatické rozloženie zobrazuje stránky vedľa seba, a to toľkých, koľko ich faktor zväčšenia umožňuje."
-
#. DBVGM
-#: cui/uiconfig/ui/zoomdialog.ui:319
+#: cui/uiconfig/ui/zoomdialog.ui:288
msgctxt "zoomdialog|singlepage"
msgid "Single page"
msgstr "Jedna strana"
-#. E2onG
-#: cui/uiconfig/ui/zoomdialog.ui:329
-msgctxt "zoomdialog|extended_tip|singlepage"
-msgid "The single page view layout displays pages beneath each other, but never side by side."
-msgstr "Zobrazenie jednej stránky zobrazuje stránky pod sebou, ale nikdy nie vedľa seba."
-
#. FdNqb
-#: cui/uiconfig/ui/zoomdialog.ui:346
+#: cui/uiconfig/ui/zoomdialog.ui:310
msgctxt "zoomdialog|columns"
msgid "Columns:"
msgstr "Stĺpce:"
-#. oXVAa
-#: cui/uiconfig/ui/zoomdialog.ui:360
-msgctxt "zoomdialog|extended_tip|columns"
-msgid "In columns view layout you see pages in a given number of columns side by side. Enter the number of columns."
-msgstr "V zobrazení stĺpcov vidíte vedľa seba stránky s daným počte stĺpcov. Zadajte počet stĺpcov."
-
#. opsyv
-#: cui/uiconfig/ui/zoomdialog.ui:382
+#: cui/uiconfig/ui/zoomdialog.ui:341
msgctxt "zoomdialog|columnssb-atkobject"
msgid "Columns"
msgstr "Stĺpce"
-#. psRyA
-#: cui/uiconfig/ui/zoomdialog.ui:383
-msgctxt "zoomdialog|extended_tip|columnssb"
-msgid "In columns view layout you see pages in a given number of columns side by side. Enter the number of columns."
-msgstr "V zobrazení stĺpcov vidíte vedľa seba stránky s daným počte stĺpcov. Zadajte počet stĺpcov."
-
#. rhLet
-#: cui/uiconfig/ui/zoomdialog.ui:407
+#: cui/uiconfig/ui/zoomdialog.ui:365
msgctxt "zoomdialog|bookmode"
msgid "Book mode"
msgstr "Režim knihy"
-#. egdNS
-#: cui/uiconfig/ui/zoomdialog.ui:420
-msgctxt "zoomdialog|extended_tip|bookmode"
-msgid "In book mode view layout you see two pages side by side as in an open book. The first page is a right page with an odd page number."
-msgstr "V zobrazení v režime knihy vidíte dve stránky vedľa seba ako v otvorenej knihe. Prvá strana je pravá strana s nepárnym číslom stránky."
-
#. pdZqi
-#: cui/uiconfig/ui/zoomdialog.ui:440
+#: cui/uiconfig/ui/zoomdialog.ui:393
msgctxt "zoomdialog|label1"
msgid "View Layout"
msgstr "Rozloženie zobrazenia"
-
-#. xrBmX
-#: cui/uiconfig/ui/zoomdialog.ui:472
-msgctxt "zoomdialog|extended_tip|ZoomDialog"
-msgid "Reduces or enlarges the screen display of %PRODUCTNAME."
-msgstr "Zmenší alebo zväčší zobrazenie obrazovky %PRODUCTNAME."
diff --git a/source/sk/dbaccess/messages.po b/source/sk/dbaccess/messages.po
index 671f2b5d852..9b1ef101a98 100644
--- a/source/sk/dbaccess/messages.po
+++ b/source/sk/dbaccess/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-12 15:02+0200\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
"PO-Revision-Date: 2020-10-02 06:35+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: Slovak <https://weblate.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/sk/>\n"
@@ -965,14 +965,20 @@ msgctxt "STR_TASKS"
msgid "Tasks"
msgstr "Úlohy"
-#. i4BHJ
+#. t46y2
#: dbaccess/inc/strings.hrc:183
+msgctxt "STR_DESCRIPTION"
+msgid "Description"
+msgstr ""
+
+#. i4BHJ
+#: dbaccess/inc/strings.hrc:184
msgctxt "STR_PREVIEW"
msgid "Preview"
msgstr "Náhľad"
#. MpYZa
-#: dbaccess/inc/strings.hrc:184
+#: dbaccess/inc/strings.hrc:185
msgctxt "STR_QUERY_CLOSEDOCUMENTS"
msgid ""
"The connection type has been altered.\n"
@@ -986,31 +992,31 @@ msgstr ""
"Chcete teraz zatvoriť všetky dokumenty?"
#. 5Ujux
-#: dbaccess/inc/strings.hrc:187
+#: dbaccess/inc/strings.hrc:188
msgctxt "STR_FRM_LABEL"
msgid "F~orm name"
msgstr "Názov f~ormulára"
#. zA6vD
-#: dbaccess/inc/strings.hrc:188
+#: dbaccess/inc/strings.hrc:189
msgctxt "STR_RPT_LABEL"
msgid "~Report name"
msgstr "Názov ~zostavy"
#. 8RUit
-#: dbaccess/inc/strings.hrc:189
+#: dbaccess/inc/strings.hrc:190
msgctxt "STR_FOLDER_LABEL"
msgid "F~older name"
msgstr "Náz~ov priečinku"
#. Twota
-#: dbaccess/inc/strings.hrc:190
+#: dbaccess/inc/strings.hrc:191
msgctxt "STR_SUB_DOCS_WITH_SCRIPTS"
msgid "The document contains forms or reports with embedded macros."
msgstr "Dokument obsahuje formuláre alebo zostavy obsahujúce vložené makrá."
#. v33uG
-#: dbaccess/inc/strings.hrc:191
+#: dbaccess/inc/strings.hrc:192
msgctxt "STR_SUB_DOCS_WITH_SCRIPTS_DETAIL"
msgid ""
"Macros should be embedded into the database document itself.\n"
@@ -1026,260 +1032,260 @@ msgstr ""
"Pokým nebude vykonaná táto migrácia, nebudete môcť vložiť makrá do databázového dokumentu. "
#. SBEJP
-#: dbaccess/inc/strings.hrc:196
+#: dbaccess/inc/strings.hrc:197
msgctxt "RID_STR_EMBEDDED_DATABASE"
msgid "Embedded database"
msgstr "Vložená databáza"
#. 9GfaL
-#: dbaccess/inc/strings.hrc:197
+#: dbaccess/inc/strings.hrc:198
msgctxt "RID_STR_NO_DIFF_CAT"
msgid "You cannot select different categories."
msgstr "Nemôžete vybrať rôzne kategórie."
#. HMRSN
-#: dbaccess/inc/strings.hrc:198
+#: dbaccess/inc/strings.hrc:199
msgctxt "RID_STR_UNSUPPORTED_OBJECT_TYPE"
msgid "Unsupported object type found ($type$)."
msgstr "Bol nájdený nepodporovaný typ objektu ($type$)."
#. YgB34
-#: dbaccess/inc/strings.hrc:199
+#: dbaccess/inc/strings.hrc:200
msgctxt "STR_PAGETITLE_GENERAL"
msgid "Advanced Properties"
msgstr "Rozšírené vlastnosti"
#. wFDHD
-#: dbaccess/inc/strings.hrc:200
+#: dbaccess/inc/strings.hrc:201
msgctxt "STR_PAGETITLE_ADVANCED"
msgid "Additional Settings"
msgstr "Ďalšie nastavenia"
#. HYDjE
-#: dbaccess/inc/strings.hrc:201
+#: dbaccess/inc/strings.hrc:202
msgctxt "STR_PAGETITLE_CONNECTION"
msgid "Connection settings"
msgstr "Nastavenia pripojenia"
#. KLRak
-#: dbaccess/inc/strings.hrc:202
+#: dbaccess/inc/strings.hrc:203
msgctxt "STR_TBL_LABEL"
msgid "~Table Name"
msgstr "Názov ~tabuľky"
#. WPmUe
-#: dbaccess/inc/strings.hrc:203
+#: dbaccess/inc/strings.hrc:204
msgctxt "STR_QRY_LABEL"
msgid "~Query name"
msgstr "Názov ~dotazu"
#. cGPht
-#: dbaccess/inc/strings.hrc:204
+#: dbaccess/inc/strings.hrc:205
msgctxt "STR_TITLE_RENAME"
msgid "Rename to"
msgstr "Premenovať na"
#. GQDBD
-#: dbaccess/inc/strings.hrc:205
+#: dbaccess/inc/strings.hrc:206
msgctxt "STR_TITLE_PASTE_AS"
msgid "Insert as"
msgstr "Vložiť ako"
#. yGyEU
-#: dbaccess/inc/strings.hrc:207
+#: dbaccess/inc/strings.hrc:208
msgctxt "STR_QUERY_BRW_DELETE_ROWS"
msgid "Do you want to delete the selected data?"
msgstr "Chcete odstrániť vybrané dáta?"
#. AMTEz
-#: dbaccess/inc/strings.hrc:208
+#: dbaccess/inc/strings.hrc:209
msgctxt "SBA_BROWSER_SETTING_ORDER"
msgid "Error setting the sort criteria"
msgstr "Chybné nastavenie kritérií­ pre zoraďovanie"
#. kXqdF
-#: dbaccess/inc/strings.hrc:209
+#: dbaccess/inc/strings.hrc:210
msgctxt "SBA_BROWSER_SETTING_FILTER"
msgid "Error setting the filter criteria"
msgstr "Chybné nastavenie kritérií­ filtra"
#. tXz3U
-#: dbaccess/inc/strings.hrc:210
+#: dbaccess/inc/strings.hrc:211
msgctxt "RID_STR_CONNECTION_LOST"
msgid "Connection lost"
msgstr "Spojenie stratené"
#. 5ELXe
-#: dbaccess/inc/strings.hrc:211
+#: dbaccess/inc/strings.hrc:212
msgctxt "RID_STR_QUERIES_CONTAINER"
msgid "Queries"
msgstr "Dotazy"
#. wdm7E
-#: dbaccess/inc/strings.hrc:212
+#: dbaccess/inc/strings.hrc:213
msgctxt "RID_STR_TABLES_CONTAINER"
msgid "Tables"
msgstr "Tabuľky"
#. BTcMU
-#: dbaccess/inc/strings.hrc:213
+#: dbaccess/inc/strings.hrc:214
msgctxt "STR_TITLE_CONFIRM_DELETION"
msgid "Confirm Deletion"
msgstr "Potvrdiť odstránenie"
#. pbjZT
-#: dbaccess/inc/strings.hrc:214
+#: dbaccess/inc/strings.hrc:215
msgctxt "STR_QUERY_DELETE_TABLE"
msgid "Do you want to delete the table '%1'?"
msgstr "Chcete odstrániť tabuľku '%1'?"
#. CLELW
-#: dbaccess/inc/strings.hrc:215
+#: dbaccess/inc/strings.hrc:216
msgctxt "STR_QUERY_CONNECTION_LOST"
msgid "The connection to the database has been lost. Do you want to reconnect?"
msgstr "Spojenie s databázou bolo stratené. Chcete ho obnoviť?"
#. NRXrT
-#: dbaccess/inc/strings.hrc:216
+#: dbaccess/inc/strings.hrc:217
msgctxt "STR_OPENTABLES_WARNINGS"
msgid "Warnings encountered"
msgstr "Objavili sa upozornenia"
#. EXau9
-#: dbaccess/inc/strings.hrc:217
+#: dbaccess/inc/strings.hrc:218
msgctxt "STR_OPENTABLES_WARNINGS_DETAILS"
msgid "While retrieving the tables, warnings were reported by the database connection."
msgstr "Počas získavania tabuliek sa vyskytli varovania pri spojení s databázou."
#. HtRDf
-#: dbaccess/inc/strings.hrc:218
+#: dbaccess/inc/strings.hrc:219
msgctxt "STR_CONNECTING_DATASOURCE"
msgid "Connecting to \"$name$\" ..."
msgstr "Pripájam k \"$name$\" ..."
#. QNCRB
-#: dbaccess/inc/strings.hrc:219
+#: dbaccess/inc/strings.hrc:220
msgctxt "STR_LOADING_QUERY"
msgid "Loading query $name$ ..."
msgstr "Načítavam dotaz $name$ ..."
#. QfTUB
-#: dbaccess/inc/strings.hrc:220
+#: dbaccess/inc/strings.hrc:221
msgctxt "STR_LOADING_TABLE"
msgid "Loading table $name$ ..."
msgstr "Načítavam tabuľku $name$ ..."
#. FECQm
-#: dbaccess/inc/strings.hrc:221
+#: dbaccess/inc/strings.hrc:222
msgctxt "STR_NO_TABLE_FORMAT_INSIDE"
msgid "No table format could be found."
msgstr "Nebol nájdený formát tabuľky."
#. 6isKD
-#: dbaccess/inc/strings.hrc:222
+#: dbaccess/inc/strings.hrc:223
msgctxt "STR_COULDNOTCONNECT_DATASOURCE"
msgid "The connection to the data source \"$name$\" could not be established."
msgstr "Spojenie s dátovým zdrojom \"$name$\" nemohlo byť vytvorené."
#. CmzsA
-#: dbaccess/inc/strings.hrc:224
+#: dbaccess/inc/strings.hrc:225
msgctxt "STR_TABLEDESIGN_DBFIELDTYPES"
msgid "Unknown;Text;Number;Date/Time;Date;Time;Yes/No;Currency;Memo;Counter;Image;Text (fix);Decimal;Binary (fix);Binary;BigInt;Double;Float;Real;Integer;Small Integer;Tiny Integer;SQL Null;Object;Distinct;Structure;Field;BLOB;CLOB;REF;OTHER;Bit (fix)"
msgstr "Neznámy;Text;Číslo;Dátum/Čas;Dátum;Čas;Áno/Nie;Mena;Memo;Počítadlo;Obrázok;Text (pevný);Desatinné;Binárne (fix);Binárne;BigInt;Dvojité;Plávajúce;Reálne číslo;Celé číslo;Malé celé číslo;Najmenšie celé číslo;SQL Null;Objekt;Distinct;Štruktúra;Pole;BLOB;CLOB;REF;OTHER, Bit (pevný)"
#. hhXGF
-#: dbaccess/inc/strings.hrc:225
+#: dbaccess/inc/strings.hrc:226
msgctxt "STR_TABLEDESIGN_UNDO_PRIMKEY"
msgid "Insert/remove primary key"
msgstr "Vložiť/odstrániť primárny kľúč"
#. 26uKH
-#: dbaccess/inc/strings.hrc:226
+#: dbaccess/inc/strings.hrc:227
msgctxt "STR_VALUE_YES"
msgid "Yes"
msgstr "Áno"
#. vqVF5
-#: dbaccess/inc/strings.hrc:227
+#: dbaccess/inc/strings.hrc:228
msgctxt "STR_VALUE_NO"
msgid "No"
msgstr "Nie"
#. TDokm
#. Note: should somehow fit to the word "value" in other languages as well: value - none...
-#: dbaccess/inc/strings.hrc:229
+#: dbaccess/inc/strings.hrc:230
msgctxt "STR_VALUE_NONE"
msgid "<none>"
msgstr "<nič>"
#. 66g23
-#: dbaccess/inc/strings.hrc:230
+#: dbaccess/inc/strings.hrc:231
msgctxt "STR_TAB_FIELD_COLUMN_NAME"
msgid "Field Name"
msgstr "Názov poľa"
#. F6UGZ
-#: dbaccess/inc/strings.hrc:231
+#: dbaccess/inc/strings.hrc:232
msgctxt "STR_TAB_FIELD_COLUMN_DATATYPE"
msgid "Field Type"
msgstr "Typ poľa"
#. LFBuq
-#: dbaccess/inc/strings.hrc:232
+#: dbaccess/inc/strings.hrc:233
msgctxt "STR_TAB_HELP_TEXT"
msgid "Description"
msgstr "Popis"
#. BYE5G
-#: dbaccess/inc/strings.hrc:233
+#: dbaccess/inc/strings.hrc:234
msgctxt "STR_COLUMN_DESCRIPTION"
msgid "Column Description"
msgstr "Popis stĺpca"
#. Aney5
-#: dbaccess/inc/strings.hrc:234
+#: dbaccess/inc/strings.hrc:235
msgctxt "STR_TAB_PROPERTIES"
msgid "Field Properties"
msgstr "Vlastnosti poľa"
#. kjdpF
-#: dbaccess/inc/strings.hrc:235
+#: dbaccess/inc/strings.hrc:236
msgctxt "STR_TABED_UNDO_CELLMODIFIED"
msgid "Modify cell"
msgstr "Upraviť bunku"
#. aPzA3
-#: dbaccess/inc/strings.hrc:236
+#: dbaccess/inc/strings.hrc:237
msgctxt "STR_TABED_UNDO_ROWDELETED"
msgid "Delete row"
msgstr "Odstrániť riadok"
#. DFnqv
-#: dbaccess/inc/strings.hrc:237
+#: dbaccess/inc/strings.hrc:238
msgctxt "STR_TABED_UNDO_TYPE_CHANGED"
msgid "Modify field type"
msgstr "Upraviť typ poľa"
#. XLRpC
-#: dbaccess/inc/strings.hrc:238
+#: dbaccess/inc/strings.hrc:239
msgctxt "STR_TABED_UNDO_ROWINSERTED"
msgid "Insert row"
msgstr "Vložiť riadok"
#. LgbwQ
-#: dbaccess/inc/strings.hrc:239
+#: dbaccess/inc/strings.hrc:240
msgctxt "STR_TABED_UNDO_NEWROWINSERTED"
msgid "Insert new row"
msgstr "Vložiť nový riadok"
#. gi8TU
-#: dbaccess/inc/strings.hrc:240
+#: dbaccess/inc/strings.hrc:241
msgctxt "STR_DEFAULT_VALUE"
msgid "~Default value"
msgstr "Predvolená ho~dnota"
#. 3AyBV
-#: dbaccess/inc/strings.hrc:241
+#: dbaccess/inc/strings.hrc:242
msgctxt "STR_HELP_BOOL_DEFAULT"
msgid ""
"Select a value that is to appear in all new records as default.\n"
@@ -1289,7 +1295,7 @@ msgstr ""
"ak pole nemá obsahovať predradenú hodnotu, vyberte prázdny reťazec."
#. AbZU4
-#: dbaccess/inc/strings.hrc:242
+#: dbaccess/inc/strings.hrc:243
msgctxt "STR_HELP_DEFAULT_VALUE"
msgid ""
"Enter a default value for this field.\n"
@@ -1301,19 +1307,19 @@ msgstr ""
"Keď neskôr budete vkladať dáta do tabuľky, tento reťazec sa použije v každom novom zázname pre toto pole. Musí preto zodpovedať formátu bunky, do ktorej bude dole vložený."
#. hwwVA
-#: dbaccess/inc/strings.hrc:243
+#: dbaccess/inc/strings.hrc:244
msgctxt "STR_HELP_TEXT_LENGTH"
msgid "Enter the maximum text length permitted."
msgstr "Zadajte maximálnu povolenú dĺžku textu."
#. yPnZq
-#: dbaccess/inc/strings.hrc:244
+#: dbaccess/inc/strings.hrc:245
msgctxt "STR_HELP_NUMERIC_TYPE"
msgid "Enter the number format."
msgstr "Zadajte formát čísla."
#. 2yCJu
-#: dbaccess/inc/strings.hrc:245
+#: dbaccess/inc/strings.hrc:246
msgctxt "STR_HELP_LENGTH"
msgid ""
"Determine the length data can have in this field.\n"
@@ -1327,25 +1333,25 @@ msgstr ""
"Hodnota bude upravená, ak presahuje hodnotu, ktorá je pre túto databázu maximálna."
#. BY4V7
-#: dbaccess/inc/strings.hrc:246
+#: dbaccess/inc/strings.hrc:247
msgctxt "STR_HELP_SCALE"
msgid "Specify the number of decimal places permitted in this field."
msgstr "Zadajte počet desatinných miest povolených v tomto poli."
#. QBHjm
-#: dbaccess/inc/strings.hrc:247
+#: dbaccess/inc/strings.hrc:248
msgctxt "STR_HELP_FORMAT_CODE"
msgid "This is where you see how the data would be displayed in the current format (use the button on the right to modify the format)."
msgstr "Tu môžete vidieť ako budú zobrazené dáta v súčasnom formáte (použite tlačidlo vpravo ak chcete meniť formát)."
#. eV4sD
-#: dbaccess/inc/strings.hrc:248
+#: dbaccess/inc/strings.hrc:249
msgctxt "STR_HELP_FORMAT_BUTTON"
msgid "This is where you determine the output format of the data."
msgstr "Tu môžete určiť výstupný formát dát."
#. Y5q39
-#: dbaccess/inc/strings.hrc:249
+#: dbaccess/inc/strings.hrc:250
msgctxt "STR_HELP_AUTOINCREMENT"
msgid ""
"Choose if this field should contain AutoIncrement values.\n"
@@ -1357,49 +1363,49 @@ msgstr ""
"Do poľa tohto typu nemožno vkladať dáta. Do každého nového záznamu bude automaticky vložená hodnota, ktorá je vyššia ako hodnota v predchádzajúcom zázname."
#. 5uQpF
-#: dbaccess/inc/strings.hrc:250
+#: dbaccess/inc/strings.hrc:251
msgctxt "STR_TABLEDESIGN_DUPLICATE_NAME"
msgid "The table cannot be saved because column name \"$column$\" was assigned twice."
msgstr "Tabuľka nemôže byť uložená, pretože stĺpec s názvom \"$column$\" bol priradený dvakrát."
#. vayRE
-#: dbaccess/inc/strings.hrc:251
+#: dbaccess/inc/strings.hrc:252
msgctxt "STR_TBL_COLUMN_IS_KEYCOLUMN"
msgid "The column \"$column$\" belongs to the primary key. If the column is deleted, the primary key will also be deleted. Do you really want to continue?"
msgstr "Stĺpec \"$column$\" patrí do primárneho kľúča. V prípade, že bude odstránený, bude odstránený aj primárny kľúč. Určite chcete pokračovať?"
#. fo93e
-#: dbaccess/inc/strings.hrc:252
+#: dbaccess/inc/strings.hrc:253
msgctxt "STR_TBL_COLUMN_IS_KEYCOLUMN_TITLE"
msgid "Primary Key Affected"
msgstr "Zásah do primárneho kľúča"
#. wcLcG
-#: dbaccess/inc/strings.hrc:253
+#: dbaccess/inc/strings.hrc:254
msgctxt "STR_COLUMN_NAME"
msgid "Column"
msgstr "Stĺpec"
#. ES566
-#: dbaccess/inc/strings.hrc:254
+#: dbaccess/inc/strings.hrc:255
msgctxt "STR_QRY_CONTINUE"
msgid "Continue anyway?"
msgstr "Napriek tomu pokračovať?"
#. iXbw5
-#: dbaccess/inc/strings.hrc:255
+#: dbaccess/inc/strings.hrc:256
msgctxt "STR_TABLEDESIGN_CONNECTION_MISSING"
msgid "The table could not be saved due to problems connecting to the database."
msgstr "Tabuľka nemohla byť uložená kvôli problémom pri spojení s databázou."
#. kuExF
-#: dbaccess/inc/strings.hrc:256
+#: dbaccess/inc/strings.hrc:257
msgctxt "STR_TABLEDESIGN_DATASOURCE_DELETED"
msgid "The table filter could not be adjusted because the data source has been deleted."
msgstr "Filter tabuliek nemohol byť upravený, pretože dátový zdroj bol odstránený."
#. Lt4Yc
-#: dbaccess/inc/strings.hrc:257
+#: dbaccess/inc/strings.hrc:258
msgctxt "STR_QUERY_SAVE_TABLE_EDIT_INDEXES"
msgid ""
"Before you can edit the indexes of a table, you have to save it.\n"
@@ -1409,13 +1415,13 @@ msgstr ""
"Chcete zmeny uložiť teraz?"
#. HFLQk
-#: dbaccess/inc/strings.hrc:258
+#: dbaccess/inc/strings.hrc:259
msgctxt "STR_TABLEDESIGN_NO_PRIM_KEY_HEAD"
msgid "No primary key"
msgstr "Neexistuje primárny kľúč"
#. ir5Du
-#: dbaccess/inc/strings.hrc:259
+#: dbaccess/inc/strings.hrc:260
msgctxt "STR_TABLEDESIGN_NO_PRIM_KEY"
msgid ""
"A unique index or primary key is required for data record identification in this database.\n"
@@ -1429,25 +1435,25 @@ msgstr ""
"Má byť teraz vytvorený primárny kľúč?"
#. R7KDG
-#: dbaccess/inc/strings.hrc:260
+#: dbaccess/inc/strings.hrc:261
msgctxt "STR_TABLEDESIGN_ALTER_ERROR"
msgid "The column \"$column$\" could not be changed. Should the column instead be deleted and the new format appended?"
msgstr "Stĺpec \"$column$\" nemohol byť zmenený. Má sa stĺpec odstrániť a namiesto neho pripojiť nový formát?"
#. U3f4j
-#: dbaccess/inc/strings.hrc:261
+#: dbaccess/inc/strings.hrc:262
msgctxt "STR_TABLEDESIGN_SAVE_ERROR"
msgid "Error while saving the table design"
msgstr "Chyba pri ukladaní návrhu tabuľky"
#. 9BsSL
-#: dbaccess/inc/strings.hrc:262
+#: dbaccess/inc/strings.hrc:263
msgctxt "STR_TABLEDESIGN_COULD_NOT_DROP_COL"
msgid "The column $column$ could not be deleted."
msgstr "Stĺpec $column$ nemohol byť odstránený."
#. Etkrj
-#: dbaccess/inc/strings.hrc:263
+#: dbaccess/inc/strings.hrc:264
msgctxt "STR_HELP_AUTOINCREMENT_VALUE"
msgid ""
"Enter an SQL statement for the auto-increment field.\n"
@@ -1459,7 +1465,7 @@ msgstr ""
"Tento výraz sa priamo prenesie do databázy pri vytváraní tabuľky."
#. fAEud
-#: dbaccess/inc/strings.hrc:264
+#: dbaccess/inc/strings.hrc:265
msgctxt "STR_NO_TYPE_INFO_AVAILABLE"
msgid ""
"No type information could be retrieved from the database.\n"
@@ -1469,37 +1475,37 @@ msgstr ""
"Pre tento dátový zdroj nie je možná úprava štruktúry tabuľky."
#. 2s2rr
-#: dbaccess/inc/strings.hrc:265
+#: dbaccess/inc/strings.hrc:266
msgctxt "STR_CHANGE_COLUMN_NAME"
msgid "change field name"
msgstr "zmena názvu poľa"
#. PC3QD
-#: dbaccess/inc/strings.hrc:266
+#: dbaccess/inc/strings.hrc:267
msgctxt "STR_CHANGE_COLUMN_TYPE"
msgid "change field type"
msgstr "zmena typu poľa"
#. Z2B9o
-#: dbaccess/inc/strings.hrc:267
+#: dbaccess/inc/strings.hrc:268
msgctxt "STR_CHANGE_COLUMN_DESCRIPTION"
msgid "change field description"
msgstr "zmena popisu poľa"
#. aDrTE
-#: dbaccess/inc/strings.hrc:268
+#: dbaccess/inc/strings.hrc:269
msgctxt "STR_CHANGE_COLUMN_ATTRIBUTE"
msgid "change field attribute"
msgstr "zmena atribútov poľa"
#. 3srwC
-#: dbaccess/inc/strings.hrc:270
+#: dbaccess/inc/strings.hrc:271
msgctxt "STR_ENTER_CONNECTION_PASSWORD"
msgid "A password is needed to connect to the data source \"$name$\"."
msgstr "Pre pripojenie na dátový zdroj \"$name$\" je potrebné heslo."
#. tYDxc
-#: dbaccess/inc/strings.hrc:271
+#: dbaccess/inc/strings.hrc:272
msgctxt "STR_ASK_FOR_DIRECTORY_CREATION"
msgid ""
"The directory\n"
@@ -1515,49 +1521,49 @@ msgstr ""
"neexistuje. Má byť teraz vytvorený?"
#. 3PFxY
-#: dbaccess/inc/strings.hrc:272
+#: dbaccess/inc/strings.hrc:273
msgctxt "STR_COULD_NOT_CREATE_DIRECTORY"
msgid "The directory $name$ could not be created."
msgstr "Priečinok $name$ nemohol byť vytvorený."
#. V9kGF
-#: dbaccess/inc/strings.hrc:273
+#: dbaccess/inc/strings.hrc:274
msgctxt "STR_ALREADYEXISTOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr "Súbor už existuje. Prepísať?"
#. i47ye
-#: dbaccess/inc/strings.hrc:274
+#: dbaccess/inc/strings.hrc:275
msgctxt "STR_NEW_FOLDER"
msgid "Folder"
msgstr "Priečinok"
#. U2bRK
-#: dbaccess/inc/strings.hrc:276
+#: dbaccess/inc/strings.hrc:277
msgctxt "STR_DATABASE_TYPE_CHANGE"
msgid "Database properties"
msgstr "Vlastnosti databázy"
#. etNzz
-#: dbaccess/inc/strings.hrc:277
+#: dbaccess/inc/strings.hrc:278
msgctxt "STR_PARENTTITLE_GENERAL"
msgid "Data Source Properties: #"
msgstr "Vlastnosti zdroja dát: #"
#. z9Ecp
-#: dbaccess/inc/strings.hrc:278
+#: dbaccess/inc/strings.hrc:279
msgctxt "STR_ERR_USE_CONNECT_TO"
msgid "Please choose 'Connect to an existing database' to connect to an existing database instead."
msgstr "Zvoľte 'Pripojiť sa k existujúcej databáze' pre pripojenie k existujúcej databáze."
#. PfAC6
-#: dbaccess/inc/strings.hrc:279
+#: dbaccess/inc/strings.hrc:280
msgctxt "STR_COULD_NOT_LOAD_ODBC_LIB"
msgid "Could not load the program library #lib# or it is corrupted. The ODBC data source selection is not available."
msgstr "Nebolo možné načítať programovú knižnicu #lib# alebo je poškodená. Výber ODBC dátového zdroja nie je možný."
#. d3vbZ
-#: dbaccess/inc/strings.hrc:280
+#: dbaccess/inc/strings.hrc:281
msgctxt "STR_UNSUPPORTED_DATASOURCE_TYPE"
msgid ""
"This kind of data source is not supported on this platform.\n"
@@ -1567,152 +1573,152 @@ msgstr ""
"Môžete zmeniť nastavenia, ale pravdepodobne sa nebudete môcť pripojiť k databáze."
#. 2f7Ga
-#: dbaccess/inc/strings.hrc:281
+#: dbaccess/inc/strings.hrc:282
msgctxt "STR_AUTOTEXT_FIELD_SEP_NONE"
msgid "{None}"
msgstr "{Žiadne}"
#. iR7CJ
#. To translators: EM Dec 2002: 'Space' refers t o what you get when you hit the space bar on your keyboard.
-#: dbaccess/inc/strings.hrc:283
+#: dbaccess/inc/strings.hrc:284
msgctxt "STR_AUTOFIELDSEPARATORLIST"
msgid ";\t59\t,\t44\t:\t58\t{Tab}\t9\t{Space}\t32"
msgstr ";\t59\t,\t44\t:\t58\t{Tabulátor}\t9\t{Medzera}\t32"
#. DFGo9
-#: dbaccess/inc/strings.hrc:284
+#: dbaccess/inc/strings.hrc:285
msgctxt "STR_AUTODELIMITER_MISSING"
msgid "#1 must be set."
msgstr "#1 musí byť nastavený."
#. ZDRBf
-#: dbaccess/inc/strings.hrc:285
+#: dbaccess/inc/strings.hrc:286
msgctxt "STR_AUTODELIMITER_MUST_DIFFER"
msgid "#1 and #2 must be different."
msgstr "#1 a #2 musia byť rôzne."
#. 9oCZr
-#: dbaccess/inc/strings.hrc:286
+#: dbaccess/inc/strings.hrc:287
msgctxt "STR_AUTONO_WILDCARDS"
msgid "Wildcards such as ?,* are not allowed in #1."
msgstr "Zástupné znaky ako ? a * nie sú povolené v #1."
#. BdzcB
-#: dbaccess/inc/strings.hrc:288
+#: dbaccess/inc/strings.hrc:289
msgctxt "STR_CONNECTION_TEST"
msgid "Connection Test"
msgstr "Testovanie pripojenia"
#. oAAKs
-#: dbaccess/inc/strings.hrc:289
+#: dbaccess/inc/strings.hrc:290
msgctxt "STR_CONNECTION_SUCCESS"
msgid "The connection was established successfully."
msgstr "Spojenie bolo úspešne vykonané."
#. 5V7Ay
-#: dbaccess/inc/strings.hrc:290
+#: dbaccess/inc/strings.hrc:291
msgctxt "STR_CONNECTION_NO_SUCCESS"
msgid "The connection could not be established."
msgstr "Spojenie sa nepodarilo nadviazať."
#. wvNFP
-#: dbaccess/inc/strings.hrc:291
+#: dbaccess/inc/strings.hrc:292
msgctxt "STR_JDBCDRIVER_SUCCESS"
msgid "The JDBC driver was loaded successfully."
msgstr "JDBC driver bol úspešne natiahnutý."
#. RdMCN
-#: dbaccess/inc/strings.hrc:292
+#: dbaccess/inc/strings.hrc:293
msgctxt "STR_JDBCDRIVER_NO_SUCCESS"
msgid "The JDBC driver could not be loaded."
msgstr "Nepodarilo sa natiahnuť driver JDBC."
#. dyCvN
-#: dbaccess/inc/strings.hrc:293
+#: dbaccess/inc/strings.hrc:294
msgctxt "STR_MSACCESS_FILTERNAME"
msgid "MS Access file"
msgstr "Súbor MS Access"
#. rDsuu
-#: dbaccess/inc/strings.hrc:294
+#: dbaccess/inc/strings.hrc:295
msgctxt "STR_MSACCESS_2007_FILTERNAME"
msgid "MS Access 2007 file"
msgstr "Súbor MS Access 2007"
#. jFwxU
-#: dbaccess/inc/strings.hrc:295
+#: dbaccess/inc/strings.hrc:296
msgctxt "STR_FIREBIRD_FILTERNAME"
msgid "Firebird Database"
msgstr "Databáza Firebird"
#. 8Uiv2
-#: dbaccess/inc/strings.hrc:297
+#: dbaccess/inc/strings.hrc:298
msgctxt "STR_RSC_CHARSETS"
msgid "System"
msgstr "Systém"
#. pnwDB
-#: dbaccess/inc/strings.hrc:298
+#: dbaccess/inc/strings.hrc:299
msgctxt "STR_ERROR_DURING_CREATION"
msgid "Error during creation"
msgstr "Chyba počas vytvárania"
#. hnyJF
-#: dbaccess/inc/strings.hrc:299
+#: dbaccess/inc/strings.hrc:300
msgctxt "STR_UNEXPECTED_ERROR"
msgid "An error occurred. The operation could not be performed."
msgstr "Vyskytla sa chyba. Operácia nemohla byť vykonaná."
#. kXCG9
-#: dbaccess/inc/strings.hrc:300
+#: dbaccess/inc/strings.hrc:301
msgctxt "STR_COULDNOTOPEN_LINKEDDOC"
msgid "The document \"$file$\" could not be opened."
msgstr "Dokument \"$file$\" nemohol byť otvorený."
#. bFHHW
-#: dbaccess/inc/strings.hrc:301
+#: dbaccess/inc/strings.hrc:302
msgctxt "STR_MISSING_TABLES_XDROP"
msgid "The table cannot be deleted because the database connection does not support this."
msgstr "Tabuľka nemohla byť odstránená, pretože to databázové spojenie nepodporuje."
#. ZNB5D
-#: dbaccess/inc/strings.hrc:302
+#: dbaccess/inc/strings.hrc:303
msgctxt "STR_BUTTON_TEXT_ALL"
msgid "~All"
msgstr "~Všetko"
#. C8eBG
-#: dbaccess/inc/strings.hrc:303
+#: dbaccess/inc/strings.hrc:304
msgctxt "STR_UNDO_COLON"
msgid "Undo:"
msgstr "Späť:"
#. aje2A
-#: dbaccess/inc/strings.hrc:304
+#: dbaccess/inc/strings.hrc:305
msgctxt "STR_REDO_COLON"
msgid "Redo:"
msgstr "Znova:"
#. ixMkj
-#: dbaccess/inc/strings.hrc:305
+#: dbaccess/inc/strings.hrc:306
msgctxt "STR_UNKNOWN_TYPE_FOUND"
msgid "No corresponding column type could be found for column '#1'."
msgstr "Nebol nájdený zodpovedajúci typ stĺpca pre stĺpec '#1'."
#. qVax3
-#: dbaccess/inc/strings.hrc:306
+#: dbaccess/inc/strings.hrc:307
msgctxt "STR_FILE_DOES_NOT_EXIST"
msgid "The file \"$file$\" does not exist."
msgstr "Súbor \"$file$\" neexistuje."
#. 737k3
-#: dbaccess/inc/strings.hrc:307
+#: dbaccess/inc/strings.hrc:308
msgctxt "STR_WARNINGS_DURING_CONNECT"
msgid "Warnings were encountered while connecting to the data source. Press \"$buttontext$\" to view them."
msgstr "Pri pripájaní k zdroju dát sa objavili varovania. Stlačte \"$buttontext$\" pre ich zobrazenie."
#. cGJja
-#: dbaccess/inc/strings.hrc:308
+#: dbaccess/inc/strings.hrc:309
msgctxt "STR_NAMED_OBJECT_ALREADY_EXISTS"
msgid ""
"The name '$#$' already exists.\n"
@@ -1723,199 +1729,199 @@ msgstr ""
#. xTNjt
#. #i96130# use hard coded name
-#: dbaccess/inc/strings.hrc:310
+#: dbaccess/inc/strings.hrc:311
msgctxt "RID_STR_EXTENSION_NOT_PRESENT"
msgid "The report, \"$file$\", requires the Report Builder feature."
msgstr "Zostava \"$file$\" vyžaduje rozšírenie Report Builder."
#. oC8Px
-#: dbaccess/inc/strings.hrc:312
+#: dbaccess/inc/strings.hrc:313
msgctxt "STR_COULDNOTCREATE_DRIVERMANAGER"
msgid "Cannot connect to the SDBC driver manager (#servicename#)."
msgstr "Nemôžem sa spojiť s SDBC driver manager (#servicename#)."
#. aym6r
-#: dbaccess/inc/strings.hrc:313
+#: dbaccess/inc/strings.hrc:314
msgctxt "STR_NOREGISTEREDDRIVER"
msgid "A driver is not registered for the URL #connurl#."
msgstr "Pre URL #connurl# nie je zaregistrovaný driver."
#. oafZG
-#: dbaccess/inc/strings.hrc:314
+#: dbaccess/inc/strings.hrc:315
msgctxt "STR_NOTABLEINFO"
msgid "Successfully connected, but information about database tables is not available."
msgstr "Spojenie bolo nadviazané, ale informácie o tabuľkách v databáze nie sú dostupné."
#. uBW6C
-#: dbaccess/inc/strings.hrc:315
+#: dbaccess/inc/strings.hrc:316
msgctxt "STR_ALL_TABLES"
msgid "All tables"
msgstr "Všetky tabuľky"
#. nhz6M
-#: dbaccess/inc/strings.hrc:316
+#: dbaccess/inc/strings.hrc:317
msgctxt "STR_ALL_VIEWS"
msgid "All views"
msgstr "Všetky pohľady"
#. APBCw
-#: dbaccess/inc/strings.hrc:317
+#: dbaccess/inc/strings.hrc:318
msgctxt "STR_ALL_TABLES_AND_VIEWS"
msgid "All tables and views"
msgstr "Všetky tabuľky a pohľady"
#. 4SGBJ
-#: dbaccess/inc/strings.hrc:319
+#: dbaccess/inc/strings.hrc:320
msgctxt "STR_TABLE_PRIV_NAME"
msgid "Table name"
msgstr "Názov tabuľky"
#. Nw93R
-#: dbaccess/inc/strings.hrc:320
+#: dbaccess/inc/strings.hrc:321
msgctxt "STR_TABLE_PRIV_INSERT"
msgid "Insert data"
msgstr "Vložiť dáta"
#. nLFJd
-#: dbaccess/inc/strings.hrc:321
+#: dbaccess/inc/strings.hrc:322
msgctxt "STR_TABLE_PRIV_DELETE"
msgid "Delete data"
msgstr "Odstrániť dáta"
#. eGEDE
-#: dbaccess/inc/strings.hrc:322
+#: dbaccess/inc/strings.hrc:323
msgctxt "STR_TABLE_PRIV_UPDATE"
msgid "Modify data"
msgstr "Upraviť dáta"
#. e2bxV
-#: dbaccess/inc/strings.hrc:323
+#: dbaccess/inc/strings.hrc:324
msgctxt "STR_TABLE_PRIV_ALTER"
msgid "Alter structure"
msgstr "Zmeniť štruktúru"
#. zejFA
-#: dbaccess/inc/strings.hrc:324
+#: dbaccess/inc/strings.hrc:325
msgctxt "STR_TABLE_PRIV_SELECT"
msgid "Read data"
msgstr "Čítať dáta"
#. UsMj8
-#: dbaccess/inc/strings.hrc:325
+#: dbaccess/inc/strings.hrc:326
msgctxt "STR_TABLE_PRIV_REFERENCE"
msgid "Modify references"
msgstr "Upraviť referencie"
#. SEGp9
-#: dbaccess/inc/strings.hrc:326
+#: dbaccess/inc/strings.hrc:327
msgctxt "STR_TABLE_PRIV_DROP"
msgid "Drop structure"
msgstr "Stránkovanie"
#. BCCiv
-#: dbaccess/inc/strings.hrc:328
+#: dbaccess/inc/strings.hrc:329
msgctxt "STR_DBASE_PATH_OR_FILE"
msgid "Path to the dBASE files"
msgstr "Cesta k súborom dBASE"
#. hnBFY
-#: dbaccess/inc/strings.hrc:329
+#: dbaccess/inc/strings.hrc:330
msgctxt "STR_FLAT_PATH_OR_FILE"
msgid "Path to the text files"
msgstr "Cesta k textovým súborom"
#. DRFyX
-#: dbaccess/inc/strings.hrc:330
+#: dbaccess/inc/strings.hrc:331
msgctxt "STR_CALC_PATH_OR_FILE"
msgid "Path to the spreadsheet document"
msgstr "Cesta k tabuľkovým súborom"
#. qxbA7
-#: dbaccess/inc/strings.hrc:331
+#: dbaccess/inc/strings.hrc:332
msgctxt "STR_NAME_OF_ODBC_DATASOURCE"
msgid "Name of the ODBC data source on your system"
msgstr "Názov dátového zdroja ODBC vášho systému"
#. mGJE9
-#: dbaccess/inc/strings.hrc:332
+#: dbaccess/inc/strings.hrc:333
msgctxt "STR_WRITER_PATH_OR_FILE"
msgid "Path to the Writer document"
msgstr "Cesta k textovému súboru"
#. zQxCp
-#: dbaccess/inc/strings.hrc:333
+#: dbaccess/inc/strings.hrc:334
msgctxt "STR_MYSQL_DATABASE_NAME"
msgid "Name of the MySQL database"
msgstr "Názov databázy MySQL"
#. uhRMQ
-#: dbaccess/inc/strings.hrc:334
+#: dbaccess/inc/strings.hrc:335
msgctxt "STR_ORACLE_DATABASE_NAME"
msgid "Name of the Oracle database"
msgstr "Názov databázy Oracle"
#. nmoae
-#: dbaccess/inc/strings.hrc:335
+#: dbaccess/inc/strings.hrc:336
msgctxt "STR_MSACCESS_MDB_FILE"
msgid "Microsoft Access database file"
msgstr "Názov databázového súboru Microsoft Acces"
#. 34zwh
-#: dbaccess/inc/strings.hrc:336
+#: dbaccess/inc/strings.hrc:337
msgctxt "STR_NO_ADDITIONAL_SETTINGS"
msgid "No more settings are necessary. To verify that the connection is working, click the '%test' button."
msgstr "Ďalšie nastavenia nie sú potrebné. Aby ste sa presvedčili, že spojenie je funkčné, stlačte kláves '%test'."
#. GAVfb
-#: dbaccess/inc/strings.hrc:337
+#: dbaccess/inc/strings.hrc:338
msgctxt "STR_COMMONURL"
msgid "Datasource URL (e.g. host=$host:$port dbname=$database)"
msgstr "URL zdroja dát (napr. host=$host:$port dbname=$database)"
#. rKH3t
-#: dbaccess/inc/strings.hrc:338
+#: dbaccess/inc/strings.hrc:339
msgctxt "STR_HOSTNAME"
msgid "~Host name"
msgstr "Názov ~hostiteľa"
#. Gdbjz
-#: dbaccess/inc/strings.hrc:339
+#: dbaccess/inc/strings.hrc:340
msgctxt "STR_MOZILLA_PROFILE_NAME"
msgid "~Mozilla profile name"
msgstr "Názov profilu ~Mozilly"
#. A6YJb
-#: dbaccess/inc/strings.hrc:340
+#: dbaccess/inc/strings.hrc:341
msgctxt "STR_THUNDERBIRD_PROFILE_NAME"
msgid "~Thunderbird profile name"
msgstr "Názov profilu ~Thunderbirdu"
#. HnmRA
-#: dbaccess/inc/strings.hrc:341
+#: dbaccess/inc/strings.hrc:342
msgctxt "STR_ADD_TABLES"
msgid "Add Tables"
msgstr "Pridať tabuľky"
#. eHahH
-#: dbaccess/inc/strings.hrc:342
+#: dbaccess/inc/strings.hrc:343
msgctxt "STR_ADD_TABLE_OR_QUERY"
msgid "Add Table or Query"
msgstr "Pridať tabuľku alebo dotaz"
#. 5dqK5
-#: dbaccess/inc/strings.hrc:344
+#: dbaccess/inc/strings.hrc:345
msgctxt "STR_WIZ_COLUMN_SELECT_TITEL"
msgid "Apply columns"
msgstr "Použiť na stĺpce"
#. nZ7x6
-#: dbaccess/inc/strings.hrc:345
+#: dbaccess/inc/strings.hrc:346
msgctxt "STR_WIZ_TYPE_SELECT_TITEL"
msgid "Type formatting"
msgstr "Formátovanie typu"
#. C5Zs4
-#: dbaccess/inc/strings.hrc:346
+#: dbaccess/inc/strings.hrc:347
msgctxt "STR_WIZ_NAME_ALREADY_DEFINED"
msgid ""
"Enter a unique name for the new primary key data field.\n"
@@ -1925,163 +1931,163 @@ msgstr ""
"Nasledujúci názov sa už používa:"
#. MuQ2C
-#: dbaccess/inc/strings.hrc:347
+#: dbaccess/inc/strings.hrc:348
msgctxt "STR_WIZ_NAME_MATCHING_TITEL"
msgid "Assign columns"
msgstr "Priradiť stĺpce"
#. 5vCFA
-#: dbaccess/inc/strings.hrc:348
+#: dbaccess/inc/strings.hrc:349
msgctxt "STR_WIZ_PB_PREV"
msgid "< ~Back"
msgstr "< ~Späť"
#. aWFVD
-#: dbaccess/inc/strings.hrc:349
+#: dbaccess/inc/strings.hrc:350
msgctxt "STR_WIZ_PB_NEXT"
msgid "~Next>"
msgstr "Ď~alej >"
#. aKHUX
-#: dbaccess/inc/strings.hrc:350
+#: dbaccess/inc/strings.hrc:351
msgctxt "STR_WIZ_PB_OK"
msgid "C~reate"
msgstr "Vytvo~riť"
#. 3XyRu
-#: dbaccess/inc/strings.hrc:351
+#: dbaccess/inc/strings.hrc:352
msgctxt "STR_WIZ_TABLE_COPY"
msgid "Copy table"
msgstr "Kopírovať tabuľku"
#. uNGvx
-#: dbaccess/inc/strings.hrc:352
+#: dbaccess/inc/strings.hrc:353
msgctxt "STR_COPYTABLE_TITLE_COPY"
msgid "Copy table"
msgstr "Kopírovať tabuľku"
#. xCPkD
-#: dbaccess/inc/strings.hrc:353
+#: dbaccess/inc/strings.hrc:354
msgctxt "STR_INVALID_TABLE_NAME"
msgid "This table name is not valid in the current database."
msgstr "Tento názov tabuľky nie je v tejto databáze platný."
#. m35Lx
-#: dbaccess/inc/strings.hrc:354
+#: dbaccess/inc/strings.hrc:355
msgctxt "STR_SUGGEST_APPEND_TABLE_DATA"
msgid "Choose the option 'Append data' on the first page to append data to an existing table."
msgstr "Ak chcete k existujúcej tabuľke pridať dáta, vyberte možnosť 'Pridať dáta' na prvej strane."
#. XbmVN
-#: dbaccess/inc/strings.hrc:355
+#: dbaccess/inc/strings.hrc:356
msgctxt "STR_INVALID_TABLE_NAME_LENGTH"
msgid "Please change the table name. It is too long."
msgstr "Prosím zmeňte názov tabuľky, je príliš dlhý."
#. 55EA7
-#: dbaccess/inc/strings.hrc:357
+#: dbaccess/inc/strings.hrc:358
msgctxt "STR_DBWIZARDTITLE"
msgid "Database Wizard"
msgstr "Sprievodca databázou"
#. p4Yy4
-#: dbaccess/inc/strings.hrc:358
+#: dbaccess/inc/strings.hrc:359
msgctxt "STR_PAGETITLE_INTROPAGE"
msgid "Select database"
msgstr "Vybrať databázu"
#. GTpDz
-#: dbaccess/inc/strings.hrc:359
+#: dbaccess/inc/strings.hrc:360
msgctxt "STR_PAGETITLE_DBASE"
msgid "Set up dBASE connection"
msgstr "Nastavenie pripojenia k dBASE"
#. VBaQN
-#: dbaccess/inc/strings.hrc:360
+#: dbaccess/inc/strings.hrc:361
msgctxt "STR_PAGETITLE_TEXT"
msgid "Set up a connection to text files"
msgstr "Nastavenie pripojenia k textovým súborom"
#. TiBeQ
-#: dbaccess/inc/strings.hrc:361
+#: dbaccess/inc/strings.hrc:362
msgctxt "STR_PAGETITLE_MSACCESS"
msgid "Set up Microsoft Access connection"
msgstr "Nastavenie pripojenia k Microsoft Access"
#. XaDDh
-#: dbaccess/inc/strings.hrc:362
+#: dbaccess/inc/strings.hrc:363
msgctxt "STR_PAGETITLE_LDAP"
msgid "Set up LDAP connection"
msgstr "Nastavenie pripojenia k LDAP"
#. WZtzU
-#: dbaccess/inc/strings.hrc:363
+#: dbaccess/inc/strings.hrc:364
msgctxt "STR_PAGETITLE_ADO"
msgid "Set up ADO connection"
msgstr "Nastavenie pripojenia k ADO"
#. n3HgX
-#: dbaccess/inc/strings.hrc:364
+#: dbaccess/inc/strings.hrc:365
msgctxt "STR_PAGETITLE_JDBC"
msgid "Set up JDBC connection"
msgstr "Nastavenie pripojenia JDBC"
#. qiZT5
-#: dbaccess/inc/strings.hrc:365
+#: dbaccess/inc/strings.hrc:366
msgctxt "STR_PAGETITLE_ORACLE"
msgid "Set up Oracle database connection"
msgstr "Nastavenie pripojenia k databáze Oracle"
#. KbAqW
-#: dbaccess/inc/strings.hrc:366
+#: dbaccess/inc/strings.hrc:367
msgctxt "STR_PAGETITLE_MYSQL"
msgid "Set up MySQL connection"
msgstr "Nastavenie pripojenia MySQL"
#. uJuNs
-#: dbaccess/inc/strings.hrc:367
+#: dbaccess/inc/strings.hrc:368
msgctxt "STR_PAGETITLE_ODBC"
msgid "Set up ODBC connection"
msgstr "Nastavenie pripojenia ODBC"
#. ecB4x
-#: dbaccess/inc/strings.hrc:368
+#: dbaccess/inc/strings.hrc:369
msgctxt "STR_PAGETITLE_DOCUMENT_OR_SPREADSHEET"
msgid "Set up Writer Document or Spreadsheet connection"
msgstr "Vytvoriť spojenie k textovému alebo tabuľkovému dokumentu"
#. wUEMA
-#: dbaccess/inc/strings.hrc:369
+#: dbaccess/inc/strings.hrc:370
msgctxt "STR_PAGETITLE_AUTHENTIFICATION"
msgid "Set up user authentication"
msgstr "Nastavenie autentifikácie používateľa"
#. YgsyA
-#: dbaccess/inc/strings.hrc:370
+#: dbaccess/inc/strings.hrc:371
msgctxt "STR_PAGETITLE_MYSQL_NATIVE"
msgid "Set up MySQL server data"
msgstr "Nastaviť údaje MySQL servera"
#. 6Fy7C
-#: dbaccess/inc/strings.hrc:371
+#: dbaccess/inc/strings.hrc:372
msgctxt "STR_PAGETITLE_FINAL"
msgid "Save and proceed"
msgstr "Uložiť a pokračovať"
#. LhDjK
-#: dbaccess/inc/strings.hrc:372
+#: dbaccess/inc/strings.hrc:373
msgctxt "STR_DATABASEDEFAULTNAME"
msgid "New Database"
msgstr "Nová databáza"
#. DoGLb
-#: dbaccess/inc/strings.hrc:373
+#: dbaccess/inc/strings.hrc:374
msgctxt "STR_MYSQLJDBC_HEADERTEXT"
msgid "Set up connection to a MySQL database using JDBC"
msgstr "Nastavenie pripojenia k MySQL databáze pomocou JDBC"
#. B5kEC
-#: dbaccess/inc/strings.hrc:374
+#: dbaccess/inc/strings.hrc:375
msgctxt "STR_MYSQLJDBC_HELPTEXT"
msgid ""
"Please enter the required information to connect to a MySQL database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME.\n"
@@ -2091,67 +2097,67 @@ msgstr ""
"Kontaktujte svojho systémového administrátora, ak si nie ste istí v tomto nastavení."
#. uGTyY
-#: dbaccess/inc/strings.hrc:375
+#: dbaccess/inc/strings.hrc:376
msgctxt "STR_MYSQL_DRIVERCLASSTEXT"
msgid "MySQL JDBC d~river class:"
msgstr "Trieda ovládača MySQL JDBC:"
#. cBiSe
-#: dbaccess/inc/strings.hrc:376
+#: dbaccess/inc/strings.hrc:377
msgctxt "STR_MYSQL_DEFAULT"
msgid "Default: 3306"
msgstr "Predvolené: 3306"
#. zDx7G
-#: dbaccess/inc/strings.hrc:377
+#: dbaccess/inc/strings.hrc:378
msgctxt "STR_DBASE_HEADERTEXT"
msgid "Set up a connection to dBASE files"
msgstr "Nastaviť pripojenie k súborom dBASE"
#. MXTEF
-#: dbaccess/inc/strings.hrc:378
+#: dbaccess/inc/strings.hrc:379
msgctxt "STR_DBASE_HELPTEXT"
msgid "Select the folder where the dBASE files are stored."
msgstr "Vyberte priečinok, kde sú uložené súbory dBASE."
#. Ke4xP
-#: dbaccess/inc/strings.hrc:379
+#: dbaccess/inc/strings.hrc:380
msgctxt "STR_TEXT_HEADERTEXT"
msgid "Set up a connection to text files"
msgstr "Nastavenie pripojenia k textovým súborom"
#. uJFWa
-#: dbaccess/inc/strings.hrc:380
+#: dbaccess/inc/strings.hrc:381
msgctxt "STR_TEXT_HELPTEXT"
msgid "Select the folder where the CSV (Comma Separated Values) text files are stored. %PRODUCTNAME Base will open these files in read-only mode."
msgstr "Vyberte priečinok, kde sú uložené textové súbory CSV (Comma Separated Values). %PRODUCTNAME Base ich otvorí iba na čítanie."
#. chkNh
-#: dbaccess/inc/strings.hrc:381
+#: dbaccess/inc/strings.hrc:382
msgctxt "STR_TEXT_PATH_OR_FILE"
msgid "Path to text files"
msgstr "Cesta k textovým súborom"
#. VXUEj
-#: dbaccess/inc/strings.hrc:382
+#: dbaccess/inc/strings.hrc:383
msgctxt "STR_MSACCESS_HEADERTEXT"
msgid "Set up a connection to a Microsoft Access database"
msgstr "Nastavenie pripojenia k databáze Microsoft Access"
#. rTF65
-#: dbaccess/inc/strings.hrc:383
+#: dbaccess/inc/strings.hrc:384
msgctxt "STR_MSACCESS_HELPTEXT"
msgid "Please select the Microsoft Access file you want to access."
msgstr "Vyberte súbor Microsoft Access, ku ktorému chcete pristupovať."
#. DYcM8
-#: dbaccess/inc/strings.hrc:384
+#: dbaccess/inc/strings.hrc:385
msgctxt "STR_ADO_HEADERTEXT"
msgid "Set up a connection to an ADO database"
msgstr "Nastavenie pripojenia k databáze ADO"
#. WzZiB
-#: dbaccess/inc/strings.hrc:385
+#: dbaccess/inc/strings.hrc:386
msgctxt "STR_ADO_HELPTEXT"
msgid ""
"Please enter the URL of the ADO data source you want to connect to.\n"
@@ -2163,13 +2169,13 @@ msgstr ""
"Kontaktujte svojho systémového administrátora, ak nemáte jasno v týchto nastaveniach."
#. PRyfo
-#: dbaccess/inc/strings.hrc:386
+#: dbaccess/inc/strings.hrc:387
msgctxt "STR_ODBC_HEADERTEXT"
msgid "Set up a connection to an ODBC database"
msgstr "Nastavenie pripojenia k databáze ODBC"
#. CBVtz
-#: dbaccess/inc/strings.hrc:387
+#: dbaccess/inc/strings.hrc:388
msgctxt "STR_ODBC_HELPTEXT"
msgid ""
"Enter the name of the ODBC database you want to connect to.\n"
@@ -2181,13 +2187,13 @@ msgstr ""
"Kontaktujte svojho systémového administrátora, ak nemáte jasno v týchto nastaveniach."
#. dmi7n
-#: dbaccess/inc/strings.hrc:388
+#: dbaccess/inc/strings.hrc:389
msgctxt "STR_JDBC_HEADERTEXT"
msgid "Set up a connection to a JDBC database"
msgstr "Nastavenie pripojenia k databáze JDBC"
#. dYGeU
-#: dbaccess/inc/strings.hrc:389
+#: dbaccess/inc/strings.hrc:390
msgctxt "STR_JDBC_HELPTEXT"
msgid ""
"Please enter the required information to connect to a JDBC database.\n"
@@ -2197,25 +2203,25 @@ msgstr ""
"Kontaktujte svojho systémového administrátora, ak nemáte jasno v týchto nastaveniach."
#. DWgup
-#: dbaccess/inc/strings.hrc:390
+#: dbaccess/inc/strings.hrc:391
msgctxt "STR_ORACLE_HEADERTEXT"
msgid "Set up a connection to an Oracle database"
msgstr "Nastavenie pripojenia k databáze Oracle"
#. Z57ca
-#: dbaccess/inc/strings.hrc:391
+#: dbaccess/inc/strings.hrc:392
msgctxt "STR_ORACLE_DEFAULT"
msgid "Default: 1521"
msgstr "Predvolené: 1521"
#. dnAP9
-#: dbaccess/inc/strings.hrc:392
+#: dbaccess/inc/strings.hrc:393
msgctxt "STR_ORACLE_DRIVERCLASSTEXT"
msgid "Oracle JDBC ~driver class"
msgstr "Trieda ovládača Oracle JDBC"
#. aD8dK
-#: dbaccess/inc/strings.hrc:393
+#: dbaccess/inc/strings.hrc:394
msgctxt "STR_ORACLE_HELPTEXT"
msgid ""
"Please enter the required information to connect to an Oracle database. Note that a JDBC Driver Class must be installed on your system and registered with %PRODUCTNAME.\n"
@@ -2225,13 +2231,13 @@ msgstr ""
"V prípade, že ste si nie istí nasledujúcimi nastaveniami, kontaktujte svojho systémového administrátora."
#. Vqjfj
-#: dbaccess/inc/strings.hrc:394
+#: dbaccess/inc/strings.hrc:395
msgctxt "STR_SPREADSHEET_HEADERTEXT"
msgid "Set up a connection to spreadsheets"
msgstr "Nastavenie pripojenia k tabuľkovým zošitom"
#. FnpBr
-#: dbaccess/inc/strings.hrc:395
+#: dbaccess/inc/strings.hrc:396
msgctxt "STR_SPREADSHEET_HELPTEXT"
msgid ""
"Click 'Browse...' to select a %PRODUCTNAME spreadsheet or Microsoft Excel workbook.\n"
@@ -2241,277 +2247,277 @@ msgstr ""
"%PRODUCTNAME ho otvorí iba na čítanie."
#. fxmJG
-#: dbaccess/inc/strings.hrc:396
+#: dbaccess/inc/strings.hrc:397
msgctxt "STR_SPREADSHEETPATH"
msgid "~Location and file name"
msgstr "Umiestnenie a názov sú~boru"
#. og5kg
-#: dbaccess/inc/strings.hrc:398
+#: dbaccess/inc/strings.hrc:399
msgctxt "STR_COMMAND_EXECUTED_SUCCESSFULLY"
msgid "Command successfully executed."
msgstr "Príkaz úspešne vykonaný."
#. BhFXv
-#: dbaccess/inc/strings.hrc:399
+#: dbaccess/inc/strings.hrc:400
msgctxt "STR_DIRECTSQL_CONNECTIONLOST"
msgid "The connection to the database has been lost. This dialog will be closed."
msgstr "Spojenie s databázou bolo stratené. Toto dialógové okno bude zatvorené."
#. WTysM
-#: dbaccess/inc/strings.hrc:401
+#: dbaccess/inc/strings.hrc:402
msgctxt "STR_TAB_INDEX_SORTORDER"
msgid "Sort order"
msgstr "Poradie zoraďovania"
#. 67TCR
-#: dbaccess/inc/strings.hrc:402
+#: dbaccess/inc/strings.hrc:403
msgctxt "STR_TAB_INDEX_FIELD"
msgid "Index field"
msgstr "Pole indexu"
#. rCZbG
-#: dbaccess/inc/strings.hrc:403
+#: dbaccess/inc/strings.hrc:404
msgctxt "STR_ORDER_ASCENDING"
msgid "Ascending"
msgstr "Vzostupne"
#. zUeEN
-#: dbaccess/inc/strings.hrc:404
+#: dbaccess/inc/strings.hrc:405
msgctxt "STR_ORDER_DESCENDING"
msgid "Descending"
msgstr "Zostupne"
#. DpB67
-#: dbaccess/inc/strings.hrc:405
+#: dbaccess/inc/strings.hrc:406
msgctxt "STR_CONFIRM_DROP_INDEX"
msgid "Do you really want to delete the index '$name$'?"
msgstr "Určite chcete odstrániť index '$name$'?"
#. 3sTLe
-#: dbaccess/inc/strings.hrc:406
+#: dbaccess/inc/strings.hrc:407
msgctxt "STR_LOGICAL_INDEX_NAME"
msgid "index"
msgstr "index"
#. HFaXn
-#: dbaccess/inc/strings.hrc:407
+#: dbaccess/inc/strings.hrc:408
msgctxt "STR_NEED_INDEX_FIELDS"
msgid "The index must contain at least one field."
msgstr "Index musí obsahovať aspoň jedno pole."
#. LRDDD
-#: dbaccess/inc/strings.hrc:408
+#: dbaccess/inc/strings.hrc:409
msgctxt "STR_INDEX_NAME_ALREADY_USED"
msgid "There is already another index named \"$name$\"."
msgstr "Iný index s názvom \"$name$\" už existuje."
#. 9C3mx
-#: dbaccess/inc/strings.hrc:409
+#: dbaccess/inc/strings.hrc:410
msgctxt "STR_INDEXDESIGN_DOUBLE_COLUMN_NAME"
msgid "In an index definition, no table column may occur more than once. However, you have entered column \"$name$\" twice."
msgstr "V definícii indexu sa nemôže objaviť názov stĺpca tabuľky viac ako raz. Napriek tomu ste zadali stĺpec \"$name$\" dvakrát."
#. XANpc
-#: dbaccess/inc/strings.hrc:411
+#: dbaccess/inc/strings.hrc:412
msgctxt "STR_COULD_NOT_CONVERT_PARAM"
msgid "The entry could not be converted to a valid value for the \"$name$\" parameter"
msgstr "Položka nemohla byť konvertovaná na platnú hodnotu parametra \"$name$\""
#. FCnE3
-#: dbaccess/inc/strings.hrc:413
+#: dbaccess/inc/strings.hrc:414
msgctxt "STR_EXCEPTION_STATUS"
msgid "SQL Status"
msgstr "SQL status"
#. ha64T
-#: dbaccess/inc/strings.hrc:414
+#: dbaccess/inc/strings.hrc:415
msgctxt "STR_EXCEPTION_ERRORCODE"
msgid "Error code"
msgstr "Kód chyby"
#. 9A2cX
-#: dbaccess/inc/strings.hrc:415
+#: dbaccess/inc/strings.hrc:416
msgctxt "STR_EXPLAN_STRINGCONVERSION_ERROR"
msgid "A frequent reason for this error is an inappropriate character set setting for the language of your database. Check the setting by choosing Edit - Database - Properties."
msgstr "Častou príčinou tejto chyby je nevhodná znaková sada pre jazyk databázy. Skontrolujte nastavenia pomocou Upraviť - Databáza - Vlastnosti."
#. itnjJ
-#: dbaccess/inc/strings.hrc:416
+#: dbaccess/inc/strings.hrc:417
msgctxt "STR_EXCEPTION_ERROR"
msgid "Error"
msgstr "Chyba"
#. Q4A2Y
-#: dbaccess/inc/strings.hrc:417
+#: dbaccess/inc/strings.hrc:418
msgctxt "STR_EXCEPTION_WARNING"
msgid "Warning"
msgstr "Upozornenie"
#. LSBpE
-#: dbaccess/inc/strings.hrc:418
+#: dbaccess/inc/strings.hrc:419
msgctxt "STR_EXCEPTION_INFO"
msgid "Information"
msgstr "Informácia"
#. DKRwR
-#: dbaccess/inc/strings.hrc:419
+#: dbaccess/inc/strings.hrc:420
msgctxt "STR_EXCEPTION_DETAILS"
msgid "Details"
msgstr "Podrobnosti"
#. Avmtu
-#: dbaccess/inc/strings.hrc:421
+#: dbaccess/inc/strings.hrc:422
msgctxt "STR_QUERY_USERADMIN_DELETE_USER"
msgid "Do you really want to delete the user?"
msgstr "Určite chcete odstrániť používateľa?"
#. yeKZF
-#: dbaccess/inc/strings.hrc:422
+#: dbaccess/inc/strings.hrc:423
msgctxt "STR_USERADMIN_NOT_AVAILABLE"
msgid "The database does not support user administration."
msgstr "Tento typ databázy nepodporuje administráciu používateľov."
#. 4CVtX
-#: dbaccess/inc/strings.hrc:423
+#: dbaccess/inc/strings.hrc:424
msgctxt "STR_ERROR_PASSWORDS_NOT_IDENTICAL"
msgid "The passwords do not match. Please enter the password again."
msgstr "Heslá sa nezhodujú. Zadajte ho znova."
#. iu64w
-#: dbaccess/inc/strings.hrc:425
+#: dbaccess/inc/strings.hrc:426
msgctxt "STR_JOIN_TYPE_HINT"
msgid "Please note that some databases may not support this join type."
msgstr "Niektoré databázy nepodporujú tento typ spojenia (join)."
#. Khmn9
-#: dbaccess/inc/strings.hrc:426
+#: dbaccess/inc/strings.hrc:427
msgctxt "STR_QUERY_INNER_JOIN"
msgid "Includes only records for which the contents of the related fields of both tables are identical."
msgstr "Zahŕňa len záznamy ktorých obsah v daných poliach je rovnaký pre obe tabuľky."
#. JUyyK
-#: dbaccess/inc/strings.hrc:427
+#: dbaccess/inc/strings.hrc:428
msgctxt "STR_QUERY_LEFTRIGHT_JOIN"
msgid "Contains ALL records from table '%1' but only records from table '%2' where the values in the related fields are matching."
msgstr "Zahŕňa všetky záznamy z tabuľky '%1' ale z tabuľky '%2' len tie záznamy, kde sú zhodné záznamy v daných poliach."
#. EdhCU
-#: dbaccess/inc/strings.hrc:428
+#: dbaccess/inc/strings.hrc:429
msgctxt "STR_QUERY_FULL_JOIN"
msgid "Contains ALL records from '%1' and from '%2'."
msgstr "Zahŕňa všetky záznamy z tabuľky'%1' a '%2'."
#. c9PsZ
-#: dbaccess/inc/strings.hrc:429
+#: dbaccess/inc/strings.hrc:430
msgctxt "STR_QUERY_CROSS_JOIN"
msgid "Contains the Cartesian product of ALL records from '%1' and from '%2'."
msgstr "Obsahuje kartézsky súčin všetkých záznamov z '%1' a '%2'."
#. KyLuN
-#: dbaccess/inc/strings.hrc:431
+#: dbaccess/inc/strings.hrc:432
msgctxt "STR_CTW_NO_VIEWS_SUPPORT"
msgid "The destination database does not support views."
msgstr "Cieľová databáza nepodporuje pohľady."
#. RaJQd
-#: dbaccess/inc/strings.hrc:432
+#: dbaccess/inc/strings.hrc:433
msgctxt "STR_CTW_NO_PRIMARY_KEY_SUPPORT"
msgid "The destination database does not support primary keys."
msgstr "Cieľová databáza nepodporuje primárne kľúče."
#. JBBmY
-#: dbaccess/inc/strings.hrc:433
+#: dbaccess/inc/strings.hrc:434
msgctxt "STR_CTW_INVALID_DATA_ACCESS_DESCRIPTOR"
msgid "no data access descriptor found, or no data access descriptor able to provide all necessary information"
msgstr "nenájdený deskriptor prístupu k dátam, alebo žiaden deskriptor prístupu k dátam neposkytol všetky potrebné informácie"
#. Z4JFe
-#: dbaccess/inc/strings.hrc:434
+#: dbaccess/inc/strings.hrc:435
msgctxt "STR_CTW_ONLY_TABLES_AND_QUERIES_SUPPORT"
msgid "Only tables and queries are supported at the moment."
msgstr "Momentálne sú podporované len tabuľky a dotazy."
#. KvUFb
-#: dbaccess/inc/strings.hrc:435
+#: dbaccess/inc/strings.hrc:436
msgctxt "STR_CTW_COPY_SOURCE_NEEDS_BOOKMARKS"
msgid "The copy source's result set must support bookmarks."
msgstr "Množina výsledkov kopírovaného zdroja musí podporovať záložky."
#. XVb6E
-#: dbaccess/inc/strings.hrc:436
+#: dbaccess/inc/strings.hrc:437
msgctxt "STR_CTW_UNSUPPORTED_COLUMN_TYPE"
msgid "Unsupported source column type ($type$) at column position $pos$."
msgstr "Nepodporovaný typ stĺpca zdroja ($type$) na pozícii stĺpca $pos$."
#. 7pnvE
-#: dbaccess/inc/strings.hrc:437
+#: dbaccess/inc/strings.hrc:438
msgctxt "STR_CTW_ILLEGAL_PARAMETER_COUNT"
msgid "Illegal number of initialization parameters."
msgstr "Neplatný počet inicializačných parametrov."
#. z3h9J
-#: dbaccess/inc/strings.hrc:438
+#: dbaccess/inc/strings.hrc:439
msgctxt "STR_CTW_ERROR_DURING_INITIALIZATION"
msgid "An error occurred during initialization."
msgstr "Počas inicializácie sa vyskytla chyba."
#. Qpda7
-#: dbaccess/inc/strings.hrc:439
+#: dbaccess/inc/strings.hrc:440
msgctxt "STR_CTW_ERROR_UNSUPPORTED_SETTING"
msgid "Unsupported setting in the copy source descriptor: $name$."
msgstr "Nepodporované nastavenie v popise kópie zroja: $name$."
#. BsP8j
-#: dbaccess/inc/strings.hrc:440
+#: dbaccess/inc/strings.hrc:441
msgctxt "STR_CTW_ERROR_NO_QUERY"
msgid "To copy a query, your connection must be able to provide queries."
msgstr "Aby ste mohli kopírovať dotazy, musí byť vaše spojenie schopné ich poskytovať."
#. QYh2y
-#: dbaccess/inc/strings.hrc:441
+#: dbaccess/inc/strings.hrc:442
msgctxt "STR_CTW_ERROR_INVALID_INTERACTIONHANDLER"
msgid "The given interaction handler is invalid."
msgstr "Zadaný obslužný program interakcií je neplatný."
#. ixrDD
-#: dbaccess/inc/strings.hrc:443
+#: dbaccess/inc/strings.hrc:444
msgctxt "STR_QUERY_REL_EDIT_RELATION"
msgid "This relation already exists. Do you want to edit it or create a new one?"
msgstr "Táto relácia už existuje. Chcete ju upraviť alebo vytvoriť novú?"
#. nFRsS
-#: dbaccess/inc/strings.hrc:444
+#: dbaccess/inc/strings.hrc:445
msgctxt "STR_QUERY_REL_EDIT"
msgid "Edit..."
msgstr "Upraviť..."
#. yRkFG
-#: dbaccess/inc/strings.hrc:445
+#: dbaccess/inc/strings.hrc:446
msgctxt "STR_QUERY_REL_CREATE"
msgid "Create..."
msgstr "Vytvoriť..."
#. VWBJF
-#: dbaccess/inc/strings.hrc:446
+#: dbaccess/inc/strings.hrc:447
msgctxt "STR_RELATIONDESIGN"
msgid " - %PRODUCTNAME Base: Relation design"
msgstr " - %PRODUCTNAME Base: Návrh relácie"
#. ZCd5X
-#: dbaccess/inc/strings.hrc:447
+#: dbaccess/inc/strings.hrc:448
msgctxt "STR_RELATIONDESIGN_NOT_AVAILABLE"
msgid "The database does not support relations."
msgstr "Tento typ databázy nepodporuje relácie."
#. CG2Pd
-#: dbaccess/inc/strings.hrc:448
+#: dbaccess/inc/strings.hrc:449
msgctxt "STR_QUERY_REL_DELETE_WINDOW"
msgid "When you delete this table all corresponding relations will be deleted as well. Continue?"
msgstr "Odstránením tejto tabuľky odstránite tiež všetky zodpovedajúce relácie. Pokračovať?"
#. Wzf9T
-#: dbaccess/inc/strings.hrc:449
+#: dbaccess/inc/strings.hrc:450
msgctxt "STR_QUERY_REL_COULD_NOT_CREATE"
msgid ""
"The database could not create the relation. Maybe foreign keys for this kind of table aren't supported.\n"
@@ -2520,78 +2526,6 @@ msgstr ""
"Databáze sa nepodarilo vytvoriť daný vzťah. Pre tento typ tabuľky možno nie sú podporované cudzie kľúče.\n"
"Skontrolujte dokumentáciu použitej databázy."
-#. Fsz7D
-#: dbaccess/inc/templwin.hrc:41
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "Title"
-msgstr "Titul"
-
-#. zo57j
-#: dbaccess/inc/templwin.hrc:42
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "By"
-msgstr "Autor"
-
-#. Zh8Ni
-#: dbaccess/inc/templwin.hrc:43
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "Date"
-msgstr "Dátum"
-
-#. eHFA4
-#: dbaccess/inc/templwin.hrc:44
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "Keywords"
-msgstr "Kľúčové slová"
-
-#. eYGnQ
-#: dbaccess/inc/templwin.hrc:45
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "Description"
-msgstr "Popis"
-
-#. Eg2eG
-#: dbaccess/inc/templwin.hrc:46
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "Type"
-msgstr "Typ"
-
-#. hokZy
-#: dbaccess/inc/templwin.hrc:47
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "Modified on"
-msgstr "Upravené"
-
-#. XMEJb
-#: dbaccess/inc/templwin.hrc:48
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "Modified by"
-msgstr "Upravil"
-
-#. MWkd5
-#: dbaccess/inc/templwin.hrc:49
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "Printed on"
-msgstr "Vytlačené na"
-
-#. BBEEC
-#: dbaccess/inc/templwin.hrc:50
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "Printed by"
-msgstr "Vytlačil"
-
-#. VCGe3
-#: dbaccess/inc/templwin.hrc:51
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "Subject"
-msgstr "Predmet"
-
-#. HVYdE
-#: dbaccess/inc/templwin.hrc:52
-msgctxt "STRARY_SVT_DOCINFO"
-msgid "Size"
-msgstr "Veľkosť"
-
#. 4KVZn
#: dbaccess/uiconfig/ui/admindialog.ui:8
msgctxt "admindialog|AdminDialog"
@@ -2701,25 +2635,25 @@ msgid "_Save"
msgstr "_Uložiť"
#. mvCb2
-#: dbaccess/uiconfig/ui/collectionviewdialog.ui:138
+#: dbaccess/uiconfig/ui/collectionviewdialog.ui:140
msgctxt "collectionviewdialog|newFolderButton|tooltip_text"
msgid "Create New Directory"
msgstr "Vytvoriť nový priečinok"
#. Bwm2H
-#: dbaccess/uiconfig/ui/collectionviewdialog.ui:154
+#: dbaccess/uiconfig/ui/collectionviewdialog.ui:157
msgctxt "collectionviewdialog|upButton|tooltip_text"
msgid "Up One Level"
msgstr "O úroveň vyššie"
#. rSTnu
-#: dbaccess/uiconfig/ui/collectionviewdialog.ui:193
+#: dbaccess/uiconfig/ui/collectionviewdialog.ui:196
msgctxt "collectionviewdialog|columntitle"
msgid "Folder Name"
msgstr "Názov priečinka"
#. G5Eev
-#: dbaccess/uiconfig/ui/collectionviewdialog.ui:221
+#: dbaccess/uiconfig/ui/collectionviewdialog.ui:224
msgctxt "collectionviewdialog|fileNameLabel"
msgid "File _name:"
msgstr "_Názov súboru:"
@@ -2731,35 +2665,17 @@ msgid "Column Width"
msgstr "Šírka stĺpca"
#. AiEUA
-#: dbaccess/uiconfig/ui/colwidthdialog.ui:96
+#: dbaccess/uiconfig/ui/colwidthdialog.ui:99
msgctxt "colwidthdialog|label1"
msgid "_Width:"
msgstr "Ší_rka:"
-#. j9AMh
-#: dbaccess/uiconfig/ui/colwidthdialog.ui:116
-msgctxt "colwidthdialog|extended_tip|value"
-msgid "Enter the column width that you want to use."
-msgstr "Zadajte požadovanú šírku stĺpca."
-
#. LtAmr
-#: dbaccess/uiconfig/ui/colwidthdialog.ui:127
+#: dbaccess/uiconfig/ui/colwidthdialog.ui:125
msgctxt "colwidthdialog|automatic"
msgid "_Automatic"
msgstr "_Automaticky"
-#. HWoLr
-#: dbaccess/uiconfig/ui/colwidthdialog.ui:136
-msgctxt "colwidthdialog|extended_tip|automatic"
-msgid "Automatically adjusts the column width based on the current font."
-msgstr "Automaticky upraví šírku stĺpca podľa súčasného písma."
-
-#. enAfe
-#: dbaccess/uiconfig/ui/colwidthdialog.ui:167
-msgctxt "colwidthdialog|extended_tip|ColWidthDialog"
-msgid "Changes the width of the current column, or the selected columns."
-msgstr "Zmení šírku aktuálneho stĺpca alebo označených stĺpcov."
-
#. zBVS9
#: dbaccess/uiconfig/ui/connectionpage.ui:40
msgctxt "connectionpage|browseurllabel"
@@ -3197,12 +3113,6 @@ msgctxt "fielddescpage|STR_TAB_FIELD_DATATYPE"
msgid "Field _type"
msgstr "Typ _poľa"
-#. dUE3D
-#: dbaccess/uiconfig/ui/fielddescpanel.ui:44
-msgctxt "designhelpbox|textview-tooltip"
-msgid "Field Properties Help"
-msgstr "Pomoc pre vlastnosti poľa"
-
#. KUVUc
#: dbaccess/uiconfig/ui/fielddialog.ui:9
msgctxt "fielddialog|FieldDialog"
@@ -3534,61 +3444,61 @@ msgid "Join Properties"
msgstr "Vlastnosti spojenia"
#. YUCgu
-#: dbaccess/uiconfig/ui/joindialog.ui:136
+#: dbaccess/uiconfig/ui/joindialog.ui:137
msgctxt "joindialog|label1"
msgid "Tables Involved"
msgstr "Zahrnuté tabuľky"
#. kbsrd
-#: dbaccess/uiconfig/ui/joindialog.ui:200
+#: dbaccess/uiconfig/ui/joindialog.ui:201
msgctxt "joindialog|label2"
msgid "Fields Involved"
msgstr "Zahrnuté polia"
#. C3Avj
-#: dbaccess/uiconfig/ui/joindialog.ui:235
+#: dbaccess/uiconfig/ui/joindialog.ui:236
msgctxt "joindialog|label5"
msgid "_Type:"
msgstr "_Typ:"
#. RAXzW
-#: dbaccess/uiconfig/ui/joindialog.ui:251
+#: dbaccess/uiconfig/ui/joindialog.ui:252
msgctxt "joindialog|liststore1"
msgid "Inner join"
msgstr "Vnútorné spojenie"
#. ZEaHj
-#: dbaccess/uiconfig/ui/joindialog.ui:252
+#: dbaccess/uiconfig/ui/joindialog.ui:253
msgctxt "joindialog|liststore1"
msgid "Left join"
msgstr "Ľavé spojenie (left join)"
#. y9EMH
-#: dbaccess/uiconfig/ui/joindialog.ui:253
+#: dbaccess/uiconfig/ui/joindialog.ui:254
msgctxt "joindialog|liststore1"
msgid "Right join"
msgstr "Pravé spojenie (right join)"
#. G57Ed
-#: dbaccess/uiconfig/ui/joindialog.ui:254
+#: dbaccess/uiconfig/ui/joindialog.ui:255
msgctxt "joindialog|liststore1"
msgid "Full (outer) join"
msgstr "Plné spojenie (full join)"
#. vwzCL
-#: dbaccess/uiconfig/ui/joindialog.ui:255
+#: dbaccess/uiconfig/ui/joindialog.ui:256
msgctxt "joindialog|liststore1"
msgid "Cross join"
msgstr "Krížové spojenie (Cross join)"
#. GTvPb
-#: dbaccess/uiconfig/ui/joindialog.ui:265
+#: dbaccess/uiconfig/ui/joindialog.ui:266
msgctxt "joindialog|natural"
msgid "Natural"
msgstr "Prirodzené"
#. UkuPe
-#: dbaccess/uiconfig/ui/joindialog.ui:289
+#: dbaccess/uiconfig/ui/joindialog.ui:290
msgctxt "joindialog|label6"
msgid "Options"
msgstr "Možnosti"
@@ -3924,209 +3834,137 @@ msgid "Standard Filter"
msgstr "Štandardný filter"
#. Vj95w
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:98
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:101
msgctxt "queryfilterdialog|label2"
msgid "Operator"
msgstr "Operátor"
#. epkLc
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:110
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:113
msgctxt "queryfilterdialog|label5"
msgid "Field name"
msgstr "Názov poľa"
#. Y5DBo
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:121
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:124
msgctxt "queryfilterdialog|label6"
msgid "Condition"
msgstr "Podmienka"
#. DdcwC
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:134
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:137
msgctxt "queryfilterdialog|field1"
msgid "- none -"
msgstr "- nič -"
-#. eYDCU
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:138
-msgctxt "queryfilterdialog|extended_tip|field1"
-msgid "Specifies the field names from the current table to set them in the argument."
-msgstr "Určuje názvy polí aktuálnej tabuľky, ktoré je možné použiť v argumentoch."
-
#. 57zBE
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:154
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:152
msgctxt "queryfilterdialog|cond1"
msgid "="
msgstr "="
#. GGX3G
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:155
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:153
msgctxt "queryfilterdialog|cond1"
msgid "<>"
msgstr "<>"
#. k5DCL
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:156
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:154
msgctxt "queryfilterdialog|cond1"
msgid "<"
msgstr "<"
#. FAAzh
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:157
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:155
msgctxt "queryfilterdialog|cond1"
msgid "<="
msgstr "<="
#. Qzo9n
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:158
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:156
msgctxt "queryfilterdialog|cond1"
msgid ">"
msgstr ">"
#. H4pEw
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:159
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:157
msgctxt "queryfilterdialog|cond1"
msgid ">="
msgstr ">="
#. PWqBz
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:160
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:158
msgctxt "queryfilterdialog|cond1"
msgid "like"
msgstr "podobné"
#. RDy6G
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:161
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:159
msgctxt "queryfilterdialog|cond1"
msgid "not like"
msgstr "nie podobné"
#. 2qvuA
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:162
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:160
msgctxt "queryfilterdialog|cond1"
msgid "null"
msgstr "null"
#. 4znh7
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:163
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:161
msgctxt "queryfilterdialog|cond1"
msgid "not null"
msgstr "not null"
-#. 4qhBZ
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:167
-msgctxt "queryfilterdialog|extended_tip|cond1"
-msgid "Specifies the comparative operators through which the entries in the Field name and Value fields can be linked."
-msgstr "Určuje operátory, ktorými sa porovnávajú položky Názov poľa a Hodnota."
-
#. A8jis
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:182
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:175
msgctxt "queryfilterdialog|field2"
msgid "- none -"
msgstr "- nič -"
-#. y2FAQ
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:186
-msgctxt "queryfilterdialog|extended_tip|field2"
-msgid "Specifies the field names from the current table to set them in the argument."
-msgstr "Určuje názvy polí aktuálnej tabuľky, ktoré je možné použiť v argumentoch."
-
#. FdHSG
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:201
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:189
msgctxt "queryfilterdialog|field3"
msgid "- none -"
msgstr "- nič -"
-#. FvUHF
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:205
-msgctxt "queryfilterdialog|extended_tip|field3"
-msgid "Specifies the field names from the current table to set them in the argument."
-msgstr "Určuje názvy polí aktuálnej tabuľky, ktoré je možné použiť v argumentoch."
-
-#. oCJaY
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:222
-msgctxt "queryfilterdialog|extended_tip|cond2"
-msgid "Specifies the comparative operators through which the entries in the Field name and Value fields can be linked."
-msgstr "Určuje operátory, ktorými sa porovnávajú položky Názov poľa a Hodnota."
-
-#. rY6Pi
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:239
-msgctxt "queryfilterdialog|extended_tip|cond3"
-msgid "Specifies the comparative operators through which the entries in the Field name and Value fields can be linked."
-msgstr "Určuje operátory, ktorými sa porovnávajú položky Názov poľa a Hodnota."
-
#. tBd3g
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:252
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:225
msgctxt "queryfilterdialog|label7"
msgid "Value"
msgstr "Hodnota"
-#. o2BNC
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:267
-msgctxt "queryfilterdialog|extended_tip|value1"
-msgid "Specifies a value to filter the field."
-msgstr "Určuje hodnotu pre filtrovanie."
-
-#. w42mr
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:284
-msgctxt "queryfilterdialog|extended_tip|value2"
-msgid "Specifies a value to filter the field."
-msgstr "Určuje hodnotu pre filtrovanie."
-
-#. tB93H
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:301
-msgctxt "queryfilterdialog|extended_tip|value3"
-msgid "Specifies a value to filter the field."
-msgstr "Určuje hodnotu pre filtrovanie."
-
#. PFZ8z
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:316
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:274
msgctxt "queryfilterdialog|op2"
msgid "AND"
msgstr "A"
#. pQza3
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:317
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:275
msgctxt "queryfilterdialog|op2"
msgid "OR"
msgstr "ALEBO"
-#. msKEj
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:321
-msgctxt "queryfilterdialog|extended_tip|op2"
-msgid "For the following arguments, you can choose between the logical operators AND / OR."
-msgstr "Pre nasledujúce argumenty je možné zvoliť medzi logickými operátormi A / ALEBO."
-
#. EaXyP
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:336
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:289
msgctxt "queryfilterdialog|op3"
msgid "AND"
msgstr "A"
#. DV78L
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:337
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:290
msgctxt "queryfilterdialog|op3"
msgid "OR"
msgstr "ALEBO"
-#. kdWnt
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:341
-msgctxt "queryfilterdialog|extended_tip|op3"
-msgid "For the following arguments, you can choose between the logical operators AND / OR."
-msgstr "Pre nasledujúce argumenty je možné zvoliť medzi logickými operátormi A / ALEBO."
-
#. SESZq
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:361
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:309
msgctxt "queryfilterdialog|label1"
msgid "Criteria"
msgstr "Kritérium"
-#. S22Fy
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:386
-msgctxt "queryfilterdialog|extended_tip|QueryFilterDialog"
-msgid "Allows you to set the filtering options."
-msgstr "Umožňuje nastaviť možnosti filtrovania."
-
#. jFD4L
#: dbaccess/uiconfig/ui/queryfuncmenu.ui:12
msgctxt "queryfuncmenu|functions"
@@ -4158,53 +3996,29 @@ msgid "Query Properties"
msgstr "Vlastnosti dotazu"
#. fyogK
-#: dbaccess/uiconfig/ui/querypropertiesdialog.ui:86
+#: dbaccess/uiconfig/ui/querypropertiesdialog.ui:89
msgctxt "querypropertiesdialog|limit-label"
msgid "Limit:"
msgstr "Ohraničenie:"
#. 2D6E2
-#: dbaccess/uiconfig/ui/querypropertiesdialog.ui:101
+#: dbaccess/uiconfig/ui/querypropertiesdialog.ui:104
msgctxt "querypropertiesdialog|distinct"
msgid "Yes"
msgstr "Áno"
-#. jgttX
-#: dbaccess/uiconfig/ui/querypropertiesdialog.ui:111
-msgctxt "querypropertiesdialog|extended_tip|distinct"
-msgid "Use distinct values in query."
-msgstr "V dotaze používať jedinečné hodnoty."
-
#. rErxt
-#: dbaccess/uiconfig/ui/querypropertiesdialog.ui:123
+#: dbaccess/uiconfig/ui/querypropertiesdialog.ui:121
msgctxt "querypropertiesdialog|nondistinct"
msgid "No"
msgstr "Nie"
-#. QAGhF
-#: dbaccess/uiconfig/ui/querypropertiesdialog.ui:133
-msgctxt "querypropertiesdialog|extended_tip|nondistinct"
-msgid "Not use distinct values in query."
-msgstr "V dotaze nepoužívať jedinečné hodnoty."
-
#. P9quF
-#: dbaccess/uiconfig/ui/querypropertiesdialog.ui:153
+#: dbaccess/uiconfig/ui/querypropertiesdialog.ui:146
msgctxt "querypropertiesdialog|distinctvalues"
msgid "Distinct values:"
msgstr "Jedinečné hodnoty:"
-#. asbjN
-#: dbaccess/uiconfig/ui/querypropertiesdialog.ui:175
-msgctxt "querypropertiesdialog|extended_tip|limitbox"
-msgid "Adds a Limit to set the maximum number of records to return."
-msgstr "Pridá hranicu určujúcu maximálny počet vrátených záznamov."
-
-#. GoEm9
-#: dbaccess/uiconfig/ui/querypropertiesdialog.ui:203
-msgctxt "querypropertiesdialog|extended_tip|QueryPropertiesDialog"
-msgid "In the Query Properties dialog you can set two properties of the SQL Query, i.e. whether to return distinct values, and whether to limit the result set."
-msgstr "V dialógovom okne Vlastnosti dotazu môžete nastaviť dve vlastnosti SQL dotazu: či vracať jedinečné hodnoty a či má byť obmedzený rozsah výsledkov."
-
#. gLFLt
#: dbaccess/uiconfig/ui/relationdialog.ui:8
msgctxt "relationdialog|RelationDialog"
@@ -4212,103 +4026,103 @@ msgid "Relations"
msgstr "Relácie"
#. DEGM2
-#: dbaccess/uiconfig/ui/relationdialog.ui:136
+#: dbaccess/uiconfig/ui/relationdialog.ui:137
msgctxt "relationdialog|label1"
msgid "Tables Involved"
msgstr "Zahrnuté tabuľky"
#. 87WEB
-#: dbaccess/uiconfig/ui/relationdialog.ui:174
+#: dbaccess/uiconfig/ui/relationdialog.ui:175
msgctxt "relationdialog|label2"
msgid "Fields Involved"
msgstr "Zahrnuté polia"
#. pf4b4
-#: dbaccess/uiconfig/ui/relationdialog.ui:212
+#: dbaccess/uiconfig/ui/relationdialog.ui:213
msgctxt "relationdialog|addaction"
msgid "_No action"
msgstr "Žiad_na akcia"
#. uZGGW
-#: dbaccess/uiconfig/ui/relationdialog.ui:228
+#: dbaccess/uiconfig/ui/relationdialog.ui:229
msgctxt "relationdialog|addcascade"
msgid "_Update cascade"
msgstr "Akt_ualizovať kaskádu"
#. PfRDx
-#: dbaccess/uiconfig/ui/relationdialog.ui:244
+#: dbaccess/uiconfig/ui/relationdialog.ui:245
msgctxt "relationdialog|addnull"
msgid "_Set NULL"
msgstr "_Set NULL"
#. xNWHg
-#: dbaccess/uiconfig/ui/relationdialog.ui:260
+#: dbaccess/uiconfig/ui/relationdialog.ui:261
msgctxt "relationdialog|adddefault"
msgid "Set _default"
msgstr "Nastaviť _predvolené"
#. SfKFG
-#: dbaccess/uiconfig/ui/relationdialog.ui:282
+#: dbaccess/uiconfig/ui/relationdialog.ui:283
msgctxt "relationdialog|label3"
msgid "Update Options"
msgstr "Možnosti aktualizácie"
#. wnvZa
-#: dbaccess/uiconfig/ui/relationdialog.ui:315
+#: dbaccess/uiconfig/ui/relationdialog.ui:316
msgctxt "relationdialog|delaction"
msgid "_No action"
msgstr "Žiad_na akcia"
#. 3BAEe
-#: dbaccess/uiconfig/ui/relationdialog.ui:331
+#: dbaccess/uiconfig/ui/relationdialog.ui:332
msgctxt "relationdialog|delcascade"
msgid "Delete _cascade"
msgstr "Odstrániť k_askády"
#. Zd5SC
-#: dbaccess/uiconfig/ui/relationdialog.ui:347
+#: dbaccess/uiconfig/ui/relationdialog.ui:348
msgctxt "relationdialog|delnull"
msgid "_Set NULL"
msgstr "_Set NULL"
#. hZGB8
-#: dbaccess/uiconfig/ui/relationdialog.ui:363
+#: dbaccess/uiconfig/ui/relationdialog.ui:364
msgctxt "relationdialog|deldefault"
msgid "Set _default"
msgstr "Nastaviť _predvolené"
#. LLcup
-#: dbaccess/uiconfig/ui/relationdialog.ui:385
+#: dbaccess/uiconfig/ui/relationdialog.ui:386
msgctxt "relationdialog|label4"
msgid "Delete Options"
msgstr "Možnosti odstraňovania"
#. 2Cb2G
-#: dbaccess/uiconfig/ui/relationdialog.ui:438
+#: dbaccess/uiconfig/ui/relationdialog.ui:439
msgctxt "relationdialog|liststore1"
msgid "Inner join"
msgstr "Vnútorné spojenie"
#. nhWNP
-#: dbaccess/uiconfig/ui/relationdialog.ui:442
+#: dbaccess/uiconfig/ui/relationdialog.ui:443
msgctxt "relationdialog|liststore1"
msgid "Left join"
msgstr "Ľavé spojenie (left join)"
#. TD2LX
-#: dbaccess/uiconfig/ui/relationdialog.ui:446
+#: dbaccess/uiconfig/ui/relationdialog.ui:447
msgctxt "relationdialog|liststore1"
msgid "Right join"
msgstr "Pravé spojenie (right join)"
#. yLDPS
-#: dbaccess/uiconfig/ui/relationdialog.ui:450
+#: dbaccess/uiconfig/ui/relationdialog.ui:451
msgctxt "relationdialog|liststore1"
msgid "Full (outer) join"
msgstr "Plné spojenie (full join)"
#. UYDBa
-#: dbaccess/uiconfig/ui/relationdialog.ui:454
+#: dbaccess/uiconfig/ui/relationdialog.ui:455
msgctxt "relationdialog|liststore1"
msgid "Cross join"
msgstr "Krížové spojenie (Cross join)"
@@ -4320,35 +4134,17 @@ msgid "Row Height"
msgstr "Výška riadka"
#. 8pFfi
-#: dbaccess/uiconfig/ui/rowheightdialog.ui:96
+#: dbaccess/uiconfig/ui/rowheightdialog.ui:99
msgctxt "rowheightdialog|label1"
msgid "_Height:"
msgstr "_Výška:"
-#. cZCeF
-#: dbaccess/uiconfig/ui/rowheightdialog.ui:116
-msgctxt "rowheightdialog|extended_tip|value"
-msgid "Enter the row height that you want to use."
-msgstr "Zadajte požadovanú výšku riadka."
-
#. 4QFsD
-#: dbaccess/uiconfig/ui/rowheightdialog.ui:127
+#: dbaccess/uiconfig/ui/rowheightdialog.ui:125
msgctxt "rowheightdialog|automatic"
msgid "_Automatic"
msgstr "_Automaticky"
-#. HKRpK
-#: dbaccess/uiconfig/ui/rowheightdialog.ui:136
-msgctxt "rowheightdialog|extended_tip|automatic"
-msgid "Adjusts the row height to the size based on the default template. Existing contents may be shown vertically cropped. The height no longer increases automatically when you enter larger contents."
-msgstr "Upraví výšku riadka na veľkosť založenú na predvolenej šablóne. Existujúci obsah môže byť zvisle orezaný. Výška sa už nebude automaticky zväčšovať, keď zadáte rozsiahlejší obsah."
-
-#. qEa9T
-#: dbaccess/uiconfig/ui/rowheightdialog.ui:167
-msgctxt "rowheightdialog|extended_tip|RowHeightDialog"
-msgid "Changes the height of the current row, or the selected rows."
-msgstr "Zmení šírku aktuálneho riadka alebo označených riadkov."
-
#. SD2FQ
#: dbaccess/uiconfig/ui/savedialog.ui:8
msgctxt "savedialog|SaveDialog"
@@ -4404,83 +4200,77 @@ msgid "Sort Order"
msgstr "Poradie zoraďovania"
#. szD83
-#: dbaccess/uiconfig/ui/sortdialog.ui:99
+#: dbaccess/uiconfig/ui/sortdialog.ui:102
msgctxt "sortdialog|label2"
msgid "Operator"
msgstr "Operátor"
#. UcmpV
-#: dbaccess/uiconfig/ui/sortdialog.ui:111
+#: dbaccess/uiconfig/ui/sortdialog.ui:114
msgctxt "sortdialog|label3"
msgid "and then"
msgstr "a potom"
#. u8kT2
-#: dbaccess/uiconfig/ui/sortdialog.ui:124
+#: dbaccess/uiconfig/ui/sortdialog.ui:127
msgctxt "sortdialog|label4"
msgid "and then"
msgstr "a potom"
#. oK7UF
-#: dbaccess/uiconfig/ui/sortdialog.ui:137
+#: dbaccess/uiconfig/ui/sortdialog.ui:140
msgctxt "sortdialog|label5"
msgid "Field name"
msgstr "Názov poľa"
#. AVPtE
-#: dbaccess/uiconfig/ui/sortdialog.ui:149
+#: dbaccess/uiconfig/ui/sortdialog.ui:152
msgctxt "sortdialog|label6"
msgid "Order"
msgstr "Poradie"
#. EGDpm
-#: dbaccess/uiconfig/ui/sortdialog.ui:174
+#: dbaccess/uiconfig/ui/sortdialog.ui:177
msgctxt "sortdialog|value1"
msgid "ascending"
msgstr "vzostupne"
#. PGxfE
-#: dbaccess/uiconfig/ui/sortdialog.ui:175
+#: dbaccess/uiconfig/ui/sortdialog.ui:178
msgctxt "sortdialog|value1"
msgid "descending"
msgstr "zostupne"
#. FqcgB
-#: dbaccess/uiconfig/ui/sortdialog.ui:211
+#: dbaccess/uiconfig/ui/sortdialog.ui:214
msgctxt "sortdialog|value2"
msgid "ascending"
msgstr "vzostupne"
#. E5DBL
-#: dbaccess/uiconfig/ui/sortdialog.ui:212
+#: dbaccess/uiconfig/ui/sortdialog.ui:215
msgctxt "sortdialog|value2"
msgid "descending"
msgstr "zostupne"
#. Fa8EC
-#: dbaccess/uiconfig/ui/sortdialog.ui:226
+#: dbaccess/uiconfig/ui/sortdialog.ui:229
msgctxt "sortdialog|value3"
msgid "ascending"
msgstr "vzostupne"
#. UFZVT
-#: dbaccess/uiconfig/ui/sortdialog.ui:227
+#: dbaccess/uiconfig/ui/sortdialog.ui:230
msgctxt "sortdialog|value3"
msgid "descending"
msgstr "zostupne"
#. C6iQ6
-#: dbaccess/uiconfig/ui/sortdialog.ui:246
+#: dbaccess/uiconfig/ui/sortdialog.ui:249
msgctxt "sortdialog|label1"
msgid "Sort Order"
msgstr "Poradie zoraďovania"
-#. VCWPc
-#: dbaccess/uiconfig/ui/sortdialog.ui:271
-msgctxt "sortdialog|extended_tip|SortDialog"
-msgid "Specifies the sort criteria for the data display."
-msgstr "Určuje kritériá zoraďovania pre zobrazenie dát."
-
#. CsLXB
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:24
msgctxt "specialjdbcconnectionpage|header"
@@ -4740,7 +4530,7 @@ msgid "Mark the tables that should be visible for the applications."
msgstr "Označte tabuľky, ktoré majú byť viditeľné pre aplikácie."
#. Cvzwv
-#: dbaccess/uiconfig/ui/tablesfilterpage.ui:125
+#: dbaccess/uiconfig/ui/tablesfilterpage.ui:130
msgctxt "tablesfilterpage|label1"
msgid "Tables and Table Filter"
msgstr "Tabuľky a filter tabuliek"
@@ -4769,12 +4559,6 @@ msgctxt "tablesjoindialog|alttitle"
msgid "Add Table or Query"
msgstr "Pridať tabuľku alebo dotaz"
-#. YWLXP
-#: dbaccess/uiconfig/ui/taskwindow.ui:107
-msgctxt "taskwindow|STR_DESCRIPTION"
-msgid "Description"
-msgstr "Popis"
-
#. 8b2nn
#: dbaccess/uiconfig/ui/textconnectionsettings.ui:8
msgctxt "textconnectionsettings|TextConnectionSettingsDialog"
@@ -5003,8 +4787,8 @@ msgctxt "userdetailspage|charsetlabel"
msgid "_Character set:"
msgstr "_Znaková sada:"
-#. 6ZS8N
+#. oaAiD
#: dbaccess/uiconfig/ui/userdetailspage.ui:213
msgctxt "userdetailspage|charsetheader"
-msgid "Data Conversion"
-msgstr ""
+msgid "Data conversion"
+msgstr "Konverzia dát"
diff --git a/source/sk/desktop/messages.po b/source/sk/desktop/messages.po
index 6ab2cc6f38a..b57be5e892e 100644
--- a/source/sk/desktop/messages.po
+++ b/source/sk/desktop/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-09-28 11:22+0200\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
"PO-Revision-Date: 2020-09-26 19:35+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: Slovak <https://weblate.documentfoundation.org/projects/libo_ui-master/desktopmessages/sk/>\n"
@@ -17,119 +17,113 @@ msgstr ""
"X-POOTLE-MTIME: 1537729940.000000\n"
#. v2iwK
-#: desktop/inc/strings.hrc:24
+#: desktop/inc/strings.hrc:25
msgctxt "RID_STR_COPYING_PACKAGE"
msgid "Copying: "
msgstr "Kopírovanie: "
#. 2dzDt
-#: desktop/inc/strings.hrc:25
+#: desktop/inc/strings.hrc:26
msgctxt "RID_STR_ERROR_WHILE_ADDING"
msgid "Error while adding: "
msgstr "Chyba počas pridávania: "
#. CUrtD
-#: desktop/inc/strings.hrc:26
+#: desktop/inc/strings.hrc:27
msgctxt "RID_STR_ERROR_WHILE_REMOVING"
msgid "Error while removing: "
msgstr "Chyba počas odstraňovania: "
#. XyESz
-#: desktop/inc/strings.hrc:27
+#: desktop/inc/strings.hrc:28
msgctxt "RID_STR_PACKAGE_ALREADY_ADDED"
msgid "Extension has already been added: "
msgstr "Rozšírenie bolo už pridané: "
#. cuydq
-#: desktop/inc/strings.hrc:28
+#: desktop/inc/strings.hrc:29
msgctxt "RID_STR_NO_SUCH_PACKAGE"
msgid "There is no such extension deployed: "
msgstr "Toto rozšírenie nie je nainštalované: "
#. wzGYv
-#: desktop/inc/strings.hrc:29
+#: desktop/inc/strings.hrc:30
msgctxt "RID_STR_SYNCHRONIZING_REPOSITORY"
msgid "Synchronizing repository for %NAME extensions"
msgstr "Synchronizovanie úložiska pre rozšírenia %NAME"
#. dp8bf
-#: desktop/inc/strings.hrc:31
+#: desktop/inc/strings.hrc:32
msgctxt "RID_STR_REGISTERING_PACKAGE"
msgid "Enabling: "
msgstr "Povoľovanie: "
#. xBysg
-#: desktop/inc/strings.hrc:32
+#: desktop/inc/strings.hrc:33
msgctxt "RID_STR_REVOKING_PACKAGE"
msgid "Disabling: "
msgstr "Zakazovanie: "
#. HDgpp
-#: desktop/inc/strings.hrc:33
+#: desktop/inc/strings.hrc:34
msgctxt "RID_STR_CANNOT_DETECT_MEDIA_TYPE"
msgid "Cannot detect media-type: "
msgstr "Nemôžem zistiť typ média: "
#. QfGM7
-#: desktop/inc/strings.hrc:34
+#: desktop/inc/strings.hrc:35
msgctxt "RID_STR_UNSUPPORTED_MEDIA_TYPE"
msgid "This media-type is not supported: "
msgstr "Tento typ média nie je podporovaný: "
#. VHcMc
-#: desktop/inc/strings.hrc:35
+#: desktop/inc/strings.hrc:36
msgctxt "RID_STR_ERROR_WHILE_REGISTERING"
msgid "An error occurred while enabling: "
msgstr "Počas povoľovania sa vyskytla chyba: "
#. BqmAM
-#: desktop/inc/strings.hrc:36
+#: desktop/inc/strings.hrc:37
msgctxt "RID_STR_ERROR_WHILE_REVOKING"
msgid "An error occurred while disabling: "
msgstr "Počas zakazovania sa vyskytla chyba: "
#. Avii2
-#: desktop/inc/strings.hrc:38
+#: desktop/inc/strings.hrc:39
msgctxt "RID_STR_CONF_SCHEMA"
msgid "Configuration Schema"
msgstr "Konfiguračná schéma"
#. cL9MC
-#: desktop/inc/strings.hrc:39
+#: desktop/inc/strings.hrc:40
msgctxt "RID_STR_CONF_DATA"
msgid "Configuration Data"
msgstr "Konfiguračné údaje"
#. S8Pj8
-#: desktop/inc/strings.hrc:41
+#: desktop/inc/strings.hrc:42
msgctxt "RID_STR_BASIC_LIB"
msgid "Basic Library"
msgstr "Knižnica Basic-u"
#. Tnphj
-#: desktop/inc/strings.hrc:42
+#: desktop/inc/strings.hrc:43
msgctxt "RID_STR_DIALOG_LIB"
msgid "Dialog Library"
msgstr "Knižnica dialógov"
#. ThJQm
-#: desktop/inc/strings.hrc:43
+#: desktop/inc/strings.hrc:44
msgctxt "RID_STR_CANNOT_DETERMINE_LIBNAME"
msgid "The library name could not be determined."
msgstr "Nemohol byť zistený názov knižnice."
#. G6SqW
-#: desktop/inc/strings.hrc:45
+#: desktop/inc/strings.hrc:46
msgctxt "RID_STR_PACKAGE_BUNDLE"
msgid "Extension"
msgstr "Rozšírenie"
-#. o6NBi
-#: desktop/inc/strings.hrc:46
-msgctxt "RID_STR_PACKAGE_BUNDLE"
-msgid "All supported files"
-msgstr "Všetky podporované súbory"
-
#. 5TAZB
#: desktop/inc/strings.hrc:48
msgctxt "RID_STR_DYN_COMPONENT"
@@ -831,131 +825,71 @@ msgid "Extension Manager"
msgstr "Správca rozšírení"
#. gjCkd
-#: desktop/uiconfig/ui/extensionmanager.ui:84
+#: desktop/uiconfig/ui/extensionmanager.ui:87
msgctxt "extensionmanager|shared"
msgid "Installed for all users"
msgstr "Pre všetkých používateľov"
-#. pnXoG
-#: desktop/uiconfig/ui/extensionmanager.ui:94
-msgctxt "extensionmanager|extended_tip|shared"
-msgid "Filter extensions available for all users of this computer."
-msgstr "Filtruje rozšírenia dostupné pre všetkých používateľov tohto počítača."
-
#. zhqZT
-#: desktop/uiconfig/ui/extensionmanager.ui:105
+#: desktop/uiconfig/ui/extensionmanager.ui:103
msgctxt "extensionmanager|user"
msgid "Installed for current user"
msgstr "Pre aktuálneho používateľa"
-#. QbHCi
-#: desktop/uiconfig/ui/extensionmanager.ui:115
-msgctxt "extensionmanager|extended_tip|user"
-msgid "Filter extensions only available for the currently logged in user."
-msgstr "Filtruje rozšírenia dostupné len pre aktuálne prihláseného používateľa."
-
#. 6wBVk
-#: desktop/uiconfig/ui/extensionmanager.ui:126
+#: desktop/uiconfig/ui/extensionmanager.ui:119
msgctxt "extensionmanager|bundled"
msgid "Bundled with %PRODUCTNAME"
msgstr "Dodávané spolu s %PRODUCTNAME"
-#. nF4rD
-#: desktop/uiconfig/ui/extensionmanager.ui:136
-msgctxt "extensionmanager|extended_tip|bundled"
-msgid "Bundled extensions are installed by the system administrator using the operating system specific installer packages. These can not be installed, updated or removed here."
-msgstr "Tieto rozšírenia sú inštalované administrátorom systému pomocou inštalačných balíkov špecifických pre daný operačný systém. Tieto rozšírenia tu nemožno inštalovať, aktualizovať ani odstraňovať."
-
#. T8BGR
-#: desktop/uiconfig/ui/extensionmanager.ui:153
+#: desktop/uiconfig/ui/extensionmanager.ui:141
msgctxt "extensionmanager|label1"
msgid "Display Extensions"
msgstr "Zobraziť rozšírenia"
-#. BAVdg
-#: desktop/uiconfig/ui/extensionmanager.ui:187
-msgctxt "extensionmanager|extended_tip|extensions"
-msgid "Select the extension that you want to remove, enable, or disable. For some extensions, you can also open an Options dialog."
-msgstr "Vyberte rozšírenie, ktoré chcete odstrániť, povoliť alebo zakázať. Pre niektoré rozšírenia môžete tiež otvoriť dialógové okno Možnosti."
-
#. DLME5
-#: desktop/uiconfig/ui/extensionmanager.ui:209
+#: desktop/uiconfig/ui/extensionmanager.ui:192
msgctxt "extensionmanager|optionsbtn"
msgid "_Options"
msgstr "_Možnosti"
-#. DbuQS
-#: desktop/uiconfig/ui/extensionmanager.ui:216
-msgctxt "extensionmanager|extended_tip|optionsbtn"
-msgid "Select an installed extension, then click to open the Options dialog for the extension."
-msgstr "Vyberte nainštalované rozšírenie a potom kliknite na tlačidlo Možnosti."
-
#. ieiF4
-#: desktop/uiconfig/ui/extensionmanager.ui:228
+#: desktop/uiconfig/ui/extensionmanager.ui:206
msgctxt "extensionmanager|updatebtn"
msgid "Check for _Updates"
msgstr "Skontrolovať _dostupnosť aktualizácií"
-#. rirpA
-#: desktop/uiconfig/ui/extensionmanager.ui:235
-msgctxt "extensionmanager|extended_tip|updatebtn"
-msgid "Click to check for online updates of all installed extensions. To check for updates of the selected extension only, choose the Update command from the context menu. The check for availability of updates starts immediately."
-msgstr "Pre kontrolu dostupnosti aktualizácií všetkých nainštalovaných rozšírení kliknite na tlačidlo Vyhľadať aktualizácie. Ak chcete kontrolu vykonať len pre vybrané rozšírenie, vyberte z kontextového menu vybraného rozšírenie príkaz Aktualizovať."
-
#. GehiB
-#: desktop/uiconfig/ui/extensionmanager.ui:248
+#: desktop/uiconfig/ui/extensionmanager.ui:221
msgctxt "extensionmanager|addbtn"
msgid "_Add"
msgstr "_Pridať"
-#. MuigK
-#: desktop/uiconfig/ui/extensionmanager.ui:257
-msgctxt "extensionmanager|extended_tip|addbtn"
-msgid "Click Add to add an extension."
-msgstr "Kliknutím na Pridať rozšírenie pridáte."
-
#. wNCAw
-#: desktop/uiconfig/ui/extensionmanager.ui:270
+#: desktop/uiconfig/ui/extensionmanager.ui:238
msgctxt "extensionmanager|removebtn"
msgid "_Remove"
msgstr "_Odstrániť"
-#. AGoX7
-#: desktop/uiconfig/ui/extensionmanager.ui:277
-msgctxt "extensionmanager|extended_tip|removebtn"
-msgid "Select the extension that you want to remove, and then click Remove."
-msgstr "Vyberte rozšírenie, ktoré chcete odstrániť, a potom kliknite na Odstrániť."
-
#. qHMdq
-#: desktop/uiconfig/ui/extensionmanager.ui:290
+#: desktop/uiconfig/ui/extensionmanager.ui:253
msgctxt "extensionmanager|enablebtn"
msgid "_Enable"
msgstr "_Povoliť"
#. vz3Ti
-#: desktop/uiconfig/ui/extensionmanager.ui:319
+#: desktop/uiconfig/ui/extensionmanager.ui:282
msgctxt "extensionmanager|progressft"
msgid "Adding %EXTENSION_NAME"
msgstr "Pridáva sa %EXTENSION_NAME"
#. A33SB
-#: desktop/uiconfig/ui/extensionmanager.ui:354
+#: desktop/uiconfig/ui/extensionmanager.ui:317
msgctxt "extensionmanager|getextensions"
msgid "Get more extensions online..."
msgstr "Získať viac rozšírení online..."
-#. FBvRd
-#: desktop/uiconfig/ui/extensionmanager.ui:362
-msgctxt "extensionmanager|extended_tip|getextensions"
-msgid "You can find a collection of extensions on the Web."
-msgstr "Sadu rozšírení možno nájsť na webe."
-
-#. vSiEz
-#: desktop/uiconfig/ui/extensionmanager.ui:397
-msgctxt "extensionmanager|extended_tip|ExtensionManagerDialog"
-msgid "The Extension Manager adds, removes, disables, enables, and updates %PRODUCTNAME extensions."
-msgstr "V správcovi rozšírení možno pridávať, odstraňovať, zakazovať, povoľovať a aktualizovať rozšírenia %PRODUCTNAME."
-
#. EGwkP
#: desktop/uiconfig/ui/installforalldialog.ui:12
msgctxt "installforalldialog|InstallForAllDialog"
@@ -1034,96 +968,72 @@ msgctxt "licensedialog|down"
msgid "_Scroll Down"
msgstr "Po_sunúť str"
-#. x4PCF
-#: desktop/uiconfig/ui/showlicensedialog.ui:8
-msgctxt "showlicensedialog|extended_tip|ShowLicenseDialog"
-msgid "Read the license. Click the Scroll Down button to scroll down if necessary. Click Accept to continue the installation of the extension."
-msgstr "Prečítajte si licenciu. Ak je text dlhý, použite tlačidlo Ďalšia strana. Kliknutím na Prijať pokračujete v inštalácii rozšírenia."
-
#. qquCs
-#: desktop/uiconfig/ui/showlicensedialog.ui:13
+#: desktop/uiconfig/ui/showlicensedialog.ui:8
msgctxt "showlicensedialog|ShowLicenseDialog"
msgid "Extension Software License Agreement"
msgstr "Licenčná zmluva softvérového rozšírenia"
#. GX3k2
-#: desktop/uiconfig/ui/updatedialog.ui:24
+#: desktop/uiconfig/ui/updatedialog.ui:10
msgctxt "updatedialog|UpdateDialog"
msgid "Extension Update"
msgstr "Aktualizácia rozšírenia"
#. DmHy5
-#: desktop/uiconfig/ui/updatedialog.ui:55
+#: desktop/uiconfig/ui/updatedialog.ui:44
msgctxt "updatedialog|INSTALL"
msgid "_Install"
msgstr "_Inštalovať"
#. 3bJwo
-#: desktop/uiconfig/ui/updatedialog.ui:120
+#: desktop/uiconfig/ui/updatedialog.ui:109
msgctxt "updatedialog|UPDATE_LABEL"
msgid "_Available extension updates"
msgstr "_Dostupné aktualizácie rozšírení"
#. 3mtLC
-#: desktop/uiconfig/ui/updatedialog.ui:133
+#: desktop/uiconfig/ui/updatedialog.ui:122
msgctxt "updatedialog|UPDATE_CHECKING"
msgid "Checking..."
msgstr "Prebieha kontrola..."
#. WkYgi
-#: desktop/uiconfig/ui/updatedialog.ui:217
+#: desktop/uiconfig/ui/updatedialog.ui:206
msgctxt "updatedialog|UPDATE_ALL"
msgid "_Show all updates"
msgstr "_Zobraziť všetky aktualizácie"
-#. ihAhY
-#: desktop/uiconfig/ui/updatedialog.ui:227
-msgctxt "updatedialog|extended_tip|UPDATE_ALL"
-msgid "By default, only the downloadable extensions are shown in the dialog. Mark Show all Updates to see also other extensions and error messages."
-msgstr "V predvolenom nastavení sa v dialógovom okne zobrazujú len rozšírenia, ktoré možno stiahnuť. Ak chcete vidieť aj ostatné rozšírenia a chybové hlásenia, označte Zobraziť všetky aktualizácie."
-
#. BriDD
-#: desktop/uiconfig/ui/updatedialog.ui:256
+#: desktop/uiconfig/ui/updatedialog.ui:240
msgctxt "updatedialog|DESCRIPTION_LABEL"
msgid "Description"
msgstr "Popis"
#. 7DTtA
-#: desktop/uiconfig/ui/updatedialog.ui:274
+#: desktop/uiconfig/ui/updatedialog.ui:258
msgctxt "updatedialog|PUBLISHER_LABEL"
msgid "Publisher:"
msgstr "Vydavateľ:"
#. iaD89
-#: desktop/uiconfig/ui/updatedialog.ui:285
+#: desktop/uiconfig/ui/updatedialog.ui:269
msgctxt "updatedialog|PUBLISHER_LINK"
msgid "button"
msgstr "tlačidlo"
#. kgLHP
-#: desktop/uiconfig/ui/updatedialog.ui:301
+#: desktop/uiconfig/ui/updatedialog.ui:285
msgctxt "updatedialog|RELEASE_NOTES_LABEL"
msgid "What is new:"
msgstr "Čo je nové:"
#. JqHGH
-#: desktop/uiconfig/ui/updatedialog.ui:312
+#: desktop/uiconfig/ui/updatedialog.ui:296
msgctxt "updatedialog|RELEASE_NOTES_LINK"
msgid "Release notes"
msgstr "Poznámky k vydaniu"
-#. UEHCd
-#: desktop/uiconfig/ui/updatedialog.ui:350
-msgctxt "updatedialog|extended_tip|DESCRIPTIONS"
-msgid "While checking for updates, you see a progress indicator. Wait for some messages to show up in the dialog, or click Cancel to abort the update check."
-msgstr "Počas kontroly sa zobrazuje ukazovateľ priebehu. Počkajte, až sa zobrazia získané informácie, alebo kliknutím na Zrušiť kontrolu aktualizácií prerušte."
-
-#. c5FG9
-#: desktop/uiconfig/ui/updatedialog.ui:387
-msgctxt "updatedialog|extended_tip|UpdateDialog"
-msgid "Click the Check for Updates button in the Extension Manager to check for online updates for all installed extensions. To check for online updates for only the selected extension, right-click to open the context menu, then choose Update."
-msgstr "Kliknite na tlačidlo Kontrola aktualizácií v Správcovi rozšírení pre online kontrolu aktualizácií všetkých nainštalovaných rozšírení. Pre online kontrolu aktualizácií pre vybrané rozšírenie otvorte pravým tlačidlom kontextové menu a vyberte Aktualizácia."
-
#. YEhMN
#: desktop/uiconfig/ui/updateinstalldialog.ui:8
msgctxt "updateinstalldialog|UpdateInstallDialog"
@@ -1131,23 +1041,17 @@ msgid "Download and Installation"
msgstr "Stiahnuť a inštalovať"
#. t9MoN
-#: desktop/uiconfig/ui/updateinstalldialog.ui:87
+#: desktop/uiconfig/ui/updateinstalldialog.ui:90
msgctxt "updateinstalldialog|DOWNLOADING"
msgid "Downloading extensions..."
msgstr "Sťahujem rozšírenie..."
#. 3AFnH
-#: desktop/uiconfig/ui/updateinstalldialog.ui:125
+#: desktop/uiconfig/ui/updateinstalldialog.ui:128
msgctxt "updateinstalldialog|RESULTS"
msgid "Result"
msgstr "Výsledok"
-#. Q4xyF
-#: desktop/uiconfig/ui/updateinstalldialog.ui:178
-msgctxt "updateinstalldialog|extended_tip|UpdateInstallDialog"
-msgid "Click the Check for Updates button in the Extension Manager to check for online updates for all installed extensions. To check for online updates for only the selected extension, right-click to open the context menu, then choose Update."
-msgstr "Kliknite na tlačidlo Kontrola aktualizácií v Správcovi rozšírení pre online kontrolu aktualizácií všetkých nainštalovaných rozšírení. Pre online kontrolu aktualizácií pre vybrané rozšírenie otvorte pravým tlačidlom kontextové menu a vyberte Aktualizácia."
-
#. Kfhc4
#: desktop/uiconfig/ui/updaterequireddialog.ui:8
msgctxt "updaterequireddialog|UpdateRequiredDialog"
diff --git a/source/sk/editeng/messages.po b/source/sk/editeng/messages.po
index 45ca806ab21..0138ee94388 100644
--- a/source/sk/editeng/messages.po
+++ b/source/sk/editeng/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-09-28 11:22+0200\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
"PO-Revision-Date: 2020-10-02 06:35+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: Slovak <https://weblate.documentfoundation.org/projects/libo_ui-master/editengmessages/sk/>\n"
@@ -13,86 +13,86 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1535471035.000000\n"
#. BHYB4
#. enum SvxCellHorJustify ----------------------------------------------------
-#: editeng/inc/strings.hrc:17
+#: editeng/inc/strings.hrc:18
msgctxt "RID_SVXITEMS_HORJUST_STANDARD"
msgid "Horizontal alignment default"
msgstr "Predvolené vodorovné zarovnanie"
#. htWdf
-#: editeng/inc/strings.hrc:18
+#: editeng/inc/strings.hrc:19
msgctxt "RID_SVXITEMS_HORJUST_LEFT"
msgid "Align left"
msgstr "Zarovnať vľavo"
#. icuN2
-#: editeng/inc/strings.hrc:19
+#: editeng/inc/strings.hrc:20
msgctxt "RID_SVXITEMS_HORJUST_CENTER"
msgid "Centered horizontally"
msgstr "Na stred vodorovne"
#. JXEo9
-#: editeng/inc/strings.hrc:20
+#: editeng/inc/strings.hrc:21
msgctxt "RID_SVXITEMS_HORJUST_RIGHT"
msgid "Align right"
msgstr "Zarovnať vpravo"
#. BFCFs
-#: editeng/inc/strings.hrc:21
+#: editeng/inc/strings.hrc:22
msgctxt "RID_SVXITEMS_HORJUST_BLOCK"
msgid "Justify horizontally"
msgstr "Do bloku vodorovne"
#. DVmUh
-#: editeng/inc/strings.hrc:22
+#: editeng/inc/strings.hrc:23
msgctxt "RID_SVXITEMS_HORJUST_REPEAT"
msgid "Repeat alignment"
msgstr "Zopakovať zarovnanie"
#. hMaif
#. enum SvxCellVerJustify ----------------------------------------------------
-#: editeng/inc/strings.hrc:28
+#: editeng/inc/strings.hrc:29
msgctxt "RID_SVXITEMS_VERJUST_STANDARD"
msgid "Vertical alignment default"
msgstr "Predvolené zvislé zarovnanie"
#. xy2FG
-#: editeng/inc/strings.hrc:29
+#: editeng/inc/strings.hrc:30
msgctxt "RID_SVXITEMS_VERJUST_TOP"
msgid "Align to top"
msgstr "Zarovnať nahor"
#. UjmWt
-#: editeng/inc/strings.hrc:30
+#: editeng/inc/strings.hrc:31
msgctxt "RID_SVXITEMS_VERJUST_CENTER"
msgid "Centered vertically"
msgstr "Zvisle na stred"
#. G3X9R
-#: editeng/inc/strings.hrc:31
+#: editeng/inc/strings.hrc:32
msgctxt "RID_SVXITEMS_VERJUST_BOTTOM"
msgid "Align to bottom"
msgstr "Zarovnať nadol"
#. 3jGFq
-#: editeng/inc/strings.hrc:32
+#: editeng/inc/strings.hrc:33
msgctxt "RID_SVXITEMS_HORJUST_BLOCK"
msgid "Justify vertically"
msgstr "Do bloku zvisle"
#. WQZvF
#. enum SvxCellJustifyMethod ----------------------------------------------------
-#: editeng/inc/strings.hrc:38
+#: editeng/inc/strings.hrc:39
msgctxt "RID_SVXITEMS_JUSTMETHOD_AUTO"
msgid "Automatic Justify"
msgstr "Do bloku automaticky"
#. o9aJe
-#: editeng/inc/strings.hrc:39
+#: editeng/inc/strings.hrc:40
msgctxt "RID_SVXITEMS_JUSTMETHOD_DISTRIBUTE"
msgid "Distributed Justify"
msgstr "Do bloku rozptýlene"
diff --git a/source/sk/extensions/messages.po b/source/sk/extensions/messages.po
index 56d215938b2..973ab3b8162 100644
--- a/source/sk/extensions/messages.po
+++ b/source/sk/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-12 15:02+0200\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
"PO-Revision-Date: 2020-10-02 06:35+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: Slovak <https://weblate.documentfoundation.org/projects/libo_ui-master/extensionsmessages/sk/>\n"
@@ -3091,54 +3091,24 @@ msgctxt "datasourcepage|browse"
msgid "Browse..."
msgstr "Prehliadať..."
-#. apVFE
-#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:83
-msgctxt "datasourcepage|extended_tip|browse"
-msgid "Specifies the location using a file dialog."
-msgstr "Určuje umiestenie dialógového súboru."
-
-#. 7P3GP
-#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:106
-msgctxt "datasourcepage|extended_tip|location"
-msgid "Specifies the location of the database file."
-msgstr "Určuje umiestenie databázového súboru."
-
#. 6LtJa
-#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:123
+#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:113
msgctxt "datasourcepage|available"
msgid "Make this address book available to all modules in %PRODUCTNAME."
msgstr "Umožniť všetkým modulom %PRODUCTNAME prístup k tomuto adresáru."
-#. F3UzV
-#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:132
-msgctxt "datasourcepage|extended_tip|available"
-msgid "Registers the newly created database file in %PRODUCTNAME. The database will then be listed in the Data sources pane (Ctrl+Shift+F4). If this check box is cleared, the database will be available only by opening the database file."
-msgstr "Zaregistruje novovytvorenú databázu v %PRODUCTNAME. Databáza bude potom zobrazená v paneli Zdroje dát (Ctrl + Shift + F4). Ak toto pole nie je označené, databáza bude dostupná iba spustením súboru s databázou."
-
#. jbrum
-#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:163
+#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:148
msgctxt "datasourcepage|nameft"
msgid "Address book name"
msgstr "Názov adresára"
-#. EhAjb
-#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:181
-msgctxt "datasourcepage|extended_tip|name"
-msgid "Specifies the data source name."
-msgstr "Spresní názov zdroja dát."
-
#. iHrkL
-#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:200
+#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:180
msgctxt "datasourcepage|warning"
msgid "Another data source already has this name. As data sources have to have globally unique names, you need to choose another one."
msgstr "Tento názov už bol pridelený inému zdroju dát. Vzhľadom na to, že zdroje dát musia mať unikátne názvy, vyberte iné."
-#. 6ZBG5
-#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:233
-msgctxt "datasourcepage|extended_tip|DataSourcePage"
-msgid "Specifies a location for the address book file and a name under which the data source will be listed in the data source explorer."
-msgstr "Určuje miesto pre súbor s databázou kontaktov a názov, pod ktorým bude dátový zdroj zobrazený v prehliadači zdrojov dát."
-
#. CWNrs
#: extensions/uiconfig/sabpilot/ui/defaultfieldselectionpage.ui:18
msgctxt "defaultfieldselectionpage|label1"
@@ -3157,16 +3127,21 @@ msgctxt "defaultfieldselectionpage|defaultselectionno"
msgid "No, one particular field is not going to be selected."
msgstr "Nie, žiadne konkrétne pole nebude vybrané."
-#. XXEB7
+#. CiCym
#: extensions/uiconfig/sabpilot/ui/fieldassignpage.ui:14
msgctxt "fieldassignpage|label2"
msgid ""
"To incorporate the address data in your templates, %PRODUCTNAME has to know which fields contain which data.\n"
"\n"
-"For instance, you could have stored the email addresses in a field named \"email\", or \"E-mail\" or \"EM\" - or something completely different.\n"
+"For instance, you could have stored the e-mail addresses in a field named \"email\", or \"E-mail\" or \"EM\" - or something completely different.\n"
"\n"
"Click the button below to open another dialog where you can enter the settings for your data source."
msgstr ""
+"Aby ste mohli pripojiť adresy k vašim šablónam, %PRODUCTNAME musí vedieť, aké dát obsahujú jednotlivé polia.\n"
+"\n"
+"Napríklad, môžete mať uložené e-mailové adresy v poli nazvanom \"email\", alebo \"E-mail\", alebo \"EM\" - alebo hocijako inak.\n"
+"\n"
+"Kliknite na tlačidlo dole a otvorte ďalšie okno, kde môžete zadať nastavenie pre váš dátový zdroj."
#. RkyNf
#: extensions/uiconfig/sabpilot/ui/fieldassignpage.ui:37
@@ -3174,18 +3149,6 @@ msgctxt "fieldassignpage|assign"
msgid "Field Assignment"
msgstr "Priradenie poľa"
-#. 94fxb
-#: extensions/uiconfig/sabpilot/ui/fieldassignpage.ui:45
-msgctxt "fieldassignpage|extended_tip|assign"
-msgid "Opens the Templates: Address Book Assignment dialog."
-msgstr "Otvorí dialóg Šablóny: Priradenie zoznamu adries."
-
-#. CuPoK
-#: extensions/uiconfig/sabpilot/ui/fieldassignpage.ui:76
-msgctxt "fieldassignpage|extended_tip|FieldAssignPage"
-msgid "Opens a dialog that allows you to specify the field assignment."
-msgstr "Otvorí dialógové okno, ktoré vám umožní upresniť priradenie poľa."
-
#. j8AYS
#: extensions/uiconfig/sabpilot/ui/fieldlinkpage.ui:17
msgctxt "fieldlinkpage|desc"
@@ -3264,11 +3227,11 @@ msgctxt "gridfieldsselectionpage|label1"
msgid "Existing fields"
msgstr "Existujúce polia"
-#. PDhUx
+#. ToNEj
#: extensions/uiconfig/sabpilot/ui/gridfieldsselectionpage.ui:398
msgctxt "gridfieldsselectionpage|label2"
-msgid "Table Element"
-msgstr ""
+msgid "Table element"
+msgstr "Prvok tabuľky"
#. Xk7cV
#: extensions/uiconfig/sabpilot/ui/groupradioselectionpage.ui:53
@@ -3318,11 +3281,11 @@ msgctxt "groupradioselectionpage|label1"
msgid "Which _names do you want to give the option fields?"
msgstr "Ktoré _názvy chcete priradiť poliam s nastaveniami?"
-#. yR2Am
+#. 4skyv
#: extensions/uiconfig/sabpilot/ui/groupradioselectionpage.ui:307
msgctxt "groupradioselectionpage|label2"
-msgid "Table Element"
-msgstr ""
+msgid "Table element"
+msgstr "Prvok tabuľky"
#. 3dtcD
#: extensions/uiconfig/sabpilot/ui/invokeadminpage.ui:14
@@ -3342,14 +3305,8 @@ msgctxt "invokeadminpage|settings"
msgid "Settings"
msgstr "Nastavenia"
-#. GNt8z
-#: extensions/uiconfig/sabpilot/ui/invokeadminpage.ui:42
-msgctxt "invokeadminpage|extended_tip|settings"
-msgid "Calls a dialog in which you can enter additional settings."
-msgstr "Otvorí dialógové okno, v ktorom je možné zadať dodatočné nastavenia."
-
#. CAjBt
-#: extensions/uiconfig/sabpilot/ui/invokeadminpage.ui:55
+#: extensions/uiconfig/sabpilot/ui/invokeadminpage.ui:50
msgctxt "invokeadminpage|warning"
msgid ""
"The connection to the data source could not be established.\n"
@@ -3358,12 +3315,6 @@ msgstr ""
"Nepodarilo sa nadviazať spojenie s dátovým zdrojom.\n"
"Predtým, ako budete pokračovať, skontrolujte nastavenia alebo (na predchádzajúcej strane) vyberte iný typ dátového zdroja adresy."
-#. BgCsQ
-#: extensions/uiconfig/sabpilot/ui/invokeadminpage.ui:75
-msgctxt "invokeadminpage|extended_tip|InvokeAdminPage"
-msgid "Allows you to enter additional settings for LDAP address data and other external data sources."
-msgstr "Umožní vám upresniť ďalšie nastavenia pre LDAP a ďalší externé dátové zdroje."
-
#. MdQKb
#: extensions/uiconfig/sabpilot/ui/optiondbfieldpage.ui:41
msgctxt "optiondbfieldpage|label1"
@@ -3422,18 +3373,6 @@ msgstr ""
"Externý dátový zdroj, ktorý ste vybrali, obsahuje viac ako jeden adresár.\n"
"Vyberte si jeden, s ktorým chcete pracovať:"
-#. YkkV4
-#: extensions/uiconfig/sabpilot/ui/selecttablepage.ui:76
-msgctxt "selecttablepage|extended_tip|table"
-msgid "Specifies the table that is to serve as the address book for the %PRODUCTNAME templates."
-msgstr "Určuje tabuľku, ktorá bude slúžiť ako adresár v šablónach %PRODUCTNAME."
-
-#. F6ySC
-#: extensions/uiconfig/sabpilot/ui/selecttablepage.ui:89
-msgctxt "selecttablepage|extended_tip|SelectTablePage"
-msgid "Specifies a table from the Seamonkey / Netscape address book source that is used as the address book in %PRODUCTNAME."
-msgstr "Určuje tabuľku z databáze kontaktov aplikácií Mozilla / Netscape 6.x, ktorá bude použitá ako databáza kontaktov %PRODUCTNAME."
-
#. bCndk
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:14
msgctxt "selecttypepage|label2"
@@ -3452,108 +3391,54 @@ msgctxt "selecttypepage|evolution"
msgid "Evolution"
msgstr "Evolution"
-#. Xsfrc
-#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:50
-msgctxt "selecttypepage|extended_tip|evolution"
-msgid "Select this option if you already use an address book in Evolution."
-msgstr "Ak používate databázu kontaktov z aplikácie Evolution zvoľte túto možnosť."
-
#. F6JYD
-#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:61
+#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:56
msgctxt "selecttypepage|groupwise"
msgid "Groupwise"
msgstr "Groupwise"
-#. eB6AA
-#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:71
-msgctxt "selecttypepage|extended_tip|groupwise"
-msgid "Select this option if you already use an address book in Groupwise."
-msgstr "Ak už používate databázu kontaktov Groupwise, zvoľte túto možnosť."
-
#. cuXRp
-#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:82
+#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:72
msgctxt "selecttypepage|evoldap"
msgid "Evolution LDAP"
msgstr "Evolution LDAP"
-#. 7ZtGX
-#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:92
-msgctxt "selecttypepage|extended_tip|evoldap"
-msgid "Select this option if you already use an address book in Evolution LDAP."
-msgstr "Ak používate databázu kontaktov z aplikácie Evolution LDAP, zvoľte túto možnosť."
-
#. hMBCk
-#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:103
+#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:88
msgctxt "selecttypepage|firefox"
msgid "Firefox"
msgstr "Firefox"
-#. xHVgK
-#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:113
-msgctxt "selecttypepage|extended_tip|firefox"
-msgid "Select this option if you already use an address book in Firefox or Iceweasel."
-msgstr "Ak používate adresár v aplikáciách Firefox alebo Iceweasel, vyberte túto možnosť."
-
#. C4oTw
-#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:124
+#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:104
msgctxt "selecttypepage|thunderbird"
msgid "Thunderbird"
msgstr "Thunderbird"
-#. Aq64F
-#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:134
-msgctxt "selecttypepage|extended_tip|thunderbird"
-msgid "Select this option if you already use an address book in Thunderbird or Icedove."
-msgstr "Ak používate databázu kontaktov Thunderbird alebo Icedove, zvoľte túto možnosť."
-
#. su4jz
-#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:145
+#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:120
msgctxt "selecttypepage|kde"
msgid "KDE address book"
msgstr "Adresár KDE"
-#. X5F45
-#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:155
-msgctxt "selecttypepage|extended_tip|kde"
-msgid "Select this option if you already use an address book in KDE Address book."
-msgstr "Ak používate databázu kontaktov prostredia KDE, zvoľte túto možnosť."
-
#. 2Psrm
-#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:166
+#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:136
msgctxt "selecttypepage|macosx"
msgid "Mac OS X address book"
msgstr "Adresár Mac OS X"
-#. DF5Kd
-#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:176
-msgctxt "selecttypepage|extended_tip|macosx"
-msgid "Select this option if you already use an address book in macOS Address book."
-msgstr "Ak používate adresár v MacOS, vyberte túto možnosť."
-
#. 3EnZE
-#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:187
+#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:152
msgctxt "selecttypepage|other"
msgid "Other external data source"
msgstr "Ostatné externé zdroje dát"
-#. xvf2d
-#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:197
-msgctxt "selecttypepage|extended_tip|other"
-msgid "Select this option if you want to register another data source as address book in %PRODUCTNAME."
-msgstr "Ak chcete zaregistrovať ako databázu kontaktov %PRODUCTNAME iný dátový zdroj, zvoľte túto možnosť."
-
#. HyBth
-#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:210
+#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:170
msgctxt "selecttypepage|label1"
msgid "Select the type of your external address book:"
msgstr "Vyberte typ vášho externého adresára:"
-#. xdzuR
-#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:230
-msgctxt "selecttypepage|extended_tip|SelectTypePage"
-msgid "This wizard registers an existing address book as a data source in %PRODUCTNAME."
-msgstr "Tento sprievodca zaregistruje existujúci adresár ako dátový zdroj %PRODUCTNAME."
-
#. f33Eh
#: extensions/uiconfig/sabpilot/ui/tableselectionpage.ui:60
msgctxt "tableselectionpage|label3"
@@ -3806,12 +3691,6 @@ msgctxt "generalpage|custom3"
msgid "User-defined field _3"
msgstr "Používateľom definované pole _3"
-#. x9s9K
-#: extensions/uiconfig/sbibliography/ui/generalpage.ui:617
-msgctxt "generalpage|extended_tip|GeneralPage"
-msgid "Insert, delete, edit, and organize records in the bibliography database."
-msgstr "Vkladanie, odstraňovanie, úprava a správa záznamov v databáze použitej literatúry."
-
#. 7BG4W
#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:8
msgctxt "mappingdialog|MappingDialog"
@@ -3819,203 +3698,197 @@ msgid "Column Layout for Table “%1”"
msgstr "Rozloženie stĺpcov pre tabuľku \"%1\""
#. ZttGm
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:106
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:109
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "_Krátky názov"
#. PcPgF
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:120
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:123
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "_Autor(i)"
#. DBBiK
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:137
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "_Vydavateľ"
#. 4TG3U
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:148
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:151
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Kapitola"
#. DZwft
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:162
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:165
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Redaktor"
#. pEBaZ
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:222
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Typ"
#. TxEfY
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:236
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:239
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "_Rok"
#. qLU7E
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:250
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:253
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "_Názov"
#. F26mM
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:300
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:303
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "A_dresa"
#. kBvqk
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:314
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:317
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
#. aeCGS
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:328
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:331
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Strana(y)"
#. N4Cx2
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:378
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:381
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "_Vydanie"
#. CXnVD
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:404
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:407
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "Názov _knihy"
#. FEe9P
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:418
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:421
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Zväzok"
#. T6Eu3
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:430
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:433
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "_Druh publikácie"
#. KVHpY
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:480
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:483
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Organi_zácia"
#. GNoEJ
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:494
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:497
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "_Ústav"
#. ZU7AT
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:511
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Vysoká škola/_univerzita"
#. AeYEo
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:558
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:561
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Typ _správy"
#. NaFZM
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:572
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:575
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Mesiac"
#. EacrE
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:610
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:613
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Č_asopis"
#. 98xrV
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:624
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:627
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Čí_slo"
#. ssYBx
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:638
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:641
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "_Séria"
#. kGM4q
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:688
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:691
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "Ann_otácia"
#. 8xMvD
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:702
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:705
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "_Poznámka"
#. t7JGr
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:716
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:719
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
#. STBDL
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:764
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:767
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Používateľom definované pole _1"
#. FDtfJ
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:778
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:781
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Používateľom definované pole _2"
#. EPoqo
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:792
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:795
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Používateľom definované pole _3"
#. LzUki
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:806
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Používateľom definované pole _4"
#. jY3cj
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:820
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:823
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Používateľom definované pole _5"
#. wkCw6
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:1032
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:1035
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Názvy stĺpcov"
-#. B7h7G
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:1057
-msgctxt "mappingdialog|extended_tip|MappingDialog"
-msgid "Lets you map the column headings to data fields from a different data source. To define a different data source for your bibliography, click the Data Source button on the record's Object bar."
-msgstr "Povoľuje priradiť hlavičky stĺpcov dátovým poliam z iného dátového zdroja. Ak chcete definovať iný zdroj dát pre zoznam použitej literatúry, kliknite na tlačidlo Zdroj dát na paneli Objekt."
-
#. k9B7a
#: extensions/uiconfig/sbibliography/ui/querydialog.ui:30
msgctxt "querydialog|ask"
@@ -4052,18 +3925,6 @@ msgctxt "toolbar|TBC_BT_COL_ASSIGN"
msgid "Column Arrangement"
msgstr "Usporiadanie stĺpcov"
-#. DGQhT
-#: extensions/uiconfig/sbibliography/ui/toolbar.ui:114
-msgctxt "toolbar|extended_tip|TBC_BT_COL_ASSIGN"
-msgid "Lets you map the column headings to data fields from a different data source. To define a different data source for your bibliography, click the Data Source button on the record's Object bar."
-msgstr "Povoľuje priradiť hlavičky stĺpcov dátovým poliam z iného dátového zdroja. Ak chcete definovať iný zdroj dát pre zoznam použitej literatúry, kliknite na tlačidlo Zdroj dát na paneli Objekt."
-
-#. 8s8QS
-#: extensions/uiconfig/sbibliography/ui/toolbar.ui:125
-msgctxt "toolbar|extended_tip|toolbar"
-msgid "Insert, delete, edit, and organize records in the bibliography database."
-msgstr "Vkladanie, odstraňovanie, úprava a správa záznamov v databáze použitej literatúry."
-
#. AFbU5
#: extensions/uiconfig/scanner/ui/griddialog.ui:111
msgctxt "griddialog|resetTypeCombobox"
@@ -4142,11 +4003,11 @@ msgctxt "sanedialog|label6"
msgid "_Bottom:"
msgstr "_Dolu:"
-#. YfU4m
+#. rj9GD
#: extensions/uiconfig/scanner/ui/sanedialog.ui:275
msgctxt "sanedialog|label1"
-msgid "Scan Area"
-msgstr ""
+msgid "Scan area"
+msgstr "Skenovať oblasť"
#. FZ7Vw
#: extensions/uiconfig/scanner/ui/sanedialog.ui:334
@@ -4292,32 +4153,26 @@ msgctxt "taborder|TabOrderDialog"
msgid "Tab Order"
msgstr "Poradie aktivácie"
-#. bdEtz
-#: extensions/uiconfig/spropctrlr/ui/taborder.ui:150
-msgctxt "taborder|extended_tip|CTRLtree"
-msgid "Lists all controls in the form. These controls can be selected with the tab key in the given order from top to bottom."
-msgstr "Vypíše všetky ovládacie prvky vo formulári. Tieto ovládacie prvky sa pri stlačení klávesu Tab aktivujú v poradí zhora nadol."
-
#. WGPX4
-#: extensions/uiconfig/spropctrlr/ui/taborder.ui:170
+#: extensions/uiconfig/spropctrlr/ui/taborder.ui:168
msgctxt "taborder|upB"
msgid "_Move Up"
msgstr "Presunúť _nahor"
#. LNZFB
-#: extensions/uiconfig/spropctrlr/ui/taborder.ui:184
+#: extensions/uiconfig/spropctrlr/ui/taborder.ui:182
msgctxt "taborder|downB"
msgid "Move _Down"
msgstr "Presunúť na_dol"
#. zAGWY
-#: extensions/uiconfig/spropctrlr/ui/taborder.ui:198
+#: extensions/uiconfig/spropctrlr/ui/taborder.ui:196
msgctxt "taborder|autoB"
msgid "_Automatic Sort"
msgstr "_Automatické zoradenie"
#. nQDDz
-#: extensions/uiconfig/spropctrlr/ui/taborder.ui:224
+#: extensions/uiconfig/spropctrlr/ui/taborder.ui:222
msgctxt "taborder|label2"
msgid "Controls"
msgstr "Ovládacie prvky"
diff --git a/source/sk/filter/messages.po b/source/sk/filter/messages.po
index 1f806d7cc51..41aba23f326 100644
--- a/source/sk/filter/messages.po
+++ b/source/sk/filter/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-12 15:02+0200\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
"PO-Revision-Date: 2020-10-02 06:35+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: Slovak <https://weblate.documentfoundation.org/projects/libo_ui-master/filtermessages/sk/>\n"
@@ -305,482 +305,338 @@ msgctxt "pdfgeneralpage|all"
msgid "_All"
msgstr "_Všetko"
-#. QMgsn
-#: filter/uiconfig/ui/pdfgeneralpage.ui:55
-msgctxt "pdfgeneralpage|extended_tip|all"
-msgid "Exports all defined print ranges. If no print range is defined, exports the entire document."
-msgstr "Exportuje všetky určené tlačové oblasti. Pokiaľ nie je tlačová oblasť určená, exportuje sa celý dokument."
-
#. NXztB
-#: filter/uiconfig/ui/pdfgeneralpage.ui:67
+#: filter/uiconfig/ui/pdfgeneralpage.ui:62
msgctxt "pdfgeneralpage|range"
msgid "_Pages:"
msgstr "_Strany:"
-#. ZdAZ9
-#: filter/uiconfig/ui/pdfgeneralpage.ui:82
-msgctxt "pdfgeneralpage|extended_tip|range"
-msgid "Exports the pages you type in the box."
-msgstr "Exportuje stránky, ktoré zadáte do poľa."
-
#. WTSeS
-#: filter/uiconfig/ui/pdfgeneralpage.ui:93
+#: filter/uiconfig/ui/pdfgeneralpage.ui:83
msgctxt "pdfgeneralpage|selection"
msgid "_Selection"
msgstr "_Výber"
-#. RQeDb
-#: filter/uiconfig/ui/pdfgeneralpage.ui:104
-msgctxt "pdfgeneralpage|extended_tip|selection"
-msgid "Exports the current selection."
-msgstr "Exportuje aktuálny výber."
-
-#. qQrdx
-#: filter/uiconfig/ui/pdfgeneralpage.ui:125
-msgctxt "pdfgeneralpage|extended_tip|pages"
-msgid "Exports the pages you type in the box."
-msgstr "Exportuje stránky, ktoré zadáte do poľa."
-
#. tFeCH
-#: filter/uiconfig/ui/pdfgeneralpage.ui:139
+#: filter/uiconfig/ui/pdfgeneralpage.ui:119
msgctxt "pdfgeneralpage|slides"
msgid "Slides:"
msgstr "Snímky:"
#. 9Cyn8
-#: filter/uiconfig/ui/pdfgeneralpage.ui:148
+#: filter/uiconfig/ui/pdfgeneralpage.ui:128
msgctxt "pdfgeneralpage|viewpdf"
msgid "_View PDF after export"
msgstr "_Zobraziť PDF po exportovaní"
#. aWj7F
-#: filter/uiconfig/ui/pdfgeneralpage.ui:167
+#: filter/uiconfig/ui/pdfgeneralpage.ui:147
msgctxt "pdfgeneralpage|selectedsheets"
msgid "_Selection/Selected sheet(s)"
msgstr "Vý_ber/Vybrané hárky"
#. MXtmZ
-#: filter/uiconfig/ui/pdfgeneralpage.ui:182
+#: filter/uiconfig/ui/pdfgeneralpage.ui:162
msgctxt "pdfgeneralpage|label1"
msgid "Range"
msgstr "Rozsah"
#. WbQ5j
-#: filter/uiconfig/ui/pdfgeneralpage.ui:215
+#: filter/uiconfig/ui/pdfgeneralpage.ui:195
msgctxt "pdfgeneralpage|losslesscompress"
msgid "_Lossless compression"
msgstr "Bezstratová ko_mpresia"
-#. 9ut6Q
-#: filter/uiconfig/ui/pdfgeneralpage.ui:226
-msgctxt "pdfgeneralpage|extended_tip|losslesscompress"
-msgid "Selects a lossless compression of images. All pixels are preserved."
-msgstr "Zvolí pre obrázky bezstratovú kompresiu. Zachovajú sa všetky pixely."
-
#. D6f7R
-#: filter/uiconfig/ui/pdfgeneralpage.ui:238
+#: filter/uiconfig/ui/pdfgeneralpage.ui:213
msgctxt "pdfgeneralpage|reduceresolution"
msgid "_Reduce image resolution"
msgstr "Znížiť _rozlíšenie obrázka"
-#. bAtCV
-#: filter/uiconfig/ui/pdfgeneralpage.ui:251
-msgctxt "pdfgeneralpage|extended_tip|reduceresolution"
-msgid "Select to resample or down-size the images to a lower number of pixels per inch."
-msgstr "Znížením počtu pixelov na palec sa zmenší veľkosť obrázkov."
-
#. XHeTx
-#: filter/uiconfig/ui/pdfgeneralpage.ui:266
+#: filter/uiconfig/ui/pdfgeneralpage.ui:236
msgctxt "pdfgeneralpage|resolution"
msgid "75 DPI"
msgstr "75 DPI"
#. CXj4e
-#: filter/uiconfig/ui/pdfgeneralpage.ui:267
+#: filter/uiconfig/ui/pdfgeneralpage.ui:237
msgctxt "pdfgeneralpage|resolution"
msgid "150 DPI"
msgstr "150 DPI"
#. jZKqd
-#: filter/uiconfig/ui/pdfgeneralpage.ui:268
+#: filter/uiconfig/ui/pdfgeneralpage.ui:238
msgctxt "pdfgeneralpage|resolution"
msgid "300 DPI"
msgstr "300 DPI"
#. GsMsK
-#: filter/uiconfig/ui/pdfgeneralpage.ui:269
+#: filter/uiconfig/ui/pdfgeneralpage.ui:239
msgctxt "pdfgeneralpage|resolution"
msgid "600 DPI"
msgstr "600 DPI"
#. 5yTAM
-#: filter/uiconfig/ui/pdfgeneralpage.ui:270
+#: filter/uiconfig/ui/pdfgeneralpage.ui:240
msgctxt "pdfgeneralpage|resolution"
msgid "1200 DPI"
msgstr "1200 DPI"
#. r6npH
-#: filter/uiconfig/ui/pdfgeneralpage.ui:276
+#: filter/uiconfig/ui/pdfgeneralpage.ui:246
msgctxt "pdfgeneralpage|comboboxtext-entry"
msgid "75 DPI"
msgstr "75 DPI"
-#. SkTeA
-#: filter/uiconfig/ui/pdfgeneralpage.ui:284
-msgctxt "pdfgeneralpage|extended_tip|resolution"
-msgid "Select the target resolution for the images."
-msgstr "Vyberte nové rozlíšenie obrázkov."
-
-#. mEbKx
-#: filter/uiconfig/ui/pdfgeneralpage.ui:306
-msgctxt "pdfgeneralpage|extended_tip|quality"
-msgid "Enter the quality level for JPEG compression."
-msgstr "Vyberte kvalitu kompresie JPEG."
-
#. FP56V
-#: filter/uiconfig/ui/pdfgeneralpage.ui:328
+#: filter/uiconfig/ui/pdfgeneralpage.ui:288
msgctxt "pdfgeneralpage|jpegcompress"
msgid "_JPEG compression"
msgstr "_JPEG kompresia"
-#. PZCPi
-#: filter/uiconfig/ui/pdfgeneralpage.ui:338
-msgctxt "pdfgeneralpage|extended_tip|jpegcompress"
-msgid "Select a JPEG compression level. With a high quality level, almost all pixels are preserved. With a low quality level, some pixels are lost and artifacts are introduced, but file sizes are reduced."
-msgstr "Vyberte úroveň kompresie JPEG. Pri vyššej kvalite sa zachovajú takmer všetky pixely. Pri nižšej kvalite sa niektoré pixely stratia a vznikajú artefakty, ale zmenší sa veľkosť súboru."
-
#. ST3Rc
-#: filter/uiconfig/ui/pdfgeneralpage.ui:356
+#: filter/uiconfig/ui/pdfgeneralpage.ui:311
msgctxt "pdfgeneralpage|label6"
msgid "_Quality:"
msgstr "_Kvalita:"
#. cFwGA
-#: filter/uiconfig/ui/pdfgeneralpage.ui:382
+#: filter/uiconfig/ui/pdfgeneralpage.ui:337
msgctxt "pdfgeneralpage|label2"
msgid "Images"
msgstr "Obrázky"
#. NwjSn
-#: filter/uiconfig/ui/pdfgeneralpage.ui:415
+#: filter/uiconfig/ui/pdfgeneralpage.ui:370
msgctxt "pdfgeneralpage|watermark"
msgid "Sign with _watermark"
msgstr "Podpísať _vodoznakom"
#. JtBsL
-#: filter/uiconfig/ui/pdfgeneralpage.ui:443
+#: filter/uiconfig/ui/pdfgeneralpage.ui:398
msgctxt "pdfgeneralpage|watermarklabel"
msgid "Text:"
msgstr "Text:"
#. VfFZf
-#: filter/uiconfig/ui/pdfgeneralpage.ui:464
+#: filter/uiconfig/ui/pdfgeneralpage.ui:419
msgctxt "pdfgeneralpage|label3"
msgid "Watermark"
msgstr "Vodoznak"
#. 2hSjJ
-#: filter/uiconfig/ui/pdfgeneralpage.ui:508
+#: filter/uiconfig/ui/pdfgeneralpage.ui:463
msgctxt "pdfgeneralpage|embed"
msgid "Hybrid PDF (em_bed ODF file)"
msgstr "Hybri_dné PDF (vložiť súbor ODF)"
#. vzxG2
-#: filter/uiconfig/ui/pdfgeneralpage.ui:512
+#: filter/uiconfig/ui/pdfgeneralpage.ui:467
msgctxt "pdfgeneralpage|embed|tooltip_text"
msgid "Creates a PDF that is easily editable in %PRODUCTNAME"
msgstr "Vytvorí PDF súbor, ktorý možno upravovať v %PRODUCTNAME"
-#. 3tDFv
-#: filter/uiconfig/ui/pdfgeneralpage.ui:518
-msgctxt "pdfgeneralpage|extended_tip|embed"
-msgid "This setting enables you to export the document as a .pdf file containing two file formats: PDF and ODF."
-msgstr "Toto nastavenie umožňuje exportovať dokument ako súbor .pdf, ktorý obsahuje dva formáty súboru: PDF a ODF."
-
#. RAvA6
-#: filter/uiconfig/ui/pdfgeneralpage.ui:529
+#: filter/uiconfig/ui/pdfgeneralpage.ui:479
msgctxt "pdfgeneralpage|tagged"
msgid "_Tagged PDF (add document structure)"
msgstr "_Značkované PDF (pridá údaje o štruktúre dokumentu)"
#. cAm8Z
-#: filter/uiconfig/ui/pdfgeneralpage.ui:533
+#: filter/uiconfig/ui/pdfgeneralpage.ui:483
msgctxt "pdfgeneralpage|tagged|tooltip_text"
msgid "Includes a document's content structure information in a PDF"
msgstr "Do PDF dokumentu pridá údaje o štruktúre"
-#. Btxot
-#: filter/uiconfig/ui/pdfgeneralpage.ui:539
-msgctxt "pdfgeneralpage|extended_tip|tagged"
-msgid "Select to write PDF tags. This can increase file size by huge amounts."
-msgstr "Zaškrtnite, či chcete exportovať tagy PDF. To môže výrazne zväčšiť veľkosť súboru."
-
#. pZK6z
-#: filter/uiconfig/ui/pdfgeneralpage.ui:550
+#: filter/uiconfig/ui/pdfgeneralpage.ui:495
msgctxt "pdfgeneralpage|forms"
msgid "_Create PDF form"
msgstr "_Vytvoriť PDF formulár"
#. 3Vg8V
-#: filter/uiconfig/ui/pdfgeneralpage.ui:554
+#: filter/uiconfig/ui/pdfgeneralpage.ui:499
msgctxt "pdfgeneralpage|forms|tooltip_text"
msgid "Creates a PDF with fields that can be filled out"
msgstr "Vytvorí PDF súbor s poľami, ktoré možno vypĺňať"
-#. hmxuq
-#: filter/uiconfig/ui/pdfgeneralpage.ui:560
-msgctxt "pdfgeneralpage|extended_tip|forms"
-msgid "Choose to create a PDF form. This can be filled out and printed by the user of the PDF document."
-msgstr "Zaškrtnite, ak chcete vytvoriť PDF formulár. Tento formulár môže používateľ vyplniť a vytlačiť."
-
#. B7zan
-#: filter/uiconfig/ui/pdfgeneralpage.ui:582
+#: filter/uiconfig/ui/pdfgeneralpage.ui:522
msgctxt "pdfgeneralpage|allowdups"
msgid "Allow duplicate field _names"
msgstr "Povoliť rovnaké _názvy polí"
-#. D4MmM
-#: filter/uiconfig/ui/pdfgeneralpage.ui:591
-msgctxt "pdfgeneralpage|extended_tip|allowdups"
-msgid "Allows you to use the same field name for multiple fields in the generated PDF file. If disabled, field names will be exported using generated unique names."
-msgstr "Povolí vo vytváranom PDF použitie rovnakých názvov pre viac polí. Ak je vypnuté, pri exportovaní budú vytvorené jedinečné názvy polí."
-
#. tkPCH
-#: filter/uiconfig/ui/pdfgeneralpage.ui:606
+#: filter/uiconfig/ui/pdfgeneralpage.ui:541
msgctxt "pdfgeneralpage|format"
msgid "FDF"
msgstr "FDF"
#. rfzrh
-#: filter/uiconfig/ui/pdfgeneralpage.ui:607
+#: filter/uiconfig/ui/pdfgeneralpage.ui:542
msgctxt "pdfgeneralpage|format"
msgid "PDF"
msgstr "PDF"
#. S7caE
-#: filter/uiconfig/ui/pdfgeneralpage.ui:608
+#: filter/uiconfig/ui/pdfgeneralpage.ui:543
msgctxt "pdfgeneralpage|format"
msgid "HTML"
msgstr "HTML"
#. HUzsi
-#: filter/uiconfig/ui/pdfgeneralpage.ui:609
+#: filter/uiconfig/ui/pdfgeneralpage.ui:544
msgctxt "pdfgeneralpage|format"
msgid "XML"
msgstr "XML"
-#. xbYYC
-#: filter/uiconfig/ui/pdfgeneralpage.ui:613
-msgctxt "pdfgeneralpage|extended_tip|format"
-msgid "Select the format of submitting forms from within the PDF file."
-msgstr "Vyberte formát odoslania formulárov zo súboru PDF."
-
#. ECLBB
-#: filter/uiconfig/ui/pdfgeneralpage.ui:635
+#: filter/uiconfig/ui/pdfgeneralpage.ui:565
msgctxt "pdfgeneralpage|label7"
msgid "Submit _format:"
msgstr "_Formát odosielania:"
#. hedQy
-#: filter/uiconfig/ui/pdfgeneralpage.ui:667
+#: filter/uiconfig/ui/pdfgeneralpage.ui:597
msgctxt "pdfgeneralpage|pdfa"
msgid "Archive (P_DF/A, ISO 19005)"
msgstr "Archívny PD_F/A, (ISO 19005)"
#. qQjPA
-#: filter/uiconfig/ui/pdfgeneralpage.ui:671
+#: filter/uiconfig/ui/pdfgeneralpage.ui:601
msgctxt "pdfgeneralpage|pdfa|tooltip_text"
msgid "Creates an ISO 19005-2 compliant PDF file, ideal for long-term document preservation"
msgstr "Vytvorí PDF súbor podľa ISO 19005-2, ktorý je určený na dlhodobé uchovávanie dokumentov"
-#. Zhi5M
-#: filter/uiconfig/ui/pdfgeneralpage.ui:677
-msgctxt "pdfgeneralpage|extended_tip|pdfa"
-msgid "Converts to the PDF/A-2b or PDF/A-1b format. This is defined as an electronic document file format for long term preservation. All fonts that were used in the source document will be embedded into the generated PDF file. PDF tags will be written."
-msgstr "Skonvertuje dokument do formátu PDF/A-2b alebo PDF/A-1b. Tie sú definované ako formáty elektronických dokumentov určené na dlhodobé uchovanie. Do vytvoreného súboru PDF sa vložia všetky písma použité v zdrojovom dokumente a zapíšu sa tiež tagy PDF."
-
#. jfwKw
-#: filter/uiconfig/ui/pdfgeneralpage.ui:726
+#: filter/uiconfig/ui/pdfgeneralpage.ui:651
msgctxt "pdfgeneralpage|pdfaversion"
msgid "PDF/A _version:"
msgstr "_Verzia PDF/A:"
#. RHQNg
-#: filter/uiconfig/ui/pdfgeneralpage.ui:760
+#: filter/uiconfig/ui/pdfgeneralpage.ui:685
msgctxt "pdfgeneralpage|pdfua"
msgid "U_niversal Accessibility (PDF/UA)"
msgstr "Un_iverzálne prístupné (PDF/UA)"
#. 4B3FD
-#: filter/uiconfig/ui/pdfgeneralpage.ui:764
+#: filter/uiconfig/ui/pdfgeneralpage.ui:689
msgctxt "pdfgeneralpage|pdfua|tooltip_text"
msgid "Creates a universal accessibility-compliant PDF file that follows the requirements of PDF/UA (ISO 14289) specifications."
msgstr "Vytvorí univerzálne prístupný súbor PDF spĺňajúci požiadavky štandardu PDF/UA (ISO 14289)."
#. Drqkd
-#: filter/uiconfig/ui/pdfgeneralpage.ui:782
+#: filter/uiconfig/ui/pdfgeneralpage.ui:707
msgctxt "pdfgeneralpage|label4"
msgid "General"
msgstr "Všeobecné"
-#. dgtJ7
-#: filter/uiconfig/ui/pdfgeneralpage.ui:814
+#. kAAHx
+#: filter/uiconfig/ui/pdfgeneralpage.ui:739
msgctxt "pdfgeneralpage|bookmarks"
-msgid "Export _outlines"
-msgstr ""
-
-#. qw9My
-#: filter/uiconfig/ui/pdfgeneralpage.ui:823
-msgctxt "pdfgeneralpage|extended_tip|bookmarks"
-msgid "Select to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Chapter Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document."
-msgstr "Vyberte, ak chcete záložky dokumentu Writeru exportovať ako PDF záložky. Záložky sa vytvoria pre všetky odseky osnovy (Nástroje - Číslovanie kapitol) a pre všetky položky obsahu, ktorým boli v zdrojovom dokumente priradené hypertextové odkazy."
+msgid "Export _bookmarks"
+msgstr "Exportov_ať záložky"
#. kQbPh
-#: filter/uiconfig/ui/pdfgeneralpage.ui:834
+#: filter/uiconfig/ui/pdfgeneralpage.ui:754
msgctxt "pdfgeneralpage|exportplaceholders"
msgid "Expo_rt placeholders"
msgstr "Exportovať zástupné znaky"
#. D4zRb
-#: filter/uiconfig/ui/pdfgeneralpage.ui:849
+#: filter/uiconfig/ui/pdfgeneralpage.ui:769
msgctxt "pdfgeneralpage|comments"
msgid "_Comments as PDF annotations"
msgstr "_Poznámky ako PDF anotácia"
-#. SijbK
-#: filter/uiconfig/ui/pdfgeneralpage.ui:858
-msgctxt "pdfgeneralpage|extended_tip|comments"
-msgid "Select to export comments of Writer and Calc documents as PDF annotations."
-msgstr "Pri zaškrtnutí sa komentáre v dokumentoch Writeru a Calc exportujú ako poznámky PDF."
-
#. y9evS
-#: filter/uiconfig/ui/pdfgeneralpage.ui:869
+#: filter/uiconfig/ui/pdfgeneralpage.ui:784
msgctxt "pdfgeneralpage|emptypages"
msgid "Exp_ort automatically inserted blank pages"
msgstr "Exp_ortovať automaticky vložené prázdne strany"
-#. ZkGWy
-#: filter/uiconfig/ui/pdfgeneralpage.ui:878
-msgctxt "pdfgeneralpage|extended_tip|emptypages"
-msgid "If switched on, automatically inserted blank pages are exported to the PDF file. This is best if you are printing the pdf file double-sided. Example: In a book a chapter paragraph style is set to always start with an odd numbered page. If the previous chapter ends on an odd page, %PRODUCTNAME inserts an even numbered blank page. This option controls whether to export that even numbered page or not."
-msgstr "Ak je povolené, automaticky vložené prázdne strany budú exportované do PDF. To je najvhodnejšie, ak pdf súbor tlačíte obojstranne. Príklad: V knihe je názov kapitoly nastavený tak, aby začínal na nepárnej strane. Ak predchádzajúca kapitola končí na nepárnej strane, %PRODUCTNAME vloží prázdnu párnu stránku. Táto voľba určuje, či sa takéto strany majú vytlačiť."
-
#. sHqKP
-#: filter/uiconfig/ui/pdfgeneralpage.ui:889
+#: filter/uiconfig/ui/pdfgeneralpage.ui:799
msgctxt "pdfgeneralpage|usereferencexobject"
msgid "Use reference XObjects"
msgstr "Použiť odkazové XObject"
#. 2K2cD
-#: filter/uiconfig/ui/pdfgeneralpage.ui:904
+#: filter/uiconfig/ui/pdfgeneralpage.ui:814
msgctxt "pdfgeneralpage|hiddenpages"
msgid "Export _hidden pages"
msgstr "Exportovať _skryté strany"
#. ghuXR
-#: filter/uiconfig/ui/pdfgeneralpage.ui:919
+#: filter/uiconfig/ui/pdfgeneralpage.ui:829
msgctxt "pdfgeneralpage|notes"
msgid "Export _notes pages"
msgstr "Exportovať stra_ny s poznámkami"
#. BGvC2
-#: filter/uiconfig/ui/pdfgeneralpage.ui:939
+#: filter/uiconfig/ui/pdfgeneralpage.ui:849
msgctxt "pdfgeneralpage|onlynotes"
msgid "Export onl_y notes pages"
msgstr "Exportovať _len strany s poznámkami"
#. MpRUp
-#: filter/uiconfig/ui/pdfgeneralpage.ui:956
+#: filter/uiconfig/ui/pdfgeneralpage.ui:866
msgctxt "pdfgeneralpage|singlepagesheets"
msgid "Whole sheet export"
msgstr "Celý hárok na jednu stranu"
#. AcPTB
-#: filter/uiconfig/ui/pdfgeneralpage.ui:977
+#: filter/uiconfig/ui/pdfgeneralpage.ui:887
msgctxt "pdfgeneralpage|label9"
msgid "Structure"
msgstr "Štruktúra"
-#. f7vgf
+#. QEAua
#: filter/uiconfig/ui/pdflinkspage.ui:32
msgctxt "pdflinkspage|export"
-msgid "Export outlines as named destinations"
-msgstr ""
-
-#. BDf69
-#: filter/uiconfig/ui/pdflinkspage.ui:42
-msgctxt "pdflinkspage|extended_tip|export"
-msgid "Exports the current file in PDF format."
-msgstr "Exportuje aktuálny súbor do formátu PDF."
+msgid "Export bookmarks as named destinations"
+msgstr "Exportovať záložky ako pomenované ciele"
#. aCCLQ
-#: filter/uiconfig/ui/pdflinkspage.ui:53
+#: filter/uiconfig/ui/pdflinkspage.ui:48
msgctxt "pdflinkspage|convert"
msgid "_Convert document references to PDF targets"
msgstr "_Previesť odkazy v dokumente na PDF ciele"
-#. FEokC
-#: filter/uiconfig/ui/pdflinkspage.ui:63
-msgctxt "pdflinkspage|extended_tip|convert"
-msgid "Enable this checkbox to convert the URLs referencing other ODF files to PDF files with the same name. In the referencing URLs the extensions .odt, .odp, .ods, .odg, and .odm are converted to the extension .pdf."
-msgstr "Zaškrtnutím povolíte konverziu URL odkazujúcich na súbory ODF na odkazy na súbory PDF s rovnakým názvom. V odkazujúcich URL sú prípony .odt, .odp, .ods, .odg, a .odm zmenené na príponu pdf."
-
#. 6Lyp3
-#: filter/uiconfig/ui/pdflinkspage.ui:74
+#: filter/uiconfig/ui/pdflinkspage.ui:64
msgctxt "pdflinkspage|exporturl"
msgid "Export _URLs relative to file system"
msgstr "Exportovať _URL relatívne k súborovému systému"
-#. RcdUF
-#: filter/uiconfig/ui/pdflinkspage.ui:84
-msgctxt "pdflinkspage|extended_tip|exporturl"
-msgid "Enable this checkbox to export URLs to other documents as relative URLs in the file system. See \"relative hyperlinks\" in the Help."
-msgstr "Zaškrtnutím povolíte export URL na iné dokumenty ako relatívne URL vzhľadom k súborovému systému. Viac informácií v pomocníkovi pod \"relatívne hypertextové odkazy\"."
-
#. biumY
-#: filter/uiconfig/ui/pdflinkspage.ui:101
+#: filter/uiconfig/ui/pdflinkspage.ui:86
msgctxt "pdflinkspage|label1"
msgid "General"
msgstr "Všeobecné"
#. mGRBH
-#: filter/uiconfig/ui/pdflinkspage.ui:133
+#: filter/uiconfig/ui/pdflinkspage.ui:118
msgctxt "pdflinkspage|default"
msgid "Default mode"
msgstr "Predvolený mód"
-#. bcgaz
-#: filter/uiconfig/ui/pdflinkspage.ui:143
-msgctxt "pdflinkspage|extended_tip|default"
-msgid "Links from your PDF document to other documents will be handled as it is specified in your operating system."
-msgstr "V dokumente PDF sa bude s odkazmi na iné dokumenty zaobchádzať tak, ako je to nastavené v operačnom systéme."
-
#. DNRK8
-#: filter/uiconfig/ui/pdflinkspage.ui:154
+#: filter/uiconfig/ui/pdflinkspage.ui:134
msgctxt "pdflinkspage|openpdf"
msgid "Open with PDF reader application"
msgstr "Otvoriť v aplikácii na čítanie PDF"
-#. gmzoA
-#: filter/uiconfig/ui/pdflinkspage.ui:164
-msgctxt "pdflinkspage|extended_tip|openpdf"
-msgid "Cross-document links are opened with the PDF reader application that currently shows the document. The PDF reader application must be able to handle the specified file type inside the hyperlink."
-msgstr "Odkazy na iné dokumenty budú otvárané prehliadačom PDF, v ktorom je zobrazený aktuálny dokument. Prehliadač PDF musí zobrazenie daného typu súboru uvedeného v hypertextovom odkaze podporovať."
-
#. wPem9
-#: filter/uiconfig/ui/pdflinkspage.ui:175
+#: filter/uiconfig/ui/pdflinkspage.ui:150
msgctxt "pdflinkspage|openinternet"
msgid "Open _with Internet browser"
msgstr "Otvoriť v _internetovom prehliadači"
-#. xfRr2
-#: filter/uiconfig/ui/pdflinkspage.ui:185
-msgctxt "pdflinkspage|extended_tip|openinternet"
-msgid "Cross-document links are opened with the Internet browser. The Internet browser must be able to handle the specified file type inside the hyperlink."
-msgstr "Odkazy na iné dokumenty budú otvárané vo webovom prehliadači. Webový prehliadač musí zobrazenie daného typu súboru uvedeného v hypertextovom odkaze podporovať."
-
#. B9TGg
-#: filter/uiconfig/ui/pdflinkspage.ui:202
+#: filter/uiconfig/ui/pdflinkspage.ui:172
msgctxt "pdflinkspage|label5"
msgid "Cross-document Links"
msgstr "Krížové odkazy medzi dokumentami"
@@ -839,218 +695,152 @@ msgctxt "pdfsecuritypage|setpassword"
msgid "Set _Passwords…"
msgstr "Zadať _heslá..."
-#. C9DhC
-#: filter/uiconfig/ui/pdfsecuritypage.ui:40
-msgctxt "pdfsecuritypage|extended_tip|setpassword"
-msgid "Click to open a dialog where you enter the passwords."
-msgstr "Kliknutím otvoríte dialógové okno na zadanie hesiel."
-
#. 63szB
-#: filter/uiconfig/ui/pdfsecuritypage.ui:58
+#: filter/uiconfig/ui/pdfsecuritypage.ui:53
msgctxt "pdfsecuritypage|label5"
msgid "Open password set"
msgstr "Heslo na otváranie bolo zadané"
#. 6ktYG
-#: filter/uiconfig/ui/pdfsecuritypage.ui:70
+#: filter/uiconfig/ui/pdfsecuritypage.ui:65
msgctxt "pdfsecuritypage|label6"
msgid "PDF document will be encrypted"
msgstr "PDF dokument bude zašifrovaný"
#. pTAZC
-#: filter/uiconfig/ui/pdfsecuritypage.ui:93
+#: filter/uiconfig/ui/pdfsecuritypage.ui:88
msgctxt "pdfsecuritypage|label7"
msgid "No open password set"
msgstr "Heslo na otváranie nebolo zadané"
#. fp3My
-#: filter/uiconfig/ui/pdfsecuritypage.ui:105
+#: filter/uiconfig/ui/pdfsecuritypage.ui:100
msgctxt "pdfsecuritypage|label8"
msgid "PDF document will not be encrypted"
msgstr "PDF dokument nebude zašifrovaný"
#. aHC6v
-#: filter/uiconfig/ui/pdfsecuritypage.ui:128
+#: filter/uiconfig/ui/pdfsecuritypage.ui:123
msgctxt "pdfsecuritypage|label30"
msgid "PDF document will not be encrypted due to PDF/A export."
msgstr "PDF dokument nebude zašifrovaný kvôli exportovaniu do PDF/A."
#. DsALB
-#: filter/uiconfig/ui/pdfsecuritypage.ui:152
+#: filter/uiconfig/ui/pdfsecuritypage.ui:147
msgctxt "pdfsecuritypage|label9"
msgid "Permission password set"
msgstr "Heslo na nastavenie oprávnení bolo zadané"
#. hRJpp
-#: filter/uiconfig/ui/pdfsecuritypage.ui:164
+#: filter/uiconfig/ui/pdfsecuritypage.ui:159
msgctxt "pdfsecuritypage|label11"
msgid "PDF document will be restricted"
msgstr "PDF dokument bude používať obmedzenia"
#. L3oQx
-#: filter/uiconfig/ui/pdfsecuritypage.ui:187
+#: filter/uiconfig/ui/pdfsecuritypage.ui:182
msgctxt "pdfsecuritypage|label12"
msgid "No permission password set"
msgstr "Heslo na nastavenie oprávnení nebolo zadané"
#. s3RBF
-#: filter/uiconfig/ui/pdfsecuritypage.ui:199
+#: filter/uiconfig/ui/pdfsecuritypage.ui:194
msgctxt "pdfsecuritypage|label13"
msgid "PDF document will be unrestricted"
msgstr "PDF dokument nebude používať obmedzenia"
#. 4jwu7
-#: filter/uiconfig/ui/pdfsecuritypage.ui:222
+#: filter/uiconfig/ui/pdfsecuritypage.ui:217
msgctxt "pdfsecuritypage|label14"
msgid "PDF document will not be restricted due to PDF/A export."
msgstr "Práva v PDF dokumente nebudú kvôli exportovaniu do PDF/A obmedzené."
#. 9CFqB
-#: filter/uiconfig/ui/pdfsecuritypage.ui:242
+#: filter/uiconfig/ui/pdfsecuritypage.ui:237
msgctxt "pdfsecuritypage|setpasswordstitle"
msgid "Set Passwords"
msgstr "Zadať heslá"
#. FDKJa
-#: filter/uiconfig/ui/pdfsecuritypage.ui:259
+#: filter/uiconfig/ui/pdfsecuritypage.ui:254
msgctxt "pdfsecuritypage|label2"
msgid "File Encryption and Permission"
msgstr "Šifrovanie súboru a oprávnenia"
#. tWAWA
-#: filter/uiconfig/ui/pdfsecuritypage.ui:297
+#: filter/uiconfig/ui/pdfsecuritypage.ui:292
msgctxt "pdfsecuritypage|printnone"
msgid "_Not permitted"
msgstr "_Nepovolené"
-#. R3Gvm
-#: filter/uiconfig/ui/pdfsecuritypage.ui:307
-msgctxt "pdfsecuritypage|extended_tip|printnone"
-msgid "Printing the document is not permitted."
-msgstr "Tlač dokumentu nie je povolená."
-
#. kSfrd
-#: filter/uiconfig/ui/pdfsecuritypage.ui:318
+#: filter/uiconfig/ui/pdfsecuritypage.ui:308
msgctxt "pdfsecuritypage|printlow"
msgid "_Low resolution (150 dpi)"
msgstr "Nízke roz_líšenie (150 dpi)"
-#. kB7dx
-#: filter/uiconfig/ui/pdfsecuritypage.ui:328
-msgctxt "pdfsecuritypage|extended_tip|printlow"
-msgid "The document can only be printed in low resolution (150 dpi). Not all PDF readers honor this setting."
-msgstr "Dokument možno vytlačiť len v nízkom rozlíšení (150 dpi). Toto nastavenie niektoré prehliadače PDF ignorujú."
-
#. CmQzT
-#: filter/uiconfig/ui/pdfsecuritypage.ui:339
+#: filter/uiconfig/ui/pdfsecuritypage.ui:324
msgctxt "pdfsecuritypage|printhigh"
msgid "_High resolution"
msgstr "Vysoké rozlíše_nie"
-#. iBC7m
-#: filter/uiconfig/ui/pdfsecuritypage.ui:349
-msgctxt "pdfsecuritypage|extended_tip|printhigh"
-msgid "The document can be printed in high resolution."
-msgstr "Dokument možno vytlačiť vo vysokom rozlíšení."
-
#. Gjpp4
-#: filter/uiconfig/ui/pdfsecuritypage.ui:366
+#: filter/uiconfig/ui/pdfsecuritypage.ui:346
msgctxt "pdfsecuritypage|label1"
msgid "Printing"
msgstr "Tlačenie"
#. C6BHs
-#: filter/uiconfig/ui/pdfsecuritypage.ui:398
+#: filter/uiconfig/ui/pdfsecuritypage.ui:378
msgctxt "pdfsecuritypage|changenone"
msgid "No_t permitted"
msgstr "Nie je _povolené"
-#. McdCx
-#: filter/uiconfig/ui/pdfsecuritypage.ui:408
-msgctxt "pdfsecuritypage|extended_tip|changenone"
-msgid "No changes of the content are permitted."
-msgstr "Zmeny obsahu nie sú povolené."
-
#. Vt6Zn
-#: filter/uiconfig/ui/pdfsecuritypage.ui:419
+#: filter/uiconfig/ui/pdfsecuritypage.ui:394
msgctxt "pdfsecuritypage|changeinsdel"
msgid "_Inserting, deleting, and rotating pages"
msgstr "Vkladan_ie, odstraňovanie a otáčanie strán"
-#. bpyjZ
-#: filter/uiconfig/ui/pdfsecuritypage.ui:429
-msgctxt "pdfsecuritypage|extended_tip|changeinsdel"
-msgid "Only inserting, deleting, and rotating pages is permitted."
-msgstr "Je povolené len vkladanie, mazanie a otáčanie stránok."
-
#. dAmDo
-#: filter/uiconfig/ui/pdfsecuritypage.ui:440
+#: filter/uiconfig/ui/pdfsecuritypage.ui:410
msgctxt "pdfsecuritypage|changeform"
msgid "_Filling in form fields"
msgstr "Vypĺňanie polí _formulára"
-#. yXs9B
-#: filter/uiconfig/ui/pdfsecuritypage.ui:450
-msgctxt "pdfsecuritypage|extended_tip|changeform"
-msgid "Only filling in form fields is permitted."
-msgstr "Je povolené len vypĺňanie polí formulára."
-
#. zGE7J
-#: filter/uiconfig/ui/pdfsecuritypage.ui:461
+#: filter/uiconfig/ui/pdfsecuritypage.ui:426
msgctxt "pdfsecuritypage|changecomment"
msgid "_Commenting, filling in form fields"
msgstr "Poznámkovanie, vypĺň_anie polí formulára"
-#. aeLn4
-#: filter/uiconfig/ui/pdfsecuritypage.ui:471
-msgctxt "pdfsecuritypage|extended_tip|changecomment"
-msgid "Only commenting and filling in form fields is permitted."
-msgstr "Je povolené len komentovanie a vypĺňanie polí formulára."
-
#. uP8VW
-#: filter/uiconfig/ui/pdfsecuritypage.ui:482
+#: filter/uiconfig/ui/pdfsecuritypage.ui:442
msgctxt "pdfsecuritypage|changeany"
msgid "_Any except extracting pages"
msgstr "Všetky okrem _vynímania strán"
-#. 3RDPJ
-#: filter/uiconfig/ui/pdfsecuritypage.ui:492
-msgctxt "pdfsecuritypage|extended_tip|changeany"
-msgid "All changes are permitted, except extracting pages."
-msgstr "Povolené sú všetky zmeny okrem vybrania stránok."
-
#. vLxXJ
-#: filter/uiconfig/ui/pdfsecuritypage.ui:509
+#: filter/uiconfig/ui/pdfsecuritypage.ui:464
msgctxt "pdfsecuritypage|label3"
msgid "Changes"
msgstr "Zmeny"
#. iJHWS
-#: filter/uiconfig/ui/pdfsecuritypage.ui:541
+#: filter/uiconfig/ui/pdfsecuritypage.ui:496
msgctxt "pdfsecuritypage|enablecopy"
msgid "Ena_ble copying of content"
msgstr "Povo_liť kopírovanie obsahu"
-#. WJuNa
-#: filter/uiconfig/ui/pdfsecuritypage.ui:551
-msgctxt "pdfsecuritypage|extended_tip|enablecopy"
-msgid "Select to enable copying of content to the clipboard."
-msgstr "Povolí kopírovanie obsahu do schránky."
-
#. 2EMgQ
-#: filter/uiconfig/ui/pdfsecuritypage.ui:562
+#: filter/uiconfig/ui/pdfsecuritypage.ui:512
msgctxt "pdfsecuritypage|enablea11y"
msgid "Enable text access for acce_ssibility tools"
msgstr "Povoliť prí_stup k textu pre nástroje prístupnosti"
-#. cQrBt
-#: filter/uiconfig/ui/pdfsecuritypage.ui:572
-msgctxt "pdfsecuritypage|extended_tip|enablea11y"
-msgid "Select to enable text access for accessibility tools."
-msgstr "Vyberte, ak chcete povoliť prístup k textu pre nástroje prístupnosti."
-
#. 2hi53
-#: filter/uiconfig/ui/pdfsecuritypage.ui:589
+#: filter/uiconfig/ui/pdfsecuritypage.ui:534
msgctxt "pdfsecuritypage|label4"
msgid "Content"
msgstr "Obsah"
@@ -1061,86 +851,50 @@ msgctxt "pdfsignpage|label2"
msgid "Use this certificate to digitally sign PDF documents:"
msgstr "Na podpisovanie dokumentov PDF použiť tento certifikát:"
-#. EznHF
-#: filter/uiconfig/ui/pdfsignpage.ui:55
-msgctxt "pdfsignpage|extended_tip|cert"
-msgid "Allows you to select a certificate to be used for signing this PDF export."
-msgstr "Umožňuje vybrať certifikát, ktorý sa použije na podpísanie tohto PDF exportu."
-
#. xgYD9
-#: filter/uiconfig/ui/pdfsignpage.ui:71
+#: filter/uiconfig/ui/pdfsignpage.ui:66
msgctxt "pdfsignpage|select"
msgid "Select..."
msgstr "Vybrať..."
-#. 8iktV
-#: filter/uiconfig/ui/pdfsignpage.ui:78
-msgctxt "pdfsignpage|extended_tip|select"
-msgid "Opens the Select Certificate dialog."
-msgstr "Otvára dialógové okno Vybrať certifikát."
-
-#. UQz9i
-#: filter/uiconfig/ui/pdfsignpage.ui:131
-msgctxt "pdfsignpage|extended_tip|password"
-msgid "Enter the password used for protecting the private key associated with the selected certificate."
-msgstr "Zadajte heslo použité na ochranu súkromného kľúča spojeného s vybraným certifikátom."
-
-#. 9NEtS
-#: filter/uiconfig/ui/pdfsignpage.ui:148
-msgctxt "pdfsignpage|extended_tip|location"
-msgid "These three fields allow you to optionally enter additional information about the digital signature that will be applied to the PDF (Where, by whom and why it was made). It will be embedded in the appropriate PDF fields and will be visible to anyone viewing the PDF. Each or all of the three fields may be left blank."
-msgstr "Tieto tri polia vám umožňujú voliteľne zadať ďalšie informácie o digitálnom podpise, ktorý sa použije na súbor PDF (kde, kto a prečo bol vytvorený). Budú vložené do príslušných polí PDF a budú viditeľné pre všetkých, ktorí si prezerajú PDF. Ľubovolné alebo aj všetky z týchto troch polí môžu zostať prázdne."
-
-#. uVShK
-#: filter/uiconfig/ui/pdfsignpage.ui:165
-msgctxt "pdfsignpage|extended_tip|contact"
-msgid "These three fields allow you to optionally enter additional information about the digital signature that will be applied to the PDF (Where, by whom and why it was made). It will be embedded in the appropriate PDF fields and will be visible to anyone viewing the PDF. Each or all of the three fields may be left blank."
-msgstr "Tieto tri polia vám umožňujú voliteľne zadať ďalšie informácie o digitálnom podpise, ktorý sa použije na súbor PDF (kde, kto a prečo bol vytvorený). Budú vložené do príslušných polí PDF a budú viditeľné pre všetkých, ktorí si prezerajú PDF. Ľubovolné alebo aj všetky z týchto troch polí môžu zostať prázdne."
-
-#. 5QBRv
-#: filter/uiconfig/ui/pdfsignpage.ui:182
-msgctxt "pdfsignpage|extended_tip|reason"
-msgid "These three fields allow you to optionally enter additional information about the digital signature that will be applied to the PDF (Where, by whom and why it was made). It will be embedded in the appropriate PDF fields and will be visible to anyone viewing the PDF. Each or all of the three fields may be left blank."
-msgstr "Tieto tri polia vám umožňujú voliteľne zadať ďalšie informácie o digitálnom podpise, ktorý sa použije na súbor PDF (kde, kto a prečo bol vytvorený). Budú vložené do príslušných polí PDF a budú viditeľné pre všetkých, ktorí si prezerajú PDF. Ľubovolné alebo aj všetky z týchto troch polí môžu zostať prázdne."
-
#. wHqcD
-#: filter/uiconfig/ui/pdfsignpage.ui:197
+#: filter/uiconfig/ui/pdfsignpage.ui:167
msgctxt "pdfsignpage|tsa"
msgid "None"
msgstr "Žiadne"
#. VMoF3
-#: filter/uiconfig/ui/pdfsignpage.ui:209
+#: filter/uiconfig/ui/pdfsignpage.ui:179
msgctxt "pdfsignpage|label7"
msgid "Certificate password:"
msgstr "Heslo certifikátu:"
#. Syow2
-#: filter/uiconfig/ui/pdfsignpage.ui:223
+#: filter/uiconfig/ui/pdfsignpage.ui:193
msgctxt "pdfsignpage|label12"
msgid "Location:"
msgstr "Umiestnenie:"
#. AQkj6
-#: filter/uiconfig/ui/pdfsignpage.ui:237
+#: filter/uiconfig/ui/pdfsignpage.ui:207
msgctxt "pdfsignpage|label13"
msgid "Contact information:"
msgstr "Kontaktné informácie:"
#. mvSG8
-#: filter/uiconfig/ui/pdfsignpage.ui:251
+#: filter/uiconfig/ui/pdfsignpage.ui:221
msgctxt "pdfsignpage|label14"
msgid "Reason:"
msgstr "Dôvod:"
#. Bbwq2
-#: filter/uiconfig/ui/pdfsignpage.ui:265
+#: filter/uiconfig/ui/pdfsignpage.ui:235
msgctxt "pdfsignpage|label15"
msgid "Time Stamp Authority:"
msgstr "Autorita časových pečiatok:"
#. YeAiB
-#: filter/uiconfig/ui/pdfsignpage.ui:289
+#: filter/uiconfig/ui/pdfsignpage.ui:259
msgctxt "pdfsignpage|label1"
msgid "Certificate"
msgstr "Certifikát"
@@ -1151,149 +905,83 @@ msgctxt "pdfuserinterfacepage|center"
msgid "_Center window on screen"
msgstr "Zarovnať okno na stred o_brazovky"
-#. fGFCM
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:55
-msgctxt "pdfuserinterfacepage|extended_tip|center"
-msgid "Select to generate a PDF file that is shown in a reader window centered on screen."
-msgstr "Vyberte, ak chcete vygenerovať súbor PDF, ktorý sa zobrazí v okne čítačky vycentrovanom na obrazovke."
-
#. ZEPFF
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:66
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:61
msgctxt "pdfuserinterfacepage|resize"
msgid "_Resize window to initial page"
msgstr "Zmeniť veľkosť okna podľa úvodnej st_ránky"
-#. 8RErB
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:76
-msgctxt "pdfuserinterfacepage|extended_tip|resize"
-msgid "Select to generate a PDF file that is shown in a window displaying the whole initial page."
-msgstr "Vyberte, ak chcete vygenerovať súbor PDF, ktorý sa zobrazí v okne so zobrazením celej úvodnej stránky."
-
#. crBwn
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:87
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:77
msgctxt "pdfuserinterfacepage|open"
msgid "_Open in full screen mode"
msgstr "_Otvoriť na celej obrazovke"
-#. oWaHS
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:97
-msgctxt "pdfuserinterfacepage|extended_tip|open"
-msgid "Select to generate a PDF file that is shown in a full screen reader window in front of all other windows."
-msgstr "Vyberte, ak chcete vygenerovať súbor PDF, ktorý sa zobrazí v okne čítačky na celú obrazovku pred všetkými ostatnými oknami."
-
#. Cvzzi
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:108
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:93
msgctxt "pdfuserinterfacepage|display"
msgid "_Display document title"
msgstr "Zobraziť názov _dokumentu"
-#. tdVmB
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:118
-msgctxt "pdfuserinterfacepage|extended_tip|display"
-msgid "Select to generate a PDF file that is shown with the document title in the reader's title bar."
-msgstr "Vyberte, ak chcete vygenerovať súbor PDF, ktorý sa zobrazuje s názvom dokumentu v záhlaví čítačky."
-
#. BtMjV
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:135
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:115
msgctxt "pdfuserinterfacepage|label1"
msgid "Window Options"
msgstr "Možnosti okna"
#. hZQVm
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:166
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:146
msgctxt "pdfuserinterfacepage|toolbar"
msgid "Hide _toolbar"
msgstr "Skryť panel nás_trojov"
-#. eBE9L
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:176
-msgctxt "pdfuserinterfacepage|extended_tip|toolbar"
-msgid "Select to hide the reader's toolbar when the document is active."
-msgstr "Vyberte, ak chcete skryť panel s nástrojmi čítačky, keď je dokument aktívny."
-
#. YLEgH
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:187
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:162
msgctxt "pdfuserinterfacepage|menubar"
msgid "Hide _menubar"
msgstr "Skryť hlavné _menu"
-#. qBG8G
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:197
-msgctxt "pdfuserinterfacepage|extended_tip|menubar"
-msgid "Select to hide the reader's menu bar when the document is active."
-msgstr "Vyberte, ak chcete skryť panel ponuky čitateľa, keď je dokument aktívny."
-
#. Aw2aq
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:208
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:178
msgctxt "pdfuserinterfacepage|window"
msgid "Hide _window controls"
msgstr "Skryť ovládacie _prvky okna"
-#. EhwCr
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:218
-msgctxt "pdfuserinterfacepage|extended_tip|window"
-msgid "Select to hide the reader's controls when the document is active."
-msgstr "Vyberte, ak chcete skryť ovládacie prvky čítačky, keď je dokument aktívny."
-
#. xm2Lh
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:235
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:200
msgctxt "pdfuserinterfacepage|label2"
msgid "User Interface Options"
msgstr "Možnosti používateľského rozhrania"
#. SwDno
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:265
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:230
msgctxt "pdfuserinterfacepage|effects"
msgid "_Use transition effects"
msgstr "Použiť precho_dové efekty"
-#. BMEGm
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:275
-msgctxt "pdfuserinterfacepage|extended_tip|effects"
-msgid "Select to export Impress slide transition effects to respective PDF effects."
-msgstr "Vyberte, ak chcete exportovať efekty prechodu snímok Impress do zodpovedajúcich efektov PDF."
-
#. JgwC9
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:292
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:252
msgctxt "pdfuserinterfacepage|label3"
msgid "Transitions"
msgstr "Prechody"
-#. sUC8i
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:324
+#. NWbFN
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:284
msgctxt "pdfuserinterfacepage|allbookmarks"
-msgid "Show _All"
-msgstr ""
+msgid "_All bookmark levels"
+msgstr "_Všetky úrovne záložiek"
-#. XLd4F
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:334
-msgctxt "pdfuserinterfacepage|extended_tip|allbookmarks"
-msgid "Select to show all bookmark levels when the reader opens the PDF file."
-msgstr "Vyberte, ak chcete, aby sa pri otvorení súboru PDF čítačkou zobrazili všetky úrovne záložiek."
-
-#. WzoF3
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:345
+#. FCDSJ
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:300
msgctxt "pdfuserinterfacepage|visiblebookmark"
-msgid "_Visible levels:"
-msgstr ""
+msgid "_Visible bookmark levels:"
+msgstr "V_iditeľné úrovne záložiek:"
-#. FqQPa
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:359
-msgctxt "pdfuserinterfacepage|extended_tip|visiblebookmark"
-msgid "Select to show bookmark levels down to the selected level when the reader opens the PDF file."
-msgstr "Vyberte, ak chcete, aby sa pri otvorení súboru PDF čítačkou zobrazili úrovne záložiek až po vybranú úroveň."
-
-#. NEDWP
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:378
-msgctxt "pdfuserinterfacepage|extended_tip|visiblelevel"
-msgid "Select to show bookmark levels down to the selected level when the reader opens the PDF file."
-msgstr "Vyberte, ak chcete, aby sa pri otvorení súboru PDF čítačkou zobrazili úrovne záložiek až po vybranú úroveň."
-
-#. x4kjV
-#: filter/uiconfig/ui/pdfuserinterfacepage.ui:398
+#. 5cxoc
+#: filter/uiconfig/ui/pdfuserinterfacepage.ui:343
msgctxt "pdfuserinterfacepage|label4"
-msgid "Collapse Outlines"
-msgstr ""
+msgid "Bookmarks"
+msgstr "Záložky"
#. ibYBv
#: filter/uiconfig/ui/pdfviewpage.ui:51
@@ -1301,188 +989,98 @@ msgctxt "pdfviewpage|pageonly"
msgid "_Page only"
msgstr "Len _strana"
-#. NCgWy
-#: filter/uiconfig/ui/pdfviewpage.ui:61
-msgctxt "pdfviewpage|extended_tip|pageonly"
-msgid "Select to generate a PDF file that shows only the page contents."
-msgstr "Vyberte, ak chcete vygenerovať súbor PDF, ktorý zobrazuje iba obsah strán."
-
-#. BLyYd
-#: filter/uiconfig/ui/pdfviewpage.ui:72
+#. gkjEH
+#: filter/uiconfig/ui/pdfviewpage.ui:67
msgctxt "pdfviewpage|outline"
-msgid "_Outline and page"
-msgstr ""
-
-#. JAAHm
-#: filter/uiconfig/ui/pdfviewpage.ui:82
-msgctxt "pdfviewpage|extended_tip|outline"
-msgid "Select to generate a PDF file that shows a bookmarks palette and the page contents."
-msgstr "Vyberte, ak chcete vygenerovať súbor PDF, ktorý zobrazuje záložky a obsah stránky."
+msgid "_Bookmarks and page"
+msgstr "Záložky a str_ana"
#. rT8gQ
-#: filter/uiconfig/ui/pdfviewpage.ui:93
+#: filter/uiconfig/ui/pdfviewpage.ui:83
msgctxt "pdfviewpage|thumbs"
msgid "_Thumbnails and page"
msgstr "Náhľady a s_trana"
-#. gDHqJ
-#: filter/uiconfig/ui/pdfviewpage.ui:103
-msgctxt "pdfviewpage|extended_tip|thumbs"
-msgid "Select to generate a PDF file that shows a thumbnails palette and the page contents."
-msgstr "Vyberte, ak chcete vygenerovať súbor PDF, ktorý zobrazuje miniatúry strán a obsah stránky."
-
#. EgKos
-#: filter/uiconfig/ui/pdfviewpage.ui:121
+#: filter/uiconfig/ui/pdfviewpage.ui:106
msgctxt "pdfviewpage|label4"
msgid "Open on pa_ge:"
msgstr "Otvoriť _na strane:"
-#. QrQ84
-#: filter/uiconfig/ui/pdfviewpage.ui:139
-msgctxt "pdfviewpage|extended_tip|page"
-msgid "Select to show the given page when the reader opens the PDF file."
-msgstr "Vyberte, ak chcete, aby sa zobrazila určená stránka, keď čítačka otvorí súbor PDF."
-
#. MxznY
-#: filter/uiconfig/ui/pdfviewpage.ui:162
+#: filter/uiconfig/ui/pdfviewpage.ui:142
msgctxt "pdfviewpage|label2"
msgid "Panes"
msgstr "Panely"
#. jA3LD
-#: filter/uiconfig/ui/pdfviewpage.ui:194
+#: filter/uiconfig/ui/pdfviewpage.ui:174
msgctxt "pdfviewpage|fitdefault"
msgid "_Default"
msgstr "_Predvolené"
-#. vQNHv
-#: filter/uiconfig/ui/pdfviewpage.ui:204
-msgctxt "pdfviewpage|extended_tip|fitdefault"
-msgid "Select to generate a PDF file that shows the page contents without zooming. If the reader software is configured to use a zoom factor by default, the page shows with that zoom factor."
-msgstr "Vyberte, ak chcete vygenerovať súbor PDF, ktorý zobrazuje obsah bez zväčšenia. Ak je softvér čítačky nakonfigurovaný na predvolené použitie faktora zväčšenia, stránka sa zobrazí s týmto faktorom zväčšenia."
-
#. kqho7
-#: filter/uiconfig/ui/pdfviewpage.ui:215
+#: filter/uiconfig/ui/pdfviewpage.ui:190
msgctxt "pdfviewpage|fitwin"
msgid "_Fit in window"
msgstr "Prispôsobiť o_knu"
-#. Z6P6B
-#: filter/uiconfig/ui/pdfviewpage.ui:225
-msgctxt "pdfviewpage|extended_tip|fitwin"
-msgid "Select to generate a PDF file that shows the page zoomed to fit entirely into the reader's window."
-msgstr "Vyberte, ak chcete vygenerovať súbor PDF, ktorý zobrazuje stranu zväčšenú tak, aby sa úplne zmestila do okna čítačky."
-
#. gcStc
-#: filter/uiconfig/ui/pdfviewpage.ui:236
+#: filter/uiconfig/ui/pdfviewpage.ui:206
msgctxt "pdfviewpage|fitwidth"
msgid "Fit _width"
msgstr "Prispôsobiť ší_rke"
-#. FkxYn
-#: filter/uiconfig/ui/pdfviewpage.ui:246
-msgctxt "pdfviewpage|extended_tip|fitwidth"
-msgid "Select to generate a PDF file that shows the page zoomed to fit the width of the reader's window."
-msgstr "Vyberte, ak chcete vygenerovať súbor PDF, ktorý zobrazuje stránku zväčšenú tak, aby sa zmestila na šírku okna čítačky."
-
#. V6kwp
-#: filter/uiconfig/ui/pdfviewpage.ui:257
+#: filter/uiconfig/ui/pdfviewpage.ui:222
msgctxt "pdfviewpage|fitvis"
msgid "Fit _visible"
msgstr "Prispôsobiť _viditeľnému"
-#. FD8Pp
-#: filter/uiconfig/ui/pdfviewpage.ui:267
-msgctxt "pdfviewpage|extended_tip|fitvis"
-msgid "Select to generate a PDF file that shows the text and graphics on the page zoomed to fit the width of the reader's window."
-msgstr "Vyberte, ak chcete vygenerovať súbor PDF, ktorý zobrazuje text a grafiku na stránke zväčšenú tak, aby zodpovedala šírke okna čítačky."
-
#. NGpWy
-#: filter/uiconfig/ui/pdfviewpage.ui:283
+#: filter/uiconfig/ui/pdfviewpage.ui:243
msgctxt "pdfviewpage|fitzoom"
msgid "_Zoom factor:"
msgstr "Faktor _mierky zobrazenia:"
-#. nQ4Du
-#: filter/uiconfig/ui/pdfviewpage.ui:296
-msgctxt "pdfviewpage|extended_tip|fitzoom"
-msgid "Select a given zoom factor when the reader opens the PDF file."
-msgstr "Vyberte faktor zväčšenia, ktorý sa použije, keď čítačka otvorí súbor PDF."
-
-#. BBoAW
-#: filter/uiconfig/ui/pdfviewpage.ui:316
-msgctxt "pdfviewpage|extended_tip|zoom"
-msgid "Select a given zoom factor when the reader opens the PDF file."
-msgstr "Vyberte faktor zväčšenia, ktorý sa použije, keď čítačka otvorí súbor PDF."
-
#. LQKDP
-#: filter/uiconfig/ui/pdfviewpage.ui:339
+#: filter/uiconfig/ui/pdfviewpage.ui:289
msgctxt "pdfviewpage|label3"
msgid "Magnification"
msgstr "Mierka zobrazenia"
#. Eegkp
-#: filter/uiconfig/ui/pdfviewpage.ui:378
+#: filter/uiconfig/ui/pdfviewpage.ui:328
msgctxt "pdfviewpage|defaultlayout"
msgid "D_efault"
msgstr "_Predvolené"
-#. CtGeC
-#: filter/uiconfig/ui/pdfviewpage.ui:388
-msgctxt "pdfviewpage|extended_tip|defaultlayout"
-msgid "Select to generate a PDF file that shows the pages according to the layout setting of the reader software."
-msgstr "Vyberte, ak chcete vygenerovať súbor PDF, ktorý zobrazuje strany podľa nastavenia softvéru čítačky."
-
#. QBpan
-#: filter/uiconfig/ui/pdfviewpage.ui:399
+#: filter/uiconfig/ui/pdfviewpage.ui:344
msgctxt "pdfviewpage|singlelayout"
msgid "_Single page"
msgstr "Jedna _strana"
-#. 4PuqY
-#: filter/uiconfig/ui/pdfviewpage.ui:409
-msgctxt "pdfviewpage|extended_tip|singlelayout"
-msgid "Select to generate a PDF file that shows one page at a time."
-msgstr "Vyberte, ak chcete vygenerovať súbor PDF, ktorý zobrazuje jednu stránku po druhej."
-
#. HCgtG
-#: filter/uiconfig/ui/pdfviewpage.ui:420
+#: filter/uiconfig/ui/pdfviewpage.ui:360
msgctxt "pdfviewpage|contlayout"
msgid "_Continuous"
msgstr "_Súvislé"
-#. BRxps
-#: filter/uiconfig/ui/pdfviewpage.ui:430
-msgctxt "pdfviewpage|extended_tip|contlayout"
-msgid "Select to generate a PDF file that shows pages in a continuous vertical column."
-msgstr "Vyberte, ak chcete vygenerovať súbor PDF, ktorý zobrazuje stránky v súvislom zvislom stĺpci."
-
#. n4i66
-#: filter/uiconfig/ui/pdfviewpage.ui:441
+#: filter/uiconfig/ui/pdfviewpage.ui:376
msgctxt "pdfviewpage|contfacinglayout"
msgid "C_ontinuous facing"
msgstr "Sú_visle po dvoch"
-#. YyCT7
-#: filter/uiconfig/ui/pdfviewpage.ui:451
-msgctxt "pdfviewpage|extended_tip|contfacinglayout"
-msgid "Select to generate a PDF file that shows pages side by side in a continuous column. For more than two pages, the first page is displayed on the right."
-msgstr "Vyberte, ak chcete vygenerovať súbor PDF, ktorý zobrazuje stránky vedľa seba v súvislom stĺpci. V prípade viac ako dvoch strán je prvá strana zobrazená vpravo."
-
#. 4DFBW
-#: filter/uiconfig/ui/pdfviewpage.ui:462
+#: filter/uiconfig/ui/pdfviewpage.ui:392
msgctxt "pdfviewpage|firstonleft"
msgid "First page is _left"
msgstr "Prvá stra_na vľavo"
-#. xWdBk
-#: filter/uiconfig/ui/pdfviewpage.ui:472
-msgctxt "pdfviewpage|extended_tip|firstonleft"
-msgid "Select to generate a PDF file that shows pages side by side in a continuous column. For more than two pages, the first page is displayed on the left. You must enable support for complex text layout on Language settings - Languages in the Options dialog box."
-msgstr "Vyberte, ak chcete vygenerovať súbor PDF, ktorý zobrazuje stránky vedľa seba v súvislom stĺpci. V prípade viac ako dvoch strán je prvá strana je zobrazená vľavo. V Nastaveniach jazyka - Jazyky v dialógovom okne Možnosti musíte povoliť podporu komplexného rozloženia textu."
-
#. sYKod
-#: filter/uiconfig/ui/pdfviewpage.ui:489
+#: filter/uiconfig/ui/pdfviewpage.ui:414
msgctxt "pdfviewpage|label1"
msgid "Page Layout"
msgstr "Rozloženie strán"
@@ -1511,126 +1109,60 @@ msgctxt "testxmlfilter|exportbrowse"
msgid "Browse..."
msgstr "Prehliadať..."
-#. 6ZGrB
-#: filter/uiconfig/ui/testxmlfilter.ui:120
-msgctxt "testxmlfilter|extended_tip|exportbrowse"
-msgid "Locate the file that you want to apply the XML export filter to. The XML code of the transformed file is opened in your default XML editor after transformation."
-msgstr "Vyhľadajte súbor, na ktorý chcete použiť filter exportu XML. Po transformácii sa kód XML transformovaného súboru otvorí vo predvolenom editore XML."
-
#. F8CJd
-#: filter/uiconfig/ui/testxmlfilter.ui:131
+#: filter/uiconfig/ui/testxmlfilter.ui:126
msgctxt "testxmlfilter|currentdocument"
msgid "Current Document"
msgstr "Aktuálny dokument"
-#. GRXCc
-#: filter/uiconfig/ui/testxmlfilter.ui:137
-msgctxt "testxmlfilter|extended_tip|currentdocument"
-msgid "The front-most open file that matches the XML filter criteria will be used to test the filter. The current XML export filter transforms the file and the resulting XML code is displayed in the XML Filter output window."
-msgstr "Na otestovanie filtra sa použije prvý otvorený súbor, ktorý zodpovedá kritériám filtra XML. Aktuálny exportovací filter XML súbor transformuje a výsledný kód XML sa zobrazí vo výstupnom okne filtra XML."
-
-#. EPLxG
-#: filter/uiconfig/ui/testxmlfilter.ui:153
-msgctxt "testxmlfilter|extended_tip|exportxsltfile"
-msgid "Displays the file name of the XSLT filter that you entered on the Transformation tab page."
-msgstr "Zobrazuje názov súboru filtra XSLT, ktorý ste zadali na záložke Transformácia."
-
-#. 9HnMA
-#: filter/uiconfig/ui/testxmlfilter.ui:170
-msgctxt "testxmlfilter|extended_tip|currentfilename"
-msgid "Displays the file name of the document that you want to use to test the XSLT filter."
-msgstr "Zobrazuje názov súboru dokumentu, ktorý chcete použiť na testovanie filtra XSLT."
-
#. b7FMe
-#: filter/uiconfig/ui/testxmlfilter.ui:191
+#: filter/uiconfig/ui/testxmlfilter.ui:171
msgctxt "testxmlfilter|label1"
msgid "Export"
msgstr "Exportovať"
#. ANpSQ
-#: filter/uiconfig/ui/testxmlfilter.ui:227
+#: filter/uiconfig/ui/testxmlfilter.ui:207
msgctxt "testxmlfilter|label5"
msgid "XSLT for import"
msgstr "XSLT pre import"
#. aWFtZ
-#: filter/uiconfig/ui/testxmlfilter.ui:237
+#: filter/uiconfig/ui/testxmlfilter.ui:217
msgctxt "testxmlfilter|importbrowse"
msgid "Browse..."
msgstr "Prehliadať..."
-#. eR68F
-#: filter/uiconfig/ui/testxmlfilter.ui:243
-msgctxt "testxmlfilter|extended_tip|importbrowse"
-msgid "Opens a file selection dialog. The selected file is opened using the current XML import filter."
-msgstr "Otvára dialógové okno na výber súboru. Vybraný súbor sa otvorí pomocou aktuálneho filtra na import XML."
-
#. RGb9P
-#: filter/uiconfig/ui/testxmlfilter.ui:254
+#: filter/uiconfig/ui/testxmlfilter.ui:229
msgctxt "testxmlfilter|recentfile"
msgid "Recent File"
msgstr "Naposledy otvorený súbor"
-#. 2vFnT
-#: filter/uiconfig/ui/testxmlfilter.ui:260
-msgctxt "testxmlfilter|extended_tip|recentfile"
-msgid "Re-opens the document that was last opened with this dialog."
-msgstr "Znovu otvorí dokument, ktorý bol naposledy otvorený týmto dialógovým oknom."
-
#. WRoGk
-#: filter/uiconfig/ui/testxmlfilter.ui:274
+#: filter/uiconfig/ui/testxmlfilter.ui:244
msgctxt "testxmlfilter|templateimport"
msgid "Template for import"
msgstr "Šablóna pre import"
-#. 75GJD
-#: filter/uiconfig/ui/testxmlfilter.ui:289
-msgctxt "testxmlfilter|extended_tip|importxsltfile"
-msgid "Displays the file name of the XSLT filter that you entered on the Transformation tab page."
-msgstr "Zobrazuje názov súboru filtra XSLT, ktorý ste zadali na záložke Transformácia."
-
#. UAfyw
-#: filter/uiconfig/ui/testxmlfilter.ui:300
+#: filter/uiconfig/ui/testxmlfilter.ui:265
msgctxt "testxmlfilter|displaysource"
msgid "Display source"
msgstr "Zobraziť zdroj"
-#. CdCp5
-#: filter/uiconfig/ui/testxmlfilter.ui:309
-msgctxt "testxmlfilter|extended_tip|displaysource"
-msgid "Opens the XML source of the selected document in your default XML editor after importing."
-msgstr "Po importovaní otvorí zdroj XML vybraného dokumentu vo vašom predvolenom editore XML."
-
#. AKfAy
-#: filter/uiconfig/ui/testxmlfilter.ui:323
+#: filter/uiconfig/ui/testxmlfilter.ui:283
msgctxt "testxmlfilter|label6"
msgid "Transform file"
msgstr "Transformovať súbor"
-#. FdiNb
-#: filter/uiconfig/ui/testxmlfilter.ui:338
-msgctxt "testxmlfilter|extended_tip|importxslttemplate"
-msgid "Displays the file name of the template that you entered on the Transformation tab page."
-msgstr "Zobrazí názov súboru šablóny, ktorú ste zadali na záložke Transformácia."
-
-#. RHRHL
-#: filter/uiconfig/ui/testxmlfilter.ui:355
-msgctxt "testxmlfilter|extended_tip|recentfilename"
-msgid "Re-opens the document that was last opened with this dialog."
-msgstr "Znovu otvorí dokument, ktorý bol naposledy otvorený týmto dialógovým oknom."
-
#. 4MaaP
-#: filter/uiconfig/ui/testxmlfilter.ui:379
+#: filter/uiconfig/ui/testxmlfilter.ui:329
msgctxt "testxmlfilter|label2"
msgid "Import"
msgstr "Importovať"
-#. NsJor
-#: filter/uiconfig/ui/testxmlfilter.ui:410
-msgctxt "testxmlfilter|extended_tip|TestXMLFilterDialog"
-msgid "Tests the XSLT stylesheets used by the selected XML filter."
-msgstr "Testuje šablóny štýlov XSLT používané vybraným filtrom XML."
-
#. DEJXN
#: filter/uiconfig/ui/warnpdfdialog.ui:19
msgctxt "warnpdfdialog|WarnPDFDialog"
@@ -1649,114 +1181,54 @@ msgctxt "xmlfiltersettings|XMLFilterSettingsDialog"
msgid "XML Filter Settings"
msgstr "Nastavenia XML filtra"
-#. x9LGg
-#: filter/uiconfig/ui/xmlfiltersettings.ui:41
-msgctxt "xmlfiltersettings|extended_tip|help"
-msgid "Displays the help page for this dialog."
-msgstr "Zobrazí stránku pomocníka pre toto dialógové okno."
-
-#. CmVSC
-#: filter/uiconfig/ui/xmlfiltersettings.ui:63
-msgctxt "xmlfiltersettings|extended_tip|close"
-msgid "Closes the dialog."
-msgstr "Zatvorí dialóg."
-
#. VvrGU
-#: filter/uiconfig/ui/xmlfiltersettings.ui:110
+#: filter/uiconfig/ui/xmlfiltersettings.ui:103
msgctxt "xmlfiltersettings|header_name"
msgid "Name"
msgstr "Meno"
#. D6uZS
-#: filter/uiconfig/ui/xmlfiltersettings.ui:123
+#: filter/uiconfig/ui/xmlfiltersettings.ui:116
msgctxt "xmlfiltersettings|header_type"
msgid "Type"
msgstr "Typ"
-#. A6qWH
-#: filter/uiconfig/ui/xmlfiltersettings.ui:134
-msgctxt "xmlfiltersettings|extended_tip|filterlist"
-msgid "Select one or more filters, then click one of the buttons."
-msgstr "Vyberte jeden alebo viac filtrov a potom kliknite na jedno z tlačidiel."
-
#. VcMQo
-#: filter/uiconfig/ui/xmlfiltersettings.ui:156
+#: filter/uiconfig/ui/xmlfiltersettings.ui:144
msgctxt "xmlfiltersettings|new"
msgid "_New..."
msgstr "_Nový..."
-#. 5Enmj
-#: filter/uiconfig/ui/xmlfiltersettings.ui:163
-msgctxt "xmlfiltersettings|extended_tip|new"
-msgid "Opens a dialog with the name of a new filter."
-msgstr "Otvorí dialógové okno s názvom nového filtra."
-
#. W6Ju3
-#: filter/uiconfig/ui/xmlfiltersettings.ui:175
+#: filter/uiconfig/ui/xmlfiltersettings.ui:158
msgctxt "xmlfiltersettings|edit"
msgid "_Edit..."
msgstr "_Upraviť..."
-#. K8XRa
-#: filter/uiconfig/ui/xmlfiltersettings.ui:182
-msgctxt "xmlfiltersettings|extended_tip|edit"
-msgid "Opens a dialog with the name of the selected file."
-msgstr "Otvorí dialógové okno s názvom vybraného súboru."
-
#. DAoSK
-#: filter/uiconfig/ui/xmlfiltersettings.ui:194
+#: filter/uiconfig/ui/xmlfiltersettings.ui:172
msgctxt "xmlfiltersettings|test"
msgid "_Test XSLTs..."
msgstr "~Testovať XSLT..."
-#. zFrBM
-#: filter/uiconfig/ui/xmlfiltersettings.ui:201
-msgctxt "xmlfiltersettings|extended_tip|test"
-msgid "Opens a dialog with the name of the selected file."
-msgstr "Otvorí dialógové okno s názvom vybraného súboru."
-
#. FE7Za
-#: filter/uiconfig/ui/xmlfiltersettings.ui:213
+#: filter/uiconfig/ui/xmlfiltersettings.ui:186
msgctxt "xmlfiltersettings|delete"
msgid "_Delete..."
msgstr "_Odstrániť..."
-#. bDixG
-#: filter/uiconfig/ui/xmlfiltersettings.ui:220
-msgctxt "xmlfiltersettings|extended_tip|delete"
-msgid "Deletes the selected file after you confirm the dialog that follows."
-msgstr "Po potvrdení v nasledujúcom dialógovom okne odstráni vybraný súbor."
-
#. DmuTA
-#: filter/uiconfig/ui/xmlfiltersettings.ui:232
+#: filter/uiconfig/ui/xmlfiltersettings.ui:200
msgctxt "xmlfiltersettings|save"
msgid "_Save as Package..."
msgstr "~Uložiť ako balík..."
-#. tPh4b
-#: filter/uiconfig/ui/xmlfiltersettings.ui:239
-msgctxt "xmlfiltersettings|extended_tip|save"
-msgid "Displays a Save as dialog to save the selected file as an XSLT filter package (*.jar)."
-msgstr "Zobrazí dialógové okno Uložiť ako na uloženie vybraného súboru ako balíka filtra XSLT (* .jar)."
-
#. CuahL
-#: filter/uiconfig/ui/xmlfiltersettings.ui:251
+#: filter/uiconfig/ui/xmlfiltersettings.ui:214
msgctxt "xmlfiltersettings|open"
msgid "_Open Package..."
msgstr "~Otvoriť balík..."
-#. D3FRp
-#: filter/uiconfig/ui/xmlfiltersettings.ui:258
-msgctxt "xmlfiltersettings|extended_tip|open"
-msgid "Displays an Open dialog to open a filter from an XSLT filter package (*.jar)."
-msgstr "Zobrazí dialógové okno Otvoriť na otvorenie filtra z balíka filtra XSLT (* .jar)."
-
-#. bC6ha
-#: filter/uiconfig/ui/xmlfiltersettings.ui:293
-msgctxt "xmlfiltersettings|extended_tip|XMLFilterSettingsDialog"
-msgid "Opens the XML Filter Settings dialog, where you can create, edit, delete, and test filters to import and to export XML files."
-msgstr "Otvára dialógové okno Nastavenia filtra XML, kde môžete vytvárať, upravovať, mazať a testovať filtre na import a export súborov XML."
-
#. rLZ5z
#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:22
msgctxt "xmlfiltertabpagegeneral|label2"
@@ -1787,164 +1259,68 @@ msgctxt "xmlfiltertabpagegeneral|label6"
msgid "Comment_s:"
msgstr "Poz_námky:"
-#. rYNyn
-#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:98
-msgctxt "xmlfiltertabpagegeneral|extended_tip|filtername"
-msgid "Enter the name that you want to display in the list box of the XML Filter Settings dialog."
-msgstr "Zadajte názov, ktorý chcete zobraziť v zozname v dialógovom okne Nastavenie filtra XML."
-
-#. yTwyU
-#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:116
-msgctxt "xmlfiltertabpagegeneral|extended_tip|extension"
-msgid "Enter the file extension to use when you open a file without specifying a filter. %PRODUCTNAME uses the file extension to determine which filter to use."
-msgstr "Zadajte príponu súboru, ktorá sa má použiť pri otvorení súboru bez určenia filtra. %PRODUCTNAME používa príponu súboru na určenie, ktorý filter sa má použiť."
-
-#. fZvBA
-#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:134
-msgctxt "xmlfiltertabpagegeneral|extended_tip|interfacename"
-msgid "Enter the name that you want to display in the File type box in file dialogs."
-msgstr "Zadajte názov, ktorý chcete zobraziť v poli Typ súboru v dialógových oknách súborov."
-
-#. BFUsA
-#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:157
-msgctxt "xmlfiltertabpagegeneral|extended_tip|application"
-msgid "Select the application that you want to use with the filter."
-msgstr "Vyberte aplikáciu, ktorú chcete s filtrom použiť."
-
-#. Gfrm2
-#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:181
-msgctxt "xmlfiltertabpagegeneral|extended_tip|description"
-msgid "Enter a comment (optional)."
-msgstr "Zadajte komentár (voliteľné)."
-
-#. G632R
-#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:201
-msgctxt "xmlfiltertabpagegeneral|extended_tip|XmlFilterTabPageGeneral"
-msgid "Enter or edit general information for an XML filter."
-msgstr "Zadajte alebo upravte všeobecné informácie pre filter XML."
-
#. FhD2n
#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:23
msgctxt "xmlfiltertabpagetransformation|label2"
msgid "_DocType:"
msgstr "_DocType:"
-#. x2ex7
-#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:42
-msgctxt "xmlfiltertabpagetransformation|extended_tip|doc"
-msgid "Enter the DOCTYPE of the XML file."
-msgstr "Zadajte DOCTYPE súboru XML."
-
#. J5c8A
-#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:55
+#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:50
msgctxt "xmlfiltertabpagetransformation|label4"
msgid "_XSLT for export:"
msgstr "_XSLT pre exportovanie:"
#. GwzvD
-#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:67
+#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:62
msgctxt "xmlfiltertabpagetransformation|browseexport"
msgid "Brows_e..."
msgstr "Prehľa_dávať..."
-#. QLd25
-#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:74
-msgctxt "xmlfiltertabpagetransformation|extended_tip|browseexport"
-msgid "Opens a file selection dialog."
-msgstr "Otvára dialógové okno na výber súboru."
-
#. oZGZS
-#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:87
+#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:77
msgctxt "xmlfiltertabpagetransformation|label5"
msgid "XSLT _for import:"
msgstr "XSLT pre _importovanie:"
#. UNKTt
-#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:99
+#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:89
msgctxt "xmlfiltertabpagetransformation|browseimport"
msgid "B_rowse..."
msgstr "P_rehľadávať..."
-#. TecWL
-#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:106
-msgctxt "xmlfiltertabpagetransformation|extended_tip|browseimport"
-msgid "Opens a file selection dialog."
-msgstr "Otvára dialógové okno na výber súboru."
-
#. 9nV9R
-#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:119
+#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:104
msgctxt "xmlfiltertabpagetransformation|label6"
msgid "Template for _import:"
msgstr "Šab_lóna pre importovanie:"
#. MNLtB
-#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:131
+#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:116
msgctxt "xmlfiltertabpagetransformation|browsetemp"
msgid "Browse..."
msgstr "Prehliadať..."
-#. Dce3n
-#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:137
-msgctxt "xmlfiltertabpagetransformation|extended_tip|browsetemp"
-msgid "Opens a file selection dialog."
-msgstr "Otvára dialógové okno na výber súboru."
-
-#. sjWgJ
-#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:159
-msgctxt "xmlfiltertabpagetransformation|extended_tip|xsltexport"
-msgid "If this is an export filter, enter the file name of the XSLT stylesheet that you want to use for exporting."
-msgstr "Ak ide o exportovací filter, zadajte názov súboru šablóny so štýlmi XSLT, ktorý chcete použiť na export."
-
-#. Xgroa
-#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:181
-msgctxt "xmlfiltertabpagetransformation|extended_tip|xsltimport"
-msgid "If this is an import filter, enter the file name of the XSLT stylesheet that you want to use for importing."
-msgstr "Ak ide o filter na importovanie, zadajte názov súboru šablóny so štýlmi XSLT, ktorý chcete na importovanie použiť."
-
-#. wRFNU
-#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:203
-msgctxt "xmlfiltertabpagetransformation|extended_tip|tempimport"
-msgid "Enter the name of the template that you want to use for importing. In the template, styles are defined to display XML tags."
-msgstr "Zadajte názov šablóny, ktorú chcete použiť na importovanie. V šablóne sú definované štýly na zobrazovanie XML značiek."
-
#. XTDex
-#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:224
+#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:189
msgctxt "xmlfiltertabpagetransformation|filtercb"
msgid "The filter needs XSLT 2.0 processor"
msgstr "Filter vyžaduje procesor XSLT 2.0"
-#. hDv78
-#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:240
-msgctxt "xmlfiltertabpagetransformation|extended_tip|XmlFilterTabPageTransformation"
-msgid "Enter or edit file information for an XML filter."
-msgstr "Zadajte alebo upravte informácie o súbore pre filter XML."
-
#. MCfGg
#: filter/uiconfig/ui/xsltfilterdialog.ui:8
msgctxt "xsltfilterdialog|XSLTFilterDialog"
msgid "XML Filter: %s"
msgstr "XML Filter: %s"
-#. bCZh2
-#: filter/uiconfig/ui/xsltfilterdialog.ui:62
-msgctxt "xsltfilterdialog|extended_tip|help"
-msgid "Displays the help page for this dialog."
-msgstr "Zobrazí stránku pomocníka pre toto dialógové okno."
-
#. Cvy2d
-#: filter/uiconfig/ui/xsltfilterdialog.ui:126
+#: filter/uiconfig/ui/xsltfilterdialog.ui:121
msgctxt "xsltfilterdialog|general"
msgid "General"
msgstr "Všeobecné"
#. peR3F
-#: filter/uiconfig/ui/xsltfilterdialog.ui:172
+#: filter/uiconfig/ui/xsltfilterdialog.ui:167
msgctxt "xsltfilterdialog|transformation"
msgid "Transformation"
msgstr "Transformácia"
-
-#. ocohs
-#: filter/uiconfig/ui/xsltfilterdialog.ui:198
-msgctxt "xsltfilterdialog|extended_tip|XSLTFilterDialog"
-msgid "Opens a dialog with the name of a new filter."
-msgstr "Otvorí dialógové okno s názvom nového filtra."
diff --git a/source/sk/formula/messages.po b/source/sk/formula/messages.po
index 3fbdffe6d6c..5cb48254ece 100644
--- a/source/sk/formula/messages.po
+++ b/source/sk/formula/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-09-01 18:13+0200\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
"PO-Revision-Date: 2020-10-02 06:35+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: Slovak <https://weblate.documentfoundation.org/projects/libo_ui-master/formulamessages/sk/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1555447105.000000\n"
#. YfKFn
@@ -2627,104 +2627,56 @@ msgctxt "functionpage|label_search"
msgid "_Search"
msgstr "_Hľadať"
-#. Pc52A
-#: formula/uiconfig/ui/functionpage.ui:44
-msgctxt "functionpage|extended_tip|search"
-msgid "Search for a part of the function name."
-msgstr "Vyhľadať časť názvu funkcie."
-
#. MbTAL
-#: formula/uiconfig/ui/functionpage.ui:59
+#: formula/uiconfig/ui/functionpage.ui:54
msgctxt "functionpage|label1"
msgid "_Category"
msgstr "_Kategória"
#. WQC5A
-#: formula/uiconfig/ui/functionpage.ui:74
+#: formula/uiconfig/ui/functionpage.ui:69
msgctxt "functionpage|category"
msgid "Last Used"
msgstr "Naposledy použité"
#. 6uomB
-#: formula/uiconfig/ui/functionpage.ui:75
+#: formula/uiconfig/ui/functionpage.ui:70
msgctxt "functionpage|category"
msgid "All"
msgstr "Všetko"
-#. UX9BD
-#: formula/uiconfig/ui/functionpage.ui:79
-msgctxt "functionpage|extended_tip|category"
-msgid "Lists all the categories to which the different functions are assigned. Select a category to view the appropriate functions in the list field below."
-msgstr "Zoznam všetkých kategórií, do ktorých môžu byť rôzne funkcie priradené. Po výbere kategórie sa v zozname pod ňou zobrazia zodpovedajúce funkcie."
-
#. 7FZAh
-#: formula/uiconfig/ui/functionpage.ui:94
+#: formula/uiconfig/ui/functionpage.ui:84
msgctxt "functionpage|label2"
msgid "_Function"
msgstr "_Funkcia"
-#. TSCPY
-#: formula/uiconfig/ui/functionpage.ui:141
-msgctxt "functionpage|extended_tip|function"
-msgid "Displays the functions found under the selected category. Double-click to select a function."
-msgstr "Zobrazí funkcie nájdené vo vybranej kategórii. Funkciu vyberiete tak, že na ňu dvakrát kliknete."
-
-#. jY887
-#: formula/uiconfig/ui/functionpage.ui:155
-msgctxt "functionpage|extended_tip|FunctionPage"
-msgid "Opens the Function Wizard, which helps you to interactively create formulas."
-msgstr "Otvorí Sprievodcu funkciou, ktorý pomáha interaktívne vytvárať vzorce."
-
#. GCYUY
#: formula/uiconfig/ui/parameter.ui:27
msgctxt "parameter|editdesc"
msgid "Function not known"
msgstr "Neznáma funkcia"
-#. CUAGC
-#: formula/uiconfig/ui/parameter.ui:219
-msgctxt "parameter|extended_tip|FX1"
-msgid "Allows you to access a subordinate level of the Function Wizard in order to nest another function within the function, instead of a value or reference."
-msgstr "Zobrazí sa ďalší Sprievodca funkciou, kde vyberiete vnorenú funkciu, ktorá bude vložená do výsledného vzorca."
-
-#. u3Zoo
-#: formula/uiconfig/ui/parameter.ui:235
-msgctxt "parameter|extended_tip|FX2"
-msgid "Allows you to access a subordinate level of the Function Wizard in order to nest another function within the function, instead of a value or reference."
-msgstr "Zobrazí sa ďalší Sprievodca funkciou, kde vyberiete vnorenú funkciu, ktorá bude vložená do výsledného vzorca."
-
-#. noEab
-#: formula/uiconfig/ui/parameter.ui:251
-msgctxt "parameter|extended_tip|FX3"
-msgid "Allows you to access a subordinate level of the Function Wizard in order to nest another function within the function, instead of a value or reference."
-msgstr "Zobrazí sa ďalší Sprievodca funkciou, kde vyberiete vnorenú funkciu, ktorá bude vložená do výsledného vzorca."
-
-#. M3LSb
-#: formula/uiconfig/ui/parameter.ui:267
-msgctxt "parameter|extended_tip|FX4"
-msgid "Allows you to access a subordinate level of the Function Wizard in order to nest another function within the function, instead of a value or reference."
-msgstr "Zobrazí sa ďalší Sprievodca funkciou, kde vyberiete vnorenú funkciu, ktorá bude vložená do výsledného vzorca."
-
#. 6GD3i
-#: formula/uiconfig/ui/parameter.ui:281
+#: formula/uiconfig/ui/parameter.ui:261
msgctxt "parameter|RB_ARG1|tooltip_text"
msgid "Select"
msgstr "Zvoliť"
#. YPW6d
-#: formula/uiconfig/ui/parameter.ui:293
+#: formula/uiconfig/ui/parameter.ui:273
msgctxt "parameter|RB_ARG2|tooltip_text"
msgid "Select"
msgstr "Zvoliť"
#. JDDDE
-#: formula/uiconfig/ui/parameter.ui:305
+#: formula/uiconfig/ui/parameter.ui:285
msgctxt "parameter|RB_ARG3|tooltip_text"
msgid "Select"
msgstr "Zvoliť"
#. ScEBw
-#: formula/uiconfig/ui/parameter.ui:317
+#: formula/uiconfig/ui/parameter.ui:297
msgctxt "parameter|RB_ARG4|tooltip_text"
msgid "Select"
msgstr "Zvoliť"
@@ -2734,9 +2686,3 @@ msgstr "Zvoliť"
msgctxt "structpage|label1"
msgid "_Structure"
msgstr "Štruktú_ra"
-
-#. KGSPW
-#: formula/uiconfig/ui/structpage.ui:77
-msgctxt "structpage|extended_tip|struct"
-msgid "Displays a hierarchical representation of the current function."
-msgstr "Zobrazí hierarchickú reprezentáciu aktuálnej funkcie."
diff --git a/source/sk/fpicker/messages.po b/source/sk/fpicker/messages.po
index 64ea9175652..8b42fee80a4 100644
--- a/source/sk/fpicker/messages.po
+++ b/source/sk/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-08-25 16:09+0200\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
"PO-Revision-Date: 2020-10-02 06:35+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: Slovak <https://weblate.documentfoundation.org/projects/libo_ui-master/fpickermessages/sk/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1538498523.000000\n"
#. SJGCw
@@ -91,103 +91,103 @@ msgstr ""
"Uistite sa, že je správne zapojené a skúste znovu."
#. D3iME
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:128
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:131
msgctxt "explorerfiledialog|connect_to_server"
msgid "Servers..."
msgstr "Servery..."
#. ZqDfr
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:132
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:135
msgctxt "explorerfiledialog|connect_to_server|tooltip_text"
msgid "Connect To Server"
msgstr "Pripojiť sa k serveru"
#. kaDnz
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:136
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:139
msgctxt "explorerfiledialog|connect_to_server-atkobject"
msgid "Connect To Server"
msgstr "Pripojiť sa k serveru"
#. e8DSB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:193
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:196
msgctxt "explorerfiledialog|new_folder|tooltip_text"
msgid "Create New Folder"
msgstr "Vytvoriť nový priečinok"
#. Lyb7g
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:199
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:202
msgctxt "explorerfiledialog|new_folder-atkobject"
msgid "Create New Folder"
msgstr "Vytvoriť nový priečinok"
#. X5SYh
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:261
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:264
msgctxt "explorerfiledialog|places"
msgid "Places"
msgstr "Miesta"
#. Upnsg
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:363
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:366
msgctxt "explorerfiledialog|name"
msgid "Name"
msgstr "Meno"
#. CGq9e
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:383
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:386
msgctxt "explorerfiledialog|type"
msgid "Type"
msgstr "Typ"
#. wDiXd
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:397
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:400
msgctxt "explorerfiledialog|size"
msgid "Size"
msgstr "Veľkosť"
#. CDqza
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:411
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:414
msgctxt "explorerfiledialog|date"
msgid "Date modified"
msgstr "Dátum zmeny"
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:583
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:586
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "_Názov súboru:"
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:609
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:612
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr "_Typ súboru:"
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:671
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:674
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr "Iba na čí_tanie"
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:694
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:697
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr "Uložiť s heslom"
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:708
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:711
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr "_Automatická prípona mena súboru"
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:722
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:725
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr "Upraviť nastavenie _filtra"
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:751
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:754
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr "Šifrovať GPG kľúčom"
diff --git a/source/sk/helpcontent2/source/text/sbasic/python.po b/source/sk/helpcontent2/source/text/sbasic/python.po
index 66fb98927cf..48f37bc311e 100644
--- a/source/sk/helpcontent2/source/text/sbasic/python.po
+++ b/source/sk/helpcontent2/source/text/sbasic/python.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-12 15:02+0200\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1831,13 +1831,13 @@ msgctxt ""
msgid "Events raised by dialogs, documents, forms or graphical controls can be linked to macros, which is referred to as event-driven programming. The most common method to relate events to macros are the <literal>Events</literal> tab in <menuitem>Tools – Customize</menuitem> menu and the <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"Create dialog\">Dialog Editor</link> Control properties pane from <menuitem>Tools - Macros – Organise Dialogs...</menuitem> menu."
msgstr ""
-#. Dd2YW
+#. DmmbY
#: python_listener.xhp
msgctxt ""
"python_listener.xhp\n"
"N0388\n"
"help.text"
-msgid "Graphical artifacts, keyboard inputs, mouse moves and other man/machine interactions can be controlled using UNO listeners that watch for the user’s behavior. Listeners are dynamic program code alternatives to macro assignments. One may create as many UNO listeners as events to watch for. A single listener can also handle multiple user interface controls."
+msgid "Graphical artifacts, keyboard inputs, mouse moves and other man/machine interactions can be controlled using UNO listeners that watch for the user’s behaviour. Listeners are dynamic program code alternatives to macro assignments. One may create as many UNO listeners as events to watch for. A single listener can also handle multiple user interface controls."
msgstr ""
#. UVzsE
diff --git a/source/sk/helpcontent2/source/text/sbasic/shared.po b/source/sk/helpcontent2/source/text/sbasic/shared.po
index 831791414bc..bd181dea098 100644
--- a/source/sk/helpcontent2/source/text/sbasic/shared.po
+++ b/source/sk/helpcontent2/source/text/sbasic/shared.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-12 15:02+0200\n"
-"PO-Revision-Date: 2020-09-26 19:35+0000\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
+"PO-Revision-Date: 2020-10-16 15:35+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: Slovak <https://weblate.documentfoundation.org/projects/libo_help-master/textsbasicshared/sk/>\n"
"Language: sk\n"
@@ -529,15 +529,6 @@ msgctxt ""
msgid "Transparent white"
msgstr "Jasne biela"
-#. sdV2V
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id631529990528928\n"
-"help.text"
-msgid "Open <item type=\"menuitem\">Tools - Macros - Organize dialogs...</item> and select <item type=\"menuitem\">%PRODUCTNAME Dialogs</item> container."
-msgstr ""
-
#. C3yvQ
#: 00000003.xhp
msgctxt ""
@@ -610,15 +601,6 @@ msgctxt ""
msgid "<variable id=\"functexample\">Example:</variable>"
msgstr ""
-#. TV2YL
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id161599082457466\n"
-"help.text"
-msgid "<variable id=\"stringfunctions\"><link href=\"text/sbasic/shared/03120300.xhp\" name=\"string functions\">String functions</link></variable>"
-msgstr ""
-
#. CGSvh
#: 00000003.xhp
msgctxt ""
@@ -2428,23 +2410,14 @@ msgctxt ""
msgid "String Variables"
msgstr "Premenné typu String"
-#. zes9e
+#. ft56J
#: 01020100.xhp
msgctxt ""
"01020100.xhp\n"
"par_id3151393\n"
"help.text"
-msgid "String variables can hold character strings with up to 2,147,483,648 characters. Each character is stored as the corresponding Unicode value. String variables are suitable for word processing within programs and for temporary storage of any non-printable character up to a maximum length of 2 Gbytes. The memory required for storing string variables depends on the number of characters in the variable. The type-declaration character is \"$\"."
-msgstr ""
-
-#. RBcLt
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id381599081637549\n"
-"help.text"
-msgid "In BASIC String functions, the first character of the string has index 1."
-msgstr ""
+msgid "String variables can hold character strings with up to 65,535 characters. Each character is stored as the corresponding Unicode value. String variables are suitable for word processing within programs and for temporary storage of any non-printable character up to a maximum length of 64 Kbytes. The memory required for storing string variables depends on the number of characters in the variable. The type-declaration character is \"$\"."
+msgstr "Premenné typu String môžu obsahovať reťazce dĺžky až 65 535 znakov. Každý znak je ukladaný v zodpovedajúcej Unicode hodnote. Premenné String sú vhodné pre spracovanie slov v programoch a dočasné ukladanie netlačiteľných znakov až do maximálnej dĺžky 64 KB. Pamäť potrebná pre uloženie premennej String závisí od počtu znakov v premennej. Znak typovej deklarácie je \"$\"."
#. wDbuF
#: 01020100.xhp
@@ -3337,14 +3310,14 @@ msgctxt ""
msgid "<bookmark_value>saving;Basic code</bookmark_value><bookmark_value>loading;Basic code</bookmark_value><bookmark_value>Basic editor</bookmark_value><bookmark_value>navigating;in Basic projects</bookmark_value><bookmark_value>long lines;in Basic editor</bookmark_value><bookmark_value>lines of text;in Basic editor</bookmark_value><bookmark_value>continuation;long lines in editor</bookmark_value>"
msgstr ""
-#. jdhKC
+#. r7hMB
#: 01030200.xhp
msgctxt ""
"01030200.xhp\n"
"hd_id3147264\n"
"help.text"
-msgid "<variable id=\"thebasiceditorh1\"><link href=\"text/sbasic/shared/01030200.xhp\" name=\"The Basic Editor\">The Basic Editor</link></variable>"
-msgstr ""
+msgid "<link href=\"text/sbasic/shared/01030200.xhp\" name=\"The Basic Editor\">The Basic Editor</link>"
+msgstr "<link href=\"text/sbasic/shared/01030200.xhp\" name=\"Editor jazyka Basic\">Editor jazyka Basic</link>"
#. dSemx
#: 01030200.xhp
@@ -4309,50 +4282,50 @@ msgctxt ""
msgid "To move a module or dialog to another document, click the corresponding object in the list and drag it to the desired position. A horizontal line indicates the target position of the current object while dragging. Hold the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while dragging to copy the object instead of moving it."
msgstr ""
-#. 8AfAv
+#. FiYz2
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
"tit\n"
"help.text"
-msgid "Document Event-Driven Macros"
-msgstr ""
+msgid "Event-Driven Macros"
+msgstr "Makra riadené udalosťami"
-#. mRxGZ
+#. BHSko
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
"bm_id3154581\n"
"help.text"
-msgid "<bookmark_value>deleting; macro assignments to events</bookmark_value> <bookmark_value>macros; assigning to events</bookmark_value> <bookmark_value>assigning macros to events</bookmark_value> <bookmark_value>documents; events</bookmark_value> <bookmark_value>events; assigning macros</bookmark_value> <bookmark_value>API; XDocumentEventListener</bookmark_value>"
+msgid "<bookmark_value>deleting; macro assignments to events</bookmark_value> <bookmark_value>macros; assigning to events</bookmark_value> <bookmark_value>assigning macros to events</bookmark_value> <bookmark_value>events; assigning macros</bookmark_value>"
msgstr ""
-#. 7uCwS
+#. ZYLfF
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
"hd_id3147348\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01040000.xhp\" name=\"Event-Driven Macros\">Document Event-Driven Macros</link>"
-msgstr ""
+msgid "<link href=\"text/sbasic/shared/01040000.xhp\" name=\"Event-Driven Macros\">Event-Driven Macros</link>"
+msgstr "<link href=\"text/sbasic/shared/01040000.xhp\" name=\"Makrá riadené udalosťami\">Makrá riadené udalosťami</link>"
-#. LRvA8
+#. CNDe6
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
"par_id3146120\n"
"help.text"
-msgid "This section describes how to assign scripts to application, document or form events."
-msgstr ""
+msgid "This section describes how to assign Basic programs to program events."
+msgstr "Táto časť popisuje ako priradiť programy v Basicu udalostiam programu."
-#. 3G8fP
+#. SDAQu
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
"par_id3149263\n"
"help.text"
-msgid "You can automatically execute a macro when a specified software event occurs by assigning the desired macro to the event. The following table provides an overview of document events and at what point an assigned macro is executed."
-msgstr ""
+msgid "You can automatically execute a macro when a specified software event occurs by assigning the desired macro to the event. The following table provides an overview of program events and at what point an assigned macro is executed."
+msgstr "Ak priradíte makro k udalosti, je možné ho automaticky spustiť, ak nastane určitá softverova udalosť. Nasledujúca tabuľka poskytuje prehľad udalostí programu a tiež sa dozviete, kedy sa spustí priradené makro."
#. zBhWV
#: 01040000.xhp
@@ -4372,41 +4345,32 @@ msgctxt ""
msgid "An assigned macro is executed..."
msgstr "Priradené makro je spustené..."
-#. e4Pjb
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3145809\n"
-"help.text"
-msgid "routine"
-msgstr ""
-
-#. WtaR8
+#. PFpKw
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
"par_id3149379\n"
"help.text"
-msgid "Start Application"
-msgstr ""
+msgid "Program Start"
+msgstr "Spustiť aplikáciu"
-#. otwcA
+#. WGtYg
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
"par_id3150715\n"
"help.text"
-msgid "...after a $[officename] application is started."
-msgstr ""
+msgid "... after a $[officename] application is started."
+msgstr "... po spustení aplikácie $[officename]."
-#. zjA7c
+#. zvpGy
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
"par_id3146914\n"
"help.text"
-msgid "Close Application"
-msgstr ""
+msgid "Program End"
+msgstr "Ukončiť aplikáciu"
#. iwsSq
#: 01040000.xhp
@@ -4417,32 +4381,14 @@ msgctxt ""
msgid "...before a $[officename] application is terminated."
msgstr "...pred ukončením aplikácie $[officename]."
-#. DZHzW
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id151599831705811\n"
-"help.text"
-msgid "Document created"
-msgstr ""
-
-#. KAZDF
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id501599831822339\n"
-"help.text"
-msgid "...New document created with <emph>File - New</emph> or with the <emph>New</emph> icon. Note that this event also fires when Basic IDE opens."
-msgstr ""
-
-#. HBjid
+#. FGd5M
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
"par_id3145150\n"
"help.text"
-msgid "New Document"
-msgstr ""
+msgid "Create Document"
+msgstr "Vytvoriť dokument"
#. fkuXY
#: 01040000.xhp
@@ -4453,24 +4399,6 @@ msgctxt ""
msgid "...after a new document is created with <emph>File - New</emph> or with the <emph>New</emph> icon."
msgstr "...po vytvorení dokumentu pomocou <emph>Súbor - Nový</emph> alebo ikony <emph>Nový</emph>."
-#. BYGJY
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id161599836960401\n"
-"help.text"
-msgid "Document loading finished"
-msgstr ""
-
-#. jCGwP
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id721599836993145\n"
-"help.text"
-msgid "...before a document is opened with <emph>File - Open</emph> or with the <emph>Open</emph> icon."
-msgstr ""
-
#. F352r
#: 01040000.xhp
msgctxt ""
@@ -4489,141 +4417,42 @@ msgctxt ""
msgid "...after a document is opened with <emph>File - Open</emph> or with the <emph>Open</emph> icon."
msgstr "...po otvorení dokumentu pomocou <emph>Súbor - Otvoriť</emph> alebo ikony <emph>Otvoriť</emph>."
-#. H2Uom
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3159171\n"
-"help.text"
-msgid "Document is going to be closed"
-msgstr ""
-
-#. CvPgm
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3146868\n"
-"help.text"
-msgid "...before a document is closed."
-msgstr "...pred zatvorením dokumentu."
-
-#. kLQvC
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3159097\n"
-"help.text"
-msgid "Document closed"
-msgstr "Dokument bol zatvorený"
-
-#. DNYcy
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3148606\n"
-"help.text"
-msgid "...after a document was closed. Note that the \"Save Document\" event may also occur when the document is saved before closing."
-msgstr "...po zatvorení dokumentu. Poznámka: taktiež môže nastať udalosť \"Uložiť dokument\", ak sa dokument uloží pred zatvorením."
-
-#. iMPCi
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id391600157320922\n"
-"help.text"
-msgid "-no UI-"
-msgstr ""
-
-#. F46jE
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id981599837681979\n"
-"help.text"
-msgid "View created"
-msgstr ""
-
-#. 77CWX
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id281599838210270\n"
-"help.text"
-msgid "Document is displayed. Note that this event also happens when a document is duplicated."
-msgstr ""
-
-#. CDwGy
+#. VUPBD
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id511599837683562\n"
+"par_id3153266\n"
"help.text"
-msgid "View is going to be closed"
-msgstr ""
+msgid "Save Document As"
+msgstr "Uložiť dokument ako"
-#. EtV6o
+#. qMrvw
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id331599838046012\n"
+"par_id3150208\n"
"help.text"
-msgid "Document layout is getting removed."
+msgid "...before a document is saved under a specified name (with <emph>File - Save As</emph>, or with <emph>File - Save</emph> or the <emph>Save</emph> icon, if a document name has not yet been specified)."
msgstr ""
-#. 7FemV
+#. wacHA
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id951599837684882\n"
+"par_id3158215\n"
"help.text"
-msgid "View closed"
-msgstr ""
+msgid "Document has been saved as"
+msgstr "Dokument bol uložený ako"
-#. qGdPR
+#. G2CqP
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id51599837816122\n"
+"par_id3150980\n"
"help.text"
-msgid "Document layout is cleared prior to the document closure."
+msgid "... after a document was saved under a specified name (with <emph>File - Save As</emph>, or with <emph>File - Save</emph> or with the <emph>Save</emph> icon, if a document name has not yet been specified)."
msgstr ""
-#. eovzZ
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3144772\n"
-"help.text"
-msgid "Activate Document"
-msgstr "Aktivovať dokument"
-
-#. w5v7V
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3149442\n"
-"help.text"
-msgid "...after a document is brought to the foreground."
-msgstr "...po prenesení dokumentu na popredie."
-
-#. t2QSQ
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3150888\n"
-"help.text"
-msgid "Deactivate Document"
-msgstr "Dezaktivovať dokument"
-
-#. guqXK
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3154060\n"
-"help.text"
-msgid "...after another document is brought to the foreground."
-msgstr "...po prenesení iného dokumentu na popredie."
-
#. MvDXG
#: 01040000.xhp
msgctxt ""
@@ -4660,329 +4489,131 @@ msgctxt ""
msgid "...after a document is saved with <emph>File - Save</emph> or the <emph>Save</emph> icon, provided that a document name has already been specified."
msgstr "...po uložení dokumentu pomocou <emph>Súbor - Uložiť</emph> alebo ikony <emph>Uložiť</emph>, ak už bol určený názov dokumentu."
-#. 7FEpD
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id161599838976700\n"
-"help.text"
-msgid "Saving of document failed"
-msgstr ""
-
-#. FnDEp
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id391599838979652\n"
-"help.text"
-msgid "Document could not be saved."
-msgstr ""
-
-#. VUPBD
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3153266\n"
-"help.text"
-msgid "Save Document As"
-msgstr "Uložiť dokument ako"
-
-#. qMrvw
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3150208\n"
-"help.text"
-msgid "...before a document is saved under a specified name (with <emph>File - Save As</emph>, or with <emph>File - Save</emph> or the <emph>Save</emph> icon, if a document name has not yet been specified)."
-msgstr ""
-
-#. wacHA
+#. prVye
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id3158215\n"
-"help.text"
-msgid "Document has been saved as"
-msgstr "Dokument bol uložený ako"
-
-#. G2CqP
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3150980\n"
-"help.text"
-msgid "... after a document was saved under a specified name (with <emph>File - Save As</emph>, or with <emph>File - Save</emph> or with the <emph>Save</emph> icon, if a document name has not yet been specified)."
-msgstr ""
-
-#. 7BDQa
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id561599839702598\n"
-"help.text"
-msgid "'Save As' has failed"
-msgstr ""
-
-#. FGnZt
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id951599840240048\n"
-"help.text"
-msgid "Document could not be saved."
-msgstr ""
-
-#. 9PEDi
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id851599839190548\n"
-"help.text"
-msgid "-no UI-"
-msgstr ""
-
-#. FsrLe
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id961599839198859\n"
-"help.text"
-msgid "When the document disk location has changed, for example after a <emph>File - Save As...</emph> action."
-msgstr ""
-
-#. n5TCf
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id501600150804809\n"
-"help.text"
-msgid "Storing or exporting copy of document"
-msgstr ""
-
-#. wP2PH
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id471610080505705\n"
-"help.text"
-msgid "...before a document is saved with <menuitem>File - Save a Copy</menuitem>, <menuitem>File - Export</menuitem>, <menuitem>File - Export as PDF</menuitem> or the <menuitem>Save</menuitem> icons."
-msgstr ""
-
-#. ECboz
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id502600180504809\n"
-"help.text"
-msgid "Document copy has been created"
-msgstr ""
-
-#. gF2u2
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id471601180505705\n"
-"help.text"
-msgid "...after a document is saved with <menuitem>File - Save a Copy</menuitem>, <menuitem>File - Export</menuitem>, <menuitem>File - Export as PDF</menuitem> or the <menuitem>Save</menuitem> icons."
-msgstr ""
-
-#. uAeBw
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id501006180504809\n"
-"help.text"
-msgid "Creating of document copy failed"
-msgstr ""
-
-#. dFCuE
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id471600081505705\n"
-"help.text"
-msgid "Document could not be copied or exported."
-msgstr ""
-
-#. qDSzB
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id501600180504809\n"
-"help.text"
-msgid "Print document"
-msgstr ""
-
-#. kDap2
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id471600180505705\n"
-"help.text"
-msgid "...after the Print dialog is closed, but before the actual print process begins. This event occurs for each copy printed."
-msgstr ""
-
-#. KNASw
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id371600180345993\n"
-"help.text"
-msgid "-no UI-"
-msgstr ""
-
-#. fNkWD
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id851600180346872\n"
-"help.text"
-msgid "...after document security settings have changed."
-msgstr ""
-
-#. 5Cfig
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id921600180238854\n"
-"help.text"
-msgid "'Modified' status was changed"
-msgstr ""
-
-#. vVXPg
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id321600180239944\n"
-"help.text"
-msgid "Modified state of a document has changed."
-msgstr ""
-
-#. po5DD
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id741600180121445\n"
+"par_id3159171\n"
"help.text"
-msgid "Document title changed"
-msgstr ""
+msgid "Document is closing"
+msgstr "Dokument sa zatvára."
-#. KjqSB
+#. CvPgm
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id801600180122852\n"
+"par_id3146868\n"
"help.text"
-msgid "When the document title gets updated."
-msgstr ""
+msgid "...before a document is closed."
+msgstr "...pred zatvorením dokumentu."
-#. AkeoE
+#. kLQvC
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id641600180121445\n"
+"par_id3159097\n"
"help.text"
-msgid "Loaded a sub component"
-msgstr ""
+msgid "Document closed"
+msgstr "Dokument bol zatvorený"
-#. Vq5NQ
+#. DNYcy
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id701600180122852\n"
+"par_id3148606\n"
"help.text"
-msgid "...after a database form has been opened."
-msgstr ""
+msgid "...after a document was closed. Note that the \"Save Document\" event may also occur when the document is saved before closing."
+msgstr "...po zatvorení dokumentu. Poznámka: taktiež môže nastať udalosť \"Uložiť dokument\", ak sa dokument uloží pred zatvorením."
-#. 7zuFb
+#. eovzZ
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id641700180131445\n"
+"par_id3144772\n"
"help.text"
-msgid "Closed a sub component"
-msgstr ""
+msgid "Activate Document"
+msgstr "Aktivovať dokument"
-#. Gzmes
+#. w5v7V
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id701600290122852\n"
+"par_id3149442\n"
"help.text"
-msgid "...after a database form has been closed."
-msgstr ""
+msgid "...after a document is brought to the foreground."
+msgstr "...po prenesení dokumentu na popredie."
-#. KHhEE
+#. t2QSQ
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id421600097736759\n"
+"par_id3150888\n"
"help.text"
-msgid "Printing of form letters started"
-msgstr ""
+msgid "Deactivate Document"
+msgstr "Dezaktivovať dokument"
-#. AAYeB
+#. guqXK
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id411600097854273\n"
+"par_id3154060\n"
"help.text"
-msgid "...before printing form letters using <emph>File - Print</emph> or <emph>Tools - Mail Merge Wizard</emph> menus."
-msgstr ""
+msgid "...after another document is brought to the foreground."
+msgstr "...po prenesení iného dokumentu na popredie."
-#. vDckq
+#. xAAJD
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id41600097737991\n"
+"par_id3152384\n"
"help.text"
-msgid "Printing of form letters finished"
-msgstr ""
+msgid "Print Document"
+msgstr "Tlač dokumentu"
-#. Wp5ff
+#. KHDSZ
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id451600097862282\n"
+"par_id3152873\n"
"help.text"
-msgid "...after printing of form letters using <emph>File - Print</emph> or <emph>Tools - Mail Merge Wizard</emph> menus."
-msgstr ""
+msgid "...after the <emph>Print</emph> dialog is closed, but before the actual print process begins."
+msgstr "...po zatvorení dialógu <emph>Tlač</emph>, ale pred zahájením skutočnej tlače."
-#. RpMCy
+#. 7fBrq
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id641600160655602\n"
+"par_id3159227\n"
"help.text"
-msgid "Printing of form fields started"
-msgstr ""
+msgid "JavaScript run-time error"
+msgstr "Chyba počas behu JavaScriptu"
-#. NDjvr
+#. aHrNm
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id331600160656617\n"
+"par_id3145362\n"
"help.text"
-msgid "...before printing form fields."
-msgstr ""
+msgid "...when a JavaScript run-time error occurs."
+msgstr "...ak nastane chyba počas behu JavaScriptu."
-#. pMuA3
+#. rG4ED
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id801600160725659\n"
+"par_id3154767\n"
"help.text"
-msgid "Printing of form fields finished"
-msgstr ""
+msgid "Print Mail Merge"
+msgstr "Tlačiť hromadnú korešpondenciu"
-#. 7GYKZ
+#. 8dDPL
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id961600160726645\n"
+"par_id3153555\n"
"help.text"
-msgid "...after printing form fields."
-msgstr ""
+msgid "...after the <emph>Print</emph> dialog is closed, but before the actual print process begins. This event occurs for each copy printed."
+msgstr "...po zatvorení dialógu <emph>Tlač</emph>, ale pred zahájením skutočnej tlače. Táto udalosť sa spustí pre každú vytlačenú kópiu."
#. esqcH
#: 01040000.xhp
@@ -4993,32 +4624,32 @@ msgctxt ""
msgid "Change of the page count"
msgstr "Zmena počtu strán"
-#. hAoeW
+#. QhSjh
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
"par_id3154627\n"
"help.text"
-msgid "When the page count changes."
-msgstr ""
+msgid "...when the page count changes."
+msgstr "...ak sa zmení počet strán."
-#. XQXbJ
+#. ShGUB
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id131600158369191\n"
+"par_id3154737\n"
"help.text"
-msgid "Most events relate to documents, except <literal>OnStartApp</literal>, <literal>OnCloseApp</literal>, <literal>OnCreate</literal> and <literal>OnLoadFinished</literal> that occur at application level. <literal>OnSubComponentOpened</literal>, and <literal>OnSubComponentClosed</literal> events are fired by database's forms."
-msgstr ""
+msgid "Message received"
+msgstr "Správa prijatá"
-#. e6gAF
+#. qRVBA
#: 01040000.xhp
msgctxt ""
"01040000.xhp\n"
-"par_id321600158566782\n"
+"par_id3150952\n"
"help.text"
-msgid "Writer documents are triggering those specific events: <literal>OnLayoutFinished</literal>, <literal>OnMailMerge</literal>, <literal>OnMailMergeFinished</literal>, <literal>OnFieldMerge</literal>, <literal>OnFieldMergeFinished</literal> and <literal>OnPageCountChanged</literal>."
-msgstr ""
+msgid "...if a message was received."
+msgstr "...ak bola prijatá správa."
#. 7xyqi
#: 01040000.xhp
@@ -5137,15 +4768,6 @@ msgctxt ""
msgid "Click <emph>OK</emph> to close the dialog."
msgstr "Kliknutím na <emph>OK</emph> zatvoríte dialógové okno."
-#. ruyPz
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id341600162682135\n"
-"help.text"
-msgid "In addition to assigning macros to events, one can <link href=\"text/sbasic/python/python_document_events.xhp\" name=\"Monitor events\">monitor events</link> triggered in %PRODUCTNAME documents."
-msgstr ""
-
#. XcdRk
#: 01050000.xhp
msgctxt ""
@@ -6566,7 +6188,7 @@ msgctxt ""
"par_id3150745\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the maximum number of characters that the user can enter.</ahelp>"
-msgstr "<ahelp hid=\".\">Určuje maximálny počet znakov, ktoré môže používateľ zadať.</ahelp>"
+msgstr "<ahelp hid=\".\">Zadajte maximálny počet znakov, ktoré môže používateľ zadať.</ahelp>"
#. fWJry
#: 01170101.xhp
@@ -7160,7 +6782,7 @@ msgctxt ""
"par_id1134067\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the selection mode that is enabled for this tree control.</ahelp>"
-msgstr "<ahelp hid=\".\">Určuje režim výberu, ktorý je zapnutý pre strom.</ahelp>"
+msgstr "<ahelp hid=\".\">Určuje režim výberu, ktorý je povolený pre tento ovládací prvok stromu.</ahelp>"
#. roCpn
#: 01170101.xhp
@@ -7196,7 +6818,7 @@ msgctxt ""
"par_id3150928\n"
"help.text"
msgid "<ahelp hid=\".\">Select the selection state of the current control.</ahelp>"
-msgstr "<ahelp hid=\".\">Určuje stav ovládacieho prvku.</ahelp>"
+msgstr "<ahelp hid=\".\">Vyberte stav výberu aktuálneho ovládacieho prvku.</ahelp>"
#. Gq4qC
#: 01170101.xhp
@@ -8530,13 +8152,13 @@ msgctxt ""
msgid "sVar = MsgBox(\"Las Vegas\", MB_DEFBUTTON2 + MB_ICONSTOP + MB_ABORTRETRYCANCEL, \"Dialog title\")"
msgstr ""
-#. BaStC
+#. xrb4U
#: 03010103.xhp
msgctxt ""
"03010103.xhp\n"
"tit\n"
"help.text"
-msgid "Print# Statement"
+msgid "Print Statement"
msgstr ""
#. addUg
@@ -8548,32 +8170,23 @@ msgctxt ""
msgid "<bookmark_value>Print statement</bookmark_value> <bookmark_value>Print statement; Tab function</bookmark_value> <bookmark_value>Print statement; Spc function</bookmark_value> <bookmark_value>Spc function; in Print statement</bookmark_value> <bookmark_value>Tab function; in Print statement</bookmark_value>"
msgstr ""
-#. ARzns
+#. 4jt8D
#: 03010103.xhp
msgctxt ""
"03010103.xhp\n"
"hd_id3147230\n"
"help.text"
-msgid "<variable id=\"Print_h1\"><link href=\"text/sbasic/shared/03010103.xhp\" name=\"Print# Statement\">Print# Statement</link></variable>"
+msgid "<link href=\"text/sbasic/shared/03010103.xhp\" name=\"Print Statement\">Print Statement</link>"
msgstr ""
-#. ZDGAu
+#. AGxsw
#: 03010103.xhp
msgctxt ""
"03010103.xhp\n"
"par_id3156281\n"
"help.text"
-msgid "Outputs the specified strings or numeric expressions to the screen or to a sequential file."
-msgstr ""
-
-#. xCJRj
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"par_id461596463969009\n"
-"help.text"
-msgid "Use <link href=\"text/sbasic/shared/03020201.xhp\">Put#</link> statement to write data to a binary or a random file. Use <link href=\"text/sbasic/shared/03020205.xhp\">Write#</link> statement to write data to a sequential text file with delimiting characters."
-msgstr ""
+msgid "Outputs the specified strings or numeric expressions to a dialog or to a file."
+msgstr "Vypíše zadané reťazce alebo číselné výrazy v dialógovom okne alebo do súboru."
#. AhB82
#: 03010103.xhp
@@ -9808,13 +9421,13 @@ msgctxt ""
msgid "<bookmark_value>Close statement</bookmark_value>"
msgstr "<bookmark_value>príkaz Close</bookmark_value>"
-#. GPAtd
+#. 332GE
#: 03020101.xhp
msgctxt ""
"03020101.xhp\n"
"hd_id3157896\n"
"help.text"
-msgid "<variable id=\"Close_h1\"><link href=\"text/sbasic/shared/03020101.xhp\" name=\"Close Statement\">Close Statement</link></variable>"
+msgid "<link href=\"text/sbasic/shared/03020101.xhp\" name=\"Close Statement\">Close Statement</link>"
msgstr ""
#. UxFz9
@@ -9826,31 +9439,67 @@ msgctxt ""
msgid "Closes a specified file that was opened with the Open statement."
msgstr "Zavrie určený súbor, ktorý bol otvorený príkazom Open."
-#. KDbMZ
+#. vh7Bh
#: 03020101.xhp
msgctxt ""
"03020101.xhp\n"
-"par_id971587473488701\n"
+"hd_id3156344\n"
"help.text"
-msgid "<image src=\"media/helpimg/sbasic/Close_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Close Statement diagram</alt></image>"
-msgstr ""
+msgid "Syntax:"
+msgstr "Syntax:"
-#. FEDAa
+#. ECPY4
#: 03020101.xhp
msgctxt ""
"03020101.xhp\n"
"par_id3147265\n"
"help.text"
-msgid "Close [[#]fileNum [, [#]fileNum2 [,...]]]"
+msgid "Close FileNumber As Integer[, FileNumber2 As Integer[,...]]"
+msgstr "Close Číslo_súboru As Integer[, Číslo_súboru_2 As Integer[,...]]"
+
+#. tNdJ2
+#: 03020101.xhp
+msgctxt ""
+"03020101.xhp\n"
+"hd_id3153379\n"
+"help.text"
+msgid "Parameters:"
msgstr ""
-#. gdqMu
+#. TV3Dk
#: 03020101.xhp
msgctxt ""
"03020101.xhp\n"
"par_id3150791\n"
"help.text"
-msgid "<emph>fileNum:</emph> Any integer expression that specifies the number of the data channel that was opened with the <emph>Open</emph> statement."
+msgid "<emph>FileNumber:</emph> Any integer expression that specifies the number of the data channel that was opened with the <emph>Open</emph> statement."
+msgstr "<emph>Číslo_súboru</emph>: Celočíselný výraz určujúci číslo dátového kanálu, ktorý bol otvorený príkazom<emph>Open</emph>."
+
+#. ACdz7
+#: 03020101.xhp
+msgctxt ""
+"03020101.xhp\n"
+"hd_id3153192\n"
+"help.text"
+msgid "Example:"
+msgstr "Príklad:"
+
+#. TE4uc
+#: 03020101.xhp
+msgctxt ""
+"03020101.xhp\n"
+"par_id3153727\n"
+"help.text"
+msgid "Print #iNumber, \"First line of text\""
+msgstr ""
+
+#. uW8gF
+#: 03020101.xhp
+msgctxt ""
+"03020101.xhp\n"
+"par_id3147350\n"
+"help.text"
+msgid "Print #iNumber, \"Another line of text\""
msgstr ""
#. uP5nk
@@ -9979,13 +9628,13 @@ msgctxt ""
msgid "<bookmark_value>Open statement</bookmark_value>"
msgstr "<bookmark_value>Príkaz Let</bookmark_value>"
-#. CRFKQ
+#. cuJif
#: 03020103.xhp
msgctxt ""
"03020103.xhp\n"
"hd_id3150791\n"
"help.text"
-msgid "<variable id=\"Open_h1\"><link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open Statement\">Open Statement</link></variable>"
+msgid "<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open Statement\">Open Statement</link>"
msgstr ""
#. Etqck
@@ -9997,85 +9646,58 @@ msgctxt ""
msgid "Opens a data channel."
msgstr "Otvoriť dátový kanál."
-#. x26NA
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"par_id971587473488701\n"
-"help.text"
-msgid "<image src=\"media/helpimg/sbasic/Open_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Open Statement diagram</alt></image>"
-msgstr ""
-
-#. CRDEh
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"par_id971587473488702\n"
-"help.text"
-msgid "<image src=\"media/helpimg/sbasic/access_fragment.svg\" id=\"img_id4156296484515\"><alt id=\"alt_id15152796484515\">access fragment diagram</alt></image>"
-msgstr ""
-
-#. N3tit
-#: 03020103.xhp
-msgctxt ""
-"03020103.xhp\n"
-"par_id971587473488703\n"
-"help.text"
-msgid "<image src=\"media/helpimg/sbasic/locking_fragment.svg\" id=\"img_id4156296484516\"><alt id=\"alt_id15152796484516\">locking fragment diagram</alt></image>"
-msgstr ""
-
-#. dbM7e
+#. cEADt
#: 03020103.xhp
msgctxt ""
"03020103.xhp\n"
"par_id3155132\n"
"help.text"
-msgid "<emph>pathname: </emph>Path and name of the file to open. If you try to read a file that does not exist (Access = Read), an error message appears. If you try to write to a file that does not exist (Access = Write), a new file is created."
+msgid "<emph>FileName: </emph>Name and path of the file to open. If you try to read a file that does not exist (Access = Read), an error message appears. If you try to write to a file that does not exist (Access = Write), a new file is created."
msgstr ""
-#. XqfP8
+#. om94e
#: 03020103.xhp
msgctxt ""
"03020103.xhp\n"
"par_id3149262\n"
"help.text"
-msgid "<emph>mode:</emph> Keyword that specifies the file mode. Valid values: <literal>Append</literal> (append to sequential file), <literal>Binary</literal> (data can be accessed by bytes using Get and Put), <literal>Input</literal> (opens data channel for reading), <literal>Output</literal> (opens data channel for writing), and <literal>Random</literal> (edits relative files)."
+msgid "<emph>Mode:</emph> Keyword that specifies the file mode. Valid values: Append (append to sequential file), Binary (data can be accessed by bytes using Get and Put), Input (opens data channel for reading), Output (opens data channel for writing), and Random (edits relative files)."
msgstr ""
-#. 3983q
+#. 6uwt6
#: 03020103.xhp
msgctxt ""
"03020103.xhp\n"
"par_id3154014\n"
"help.text"
-msgid "<emph>io:</emph> Keyword that defines the access type. Valid values: <literal>Read</literal> (read-only), <literal>Write</literal> (write-only), <literal>Read Write</literal> (both)."
+msgid "<emph>IOMode:</emph> Keyword that defines the access type. Valid values: Read (read-only), Write (write-only), Read Write (both)."
msgstr ""
-#. kzzkr
+#. hHLFb
#: 03020103.xhp
msgctxt ""
"03020103.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<emph>locking:</emph> Keyword that defines the security status of a file after opening. Valid values: <literal>Shared</literal> (file may be opened by other applications), <literal>Lock Read</literal> (file is protected against reading), <literal>Lock Write</literal> (file is protected against writing), <literal>Lock Read Write</literal> (denies file access)."
+msgid "<emph>Protected:</emph> Keyword that defines the security status of a file after opening. Valid values: Shared (file may be opened by other applications), Lock Read (file is protected against reading), Lock Write (file is protected against writing), Lock Read Write (denies file access)."
msgstr ""
-#. D2D4q
+#. FroB8
#: 03020103.xhp
msgctxt ""
"03020103.xhp\n"
"par_id3153190\n"
"help.text"
-msgid "<emph>filenum:</emph> Any integer expression from 0 to 511 to indicate the number of a free data channel. You can then pass commands through the data channel to access the file. The file number must be determined by the FreeFile function immediately before the Open statement."
+msgid "<emph>FileNumber:</emph> Any integer expression from 0 to 511 to indicate the number of a free data channel. You can then pass commands through the data channel to access the file. The file number must be determined by the FreeFile function immediately before the Open statement."
msgstr ""
-#. LgCLi
+#. 3wp3F
#: 03020103.xhp
msgctxt ""
"03020103.xhp\n"
"par_id3151115\n"
"help.text"
-msgid "<emph>recLen:</emph> For <literal>Random</literal> access files, set the length of the records."
+msgid "<emph>DatasetLength:</emph> For random access files, set the length of the records."
msgstr ""
#. mvgxB
@@ -10123,13 +9745,13 @@ msgctxt ""
msgid "<bookmark_value>Reset statement</bookmark_value>"
msgstr "<bookmark_value>Príkaz Reset</bookmark_value>"
-#. aCi6f
+#. drRvG
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
"hd_id3154141\n"
"help.text"
-msgid "<variable id=\"Reset_h1\"><link href=\"text/sbasic/shared/03020104.xhp\">Reset Statement</link></variable>"
+msgid "<link href=\"text/sbasic/shared/03020104.xhp\">Reset Statement</link>"
msgstr ""
#. iLCKn
@@ -10141,14 +9763,23 @@ msgctxt ""
msgid "Closes all open files and writes the contents of all file buffers to the harddisk."
msgstr "Zavrie všetky otvorené súbory a zapíše obsah všetkých súborových bufferov na disk."
-#. jEQ3F
+#. nTNj2
#: 03020104.xhp
msgctxt ""
"03020104.xhp\n"
-"par_id971587473488701\n"
+"hd_id3154124\n"
"help.text"
-msgid "<image src=\"media/helpimg/sbasic/Reset_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Reset Statement diagram</alt></image>"
-msgstr ""
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#. TufHR
+#: 03020104.xhp
+msgctxt ""
+"03020104.xhp\n"
+"hd_id3161831\n"
+"help.text"
+msgid "Example:"
+msgstr "Príklad:"
#. BXAjN
#: 03020104.xhp
@@ -10204,13 +9835,13 @@ msgctxt ""
msgid "<bookmark_value>Get statement</bookmark_value>"
msgstr "<bookmark_value>Príkaz Let</bookmark_value>"
-#. BpFbE
+#. Voqjr
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"hd_id3154927\n"
"help.text"
-msgid "<variable id=\"Get_h1\"><link href=\"text/sbasic/shared/03020201.xhp\">Get Statement</link></variable>"
+msgid "<link href=\"text/sbasic/shared/03020201.xhp\">Get Statement</link>"
msgstr ""
#. cpLtG
@@ -10231,69 +9862,87 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03020204.xhp\" name=\"PUT\"><item type=\"literal\">PUT</item></link> Statement"
msgstr ""
-#. UqKMH
+#. CJAMj
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
-"par_id971587473488701\n"
+"hd_id3150358\n"
"help.text"
-msgid "<image src=\"media/helpimg/sbasic/Get_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Get Statement diagram</alt></image>"
-msgstr ""
+msgid "Syntax:"
+msgstr "Syntax:"
-#. xBhKA
+#. wcrTG
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150792\n"
"help.text"
-msgid "Get [#]fileNum, [recordNum|filePos], variable"
-msgstr ""
+msgid "Get [#] FileNumber As Integer, [Position], Variable"
+msgstr "Get [#] FileNumber As Integer, [Position], Variable"
+
+#. pdTMQ
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"hd_id3154138\n"
+"help.text"
+msgid "Parameters:"
+msgstr "Paremetre:"
-#. UM9CG
+#. qDu7V
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3150448\n"
"help.text"
-msgid "<emph>fileNum:</emph> Any integer expression that determines the file number."
+msgid "<emph>FileNumber:</emph> Any integer expression that determines the file number."
msgstr ""
-#. khxG7
+#. rQHwc
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3154684\n"
"help.text"
-msgid "<emph>recordNum:</emph> For files opened in Random mode, <emph>recordNum</emph> is the number of the record that you want to read."
+msgid "<emph>Position:</emph> For files opened in Random mode, <emph>Position</emph> is the number of the record that you want to read."
msgstr ""
-#. 3w9MJ
+#. dtVKC
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3153768\n"
"help.text"
-msgid "For files opened in Binary mode, <emph>filePos</emph> is the byte position in the file where the reading starts."
+msgid "For files opened in Binary mode, <emph>Position</emph> is the byte position in the file where the reading starts."
msgstr ""
-#. NvcjF
+#. HcCrg
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3147319\n"
"help.text"
-msgid "If <emph>recordNum</emph> and <emph>filePos</emph> are omitted, the current position or the current data record of the file is used."
+msgid "If <emph>Position</emph> is omitted, the current position or the current data record of the file is used."
msgstr ""
-#. GZcaW
+#. CPBoN
#: 03020201.xhp
msgctxt ""
"03020201.xhp\n"
"par_id3149484\n"
"help.text"
-msgid "<emph>variable:</emph> Name of the variable to be read. With the exception of object variables, you can use any variable type."
+msgid "Variable: Name of the variable to be read. With the exception of object variables, you can use any variable type."
msgstr ""
+#. NikE3
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"hd_id3153144\n"
+"help.text"
+msgid "Example:"
+msgstr "Príklad:"
+
#. PQRf6
#: 03020201.xhp
msgctxt ""
@@ -10393,40 +10042,49 @@ msgctxt ""
msgid "Reads data from an open sequential file."
msgstr "Načíta dáta z otvoreného sekvenčného súboru."
-#. mNkEN
+#. 7DMCx
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
-"par_id971587473488701\n"
+"hd_id3125863\n"
"help.text"
-msgid "<image src=\"media/helpimg/sbasic/Input_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Input Statement diagram</alt></image>"
-msgstr ""
+msgid "Syntax:"
+msgstr "Syntax:"
-#. NqnvX
+#. eEsn3
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"par_id3150440\n"
"help.text"
-msgid "Input #fileNum {,|;} var1 [, var2 [, ...]]"
-msgstr ""
+msgid "Input #FileNumber As Integer; var1[, var2[, var3[,...]]]"
+msgstr "Input #FileNumber As Integer; var1[, var2[, var3[,...]]]"
+
+#. 4bQRN
+#: 03020202.xhp
+msgctxt ""
+"03020202.xhp\n"
+"hd_id3146121\n"
+"help.text"
+msgid "Parameters:"
+msgstr "Paremetre:"
-#. EUrQA
+#. emXUX
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"par_id3145749\n"
"help.text"
-msgid "<emph>fileNum</emph>: Number of the file that contains the data that you want to read. The file must be opened with the Open statement using the key word INPUT."
-msgstr ""
+msgid "<emph>FileNumber:</emph> Number of the file that contains the data that you want to read. The file must be opened with the Open statement using the key word INPUT."
+msgstr "<emph>ČísloSúboru: </emph> Číslo súboru údajmi, ktoré chcete načítať. Súbor musí byť vopred otvorený príkazom Open s kľúčovým slovom INPUT."
-#. kJyKM
+#. 75Dav
#: 03020202.xhp
msgctxt ""
"03020202.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<emph>var</emph>: A numeric or string variable that you assign the values read from the opened file to."
+msgid "<emph>var:</emph> A numeric or string variable that you assign the values read from the opened file to."
msgstr ""
#. 23Pzt
@@ -10465,6 +10123,15 @@ msgctxt ""
msgid "If the end of the file is reached while reading a data element, an error occurs and the process is aborted."
msgstr ""
+#. 3xUNX
+#: 03020202.xhp
+msgctxt ""
+"03020202.xhp\n"
+"hd_id3152578\n"
+"help.text"
+msgid "Example:"
+msgstr "Príklad:"
+
#. xqNBb
#: 03020202.xhp
msgctxt ""
@@ -10483,13 +10150,13 @@ msgctxt ""
msgid "' Read data file using Input"
msgstr "' Prečíta dátový súbor použitím Input"
-#. ASL6h
+#. JiWcR
#: 03020203.xhp
msgctxt ""
"03020203.xhp\n"
"tit\n"
"help.text"
-msgid "Line Input# Statement"
+msgid "Line Input # Statement"
msgstr ""
#. CCEuD
@@ -10501,50 +10168,68 @@ msgctxt ""
msgid "<bookmark_value>Line Input statement</bookmark_value>"
msgstr "<bookmark_value>Príkaz Line Input</bookmark_value>"
-#. DBAiv
+#. rG2am
#: 03020203.xhp
msgctxt ""
"03020203.xhp\n"
"hd_id3153361\n"
"help.text"
-msgid "<variable id=\"LineInput_h1\"><link href=\"text/sbasic/shared/03020203.xhp\" name=\"Line Input# Statement\">Line Input# Statement</link></variable>"
+msgid "<link href=\"text/sbasic/shared/03020203.xhp\" name=\"Line Input # Statement\">Line Input # Statement</link>"
msgstr ""
-#. 5FZ8D
+#. QbTVA
#: 03020203.xhp
msgctxt ""
"03020203.xhp\n"
"par_id3156280\n"
"help.text"
-msgid "Reads a line from a sequential file into a variable."
-msgstr ""
+msgid "Reads strings from a sequential file into a variable."
+msgstr "Načíta reťazce zo sekvenčného súboru do premennej."
-#. enCkE
+#. NSBkr
#: 03020203.xhp
msgctxt ""
"03020203.xhp\n"
-"par_id971587473488701\n"
+"hd_id3150447\n"
"help.text"
-msgid "<image src=\"media/helpimg/sbasic/Line-Input_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Line Input Statement diagram</alt></image>"
-msgstr ""
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#. jCyHM
+#: 03020203.xhp
+msgctxt ""
+"03020203.xhp\n"
+"par_id3147229\n"
+"help.text"
+msgid "Line Input #FileNumber As Integer, Var As String"
+msgstr "Line Input #FileNumber As Integer, Var As String"
-#. wrpF7
+#. h3tyw
+#: 03020203.xhp
+msgctxt ""
+"03020203.xhp\n"
+"hd_id3145173\n"
+"help.text"
+msgid "Parameters:"
+msgstr "Paremetre:"
+
+#. ARTNC
#: 03020203.xhp
msgctxt ""
"03020203.xhp\n"
"par_id3161832\n"
"help.text"
-msgid "<emph>fileNum</emph>: Number of the file that contains the data that you want to read. The file must have been opened in advance with the Open statement using the key word INPUT."
-msgstr ""
+msgid "<emph>FileNumber: </emph>Number of the file that contains the data that you want to read. The file must have been opened in advance with the Open statement using the key word INPUT."
+msgstr "<emph>ČísloSúboru: </emph> Číslo súboru údajmi, ktoré chcete načítať. Súbor musí byť vopred otvorený príkazom Open s kľúčovým slovom INPUT."
-#. qAR2M
+#. KUGEc
#: 03020203.xhp
msgctxt ""
"03020203.xhp\n"
"par_id3151119\n"
"help.text"
-msgid "<emph>variable</emph>: The name of the variable that stores the result."
-msgstr ""
+msgid "<emph>var:</emph> The name of the variable that stores the result."
+msgstr "<emph>var:</emph> Názov premennej, ktorá bude obsahovať výsledok."
#. foxtA
#: 03020203.xhp
@@ -10555,13 +10240,40 @@ msgctxt ""
msgid "With the <emph>Line Input#</emph> statement, you can read strings from an open file into a variable. String variables are read line-by-line up to the first carriage return (Asc=13) or linefeed (Asc=10). Line end marks are not included in the resulting string."
msgstr "Príkazom <emph>Line Input#</emph> je možné načítať reťazce z otvoreného súboru do premennej. Reťazcové premenné sa načítajú riadok po riadku, až do prvého znaku návrat vozíka (Asc = 13) alebo nový riadok (Asc = 10). Znaky konca riadku nie sú zahrnuté vo výslednom reťazci."
-#. fhFEa
+#. NjeFe
+#: 03020203.xhp
+msgctxt ""
+"03020203.xhp\n"
+"hd_id3163711\n"
+"help.text"
+msgid "Example:"
+msgstr "Príklad:"
+
+#. Uxyyc
+#: 03020203.xhp
+msgctxt ""
+"03020203.xhp\n"
+"par_id3147124\n"
+"help.text"
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr "Print #iNumber, \"Toto je riadok textu.\""
+
+#. iFP3f
+#: 03020203.xhp
+msgctxt ""
+"03020203.xhp\n"
+"par_id3153415\n"
+"help.text"
+msgid "Print #iNumber, \"This is another line of text\""
+msgstr "Print #iNumber, \"Toto je ďalší riadok textu.\""
+
+#. NKDq4
#: 03020204.xhp
msgctxt ""
"03020204.xhp\n"
"tit\n"
"help.text"
-msgid "Put# Statement"
+msgid "Put Statement"
msgstr ""
#. psWQE
@@ -10573,13 +10285,13 @@ msgctxt ""
msgid "<bookmark_value>Put statement</bookmark_value>"
msgstr "<bookmark_value>Príkaz Let</bookmark_value>"
-#. bD34J
+#. KHtmv
#: 03020204.xhp
msgctxt ""
"03020204.xhp\n"
"hd_id3150360\n"
"help.text"
-msgid "<variable id=\"Put_h1\"><link href=\"text/sbasic/shared/03020204.xhp\" name=\"Put Statement\">Put# Statement</link></variable>"
+msgid "<link href=\"text/sbasic/shared/03020204.xhp\" name=\"Put Statement\">Put Statement</link>"
msgstr ""
#. e8rUp
@@ -10591,49 +10303,58 @@ msgctxt ""
msgid "Writes a record to a relative file or a sequence of bytes to a binary file."
msgstr "Zapíše záznam do relatívneho súboru alebo sekvencie do bajtov binárneho súboru."
-#. EEnDK
+#. 7iAkD
#: 03020204.xhp
msgctxt ""
"03020204.xhp\n"
-"par_id461596463969009\n"
+"par_id3156281\n"
"help.text"
-msgid "Use <link href=\"text/sbasic/shared/03010103.xhp\">Print#</link> statement to print data to a sequential text file. Use <link href=\"text/sbasic/shared/03020205.xhp\">Write#</link> statement to write data to a sequential text file with delimiting characters."
+msgid "See also: <link href=\"text/sbasic/shared/03020201.xhp\" name=\"Get\"><item type=\"literal\">Get</item></link> statement"
msgstr ""
-#. 9HgEG
+#. 9BMWu
#: 03020204.xhp
msgctxt ""
"03020204.xhp\n"
-"par_id971587473488701\n"
+"hd_id3125863\n"
"help.text"
-msgid "<image src=\"media/helpimg/sbasic/Put_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Put Statement diagram</alt></image>"
-msgstr ""
+msgid "Syntax:"
+msgstr "Syntax:"
-#. RBpeh
+#. peCza
#: 03020204.xhp
msgctxt ""
"03020204.xhp\n"
"par_id3155132\n"
"help.text"
-msgid "Put [#]fileNum, [recordNum|filePos], variable"
-msgstr ""
+msgid "Put [#] FileNumber As Integer, [position], Variable"
+msgstr "Put [#] FileNumber As Integer, [position], Variable"
+
+#. CJNhF
+#: 03020204.xhp
+msgctxt ""
+"03020204.xhp\n"
+"hd_id3153190\n"
+"help.text"
+msgid "Parameters:"
+msgstr "Paremetre:"
-#. bSFd2
+#. AgaBs
#: 03020204.xhp
msgctxt ""
"03020204.xhp\n"
"par_id3146120\n"
"help.text"
-msgid "<emph>fileNum</emph>: Any integer expression that defines the file that you want to write to."
+msgid "<emph>FileNumber:</emph> Any integer expression that defines the file that you want to write to."
msgstr ""
-#. AiZUD
+#. Jf6hw
#: 03020204.xhp
msgctxt ""
"03020204.xhp\n"
"par_id3155411\n"
"help.text"
-msgid "<emph>recordNum, filePos</emph>: For relative files (random access files), the number of the record that you want to write."
+msgid "<emph>Position: </emph>For relative files (random access files), the number of the record that you want to write."
msgstr ""
#. dUyzK
@@ -10645,13 +10366,13 @@ msgctxt ""
msgid "For binary files (binary access), the position of the byte in the file where you want to start writing."
msgstr "Pre binárne súbory (binárny prístup) určuje pozíciu bajtu, kde má začať zapisovať."
-#. iGF9L
+#. pfzL3
#: 03020204.xhp
msgctxt ""
"03020204.xhp\n"
"par_id3153729\n"
"help.text"
-msgid "<emph>variable</emph>: Name of the variable that you want to write to the file."
+msgid "<emph>Variable:</emph> Name of the variable that you want to write to the file."
msgstr ""
#. yyf95
@@ -10672,6 +10393,78 @@ msgctxt ""
msgid "Note for binary files: The contents of the variables are written to the specified position, and the file pointer is inserted directly after the last byte. No space is left between the records."
msgstr ""
+#. RbBPk
+#: 03020204.xhp
+msgctxt ""
+"03020204.xhp\n"
+"hd_id3154491\n"
+"help.text"
+msgid "Example:"
+msgstr "Príklad:"
+
+#. zJjTB
+#: 03020204.xhp
+msgctxt ""
+"03020204.xhp\n"
+"par_id3154729\n"
+"help.text"
+msgid "Dim sText As Variant ' Must be a variant type"
+msgstr "Dim sText As Variant ' Musí byť variant"
+
+#. 3rrxn
+#: 03020204.xhp
+msgctxt ""
+"03020204.xhp\n"
+"par_id3156278\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position To start writing"
+msgstr ""
+
+#. 3KrYs
+#: 03020204.xhp
+msgctxt ""
+"03020204.xhp\n"
+"par_id3153711\n"
+"help.text"
+msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#. DRAfy
+#: 03020204.xhp
+msgctxt ""
+"03020204.xhp\n"
+"par_id3155446\n"
+"help.text"
+msgid "Put #iNumber,, \"This is the second line of text\""
+msgstr "Print #iNumber, \"Toto je riadok textu.\""
+
+#. fnJbV
+#: 03020204.xhp
+msgctxt ""
+"03020204.xhp\n"
+"par_id3154255\n"
+"help.text"
+msgid "Put #iNumber,, \"This is the third line of text\""
+msgstr "Print #iNumber, \"Toto je riadok textu.\""
+
+#. 4GkxW
+#: 03020204.xhp
+msgctxt ""
+"03020204.xhp\n"
+"par_id3150940\n"
+"help.text"
+msgid "Put #iNumber,,\"This is new text\""
+msgstr "Print #iNumber, \"Toto je riadok textu.\""
+
+#. 7LFxv
+#: 03020204.xhp
+msgctxt ""
+"03020204.xhp\n"
+"par_id3159102\n"
+"help.text"
+msgid "Put #iNumber,20,\"This is the text in record 20\""
+msgstr "Put #iNumber,20,\"Toto je text v zázname 20\""
+
#. BTr9L
#: 03020205.xhp
msgctxt ""
@@ -10690,58 +10483,67 @@ msgctxt ""
msgid "<bookmark_value>Write statement</bookmark_value>"
msgstr "<bookmark_value>Príkaz Wait </bookmark_value>"
-#. xn3Ji
+#. DBBvs
#: 03020205.xhp
msgctxt ""
"03020205.xhp\n"
"hd_id3147229\n"
"help.text"
-msgid "<variable id=\"Write_h1\"><link href=\"text/sbasic/shared/03020205.xhp\" name=\"Write# Statement\">Write# Statement</link></variable>"
+msgid "<link href=\"text/sbasic/shared/03020205.xhp\" name=\"Write Statement\">Write Statement</link>"
msgstr ""
-#. G4X6k
+#. CMSkU
#: 03020205.xhp
msgctxt ""
"03020205.xhp\n"
"par_id3154685\n"
"help.text"
-msgid "Writes data to a sequential text file with delimiting characters."
-msgstr ""
+msgid "Writes data to a sequential file."
+msgstr "Zapíše dáta do sekvenčného súboru."
-#. fB8hV
+#. eoeBE
#: 03020205.xhp
msgctxt ""
"03020205.xhp\n"
-"par_id461596463969009\n"
+"hd_id3150449\n"
"help.text"
-msgid "Use <link href=\"text/sbasic/shared/03010103.xhp\">Print#</link> statement to print data to a sequential text file. Use <link href=\"text/sbasic/shared/03020201.xhp\">Put#</link> statement to write data to a binary or a random file."
-msgstr ""
+msgid "Syntax:"
+msgstr "Syntax:"
-#. WxpRu
+#. jxyZn
#: 03020205.xhp
msgctxt ""
"03020205.xhp\n"
-"par_id971587473488701\n"
+"par_id3145785\n"
"help.text"
-msgid "<image src=\"media/helpimg/sbasic/Write_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Write Statement diagram</alt></image>"
+msgid "Write [#FileName], [Expressionlist]"
msgstr ""
-#. xEMDC
+#. ceFn6
+#: 03020205.xhp
+msgctxt ""
+"03020205.xhp\n"
+"hd_id3151116\n"
+"help.text"
+msgid "Parameters:"
+msgstr "Paremetre:"
+
+#. RsZEE
#: 03020205.xhp
msgctxt ""
"03020205.xhp\n"
"par_id3153728\n"
"help.text"
-msgid "<emph>fileNum</emph>: Any numeric expression that contains the file number that was set by the Open statement for the respective file."
-msgstr ""
+msgid "<emph>FileName:</emph> Any numeric expression that contains the file number that was set by the Open statement for the respective file."
+msgstr "<emph>FileName:</emph> Ľubovoľný číselný výraz, ktorý obsahuje číslo súboru nastavené príkazom Open pre daný súbor."
-#. TwHF7
+#. aCyvx
#: 03020205.xhp
msgctxt ""
"03020205.xhp\n"
"par_id3146120\n"
"help.text"
-msgid "<emph>expression</emph> list: Variables or expressions that you want to enter in a file, separated by commas."
+msgid "<emph>Expressionlist:</emph> Variables or expressions that you want to enter in a file, separated by commas."
msgstr ""
#. RERPn
@@ -10789,6 +10591,15 @@ msgctxt ""
msgid "Numbers with decimal delimiters are converted according to the locale settings."
msgstr ""
+#. Xhb5c
+#: 03020205.xhp
+msgctxt ""
+"03020205.xhp\n"
+"hd_id3151073\n"
+"help.text"
+msgid "Example:"
+msgstr "Príklad:"
+
#. ejANh
#: 03020301.xhp
msgctxt ""
@@ -11311,13 +11122,13 @@ msgctxt ""
msgid "<emph>FileNumber:</emph> The data channel number used in the Open statement."
msgstr "<emph>FileNumber:</emph>Celočíselný výraz určujúci číslo otvoreného súboru."
-#. MbdMB
+#. ybPDP
#: 03020305.xhp
msgctxt ""
"03020305.xhp\n"
"tit\n"
"help.text"
-msgid "Seek# Statement"
+msgid "Seek Statement"
msgstr ""
#. vLW2K
@@ -11329,13 +11140,13 @@ msgctxt ""
msgid "<bookmark_value>Seek statement</bookmark_value>"
msgstr "<bookmark_value>Príkaz Beep</bookmark_value>"
-#. 9HcVZ
+#. PpSRU
#: 03020305.xhp
msgctxt ""
"03020305.xhp\n"
"hd_id3159413\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek# Statement\">Seek Statement</link>"
+msgid "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek Statement\">Seek Statement</link>"
msgstr ""
#. RBPKW
@@ -11365,58 +11176,58 @@ msgctxt ""
msgid "For all other files, the Seek statement sets the byte position at which the next operation is to occur."
msgstr "U všetkých ostatných súborov táto funkcia vráti umiestnenie bajtu, v ktorom má dôjsť k ďalšej operácii."
-#. sbuDC
+#. wYVfB
#: 03020305.xhp
msgctxt ""
"03020305.xhp\n"
-"par_id971587473488701\n"
+"par_id3156280\n"
"help.text"
-msgid "<image src=\"media/helpimg/sbasic/Seek_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Seek Statement diagram</alt></image>"
-msgstr ""
+msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek\">Seek</link>."
+msgstr "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek\">Seek</link>."
-#. PjcAp
+#. yVEYG
#: 03020305.xhp
msgctxt ""
"03020305.xhp\n"
-"par_id3145273\n"
+"hd_id3145785\n"
"help.text"
-msgid "Seek [#]filePos, {filePos|recordNum}"
-msgstr ""
+msgid "Syntax:"
+msgstr "Syntax:"
-#. vwzuK
+#. 7M3ws
#: 03020305.xhp
msgctxt ""
"03020305.xhp\n"
-"hd_id3153379\n"
+"par_id3145273\n"
"help.text"
-msgid "Parameters:"
+msgid "Seek[#FileNumber], Position (As Long)"
msgstr ""
-#. x86KJ
+#. nRRME
#: 03020305.xhp
msgctxt ""
"03020305.xhp\n"
-"par_id3153952\n"
+"hd_id3154321\n"
"help.text"
-msgid "<emph>fileNum</emph>: The data channel number used in the Open statement."
-msgstr ""
+msgid "Parameters:"
+msgstr "Paremetre:"
-#. FrYvd
+#. ySD8U
#: 03020305.xhp
msgctxt ""
"03020305.xhp\n"
-"par_id3145366\n"
+"par_id3153952\n"
"help.text"
-msgid "<emph>filePos, recordNum</emph>: Position for the next writing or reading. Position can be a number between 1 and 2,147,483,647. According to the file type, the position indicates the number of the record (files in the Random mode) or the byte position (files in the Binary, Output, Append or Input mode). The first byte in a file is position 1, the second byte is position 2, and so on."
-msgstr ""
+msgid "<emph>FileNumber: </emph>The data channel number used in the Open statement."
+msgstr "<emph>FileNumber:</emph>Celočíselný výraz určujúci číslo otvoreného súboru."
-#. 5LDFE
+#. Jf97B
#: 03020305.xhp
msgctxt ""
"03020305.xhp\n"
-"par_id491596468328575\n"
+"par_id3145366\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek\">Seek</link> function"
+msgid "<emph>Position: </emph>Position for the next writing or reading. Position can be a number between 1 and 2,147,483,647. According to the file type, the position indicates the number of the record (files in the Random mode) or the byte position (files in the Binary, Output, Append or Input mode). The first byte in a file is position 1, the second byte is position 2, and so on."
msgstr ""
#. Nwouh
@@ -16918,41 +16729,86 @@ msgctxt ""
msgid "The following functions and statements set or return the system date and time."
msgstr "Nasledujúce funkcie a príkazy nastavujú alebo vracajú systémový dátum a čas."
-#. wJjQV
+#. YWfEf
#: 03030301.xhp
msgctxt ""
"03030301.xhp\n"
"tit\n"
"help.text"
-msgid "Date Function"
+msgid "Date Statement"
msgstr ""
-#. HEEFx
+#. xpFBx
#: 03030301.xhp
msgctxt ""
"03030301.xhp\n"
"bm_id3156027\n"
"help.text"
-msgid "<bookmark_value>Date function</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>Date statement</bookmark_value>"
+msgstr "<bookmark_value>Príkaz Date</bookmark_value>"
-#. u9AkG
+#. vDWSN
#: 03030301.xhp
msgctxt ""
"03030301.xhp\n"
"hd_id3156027\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030301.xhp\" name=\"Date Function\">Date Function</link>"
+msgid "<link href=\"text/sbasic/shared/03030301.xhp\" name=\"Date Statement\">Date Statement</link>"
msgstr ""
-#. AaA3G
+#. GMwEL
#: 03030301.xhp
msgctxt ""
"03030301.xhp\n"
"par_id3147291\n"
"help.text"
-msgid "Returns the current system date as a string, or date variant."
-msgstr ""
+msgid "Returns the current system date as a string, or resets the date. The date format depends on your local system settings."
+msgstr "Vracia súčasný systémový dátum ako reťazec alebo nastaví dátum. Formát dátumu závisí na lokálnych nastavenia tvojho systému."
+
+#. CUY3q
+#: 03030301.xhp
+msgctxt ""
+"03030301.xhp\n"
+"hd_id3148686\n"
+"help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#. QoCJW
+#: 03030301.xhp
+msgctxt ""
+"03030301.xhp\n"
+"par_id3146794\n"
+"help.text"
+msgid "Date ; Date = Text As String"
+msgstr "Date ; Date = text ako reťazec"
+
+#. 8QFeW
+#: 03030301.xhp
+msgctxt ""
+"03030301.xhp\n"
+"hd_id3154347\n"
+"help.text"
+msgid "Parameters:"
+msgstr "Paremetre:"
+
+#. 57eNx
+#: 03030301.xhp
+msgctxt ""
+"03030301.xhp\n"
+"par_id3145069\n"
+"help.text"
+msgid "<emph>Text:</emph> Only required in order to reset the system date. In this case, the string expression must correspond to the date format defined in your local settings."
+msgstr "<emph>Text:</emph> Vyžadovaný iba v prípade nastavenia systémového dátumu. V takom prípade musí reťazec odpovedať formátu dátumu, definovanému v tvojich lokálnych nastaveniach."
+
+#. waEYM
+#: 03030301.xhp
+msgctxt ""
+"03030301.xhp\n"
+"hd_id3150793\n"
+"help.text"
+msgid "Example:"
+msgstr "Príklad:"
#. BUc3C
#: 03030301.xhp
@@ -16963,31 +16819,31 @@ msgctxt ""
msgid "MsgBox \"The date is \" & Date"
msgstr "msgbox \"Dátum je \" & Date"
-#. W99bB
+#. CCirC
#: 03030302.xhp
msgctxt ""
"03030302.xhp\n"
"tit\n"
"help.text"
-msgid "Time Function"
+msgid "Time Statement"
msgstr ""
-#. peCLU
+#. Ypbnk
#: 03030302.xhp
msgctxt ""
"03030302.xhp\n"
"bm_id3145090\n"
"help.text"
-msgid "<bookmark_value>Time function</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>Time statement</bookmark_value>"
+msgstr "<bookmark_value>Príkaz Time</bookmark_value>"
-#. tBoRS
+#. xLpG8
#: 03030302.xhp
msgctxt ""
"03030302.xhp\n"
"hd_id3145090\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030302.xhp\" name=\"Time Function\">Time Function</link>"
+msgid "<link href=\"text/sbasic/shared/03030302.xhp\">Time Statement</link>"
msgstr ""
#. FHKSk
@@ -16999,6 +16855,42 @@ msgctxt ""
msgid "This function returns the current system time as a string in the format \"HH:MM:SS\"."
msgstr "Táto funkcia vracia súčasný systémový čas ako reťazec vo formáte \"HH:MM:SS\"."
+#. G29nS
+#: 03030302.xhp
+msgctxt ""
+"03030302.xhp\n"
+"hd_id3154346\n"
+"help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#. rG5UZ
+#: 03030302.xhp
+msgctxt ""
+"03030302.xhp\n"
+"hd_id3150792\n"
+"help.text"
+msgid "Parameters:"
+msgstr "Paremetre:"
+
+#. 6LxaE
+#: 03030302.xhp
+msgctxt ""
+"03030302.xhp\n"
+"par_id3149656\n"
+"help.text"
+msgid "<emph>Text:</emph> Any string expression that specifies the new time in the format \"HH:MM:SS\"."
+msgstr "<emph>Text:</emph> Ľubovoľný reťazec určujúci nový čas vo formáte \"HH:MM:SS\"."
+
+#. psu4B
+#: 03030302.xhp
+msgctxt ""
+"03030302.xhp\n"
+"hd_id3145173\n"
+"help.text"
+msgid "Example:"
+msgstr "Príklad:"
+
#. Aguz5
#: 03030302.xhp
msgctxt ""
@@ -17926,13 +17818,13 @@ msgctxt ""
msgid "<image src=\"media/helpimg/sbasic/On-Error_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">On Error Statement diagram</alt></image>"
msgstr ""
-#. CKJJr
+#. 7FXhq
#: 03050500.xhp
msgctxt ""
"03050500.xhp\n"
"par_id3145173\n"
"help.text"
-msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}"
+msgid "On {[Local] Error GoTo Labelname | GoTo 0 | Resume Next}"
msgstr ""
#. EBAKU
@@ -22183,86 +22075,77 @@ msgctxt ""
msgid "If...Then...Else Statement"
msgstr ""
-#. 2tiGA
+#. C5KRD
#: 03090101.xhp
msgctxt ""
"03090101.xhp\n"
"bm_id3154422\n"
"help.text"
-msgid "<bookmark_value>If statement</bookmark_value> <bookmark_value>ElseIf; If statement</bookmark_value> <bookmark_value>Else If;If statement</bookmark_value> <bookmark_value>Else;If statement</bookmark_value> <bookmark_value>Else;If statement</bookmark_value> <bookmark_value>End If;If statement</bookmark_value> <bookmark_value>EndIf;If statement</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>If statement</bookmark_value>"
+msgstr "<bookmark_value>príkaz If</bookmark_value>"
-#. iGHxs
+#. NPPep
#: 03090101.xhp
msgctxt ""
"03090101.xhp\n"
-"hd_id81592320644826\n"
+"hd_id3154422\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090101.xhp\" name=\"If...Then...Else Statement\">If...Then...Else Statement</link>"
msgstr ""
-#. aPd9F
+#. pGNqu
#: 03090101.xhp
msgctxt ""
"03090101.xhp\n"
"par_id3155555\n"
"help.text"
-msgid "Defines one or more statement blocks that you only want to execute if a given condition or expression is <literal>True</literal>."
-msgstr ""
-
-#. udXzN
-#: 03090101.xhp
-msgctxt ""
-"03090101.xhp\n"
-"par_id311592320434736\n"
-"help.text"
-msgid "<image src=\"media/helpimg/sbasic/If_statement.svg\" id=\"img_id601592320434736\"><alt id=\"alt_id551592320434736\">If...EndIf statement</alt></image>"
-msgstr ""
+msgid "Defines one or more statement blocks that you only want to execute if a given condition is True."
+msgstr "Určuje jeden alebo viac blokov príkazov, ktoré chcete spustiť len ak je daná podmienka True."
-#. cWAi6
+#. 9w2wm
#: 03090101.xhp
msgctxt ""
"03090101.xhp\n"
-"par_id591592320435808\n"
+"hd_id3146957\n"
"help.text"
-msgid "<image src=\"media/helpimg/sbasic/ElseIf_fragment.svg\" id=\"img_id691592320435808\"><alt id=\"alt_id341592320435808\">ElseIf fragment</alt></image>"
-msgstr ""
+msgid "Syntax:"
+msgstr "Syntax:"
-#. 9oiMB
+#. yeLUr
#: 03090101.xhp
msgctxt ""
"03090101.xhp\n"
-"par_id221592320436632\n"
+"par_id3153126\n"
"help.text"
-msgid "<image src=\"media/helpimg/sbasic/Else_fragment.svg\" id=\"img_id81592320436632\"><alt id=\"alt_id391592320436632\">Else fragment</alt></image>"
+msgid "If condition=true Then Statement block [ElseIf condition=true Then] Statement block [Else] Statement block EndIf"
msgstr ""
-#. DQy4R
+#. aXATA
#: 03090101.xhp
msgctxt ""
"03090101.xhp\n"
"par_id3123476\n"
"help.text"
-msgid "Instead of <emph>Else If</emph> you can write <emph>ElseIf</emph>, instead of <emph>End If</emph> you can write <emph>EndIf</emph>."
+msgid "Instead of Else If you can write ElseIf, instead of End If you can write EndIf."
msgstr ""
-#. AXTiW
+#. FFDsF
#: 03090101.xhp
msgctxt ""
"03090101.xhp\n"
-"par_id631592322239043\n"
+"hd_id3155419\n"
"help.text"
-msgid "<emph>If</emph> statements can be shortened to one line when using single statement blocks."
-msgstr ""
+msgid "Parameters:"
+msgstr "Paremetre:"
-#. VDj9r
+#. ERvpY
#: 03090101.xhp
msgctxt ""
"03090101.xhp\n"
"par_id3153062\n"
"help.text"
-msgid "The <emph>If...Then</emph> statement executes program blocks depending on given conditions. When %PRODUCTNAME Basic encounters an <emph>If</emph> statement, the condition is tested. If the condition is <literal>True</literal>, all subsequent statements up to the next <emph>Else</emph> or <emph>ElseIf</emph> statement are executed. If the condition is <literal>False</literal>, and an <emph>ElseIf</emph> statement follows, %PRODUCTNAME Basic tests the next expression and executes the following statements if the condition is <literal>True</literal>. If <literal>False</literal>, the program continues either with the next <emph>ElseIf</emph> or <emph>Else</emph> statement. Statements following <emph>Else</emph> are executed only if none of the previously tested conditions were <literal>True</literal>. After all conditions are evaluated, and the corresponding statements executed, the program continues with the statement following <emph>EndIf</emph>."
-msgstr ""
+msgid "The <emph>If...Then</emph> statement executes program blocks depending on given conditions. When $[officename] Basic encounters an <emph>If</emph> statement, the condition is tested. If the condition is True, all subsequent statements up to the next <emph>Else</emph> or <emph>ElseIf</emph> statement are executed. If the condition is False, and an <emph>ElseIf</emph> statement follows, $[officename] Basic tests the next condition and executes the following statements if the condition is True. If False, the program continues either with the next <emph>ElseIf</emph> or <emph>Else</emph> statement. Statements following <emph>Else</emph> are executed only if none of the previously tested conditions were True. After all conditions are evaluated, and the corresponding statements executed, the program continues with the statement following <emph>EndIf</emph>."
+msgstr "Príkaz <emph> If ... Then </emph> spustí blok príkazov v závislosti na danej podmienke. Keď $[officename] Basic narazí na príkaz <emph> If </emph>, overí podmienku. Ak je podmienka True, spustia sa všetky nasledujúce príkazy až do budúceho príkazu <emph> Else </emph> alebo <emph> ElseIf </emph>. Ak je podmienka False a nasleduje príkaz <emph> ElseIf </emph>, $[officename] Basic overí podmienku a spustí nasledujúce príkazy, ak je podmienka True. Ak je False, program preskočí príkazy až k ďalšiemu príkazu <emph> ElseIf </emph> alebo <emph> Else </emph>. Príkazy nasledujúce za príkazom <emph> Else </emph> sa spustí iba ak nebola žiadna z predchádzajúcich podmienok splnená. Po vyhodnotení všetkých podmienok a spustení zodpovedajúcich príkazov pokračuje program príkazy nasledujúcimi po <emph> endif </emph>."
#. NKDQG
#: 03090101.xhp
@@ -22300,6 +22183,15 @@ msgctxt ""
msgid "The following example enables you to enter the expiration date of a product, and determines if the expiration date has passed."
msgstr "Nasledujúci príkaz vám umožní zadať dátum trvanlivosti výrobku a určí, či už tento dátum prebehol:"
+#. TZWBx
+#: 03090101.xhp
+msgctxt ""
+"03090101.xhp\n"
+"hd_id3152576\n"
+"help.text"
+msgid "Example:"
+msgstr "Príklad:"
+
#. gDmAx
#: 03090101.xhp
msgctxt ""
@@ -22336,24 +22228,6 @@ msgctxt ""
msgid "MsgBox \"The expiration date is today\""
msgstr "MsgBox \"Dátum trvanlivosti je dnes\""
-#. 7qi2i
-#: 03090101.xhp
-msgctxt ""
-"03090101.xhp\n"
-"par_id161588865796615\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03090102.xhp\" name=\"Select Case statement\">Select Case</link> statement"
-msgstr ""
-
-#. W4Sgi
-#: 03090101.xhp
-msgctxt ""
-"03090101.xhp\n"
-"par_id281588865818334\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"Iif function\">Iif</link> or <link href=\"text/sbasic/shared/03090410.xhp\" name=\"Switch function\">Switch</link> functions"
-msgstr ""
-
#. ArPEq
#: 03090102.xhp
msgctxt ""
@@ -22399,94 +22273,31 @@ msgctxt ""
msgid "<image src=\"media/helpimg/sbasic/Select-Case_statement.svg\" id=\"img_id931588605629842\"><alt id=\"alt_id931588605629842\">Select Case syntax</alt></image>"
msgstr ""
-#. TJu4u
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"bas_id251592381900645\n"
-"help.text"
-msgid "Select Case expression"
-msgstr ""
-
-#. XrXnH
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"bas_id321592381903509\n"
-"help.text"
-msgid "Case values"
-msgstr ""
-
-#. DCDEC
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"bas_id231592381903973\n"
-"help.text"
-msgid "Statement Block"
-msgstr ""
-
-#. 9KDPg
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"bas_id361592381904372\n"
-"help.text"
-msgid "[ Case values2"
-msgstr ""
-
-#. jSGvu
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"bas_id421592382002520\n"
-"help.text"
-msgid "Statement Block]"
-msgstr ""
-
-#. NcGYQ
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"bas_id161592382004496\n"
-"help.text"
-msgid "[ Case Else"
-msgstr ""
-
-#. FkAUG
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"bas_id681592382005351\n"
-"help.text"
-msgid "Statement Block]"
-msgstr ""
-
-#. MmACE
+#. jsSZ5
#: 03090102.xhp
msgctxt ""
"03090102.xhp\n"
-"bas_id831592381905293\n"
+"par_id3150400\n"
"help.text"
-msgid "End Select"
+msgid "Select Case condition Case expression Statement Block [Case expression2 Statement Block][Case Else] Statement Block End Select"
msgstr ""
-#. HLsCW
+#. yuqsv
#: 03090102.xhp
msgctxt ""
"03090102.xhp\n"
"par_id3156281\n"
"help.text"
-msgid "<emph>expression:</emph> Any expression that controls if the statement block that follows the respective <literal>Case</literal> clause is executed."
+msgid "<emph>condition:</emph> Any expression that controls if the statement block that follows the respective Case clause is executed."
msgstr ""
-#. F88YW
+#. DoPTj
#: 03090102.xhp
msgctxt ""
"03090102.xhp\n"
"par_id3150448\n"
"help.text"
-msgid "<emph>values:</emph> Any value list that is compatible with the expression. The statement block that follows the <literal>Case</literal> clause is executed if <emph>expression</emph> matches <emph>values</emph>."
+msgid "<emph>expression:</emph> Any expression that is compatible with the condition type expression. The statement block that follows the <literal>Case</literal> clause is executed if <emph>condition</emph> matches <emph>expression</emph>."
msgstr ""
#. oCrpX
@@ -22525,49 +22336,31 @@ msgctxt ""
msgid "Print \"Out of range 1 to 10\""
msgstr "Print \"Mimo rozsahu 1 až 10\""
-#. UtJXY
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"par_id161588865796615\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03090101.xhp\" name=\"If...Then...Else statement\">If</link> statement"
-msgstr ""
-
-#. mqu6n
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"par_id281588865818334\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"Iif function\">Iif</link> or <link href=\"text/sbasic/shared/03090410.xhp\" name=\"Switch function\">Switch</link> functions"
-msgstr ""
-
-#. pm7E8
+#. WfFsT
#: 03090103.xhp
msgctxt ""
"03090103.xhp\n"
"tit\n"
"help.text"
-msgid "IIf Function"
+msgid "IIf Statement"
msgstr ""
-#. G8vo7
+#. WcDhC
#: 03090103.xhp
msgctxt ""
"03090103.xhp\n"
"bm_id3155420\n"
"help.text"
-msgid "<bookmark_value>IIf function</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>IIf statement</bookmark_value>"
+msgstr "<bookmark_value>Príkaz Let</bookmark_value>"
-#. ZvPAM
+#. HvJuA
#: 03090103.xhp
msgctxt ""
"03090103.xhp\n"
"hd_id3155420\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"IIf Function\">IIf Function</link>"
+msgid "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"IIf Statement\">IIf Statement</link>"
msgstr ""
#. nYxhE
@@ -22579,76 +22372,49 @@ msgctxt ""
msgid "Returns one of two possible function results, depending on the logical value of the evaluated expression."
msgstr ""
-#. dDDFQ
+#. DMbgx
#: 03090103.xhp
msgctxt ""
"03090103.xhp\n"
-"par_id3147560\n"
-"help.text"
-msgid "IIf (Expression, ExpressionTrue, ExpressionFalse)"
-msgstr ""
-
-#. TXHsN
-#: 03090103.xhp
-msgctxt ""
-"03090103.xhp\n"
-"par_id3153381\n"
-"help.text"
-msgid "<emph>Expression:</emph> Any expression that you want to evaluate. If the expression evaluates to <emph>True</emph>, the function returns the result of ExpressionTrue, otherwise it returns the result of ExpressionFalse."
-msgstr ""
-
-#. Dxoxu
-#: 03090103.xhp
-msgctxt ""
-"03090103.xhp\n"
-"par_id3150870\n"
-"help.text"
-msgid "<emph>ExpressionTrue, ExpressionFalse:</emph> Any expression, one of which will be returned as the function result, depending on the logical evaluation."
-msgstr ""
-
-#. iEQga
-#: 03090103.xhp
-msgctxt ""
-"03090103.xhp\n"
-"par_id541598638231139\n"
+"hd_id3159413\n"
"help.text"
-msgid "IIf evaluates both <literal>ExpressionTrue</literal> and <literal>ExpressionFalse</literal> even if it returns only one of them. If one of the expressions results in error, the function returns the error. For example, do not use IIF to bypass a possible division by zero result."
-msgstr ""
+msgid "Syntax:"
+msgstr "Syntax:"
-#. vGAma
+#. dDDFQ
#: 03090103.xhp
msgctxt ""
"03090103.xhp\n"
-"par_id1001598638460925\n"
+"par_id3147560\n"
"help.text"
-msgid "REM Returns the maximum of 3 values"
+msgid "IIf (Expression, ExpressionTrue, ExpressionFalse)"
msgstr ""
-#. 9JAJ5
+#. Jr9BS
#: 03090103.xhp
msgctxt ""
"03090103.xhp\n"
-"par_id161598638840133\n"
+"hd_id3150541\n"
"help.text"
-msgid "REM Bad usage of function IIf"
-msgstr ""
+msgid "Parameters:"
+msgstr "Paremetre:"
-#. dNxFE
+#. TXHsN
#: 03090103.xhp
msgctxt ""
"03090103.xhp\n"
-"par_id161588865796615\n"
+"par_id3153381\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090101.xhp\" name=\"If...Then...Else statement\">If</link> or <link href=\"text/sbasic/shared/03090102.xhp\" name=\"Select Case statement\">Select Case</link> statements"
+msgid "<emph>Expression:</emph> Any expression that you want to evaluate. If the expression evaluates to <emph>True</emph>, the function returns the result of ExpressionTrue, otherwise it returns the result of ExpressionFalse."
msgstr ""
-#. DjnF7
+#. Dxoxu
#: 03090103.xhp
msgctxt ""
"03090103.xhp\n"
-"par_id281588865818334\n"
+"par_id3150870\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090410.xhp\" name=\"Switch function\">Switch</link> function"
+msgid "<emph>ExpressionTrue, ExpressionFalse:</emph> Any expression, one of which will be returned as the function result, depending on the logical evaluation."
msgstr ""
#. RKALL
@@ -22705,94 +22471,310 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop Statement\">Do...Loop Statement</link>"
msgstr ""
-#. iC6SG
+#. xyfDP
#: 03090201.xhp
msgctxt ""
"03090201.xhp\n"
"par_id3109850\n"
"help.text"
-msgid "Repeats the statements between the <emph>Do</emph> and the <emph>Loop</emph> statement while the condition is <literal>True</literal> or until the condition becomes <literal>True</literal>."
+msgid "Repeats the statements between the Do and the Loop statement while the condition is True or until the condition becomes True."
msgstr ""
-#. aiGhW
+#. caSom
#: 03090201.xhp
msgctxt ""
"03090201.xhp\n"
-"par_id311592320434736\n"
+"hd_id3149119\n"
"help.text"
-msgid "<image src=\"media/helpimg/sbasic/Do_statement.svg\" id=\"img_id601592320434736\"><alt id=\"alt_id551592320434736\">Do statement</alt></image>"
+msgid "Syntax"
+msgstr "Syntax"
+
+#. 3K2PH
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id3155150\n"
+"help.text"
+msgid "Do [{While | Until} condition = True]"
msgstr ""
-#. Ebajb
+#. UwrEt
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id3154422\n"
+"help.text"
+msgid "statement block"
+msgstr "blok príkazov"
+
+#. JsBm9
#: 03090201.xhp
msgctxt ""
"03090201.xhp\n"
-"bas_id171592386317704\n"
+"par_id3150789\n"
"help.text"
-msgid "' Do While: The statement block is repeated as long as the condition is true"
+msgid "[Exit Do]"
msgstr ""
-#. VDEWA
+#. rP8AT
#: 03090201.xhp
msgctxt ""
"03090201.xhp\n"
-"bas_id11592386319239\n"
+"par_id3155805\n"
+"help.text"
+msgid "statement block"
+msgstr "blok príkazov"
+
+#. AWeCW
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id3145090\n"
"help.text"
-msgid "' Do Until: The statement block is repeated as long as the condition is false"
+msgid "Loop"
+msgstr "Loop"
+
+#. 9Cv7B
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id3154749\n"
+"help.text"
+msgid "or"
+msgstr "alebo"
+
+#. Aj9kr
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id3150503\n"
+"help.text"
+msgid "Do"
+msgstr "Do"
+
+#. yGEJd
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id3149762\n"
+"help.text"
+msgid "statement block"
+msgstr "blok príkazov"
+
+#. 93KEy
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id3150984\n"
+"help.text"
+msgid "[Exit Do]"
msgstr ""
-#. Dsqzg
+#. o2rc9
#: 03090201.xhp
msgctxt ""
"03090201.xhp\n"
-"par_id591592320435808\n"
+"par_id3143228\n"
"help.text"
-msgid "<image src=\"media/helpimg/sbasic/Do-Loop_statement.svg\" id=\"img_id691592320435808\"><alt id=\"alt_id341592320435808\">Do...Loop statement</alt></image>"
+msgid "statement block"
+msgstr "blok príkazov"
+
+#. 8qghf
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id3149235\n"
+"help.text"
+msgid "Loop [{While | Until} condition = True]"
+msgstr ""
+
+#. 2AEDG
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"hd_id3156024\n"
+"help.text"
+msgid "Parameters/Elements"
msgstr ""
-#. VVtxi
+#. qkEcG
#: 03090201.xhp
msgctxt ""
"03090201.xhp\n"
-"bas_id911592386676044\n"
+"par_id3156344\n"
"help.text"
-msgid "' Loop While: The statement block repeats as long as the condition is true"
+msgid "<emph>Condition:</emph> A comparison, numeric or string expression, that evaluates either True or False."
msgstr ""
-#. 92FMy
+#. jLqcT
#: 03090201.xhp
msgctxt ""
"03090201.xhp\n"
-"bas_id971592386677004\n"
+"par_id3149669\n"
"help.text"
-msgid "' Loop Until: The statement block repeats until the condition is true"
+msgid "<emph>Statement block:</emph> Statements that you want to repeat while or until the condition is True."
msgstr ""
-#. YFnQL
+#. PdzkX
#: 03090201.xhp
msgctxt ""
"03090201.xhp\n"
"par_id3150791\n"
"help.text"
-msgid "The <emph>Do...Loop</emph> statement executes a loop as long as, or until, a certain condition is <literal>True</literal>. The condition for exiting the loop must be entered following either the <emph>Do</emph> or the <emph>Loop</emph> statement. The above examples are valid combinations."
+msgid "The <emph>Do...Loop</emph> statement executes a loop as long as, or until, a certain condition is True. The condition for exiting the loop must be entered following either the <emph>Do</emph> or the <emph>Loop</emph> statement. The following examples are valid combinations:"
msgstr ""
-#. 8QxEA
+#. uYAtt
#: 03090201.xhp
msgctxt ""
"03090201.xhp\n"
-"par_id3156344\n"
+"hd_id3154366\n"
+"help.text"
+msgid "Syntax"
+msgstr "Syntax"
+
+#. kfmWR
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id3145171\n"
"help.text"
-msgid "<emph>condition:</emph> A comparison, numeric or Basic expression, that evaluates to either <literal>True</literal> or <literal>False</literal>."
+msgid "Do While condition = True"
msgstr ""
-#. C6QdX
+#. f6vGS
#: 03090201.xhp
msgctxt ""
"03090201.xhp\n"
-"par_id3149669\n"
+"par_id3149203\n"
"help.text"
-msgid "<emph>statements:</emph> Statements that you want to repeat while or until a condition is <literal>True</literal>."
+msgid "...statement block"
+msgstr "...blok príkazov"
+
+#. bERMk
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id3125864\n"
+"help.text"
+msgid "Loop"
+msgstr "Loop"
+
+#. NzaK9
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id3154124\n"
+"help.text"
+msgid "The statement block between the Do While and the Loop statements is repeated so long as the condition is true."
+msgstr ""
+
+#. uFfcD
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id3153968\n"
+"help.text"
+msgid "Do Until condition = True"
+msgstr ""
+
+#. CC8GU
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id3154909\n"
+"help.text"
+msgid "...statement block"
+msgstr "...blok príkazov"
+
+#. KrHxA
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id3159151\n"
+"help.text"
+msgid "Loop"
+msgstr "Loop"
+
+#. 29fJ2
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id3150440\n"
+"help.text"
+msgid "The statement block between the Do Until and the Loop statements is repeated if the condition so long as the condition is false."
+msgstr ""
+
+#. HYDHM
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id3153952\n"
+"help.text"
+msgid "Do"
+msgstr "Do"
+
+#. QRBVd
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id3147349\n"
+"help.text"
+msgid "...statement block"
+msgstr "...blok príkazov"
+
+#. DCBsg
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id3159153\n"
+"help.text"
+msgid "Loop While condition = True"
+msgstr ""
+
+#. BuEGy
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id3146985\n"
+"help.text"
+msgid "The statement block between the Do and the Loop statements repeats so long as the condition is true."
+msgstr ""
+
+#. NPwEx
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id3150488\n"
+"help.text"
+msgid "Do"
+msgstr "Do"
+
+#. wutQ5
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id3153189\n"
+"help.text"
+msgid "...statement block"
+msgstr "...blok príkazov"
+
+#. LRGmB
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id3155411\n"
+"help.text"
+msgid "Loop Until condition = True"
+msgstr ""
+
+#. NeasA
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id3151117\n"
+"help.text"
+msgid "The statement block between the Do and the Loop statements repeats until the condition is true."
msgstr ""
#. iXQfC
@@ -22804,22 +22786,58 @@ msgctxt ""
msgid "Use the <emph>Exit Do</emph> statement to unconditionally end the loop. You can add this statement anywhere in a <emph>Do</emph>...<emph>Loop</emph> statement. You can also define an exit condition using the <emph>If...Then</emph> structure as follows:"
msgstr ""
-#. pGFcg
+#. 5DPqL
#: 03090201.xhp
msgctxt ""
"03090201.xhp\n"
-"par_id161588865796615\n"
+"par_id3149262\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For statement\">For</link>, <link href=\"text/sbasic/shared/03090102.xhp\" name=\"Select Case statement\">Select Case</link> or <link href=\"text/sbasic/shared/03090203.xhp\" name=\"While statement\">While</link> statements"
+msgid "Do..."
msgstr ""
-#. NEcfM
+#. KS9Nc
#: 03090201.xhp
msgctxt ""
"03090201.xhp\n"
-"par_id281588865818334\n"
+"par_id3149298\n"
+"help.text"
+msgid "statements"
+msgstr ""
+
+#. zBAab
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id3145646\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"Iif function\">Iif</link> or <link href=\"text/sbasic/shared/03090410.xhp\" name=\"Switch function\">Switch</link> functions"
+msgid "If condition = True Then Exit Do"
+msgstr ""
+
+#. 6AC2Y
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id3154490\n"
+"help.text"
+msgid "statements"
+msgstr "príkazy"
+
+#. F23Fn
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"par_id3153159\n"
+"help.text"
+msgid "Loop..."
+msgstr ""
+
+#. o6GUo
+#: 03090201.xhp
+msgctxt ""
+"03090201.xhp\n"
+"hd_id3147396\n"
+"help.text"
+msgid "Example"
msgstr ""
#. QECNJ
@@ -22831,13 +22849,13 @@ msgctxt ""
msgid "For...Next Statement"
msgstr ""
-#. TvxZC
+#. Byex6
#: 03090202.xhp
msgctxt ""
"03090202.xhp\n"
"bm_id3149205\n"
"help.text"
-msgid "<bookmark_value>For statement</bookmark_value><bookmark_value>For Each statement</bookmark_value><bookmark_value>In keyword</bookmark_value><bookmark_value>Next keyword</bookmark_value><bookmark_value>Step keyword</bookmark_value><bookmark_value>To keyword</bookmark_value>"
+msgid "<bookmark_value>For statement</bookmark_value> <bookmark_value>For Each statement</bookmark_value> <bookmark_value>In keyword</bookmark_value> <bookmark_value>Next keyword</bookmark_value> <bookmark_value>Step keyword</bookmark_value> <bookmark_value>To keyword</bookmark_value> <bookmark_value>Step keyword</bookmark_value>"
msgstr ""
#. LVP76
@@ -23137,13 +23155,13 @@ msgctxt ""
msgid "While...Wend Statement"
msgstr ""
-#. MB6No
+#. 8FsGX
#: 03090203.xhp
msgctxt ""
"03090203.xhp\n"
"bm_id3150400\n"
"help.text"
-msgid "<bookmark_value>While;While...Wend loop</bookmark_value> <bookmark_value>While;While Wend loop</bookmark_value>"
+msgid "<bookmark_value>While;While...Wend loop</bookmark_value>"
msgstr ""
#. 4Gx4Q
@@ -23155,76 +23173,148 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement\">While...Wend Statement</link>"
msgstr ""
-#. QMYRt
+#. dQPTn
#: 03090203.xhp
msgctxt ""
"03090203.xhp\n"
"par_id3151211\n"
"help.text"
-msgid "When a program encounters a <literal>While</literal> statement, it tests the condition. If the condition is <literal>False</literal>, the program continues directly following the <literal>Wend</literal> statement. If the condition is <literal>True</literal>, the loop is executed until the program finds <literal>Wend</literal> and then jumps back to the <emph>While</emph> statement. If the condition is still <literal>True</literal>, the loop is executed again."
+msgid "When a program encounters a While statement, it tests the condition. If the condition is False, the program continues directly following the Wend statement. If the condition is True, the loop is executed until the program finds Wend and then jumps back to the<emph> While </emph>statement. If the condition is still True, the loop is executed again."
msgstr ""
-#. 2WnLN
+#. 2Xbwe
#: 03090203.xhp
msgctxt ""
"03090203.xhp\n"
"par_id3151041\n"
"help.text"
-msgid "Unlike the <link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop\">Do...Loop</link> statement, you cannot cancel a <emph>While...Wend</emph> loop with <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">Exit</link>. Never exit a <literal>While...Wend</literal> loop with <link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo\">GoTo</link>, since this can cause a run-time error."
+msgid "Unlike the <link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop\">Do...Loop</link> statement, you cannot cancel a <emph>While...Wend</emph> loop with <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">Exit</link>. Never exit a While...Wend loop with <link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo\">GoTo</link>, since this can cause a run-time error."
msgstr ""
-#. s8j22
+#. AatCY
#: 03090203.xhp
msgctxt ""
"03090203.xhp\n"
"par_id3145172\n"
"help.text"
-msgid "A <literal>Do...Loop</literal> is more flexible than a <literal>While...Wend.</literal>"
+msgid "A Do...Loop is more flexible than a While...Wend."
msgstr ""
-#. DB6ZD
+#. pWv5M
#: 03090203.xhp
msgctxt ""
"03090203.xhp\n"
-"par_id831588865616326\n"
+"hd_id3155133\n"
"help.text"
-msgid "<image src=\"media/helpimg/sbasic/While_statement.svg\" id=\"img_id651588865616326\"><alt id=\"alt_id281588865616326\">While syntax</alt></image>"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#. BCMGD
+#: 03090203.xhp
+msgctxt ""
+"03090203.xhp\n"
+"par_id3147288\n"
+"help.text"
+msgid "While Condition [Statement] Wend"
msgstr ""
-#. DZ929
+#. 7ApBj
+#: 03090203.xhp
+msgctxt ""
+"03090203.xhp\n"
+"hd_id3153139\n"
+"help.text"
+msgid "Example:"
+msgstr "Príklad:"
+
+#. TYEgW
+#: 03090203.xhp
+msgctxt ""
+"03090203.xhp\n"
+"par_id3159153\n"
+"help.text"
+msgid "Sub ExampleWhileWend"
+msgstr "Sub ExampleLen"
+
+#. AosNw
+#: 03090203.xhp
+msgctxt ""
+"03090203.xhp\n"
+"par_id3151114\n"
+"help.text"
+msgid "Dim stext As String"
+msgstr "Dim sText As String"
+
+#. jKvee
+#: 03090203.xhp
+msgctxt ""
+"03090203.xhp\n"
+"par_id3153143\n"
+"help.text"
+msgid "Dim iRun As Integer"
+msgstr "Dim iCount As Integer"
+
+#. FBRFy
#: 03090203.xhp
msgctxt ""
"03090203.xhp\n"
"par_id3155306\n"
"help.text"
-msgid "sText =\"This is a short text\""
+msgid "sText =\"This Is a short text\""
msgstr ""
-#. ATdAF
+#. 2bjBx
#: 03090203.xhp
msgctxt ""
"03090203.xhp\n"
-"par_id3153189\n"
+"par_id3154011\n"
"help.text"
-msgid "MsgBox sText,0,\"Text encoded\""
+msgid "iRun = 1"
msgstr ""
-#. iADnG
+#. tCNtB
#: 03090203.xhp
msgctxt ""
"03090203.xhp\n"
-"par_id161588865796615\n"
+"par_id3147215\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop statement\">Do...Until</link> or <link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...While statement\">Do...While</link> statement"
+msgid "While iRun < Len(sText)"
msgstr ""
-#. JAoLW
+#. CBNWG
#: 03090203.xhp
msgctxt ""
"03090203.xhp\n"
-"par_id281588865818334\n"
+"par_id3147427\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit statement\">Exit</link> statement"
+msgid "If Mid(sText,iRun,1 )<> \" \" Then Mid( sText ,iRun, 1, Chr( 1 + Asc( Mid(sText,iRun,1 )) )"
+msgstr ""
+
+#. HGfLz
+#: 03090203.xhp
+msgctxt ""
+"03090203.xhp\n"
+"par_id3149665\n"
+"help.text"
+msgid "iRun = iRun + 1"
+msgstr ""
+
+#. Ga2Lj
+#: 03090203.xhp
+msgctxt ""
+"03090203.xhp\n"
+"par_id3152939\n"
+"help.text"
+msgid "Wend"
+msgstr "koniec"
+
+#. ATdAF
+#: 03090203.xhp
+msgctxt ""
+"03090203.xhp\n"
+"par_id3153189\n"
+"help.text"
+msgid "MsgBox sText,0,\"Text encoded\""
msgstr ""
#. kSjtx
@@ -23452,22 +23542,22 @@ msgctxt ""
msgid "Parameters:"
msgstr "Paremetre:"
-#. AoFVn
+#. KaSma
#: 03090302.xhp
msgctxt ""
"03090302.xhp\n"
"par_id471588670859073\n"
"help.text"
-msgid "<emph>label: </emph>A line identifier indicating where to continue execution. The scope of a label is that of the routine it belongs to."
+msgid "<emph>label: </emph>A line identifier indicating where to continue execution. The scope of a label in that of the routine it belongs to."
msgstr ""
-#. ocGjF
+#. YxYq5
#: 03090302.xhp
msgctxt ""
"03090302.xhp\n"
"par_id3152596\n"
"help.text"
-msgid "Use the <literal>GoTo</literal> statement to instruct $[officename] Basic to continue program execution at another place within the procedure. The position must be indicated by a label. To set a label, assign a name, and end it with a colon (\":\")."
+msgid "Use the <literal>GoTo</literal> statement to instruct $[officename] Basic to continue program execution at another place within the procedure. The position must be indicated by a label. To set a label, assign a name, and then and end it with a colon (\":\")."
msgstr ""
#. 8o2aP
@@ -24379,13 +24469,13 @@ msgctxt ""
msgid "Defines a subroutine that can be used as an expression to determine a return type."
msgstr "Definuje podprogram, ktorý možno zavolať z programu a ktorý vracia hodnotu."
-#. qCx4G
+#. PfUxE
#: 03090406.xhp
msgctxt ""
"03090406.xhp\n"
"par_id661588586825434\n"
"help.text"
-msgid "<literal>Sub</literal>, <literal>Function</literal> or <literal>Property</literal> statements are similar methods, without distinction. They receive parameters by reference allowing them to be modified in return. %PRODUCTNAME Basic compiler accepts their respective argument syntax to be used interchangeably."
+msgid "<literal>Sub</literal> or <literal>Function</literal> statements are similar methods, without distinction. They receive parameters by reference allowing them to be modified. %PRODUCTNAME Basic compiler accepts their respective syntax to be used interchangeably."
msgstr ""
#. zFnQ7
@@ -24640,13 +24730,13 @@ msgctxt ""
msgid "<bookmark_value>Sub statement</bookmark_value>"
msgstr "<bookmark_value>Príkaz LSet</bookmark_value>"
-#. ZjnGN
+#. iyuLQ
#: 03090409.xhp
msgctxt ""
"03090409.xhp\n"
"hd_id3147226\n"
"help.text"
-msgid "<variable id=\"Sub_h1\"><link href=\"text/sbasic/shared/03090409.xhp\" name=\"Sub Statement\">Sub Statement</link></variable>"
+msgid "<link href=\"text/sbasic/shared/03090409.xhp\" name=\"Sub Statement\">Sub Statement</link>"
msgstr ""
#. YELg8
@@ -26116,166 +26206,94 @@ msgctxt ""
msgid "<link href=\"text/sbasic/shared/03100700.xhp\" name=\"Const Statement\">Const Statement</link>"
msgstr ""
-#. xPBxj
+#. AASbb
#: 03100700.xhp
msgctxt ""
"03100700.xhp\n"
"par_id3154143\n"
"help.text"
-msgid "Defines one or more identifiers as constants."
-msgstr ""
-
-#. 4sYHn
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"par_id3147264\n"
-"help.text"
-msgid "A constant is a variable that helps to improve the readability of a program. Constants are not defined as a specific type of variable, but rather are used as placeholders in the code. You can only define a constant once and it cannot be modified."
+msgid "Defines a string as a constant."
msgstr ""
-#. ucqd6
+#. KAtyB
#: 03100700.xhp
msgctxt ""
"03100700.xhp\n"
-"par_id831588865616326\n"
+"hd_id3150670\n"
"help.text"
-msgid "<image src=\"media/helpimg/sbasic/Const_statement.svg\" id=\"img_id651588865616326\"><alt id=\"alt_id281588865616326\">Const syntax</alt></image>"
-msgstr ""
+msgid "Syntax:"
+msgstr "Syntax:"
-#. QZJkC
+#. bvD2M
#: 03100700.xhp
msgctxt ""
"03100700.xhp\n"
"par_id3150984\n"
"help.text"
-msgid "[Global|Private|Public] Const name = expression[, ...]"
-msgstr ""
-
-#. 8cNC9
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"par_id3153897\n"
-"help.text"
-msgid "<emph>name:</emph> Any identifier that follows the standard variable naming conventions."
-msgstr ""
-
-#. MYNoo
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"par_id791593689338208\n"
-"help.text"
-msgid "<emph>expression:</emph> Any literal expression."
-msgstr ""
-
-#. C8b4Z
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"par_id3150400\n"
-"help.text"
-msgid "The data type must be omitted. When a library gets loaded in memory, %PRODUCTNAME Basic converts the program code internally so that each time a constant is used, the defined expression replaces it."
-msgstr ""
-
-#. fYdeb
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"hd_id51593690561479\n"
-"help.text"
-msgid "Scope"
-msgstr ""
-
-#. QwPhy
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"par_id431593690612961\n"
-"help.text"
-msgid "By default constants are defined as private in modules and routines. Constants can be made public or global in order to be used from all modules, from all Basic libraries."
+msgid "Const Text = Expression"
msgstr ""
-#. EAL5T
+#. zwnoG
#: 03100700.xhp
msgctxt ""
"03100700.xhp\n"
-"par_id241593693307830\n"
-"help.text"
-msgid "<literal>Global</literal>, <literal>Private</literal> and <literal>Public</literal> specifiers can only be used for module constants."
-msgstr ""
-
-#. 7HRGK
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"bas_id911593692598060\n"
-"help.text"
-msgid "Const EARTH = \"♁\" ' module scope"
-msgstr ""
-
-#. pCVMW
-#: 03100700.xhp
-msgctxt ""
-"03100700.xhp\n"
-"bas_id441593692601125\n"
+"hd_id3147530\n"
"help.text"
-msgid "Private Const MOON = \"☾\" ' module scope"
-msgstr ""
+msgid "Parameters:"
+msgstr "Paremetre:"
-#. xjhjq
+#. oJbVy
#: 03100700.xhp
msgctxt ""
"03100700.xhp\n"
-"bas_id161593692601597\n"
+"par_id3153897\n"
"help.text"
-msgid "Public Const VENUS=\"♀\", MARS=\"♂\" ' general scope"
+msgid "<emph>Text:</emph> Any constant name that follows the standard variable naming conventions."
msgstr ""
-#. 6LzLX
+#. CBCHY
#: 03100700.xhp
msgctxt ""
"03100700.xhp\n"
-"bas_id581593692602046\n"
+"par_id3147264\n"
"help.text"
-msgid "Global Const SUN = \"☉\", STAR = \"☆\" ' general scope"
+msgid "A constant is a variable that helps to improve the readability of a program. Constants are not defined as a specific type of variable, but rather are used as placeholders in the code. You can only define a constant once and it cannot be modified. Use the following statement to define a constant:"
msgstr ""
-#. aFEH7
+#. XCQgM
#: 03100700.xhp
msgctxt ""
"03100700.xhp\n"
-"par_idm1341160752\n"
+"par_id3150542\n"
"help.text"
-msgid "Const SUN = 3 * 1.456 / 56 ' SUN is local"
-msgstr ""
+msgid "CONST ConstName=Expression"
+msgstr "CONST Meno=Výraz"
-#. 5ZVn4
+#. 7tqgF
#: 03100700.xhp
msgctxt ""
"03100700.xhp\n"
-"par_idm1341159520\n"
+"par_id3150400\n"
"help.text"
-msgid "MsgBox SUN,, MOON ' SUN global constant is unchanged"
+msgid "The type of expression is irrelevant. If a program is started, $[officename] Basic converts the program code internally so that each time a constant is used, the defined expression replaces it."
msgstr ""
-#. e9BxY
+#. yKGrA
#: 03100700.xhp
msgctxt ""
"03100700.xhp\n"
-"par_id111593694878677\n"
+"hd_id3154366\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/enum.xhp\" name=\"Enum\">Enum</link> statement"
-msgstr ""
+msgid "Example:"
+msgstr "Príklad:"
-#. ZYFUV
+#. VBDYG
#: 03100700.xhp
msgctxt ""
"03100700.xhp\n"
-"par_id111953694878677\n"
+"par_id3153969\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Enum\">Type</link> statement"
+msgid "Const sVar = \"Program\", dVar As Double = 1.00"
msgstr ""
#. FmimE
@@ -26620,58 +26638,94 @@ msgctxt ""
msgid "If no type-declaration character or keyword is specified, the DefBool statement sets the default data type for variables, according to a letter range."
msgstr ""
-#. SZ3Ak
+#. dvmLf
#: 03101100.xhp
msgctxt ""
"03101100.xhp\n"
-"par_id971587473488701\n"
+"hd_id3149495\n"
"help.text"
-msgid "<image src=\"media/helpimg/sbasic/Defxxx_statements.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">DefType statements diagram</alt></image>"
-msgstr ""
+msgid "Syntax:"
+msgstr "Syntax:"
-#. NFRzL
+#. Vapap
#: 03101100.xhp
msgctxt ""
"03101100.xhp\n"
-"par_id3147336\n"
+"par_id3150682\n"
"help.text"
-msgid "<emph>char:</emph> Letter prefix that specifies default data type for variables."
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
msgstr ""
-#. CBqSz
+#. wg6zG
+#: 03101100.xhp
+msgctxt ""
+"03101100.xhp\n"
+"hd_id3159201\n"
+"help.text"
+msgid "Parameters:"
+msgstr "Paremetre:"
+
+#. AFhFa
#: 03101100.xhp
msgctxt ""
"03101100.xhp\n"
"par_id3147226\n"
"help.text"
-msgid "<emph>char-char:</emph> Letter range prefixes that specify default data type for variables."
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
msgstr ""
-#. 9vqSg
+#. jhcfS
#: 03101100.xhp
msgctxt ""
"03101100.xhp\n"
-"par_id3156152\n"
+"par_id3149178\n"
"help.text"
-msgid "' Prefix definitions for variable types:"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
msgstr ""
-#. QC5gr
+#. 2Tv76
#: 03101100.xhp
msgctxt ""
"03101100.xhp\n"
-"par_id3152481\n"
+"par_id3150669\n"
"help.text"
-msgid "Print TypeName(Boole), VarType(Babbage), bitcoin ' Displays: Boolean 11 False"
+msgid "<emph>Keyword: </emph>Default variable type"
+msgstr "<emph> Kľúčové slovo: </emph> Typ premennej"
+
+#. wRGMS
+#: 03101100.xhp
+msgctxt ""
+"03101100.xhp\n"
+"par_id3149233\n"
+"help.text"
+msgid "<emph>DefBool:</emph> Boolean"
msgstr ""
-#. i5aFp
+#. NRAAt
+#: 03101100.xhp
+msgctxt ""
+"03101100.xhp\n"
+"hd_id3149762\n"
+"help.text"
+msgid "Example:"
+msgstr "Príklad:"
+
+#. AhnXE
+#: 03101100.xhp
+msgctxt ""
+"03101100.xhp\n"
+"par_id3156152\n"
+"help.text"
+msgid "' Prefix definition for variable types:"
+msgstr ""
+
+#. BLc3G
#: 03101100.xhp
msgctxt ""
"03101100.xhp\n"
"par_id3151381\n"
"help.text"
-msgid "bOK=True ' bOK is an implicit boolean variable"
+msgid "bOK=TRUE ' bOK is an implicit boolean variable"
msgstr ""
#. zabpF
@@ -26710,13 +26764,13 @@ msgctxt ""
msgid "If no type-declaration character or keyword is specified, the DefCur statement sets the default variable type, according to a letter range."
msgstr ""
-#. UJUeE
+#. sqyeC
#: 03101110.xhp
msgctxt ""
"03101110.xhp\n"
-"par_idN105D8\n"
+"par_idN105B0\n"
"help.text"
-msgid "Print liquid, Typename(coinbit), VarType(money) ' Result is: 0.0000 Currency 6"
+msgid "<emph>DefCur:</emph> Currency"
msgstr ""
#. uA7E4
@@ -26818,22 +26872,22 @@ msgctxt ""
msgid "If no type-declaration character or keyword is specified, the DefSng statement sets the default variable type, according to a letter range."
msgstr ""
-#. FEQfu
+#. UBc9R
#: 03101130.xhp
msgctxt ""
"03101130.xhp\n"
-"par_idN105D3\n"
+"par_idN105AA\n"
"help.text"
-msgid "wSng=Single ' wSng is an implicit single variable"
+msgid "<emph>DefSng:</emph> Single"
msgstr ""
-#. B2kjC
+#. VsSH4
#: 03101130.xhp
msgctxt ""
"03101130.xhp\n"
-"par_idN105D4\n"
+"par_idN105D3\n"
"help.text"
-msgid "Print afloat, Typename(Word), VarType(anyNum) ' Result is : 0 single 4"
+msgid "sSng=Single ' sSng is an implicit single variable"
msgstr ""
#. zfvWo
@@ -26872,22 +26926,22 @@ msgctxt ""
msgid "If no type-declaration character or keyword is specified, the DefStr statement sets the default variable type, according to a letter range."
msgstr ""
-#. LCyE8
+#. 6GXn9
#: 03101140.xhp
msgctxt ""
"03101140.xhp\n"
-"par_idN105D3\n"
+"par_idN105AA\n"
"help.text"
-msgid "sStr=String ' sStr is an implicit string variable"
+msgid "<emph>DefStr:</emph> String"
msgstr ""
-#. pVAGJ
+#. LCyE8
#: 03101140.xhp
msgctxt ""
"03101140.xhp\n"
-"par_idN105D4\n"
+"par_idN105D3\n"
"help.text"
-msgid "Print VarType(slice), strng, TypeName(sheet) ' Result is: 8 \"\" String"
+msgid "sStr=String ' sStr is an implicit string variable"
msgstr ""
#. E5nXi
@@ -26926,22 +26980,22 @@ msgctxt ""
msgid "If no type-declaration character or keyword is specified, the DefDate statement sets the default variable type, according to a letter range."
msgstr ""
-#. sGAWV
+#. 7bqLD
#: 03101300.xhp
msgctxt ""
"03101300.xhp\n"
-"par_id3152462\n"
+"par_id3150767\n"
"help.text"
-msgid "tDate=Date ' tDate is an implicit date variable"
+msgid "<emph>DefDate:</emph> Date"
msgstr ""
-#. kEsRX
+#. sGAWV
#: 03101300.xhp
msgctxt ""
"03101300.xhp\n"
-"par_id3153562\n"
+"par_id3152462\n"
"help.text"
-msgid "Print VarType(tea), train, TypeName(timedate), IsDate(tick) ' Displays: 7 00:00:00 Date True"
+msgid "tDate=Date ' tDate is an implicit date variable"
msgstr ""
#. c8vDs
@@ -26980,22 +27034,22 @@ msgctxt ""
msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
msgstr ""
-#. oWGT8
+#. ctoJu
#: 03101400.xhp
msgctxt ""
"03101400.xhp\n"
-"par_id3154244\n"
+"par_id3154123\n"
"help.text"
-msgid "fValue=1.23e43 ' fValue is an implicit double variable type"
+msgid "<emph>DefDbl:</emph> Double"
msgstr ""
-#. DcRHT
+#. 2f3z3
#: 03101400.xhp
msgctxt ""
"03101400.xhp\n"
"par_id3153144\n"
"help.text"
-msgid "Print Typename(float), VarType(fire), factory ' Result is: Double 5 0"
+msgid "dValue=1.23e43 ' dValue is an implicit double variable type"
msgstr ""
#. mcUhD
@@ -27034,22 +27088,22 @@ msgctxt ""
msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
msgstr ""
-#. zxFQy
+#. WgpHG
#: 03101500.xhp
msgctxt ""
"03101500.xhp\n"
-"par_id3164728\n"
+"par_id3125863\n"
"help.text"
-msgid "iCount=200 ' iCount is an implicit integer variable"
+msgid "<emph>DefInt:</emph> Integer"
msgstr ""
-#. kXjfq
+#. 7H7tx
#: 03101500.xhp
msgctxt ""
"03101500.xhp\n"
"par_id3153728\n"
"help.text"
-msgid "Print kilos, Typename(number), VarType(Java) ' Result is: 0 Integer 2"
+msgid "iCount=200 ' iCount is an implicit integer variable"
msgstr ""
#. kK2Aw
@@ -27088,22 +27142,22 @@ msgctxt ""
msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
msgstr ""
-#. Dn2Xk
+#. sLCx9
#: 03101600.xhp
msgctxt ""
"03101600.xhp\n"
-"par_id3145273\n"
+"par_id3154686\n"
"help.text"
-msgid "xCount=123456789 ' xCount is an implicit long integer variable"
+msgid "<emph>DefLng:</emph> Long"
msgstr ""
-#. Pg49N
+#. WPTCA
#: 03101600.xhp
msgctxt ""
"03101600.xhp\n"
-"par_id3255273\n"
+"par_id3145273\n"
"help.text"
-msgid "Print VarType(Yes), zinc, Typename(Max) ' Result is: 3 0 Long"
+msgid "lCount=123456789 ' lCount is an implicit long integer variable"
msgstr ""
#. k5A5k
@@ -27142,13 +27196,13 @@ msgctxt ""
msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
msgstr ""
-#. Ds9qa
+#. DTNnj
#: 03101700.xhp
msgctxt ""
"03101700.xhp\n"
-"par_id3255273\n"
+"par_id3150769\n"
"help.text"
-msgid "Print Typename(properties), VarType(ordinal), IsNull(unique), IsObject(org)' Result is: Object 9 True False"
+msgid "<emph>DefObj:</emph> Object"
msgstr ""
#. oaF9W
@@ -27187,31 +27241,103 @@ msgctxt ""
msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
msgstr ""
-#. TJouG
+#. QntwN
#: 03102000.xhp
msgctxt ""
"03102000.xhp\n"
-"par_id3154012\n"
+"hd_id3154143\n"
"help.text"
-msgid "vDiv=99 ' vDiv is an implicit variant"
+msgid "Syntax:"
+msgstr "Syntax:"
+
+#. FACB3
+#: 03102000.xhp
+msgctxt ""
+"03102000.xhp\n"
+"par_id3149514\n"
+"help.text"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
msgstr ""
-#. 7BG6Y
+#. giJy9
#: 03102000.xhp
msgctxt ""
"03102000.xhp\n"
-"par_id3146121\n"
+"hd_id3156024\n"
"help.text"
-msgid "values=\"Hello world\""
+msgid "Parameters:"
+msgstr "Paremetre:"
+
+#. tAPGo
+#: 03102000.xhp
+msgctxt ""
+"03102000.xhp\n"
+"par_id3147560\n"
+"help.text"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
msgstr ""
-#. c6en9
+#. rG9MV
#: 03102000.xhp
msgctxt ""
"03102000.xhp\n"
-"par_id3147221\n"
+"par_id3148552\n"
"help.text"
-msgid "Print Typename(glob), VarType(values), IsEmpty(ergo_sum) ' Displays: Empty 8 True"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr ""
+
+#. uEmwr
+#: 03102000.xhp
+msgctxt ""
+"03102000.xhp\n"
+"par_id3153524\n"
+"help.text"
+msgid "<emph>Keyword: </emph>Default variable type"
+msgstr "<emph> Kľúčové slovo: </emph> Typ premennej"
+
+#. C78EJ
+#: 03102000.xhp
+msgctxt ""
+"03102000.xhp\n"
+"par_id3150767\n"
+"help.text"
+msgid "<emph>DefVar:</emph> Variant"
+msgstr ""
+
+#. ZDBBg
+#: 03102000.xhp
+msgctxt ""
+"03102000.xhp\n"
+"hd_id3151041\n"
+"help.text"
+msgid "Example:"
+msgstr "Príklad:"
+
+#. QEkeu
+#: 03102000.xhp
+msgctxt ""
+"03102000.xhp\n"
+"par_id3156214\n"
+"help.text"
+msgid "' Prefix definitions for variable types:"
+msgstr ""
+
+#. TJouG
+#: 03102000.xhp
+msgctxt ""
+"03102000.xhp\n"
+"par_id3154012\n"
+"help.text"
+msgid "vDiv=99 ' vDiv is an implicit variant"
+msgstr ""
+
+#. zCdB9
+#: 03102000.xhp
+msgctxt ""
+"03102000.xhp\n"
+"par_id3146121\n"
+"help.text"
+msgid "vDiv=\"Hello world\""
msgstr ""
#. 2jpst
@@ -31642,13 +31768,13 @@ msgctxt ""
msgid "String"
msgstr "Reťazec"
-#. nYDuW
+#. gunCB
#: 03120201.xhp
msgctxt ""
"03120201.xhp\n"
"par_id3143228\n"
"help.text"
-msgid "<emph>n:</emph> Numeric expression that defines the number of spaces in the string. The maximum allowed value of <emph>n</emph> is 2,147,483,648."
+msgid "<emph>n:</emph> Numeric expression that defines the number of spaces in the string. The maximum allowed value of <emph>n</emph> is 65535."
msgstr ""
#. xfAcE
@@ -31696,6 +31822,15 @@ msgctxt ""
msgid "Creates a string according to the specified character, or the first character of a string expression that is passed to the function."
msgstr "Vytvorí reťazec podľa zadaného znaku alebo prvého znaku reťazca predaného funkcii."
+#. YEQWe
+#: 03120202.xhp
+msgctxt ""
+"03120202.xhp\n"
+"hd_id3149516\n"
+"help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
#. EVKUs
#: 03120202.xhp
msgctxt ""
@@ -31705,6 +31840,15 @@ msgctxt ""
msgid "String (n As Long, {expression As Integer | character As String})"
msgstr "String (n As Long, {výraz As Integer | znak As String})"
+#. Uaxak
+#: 03120202.xhp
+msgctxt ""
+"03120202.xhp\n"
+"hd_id3143270\n"
+"help.text"
+msgid "Return value:"
+msgstr "Návratová hodnota:"
+
#. GfqGg
#: 03120202.xhp
msgctxt ""
@@ -31714,14 +31858,23 @@ msgctxt ""
msgid "String"
msgstr "Reťazec"
-#. FTqT4
+#. 5gnCP
+#: 03120202.xhp
+msgctxt ""
+"03120202.xhp\n"
+"hd_id3154923\n"
+"help.text"
+msgid "Parameters:"
+msgstr "Paremetre:"
+
+#. xvDy5
#: 03120202.xhp
msgctxt ""
"03120202.xhp\n"
"par_id3154347\n"
"help.text"
-msgid "<emph>n:</emph> Numeric expression that indicates the number of characters to return in the string. The maximum allowed value of n is 2,147,483,648."
-msgstr ""
+msgid "<emph>n:</emph> Numeric expression that indicates the number of characters to return in the string. The maximum allowed value of n is 65535."
+msgstr "<emph>n:</emph> Číslo určujúce počet znakov v reťazci. Maximálna dovolená hodnota je 65535."
#. uARjD
#: 03120202.xhp
@@ -31741,6 +31894,15 @@ msgctxt ""
msgid "<emph>Character:</emph> Any single character used to build the return string, or any string of which only the first character will be used."
msgstr "<emph>Znak:</emph> Nejaký znak, z ktorého sa vytvorí reťazec, alebo akýkoľvek reťazec, z ktorého sa použije prvý znak."
+#. iApAt
+#: 03120202.xhp
+msgctxt ""
+"03120202.xhp\n"
+"hd_id3152920\n"
+"help.text"
+msgid "Example:"
+msgstr "Príklad:"
+
#. avFC9
#: 03120300.xhp
msgctxt ""
@@ -31813,6 +31975,15 @@ msgctxt ""
msgid "Converts a number to a string, and then formats it according to the format that you specify."
msgstr "Prevedie číslo na reťazec a potom ho upraví podľa zadaného formátu."
+#. ESujY
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"hd_id3145090\n"
+"help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
#. wp4Ae
#: 03120301.xhp
msgctxt ""
@@ -31822,6 +31993,15 @@ msgctxt ""
msgid "Format (Number [, Format As String])"
msgstr "Format (Číslo [, Format As String])"
+#. SrkYm
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"hd_id3149178\n"
+"help.text"
+msgid "Return value:"
+msgstr "Návratová hodnota:"
+
#. gddga
#: 03120301.xhp
msgctxt ""
@@ -31831,6 +32011,15 @@ msgctxt ""
msgid "String"
msgstr "Reťazec"
+#. WGjGQ
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"hd_id3159176\n"
+"help.text"
+msgid "Parameters:"
+msgstr "Paremetre:"
+
#. 6Dyxg
#: 03120301.xhp
msgctxt ""
@@ -32110,6 +32299,15 @@ msgctxt ""
msgid "A format code can be divided into three sections that are separated by semicolons. The first part defines the format for positive values, the second part for negative values, and the third part for zero. If you only specify one format code, it applies to all numbers."
msgstr "Formátovací kód môžeme rozdeliť na tri časti oddelené bodkočiarkami. Prvá časť definuje formát pre kladné čísla, druhá pre záporné čísla a tretia pre nulu. Ak určíte jen jeden formátovací kód, použije sa pre všetky čísla."
+#. GXmDT
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"hd_id3149019\n"
+"help.text"
+msgid "Example:"
+msgstr "Príklad:"
+
#. ZsNPC
#: 03120301.xhp
msgctxt ""
@@ -32263,6 +32461,15 @@ msgctxt ""
msgid "Returns the number of leftmost characters that you specify of a string expression."
msgstr "Vráti určený počet znakov zo začiatku reťazca."
+#. UF45c
+#: 03120303.xhp
+msgctxt ""
+"03120303.xhp\n"
+"hd_id3156153\n"
+"help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
#. H2Ftq
#: 03120303.xhp
msgctxt ""
@@ -32272,6 +32479,15 @@ msgctxt ""
msgid "Left (Text As String, n As Long)"
msgstr "Left (Text As String, n As Long)"
+#. 48Gmp
+#: 03120303.xhp
+msgctxt ""
+"03120303.xhp\n"
+"hd_id3153824\n"
+"help.text"
+msgid "Return value:"
+msgstr "Návratová hodnota:"
+
#. to74m
#: 03120303.xhp
msgctxt ""
@@ -32281,6 +32497,15 @@ msgctxt ""
msgid "String"
msgstr "Reťazec"
+#. ZJXfA
+#: 03120303.xhp
+msgctxt ""
+"03120303.xhp\n"
+"hd_id3148946\n"
+"help.text"
+msgid "Parameters:"
+msgstr "Paremetre:"
+
#. hRWZH
#: 03120303.xhp
msgctxt ""
@@ -32290,14 +32515,14 @@ msgctxt ""
msgid "<emph>Text:</emph> Any string expression that you want to return the leftmost characters from."
msgstr "<emph>Text:</emph> Reťazec, ktorého časť chcete získať."
-#. BPXpD
+#. jVzCK
#: 03120303.xhp
msgctxt ""
"03120303.xhp\n"
"par_id3149456\n"
"help.text"
-msgid "<emph>n:</emph> Numeric expression that specifies the number of characters that you want to return. If <emph>n</emph> = 0, a zero-length string is returned. The maximum allowed value is 2,147,483,648."
-msgstr ""
+msgid "<emph>n:</emph> Numeric expression that specifies the number of characters that you want to return. If <emph>n</emph> = 0, a zero-length string is returned. The maximum allowed value is 65535."
+msgstr "<emph>n:</emph> Číselný výraz určujúci počet znakov, ktoré chcete vrátiť. Ak <emph>n</emph> = 0, vráti sa prázdny reťazec. Maximálna povolená hodnota je 65535."
#. FPXvk
#: 03120303.xhp
@@ -32308,6 +32533,15 @@ msgctxt ""
msgid "The following example converts a date in YYYY.MM.DD format to MM/DD/YYYY format."
msgstr "Nasledujúci príklad prevedie dátum vo formáte YYYY.MM.DD na formát MM/DD/YYYY."
+#. YQQDH
+#: 03120303.xhp
+msgctxt ""
+"03120303.xhp\n"
+"hd_id3125863\n"
+"help.text"
+msgid "Example:"
+msgstr "Príklad:"
+
#. TJBfC
#: 03120303.xhp
msgctxt ""
@@ -32353,6 +32587,15 @@ msgctxt ""
msgid "Aligns a string to the left of a string variable, or copies a variable of a user-defined type to another variable of a different user-defined type."
msgstr "Zarovná reťazec vľavo v reťazcovej premennej alebo skopíruje premennú používateľom určeného typu do inej premennej iného používateľom určeného typu."
+#. wKtHD
+#: 03120304.xhp
+msgctxt ""
+"03120304.xhp\n"
+"hd_id3145317\n"
+"help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
#. tFaav
#: 03120304.xhp
msgctxt ""
@@ -32362,6 +32605,15 @@ msgctxt ""
msgid "LSet Var As String = Text or LSet Var1 = Var2"
msgstr "LSet Premenná As String = Text alebo LSet Premenná1 = Premenná2"
+#. 2vzrB
+#: 03120304.xhp
+msgctxt ""
+"03120304.xhp\n"
+"hd_id3143271\n"
+"help.text"
+msgid "Parameters:"
+msgstr "Paremetre:"
+
#. M99uG
#: 03120304.xhp
msgctxt ""
@@ -32407,6 +32659,15 @@ msgctxt ""
msgid "If the string is shorter than the string variable, <emph>LSet</emph> left-aligns the string within the string variable. Any remaining positions in the string variable are replaced by spaces. If the string is longer than the string variable, only the leftmost characters up to the length of the string variable are copied. With the <emph>LSet</emph> statement, you can also copy a user-defined type variable to another variable of the same type."
msgstr "Ak je reťazec kratší ako reťazcová premenná, <emph>LSet</emph> zarovná reťazec vľavo v reťazcovej premennej. Zostávajúce miesta v reťazci budú nahradené medzerami. Ak je reťazec dlhší ako reťazcová premenná, budú skopírované len znaky najviac naľavo až do dĺžky reťazcovej premennej. Príkazom <emph>LSet</emph> je tiež možné kopírovať premennú používateľom definovaného typu do inej premennej rovnakého typu."
+#. BQw4P
+#: 03120304.xhp
+msgctxt ""
+"03120304.xhp\n"
+"hd_id3156282\n"
+"help.text"
+msgid "Example:"
+msgstr "Príklad:"
+
#. jJepi
#: 03120304.xhp
msgctxt ""
@@ -32470,6 +32731,15 @@ msgctxt ""
msgid "Removes all leading spaces at the start of a string expression."
msgstr "Odstráni všetky medzery na počiatku reťazca."
+#. vG8YP
+#: 03120305.xhp
+msgctxt ""
+"03120305.xhp\n"
+"hd_id3154924\n"
+"help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
#. cepxM
#: 03120305.xhp
msgctxt ""
@@ -32479,6 +32749,15 @@ msgctxt ""
msgid "LTrim (Text As String)"
msgstr "LTrim (Text As String)"
+#. KzzDh
+#: 03120305.xhp
+msgctxt ""
+"03120305.xhp\n"
+"hd_id3156344\n"
+"help.text"
+msgid "Return value:"
+msgstr "Návratová hodnota:"
+
#. LyUCE
#: 03120305.xhp
msgctxt ""
@@ -32488,6 +32767,15 @@ msgctxt ""
msgid "String"
msgstr "Reťazec"
+#. 8hNZD
+#: 03120305.xhp
+msgctxt ""
+"03120305.xhp\n"
+"hd_id3150543\n"
+"help.text"
+msgid "Parameters:"
+msgstr "Paremetre:"
+
#. x85WJ
#: 03120305.xhp
msgctxt ""
@@ -32506,6 +32794,15 @@ msgctxt ""
msgid "Use this function to remove spaces at the beginning of a string expression."
msgstr "Pomocou tejto funkcie odstránite medzery na začiatku reťazca."
+#. FExzu
+#: 03120305.xhp
+msgctxt ""
+"03120305.xhp\n"
+"hd_id3145419\n"
+"help.text"
+msgid "Example:"
+msgstr "Príklad:"
+
#. Afrvq
#: 03120306.xhp
msgctxt ""
@@ -32542,6 +32839,15 @@ msgctxt ""
msgid "Returns the specified portion of a string expression (<emph>Mid function</emph>), or replaces the portion of a string expression with another string (<emph>Mid statement</emph>)."
msgstr "Vráti určenú časť reťazca (<emph>funkcia Mid</emph>) alebo nahradí časť reťazca iným reťazcom (<emph>príkaz Mid</emph>)."
+#. ye7Tj
+#: 03120306.xhp
+msgctxt ""
+"03120306.xhp\n"
+"hd_id3154285\n"
+"help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
#. 32BvU
#: 03120306.xhp
msgctxt ""
@@ -32551,6 +32857,15 @@ msgctxt ""
msgid "Mid (Text As String, Start As Long [, Length As Long]) or Mid (Text As String, Start As Long , Length As Long, Text As String)"
msgstr "Mid (Text As String, Začiatok As Long [, Dĺžka As Long]) alebo Mid (Text As String, Začiatok As Long , Dĺžka As Long, Text As String)"
+#. Bw3Yb
+#: 03120306.xhp
+msgctxt ""
+"03120306.xhp\n"
+"hd_id3145068\n"
+"help.text"
+msgid "Return value:"
+msgstr "Návratová hodnota:"
+
#. 5MG4F
#: 03120306.xhp
msgctxt ""
@@ -32560,6 +32875,15 @@ msgctxt ""
msgid "String (only by Function)"
msgstr "Typu String (len v prípade funkcie)"
+#. rLmbA
+#: 03120306.xhp
+msgctxt ""
+"03120306.xhp\n"
+"hd_id3154347\n"
+"help.text"
+msgid "Parameters:"
+msgstr "Paremetre:"
+
#. hRXCE
#: 03120306.xhp
msgctxt ""
@@ -32569,23 +32893,23 @@ msgctxt ""
msgid "<emph>Text:</emph> Any string expression that you want to modify."
msgstr "<emph>Text:</emph> Reťazec, ktorý chcete upraviť."
-#. DGPaB
+#. MkjPp
#: 03120306.xhp
msgctxt ""
"03120306.xhp\n"
"par_id3150359\n"
"help.text"
-msgid "<emph>Start: </emph>Numeric expression that indicates the character position within the string where the string portion that you want to replace or to return begins. The minimum allowed value is 1. The maximum allowed value is 2,147,483,648."
-msgstr ""
+msgid "<emph>Start: </emph>Numeric expression that indicates the character position within the string where the string portion that you want to replace or to return begins. The maximum allowed value is 65535."
+msgstr "<emph>Začiatok:</emph> Číselný výraz určujúci pozíciu znaku, kde začína časť reťazca, ktorú chcete nahradiť alebo vrátiť. Maximálna povolená hodnota je 65535."
-#. dtyT5
+#. 49ArA
#: 03120306.xhp
msgctxt ""
"03120306.xhp\n"
"par_id3148451\n"
"help.text"
-msgid "<emph>Length:</emph> Numeric expression that returns the number of characters that you want to replace or return. The maximum allowed value is 2,147,483,648."
-msgstr ""
+msgid "<emph>Length:</emph> Numeric expression that returns the number of characters that you want to replace or return. The maximum allowed value is 65535."
+msgstr "<emph>Dĺžka:</emph> Číselný výraz určujúci počet znakov, ktoré chcete nahradiť alebo vrátiť. Maximálna povolená hodnota je 65535."
#. Cw9Ts
#: 03120306.xhp
@@ -32614,6 +32938,15 @@ msgctxt ""
msgid "<emph>Text:</emph> The string to replace the string expression (<emph>Mid statement</emph>)."
msgstr "<emph>Text:</emph> Reťazec, ktorým chcete nahradiť určenú časť reťazca (<emph>príkaz Mid</emph>)."
+#. jK3U3
+#: 03120306.xhp
+msgctxt ""
+"03120306.xhp\n"
+"hd_id3149560\n"
+"help.text"
+msgid "Example:"
+msgstr "Príklad:"
+
#. NFDUA
#: 03120306.xhp
msgctxt ""
@@ -32668,6 +33001,15 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function\">Left Function</link>."
msgstr "Pozri tiež: <link href=\"text/sbasic/shared/03120303.xhp\" name=\"Funkcia Left\">Funkcia Left</link>."
+#. Xy4Fw
+#: 03120307.xhp
+msgctxt ""
+"03120307.xhp\n"
+"hd_id3145315\n"
+"help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
#. A3Rzn
#: 03120307.xhp
msgctxt ""
@@ -32677,6 +33019,15 @@ msgctxt ""
msgid "Right (Text As String, n As Long)"
msgstr "Right (Text As String, n As Long)"
+#. 8sZ7E
+#: 03120307.xhp
+msgctxt ""
+"03120307.xhp\n"
+"hd_id3145068\n"
+"help.text"
+msgid "Return value:"
+msgstr "Návratová hodnota:"
+
#. SKQUo
#: 03120307.xhp
msgctxt ""
@@ -32686,6 +33037,15 @@ msgctxt ""
msgid "String"
msgstr "Reťazec"
+#. CyX7H
+#: 03120307.xhp
+msgctxt ""
+"03120307.xhp\n"
+"hd_id3146795\n"
+"help.text"
+msgid "Parameters:"
+msgstr "Paremetre:"
+
#. hErZb
#: 03120307.xhp
msgctxt ""
@@ -32695,14 +33055,14 @@ msgctxt ""
msgid "<emph>Text:</emph> Any string expression that you want to return the rightmost characters of."
msgstr "<emph>Text:</emph> Reťazec, ktorého časť umiestnenú naviac vpravo chcete získať."
-#. NwQkG
+#. D8HQ5
#: 03120307.xhp
msgctxt ""
"03120307.xhp\n"
"par_id3151211\n"
"help.text"
-msgid "<emph>n:</emph> Numeric expression that defines the number of characters that you want to return. If <emph>n</emph> = 0, a zero-length string is returned. The maximum allowed value is 2,147,483,648."
-msgstr ""
+msgid "<emph>n:</emph> Numeric expression that defines the number of characters that you want to return. If <emph>n</emph> = 0, a zero-length string is returned. The maximum allowed value is 65535."
+msgstr "<emph>n:</emph> Číselný výraz určujúci počet znakov, ktoré chcete vrátiť. Ak <emph>n</emph> = 0, vráti sa prázdny reťazec. Maximálna povolená hodnota je 65535."
#. ezXrq
#: 03120307.xhp
@@ -32713,6 +33073,15 @@ msgctxt ""
msgid "The following example converts a date in YYYY-MM-DD format to the US date format (MM/DD/YYYY)."
msgstr "Nasledujúci príklad prevádza dátum z formátu YYYY-MM-DD do formátu MM/DD/YYYY."
+#. wgEnG
+#: 03120307.xhp
+msgctxt ""
+"03120307.xhp\n"
+"hd_id3156212\n"
+"help.text"
+msgid "Example:"
+msgstr "Príklad:"
+
#. ZbKt5
#: 03120307.xhp
msgctxt ""
@@ -32758,6 +33127,15 @@ msgctxt ""
msgid "Right-aligns a string within a string variable, or copies a user-defined variable type into another."
msgstr "Zarovná text typu String vpravo v rámci premennej typu String alebo skopíruje používateľom definovaný typ premennej do inej."
+#. aHsZH
+#: 03120308.xhp
+msgctxt ""
+"03120308.xhp\n"
+"hd_id3149234\n"
+"help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
#. uDqvq
#: 03120308.xhp
msgctxt ""
@@ -32767,6 +33145,15 @@ msgctxt ""
msgid "RSet Text As String = Text or RSet Variable1 = Variable2"
msgstr "RSet Text As String = Text alebo RSet Premenná1 = Premenná2"
+#. tpDDD
+#: 03120308.xhp
+msgctxt ""
+"03120308.xhp\n"
+"hd_id3156024\n"
+"help.text"
+msgid "Parameters:"
+msgstr "Paremetre:"
+
#. YfmCj
#: 03120308.xhp
msgctxt ""
@@ -32830,6 +33217,15 @@ msgctxt ""
msgid "The following example uses the <emph>RSet</emph> and <emph>LSet</emph> statements to modify the left and right alignment of a string."
msgstr "Nasledujúci príklad používa príkazy <emph>RSet</emph> a <emph>LSet</emph> na úpravu ľavého a pravého zarovnania reťazca."
+#. BdFxA
+#: 03120308.xhp
+msgctxt ""
+"03120308.xhp\n"
+"hd_id3154909\n"
+"help.text"
+msgid "Example:"
+msgstr "Príklad:"
+
#. u4Dwb
#: 03120308.xhp
msgctxt ""
@@ -32902,6 +33298,15 @@ msgctxt ""
msgid "See also: <link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function\">LTrim Function</link>"
msgstr "Pozri tiež: <link href=\"text/sbasic/shared/03120305.xhp\" name=\"Funkcia LTrim\">Funkcia LTrim</link>"
+#. z57JG
+#: 03120309.xhp
+msgctxt ""
+"03120309.xhp\n"
+"hd_id3154924\n"
+"help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
#. 3KFbV
#: 03120309.xhp
msgctxt ""
@@ -32911,6 +33316,15 @@ msgctxt ""
msgid "RTrim (Text As String)"
msgstr "RTrim (Text As String)"
+#. qfPg6
+#: 03120309.xhp
+msgctxt ""
+"03120309.xhp\n"
+"hd_id3149457\n"
+"help.text"
+msgid "Return value:"
+msgstr "Návratová hodnota:"
+
#. awasf
#: 03120309.xhp
msgctxt ""
@@ -32920,6 +33334,15 @@ msgctxt ""
msgid "String"
msgstr "Reťazec"
+#. p2Uwz
+#: 03120309.xhp
+msgctxt ""
+"03120309.xhp\n"
+"hd_id3148798\n"
+"help.text"
+msgid "Parameters:"
+msgstr "Paremetre:"
+
#. UW5Fx
#: 03120309.xhp
msgctxt ""
@@ -32929,6 +33352,15 @@ msgctxt ""
msgid "<emph>Text: </emph>Any string expression."
msgstr "<emph>Text:</emph> Akýkoľvek reťazec."
+#. Tq2QX
+#: 03120309.xhp
+msgctxt ""
+"03120309.xhp\n"
+"hd_id3151041\n"
+"help.text"
+msgid "Example:"
+msgstr "Príklad:"
+
#. qdGRW
#: 03120310.xhp
msgctxt ""
@@ -33055,6 +33487,15 @@ msgctxt ""
msgid "Removes all leading and trailing spaces from a string expression."
msgstr ""
+#. xTgNw
+#: 03120311.xhp
+msgctxt ""
+"03120311.xhp\n"
+"hd_id3159157\n"
+"help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
#. EEu5H
#: 03120311.xhp
msgctxt ""
@@ -33064,6 +33505,15 @@ msgctxt ""
msgid "Trim( Text As String )"
msgstr "RTrim (Text As String)"
+#. ZUuwF
+#: 03120311.xhp
+msgctxt ""
+"03120311.xhp\n"
+"hd_id3155388\n"
+"help.text"
+msgid "Return value:"
+msgstr "Návratová hodnota:"
+
#. f9pGG
#: 03120311.xhp
msgctxt ""
@@ -33073,6 +33523,15 @@ msgctxt ""
msgid "String"
msgstr "Reťazec"
+#. VwME3
+#: 03120311.xhp
+msgctxt ""
+"03120311.xhp\n"
+"hd_id3145609\n"
+"help.text"
+msgid "Parameters:"
+msgstr "Paremetre:"
+
#. kLdYS
#: 03120311.xhp
msgctxt ""
@@ -33082,6 +33541,15 @@ msgctxt ""
msgid "<emph>Text:</emph> Any string expression."
msgstr "<emph>Text:</emph> Akýkoľvek reťazcový výraz."
+#. 3GonF
+#: 03120311.xhp
+msgctxt ""
+"03120311.xhp\n"
+"hd_id3148663\n"
+"help.text"
+msgid "Example:"
+msgstr "Príklad:"
+
#. ZBDyG
#: 03120312.xhp
msgctxt ""
@@ -33118,6 +33586,15 @@ msgctxt ""
msgid "Converts a system file name to a file URL."
msgstr "Prevedie názov systémového súboru na adresu URL súboru."
+#. 7EFtr
+#: 03120312.xhp
+msgctxt ""
+"03120312.xhp\n"
+"hd_id3150669\n"
+"help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
#. zU9U9
#: 03120312.xhp
msgctxt ""
@@ -33127,6 +33604,15 @@ msgctxt ""
msgid "ConvertToURL(filename)"
msgstr "ConvertToURL(Názov súboru)"
+#. eq2Gx
+#: 03120312.xhp
+msgctxt ""
+"03120312.xhp\n"
+"hd_id3150984\n"
+"help.text"
+msgid "Return value:"
+msgstr "Návratová hodnota:"
+
#. V6WhB
#: 03120312.xhp
msgctxt ""
@@ -33136,6 +33622,15 @@ msgctxt ""
msgid "String"
msgstr "Reťazec"
+#. m42nR
+#: 03120312.xhp
+msgctxt ""
+"03120312.xhp\n"
+"hd_id3148550\n"
+"help.text"
+msgid "Parameters:"
+msgstr "Paremetre:"
+
#. Dka3U
#: 03120312.xhp
msgctxt ""
@@ -33145,6 +33640,15 @@ msgctxt ""
msgid "<emph>Filename:</emph> A file name as string."
msgstr "<emph>Názov súboru:</emph> Názov súboru ako reťazec."
+#. iFPRX
+#: 03120312.xhp
+msgctxt ""
+"03120312.xhp\n"
+"hd_id3153361\n"
+"help.text"
+msgid "Example:"
+msgstr "Príklad:"
+
#. AHBLc
#: 03120312.xhp
msgctxt ""
@@ -33190,6 +33694,15 @@ msgctxt ""
msgid "Converts a file URL to a system file name."
msgstr "Prevedie adresu URL súboru na názov systémového súboru."
+#. Gyuop
+#: 03120313.xhp
+msgctxt ""
+"03120313.xhp\n"
+"hd_id3143267\n"
+"help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
#. i96Ej
#: 03120313.xhp
msgctxt ""
@@ -33199,6 +33712,15 @@ msgctxt ""
msgid "ConvertFromURL(filename)"
msgstr "ConvertFromURL(Názov súboru)"
+#. wq6Jz
+#: 03120313.xhp
+msgctxt ""
+"03120313.xhp\n"
+"hd_id3159157\n"
+"help.text"
+msgid "Return value:"
+msgstr "Návratová hodnota:"
+
#. ESx7C
#: 03120313.xhp
msgctxt ""
@@ -33208,6 +33730,15 @@ msgctxt ""
msgid "String"
msgstr "Reťazec"
+#. GmBuj
+#: 03120313.xhp
+msgctxt ""
+"03120313.xhp\n"
+"hd_id3143270\n"
+"help.text"
+msgid "Parameters:"
+msgstr "Paremetre:"
+
#. 8R25b
#: 03120313.xhp
msgctxt ""
@@ -33253,6 +33784,15 @@ msgctxt ""
msgid "Returns an array of substrings from a string expression."
msgstr "Rozdelí reťazec na pole podreťazcov."
+#. fqDbn
+#: 03120314.xhp
+msgctxt ""
+"03120314.xhp\n"
+"hd_id3149177\n"
+"help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
#. FGCEc
#: 03120314.xhp
msgctxt ""
@@ -33262,6 +33802,15 @@ msgctxt ""
msgid "Split (Text As String, delimiter, number)"
msgstr "Split (Text As String, Oddeľovač, Číslo)"
+#. XdWY5
+#: 03120314.xhp
+msgctxt ""
+"03120314.xhp\n"
+"hd_id3149763\n"
+"help.text"
+msgid "Return value:"
+msgstr "Návratová hodnota:"
+
#. BNdCD
#: 03120314.xhp
msgctxt ""
@@ -33271,6 +33820,15 @@ msgctxt ""
msgid "String"
msgstr "Reťazec"
+#. G7w77
+#: 03120314.xhp
+msgctxt ""
+"03120314.xhp\n"
+"hd_id3145315\n"
+"help.text"
+msgid "Parameters:"
+msgstr "Paremetre:"
+
#. PRupM
#: 03120314.xhp
msgctxt ""
@@ -33298,6 +33856,15 @@ msgctxt ""
msgid "<emph>number (optional):</emph> The number of substrings that you want to return."
msgstr "<emph>Číslo (nepovinné):</emph> Počet podreťazcov, ktoré chcete vrátiť."
+#. XZAoD
+#: 03120314.xhp
+msgctxt ""
+"03120314.xhp\n"
+"hd_id3150398\n"
+"help.text"
+msgid "Example:"
+msgstr "Príklad:"
+
#. 9qGtg
#: 03120315.xhp
msgctxt ""
@@ -33334,6 +33901,15 @@ msgctxt ""
msgid "Returns a string from a number of substrings in a string array."
msgstr "Vráti reťazec zložený z niekoľko podreťazcov umiestnených v poli."
+#. Tavaa
+#: 03120315.xhp
+msgctxt ""
+"03120315.xhp\n"
+"hd_id3159414\n"
+"help.text"
+msgid "Syntax:"
+msgstr "Syntax:"
+
#. FrGPB
#: 03120315.xhp
msgctxt ""
@@ -33343,6 +33919,15 @@ msgctxt ""
msgid "Join (Text As String Array, delimiter)"
msgstr "Join (Text As String Array, Oddeľovač)"
+#. zKGLo
+#: 03120315.xhp
+msgctxt ""
+"03120315.xhp\n"
+"hd_id3150400\n"
+"help.text"
+msgid "Return value:"
+msgstr "Návratová hodnota:"
+
#. Sx96w
#: 03120315.xhp
msgctxt ""
@@ -33352,6 +33937,15 @@ msgctxt ""
msgid "String"
msgstr "Reťazec"
+#. uMb7W
+#: 03120315.xhp
+msgctxt ""
+"03120315.xhp\n"
+"hd_id3148798\n"
+"help.text"
+msgid "Parameters:"
+msgstr "Paremetre:"
+
#. sEXB3
#: 03120315.xhp
msgctxt ""
@@ -33370,6 +33964,15 @@ msgctxt ""
msgid "<emph>delimiter (optional):</emph> A string character that is used to separate the substrings in the resulting string. The default delimiter is the space character. If delimiter is a string of length zero \"\", the substrings are joined without separator."
msgstr "<emph>Oddeľovač (nepovinné):</emph> Reťazec, ktorý je vo výslednom reťazci používaný k oddeleniu reťazcov. Začiatočný oddeľovač je medzera. Ak je oddeľovačom prázdny reťazec \"\" (teda reťazec nulovej dĺžky), tak pod-reťazce budú spojené bez oddeľovača."
+#. rYFAB
+#: 03120315.xhp
+msgctxt ""
+"03120315.xhp\n"
+"hd_id3154218\n"
+"help.text"
+msgid "Example:"
+msgstr "Príklad:"
+
#. u25ah
#: 03120400.xhp
msgctxt ""
@@ -33487,14 +34090,14 @@ msgctxt ""
msgid "Parameters:"
msgstr "Paremetre:"
-#. KqLff
+#. jDRQw
#: 03120401.xhp
msgctxt ""
"03120401.xhp\n"
"par_id3153126\n"
"help.text"
-msgid "<emph>Start: </emph>A numeric expression that marks the position in a string where the search for the specified substring starts. If you omit this parameter, the search starts at the first character of the string. The minimum allowed value is 1. The maximum allowed value is 2,147,483,648."
-msgstr ""
+msgid "<emph>Start: </emph>A numeric expression that marks the position in a string where the search for the specified substring starts. If you omit this parameter, the search starts at the first character of the string. The maximum allowed value is 65535."
+msgstr "<emph>Začiatok: </emph> Číselný výraz, ktorý označuje pozíciu v reťazci, kde začína hľadanie podreťazca. Pokiaľ tento parameter vynecháme, hľadanie začne na prvom znaku. Maximálna povolená hodnota je 65535."
#. SnP3c
#: 03120401.xhp
@@ -38734,96 +39337,6 @@ msgctxt ""
msgid "<ahelp hid=\"SFX2_LISTBOX_RID_SFX_TP_MACROASSIGN_LB_SCRIPTTYPE\">Select the macro that you want to assign.</ahelp>"
msgstr "<ahelp hid=\"SFX2_LISTBOX_RID_SFX_TP_MACROASSIGN_LB_SCRIPTTYPE\">Vyberie makro, ktoré chcete priradiť.</ahelp>"
-#. Ug7AF
-#: Compiler_options.xhp
-msgctxt ""
-"Compiler_options.xhp\n"
-"tit\n"
-"help.text"
-msgid "Compiler Options"
-msgstr ""
-
-#. 4BZ89
-#: Compiler_options.xhp
-msgctxt ""
-"Compiler_options.xhp\n"
-"bm_id681592403821304\n"
-"help.text"
-msgid "<bookmark_value>Compiler Options</bookmark_value> <bookmark_value>Runtime conditions</bookmark_value>"
-msgstr ""
-
-#. xtwLp
-#: Compiler_options.xhp
-msgctxt ""
-"Compiler_options.xhp\n"
-"hd_id951592401835244\n"
-"help.text"
-msgid "<variable id=\"compileroptions\"><link href=\"text/sbasic/shared/Compiler_options.xhp\" name=\"Compiler Options\">Compiler Options, Runtime Conditions</link></variable>"
-msgstr ""
-
-#. PEuT6
-#: Compiler_options.xhp
-msgctxt ""
-"Compiler_options.xhp\n"
-"N0084\n"
-"help.text"
-msgid "Compiler options specified at the module level affect %PRODUCTNAME <emph>Basic compiler checks</emph> and error messages. Basic syntax as well as Basic set of instructions can be different according to the options that are in use. The less <literal>Option</literal>, the easiest and tolerant %PRODUCTNAME Basic language is. The more <literal>Option</literal>, the richer and controlled Basic language gets."
-msgstr ""
-
-#. auPDi
-#: Compiler_options.xhp
-msgctxt ""
-"Compiler_options.xhp\n"
-"par_id141592406254504\n"
-"help.text"
-msgid "Compiler options must be specified before the executable program code in a module."
-msgstr ""
-
-#. U5B8L
-#: Compiler_options.xhp
-msgctxt ""
-"Compiler_options.xhp\n"
-"par_id491585753339474\n"
-"help.text"
-msgid "<image src=\"media/helpimg/sbasic/Option_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Option Statement diagram</alt></image>"
-msgstr ""
-
-#. AXgWX
-#: Compiler_options.xhp
-msgctxt ""
-"Compiler_options.xhp\n"
-"hd_id331592403410631\n"
-"help.text"
-msgid "Option Private Module"
-msgstr ""
-
-#. DeBTh
-#: Compiler_options.xhp
-msgctxt ""
-"Compiler_options.xhp\n"
-"par_id161592405163812\n"
-"help.text"
-msgid "Specifies that the scope of the module is that of the Basic library it belongs to."
-msgstr ""
-
-#. 4fh7R
-#: Compiler_options.xhp
-msgctxt ""
-"Compiler_options.xhp\n"
-"par_id141592408035462\n"
-"help.text"
-msgid "Options specified at the module level also affect %PRODUCTNAME <emph>Basic runtime conditions</emph>. The behaviour of %PRODUCTNAME Basic instructions can differ."
-msgstr ""
-
-#. cGCiF
-#: Compiler_options.xhp
-msgctxt ""
-"Compiler_options.xhp\n"
-"par_id291592407073335\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/property.xhp\" name=\"Property statement\">Property statement</link>"
-msgstr ""
-
#. ZbXw2
#: ErrVBA.xhp
msgctxt ""
@@ -38905,13 +39418,13 @@ msgctxt ""
msgid "to describe the error and possible solutions"
msgstr ""
-#. QaZUT
+#. AbB9s
#: ErrVBA.xhp
msgctxt ""
"ErrVBA.xhp\n"
"N0017\n"
"help.text"
-msgid "The VBA <literal>Err</literal> object has the following properties and methods:"
+msgid "VBA <literal>Err</literal> object has the following properties and methods:"
msgstr ""
#. ivkYo
@@ -38923,22 +39436,22 @@ msgctxt ""
msgid "Properties"
msgstr ""
-#. FtD5A
+#. FSwVh
#: ErrVBA.xhp
msgctxt ""
"ErrVBA.xhp\n"
"N0020\n"
"help.text"
-msgid "The <emph>Description</emph> property gives the nature of the error. <emph>Description</emph> details the various reasons that may be the cause of the error. Ideally, it provides the multiple course of actions to help solve the issue and prevent its reoccurrence. The Basic alias is the <link href=\"text/sbasic/shared/03050300.xhp\" name=\"Error function\">Error</link> function for %PRODUCTNAME predefined errors."
+msgid "<emph>Description</emph> property gives the nature of the error. It details the various reasons that may cause the error. Ideally, it provides the multiple course of actions to help solve the issue and prevent its reoccurrence. Its alias is Basic <link href=\"text/sbasic/shared/03050300.xhp\" name=\"Error function\">Error</link> function for %PRODUCTNAME predefined errors."
msgstr ""
-#. jfSHu
+#. PjWUG
#: ErrVBA.xhp
msgctxt ""
"ErrVBA.xhp\n"
"N0022\n"
"help.text"
-msgid "The error code associated with the error. <literal>Err</literal> object default property is <emph>Number</emph>. The %PRODUCTNAME Basic alias is the <link href=\"text/sbasic/shared/03050200.xhp\" name=\"Err\">Err</link> function."
+msgid "This the error code associated with the error. <literal>Err</literal> object default property is <emph>Number</emph>. Its alias is %PRODUCTNAME Basic <link href=\"text/sbasic/shared/03050200.xhp\" name=\"Err\">Err</link> function."
msgstr ""
#. NJEmn
@@ -38959,22 +39472,22 @@ msgctxt ""
msgid "Methods"
msgstr ""
-#. y5Ne4
+#. 8sWBq
#: ErrVBA.xhp
msgctxt ""
"ErrVBA.xhp\n"
"N0027\n"
"help.text"
-msgid "Resets description, <link href=\"text/sbasic/shared/03050100.xhp\" name=\"error line\">Erl</link>, number and source properties of current error. The %PRODUCTNAME Basic alias is the <link href=\"text/sbasic/shared/03050500.xhp\" name=\"Resume statement\">Resume</link> statement."
+msgid "Resets description, <link href=\"text/sbasic/shared/03050100.xhp\" name=\"error line\">Erl</link>, number and source properties of current error. Its alias is %PRODUCTNAME Basic <link href=\"text/sbasic/shared/03050500.xhp\" name=\"Resume statement\">Resume</link> statement."
msgstr ""
-#. jnyJG
+#. UEGkA
#: ErrVBA.xhp
msgctxt ""
"ErrVBA.xhp\n"
"N0029\n"
"help.text"
-msgid "Throws user-defined errors or predefined errors. The %PRODUCTNAME Basic alias is the <link href=\"text/sbasic/shared/03050200.xhp\" name=\"Error statement\">Error</link> statement."
+msgid "Throws user-defined errors or predefined errors. Its alias is %PRODUCTNAME Basic <link href=\"text/sbasic/shared/03050200.xhp\" name=\"Error statement\">Error</link> statement."
msgstr ""
#. EyCJv
@@ -38986,13 +39499,13 @@ msgctxt ""
msgid "Parameters"
msgstr ""
-#. 9a9P9
+#. 6Rdnc
#: ErrVBA.xhp
msgctxt ""
"ErrVBA.xhp\n"
"N0031\n"
"help.text"
-msgid "<emph>Number</emph>: A user-defined or predefined error code to be raised."
+msgid "<emph>Number</emph> A user-defined or predefined error code to be raised."
msgstr ""
#. DoFG8
@@ -39004,31 +39517,31 @@ msgctxt ""
msgid "Error code range 0-2000 is reserved for %PRODUCTNAME Basic. User-defined errors may start from higher values in order to prevent collision with %PRODUCTNAME Basic future developments."
msgstr ""
-#. VAmhX
+#. qoAQE
#: ErrVBA.xhp
msgctxt ""
"ErrVBA.xhp\n"
"N0033\n"
"help.text"
-msgid "<emph>Source</emph>: The name of the routine raising the error. A name in the form of \"myLibrary.myModule.myProc\" is recommended."
+msgid "<emph>Source</emph> The name of the routine raising the error. A name in the form of \"myLibrary.myModule.myProc\" is recommended."
msgstr ""
-#. wFqtB
+#. kukgW
#: ErrVBA.xhp
msgctxt ""
"ErrVBA.xhp\n"
"N0034\n"
"help.text"
-msgid "<emph>Description</emph>: A description of the problem leading to stop the running process, accompanied with the various reasons that may cause it. A detailed list of the possible course of actions that may help solve the problem is recommended."
+msgid "<emph>Description</emph> A description of the problem leading to stop the running process, accompanied with the various reasons that may cause it. A detailed list of the possible course of actions that may help solve the problem is recommended."
msgstr ""
-#. q9uAh
+#. 3XjnB
#: ErrVBA.xhp
msgctxt ""
"ErrVBA.xhp\n"
"N0041\n"
"help.text"
-msgid "Err.Raise 2020, Description:=\"This is an intended user-defined error …\""
+msgid "Err.Raise 2020, Description:=\"This is an intented user-defined error …\""
msgstr ""
#. vuP6g
@@ -39247,13 +39760,13 @@ msgctxt ""
msgid "<literal>0</literal>: Resets error information and re-executes the instruction that caused the error. <literal>0</literal> is optional."
msgstr ""
-#. fakJ2
+#. uukh4
#: Resume.xhp
msgctxt ""
"Resume.xhp\n"
"par_id331586090532804\n"
"help.text"
-msgid "<emph>label</emph>: Resets error information and resumes execution at the specified label of the current subroutine."
+msgid "<emph>label: </emph>: Resets error information and resumes execution at the specified label of the current subroutine."
msgstr ""
#. 7NaeS
@@ -39364,13 +39877,13 @@ msgctxt ""
msgid "Use <literal>Resume Next</literal>, for example, when reporting anomalies encountered for an iterating process that must not be interrupted. In which case multiple handling routines may be required."
msgstr ""
-#. AeVfB
+#. 4NKFt
#: Resume.xhp
msgctxt ""
"Resume.xhp\n"
"par_id461586091018138\n"
"help.text"
-msgid "Using <literal>Resume</literal> without parameters to re-execute the faulty instruction can fit certain situations. However that may cause a never ending loop."
+msgid "Using <literal>Resume</literal> without parameters to re-execute the faulty instruction can fit certain situations. However that may cause a neverending loop."
msgstr ""
#. t97uD
@@ -39463,6 +39976,24 @@ msgctxt ""
msgid "Function MySQRTPI(arg as double) as double"
msgstr ""
+#. LxEYt
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"bas_id731592358361242\n"
+"help.text"
+msgid "Dim oService as Object"
+msgstr ""
+
+#. GszLy
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"bas_id971592358368906\n"
+"help.text"
+msgid "oService = createUNOService(\"com.sun.star.sheet.addin.Analysis\")"
+msgstr ""
+
#. HHyMW
#: calc_functions.xhp
msgctxt ""
@@ -39472,6 +40003,15 @@ msgctxt ""
msgid "MySQRTPI = oService.getSqrtPi(arg)"
msgstr ""
+#. AByBR
+#: calc_functions.xhp
+msgctxt ""
+"calc_functions.xhp\n"
+"bas_id451592358385346\n"
+"help.text"
+msgid "End Function"
+msgstr ""
+
#. emGWD
#: calc_functions.xhp
msgctxt ""
@@ -40012,13 +40552,13 @@ msgctxt ""
msgid "IMSECH"
msgstr ""
-#. 8Dtdh
+#. DL5Fs
#: calc_functions.xhp
msgctxt ""
"calc_functions.xhp\n"
"par_id871592355721957\n"
"help.text"
-msgid "IMSIN"
+msgid "Imsin"
msgstr ""
#. LnpEu
@@ -40606,13 +41146,13 @@ msgctxt ""
msgid "Running <literal>RmDir</literal> command in VBA mode. In VBA only empty directories are removed by <literal>RmDir</literal> while %PRODUCTNAME Basic removes a directory recursively."
msgstr ""
-#. KLkKY
+#. 5GFEr
#: compatibilitymode.xhp
msgctxt ""
"compatibilitymode.xhp\n"
"N0125\n"
"help.text"
-msgid "Changing behavior of Basic <literal>Dir</literal> command. The directory flag (16) for the <literal>Dir</literal> command means that only directories are returned in %PRODUCTNAME Basic, while in VBA normal files and directories are returned."
+msgid "Changing behaviour of Basic <literal>Dir</literal> command. The directory flag (16) for the <literal>Dir</literal> command means that only directories are returned in %PRODUCTNAME Basic, while in VBA normal files and directories are returned."
msgstr ""
#. piCTC
@@ -40849,204 +41389,6 @@ msgctxt ""
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 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 ""
-#. QF4Ds
-#: conventions.xhp
-msgctxt ""
-"conventions.xhp\n"
-"tit\n"
-"help.text"
-msgid "Syntax Diagrams"
-msgstr ""
-
-#. CkdjC
-#: conventions.xhp
-msgctxt ""
-"conventions.xhp\n"
-"bm_id861593777289558\n"
-"help.text"
-msgid "<bookmark_value>Syntax diagrams; How to read</bookmark_value> <bookmark_value>Statements syntax;How to read</bookmark_value> <bookmark_value>Typographical conventions</bookmark_value>"
-msgstr ""
-
-#. VTTA3
-#: conventions.xhp
-msgctxt ""
-"conventions.xhp\n"
-"hd_id221543446540070\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/conventions.xhp\" name=\"conventions\">How to Read Syntax Diagrams and Statements</link>"
-msgstr ""
-
-#. jJGWn
-#: conventions.xhp
-msgctxt ""
-"conventions.xhp\n"
-"par_id601593699108443\n"
-"help.text"
-msgid "%PRODUCTNAME Basic statements use syntax diagrams and textual conventions that follow these typographical rules:"
-msgstr ""
-
-#. ZnMxE
-#: conventions.xhp
-msgctxt ""
-"conventions.xhp\n"
-"par_id158193699546735\n"
-"help.text"
-msgid "%PRODUCTNAME Basic keywords or functions use proper casing: Call, DimArray, InputBox, Property."
-msgstr ""
-
-#. ny9xr
-#: conventions.xhp
-msgctxt ""
-"conventions.xhp\n"
-"par_id711593699548486\n"
-"help.text"
-msgid "Lowercase characters indicate information to supply: end, expression, start, variable."
-msgstr ""
-
-#. 6cDAC
-#: conventions.xhp
-msgctxt ""
-"conventions.xhp\n"
-"par_id881593760345504\n"
-"help.text"
-msgid "The syntax of a %PRODUCTNAME Basic one line statement is illustrated herewith:"
-msgstr ""
-
-#. 8Co5j
-#: conventions.xhp
-msgctxt ""
-"conventions.xhp\n"
-"hd_id871593700670279\n"
-"help.text"
-msgid "Diagram example"
-msgstr ""
-
-#. 5AfpR
-#: conventions.xhp
-msgctxt ""
-"conventions.xhp\n"
-"par_id181593699574635\n"
-"help.text"
-msgid "Basic statement diagrams start and end with double vertical bars,"
-msgstr ""
-
-#. oNAUQ
-#: conventions.xhp
-msgctxt ""
-"conventions.xhp\n"
-"par_id711596399548486\n"
-"help.text"
-msgid "Loops indicate a possible repetition, an optional separator may be present,"
-msgstr ""
-
-#. qBArU
-#: conventions.xhp
-msgctxt ""
-"conventions.xhp\n"
-"par_id541593706654897\n"
-"help.text"
-msgid "Rectangles denote subsequent diagram fragments,"
-msgstr ""
-
-#. MgRRZ
-#: conventions.xhp
-msgctxt ""
-"conventions.xhp\n"
-"par_id251593706717957\n"
-"help.text"
-msgid "Diagram fragments extremities exhibit single vertical bars."
-msgstr ""
-
-#. 2ERcw
-#: conventions.xhp
-msgctxt ""
-"conventions.xhp\n"
-"par_id831588865616326\n"
-"help.text"
-msgid "<image src=\"media/helpimg/sbasic/a_statement.svg\" id=\"img_id651588865616326\"><alt id=\"alt_id281588865616326\">syntax of a statement</alt></image>"
-msgstr ""
-
-#. QDyRr
-#: conventions.xhp
-msgctxt ""
-"conventions.xhp\n"
-"par_id411579301639711\n"
-"help.text"
-msgid "A set of %PRODUCTNAME Basic statements - with optional labels - is using a colon <literal>:</literal> sign to separate them, it can be terminated with an optional comment. <literal>REM</literal> or an apostrophe sign introduce a comment."
-msgstr ""
-
-#. fR7p7
-#: conventions.xhp
-msgctxt ""
-"conventions.xhp\n"
-"par_id931593707147102\n"
-"help.text"
-msgid "<image src=\"media/helpimg/sbasic/comment_fragment.svg\" id=\"img_id191593707147102\"><alt id=\"alt_id111593707147102\">diagram fragment</alt></image>"
-msgstr ""
-
-#. tMPo2
-#: conventions.xhp
-msgctxt ""
-"conventions.xhp\n"
-"hd_id71593700691968\n"
-"help.text"
-msgid "Textual example"
-msgstr ""
-
-#. vtggd
-#: conventions.xhp
-msgctxt ""
-"conventions.xhp\n"
-"par_id181593700546735\n"
-"help.text"
-msgid "<emph>[opt1|opt2|opt3]</emph> Items inside brackets are optional, alternatives are indicated with a vertical bar,"
-msgstr ""
-
-#. ap6xE
-#: conventions.xhp
-msgctxt ""
-"conventions.xhp\n"
-"par_id181593699546735\n"
-"help.text"
-msgid "<emph>case[[sep]…]</emph> An ellipsis indicates a possible repetition, an optional separator may be specified,"
-msgstr ""
-
-#. FEGF3
-#: conventions.xhp
-msgctxt ""
-"conventions.xhp\n"
-"par_id712593699548486\n"
-"help.text"
-msgid "<emph>{choice1|choice2}</emph> Items inside curly braces are compulsory, alternatives are indicated with a vertical bar."
-msgstr ""
-
-#. VFKcU
-#: conventions.xhp
-msgctxt ""
-"conventions.xhp\n"
-"par_id411593701639711\n"
-"help.text"
-msgid "A set of %PRODUCTNAME Basic statements - with optional labels - is using a colon <literal>:</literal> sign to separate them, it can be terminated with an optional comment. <literal>REM</literal> or an apostrophe sign introduce a comment."
-msgstr ""
-
-#. RUhNn
-#: conventions.xhp
-msgctxt ""
-"conventions.xhp\n"
-"N0018\n"
-"help.text"
-msgid "GoTo there ' skip first statement"
-msgstr ""
-
-#. oCE77
-#: conventions.xhp
-msgctxt ""
-"conventions.xhp\n"
-"N0019\n"
-"help.text"
-msgid "here: Print 1, : there: Print 2 REM explanatory text here"
-msgstr ""
-
#. 7pf8S
#: enum.xhp
msgctxt ""
@@ -41200,13 +41542,13 @@ msgctxt ""
msgid "%PRODUCTNAME Basic syntax fragments."
msgstr ""
-#. 4eH7M
+#. ChERt
#: fragments.xhp
msgctxt ""
"fragments.xhp\n"
"hd_id431587045941514\n"
"help.text"
-msgid "<variable id=\"argumenth2\"><link href=\"text/sbasic/shared/fragments.xhp\" name=\"arguments in Function, Sub and Property statements\"/>argument fragment</variable>"
+msgid "<variable id=\"argumenth2\"><link href=\"text/sbasic/shared/fragments.xhp\" name=\"arguments in Function, Sub and Property statements\"/></variable>argument fragment"
msgstr ""
#. pfHq8
@@ -41362,13 +41704,13 @@ msgctxt ""
msgid "Multiple dimensions for an array are denoted using comma (<emph>,</emph>) sign."
msgstr ""
-#. E9UTU
+#. DeXti
#: fragments.xhp
msgctxt ""
"fragments.xhp\n"
"hd_id231587046013458\n"
"help.text"
-msgid "<variable id=\"typenameh4\">typename fragment</variable>"
+msgid "<variable id=\"typenameh4\"><link href=\"text/sbasic/shared/fragments.xhp\" name=\"data types fragment\">typename fragment</link></variable>"
msgstr ""
#. AqfYj
@@ -41380,13 +41722,13 @@ msgctxt ""
msgid "<image src=\"media/helpimg/sbasic/typename_fragment.svg\" id=\"img_id4157296484514\"><alt id=\"alt_id15152796484515\">primitive data types fragment</alt></image>"
msgstr ""
-#. BSD4e
+#. dM8Yg
#: fragments.xhp
msgctxt ""
"fragments.xhp\n"
"hd_id231587046013459\n"
"help.text"
-msgid "<variable id=\"charh4\">char fragment</variable>"
+msgid "<variable id=\"charh4\"><link href=\"text/sbasic/shared/fragments.xhp\" name=\"type declaration characters fragment\">char fragment</link></variable>"
msgstr ""
#. JFwPg
@@ -41857,13 +42199,13 @@ msgctxt ""
msgid "Property Statement"
msgstr ""
-#. CxW74
+#. 4vJCy
#: property.xhp
msgctxt ""
"property.xhp\n"
"N0183\n"
"help.text"
-msgid "A property, also called field or attribute, characterizes a given object or piece of information. Properties can be used to control access to data. It is common use to include instructions at setting or reading time of properties. Code can vary from simple assignment to complex context dependent routines. Using <emph>Get</emph>, <emph>Let</emph> or <emph>Set</emph> accessors enforces properties' consistency when necessary."
+msgid "A property, also called field or attribute, characterizes a given object or piece of information. Properties can be used to control access to data. It is common use to include instructions at setting or reading time of properties. Code can vary from simple assignment to complex context dependant routines. Using <emph>Get</emph>, <emph>Let</emph> or <emph>Set</emph> accessers enforces properties' consistency when necessary."
msgstr ""
#. hD9fA
diff --git a/source/sk/helpcontent2/source/text/sbasic/shared/03.po b/source/sk/helpcontent2/source/text/sbasic/shared/03.po
index 7355b8b113b..11c562f905a 100644
--- a/source/sk/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/sk/helpcontent2/source/text/sbasic/shared/03.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-07-21 11:19+0200\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
"PO-Revision-Date: 2018-07-12 14:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -61,69 +61,6 @@ msgctxt ""
msgid "<bookmark_value>BASIC Euro library</bookmark_value>"
msgstr ""
-#. 9edb6
-#: lib_euro.xhp
-msgctxt ""
-"lib_euro.xhp\n"
-"hd_id841593518085848\n"
-"help.text"
-msgid "Description"
-msgstr ""
-
-#. DkBkc
-#: lib_euro.xhp
-msgctxt ""
-"lib_euro.xhp\n"
-"par_id921593518140986\n"
-"help.text"
-msgid "The <emph>Euro</emph> library is used by the <emph>Euro converter…</emph> wizard."
-msgstr ""
-
-#. uAg7T
-#: lib_euro.xhp
-msgctxt ""
-"lib_euro.xhp\n"
-"par_id481593518247400\n"
-"help.text"
-msgid "Its entry points are:"
-msgstr ""
-
-#. SBNCb
-#: lib_euro.xhp
-msgctxt ""
-"lib_euro.xhp\n"
-"par_id381593519742529\n"
-"help.text"
-msgid "Selecting the <emph>Euro Converter…</emph> wizard loads the following libraries in memory:"
-msgstr ""
-
-#. TGAHA
-#: lib_euro.xhp
-msgctxt ""
-"lib_euro.xhp\n"
-"par_id691593519646426\n"
-"help.text"
-msgid "Basic routine name conflicts may exist when multiple Basic libraries are loaded in memory."
-msgstr ""
-
-#. 5NFbA
-#: lib_euro.xhp
-msgctxt ""
-"lib_euro.xhp\n"
-"par_id1001593520257636\n"
-"help.text"
-msgid "ImportWizard and <link href=\"text/sbasic/shared/03/lib_tools.xhp\" name=\"Tools library\">Tools</link> Basic libraries"
-msgstr ""
-
-#. JbBaB
-#: lib_euro.xhp
-msgctxt ""
-"lib_euro.xhp\n"
-"par_id251593518523704\n"
-"help.text"
-msgid "<link href=\"text/shared/autopi/01150000.xhp\" name=\"Euro Converter Wizard\">Euro Converter Wizard</link> describes what the <emph>Euro</emph> library does."
-msgstr ""
-
#. G8mp2
#: lib_formwizard.xhp
msgctxt ""
@@ -169,96 +106,6 @@ msgctxt ""
msgid "<bookmark_value>BASIC Gimmicks library</bookmark_value>"
msgstr ""
-#. EwqqW
-#: lib_importwiz.xhp
-msgctxt ""
-"lib_importwiz.xhp\n"
-"tit\n"
-"help.text"
-msgid "ImportWizard Library"
-msgstr ""
-
-#. stDZt
-#: lib_importwiz.xhp
-msgctxt ""
-"lib_importwiz.xhp\n"
-"hd_id31529004750471\n"
-"help.text"
-msgid "<variable id=\"importwiz_lib\"><link href=\"text/sbasic/shared/03/lib_importwiz.xhp\" name=\"ImportWizard library\">The <item type=\"literal\">ImportWizard</item> Library</link></variable>"
-msgstr ""
-
-#. pbesX
-#: lib_importwiz.xhp
-msgctxt ""
-"lib_importwiz.xhp\n"
-"bm_id231529070133574\n"
-"help.text"
-msgid "<bookmark_value>BASIC ImportWizard library</bookmark_value>"
-msgstr ""
-
-#. GFoap
-#: lib_importwiz.xhp
-msgctxt ""
-"lib_importwiz.xhp\n"
-"hd_id841593518085848\n"
-"help.text"
-msgid "Description"
-msgstr ""
-
-#. asxd6
-#: lib_importwiz.xhp
-msgctxt ""
-"lib_importwiz.xhp\n"
-"par_id921593518140986\n"
-"help.text"
-msgid "The <emph>ImportWizard</emph> library is used by the <emph>Document converter...</emph> wizard."
-msgstr ""
-
-#. FaGZt
-#: lib_importwiz.xhp
-msgctxt ""
-"lib_importwiz.xhp\n"
-"par_id481593518247400\n"
-"help.text"
-msgid "Its entry point is:"
-msgstr ""
-
-#. EyBsL
-#: lib_importwiz.xhp
-msgctxt ""
-"lib_importwiz.xhp\n"
-"par_id381593519742529\n"
-"help.text"
-msgid "Selecting the <emph>Document Converter...</emph> wizard loads the following libraries in memory:"
-msgstr ""
-
-#. vV4TD
-#: lib_importwiz.xhp
-msgctxt ""
-"lib_importwiz.xhp\n"
-"par_id691593519646426\n"
-"help.text"
-msgid "Basic routine name conflicts may exist when multiple Basic libraries are loaded in memory."
-msgstr ""
-
-#. ZCH7G
-#: lib_importwiz.xhp
-msgctxt ""
-"lib_importwiz.xhp\n"
-"par_id1001593520257636\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03/lib_tools.xhp\" name=\"Tools library\">Tools</link> Basic library"
-msgstr ""
-
-#. ZT5z9
-#: lib_importwiz.xhp
-msgctxt ""
-"lib_importwiz.xhp\n"
-"par_id251593518523704\n"
-"help.text"
-msgid "<link href=\"text/shared/autopi/01130000.xhp\" name=\"Document Converter\">Document Converter</link> describes what the <emph>ImportWizard</emph> library does."
-msgstr ""
-
#. UWzWk
#: lib_schedule.xhp
msgctxt ""
@@ -313,60 +160,6 @@ msgctxt ""
msgid "<bookmark_value>BASIC ScriptBindingLibrary library</bookmark_value>"
msgstr ""
-#. Z7iSC
-#: lib_script.xhp
-msgctxt ""
-"lib_script.xhp\n"
-"hd_id841593518085848\n"
-"help.text"
-msgid "Description"
-msgstr ""
-
-#. nnxNN
-#: lib_script.xhp
-msgctxt ""
-"lib_script.xhp\n"
-"par_id921593518140986\n"
-"help.text"
-msgid "The <emph>ScriptBindingLibrary</emph> library only contains dialogs, it is used by <emph>Highlight</emph> %PRODUCTNAME example scripts. Its dialogs are shared by Beanshell, Java and JavaScript example scripts."
-msgstr ""
-
-#. JdxBj
-#: lib_script.xhp
-msgctxt ""
-"lib_script.xhp\n"
-"par_id381593519742529\n"
-"help.text"
-msgid "Running any <emph>Highlight</emph> example script loads the <emph>ScriptBindingLibrary</emph> library in memory."
-msgstr ""
-
-#. 9CZwi
-#: lib_script.xhp
-msgctxt ""
-"lib_script.xhp\n"
-"par_id131593538122154\n"
-"help.text"
-msgid "This library is not used by %PRODUCTNAME Basic."
-msgstr ""
-
-#. Qh7KM
-#: lib_script.xhp
-msgctxt ""
-"lib_script.xhp\n"
-"par_id251593524531077\n"
-"help.text"
-msgid "<link href=\"text/shared/01/06130020.xhp\" name=\"Basic macro selector\">Basic macro selector</link>"
-msgstr ""
-
-#. wJqFF
-#: lib_script.xhp
-msgctxt ""
-"lib_script.xhp\n"
-"par_id721593525163663\n"
-"help.text"
-msgid "Beanshell, Java and JavaScript <link href=\"text/shared/01/06130030.xhp\" name=\"Scripts\">Scripts</link>"
-msgstr ""
-
#. QZNvL
#: lib_template.xhp
msgctxt ""
@@ -654,57 +447,3 @@ msgctxt ""
"help.text"
msgid "<emph>Universal Content Broker</emph> functions and subroutines."
msgstr ""
-
-#. LsR47
-#: lib_wikieditor.xhp
-msgctxt ""
-"lib_wikieditor.xhp\n"
-"tit\n"
-"help.text"
-msgid "WikiEditor Library"
-msgstr ""
-
-#. QDwwy
-#: lib_wikieditor.xhp
-msgctxt ""
-"lib_wikieditor.xhp\n"
-"hd_id31529004750471\n"
-"help.text"
-msgid "<variable id=\"wikieditor_lib\"><link href=\"text/sbasic/shared/03/lib_wikieditor.xhp\" name=\"WikiEditor library\">The <item type=\"literal\">WikiEditor</item> Library</link></variable>"
-msgstr ""
-
-#. mBGxx
-#: lib_wikieditor.xhp
-msgctxt ""
-"lib_wikieditor.xhp\n"
-"bm_id231529070133574\n"
-"help.text"
-msgid "<bookmark_value>BASIC WikiEditor library</bookmark_value>"
-msgstr ""
-
-#. qGFuz
-#: lib_wikieditor.xhp
-msgctxt ""
-"lib_wikieditor.xhp\n"
-"hd_id841593518085848\n"
-"help.text"
-msgid "Description"
-msgstr ""
-
-#. MdATA
-#: lib_wikieditor.xhp
-msgctxt ""
-"lib_wikieditor.xhp\n"
-"par_id921593518140986\n"
-"help.text"
-msgid "The <emph>WikiEditor</emph> library only contains dialogs, it is used by <emph>Wiki Publisher</emph> bundled Java extension."
-msgstr ""
-
-#. k2E85
-#: lib_wikieditor.xhp
-msgctxt ""
-"lib_wikieditor.xhp\n"
-"par_id131593538122154\n"
-"help.text"
-msgid "This library is not used by %PRODUCTNAME Basic."
-msgstr ""
diff --git a/source/sk/helpcontent2/source/text/scalc.po b/source/sk/helpcontent2/source/text/scalc.po
index e97cad2d73c..45c510101ed 100644
--- a/source/sk/helpcontent2/source/text/scalc.po
+++ b/source/sk/helpcontent2/source/text/scalc.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-07-21 11:19+0200\n"
-"PO-Revision-Date: 2020-07-11 09:34+0000\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
+"PO-Revision-Date: 2020-10-16 15:35+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: Slovak <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc/sk/>\n"
"Language: sk\n"
@@ -151,6 +151,15 @@ msgctxt ""
msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Odkazy\">Odkazy</link>"
+#. A9QFv
+#: main0102.xhp
+msgctxt ""
+"main0102.xhp\n"
+"hd_id3148488\n"
+"help.text"
+msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
+msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"Obrázková mapa\">Obrázková mapa</link>"
+
#. pFCu3
#: main0102.xhp
msgctxt ""
@@ -538,15 +547,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"Automatická oprava\">Nastavenie automatickej opravy</link>"
-#. eAavz
-#: main0106.xhp
-msgctxt ""
-"main0106.xhp\n"
-"hd_id3148488\n"
-"help.text"
-msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
-msgstr ""
-
#. ToZU6
#: main0106.xhp
msgctxt ""
@@ -599,7 +599,7 @@ msgctxt ""
"par_id3150398\n"
"help.text"
msgid "<ahelp hid=\".\">Contains commands for manipulating and displaying document windows.</ahelp>"
-msgstr "<ahelp hid=\".uno:WindowList\">Obsahuje príkazy na manipuláciu a zobrazenie okien dokumentov.</ahelp>"
+msgstr "<ahelp hid=\".\">Obsahuje príkazy na manipuláciu a zobrazovanie okien dokumentu.</ahelp>"
#. RHWHH
#: main0112.xhp
@@ -968,7 +968,7 @@ msgctxt ""
"par_id1998962\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Aligns the contents of the cell to the right.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zarovná obsah bunky vpravo.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zarovná obsah bunky doprava.</ahelp>"
#. ZdwVC
#: main0202.xhp
diff --git a/source/sk/helpcontent2/source/text/scalc/00.po b/source/sk/helpcontent2/source/text/scalc/00.po
index 180097d6bcd..375f3439d51 100644
--- a/source/sk/helpcontent2/source/text/scalc/00.po
+++ b/source/sk/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-07-21 11:19+0200\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
"PO-Revision-Date: 2018-11-14 12:10+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -664,22 +664,13 @@ msgctxt ""
msgid "Format Menu"
msgstr "Menu Formát"
-#. TmWCz
+#. HP9LA
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3154685\n"
"help.text"
-msgid "Choose <menuitem>Format - Cells</menuitem>."
-msgstr ""
-
-#. DEPHV
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id61593556839601\n"
-"help.text"
-msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+1</keycode>."
+msgid "<variable id=\"fozelle\">Choose <emph>Format - Cells</emph>.</variable>"
msgstr ""
#. HR2kd
diff --git a/source/sk/helpcontent2/source/text/scalc/01.po b/source/sk/helpcontent2/source/text/scalc/01.po
index fe745459374..51ff71658d0 100644
--- a/source/sk/helpcontent2/source/text/scalc/01.po
+++ b/source/sk/helpcontent2/source/text/scalc/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-09-28 11:22+0200\n"
-"PO-Revision-Date: 2020-09-26 19:35+0000\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
+"PO-Revision-Date: 2020-10-16 15:35+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: Slovak <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc01/sk/>\n"
"Language: sk\n"
@@ -7106,7 +7106,7 @@ msgctxt ""
"par_id3145768\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_DURATION\">Calculates the duration of a fixed interest security in years.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_DURATION\">Spočíta dobu trvania (počet rokov) pre cenný papier s fixnou úrokovou sadzbou.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_DURATION\">Vypočíta trvanie zabezpečenia pevného úroku v rokoch.</ahelp>"
#. voaL4
#: 04060103.xhp
@@ -7286,7 +7286,7 @@ msgctxt ""
"par_id3147524\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_EFFECT\">Calculates the effective annual rate of interest on the basis of the nominal interest rate and the number of interest payments per annum.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_EFFECT\">Spočíta efektívnu ročnú úrokovú mieru na základe nominálnej ročnej úrokovej miery a počtu úrokových platieb za rok.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_EFFECT\">Vypočíta efektívnu ročnú úrokovú mieru na základe nominálnej úrokovej sadzby a počtu splátok úrokov ročne.</ahelp>"
#. GYnim
#: 04060103.xhp
@@ -7358,7 +7358,7 @@ msgctxt ""
"par_id3159190\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GDA\">Returns the depreciation of an asset for a specified period using the arithmetic-declining method.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_GDA\">Vráti odpisy aktív pre špecifikované obdobie pri použití aritmetickej degresívnej metódy.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GDA\">Vráti odpisy majetku za zadané obdobie pomocou metódy aritmetického poklesu zostatku.</ahelp>"
#. pPkDY
#: 04060103.xhp
@@ -7466,7 +7466,7 @@ msgctxt ""
"par_id3148989\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GDA2\">Returns the depreciation of an asset for a specified period using the fixed-declining balance method.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_GDA\">Vráti odpisy aktív pre špecifikované obdobie pri použití aritmetickej degresívnej metódy.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GDA2\">Vráti odpisy majetku za zadané obdobie pomocou metódy pevného poklesu zostatku.</ahelp>"
#. C3b9e
#: 04060103.xhp
@@ -11417,7 +11417,7 @@ msgctxt ""
"par_id3146946\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_COSHYP\">Returns the hyperbolic cosine of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_COSHYP\">Vráti hyperbolický kosínus zadaného čísla.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_COSHYP\">Vráti hyperbolický kosínus čísla.</ahelp>"
#. qXhJu
#: 04060106.xhp
@@ -11687,7 +11687,7 @@ msgctxt ""
"par_id579916\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_COSECANTHYP\">Returns the hyperbolic cosecant of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_COSHYP\">Vráti hyperbolický kosínus zadaného čísla.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_COSECANTHYP\">Vráti hyperbolický kosekans čísla.</ahelp>"
#. qHzpR
#: 04060106.xhp
@@ -11849,7 +11849,7 @@ msgctxt ""
"par_id3151109\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FAKULTAET\">Returns the factorial of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FAKULTAET\">Vracia faktoriál čísla.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_FAKULTAET\">Vráti faktoriál čísla.</ahelp>"
#. kxNxM
#: 04060106.xhp
@@ -12524,7 +12524,7 @@ msgctxt ""
"par_id3154974\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_LN\">Returns the natural logarithm based on the constant e of a number.</ahelp> The constant e has a value of approximately 2.71828182845904."
-msgstr "<ahelp hid=\"HID_FUNC_LN\">Vracia prirodzený logaritmus čísla (založený na konštante e = 2.71828182845904).</ahelp> Konštanta e má hodnotu približne 2.71828182845904."
+msgstr "<ahelp hid=\"HID_FUNC_LN\">Vráti prirodzený logaritmus čísla založený na konštante e.</ahelp> Konštanta e má hodnotu približne 2,71828182845904."
#. GEMgC
#: 04060106.xhp
@@ -12589,13 +12589,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_LOG\">Returns the logarithm of a number to the specified base.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_LOG\">Vracia logaritmus o danom základe zo zadaného čísla.</ahelp>"
-#. uDAq7
+#. ShWCR
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
"par_id3144732\n"
"help.text"
-msgid "LOG(Number [; Base])"
+msgid "LOG(Number[; Base])"
msgstr ""
#. Eiqiq
@@ -12841,15 +12841,6 @@ msgctxt ""
msgid "<item type=\"literal\">Base^Exponent</item>"
msgstr ""
-#. dRQh7
-#: 04060106.xhp
-msgctxt ""
-"04060106.xhp\n"
-"par_id241599040594931\n"
-"help.text"
-msgid "<literal>=POWER(0,0)</literal> returns 1."
-msgstr ""
-
#. D3Ghv
#: 04060106.xhp
msgctxt ""
@@ -13255,13 +13246,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_RUNDEN\">Rounds a number to a certain number of decimal places.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_RUNDEN\">Zaokrúhľuje číslo na určitý počet desatinných miest.</ahelp>"
-#. kj4B7
+#. p64i9
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
"par_id3158182\n"
"help.text"
-msgid "ROUND(Number [; Count])"
+msgid "ROUND(Number[; Count])"
msgstr ""
#. yE5Jb
@@ -13354,13 +13345,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_ABRUNDEN\">Rounds a number down, toward zero, to a certain precision.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_ABRUNDEN\">Zaokrúhľuje dole, smerom k nule, na zadaný počet miest.</ahelp>"
-#. MnKJo
+#. uqe8Y
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
"par_id3146051\n"
"help.text"
-msgid "ROUNDDOWN(Number [; Count])"
+msgid "ROUNDDOWN(Number[; Count])"
msgstr ""
#. EXn4P
@@ -13444,13 +13435,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_AUFRUNDEN\">Rounds a number up, away from zero, to a certain precision.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_AUFRUNDEN\">Zaokrúhli číslo hore (smerom od nuly) na určitý počet desatinných miest.</ahelp>"
-#. Gz3SM
+#. smgCC
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
"par_id3163328\n"
"help.text"
-msgid "ROUNDUP(Number [; Count])"
+msgid "ROUNDUP(Number[; Count])"
msgstr ""
#. x59Ls
@@ -13613,7 +13604,7 @@ msgctxt ""
"par_id408174\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_SECANTHYP\">Returns the hyperbolic secant of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_SINHYP\">Vráti hyperbolický sínus zadaného čísla (uhla).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SECANTHYP\">Vráti hyperbolický sekans čísla.</ahelp>"
#. AHCoy
#: 04060106.xhp
@@ -13739,7 +13730,7 @@ msgctxt ""
"par_id3163426\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_SINHYP\">Returns the hyperbolic sine of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_SINHYP\">Vráti hyperbolický sínus zadaného čísla (uhla).</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SINHYP\">Vráti hyperbolický sínus čísla.</ahelp>"
#. 6JvoA
#: 04060106.xhp
@@ -13921,13 +13912,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_SUMMEWENN\">Adds the cells specified by a given criteria.</ahelp> This function is used to browse a range when you search for a certain value."
msgstr "<ahelp hid=\"HID_FUNC_SUMMEWENN\">Sčíta bunky určené kritériami.</ahelp> Táto funkcia sa používa na prechádzanie oblasti buniek, keď hľadáte určitú hodnotu."
-#. KsFtX
+#. PcPNo
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
"par_id3152028\n"
"help.text"
-msgid "SUMIF(Range; Criteria [; SumRange])"
+msgid "SUMIF(Range; Criteria[; SumRange])"
msgstr ""
#. rYzXG
@@ -14443,13 +14434,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_UMRECHNEN\">Converts between old European national currency and to and from Euros.</ahelp>"
msgstr ""
-#. G7CMF
+#. qh8S5
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
"par_id3143748\n"
"help.text"
-msgid "EUROCONVERT(Value; \"From_currency\"; \"To_currency\" [; full_precision [; triangulation_precision]])"
+msgid "EUROCONVERT(Value; \"From_currency\"; \"To_currency\"[; full_precision][; triangulation_precision])"
msgstr ""
#. 4KJUc
@@ -14551,13 +14542,13 @@ msgctxt ""
msgid "At one time the list of conversion factors included the legacy European currencies and the Euro (see examples below). We suggest using the new function EUROCONVERT for converting these currencies."
msgstr ""
-#. o7nsC
+#. GhdsH
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
"par_id0908200902131191\n"
"help.text"
-msgid "CONVERT_OOO(value; \"text\"; \"text\")"
+msgid "CONVERT_OOO(value;\"text\";\"text\")"
msgstr ""
#. egbGd
@@ -17233,13 +17224,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_VARIATION\">Calculates the points of an exponential trend in an array.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_VARIATION\">Vypočíta body ležiace na exponenciálnej regresívnej krivke.</ahelp>"
-#. GMVAK
+#. 8VMBq
#: 04060107.xhp
msgctxt ""
"04060107.xhp\n"
"par_id3166377\n"
"help.text"
-msgid "GROWTH(DataY [; [ DataX ] [; [ NewDataX ] [; FunctionType ] ] ])"
+msgid "GROWTH(DataY [; DataX [; NewDataX [; FunctionType]]])"
msgstr ""
#. CA3qD
@@ -18988,31 +18979,31 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_WAHL\">Uses an index to return a value from a list of up to 30 values.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_WAHL\">Použije index na vrátenie hodnoty zo zoznamu až 30 hodnôt.</ahelp>"
-#. V8cAu
+#. r7bDk
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id3155425\n"
"help.text"
-msgid "CHOOSE(Index; Value 1 [; Value 2 [; ... [; Value 30]]])"
+msgid "CHOOSE(Index; Value1 [; Value2 [; ... [; Value254]]])"
msgstr ""
-#. CNK7e
+#. dt8SY
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id3144755\n"
"help.text"
-msgid "<emph>Index</emph> is a reference or number between 1 and 30 indicating which value is to be taken from the list."
+msgid "<emph>Index</emph> is a reference or number between 1 and 254 indicating which value is to be taken from the list."
msgstr ""
-#. GGWDt
+#. nR3mX
#: 04060109.xhp
msgctxt ""
"04060109.xhp\n"
"par_id3149939\n"
"help.text"
-msgid "<emph>Value 1, Value 2, ..., Value 30</emph> is the list of values entered as a reference to a cell or as individual values."
+msgid "<emph>Value1, Value2, ..., Value254</emph> is the list of values entered as a reference to a cell or as individual values."
msgstr ""
#. s64Du
@@ -24620,7 +24611,7 @@ msgctxt ""
"par_id3144744\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2DEC\">The result is the decimal number for the binary number entered.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2DEC\">Prevedie zadané číslo v dvojkovej sústave do desiatkovej</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2DEC\">Výsledkom je desiatkové číslo pre zadané binárne číslo.</ahelp>"
#. XAXE3
#: 04060115.xhp
@@ -24737,7 +24728,7 @@ msgctxt ""
"par_id3155951\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2OCT\"> The result is the octal number for the binary number entered.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2OCT\"> Prevedie zadané číslo v dvojkovej sústave do osmičkovej sústavy</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2OCT\">Výsledkom je osmičkové číslo pre zadané binárne číslo.</ahelp>"
#. 8pRVA
#: 04060115.xhp
@@ -24908,7 +24899,7 @@ msgctxt ""
"par_id3149030\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_DEC2HEX\">The result is the hexadecimal number for the decimal number entered.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2HEX\">Prevedie zadané číslo v desiatkovej sústave do šestnástkovej </ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2HEX\">Výsledkom je šestnástkové číslo pre zadané desiatkové číslo.</ahelp>"
#. T8PpC
#: 04060115.xhp
@@ -24971,7 +24962,7 @@ msgctxt ""
"par_id3153920\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_DEC2OCT\">The result is the octal number for the decimal number entered.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2OCT\"> Prevedie zadané číslo v dvojkovej sústave do osmičkovej sústavy</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2OCT\">Výsledkom je osmičkové číslo pre zadané desiatkové číslo.</ahelp>"
#. 5ecSa
#: 04060115.xhp
@@ -25304,7 +25295,7 @@ msgctxt ""
"par_id3150258\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_HEX2BIN\">The result is the binary number for the hexadecimal number entered.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2HEX\">Prevedie zadané číslo v desiatkovej sústave do šestnástkovej </ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_HEX2BIN\">Výsledkom je binárne číslo pre zadané šestnástkové číslo.</ahelp>"
#. S4Zyx
#: 04060115.xhp
@@ -25367,7 +25358,7 @@ msgctxt ""
"par_id3153626\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_HEX2DEC\">The result is the decimal number for the hexadecimal number entered.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2HEX\">Prevedie zadané číslo v desiatkovej sústave do šestnástkovej </ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_HEX2DEC\">Výsledkom je desiatkové číslo pre zadané šestnástkové číslo.</ahelp>"
#. mopAX
#: 04060115.xhp
@@ -25421,7 +25412,7 @@ msgctxt ""
"par_id3153983\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_HEX2OCT\">The result is the octal number for the hexadecimal number entered.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2OCT\"> Prevedie zadané číslo v dvojkovej sústave do osmičkovej sústavy</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_HEX2OCT\">Výsledkom je osmičkové číslo pre zadané šestnástkové číslo.</ahelp>"
#. BoGKD
#: 04060115.xhp
@@ -25907,7 +25898,7 @@ msgctxt ""
"par_id3146853\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_IMLN\">The result is the natural logarithm (to the base e) of a complex number.</ahelp> The constant e has a value of approximately 2.71828182845904."
-msgstr "<ahelp hid=\"HID_FUNC_LN\">Vracia prirodzený logaritmus čísla (založený na konštante e = 2.71828182845904).</ahelp> Konštanta e má hodnotu približne 2.71828182845904."
+msgstr "<ahelp hid=\"HID_AAI_FUNC_IMLN\">Výsledkom je prirodzený logaritmus (so základom e) komplexného čísla.</ahelp> Konštanta e má hodnotu približne 2,71828182845904."
#. 2wQpH
#: 04060116.xhp
@@ -26384,7 +26375,7 @@ msgctxt ""
"par_id3146898\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2BIN\">The result is the binary number for the octal number entered.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2DEC\">Prevedie zadané číslo v dvojkovej sústave do desiatkovej</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2BIN\">Výsledkom je binárne číslo pre zadané osmičkové číslo.</ahelp>"
#. BTUGA
#: 04060116.xhp
@@ -26447,7 +26438,7 @@ msgctxt ""
"par_id3149199\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2DEZ\">The result is the decimal number for the octal number entered.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_BIN2DEC\">Prevedie zadané číslo v dvojkovej sústave do desiatkovej</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2DEZ\">Výsledkom je desiatkové číslo pre zadané osmičkové číslo.</ahelp>"
#. UTGiF
#: 04060116.xhp
@@ -26501,7 +26492,7 @@ msgctxt ""
"par_id3148831\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2HEX\"> The result is the hexadecimal number for the octal number entered.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_DEC2HEX\">Prevedie zadané číslo v desiatkovej sústave do šestnástkovej </ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_OCT2HEX\">Výsledkom je šestnástkové číslo pre zadané osmičkové číslo.</ahelp>"
#. dvEBj
#: 04060116.xhp
@@ -27365,7 +27356,7 @@ msgctxt ""
"par_id3151309\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_FACTDOUBLE\">Returns the double factorial of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FAKULTAET\">Vracia faktoriál čísla.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_FACTDOUBLE\">Vráti dvojitý faktoriál čísla.</ahelp>"
#. BL6DD
#: 04060116.xhp
@@ -27970,13 +27961,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_FUNC_VDB\">Returns the depreciation of an asset for a specified or partial period using a variable declining balance method.</ahelp>"
msgstr "<ahelp hid=\"HID_FUNC_GDA2\">Vráti skutočné odpisy investície pre určené obdobie s použitím metódy rovnomerných odpisov.</ahelp>"
-#. pUVVr
+#. DSd3v
#: 04060118.xhp
msgctxt ""
"04060118.xhp\n"
"par_id3149025\n"
"help.text"
-msgid "VDB(Cost; Salvage; Life; Start; End [; Factor [; NoSwitch]])"
+msgid "VDB(Cost; Salvage; Life; S; End [; Factor [; NoSwitch]])"
msgstr ""
#. zGhDb
@@ -30704,7 +30695,7 @@ msgctxt ""
"par_id3149923\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_MDURATION\">Calculates the modified Macauley duration of a fixed interest security in years.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_DURATION\">Spočíta dobu trvania (počet rokov) pre cenný papier s fixnou úrokovou sadzbou.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_MDURATION\">Vypočíta upravené Macauleyho trvanie zabezpečenia pevného úroku v rokoch.</ahelp>"
#. tGit8
#: 04060119.xhp
@@ -30947,7 +30938,7 @@ msgctxt ""
"par_id3148671\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_NOMINAL\">Calculates the annual nominal rate of interest on the basis of the effective rate and the number of interest payments per annum.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_EFFECT\">Spočíta efektívnu ročnú úrokovú mieru na základe nominálnej ročnej úrokovej miery a počtu úrokových platieb za rok.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_NOMINAL\">Vypočíta ročnú nominálnu úrokovú sadzbu na základe efektívnej sadzby a počtu splátok úrokov ročne.</ahelp>"
#. 6DdxN
#: 04060119.xhp
@@ -32936,7 +32927,7 @@ msgctxt ""
"par_id3150880\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_BETAVERT\">Returns the beta function.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_TVERT\">Vráti t-rozdelenie.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_BETAVERT\">Vráti funkciu beta.</ahelp>"
#. AKfrR
#: 04060181.xhp
@@ -33035,7 +33026,7 @@ msgctxt ""
"par_id2950880\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_BETADIST_MS\">Returns the beta function.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_TVERT\">Vráti t-rozdelenie.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_BETADIST_MS\">Vráti funkciu beta.</ahelp>"
#. qpb3A
#: 04060181.xhp
@@ -34538,7 +34529,7 @@ msgctxt ""
"par_id3149563\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_EXPONVERT\">Returns the exponential distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">Vráti hodnotu záporného binomického rozdelenia.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_EXPONVERT\">Vráti exponenciálne rozdelenie.</ahelp>"
#. MrFDn
#: 04060181.xhp
@@ -34610,7 +34601,7 @@ msgctxt ""
"par_id2949563\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_EXP_DIST_MS\">Returns the exponential distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">Vráti hodnotu záporného binomického rozdelenia.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_EXP_DIST_MS\">Vráti exponenciálne rozdelenie.</ahelp>"
#. VrTRp
#: 04060181.xhp
@@ -34844,7 +34835,7 @@ msgctxt ""
"par_id2855089\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_F_INV_RT\">Returns the inverse right tail of the F distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_TINV\">Vráti inverziu t-rozdelenia.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_F_INV_RT\">Vráti pravú inverznú stranu rozdelenia F.</ahelp>"
#. cZXD3
#: 04060182.xhp
@@ -35150,7 +35141,7 @@ msgctxt ""
"par_id3152981\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FVERT\">Calculates the values of an F distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_WEIBULL\">Vráti hodnotu Weibullovho rozdelenia.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_FVERT\">Vypočíta hodnoty rozdelenia F.</ahelp>"
#. M9VcP
#: 04060182.xhp
@@ -35222,7 +35213,7 @@ msgctxt ""
"par_id2952981\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_F_DIST_LT\">Calculates the values of the left tail of the F distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_TINV\">Vráti inverziu t-rozdelenia.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_F_DIST_LT\">Vypočíta hodnoty ľavej strany rozdelenia F.</ahelp>"
#. kNsgP
#: 04060182.xhp
@@ -35312,7 +35303,7 @@ msgctxt ""
"par_id2852981\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_F_DIST_RT\">Calculates the values of the right tail of the F distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_TINV\">Vráti inverziu t-rozdelenia.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_F_DIST_RT\">Vypočíta hodnoty pravej strany rozdelenia F.</ahelp>"
#. jffhA
#: 04060182.xhp
@@ -35690,7 +35681,7 @@ msgctxt ""
"par_id3155931\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GAMMAVERT\">Returns the values of a Gamma distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_WEIBULL\">Vráti hodnotu Weibullovho rozdelenia.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GAMMAVERT\">Vráti hodnoty rozdelenia gama.</ahelp>"
#. meoeA
#: 04060182.xhp
@@ -35780,7 +35771,7 @@ msgctxt ""
"par_id2406201422414690\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GAMMADIST_MS\">Returns the values of a Gamma distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_WEIBULL\">Vráti hodnotu Weibullovho rozdelenia.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GAMMADIST_MS\">Vráti hodnoty rozdelenia gama.</ahelp>"
#. yftrF
#: 04060182.xhp
@@ -35879,7 +35870,7 @@ msgctxt ""
"par_id3149030\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GAUSS\">Returns the standard normal cumulative distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_NORMINV\">Vráti hodnotu inverzného normálneho rozdelenia.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GAUSS\">Vráti štandardné normálne kumulatívne rozdelenie.</ahelp>"
#. GB3Ci
#: 04060182.xhp
@@ -35951,7 +35942,7 @@ msgctxt ""
"par_id3156257\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GEOMITTEL\">Returns the geometric mean of a sample.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_QUARTILE\">Vráti kvartil zo zadanej množiny dát.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GEOMITTEL\">Vráti geometrický priemer vzorky.</ahelp>"
#. YBnZG
#: 04060182.xhp
@@ -36203,7 +36194,7 @@ msgctxt ""
"par_id3155102\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_HARMITTEL\">Returns the harmonic mean of a data set.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_QUARTILE\">Vráti kvartil zo zadanej množiny dát.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_HARMITTEL\">Vráti harmonický priemer množiny údajov.</ahelp>"
#. EKBXf
#: 04060182.xhp
@@ -36248,7 +36239,7 @@ msgctxt ""
"par_id3159341\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\">Returns the hypergeometric distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">Vráti hodnotu záporného binomického rozdelenia.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\">Vráti hypergeometrické rozdelenie.</ahelp>"
#. BEUMD
#: 04060182.xhp
@@ -36338,7 +36329,7 @@ msgctxt ""
"par_id2959341\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_HYP_GEOM_DIST_MS\">Returns the hypergeometric distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">Vráti hodnotu záporného binomického rozdelenia.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_HYP_GEOM_DIST_MS\">Vráti hypergeometrické rozdelenie.</ahelp>"
#. cr6Cw
#: 04060182.xhp
@@ -37193,7 +37184,7 @@ msgctxt ""
"par_id3145297\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_LOGINV\">Returns the inverse of the lognormal distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_LOGINV\">Vráti hodnotu inverzného logaritmicko-normálneho rozdelenia.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_LOGINV\">Vráti inverznú hodnotu lognormálneho rozdelenia.</ahelp>"
#. kK6DB
#: 04060183.xhp
@@ -37265,7 +37256,7 @@ msgctxt ""
"par_id2901297\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_LOGINV_MS\">Returns the inverse of the lognormal distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_LOGINV\">Vráti hodnotu inverzného logaritmicko-normálneho rozdelenia.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_LOGINV_MS\">Vráti inverznú hodnotu lognormálneho rozdelenia.</ahelp>"
#. Nj7bL
#: 04060183.xhp
@@ -37346,7 +37337,7 @@ msgctxt ""
"par_id3154953\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_LOGNORMVERT\">Returns the values of a lognormal distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_WEIBULL\">Vráti hodnotu Weibullovho rozdelenia.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_LOGNORMVERT\">Vráti hodnoty lognormálneho rozdelenia.</ahelp>"
#. r4obV
#: 04060183.xhp
@@ -37427,7 +37418,7 @@ msgctxt ""
"par_id2904953\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_LOGNORMDIST_MS\">Returns the values of a lognormal distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_WEIBULL\">Vráti hodnotu Weibullovho rozdelenia.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_LOGNORMDIST_MS\">Vráti hodnoty lognormálneho rozdelenia.</ahelp>"
#. ZHrxv
#: 04060183.xhp
@@ -37976,7 +37967,7 @@ msgctxt ""
"par_id3153085\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MODALWERT\">Returns the most common value in a data set.</ahelp> If there are several values with the same frequency, it returns the smallest value. An error occurs when a value doesn't appear twice."
-msgstr "<ahelp hid=\"HID_FUNC_MODALWERT\">Vráti najčastejšiu hodnotu množiny hodnôt.</ahelp> Ak je viacej hodnôt s rovnakou frekvenciou, vráti najmenšiu z nich. Chyba nastane, ak sa žiadna z hodnôt neopakuje."
+msgstr "<ahelp hid=\"HID_FUNC_MODALWERT\">Vráti najbežnejšiu hodnotu v množine údajov.</ahelp> Ak existuje niekoľko hodnôt s rovnakým výskytom, vráti najmenšiu hodnotu. Ak sa žiadna hodnota nevyskytne dvakrát, dôjde k chybe."
#. DFEQv
#: 04060184.xhp
@@ -38021,7 +38012,7 @@ msgctxt ""
"par_id2953085\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MODAL_VALUE_MS\">Returns the most frequently occurring, or repetitive, value in an array or range of data.</ahelp> If there are several values with the same frequency, it returns the smallest value. An error occurs when a value doesn't appear twice."
-msgstr "<ahelp hid=\"HID_FUNC_MODALWERT\">Vráti najčastejšiu hodnotu množiny hodnôt.</ahelp> Ak je viacej hodnôt s rovnakou frekvenciou, vráti najmenšiu z nich. Chyba nastane, ak sa žiadna z hodnôt neopakuje."
+msgstr "<ahelp hid=\"HID_FUNC_MODAL_VALUE_MS\">Vráti najčastejšie sa vyskytujúce alebo opakujúce sa hodnoty v poli alebo oblasti údajov.</ahelp> Ak existuje niekoľko hodnôt s rovnakou frekvenciou, vráti najmenšiu hodnotu. Ak sa žiadna hodnota nevyskytne dvakrát, dôjde k chybe."
#. Y5cCt
#: 04060184.xhp
@@ -38129,7 +38120,7 @@ msgctxt ""
"par_id3155437\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">Returns the negative binomial distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">Vráti hodnotu záporného binomického rozdelenia.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">Vráti záporné binomické rozdelenie.</ahelp>"
#. EokAd
#: 04060184.xhp
@@ -38201,7 +38192,7 @@ msgctxt ""
"par_id2955437\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_NEGBINOMDIST_MS\">Returns the negative binomial density or distribution function.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">Vráti hodnotu záporného binomického rozdelenia.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NEGBINOMDIST_MS\">Vráti zápornú binomickú hustotu pravdepodobnosti alebo distribučnú funkciu.</ahelp>"
#. p5vZX
#: 04060184.xhp
@@ -38291,7 +38282,7 @@ msgctxt ""
"par_id3154634\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_NORMINV\">Returns the inverse of the normal cumulative distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_NORMINV\">Vráti hodnotu inverzného normálneho rozdelenia.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NORMINV\">Vráti inverznú hodnotu k normálnemu kumulatívnemu rozdeleniu.</ahelp>"
#. AUvBi
#: 04060184.xhp
@@ -38363,7 +38354,7 @@ msgctxt ""
"par_id2954634\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_NORMINV_MS\">Returns the inverse of the normal cumulative distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_NORMINV\">Vráti hodnotu inverzného normálneho rozdelenia.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NORMINV_MS\">Vráti inverznú hodnotu k normálnemu kumulatívnemu rozdeleniu.</ahelp>"
#. DVKkN
#: 04060184.xhp
@@ -38435,7 +38426,7 @@ msgctxt ""
"par_id3150386\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_NORMVERT\">Returns the density function or the normal cumulative distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_NORMVERT\">Vráti hustotu normálneho rozdelenia alebo kumulatívneho normálneho rozdelenia.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NORMVERT\">Vráti funkciu hustoty pravdepodobnosti alebo normálne kumulatívne rozdelenie.</ahelp>"
#. Mogit
#: 04060184.xhp
@@ -38525,7 +38516,7 @@ msgctxt ""
"par_id2910386\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_NORMDIST_MS\">Returns the density function or the normal cumulative distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_NORMVERT\">Vráti hustotu normálneho rozdelenia alebo kumulatívneho normálneho rozdelenia.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NORMDIST_MS\">Vráti funkciu hustoty pravdepodobnosti alebo normálne kumulatívne rozdelenie.</ahelp>"
#. kiDFh
#: 04060184.xhp
@@ -38750,7 +38741,7 @@ msgctxt ""
"par_id3154298\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_POISSON\">Returns the Poisson distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_POISSON\">Vráti Poissonovo rozdelenie.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_POISSON\">Vráti Poissonovu distribúciu.</ahelp>"
#. SH95D
#: 04060184.xhp
@@ -38822,7 +38813,7 @@ msgctxt ""
"par_id2954298\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_POISSON_DIST_MS\">Returns the Poisson distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_POISSON\">Vráti Poissonovo rozdelenie.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_POISSON_DIST_MS\">Vráti Poissonovu distribúciu.</ahelp>"
#. JHGHg
#: 04060184.xhp
@@ -38894,7 +38885,7 @@ msgctxt ""
"par_id3154940\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_QUANTIL\">Returns the alpha-percentile of data values in an array.</ahelp> A percentile returns the scale value for a data series which goes from the smallest (Alpha=0) to the largest value (alpha=1) of a data series. For <item type=\"literal\">Alpha</item> = 25%, the percentile means the first quartile; <item type=\"literal\">Alpha</item> = 50% is the MEDIAN."
-msgstr "<ahelp hid=\"HID_FUNC_QUANTIL\">Vráti alfa-percentil hodnoty dát v matici.</ahelp> Funkcia PERCENTILE vracia stupnicu hodnôt pre série dát, ktoré idú od najmenšej (Alpha=0) po najväčšiu hodnotu (alpha=1). Pre <item type=\"literal\">Alpha</item> = 25%,percentile počíta prvú štvrtinu; <item type=\"literal\">Alpha</item> = 50% je MEDIAN."
+msgstr "<ahelp hid=\"HID_FUNC_QUANTIL\">Vráti alfa-percentil dátových hodnôt v poli.</ahelp> Percentil vráti hodnotu mierky pre dátovú sériu, ktorá ide od najmenšej (alfa=0) po najväčšiu hodnotu (alfa=1) dátovej série. Pre <item type=\"literal\">alfa</item> = 25% znamená percentil prvý kvartil; <item type=\"literal\">Alfa</item> = 50% je MEDIÁN."
#. 6cfc9
#: 04060184.xhp
@@ -39038,7 +39029,7 @@ msgctxt ""
"par_id2954940\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_PERCENTILE_INC\">Returns the alpha-percentile of data values in an array.</ahelp> A percentile returns the scale value for a data series which goes from the smallest (Alpha=0) to the largest value (alpha=1) of a data series. For <item type=\"literal\">Alpha</item> = 25%, the percentile means the first quartile; <item type=\"literal\">Alpha</item> = 50% is the MEDIAN."
-msgstr "<ahelp hid=\"HID_FUNC_QUANTIL\">Vráti alfa-percentil hodnoty dát v matici.</ahelp> Funkcia PERCENTILE vracia stupnicu hodnôt pre série dát, ktoré idú od najmenšej (Alpha=0) po najväčšiu hodnotu (alpha=1). Pre <item type=\"literal\">Alpha</item> = 25%,percentile počíta prvú štvrtinu; <item type=\"literal\">Alpha</item> = 50% je MEDIAN."
+msgstr "<ahelp hid=\"HID_FUNC_QUANTIL\">Vráti alfa-percentil dátových hodnôt v poli.</ahelp> Percentil vráti hodnotu mierky pre dátovú sériu, ktorá ide od najmenšej (Alpha=0) po najväčšiu hodnotu (alfa=1) dátovej série. Pre <item type=\"literal\">alfa</item> = 25% znamená percentil prvý kvartil; <item type=\"literal\">Alfa</item> = 50% je MEDIÁN."
#. oLxJG
#: 04060184.xhp
@@ -39344,7 +39335,7 @@ msgctxt ""
"par_id3146958\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_QUARTILE\">Returns the quartile of a data set.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_QUARTILE\">Vráti kvartil zo zadanej množiny dát.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_QUARTILE\">Vráti kvartil množiny údajov.</ahelp>"
#. SKFH8
#: 04060184.xhp
@@ -39479,7 +39470,7 @@ msgctxt ""
"par_id2946958\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_QUARTILE_INC\">Returns the quartile of a data set.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_QUARTILE\">Vráti kvartil zo zadanej množiny dát.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_QUARTILE_INC\">Vráti kvartil množiny údajov.</ahelp>"
#. z9AvW
#: 04060184.xhp
@@ -40163,7 +40154,7 @@ msgctxt ""
"par_id3149187\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_STABWN\">Calculates the standard deviation based on the entire population.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_STABWN\">Vypočíta odhad smerodajnej odchýlku podľa údajov z celej základnej množiny.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_STABWN\">Vypočíta smerodajnú odchýlku na základe celej populácie.</ahelp>"
#. zoiE5
#: 04060185.xhp
@@ -40208,7 +40199,7 @@ msgctxt ""
"par_id2949187\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ST_DEV_P_MS\">Calculates the standard deviation based on the entire population.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_STABWN\">Vypočíta odhad smerodajnej odchýlku podľa údajov z celej základnej množiny.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ST_DEV_P_MS\">Vypočíta smerodajnú odchýlku na základe celej populácie.</ahelp>"
#. J5bPQ
#: 04060185.xhp
@@ -40253,7 +40244,7 @@ msgctxt ""
"par_id2849187\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ST_DEV_S\">Calculates the standard deviation based on sample of the population.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_STABWN\">Vypočíta odhad smerodajnej odchýlku podľa údajov z celej základnej množiny.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ST_DEV_S\">Vypočíta smerodajnú odchýlku na základe vzorky populácie.</ahelp>"
#. dG9nh
#: 04060185.xhp
@@ -40433,7 +40424,7 @@ msgctxt ""
"par_id3151282\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_STANDNORMINV\">Returns the inverse of the standard normal cumulative distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_STANDNORMINV\">Vráti inverzné kumulatívne štandardné normále rozdelenie.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_STANDNORMINV\">Vráti inverznú hodnotu k štandardnému normálnemu kumulatívnemu rozdeleniu.</ahelp>"
#. ALdZE
#: 04060185.xhp
@@ -40487,7 +40478,7 @@ msgctxt ""
"par_id2951282\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_STD_NORMINV_MS\">Returns the inverse of the standard normal cumulative distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_STANDNORMINV\">Vráti inverzné kumulatívne štandardné normále rozdelenie.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_STD_NORMINV_MS\">Vráti inverznú hodnotu k štandardnému normálnemu kumulatívnemu rozdeleniu.</ahelp>"
#. uuqGW
#: 04060185.xhp
@@ -40541,7 +40532,7 @@ msgctxt ""
"par_id3150474\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_STANDNORMVERT\">Returns the standard normal cumulative distribution function. The distribution has a mean of zero and a standard deviation of one.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_STANDNORMVERT\">Vráti hodnotu distribučnej funkcie štandardného normálneho rozdelenia. Rozloženie má strednú hodnotu nula a štandardnú odchýlku jedna.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_STANDNORMVERT\">Vráti štandardné normálne kumulatívne rozdelenie. Rozdelenie má priemer nula a štandardnú odchýlku jedna.</ahelp>"
#. uQGAH
#: 04060185.xhp
@@ -40604,7 +40595,7 @@ msgctxt ""
"par_id2950474\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_STD_NORMDIST_MS\">Returns the standard normal cumulative distribution function. The distribution has a mean of zero and a standard deviation of one.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_STANDNORMVERT\">Vráti hodnotu distribučnej funkcie štandardného normálneho rozdelenia. Rozloženie má strednú hodnotu nula a štandardnú odchýlku jedna.</ahelp>"
+msgstr "<ahelp hid=\"\"HID_FUNC_STD_NORMDIST_MS\">Vráti štandardné normálne kumulatívne rozdelenie. Rozdelenie má priemer nula a štandardnú odchýlku jedna.</ahelp>"
#. iUVFG
#: 04060185.xhp
@@ -40847,7 +40838,7 @@ msgctxt ""
"par_id3143232\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TINV\">Returns the inverse of the t-distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_TINV\">Vráti inverziu t-rozdelenia.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TINV\">Vráti inverznú hodnotu t-rozdelenia.</ahelp>"
#. ysECn
#: 04060185.xhp
@@ -40910,7 +40901,7 @@ msgctxt ""
"par_id2943232\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TINV_MS\">Returns the one tailed inverse of the t-distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_TINV\">Vráti inverziu t-rozdelenia.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TINV_MS\">Vráti jednostrannú inverznú hodnotu t-rozdelenia.</ahelp>"
#. aRfT9
#: 04060185.xhp
@@ -41036,7 +41027,7 @@ msgctxt ""
"par_id3159184\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TTEST\">Returns the probability associated with a Student's t-Test.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_TTEST\">Vráti pravdepodobnosť pre Študentov t-Test.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TTEST\">Vráti pravdepodobnosť spojenú so Studentovým t-testom.</ahelp>"
#. zq4xu
#: 04060185.xhp
@@ -41117,7 +41108,7 @@ msgctxt ""
"par_id2959184\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TTEST_MS\">Returns the probability associated with a Student's t-Test.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_TTEST\">Vráti pravdepodobnosť pre Študentov t-Test.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TTEST_MS\">Vráti pravdepodobnosť spojenú so Studentovým t-testom.</ahelp>"
#. LEBMk
#: 04060185.xhp
@@ -41198,7 +41189,7 @@ msgctxt ""
"par_id3153372\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TVERT\">Returns the t-distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_TVERT\">Vráti t-rozdelenie.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TVERT\">Vráti t-distribúciu.</ahelp>"
#. HtP3s
#: 04060185.xhp
@@ -41270,7 +41261,7 @@ msgctxt ""
"par_id2953372\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TDIST_MS\">Returns the t-distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_TVERT\">Vráti t-rozdelenie.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TDIST_MS\">Vráti t-distribúciu.</ahelp>"
#. rDhhb
#: 04060185.xhp
@@ -41468,7 +41459,7 @@ msgctxt ""
"par_id3159165\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VARIANZ\">Estimates the variance based on a sample.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_VARIANZ\">Odhadne rozptyl podľa vzorky.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_VARIANZ\">Odhadne rozptyl na základe vzorky.</ahelp>"
#. NGDxF
#: 04060185.xhp
@@ -41522,7 +41513,7 @@ msgctxt ""
"par_id2959165\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VAR_S\">Estimates the variance based on a sample.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_VARIANZ\">Odhadne rozptyl podľa vzorky.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_VAR_S\">Odhadne rozptyl na základe vzorky.</ahelp>"
#. Y2B8P
#: 04060185.xhp
@@ -41630,7 +41621,7 @@ msgctxt ""
"par_id3159199\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VARIANZEN\">Calculates a variance based on the entire population.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_VARIANZEN\">Vypočíta rozptyl podľa údajov z celej množiny.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_VARIANZEN\">Vypočíta rozptyl na základe celej populácie.</ahelp>"
#. ArDPU
#: 04060185.xhp
@@ -41675,7 +41666,7 @@ msgctxt ""
"par_id2959199\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VAR_P_MS\">Calculates a variance based on the entire population.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_VARIANZEN\">Vypočíta rozptyl podľa údajov z celej množiny.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_VAR_P_MS\">Vypočíta rozptyl na základe celej populácie.</ahelp>"
#. t4tND
#: 04060185.xhp
@@ -41990,7 +41981,7 @@ msgctxt ""
"par_id3154916\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_WEIBULL\">Returns the values of the Weibull distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_WEIBULL\">Vráti hodnotu Weibullovho rozdelenia.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_WEIBULL\">Vráti hodnoty Weibullovho rozdelenia.</ahelp>"
#. GEAGn
#: 04060185.xhp
@@ -42107,7 +42098,7 @@ msgctxt ""
"par_id2954916\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_WEIBULL_DIST_MS\">Returns the values of the Weibull distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_WEIBULL\">Vráti hodnotu Weibullovho rozdelenia.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_WEIBULL_DIST_MS\">Vráti hodnoty Weibullovho rozdelenia.</ahelp>"
#. ojfW9
#: 04060185.xhp
@@ -42271,15 +42262,6 @@ msgctxt ""
msgid "Name"
msgstr "Názov"
-#. 3juWm
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id401599494815994\n"
-"help.text"
-msgid "Example"
-msgstr ""
-
#. PcMRq
#: 04060199.xhp
msgctxt ""
@@ -42505,15 +42487,6 @@ msgctxt ""
msgid "Name"
msgstr "Názov"
-#. CCsqC
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id201599495083374\n"
-"help.text"
-msgid "Example"
-msgstr ""
-
#. AdNBV
#: 04060199.xhp
msgctxt ""
@@ -42712,15 +42685,6 @@ msgctxt ""
msgid "Name"
msgstr "Názov"
-#. Y4cRR
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id201599494708332\n"
-"help.text"
-msgid "Example"
-msgstr ""
-
#. s2CGS
#: 04060199.xhp
msgctxt ""
@@ -42802,15 +42766,6 @@ msgctxt ""
msgid "Name"
msgstr "Názov"
-#. tfD9G
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id521599494740206\n"
-"help.text"
-msgid "Example"
-msgstr ""
-
#. 52L2C
#: 04060199.xhp
msgctxt ""
@@ -43828,6 +43783,24 @@ msgctxt ""
msgid "<variable id=\"zellattributetext\"><ahelp hid=\".uno:FormatCellDialog\">Allows you to specify a variety of formatting options and to apply attributes to the selected cells.</ahelp></variable>"
msgstr ""
+#. C3jH9
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3145785\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Čísla\">Čísla</link>"
+
+#. ZgrYD
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3146119\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>"
+msgstr "<link href=\"text/scalc/01/02140100.xhp\" name=\"Down\">Dole</link>"
+
#. BW9bs
#: 05020600.xhp
msgctxt ""
@@ -44665,15 +44638,6 @@ msgctxt ""
msgid "Page Style"
msgstr "Štýl strany"
-#. vEZHA
-#: 05070000.xhp
-msgctxt ""
-"05070000.xhp\n"
-"bm_id651593596384469\n"
-"help.text"
-msgid "<bookmark_value>style;page</bookmark_value><bookmark_value>page;style</bookmark_value><bookmark_value>format;page</bookmark_value><bookmark_value>formatting;page</bookmark_value>"
-msgstr ""
-
#. YjqDi
#: 05070000.xhp
msgctxt ""
@@ -45403,31 +45367,31 @@ msgctxt ""
msgid "<ahelp hid=\".uno:AddPrintArea\">Adds the current selection to the defined print areas.</ahelp>"
msgstr ""
-#. U9JPr
+#. fcvcu
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
"tit\n"
"help.text"
-msgid "Styles in Calc"
+msgid "Styles"
msgstr ""
-#. rJpRh
+#. 3fyBn
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
"bm_id3150447\n"
"help.text"
-msgid "<bookmark_value>Stylist, see Styles window</bookmark_value><bookmark_value>Styles window</bookmark_value><bookmark_value>formats; Styles window</bookmark_value><bookmark_value>formatting; Styles window</bookmark_value><bookmark_value>paint can for applying styles</bookmark_value><bookmark_value>styles in spreadsheets</bookmark_value><bookmark_value>styles; in Calc</bookmark_value>"
+msgid "<bookmark_value>Stylist, see Styles window</bookmark_value> <bookmark_value>Styles window</bookmark_value> <bookmark_value>formats; Styles window</bookmark_value> <bookmark_value>formatting; Styles window</bookmark_value> <bookmark_value>paint can for applying styles</bookmark_value>"
msgstr ""
-#. WerNG
+#. eA3vo
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
"hd_id3150447\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05100000.xhp\" name=\"Styles\">Styles in Calc</link>"
+msgid "<link href=\"text/scalc/01/05100000.xhp\" name=\"Styles\">Styles</link>"
msgstr ""
#. bBG57
@@ -45475,13 +45439,22 @@ msgctxt ""
msgid "Double-click the style in the Styles window."
msgstr ""
-#. SbgEE
+#. DCJfB
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"hd_id3153877\n"
+"help.text"
+msgid "Cell Styles"
+msgstr ""
+
+#. DAX9B
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
"par_id3145801\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the list of the available Cell Styles.</ahelp>"
+msgid "<ahelp hid=\".\">Displays the list of the available Cell Styles for <link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"indirect cell formatting\">indirect cell formatting</link>.</ahelp>"
msgstr ""
#. JcMEc
@@ -45502,22 +45475,22 @@ msgctxt ""
msgid "Cell Styles"
msgstr "Štýly buniek"
-#. 7FwJf
+#. hkDXo
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
-"hd_id171593598056580\n"
+"hd_id3153963\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"page styles\">Page Styles</link>"
+msgid "Page Styles"
msgstr ""
-#. 4XFww
+#. DxrsL
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
"par_id3147003\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the Page Styles available.</ahelp>"
+msgid "<ahelp hid=\".\">Displays the Page Styles available for indirect page formatting.</ahelp>"
msgstr ""
#. cM9f4
@@ -50495,7 +50468,7 @@ msgctxt ""
"par_id3125865\n"
"help.text"
msgid "<ahelp hid=\".\">Uses the selected cells as the data source for the pivot table.</ahelp>"
-msgstr "<ahelp hid=\".\">Prehrá vybraný zvukový súbor.</ahelp>"
+msgstr "<ahelp hid=\".\">Použije vybrané bunky ako zdroj údajov pre kontingenčnú tabuľku.</ahelp>"
#. A48Kd
#: 12090100.xhp
@@ -50693,7 +50666,7 @@ msgctxt ""
"par_id3155922\n"
"help.text"
msgid "<ahelp hid=\".uno:DataPilotExec\">Specify the layout of the table that is generated by the pivot table.</ahelp>"
-msgstr "<ahelp hid=\".\">Určuje režim výberu, ktorý je zapnutý pre strom.</ahelp>"
+msgstr "<ahelp hid=\". uno: DataPilotExec\">Zadajte rozloženie tabuľky, ktoré vygeneruje kontingenčná tabuľka.</ahelp>"
#. 7YRp4
#: 12090102.xhp
@@ -50792,7 +50765,7 @@ msgctxt ""
"par_id0509200913025615\n"
"help.text"
msgid "<ahelp hid=\".\">Select the area that contains the data for the current pivot table.</ahelp>"
-msgstr "<ahelp hid=\".\">Určuje stav ovládacieho prvku.</ahelp>"
+msgstr "<ahelp hid=\".\">Vyberte oblasť, ktorá obsahuje údaje pre aktuálnu kontingenčnú tabuľku.</ahelp>"
#. gJbqb
#: 12090102.xhp
@@ -50909,7 +50882,7 @@ msgctxt ""
"par_idN1089B\n"
"help.text"
msgid "<ahelp hid=\".\">Adds a Filter button to pivot tables that are based on spreadsheet data.</ahelp>"
-msgstr "<ahelp hid=\".\">Umožňuje uživateľovi čítať dáta.</ahelp>"
+msgstr "<ahelp hid=\".\">Pridá tlačidlo filtra do kontingenčných tabuliek založených na údajoch tabuľky.</ahelp>"
#. nG8PA
#: 12090102.xhp
@@ -52189,15 +52162,6 @@ msgctxt ""
msgid "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/hierarchy\">Select the hierarchy that you want to use. The pivot table must be based on an external source data that contains data hierarchies.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/datafieldoptionsdialog/hierarchy\">Vyberte hierarchiu, ktorú chcete použiť. Kontingenčná tabuľka musí byť založená na dátach externého zdroja, ktoré obsahujú hierarchie údajov.</ahelp>"
-#. ZjDq9
-#: 12090106.xhp
-msgctxt ""
-"12090106.xhp\n"
-"par_id681598453957935\n"
-"help.text"
-msgid "Calc does not provide multiple hierarchies for a single field and so this option is normally grayed. If you use a pivot table data source extension, that extension could define multiple hierarchies for some fields and then the option could become available. See the documentation supplied with that extension for more details\"."
-msgstr ""
-
#. B9FE5
#: 12090200.xhp
msgctxt ""
@@ -53188,15 +53152,6 @@ msgctxt ""
msgid "This function is part of the Open Document Format for Office Applications (OpenDocument) standard Version 1.2. (ISO/IEC 26300:2-2015)"
msgstr ""
-#. BFcB6
-#: ODFF.xhp
-msgctxt ""
-"ODFF.xhp\n"
-"hd_id1000013\n"
-"help.text"
-msgid "This function is part of the Open Document Format for Office Applications (OpenDocument) standard Version 1.3."
-msgstr ""
-
#. SGHPh
#: calculate.xhp
msgctxt ""
@@ -53224,24 +53179,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Commands to calculate formula cells.</ahelp>"
msgstr ""
-#. J8xZD
-#: cell_styles.xhp
-msgctxt ""
-"cell_styles.xhp\n"
-"tit\n"
-"help.text"
-msgid "Cell Styles"
-msgstr ""
-
-#. 8o4Ez
-#: cell_styles.xhp
-msgctxt ""
-"cell_styles.xhp\n"
-"hd_id811593560413206\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/cell_styles.xhp\" name=\"Cell Style\">Cell Styles</link>"
-msgstr ""
-
#. AZNrM
#: common_func.xhp
msgctxt ""
@@ -60107,7 +60044,7 @@ msgctxt ""
"par_id3149770\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ISOWEEKNUM\">ISOWEEKNUM calculates the week number of the year for the internal date value.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KALENDERWOCHE\">WEEKNUM vypočíta číslo týždňa v roku z hodnoty reprezentujúcej dátum.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ISOWEEKNUM\">ISOWEEKNUM vypočíta číslo týždňa v roku pre internú hodnotu dátumu.</ahelp>"
#. oeF4y
#: func_isoweeknum.xhp
@@ -63815,7 +63752,7 @@ msgctxt ""
"par_id3149770\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_WEEKNUM_OOO\">WEEKNUM_OOO calculates the week number of the year for the internal date value.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KALENDERWOCHE\">WEEKNUM vypočíta číslo týždňa v roku z hodnoty reprezentujúcej dátum.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_WEEKNUM_OOO\">WEEKNUM_OOO vypočíta číslo týždňa v roku pre internú hodnotu dátumu.</ahelp>"
#. B9He5
#: func_weeknum_ooo.xhp
@@ -64429,15 +64366,6 @@ msgctxt ""
msgid "Calculation"
msgstr "Výpočty"
-#. Q8ewH
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3154502\n"
-"help.text"
-msgid "0 or missing"
-msgstr ""
-
#. CkPny
#: func_yearfrac.xhp
msgctxt ""
diff --git a/source/sk/helpcontent2/source/text/scalc/guide.po b/source/sk/helpcontent2/source/text/scalc/guide.po
index fe9c81ff6b1..95bb5ae476d 100644
--- a/source/sk/helpcontent2/source/text/scalc/guide.po
+++ b/source/sk/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-07-21 11:19+0200\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
"PO-Revision-Date: 2020-09-26 19:35+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: Slovak <https://weblate.documentfoundation.org/projects/libo_help-master/textscalcguide/sk/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542197404.000000\n"
#. NXy6S
@@ -583,22 +583,22 @@ msgctxt ""
msgid "Defining Background Colors or Background Graphics"
msgstr "Určenie farby alebo obrázku na pozadí"
-#. PE8wQ
+#. g2JnS
#: background.xhp
msgctxt ""
"background.xhp\n"
"bm_id3149346\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; backgrounds</bookmark_value><bookmark_value>backgrounds;cell ranges</bookmark_value><bookmark_value>tables; backgrounds</bookmark_value><bookmark_value>cells; backgrounds</bookmark_value><bookmark_value>rows, see also cells</bookmark_value><bookmark_value>columns, see also cells</bookmark_value>"
+msgid "<bookmark_value>spreadsheets; backgrounds</bookmark_value> <bookmark_value>backgrounds;cell ranges</bookmark_value> <bookmark_value>tables; backgrounds</bookmark_value> <bookmark_value>cells; backgrounds</bookmark_value> <bookmark_value>rows, see also cells</bookmark_value> <bookmark_value>columns, see also cells</bookmark_value>"
msgstr ""
-#. tMFWU
+#. CqqcG
#: background.xhp
msgctxt ""
"background.xhp\n"
"hd_id3149346\n"
"help.text"
-msgid "<variable id=\"background\"><link href=\"text/scalc/guide/background.xhp\" name=\"Defining Background Colors or Background Graphics\">Defining Background Colors or Background Graphics</link> </variable>"
+msgid "<variable id=\"background\"><link href=\"text/scalc/guide/background.xhp\" name=\"Defining Background Colors or Background Graphics\">Defining Background Colors or Background Graphics</link></variable>"
msgstr ""
#. gwwiM
@@ -673,13 +673,13 @@ msgctxt ""
msgid "Select the graphic and click <emph>Open</emph>."
msgstr "Vyberte obrázok a kliknite na <emph> Otvoriť</emph>."
-#. 2BGVn
+#. SDYSQ
#: background.xhp
msgctxt ""
"background.xhp\n"
"par_id3153575\n"
"help.text"
-msgid "The graphic is inserted anchored to the current cell. You can move and scale the graphic as you want. In your context menu you can use the <menuitem>Arrange - To Background</menuitem> command to place this in the background. To select a graphic that has been placed in the background, use the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>."
+msgid "The graphic is inserted anchored to the current cell. You can move and scale the graphic as you want. In your context menu you can use the <emph>Arrange - To Background</emph> command to place this in the background. To select a graphic that has been placed in the background, use the <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link></caseinline><defaultinline>Navigator</defaultinline></switchinline>."
msgstr ""
#. vTxFX
@@ -691,14 +691,14 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/background.xhp\">Watermarks</link>"
msgstr "<link href=\"text/shared/guide/background.xhp\">Vodoznak</link>"
-#. R8Ctk
+#. jQFQC
#: background.xhp
msgctxt ""
"background.xhp\n"
"par_id3156180\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Background tab page\"><emph>Background</emph> tab page</link>"
-msgstr ""
+msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Background tab page\"><emph>Background</emph> tab page</link>"
+msgstr "<link href=\"text/shared/01/05030600.xhp\" name=\"Záložka pozadia\">Záložka <emph>pozadia</emph></link>"
#. owozX
#: background.xhp
@@ -5686,14 +5686,14 @@ msgctxt ""
msgid "With \"Values\" you will find the results of the calculations."
msgstr "Pri voľbe \"Hodnoty\" budete prehľadávať výsledky výpočtov."
-#. FMaXJ
+#. xQ5ou
#: finding.xhp
msgctxt ""
"finding.xhp\n"
"par_id3163853\n"
"help.text"
-msgid "Cell contents can be formatted in different ways. For example, a number can be formatted as a currency, to be displayed with a currency symbol. These symbols are included in searches when the Formatted Display search option is activated."
-msgstr ""
+msgid "Cell contents can be formatted in different ways. For example, a number can be formatted as a currency, to be displayed with a currency symbol. You see the currency symbol in the cell, but you cannot search for it."
+msgstr "Obsah buniek môže byť rôznymi spôsobmi formátovaný. Napríklad číslo môže byť zobrazené so symbolom meny pri použití formátu Mena. Akokoľvek je tento symbol v bunke zobrazený, nemôžete ho použiť ako cieľ hľadania."
#. Z4ABm
#: finding.xhp
diff --git a/source/sk/helpcontent2/source/text/schart/01.po b/source/sk/helpcontent2/source/text/schart/01.po
index 6cbb68ffe55..b61c4884313 100644
--- a/source/sk/helpcontent2/source/text/schart/01.po
+++ b/source/sk/helpcontent2/source/text/schart/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-07-21 11:19+0200\n"
-"PO-Revision-Date: 2020-10-01 18:35+0000\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
+"PO-Revision-Date: 2020-10-16 15:35+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: Slovak <https://weblate.documentfoundation.org/projects/libo_help-master/textschart01/sk/>\n"
"Language: sk\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1519758349.000000\n"
#. DsZFP
@@ -185,7 +185,7 @@ msgctxt ""
"par_id3145384\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new data series after the current column.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vloží nový riadok pod aktuálny riadok.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vloží nový rad údajov za aktuálny stĺpec.</ahelp>"
#. WPrLE
#: 03010000.xhp
@@ -203,7 +203,7 @@ msgctxt ""
"par_id3159231\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the current row. It is not possible to delete the label row.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Odstráni aktuálny riadok. Riadok hlavičky nie je možné odstrániť.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vymaže aktuálny riadok. Nie je možné odstrániť riadok s označením stĺpcov.</ahelp>"
#. 5zEhn
#: 03010000.xhp
@@ -212,7 +212,7 @@ msgctxt ""
"par_id3153336\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the current series or text column. It is not possible to delete the first text column.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Odstráni aktuálny riadok. Riadok hlavičky nie je možné odstrániť.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vymaže aktuálnu sériu alebo textový stĺpec. Prvý textový stĺpec nie je možné odstrániť.</ahelp>"
#. wJbsu
#: 03010000.xhp
@@ -257,7 +257,7 @@ msgctxt ""
"par_id6697286\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter names for the data series.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zadajte názvy dátových radov.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zadajte názvy dátových sérií.</ahelp>"
#. 9dACT
#: 04010000.xhp
@@ -824,7 +824,7 @@ msgctxt ""
"par_id6668904\n"
"help.text"
msgid "<ahelp hid=\".\">Selects the separator between multiple text strings for the same object.</ahelp>"
-msgstr "<ahelp hid=\".\"> Vyberie oddeľovač medzi viacnásobnými textovými reťazcami v rovnakom objekte</ahelp>"
+msgstr "<ahelp hid=\".\">Vyberie oddeľovač medzi viacerými textovými reťazcami pre ten istý objekt.</ahelp>"
#. cg8Ec
#: 04030000.xhp
@@ -1553,7 +1553,7 @@ msgctxt ""
"par_id8962370\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the trend line equation next to the trend line.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\"> Ukazuje rovnicu trendovej krivky vedľa regresnej krivky.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zobrazí rovnicu trendovej čiary vedľa trendovej čiary.</ahelp>"
#. 6FZGw
#: 04050100.xhp
@@ -1562,7 +1562,7 @@ msgctxt ""
"par_id6889858\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the coefficient of determination next to the trend line.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\"> Ukazuje rovnicu trendovej krivky vedľa regresnej krivky.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zobrazuje koeficient determinácie vedľa trendovej čiary.</ahelp>"
#. RtirG
#: 04050100.xhp
@@ -3076,6 +3076,15 @@ msgctxt ""
msgid "<variable id=\"titel\"><ahelp hid=\".uno:ZTitle\">Modifies the properties of the selected title.</ahelp></variable>"
msgstr "<variable id=\"titel\"><ahelp hid=\".uno:ZTitle\">Upraví vlastnosti vybraného nadpisu.</ahelp></variable>"
+#. tyEBL
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3149378\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Znak\">Znak</link>"
+
#. LUkDN
#: 05020101.xhp
msgctxt ""
@@ -3157,6 +3166,15 @@ msgctxt ""
msgid "<variable id=\"titel\"><ahelp hid=\".uno:YTitle\">Modifies the properties of the selected title or the properties of all titles together.</ahelp></variable>"
msgstr "<variable id=\"titel\"><ahelp hid=\".uno:YTitle\">Upraví vlastnosti vybraného nadpisu alebo vlastnosti všetkých nadpisov.</ahelp></variable>"
+#. XkwBi
+#: 05020200.xhp
+msgctxt ""
+"05020200.xhp\n"
+"hd_id3152596\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Znak\">Znak</link>"
+
#. 872FB
#: 05020201.xhp
msgctxt ""
@@ -3508,6 +3526,15 @@ msgctxt ""
msgid "<variable id=\"legende\"><ahelp hid=\".uno:Legend\">Defines the border, area and character attributes for a legend.</ahelp></variable>"
msgstr "<variable id=\"legende\"><ahelp hid=\".uno:Legend\">Určuje okraje, výplň a vlastnosti znakov legendy.</ahelp></variable>"
+#. N9rEe
+#: 05030000.xhp
+msgctxt ""
+"05030000.xhp\n"
+"hd_id3145232\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Znak\">Znak</link>"
+
#. 73CU8
#: 05030000.xhp
msgctxt ""
@@ -3679,6 +3706,15 @@ msgctxt ""
msgid "Scaling the X axis is only possible in the X-Y chart type."
msgstr "Nastavenie mierky osi X je možné len v grafe typu X-Y."
+#. 3reGb
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"hd_id3145230\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Znak\">Znak</link>"
+
#. Gf2gJ
#: 05040200.xhp
msgctxt ""
@@ -3715,6 +3751,24 @@ msgctxt ""
msgid "<variable id=\"yachse\"><ahelp hid=\".uno:DiagramAxisY\">Opens the<emph> Y Axis </emph>dialog, to change properties of the Y axis.</ahelp></variable>"
msgstr "<variable id=\"yachse\"><ahelp hid=\".uno:DiagramAxisY\">Otvorí dialóg <emph>Os Y</emph>, v ktorom môžete upraviť vlastnosti osi Y.</ahelp></variable>"
+#. TgqBL
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"hd_id3145171\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
+msgstr "<link href=\"text/shared/01/05020100.xhp\" name=\"Znak\">Znak</link>"
+
+#. DZeAQ
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"hd_id3146119\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Čísla\">Čísla</link>"
+
#. JGn49
#: 05040201.xhp
msgctxt ""
@@ -4919,7 +4973,7 @@ msgctxt ""
"par_id8638874\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the degree of the polynomials.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nastaviť rozlíšenie.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nastavte stupeň polynómov.</ahelp>"
#. iZJ5N
#: stepped_line_properties.xhp
@@ -5513,7 +5567,7 @@ msgctxt ""
"par_id393993\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color for the ambient light.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte farbu okolitého osvetlenia.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte farbu okolitého svetla.</ahelp>"
#. tbnYZ
#: three_d_view.xhp
@@ -7826,7 +7880,7 @@ msgctxt ""
"par_id2871791\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a label for the z-axis. This option is only available for three-dimensional charts.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zadajte popis osi z. Táto voľba je dostupná len pre trojrozmerné grafy.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zadajte popis pre os z. Táto možnosť je k dispozícii iba pre trojrozmerné grafy.</ahelp>"
#. azk2Q
#: wiz_chart_elements.xhp
@@ -7844,7 +7898,7 @@ msgctxt ""
"par_id9976195\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Positions the legend to the left of the chart.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Umiestni legendu vľavo vedľa grafu.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Umiestni legendu doľava od grafu.</ahelp>"
#. gQPuB
#: wiz_chart_elements.xhp
@@ -7898,7 +7952,7 @@ msgctxt ""
"par_id6917020\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Displays grid lines that are perpendicular to the z-axis. This option is only available for three-dimensional charts.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zadajte popis osi z. Táto voľba je dostupná len pre trojrozmerné grafy.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zobrazí čiary mriežky, ktoré sú kolmé na os z. Táto možnosť je k dispozícii iba pre trojrozmerné grafy.</ahelp>"
#. RAViq
#: wiz_chart_elements.xhp
@@ -8222,7 +8276,7 @@ msgctxt ""
"par_id2284920\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to go to the named wizard page.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Po kliknutí prejdete na danú stránku sprievodcu.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Kliknutím prejdete na pomenovanú stránku sprievodcu.</ahelp>"
#. StmAF
#: wiz_chart_type.xhp
@@ -8231,7 +8285,7 @@ msgctxt ""
"par_id3184301\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a basic chart type.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zvoľte základný typ grafu.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte základný typ grafu.</ahelp>"
#. bGkoG
#: wiz_chart_type.xhp
@@ -8240,7 +8294,7 @@ msgctxt ""
"par_id2129276\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a sub type of the basic chart type.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zvoľte variantu základného typu grafu.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte podtyp základného typu grafu.</ahelp>"
#. G2Y3F
#: wiz_chart_type.xhp
@@ -8258,7 +8312,7 @@ msgctxt ""
"par_id3860896\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the type of 3D look.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zvoľte typ 3D zobrazenia.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte typ 3D vzhľadu.</ahelp>"
#. tdv42
#: wiz_chart_type.xhp
@@ -8267,7 +8321,7 @@ msgctxt ""
"par_id4041871\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a shape from the list.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte tvar zo zoznamu.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte útvar zo zoznamu.</ahelp>"
#. fByEr
#: wiz_chart_type.xhp
@@ -8303,7 +8357,7 @@ msgctxt ""
"par_id2414014\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Choose the type of line to draw.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zvoľte typ 3D zobrazenia.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte typ čiary, ktorú chcete nakresliť.</ahelp>"
#. Znu4u
#: wiz_chart_type.xhp
diff --git a/source/sk/helpcontent2/source/text/sdatabase.po b/source/sk/helpcontent2/source/text/sdatabase.po
index c23e2077789..3817e04378c 100644
--- a/source/sk/helpcontent2/source/text/sdatabase.po
+++ b/source/sk/helpcontent2/source/text/sdatabase.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-09-28 11:22+0200\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,2787 +13,6 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#. ugSgG
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Queries"
-msgstr ""
-
-#. nuBLG
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"bm_id3150445\n"
-"help.text"
-msgid "<bookmark_value>queries;overview (Base)</bookmark_value><bookmark_value>tables in databases; printing queries (Base)</bookmark_value><bookmark_value>printing; queries (Base)</bookmark_value><bookmark_value>queries; printing (Base)</bookmark_value>"
-msgstr ""
-
-#. g7gAN
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"hd_id3150445\n"
-"help.text"
-msgid "<link href=\"text/sdatabase/02000000.xhp\" name=\"Queries\">Queries</link>"
-msgstr ""
-
-#. KaF9w
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"par_id3150499\n"
-"help.text"
-msgid "A \"query\" is a special view of a table. A query can display chosen records or chosen fields within records; it can also sort those records. A query can apply to one table or to multiple tables, if they are linked by common data fields."
-msgstr ""
-
-#. FG8C9
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"par_id3147399\n"
-"help.text"
-msgid "Use queries to find records from data tables based on certain criteria. All queries created for a database are listed under the <emph>Queries</emph> entry. Since this entry contains the database queries, it is also called the \"query container\"."
-msgstr ""
-
-#. AuJW3
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"hd_id3153750\n"
-"help.text"
-msgid "Printing Queries"
-msgstr ""
-
-#. BVVMe
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"par_id3149183\n"
-"help.text"
-msgid "To print a query or table:"
-msgstr ""
-
-#. zDMbu
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"par_id3156426\n"
-"help.text"
-msgid "Open a text document (or a spreadsheet document if you prefer the specific printing functions of this type of document)."
-msgstr ""
-
-#. KFWTE
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"par_id3149827\n"
-"help.text"
-msgid "Open the database file and click the Table icon if you want to print a table, or click the Query icon if you want to print a query."
-msgstr ""
-
-#. 9ZPFm
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"par_id3149398\n"
-"help.text"
-msgid "Drag the name of the table or query into the open text document or spreadsheet. The dialog <link href=\"text/shared/02/12070000.xhp\" name=\"Insert Database Columns\">Insert Database Columns</link> opens."
-msgstr ""
-
-#. m5TnG
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"par_id3150443\n"
-"help.text"
-msgid "Decide which columns = data fields you want to include. You can also click the <emph>AutoFormat</emph> button and select a corresponding formatting type. Close the dialog."
-msgstr ""
-
-#. AAQ4y
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"par_id3153561\n"
-"help.text"
-msgid "The query or table will be inserted into your document."
-msgstr ""
-
-#. XDLzM
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"par_id3150503\n"
-"help.text"
-msgid "Print the document by choosing <emph>File - Print</emph>."
-msgstr ""
-
-#. Kh9NG
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"par_id3153146\n"
-"help.text"
-msgid "You can also open the data source view (Ctrl+Shift+F4), select the entire database table in the data source view (click on the top left corner of the table), and then drag the selection to a text document or spreadsheet."
-msgstr ""
-
-#. PJjKX
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"hd_id3148946\n"
-"help.text"
-msgid "<link href=\"text/shared/main0212.xhp\" name=\"Sorting and Filtering Data\">Sorting and Filtering Data</link>"
-msgstr ""
-
-#. ERCGr
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"par_id3149655\n"
-"help.text"
-msgid "Allows you to sort and filter the data in a query table."
-msgstr ""
-
-#. XpUzN
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"hd_id3153379\n"
-"help.text"
-msgid "<link href=\"text/sdatabase/020010100.xhp\" name=\"Query Design\">Query Design</link>"
-msgstr ""
-
-#. 3JCfK
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"par_id3151211\n"
-"help.text"
-msgid "With the <emph>Query Design</emph>, you can create and edit a query or view."
-msgstr ""
-
-#. q79aD
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"hd_id3153968\n"
-"help.text"
-msgid "<link href=\"text/sdatabase/020010100.xhp\" name=\"Query Through Several Tables\">Query Through Several Tables</link>"
-msgstr ""
-
-#. ASeVi
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"par_id3151043\n"
-"help.text"
-msgid "The query result can contain data from several tables if these are linked to each other by suitable data fields."
-msgstr ""
-
-#. uBo2H
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"hd_id3159149\n"
-"help.text"
-msgid "<link href=\"text/sdatabase/020010100.xhp\" name=\"Formulating Query Criteria\">Formulating Query Criteria</link>"
-msgstr ""
-
-#. JTXBF
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"par_id3154910\n"
-"help.text"
-msgid "You can find out which operators and commands can be used to formulate the filter conditions for a query."
-msgstr ""
-
-#. uCGCF
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"hd_id3156212\n"
-"help.text"
-msgid "<link href=\"text/sdatabase/020010100.xhp\" name=\"Executing Functions\">Executing Functions</link>"
-msgstr ""
-
-#. FWCVa
-#: 02000000.xhp
-msgctxt ""
-"02000000.xhp\n"
-"par_id3144762\n"
-"help.text"
-msgid "You can perform calculations with the data of a table and store the results as a query result."
-msgstr ""
-
-#. BncmA
-#: 02000002.xhp
-msgctxt ""
-"02000002.xhp\n"
-"tit\n"
-"help.text"
-msgid "Missing Element"
-msgstr ""
-
-#. noWgR
-#: 02000002.xhp
-msgctxt ""
-"02000002.xhp\n"
-"bm_id3150445\n"
-"help.text"
-msgid "<bookmark_value>queries; missing elements (Base)</bookmark_value>"
-msgstr ""
-
-#. EoEQz
-#: 02000002.xhp
-msgctxt ""
-"02000002.xhp\n"
-"hd_id3150445\n"
-"help.text"
-msgid "Missing Element"
-msgstr ""
-
-#. X2NF9
-#: 02000002.xhp
-msgctxt ""
-"02000002.xhp\n"
-"par_id3150247\n"
-"help.text"
-msgid "If a query in which tables or fields no longer exist is opened, the<emph> Missing Element </emph>dialog appears. This dialog names the missing table or the field which cannot be interpreted and allows you to decide how to continue with the procedure."
-msgstr ""
-
-#. fBc3m
-#: 02000002.xhp
-msgctxt ""
-"02000002.xhp\n"
-"hd_id3145072\n"
-"help.text"
-msgid "How to continue?"
-msgstr ""
-
-#. wV7Bh
-#: 02000002.xhp
-msgctxt ""
-"02000002.xhp\n"
-"par_id3149177\n"
-"help.text"
-msgid "There are three options available for answering this question:"
-msgstr ""
-
-#. nwD7D
-#: 02000002.xhp
-msgctxt ""
-"02000002.xhp\n"
-"hd_id3147576\n"
-"help.text"
-msgid "Do you really want to open the query in the graphic view?"
-msgstr ""
-
-#. 2DqMn
-#: 02000002.xhp
-msgctxt ""
-"02000002.xhp\n"
-"par_id3166461\n"
-"help.text"
-msgid "<ahelp hid=\".\">Allows you to open the query in the <link href=\"text/sdatabase/02010100.xhp\" name=\"Design View\">Design View</link> in spite of missing elements.</ahelp> This option also allows you to specify if other errors need to be ignored."
-msgstr ""
-
-#. DX2vA
-#: 02000002.xhp
-msgctxt ""
-"02000002.xhp\n"
-"par_id3153031\n"
-"help.text"
-msgid "The query is opened in the Design View (the graphical interface). Missing tables appear blank and invalid fields appear with their (invalid) names in the list of fields. This lets you work with exactly those fields that caused the error."
-msgstr ""
-
-#. 477G3
-#: 02000002.xhp
-msgctxt ""
-"02000002.xhp\n"
-"hd_id3149578\n"
-"help.text"
-msgid "Open the query in the SQL View"
-msgstr ""
-
-#. Axfxy
-#: 02000002.xhp
-msgctxt ""
-"02000002.xhp\n"
-"par_id3159157\n"
-"help.text"
-msgid "<ahelp hid=\".\">Allows you to open the query design in the <link href=\"text/sdatabase/02010100.xhp\" name=\"SQL Mode\">SQL Mode</link> and to interpret the query as a <link href=\"text/shared/02/14030000.xhp\" name=\"Native SQL\">Native SQL</link>.</ahelp> You can only quit the native SQL mode when the $[officename] statement is completely interpreted (only possible if the used tables or fields in the query really exist)."
-msgstr ""
-
-#. 2N4uG
-#: 02000002.xhp
-msgctxt ""
-"02000002.xhp\n"
-"hd_id3150984\n"
-"help.text"
-msgid "Do not open the query"
-msgstr ""
-
-#. 9hCbd
-#: 02000002.xhp
-msgctxt ""
-"02000002.xhp\n"
-"par_id3156329\n"
-"help.text"
-msgid "<ahelp hid=\".\">Allows you to cancel the procedure and specify that the query should not be opened.</ahelp> This option corresponds to the function of the <emph>Cancel</emph> dialog button."
-msgstr ""
-
-#. 4QDUr
-#: 02000002.xhp
-msgctxt ""
-"02000002.xhp\n"
-"hd_id3148492\n"
-"help.text"
-msgid "Also ignore similar errors"
-msgstr ""
-
-#. tv3MZ
-#: 02000002.xhp
-msgctxt ""
-"02000002.xhp\n"
-"par_id3154285\n"
-"help.text"
-msgid "<ahelp hid=\".\">If you selected the first option, but you still want to open the query in the graphics view in spite of missing elements, you can specify whether other errors are ignored.</ahelp> Therefore, in the current opening process, no error message will be displayed if the query can not be correctly interpreted."
-msgstr ""
-
-#. E3MVS
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Query Design"
-msgstr ""
-
-#. Ys2sC
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"bm_id3153323\n"
-"help.text"
-msgid "<bookmark_value>views; creating database views (Base)</bookmark_value> <bookmark_value>queries; creating in design view (Base)</bookmark_value> <bookmark_value>designing; queries (Base)</bookmark_value> <bookmark_value>design view; queries/views (Base)</bookmark_value> <bookmark_value>joining;tables (Base)</bookmark_value> <bookmark_value>tables in databases; joining for queries (Base)</bookmark_value> <bookmark_value>queries; joining tables (Base)</bookmark_value> <bookmark_value>tables in databases; relations (Base)</bookmark_value> <bookmark_value>relations; joining tables (Base)</bookmark_value> <bookmark_value>queries; deleting table links (Base)</bookmark_value> <bookmark_value>criteria of query design (Base)</bookmark_value> <bookmark_value>queries; formulating filter conditions (Base)</bookmark_value> <bookmark_value>filter conditions;in queries (Base)</bookmark_value> <bookmark_value>parameters; queries (Base)</bookmark_value> <bookmark_value>queries; parameter queries (Base)</bookmark_value> <bookmark_value>SQL; queries (Base)</bookmark_value> <bookmark_value>native SQL (Base)</bookmark_value>"
-msgstr ""
-
-#. fmcBY
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3153394\n"
-"help.text"
-msgid "<link href=\"text/sdatabase/020010100.xhp\" name=\"Query Design\">Query Design</link>"
-msgstr ""
-
-#. GU8Jd
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3156411\n"
-"help.text"
-msgid "<ahelp hid=\".\">The <emph>Query Design View </emph>allows you to create and edit a database query.</ahelp>"
-msgstr ""
-
-#. vGBE5
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id7024140\n"
-"help.text"
-msgid "Most databases use queries to filter or to sort database tables to display records on your computer. Views offer the same functionality as queries, but on the server side. If your database is on a server that supports views, you can use views to filter the records on the server to speed up the display time."
-msgstr ""
-
-#. WZcUE
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3159176\n"
-"help.text"
-msgid "Selecting the <emph>Create View</emph> command from the <emph>Tables</emph> tab page of a database document, you see the <emph>View Design</emph> window that resembles the <emph>Query Design</emph> window described here."
-msgstr ""
-
-#. JMyC7
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id8307138\n"
-"help.text"
-msgid "The Query Design window layout is stored with a created query, but cannot be stored with a created view."
-msgstr ""
-
-#. TEBj6
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3149233\n"
-"help.text"
-msgid "The Design View"
-msgstr ""
-
-#. zkTQc
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3145673\n"
-"help.text"
-msgid "To create a query, click the <emph>Queries</emph> icon in a database document, then click <emph>Create Query in Design View</emph>."
-msgstr ""
-
-#. EN5uU
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150255\n"
-"help.text"
-msgid "The lower pane of the Design View is where you <link href=\"text/sdatabase/020010100.xhp\" name=\"define\">define</link> the query. To define a query, specify the database <link href=\"text/sdatabase/020010100.xhp\" name=\"field names\">field names</link> to include and the <link href=\"text/sdatabase/020010100.xhp\" name=\"criteria\">criteria</link> for displaying the fields. To rearrange the columns in the lower pane of the Design View, drag a column header to a new location, or select the column and press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+arrow key."
-msgstr ""
-
-#. GMVkG
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3152474\n"
-"help.text"
-msgid "In the top of the query Design View window, the <link href=\"text/shared/main0214.xhp\" name=\"icons\">icons</link> of the <emph>Query Design</emph> Bar and the <emph>Design</emph> bar are displayed."
-msgstr ""
-
-#. hYsxY
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3147559\n"
-"help.text"
-msgid "If you want to test a query, double-click the query name in the database document. The query result is displayed in a table similar to the Data Source View. Note: the table displayed is only temporary."
-msgstr ""
-
-#. B4HEH
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id8226264\n"
-"help.text"
-msgid "Keys in Query Design View"
-msgstr ""
-
-#. Cvd4o
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id2341074\n"
-"help.text"
-msgid "Key"
-msgstr ""
-
-#. mCy9S
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id4384289\n"
-"help.text"
-msgid "Function"
-msgstr ""
-
-#. yybiC
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id5839106\n"
-"help.text"
-msgid "F4"
-msgstr ""
-
-#. FMTZD
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id8554338\n"
-"help.text"
-msgid "Preview"
-msgstr ""
-
-#. YQhGF
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id1254921\n"
-"help.text"
-msgid "F5"
-msgstr ""
-
-#. C9yhE
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id7636646\n"
-"help.text"
-msgid "Run Query"
-msgstr ""
-
-#. jdEeJ
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id8579363\n"
-"help.text"
-msgid "F7"
-msgstr ""
-
-#. 6Y6Uw
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3227942\n"
-"help.text"
-msgid "Add Table or Query"
-msgstr ""
-
-#. WN7wR
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3154939\n"
-"help.text"
-msgid "Browse"
-msgstr ""
-
-#. 5y4VZ
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3148799\n"
-"help.text"
-msgid "When you open the query design for the first time, you see a dialog in which you must first select the table or query that will be the basis for your new query."
-msgstr ""
-
-#. FBQA9
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3144762\n"
-"help.text"
-msgid "<ahelp hid=\"HID_CTL_QRYDGNTAB\">Double-click fields to add them to the query. Drag-and-drop to define relations.</ahelp>"
-msgstr ""
-
-#. eG8FD
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3157894\n"
-"help.text"
-msgid "While designing a query, you cannot modify the selected tables."
-msgstr ""
-
-#. NLywF
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3149562\n"
-"help.text"
-msgid "Remove tables"
-msgstr ""
-
-#. TbQzA
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150685\n"
-"help.text"
-msgid "To remove the table from Design View, click the upper border of the table window and display the context menu. You can use the <emph>Delete</emph> command to remove the table from the Design View. Another option is to press the Delete key."
-msgstr ""
-
-#. VLTKB
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3150012\n"
-"help.text"
-msgid "Move table and modify table size"
-msgstr ""
-
-#. amBsQ
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3146922\n"
-"help.text"
-msgid "You can resize and arrange the tables according to your preferences. To move tables, drag the upper border to the desired position. Enlarge or reduce the size in which the table is displayed by positioning the mouse cursor on a border or on a corner and dragging the table until it is the desired size."
-msgstr ""
-
-#. UoCRG
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3145365\n"
-"help.text"
-msgid "Table Relations"
-msgstr ""
-
-#. BFCxB
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154145\n"
-"help.text"
-msgid "If there are data relations between a field name in one table and a field name in another table, you can use these relations for your query."
-msgstr ""
-
-#. jcLbE
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3152577\n"
-"help.text"
-msgid "If, for example, you have a spreadsheet for articles identified by an article number, and a spreadsheet for customers in which you record all articles that a customer orders using the corresponding article numbers, then there is a relationship between the two \"article number\" data fields. If you now want to create a query that returns all articles that a customer has ordered, you must retrieve data from two spreadsheets. To do this, you must inform $[officename] about the relationship which exists between the data in the two spreadsheets."
-msgstr ""
-
-#. FspJi
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3155302\n"
-"help.text"
-msgid "To do this, click a field name in a table (for example, the field name \"Item-Number\" from the Customer table), hold down the mouse button and then drag the field name to the field name of the other table (\"Item-Number\" from the Item table). When you release the mouse button, a line connecting the two fields between the two table windows appears. The corresponding condition that the content of the two field names must be identical is entered in the resulting SQL query."
-msgstr ""
-
-#. FmAaU
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3153876\n"
-"help.text"
-msgid "The creation of a query that is based on several related sheets is only possible if you use $[officename] as the interface for a relational database."
-msgstr ""
-
-#. N2f8q
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3145646\n"
-"help.text"
-msgid "You cannot access tables from different databases in a query. Queries involving multiple tables can only be created within one database."
-msgstr ""
-
-#. nLSiq
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3153279\n"
-"help.text"
-msgid "Specifying the relation type"
-msgstr ""
-
-#. zkKD5
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154791\n"
-"help.text"
-msgid "If you double-click on the line connecting two linked fields or call the menu command <emph>Insert - New Relation</emph>, you can specify the type of relation in the <link href=\"text/sdatabase/02010101.xhp\" name=\"Relations\"><emph>Relations</emph></link> dialog."
-msgstr ""
-
-#. rAkmw
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150094\n"
-"help.text"
-msgid "<ahelp hid=\"HID_QUERY_EDIT_JOINCONNECTION\" visibility=\"hidden\">Edit Join Properties.</ahelp> Alternatively, press Tab until the line is selected, then press Shift+F10 to display the context menu and there choose the command <emph>Edit</emph>. Some databases support only a subset of the possible join types."
-msgstr ""
-
-#. n3PMB
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3155851\n"
-"help.text"
-msgid "Deleting relations"
-msgstr ""
-
-#. jCb4H
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3156178\n"
-"help.text"
-msgid "To delete a relation between two tables, click the connection line and then press the Delete key."
-msgstr ""
-
-#. 3UCig
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150715\n"
-"help.text"
-msgid "Alternatively, delete the respective entries in <emph>Fields involved </emph>in the <emph>Relations</emph> dialog. Or press Tab until the connecting vector is displayed highlighted, then press Shift+F10 to open the context menu and select <emph>Delete </emph>command."
-msgstr ""
-
-#. pBybB
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3151208\n"
-"help.text"
-msgid "Defining the query"
-msgstr ""
-
-#. yGfhU
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3158416\n"
-"help.text"
-msgid "<ahelp hid=\"HID_CTL_QRYDGNCRIT\">Select conditions to define the query.</ahelp> Each column of the design table accepts a data field for the query. The conditions in one row are linked with a Boolean AND."
-msgstr ""
-
-#. UB5nG
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3154161\n"
-"help.text"
-msgid "Specifying field names"
-msgstr ""
-
-#. jyKMG
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3146791\n"
-"help.text"
-msgid "First, select all field names from the tables that you want to add to the query. You can do this either by drag-and-drop or by double-clicking a field name in the table window. With the drag-and-drop method, use the mouse to drag a field name from the table window into the lower area of the query design window. As you do this, you can decide which column in the query design window will receive the selected field. A field name can also be selected by double-clicking. It will then be added to the next free column in the query design window."
-msgstr ""
-
-#. 66Dcr
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3150750\n"
-"help.text"
-msgid "Deleting field names"
-msgstr ""
-
-#. AbhrW
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154479\n"
-"help.text"
-msgid "To remove a field name from the query, click the column header of the field and choose the <emph>Delete</emph> command on the context menu for the column."
-msgstr ""
-
-#. V92gB
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3155764\n"
-"help.text"
-msgid "Saving the query"
-msgstr ""
-
-#. 2kWoA
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3148481\n"
-"help.text"
-msgid "Use the <emph>Save</emph> icon on the Standard toolbar to save the query. You will see a dialog that asks you to enter a name for the query. If the database supports schemas, you can also enter a schema name."
-msgstr ""
-
-#. M9UQL
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3154362\n"
-"help.text"
-msgid "Schema"
-msgstr ""
-
-#. 4Jwm3
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154754\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/savedialog/schema\">Enter the name of the schema that is assigned to the query or table view.</ahelp>"
-msgstr ""
-
-#. 6Q72c
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3156717\n"
-"help.text"
-msgid "Query name or table view name"
-msgstr ""
-
-#. Cw73K
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154253\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/savedialog/title\">Enter the name of the query or table view.</ahelp>"
-msgstr ""
-
-#. qgbNu
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3163805\n"
-"help.text"
-msgid "Filtering data"
-msgstr ""
-
-#. Q9pG5
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154964\n"
-"help.text"
-msgid "To filter data for the query, set the desired criteria in the lower area of the query design window. The following options are available:"
-msgstr ""
-
-#. xxoMA
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3146916\n"
-"help.text"
-msgid "Field"
-msgstr ""
-
-#. 4KDzZ
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3156372\n"
-"help.text"
-msgid "<ahelp hid=\"HID_QRYDGN_ROW_FIELD\">Enter the name of the data field that is referred to in the Query. All settings made in the filter option rows refer to this field.</ahelp> If you activate a cell here with a mouse click you'll see an arrow button, which enables you to select a field. The \"Table name.*\" option selects all data fields with the effect that the specified criteria will be applied to all table fields."
-msgstr ""
-
-#. Z3pwF
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3145150\n"
-"help.text"
-msgid "Alias"
-msgstr ""
-
-#. EDa3A
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3146315\n"
-"help.text"
-msgid "<ahelp hid=\"HID_QRYDGN_ROW_ALIAS\">Specifies an alias. This alias will be listed in the query instead of the field name. This makes it possible to use user-defined column labels.</ahelp> For example, if the data field is named PtNo and, instead of that name, you would like to have PartNum appear in the query, enter PartNum as the alias."
-msgstr ""
-
-#. vvWbt
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3155959\n"
-"help.text"
-msgid "In a SQL statement, aliases are defined as follows:"
-msgstr ""
-
-#. CGsBz
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3149922\n"
-"help.text"
-msgid "SELECT column AS alias FROM table."
-msgstr ""
-
-#. TWexq
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3159335\n"
-"help.text"
-msgid "For example:"
-msgstr ""
-
-#. ynSGq
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3148478\n"
-"help.text"
-msgid "SELECT \"PtNo\" AS \"PartNum\" FROM \"Parts\""
-msgstr ""
-
-#. roTzi
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3148485\n"
-"help.text"
-msgid "Table"
-msgstr ""
-
-#. GM9Sp
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3163665\n"
-"help.text"
-msgid "<ahelp hid=\"HID_QRYDGN_ROW_TABLE\">The corresponding database table of the selected data field is listed here.</ahelp> If you activate this cell with a mouse click, an arrow will appear which enables you to select a different table for the current query."
-msgstr ""
-
-#. JGcfa
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3154207\n"
-"help.text"
-msgid "Sort"
-msgstr ""
-
-#. uXuDt
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150979\n"
-"help.text"
-msgid "<ahelp hid=\"HID_QRYDGN_ROW_ORDER\">If you click on this cell, you can choose a sort option: ascending, descending and unsorted.</ahelp> Text fields will be sorted alphabetically and numerical fields numerically. For most databases, administrators can set the sorting options at the database level."
-msgstr ""
-
-#. XsqW8
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3150384\n"
-"help.text"
-msgid "Visible"
-msgstr ""
-
-#. AAZfA
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3146133\n"
-"help.text"
-msgid "<ahelp hid=\"HID_QRYDGN_ROW_VISIBLE\">If you mark the <emph>Visible</emph> property for a data field, that field will be visibly displayed in the resulting query</ahelp>. If you are only using a data field to formulate a condition or make a calculation, you do not necessarily need to display it."
-msgstr ""
-
-#. eQFRR
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3154714\n"
-"help.text"
-msgid "Criteria"
-msgstr ""
-
-#. f3DvJ
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3145134\n"
-"help.text"
-msgid "<ahelp hid=\"HID_QRYDGN_ROW_CRIT\">Specifies a first <link href=\"text/sdatabase/020010100.xhp\" name=\"criteria \">criteria </link>by which the content of the data field is to be filtered.</ahelp>"
-msgstr ""
-
-#. qpADC
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3152477\n"
-"help.text"
-msgid "or"
-msgstr ""
-
-#. KFVy8
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154585\n"
-"help.text"
-msgid "Here you can enter one additional filter criterion for each line. Multiple criteria in a single column will be interpreted as boolean OR."
-msgstr ""
-
-#. eXvp7
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3148800\n"
-"help.text"
-msgid "You can also use the context menu of the line headers in the lower area of the query design window to insert a filter based on a function:"
-msgstr ""
-
-#. 5x8LE
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3148419\n"
-"help.text"
-msgid "Functions"
-msgstr ""
-
-#. Cxhjn
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3153233\n"
-"help.text"
-msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\" visibility=\"hidden\">Select a function to run in the query.</ahelp> The functions which are available here depend on those provided by the database engine."
-msgstr ""
-
-#. qFuqw
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id8760818\n"
-"help.text"
-msgid "If you are working with the embedded HSQL database, the list box in the <emph>Function</emph> row offers you the following options:"
-msgstr ""
-
-#. 9tdDn
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150307\n"
-"help.text"
-msgid "Option"
-msgstr ""
-
-#. kBvXF
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3152993\n"
-"help.text"
-msgid "Effect"
-msgstr ""
-
-#. zCunm
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3155377\n"
-"help.text"
-msgid "No function"
-msgstr ""
-
-#. kZMTN
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3155533\n"
-"help.text"
-msgid "No function will be executed."
-msgstr ""
-
-#. 6dWZZ
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3166420\n"
-"help.text"
-msgid "Average"
-msgstr ""
-
-#. NfRNs
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154486\n"
-"help.text"
-msgid "Calculates the arithmetic mean of a field."
-msgstr ""
-
-#. 6z2Kj
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3149979\n"
-"help.text"
-msgid "Count"
-msgstr ""
-
-#. rvWA5
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3155810\n"
-"help.text"
-msgid "Determines the number of records in the table. Empty fields can either be counted (a) or excluded (b)."
-msgstr ""
-
-#. UyAx2
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3151333\n"
-"help.text"
-msgid "a) COUNT(*): Passing an asterisk as the argument counts all records in the table."
-msgstr ""
-
-#. FNCC8
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3152889\n"
-"help.text"
-msgid "b) COUNT(column): Passing a field name as an argument counts only the records in which the specified field contains a value. Records in which the field has a Null value (i.e. contains no textual or numeric value) will not be counted."
-msgstr ""
-
-#. 2ubvb
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3153067\n"
-"help.text"
-msgid "Maximum"
-msgstr ""
-
-#. ds4ey
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3159221\n"
-"help.text"
-msgid "Determines the highest value of a record for that field."
-msgstr ""
-
-#. EhSWy
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3146866\n"
-"help.text"
-msgid "Minimum"
-msgstr ""
-
-#. VxmeB
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3157982\n"
-"help.text"
-msgid "Determines the lowest value of a record for that field."
-msgstr ""
-
-#. CvkuF
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154828\n"
-"help.text"
-msgid "Sum"
-msgstr ""
-
-#. 82gAC
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154536\n"
-"help.text"
-msgid "Calculates the sum of the values of records for the associated fields."
-msgstr ""
-
-#. zCzVC
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3148820\n"
-"help.text"
-msgid "Group"
-msgstr ""
-
-#. tSPNG
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3149438\n"
-"help.text"
-msgid "Groups query data according to the selected field name. Functions are executed according to the specified groups. In SQL, this option corresponds to the GROUP BY clause. If a criterion is added, this entry appears in the SQL HAVING sub-clause."
-msgstr ""
-
-#. qHfpD
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3156038\n"
-"help.text"
-msgid "You can also enter function calls directly into the SQL statement. The syntax is:"
-msgstr ""
-
-#. Qg6Ue
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3156340\n"
-"help.text"
-msgid "SELECT FUNCTION(column) FROM table."
-msgstr ""
-
-#. qAAoF
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3155075\n"
-"help.text"
-msgid "For example, the function call in SQL for calculating a sum is:"
-msgstr ""
-
-#. VrHLf
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154591\n"
-"help.text"
-msgid "SELECT SUM(\"Price\") FROM \"Article\"."
-msgstr ""
-
-#. dABCo
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3159205\n"
-"help.text"
-msgid "Except for the <emph>Group</emph> function, the above functions are called Aggregate functions. These are functions that calculate data to create summaries from the results. Additional functions that are not listed in the list box might be also possible. These depend on the specific database engine in use and on the current functionality provided by the Base driver used to connect to that database engine."
-msgstr ""
-
-#. BVC6J
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3148651\n"
-"help.text"
-msgid "To use other functions not listed in the list box, you must enter them manually under <emph>Field</emph>."
-msgstr ""
-
-#. WkboS
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3155098\n"
-"help.text"
-msgid "You can also assign aliases to function calls. If you do not want to display the query string in the column header, enter a desired substitute name under <emph>Alias</emph>."
-msgstr ""
-
-#. 98GCC
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3155539\n"
-"help.text"
-msgid "The corresponding function in an SQL statement is:"
-msgstr ""
-
-#. WACG9
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3149425\n"
-"help.text"
-msgid "SELECT FUNCTION() AS alias FROM table"
-msgstr ""
-
-#. EjzuD
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3144431\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#. G9URE
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154614\n"
-"help.text"
-msgid "SELECT COUNT(*) AS count FROM \"Item\""
-msgstr ""
-
-#. xiNnR
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154610\n"
-"help.text"
-msgid "If you run such a function, you cannot insert any additional columns for the query other than as an argument in a \"Group\" function."
-msgstr ""
-
-#. EHACK
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154644\n"
-"help.text"
-msgid "<emph>Examples</emph>"
-msgstr ""
-
-#. N5CBE
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3151120\n"
-"help.text"
-msgid "In the following example, a query is run through two tables: an \"Item\" table with the \"Item_No\" field and a \"Suppliers\" table with the \"Supplier_Name\" field. In addition, both tables have a common field name \"Supplier_No.\""
-msgstr ""
-
-#. P5hJD
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3155144\n"
-"help.text"
-msgid "The following steps are required to create a query containing all suppliers who deliver more than three items."
-msgstr ""
-
-#. ZhRQD
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3153240\n"
-"help.text"
-msgid "Insert the \"Item\" and \"Suppliers\" tables into the query design."
-msgstr ""
-
-#. LMRUV
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3148807\n"
-"help.text"
-msgid "Link the \"Supplier_No\" fields of the two tables if there is not already a relation of this type."
-msgstr ""
-
-#. qWhFA
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3161652\n"
-"help.text"
-msgid "Double-click on the \"Item_No\" field from the \"Item\" table. Display the <emph>Function</emph> line using the context menu and select the Count function."
-msgstr ""
-
-#. TgPA2
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3151009\n"
-"help.text"
-msgid "Enter >3 as a criterion and disable the Visible field."
-msgstr ""
-
-#. VwEhF
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3145601\n"
-"help.text"
-msgid "Double-click the \"Supplier_Name\" field in the \"Suppliers\" table and choose the Group function."
-msgstr ""
-
-#. zsjaa
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3147512\n"
-"help.text"
-msgid "Run the query."
-msgstr ""
-
-#. EzQsj
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3148638\n"
-"help.text"
-msgid "If the \"price\" (for the individual price of an article) and \"Supplier_No\" (for the supplier of the article) fields exist in the \"Item\" table, you can obtain the average price of the item that a supplier provides with the following query:"
-msgstr ""
-
-#. qAByp
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3153045\n"
-"help.text"
-msgid "Insert the \"Item\" table into the query design."
-msgstr ""
-
-#. tjfuE
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3149802\n"
-"help.text"
-msgid "Double-click the \"Price\" and \"Supplier_No\" fields."
-msgstr ""
-
-#. 6dBkt
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3153554\n"
-"help.text"
-msgid "Enable the <emph>Function</emph> line and select the Average function from the \"Price\" field."
-msgstr ""
-
-#. x8JB3
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3155597\n"
-"help.text"
-msgid "You can also enter \"Average\" in the line for the alias name (without quotation marks)."
-msgstr ""
-
-#. D4A9u
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3151191\n"
-"help.text"
-msgid "Choose Group for the \"Supplier_No\" field."
-msgstr ""
-
-#. BUYS9
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3155547\n"
-"help.text"
-msgid "Run the query."
-msgstr ""
-
-#. EkHzB
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3147549\n"
-"help.text"
-msgid "The following context menu commands and symbols are available:"
-msgstr ""
-
-#. PesFs
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3154172\n"
-"help.text"
-msgid "Functions"
-msgstr ""
-
-#. BchuJ
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150414\n"
-"help.text"
-msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Shows or hides a row for the selection of functions.</ahelp>"
-msgstr ""
-
-#. yx5XE
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3149872\n"
-"help.text"
-msgid "Table Name"
-msgstr ""
-
-#. ELTGJ
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3147246\n"
-"help.text"
-msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Shows or hides the row for the table name.</ahelp>"
-msgstr ""
-
-#. DDFEA
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3145117\n"
-"help.text"
-msgid "Alias Name"
-msgstr ""
-
-#. LDFZB
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3155754\n"
-"help.text"
-msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Shows or hides the row for the alias name.</ahelp>"
-msgstr ""
-
-#. wnNhq
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3153298\n"
-"help.text"
-msgid "Distinct Values"
-msgstr ""
-
-#. 23sAF
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3147500\n"
-"help.text"
-msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Retrieves only distinct values from the query.</ahelp> This applies to multiple records that might contain several repeating occurrences of data in the selected fields. If the <emph>Distinct Values</emph> command is active, you should only see one record in the query (DISTINCT). Otherwise, you will see all records corresponding to the query criteria (ALL)."
-msgstr ""
-
-#. RZED7
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150436\n"
-"help.text"
-msgid "For example, if the name \"Smith\" occurs several times in your address database, you can choose the<emph> Distinct Values</emph> command to specify in the query that the name \"Smith\" will occur only once."
-msgstr ""
-
-#. 2GvRf
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3152352\n"
-"help.text"
-msgid "For a query involving several fields, the combination of values from all fields must be unique so that the result can be formed from a specific record. For example, you have \"Smith in Chicago\" once in your address book and \"Smith in London\" twice. With the<emph> Distinct Values</emph> command, the query will use the two fields \"last name\" and \"city\" and return the query result \"Smith in Chicago\" once and \"Smith in London\" once."
-msgstr ""
-
-#. m5UcG
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3149825\n"
-"help.text"
-msgid "In SQL, this command corresponds to the DISTINCT predicate."
-msgstr ""
-
-#. GHsJd
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3153290\n"
-"help.text"
-msgid "Limit"
-msgstr ""
-
-#. MijJg
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3147501\n"
-"help.text"
-msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Allows you to limit the maximum number of records returned by a query.</ahelp>"
-msgstr ""
-
-#. B6S5f
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3152350\n"
-"help.text"
-msgid "If a <emph>Limit</emph> construction is added, you will get at most as many rows as the number you specify. Otherwise, you will see all records corresponding to the query criteria."
-msgstr ""
-
-#. MGqK3
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3148926\n"
-"help.text"
-msgid "Formulating filter conditions"
-msgstr ""
-
-#. iFSpm
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3153162\n"
-"help.text"
-msgid "When formulating filter conditions, various operators and commands are available to you. Apart from the relational operators, there are SQL-specific commands that query the content of database fields. If you use these commands in the $[officename] syntax, $[officename] automatically converts these into the corresponding SQL syntax via an internal parser. You can also enter the SQL command directly and bypass the internal parser. The following tables give an overview of the operators and commands:"
-msgstr ""
-
-#. fXeDd
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3149044\n"
-"help.text"
-msgid "Operator"
-msgstr ""
-
-#. mfdEx
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3152471\n"
-"help.text"
-msgid "Meaning"
-msgstr ""
-
-#. mBZgC
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3147407\n"
-"help.text"
-msgid "Condition is satisfied if..."
-msgstr ""
-
-#. gqkRK
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3153026\n"
-"help.text"
-msgid "equal to"
-msgstr ""
-
-#. hw7KZ
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3148895\n"
-"help.text"
-msgid "... the content of the field is identical to the indicated expression."
-msgstr ""
-
-#. A8XJU
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3153120\n"
-"help.text"
-msgid "The operator = will not be displayed in the query fields. If you enter a value without any operator, the = operator is automatically assumed."
-msgstr ""
-
-#. mWwUE
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3145223\n"
-"help.text"
-msgid "not equal to"
-msgstr ""
-
-#. Db7BG
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3145635\n"
-"help.text"
-msgid "... the content of the field does not correspond to the specified expression."
-msgstr ""
-
-#. dtjkU
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3146815\n"
-"help.text"
-msgid "greater than"
-msgstr ""
-
-#. gCWug
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3149150\n"
-"help.text"
-msgid "... the content of the field is greater than the specified expression."
-msgstr ""
-
-#. QkAKk
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3147379\n"
-"help.text"
-msgid "less than"
-msgstr ""
-
-#. xxPdk
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150375\n"
-"help.text"
-msgid "... the content of the field is less than the specified expression."
-msgstr ""
-
-#. 4aJjX
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150636\n"
-"help.text"
-msgid "greater than or equal to"
-msgstr ""
-
-#. 2rwQm
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154584\n"
-"help.text"
-msgid "... the content of the field is greater than or equal to the specified expression."
-msgstr ""
-
-#. ADRZk
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154052\n"
-"help.text"
-msgid "less than or equal to"
-msgstr ""
-
-#. 9KtmZ
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3157902\n"
-"help.text"
-msgid "... the content of the field is less than or equal to the specified expression."
-msgstr ""
-
-#. DBXG9
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154630\n"
-"help.text"
-msgid "$[officename] command"
-msgstr ""
-
-#. Yo7MG
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150484\n"
-"help.text"
-msgid "SQL command"
-msgstr ""
-
-#. pJay6
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154158\n"
-"help.text"
-msgid "Meaning"
-msgstr ""
-
-#. qmaX5
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3149433\n"
-"help.text"
-msgid "Condition is satisfied if..."
-msgstr ""
-
-#. do6XQ
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3143236\n"
-"help.text"
-msgid "is null"
-msgstr ""
-
-#. NPqBL
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154744\n"
-"help.text"
-msgid "... the field contains no data. For Yes/No fields with three possible states, this command automatically queries the undetermined state (neither Yes nor No)."
-msgstr ""
-
-#. 7Rfbd
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3151229\n"
-"help.text"
-msgid "is not empty"
-msgstr ""
-
-#. w3Tva
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3145304\n"
-"help.text"
-msgid "... the field is not empty, i.e it contains data."
-msgstr ""
-
-#. GGKUH
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3153891\n"
-"help.text"
-msgid "placeholder (*) for any number of characters"
-msgstr ""
-
-#. gbEWB
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3148887\n"
-"help.text"
-msgid "placeholder (?) for exactly one character"
-msgstr ""
-
-#. tBQfA
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"bm_id3157985\n"
-"help.text"
-msgid "<bookmark_value>placeholders; in SQL queries</bookmark_value>"
-msgstr ""
-
-#. agxhB
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3157985\n"
-"help.text"
-msgid "placeholder (%) for any number of characters"
-msgstr ""
-
-#. EE9ii
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3147422\n"
-"help.text"
-msgid "Placeholder (_) for exactly one character"
-msgstr ""
-
-#. za5g2
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154845\n"
-"help.text"
-msgid "is an element of"
-msgstr ""
-
-#. 2Y3zW
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3156130\n"
-"help.text"
-msgid "... the data field contains the indicated expression. The (*) placeholder indicates whether the expression x occurs at the beginning of (x*), at the end of (*x) or inside the field content (*x*). You can enter as a placeholder in SQL queries either the SQL % character or the familiar (*) file system placeholder in the %PRODUCTNAME interface."
-msgstr ""
-
-#. CPJyr
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150271\n"
-"help.text"
-msgid "The (*) or (%) placeholder stands for any number of characters. The question mark (?) in the $[officename] interface or the underscore (_) in SQL queries is used to represent exactly one character."
-msgstr ""
-
-#. AAEXi
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3159141\n"
-"help.text"
-msgid "Is not an element of"
-msgstr ""
-
-#. 9vFBZ
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3161664\n"
-"help.text"
-msgid "... the field does not contain data having the specified expression."
-msgstr ""
-
-#. CD2Ra
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3159184\n"
-"help.text"
-msgid "falls within the interval [x,y]"
-msgstr ""
-
-#. cDe2u
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154395\n"
-"help.text"
-msgid "... the field contains a data value that lies between the two values x and y."
-msgstr ""
-
-#. KYAXv
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3155498\n"
-"help.text"
-msgid "Does not fall within the interval [x,y]"
-msgstr ""
-
-#. cVfAF
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3148992\n"
-"help.text"
-msgid "... the field contains a data value that does not lie between the two values x and y."
-msgstr ""
-
-#. DBBQE
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3159167\n"
-"help.text"
-msgid "Note that semicolons are used as separators in all value lists!"
-msgstr ""
-
-#. evEuh
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154809\n"
-"help.text"
-msgid "contains a, b, c..."
-msgstr ""
-
-#. eeFC2
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3148399\n"
-"help.text"
-msgid "... the field name contains one of the specified expressions a, b, c,... Any number of expressions can be specified, and the result of the query is determined by a boolean OR operator. The expressions a, b, c... can be either numbers or characters"
-msgstr ""
-
-#. JXq76
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150679\n"
-"help.text"
-msgid "does not contain a, b, c..."
-msgstr ""
-
-#. U5doB
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3158439\n"
-"help.text"
-msgid "... the field does not contain one of the specified expressions a, b, c,..."
-msgstr ""
-
-#. cECKt
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3149248\n"
-"help.text"
-msgid "has the value True"
-msgstr ""
-
-#. fbgDt
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3148524\n"
-"help.text"
-msgid "... the field name has the value True."
-msgstr ""
-
-#. 39zcD
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3149955\n"
-"help.text"
-msgid "has the value false"
-msgstr ""
-
-#. fGHY6
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3146850\n"
-"help.text"
-msgid "... the field data value is set to false."
-msgstr ""
-
-#. qQETa
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3155954\n"
-"help.text"
-msgid "Examples"
-msgstr ""
-
-#. LuvGC
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3153792\n"
-"help.text"
-msgid "='Ms.'"
-msgstr ""
-
-#. 8GaiA
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150948\n"
-"help.text"
-msgid "returns field names with the field content \"Ms.\""
-msgstr ""
-
-#. C3BDE
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id315094A\n"
-"help.text"
-msgid "returns dates that occurred before January 10, 2001"
-msgstr ""
-
-#. mnGgM
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150333\n"
-"help.text"
-msgid "LIKE 'g?ve'"
-msgstr ""
-
-#. T7ZhS
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3147332\n"
-"help.text"
-msgid "returns records with field content such as \"give\" and \"gave\"."
-msgstr ""
-
-#. f6T3F
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3155350\n"
-"help.text"
-msgid "returns records with field contents such as \"Sun\"."
-msgstr ""
-
-#. AvbKu
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3159406\n"
-"help.text"
-msgid "returns records with field content between the values 10 and 20. (The fields can be either text fields or number fields)."
-msgstr ""
-
-#. 3tymM
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3149712\n"
-"help.text"
-msgid "returns records with the values 1, 3, 5, 7. If the field name contains an item number, for example, you can create a query that returns the item having the specified number."
-msgstr ""
-
-#. cBAnB
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3152948\n"
-"help.text"
-msgid "NOT IN ('Smith')"
-msgstr ""
-
-#. uusce
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3147279\n"
-"help.text"
-msgid "returns records that do not contain \"Smith\"."
-msgstr ""
-
-#. AJ8Xo
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3146073\n"
-"help.text"
-msgid "<emph>Like </emph>Escape Sequence: {escape 'escape-character'}"
-msgstr ""
-
-#. Cy7Cc
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150661\n"
-"help.text"
-msgid "Example: select * from Item where ItemName like 'The *%' {escape '*'}"
-msgstr ""
-
-#. newGb
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3148541\n"
-"help.text"
-msgid "The example will give you all of the entries where the item name begins with 'The *'. This means that you can also search for characters that would otherwise be interpreted as placeholders, such as *, ?, _, % or the period."
-msgstr ""
-
-#. bAP3N
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150572\n"
-"help.text"
-msgid "<emph>Outer Join</emph> Escape Sequence: {oj outer-join}"
-msgstr ""
-
-#. VnKGf
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3156052\n"
-"help.text"
-msgid "Example: select Article.* from {oj item LEFT OUTER JOIN orders ON item.no=orders.ANR}"
-msgstr ""
-
-#. mWG9p
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3153674\n"
-"help.text"
-msgid "Querying text fields"
-msgstr ""
-
-#. sxYQF
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3149134\n"
-"help.text"
-msgid "To query the content of a text field, you must put the expression between single quotes. The distinction between uppercase and lowercase letters depends on the database in use. LIKE, by definition, is case-sensitive (though some databases don't interpret this strictly)."
-msgstr ""
-
-#. BEp4G
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3149302\n"
-"help.text"
-msgid "Querying date fields"
-msgstr ""
-
-#. D5mjw
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3157998\n"
-"help.text"
-msgid "<emph>Date fields</emph> are represented as #Date# to clearly identify them as dates. Date, time and date/time constants (literals) used in conditions can be of either the SQL Escape Syntax type, or default SQL2 syntax."
-msgstr ""
-
-#. Zzuo6
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id31537341\n"
-"help.text"
-msgid "Date Type Element"
-msgstr ""
-
-#. JKys2
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id31537342\n"
-"help.text"
-msgid "SQL Escape syntax #1 - may be obsolete"
-msgstr ""
-
-#. AzkWz
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id31537343\n"
-"help.text"
-msgid "SQL Escape syntax #2"
-msgstr ""
-
-#. UJ6VA
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id31537344\n"
-"help.text"
-msgid "SQL2 syntax"
-msgstr ""
-
-#. 9V3Ky
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id315913111\n"
-"help.text"
-msgid "Date"
-msgstr ""
-
-#. YNF3S
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id31559471\n"
-"help.text"
-msgid "Time"
-msgstr ""
-
-#. ssX5b
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id31509641\n"
-"help.text"
-msgid "DateTime"
-msgstr ""
-
-#. FqZXM
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3149539\n"
-"help.text"
-msgid "Example: select {d '1999-12-31'} from world.years"
-msgstr ""
-
-#. WJ4YB
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3149540\n"
-"help.text"
-msgid "Example: select * from mytable where years='1999-12-31'"
-msgstr ""
-
-#. CZdA4
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150510\n"
-"help.text"
-msgid "All date expressions (date literals) must be enclosed with single quotation marks. (Consult the reference for the particular database and connector you are using for more details.)"
-msgstr ""
-
-#. HXdKT
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3150427\n"
-"help.text"
-msgid "Querying Yes/No fields"
-msgstr ""
-
-#. xWzix
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3149523\n"
-"help.text"
-msgid "To query Yes/No fields, use the following syntax for dBASE tables:"
-msgstr ""
-
-#. A4Uh7
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3153180\n"
-"help.text"
-msgid "Status"
-msgstr ""
-
-#. FnXiE
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3147481\n"
-"help.text"
-msgid "Query criterion"
-msgstr ""
-
-#. e6DJr
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3155187\n"
-"help.text"
-msgid "Example"
-msgstr ""
-
-#. Guy7d
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3156092\n"
-"help.text"
-msgid "Yes"
-msgstr ""
-
-#. p9WTn
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3152414\n"
-"help.text"
-msgid "for dBASE tables: not equal to any given value"
-msgstr ""
-
-#. RFrvz
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3151265\n"
-"help.text"
-msgid "=1 returns all records where the Yes/No field has the status \"Yes\" or \"On\" (selected in black),"
-msgstr ""
-
-#. 3P4ZB
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3152450\n"
-"help.text"
-msgid "No"
-msgstr ""
-
-#. BzBAa
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150997\n"
-"help.text"
-msgid "."
-msgstr ""
-
-#. TFsQG
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3155331\n"
-"help.text"
-msgid "=0 returns all records for which the Yes/No field has the status \"No\" or \"Off\" (no selection)."
-msgstr ""
-
-#. 9KXzK
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3154179\n"
-"help.text"
-msgid "Null"
-msgstr ""
-
-#. CwGZv
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3147035\n"
-"help.text"
-msgid "IS NULL"
-msgstr ""
-
-#. dyXYc
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3159385\n"
-"help.text"
-msgid "IS NULL returns all records for which the Yes/No field has neither of the states Yes or No (selected in gray)."
-msgstr ""
-
-#. YWk5J
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3157888\n"
-"help.text"
-msgid "The syntax depends on the database system used. You should also note that Yes/No fields can be defined differently (only 2 states instead of 3)."
-msgstr ""
-
-#. mmVa8
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3145772\n"
-"help.text"
-msgid "Parameter queries"
-msgstr ""
-
-#. ND7xd
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id191120151905346795\n"
-"help.text"
-msgid "Parameter queries allow the user to input values at run-time. These values are used within the criteria for selecting the records to be displayed. Each such value has a parameter name associated with it, which is used to prompt the user when the query is run."
-msgstr ""
-
-#. Be7XG
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id191120151905439551\n"
-"help.text"
-msgid "Parameter names are preceded by a colon in both the Design and SQL views of a query. This can be used wherever a value can appear. If the same value is to appear more than once in the query, the same parameter name is used."
-msgstr ""
-
-#. 57vjv
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id191120151905518123\n"
-"help.text"
-msgid "In the simplest case, where the user enters a value which is matched for equality, the parameter name with its preceding colon is simply entered in the Criterion row. In <link href=\"text/sdatabase/020010100.xhp#sqlmode\">SQL mode</link> this should be typed as <item type=\"input\">WHERE \"Field\" = :Parameter_name</item>"
-msgstr ""
-
-#. DZCXm
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id191120151905584287\n"
-"help.text"
-msgid "Parameter names may not contain any of the characters <item type=\"input\"><space>`!\"$%^*()+={}[]@'~#<>?/,</item>. They may not be the same as field names or SQL reserved words. They may be the same as aliases."
-msgstr ""
-
-#. bGnxL
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id191120151931441881\n"
-"help.text"
-msgid "A useful construction for selecting records based on parts of a text field's content is to add a hidden column with <item type=\"input\">\"LIKE '%' || :Part_of_field || '%'\"</item> as the criterion. This will select records with an exact match. If a case-insensitive test is wanted, one solution is to use <item type=\"input\">LOWER (Field_Name)</item> as the field and <item type=\"input\">LIKE LOWER ( '%' || :Part_of_field || '%' )</item> as the criterion. Note that the spaces in the criterion are important; if they are left out the SQL parser interprets the entire criterion as a string to be matched. In <link href=\"text/sdatabase/020010100.xhp#sqlmode\">SQL mode</link> this should be typed as <item type=\"input\">LOWER ( \"Field_Name\" ) LIKE LOWER ( '%' || :Part_of_field || '%' )</item>."
-msgstr ""
-
-#. sSSB9
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3150585\n"
-"help.text"
-msgid "Parameter queries may be used as the data source for <link href=\"text/shared/02/01170203.xhp\" name=\"subforms\">subforms</link>, to allow the user to restrict the displayed records."
-msgstr ""
-
-#. DRj78
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3151035\n"
-"help.text"
-msgid "Parameter Input"
-msgstr ""
-
-#. BisCF
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3153596\n"
-"help.text"
-msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">The <emph>Parameter Input</emph> dialog asks the user to enter the parameter values. Enter a value for each query parameter and confirm by clicking <emph>OK</emph> or typing <emph>Enter</emph>.</ahelp>"
-msgstr ""
-
-#. eGETM
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id191120151924165870\n"
-"help.text"
-msgid "The values entered by the user may consist of any characters which are allowable for the SQL for the relevant criterion; this may depend on the underlying database system."
-msgstr ""
-
-#. seFhG
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id191120151939594217\n"
-"help.text"
-msgid "The user can use the SQL wild-card characters \"%\" (arbitrary string) or \"_\" (arbitrary single character) as part of the value to retrieve records with more complex criteria."
-msgstr ""
-
-#. wRe6v
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"hd_id3145181\n"
-"help.text"
-msgid "SQL Mode"
-msgstr ""
-
-#. 5avVu
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3147013\n"
-"help.text"
-msgid "SQL stands for \"Structured Query Language\" and describes instructions for updating and administering relational databases."
-msgstr ""
-
-#. wDAAY
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3152570\n"
-"help.text"
-msgid "In $[officename] you do not need any knowledge of SQL for most queries, since you do not have to enter the SQL code. If you create a query in the query designer, $[officename] automatically converts your instructions into the corresponding SQL syntax. If, with the help of the <emph>Switch Design View On/Off </emph>button, you change to the SQL view, you can see the SQL commands for a query that has already been created."
-msgstr ""
-
-#. hBQFv
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3152412\n"
-"help.text"
-msgid "You can formulate your query directly in SQL code. Note, however, that the special syntax is dependent upon the database system that you use."
-msgstr ""
-
-#. kkuBG
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3146842\n"
-"help.text"
-msgid "If you enter the SQL code manually, you can create SQL-specific queries that are not supported by the graphical interface in the <emph>Query designer</emph>. These queries must be executed in native SQL mode."
-msgstr ""
-
-#. cBY6B
-#: 02010100.xhp
-msgctxt ""
-"02010100.xhp\n"
-"par_id3149632\n"
-"help.text"
-msgid "By clicking the <link href=\"text/shared/02/14030000.xhp\" name=\"Run SQL command directly\"><emph>Run SQL command directly</emph></link> icon in the SQL view, you can formulate a query that is not processed by $[officename] and sent directly to the database engine."
-msgstr ""
-
-#. fKBDD
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"tit\n"
-"help.text"
-msgid "Join Properties"
-msgstr ""
-
-#. TTCNB
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"bm_id3154015\n"
-"help.text"
-msgid "<bookmark_value>links;relational databases (Base)</bookmark_value> <bookmark_value>inner joins (Base)</bookmark_value> <bookmark_value>joins in databases (Base)</bookmark_value> <bookmark_value>left joins (Base)</bookmark_value> <bookmark_value>right joins (Base)</bookmark_value> <bookmark_value>full joins (Base)</bookmark_value>"
-msgstr ""
-
-#. DG7RD
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"hd_id3154015\n"
-"help.text"
-msgid "Join Properties"
-msgstr ""
-
-#. MzpBt
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"par_id3151205\n"
-"help.text"
-msgid "If you double-click a connection between two linked fields in the query design, or if you choose <emph>Insert - New Relation</emph>, the <emph>Join Properties</emph> dialog appears. These properties will be used in all queries created in the future."
-msgstr ""
-
-#. oszEF
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"hd_id3155066\n"
-"help.text"
-msgid "Tables involved"
-msgstr ""
-
-#. 2AkcB
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"par_id3153924\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/joindialog/table2\">Specifies two different tables that you want to join.</ahelp>"
-msgstr ""
-
-#. X6wkD
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"hd_id3155766\n"
-"help.text"
-msgid "Fields involved"
-msgstr ""
-
-#. 8bYEZ
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"par_id3148994\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specifies two data fields that will be joined by a relation.</ahelp>"
-msgstr ""
-
-#. R8CbB
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"hd_id3159267\n"
-"help.text"
-msgid "Options"
-msgstr ""
-
-#. MRJCp
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"hd_id3147340\n"
-"help.text"
-msgid "Type"
-msgstr ""
-
-#. rxAGo
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"par_id3152482\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/joindialog/type\">Specifies the join type of the selected join.</ahelp> Some databases support only a subset of the various possible types."
-msgstr ""
-
-#. ngfse
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"hd_id3155334\n"
-"help.text"
-msgid "Inner Join"
-msgstr ""
-
-#. 356Dv
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"par_id3155936\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/joindialog/type\">In an inner join, the results table contains only those records for which the content of the linked fields is the same.</ahelp> In $[officename] SQL this type of link is created by a corresponding WHERE clause."
-msgstr ""
-
-#. XYKGT
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"hd_id3156372\n"
-"help.text"
-msgid "Left Join"
-msgstr ""
-
-#. dRFux
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"par_id3166450\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/joindialog/type\">In a left join, the results table contains all records of the queried fields from the left table and only those records of the queried fields from the right table for which the content of the linked fields is the same.</ahelp> In $[officename] SQL this type of link corresponds to the LEFT OUTER JOIN command."
-msgstr ""
-
-#. DxGWD
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"hd_id3155607\n"
-"help.text"
-msgid "Right Join"
-msgstr ""
-
-#. 9eD8R
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"par_id3150647\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/joindialog/type\">In a right join, the results table contains all records of the queried fields from the right table and only those records of the queried fields from the left table for which the content of the linked fields is the same.</ahelp> In $[officename] SQL this type of link corresponds to the RIGHT OUTER JOIN command."
-msgstr ""
-
-#. wcFAd
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"hd_id3158215\n"
-"help.text"
-msgid "Full Join"
-msgstr ""
-
-#. wAFid
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"par_id3163665\n"
-"help.text"
-msgid "<ahelp hid=\"dbaccess/ui/joindialog/type\">In a full join, the results table contains all records of the queried fields from the left and right tables.</ahelp> In the SQL of $[officename] this type of link corresponds to the FULL OUTER JOIN command."
-msgstr ""
-
-#. gYRyC
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"hd_id0305200912031976\n"
-"help.text"
-msgid "Natural"
-msgstr ""
-
-#. 44FEn
-#: 02010101.xhp
-msgctxt ""
-"02010101.xhp\n"
-"par_id0305200912031977\n"
-"help.text"
-msgid "<ahelp hid=\".\">In a natural join, the keyword NATURAL in inserted into the SQL statement that defines the relation. The relation joins all columns that have the same column name in both tables. The resulting joined table contains only one column for each pair of equally named columns.</ahelp>"
-msgstr ""
-
#. cLmBi
#: main.xhp
msgctxt ""
@@ -2919,354 +138,3 @@ msgctxt ""
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/Database\" name=\"wiki.documentfoundation.org Database\">Wiki page about Base</link>"
msgstr ""
-
-#. PAxTq
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"tit\n"
-"help.text"
-msgid "Toolbars"
-msgstr ""
-
-#. Tzgdb
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN10541\n"
-"help.text"
-msgid "<variable id=\"toolbars\"><link href=\"text/sdatabase/toolbars.xhp\">Toolbars</link></variable>"
-msgstr ""
-
-#. B3mEW
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN10545\n"
-"help.text"
-msgid "In a database file window, you can see the following toolbars."
-msgstr ""
-
-#. ZNxCw
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN10548\n"
-"help.text"
-msgid "Table"
-msgstr ""
-
-#. JWHfj
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN10554\n"
-"help.text"
-msgid "Open database object"
-msgstr ""
-
-#. 4fvFG
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the selected table so you can enter, edit, or delete records.</ahelp>"
-msgstr ""
-
-#. LFKBo
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN1056F\n"
-"help.text"
-msgid "Edit"
-msgstr ""
-
-#. tLLAy
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN10573\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the selected table so you can change the structure.</ahelp>"
-msgstr ""
-
-#. FEBzp
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN1058A\n"
-"help.text"
-msgid "Delete"
-msgstr ""
-
-#. PDZsk
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN1058E\n"
-"help.text"
-msgid "<ahelp hid=\".\">Deletes the selected table.</ahelp>"
-msgstr ""
-
-#. m7BX3
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN105A5\n"
-"help.text"
-msgid "Rename"
-msgstr ""
-
-#. B596w
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN105A9\n"
-"help.text"
-msgid "<ahelp hid=\".\">Renames the selected table.</ahelp>"
-msgstr ""
-
-#. LEWCs
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN105B8\n"
-"help.text"
-msgid "Query"
-msgstr ""
-
-#. VT3EG
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN105C4\n"
-"help.text"
-msgid "Open database object"
-msgstr ""
-
-#. 2cEFv
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN105C8\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the selected query so you can enter, edit, or delete records.</ahelp>"
-msgstr ""
-
-#. yVNxZ
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN105DF\n"
-"help.text"
-msgid "Edit"
-msgstr ""
-
-#. kGSTA
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN105E3\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the selected query so you can change the structure.</ahelp>"
-msgstr ""
-
-#. W75xu
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN105FA\n"
-"help.text"
-msgid "Delete"
-msgstr ""
-
-#. XJQBJ
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN105FE\n"
-"help.text"
-msgid "<ahelp hid=\".\">Deletes the selected query.</ahelp>"
-msgstr ""
-
-#. bC56u
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN10615\n"
-"help.text"
-msgid "Rename"
-msgstr ""
-
-#. GDAZR
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN10619\n"
-"help.text"
-msgid "<ahelp hid=\".\">Renames the selected query.</ahelp>"
-msgstr ""
-
-#. mzY5g
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN10628\n"
-"help.text"
-msgid "Form"
-msgstr ""
-
-#. BXrRw
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN10634\n"
-"help.text"
-msgid "Open database object"
-msgstr ""
-
-#. GJDxB
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN10638\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the selected form so you can enter, edit, or delete records.</ahelp>"
-msgstr ""
-
-#. 7f3E9
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN1064F\n"
-"help.text"
-msgid "Edit"
-msgstr ""
-
-#. ZmiNz
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN10653\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the selected form so you can change the layout.</ahelp>"
-msgstr ""
-
-#. xCBQ3
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN1066A\n"
-"help.text"
-msgid "Delete"
-msgstr ""
-
-#. p5bD4
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN1066E\n"
-"help.text"
-msgid "<ahelp hid=\".\">Deletes the selected form.</ahelp>"
-msgstr ""
-
-#. Jrqh7
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN10685\n"
-"help.text"
-msgid "Rename"
-msgstr ""
-
-#. CLTV2
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN10689\n"
-"help.text"
-msgid "<ahelp hid=\".\">Renames the selected form.</ahelp>"
-msgstr ""
-
-#. tkXGC
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN10698\n"
-"help.text"
-msgid "Report"
-msgstr ""
-
-#. GMWLb
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN106A4\n"
-"help.text"
-msgid "Open database object"
-msgstr ""
-
-#. BzwcK
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN106A8\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the selected report so you can enter, edit, or delete records.</ahelp>"
-msgstr ""
-
-#. sLPTD
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN106BF\n"
-"help.text"
-msgid "Edit"
-msgstr ""
-
-#. DF32e
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN106C3\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the selected report so you can change the layout.</ahelp>"
-msgstr ""
-
-#. FGuUB
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN106DA\n"
-"help.text"
-msgid "Delete"
-msgstr ""
-
-#. xikUv
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN106DE\n"
-"help.text"
-msgid "<ahelp hid=\".\">Deletes the selected report.</ahelp>"
-msgstr ""
-
-#. kmUBC
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN106F5\n"
-"help.text"
-msgid "Rename"
-msgstr ""
-
-#. CgE7D
-#: toolbars.xhp
-msgctxt ""
-"toolbars.xhp\n"
-"par_idN106F9\n"
-"help.text"
-msgid "<ahelp hid=\".\">Renames the selected report.</ahelp>"
-msgstr ""
diff --git a/source/sk/helpcontent2/source/text/sdraw/01.po b/source/sk/helpcontent2/source/text/sdraw/01.po
index 6e291a1e0a3..ab01319c876 100644
--- a/source/sk/helpcontent2/source/text/sdraw/01.po
+++ b/source/sk/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-08-17 12:39+0200\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
"PO-Revision-Date: 2020-09-26 19:35+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: Slovak <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw01/sk/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1494406435.000000\n"
#. ybhKD
@@ -574,42 +574,6 @@ msgctxt ""
msgid "<ahelp hid=\"modules/sdraw/ui/insertlayer/name\">Enter a name for the new layer.</ahelp>"
msgstr "<ahelp hid=\"modules/sdraw/ui/insertlayer/name\">Zadajte názov novej vrstvy.</ahelp>"
-#. ADN49
-#: insert_layer.xhp
-msgctxt ""
-"insert_layer.xhp\n"
-"hd_id641596204028276\n"
-"help.text"
-msgid "Title"
-msgstr ""
-
-#. waSME
-#: insert_layer.xhp
-msgctxt ""
-"insert_layer.xhp\n"
-"par_id271596204273624\n"
-"help.text"
-msgid "<ahelp hid=\"modules/sdraw/ui/insertlayer/title\">Enter the title of the layer.</ahelp>"
-msgstr "<ahelp hid=\"modules/sdraw/ui/insertlayer/title\">Zadajte názov vrstvy.</ahelp>"
-
-#. GGy5s
-#: insert_layer.xhp
-msgctxt ""
-"insert_layer.xhp\n"
-"hd_id791596204033460\n"
-"help.text"
-msgid "Description"
-msgstr ""
-
-#. q5F9X
-#: insert_layer.xhp
-msgctxt ""
-"insert_layer.xhp\n"
-"par_id471596204283656\n"
-"help.text"
-msgid "<ahelp hid=\"modules/sdraw/ui/insertlayer/textview\">Enter a description of the layer.</ahelp>"
-msgstr "<ahelp hid=\"modules/sdraw/ui/insertlayer/textview\">Zadajte popis vrstvy.</ahelp>"
-
#. WFSEL
#: insert_layer.xhp
msgctxt ""
diff --git a/source/sk/helpcontent2/source/text/shared.po b/source/sk/helpcontent2/source/text/shared.po
index fe5a497a66f..e4a50c8c27c 100644
--- a/source/sk/helpcontent2/source/text/shared.po
+++ b/source/sk/helpcontent2/source/text/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-07-27 13:24+0200\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
"PO-Revision-Date: 2020-09-05 08:35+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: Slovak <https://weblate.documentfoundation.org/projects/libo_help-master/textshared/sk/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542197405.000000\n"
#. DBz3U
@@ -1996,132 +1996,6 @@ msgctxt ""
msgid "This help page needs further work for correctness and completion. Please join the LibreOffice project and help us out to write the missing information. Visit our <link href=\"https://documentation.libreoffice.org/en/join-community/update-help-contents\"><emph>web page on writing Help contents</emph></link>."
msgstr ""
-#. fGrZx
-#: submenu_spacing.xhp
-msgctxt ""
-"submenu_spacing.xhp\n"
-"tit\n"
-"help.text"
-msgid "Spacing"
-msgstr ""
-
-#. yQezt
-#: submenu_spacing.xhp
-msgctxt ""
-"submenu_spacing.xhp\n"
-"hd_id411816022675979\n"
-"help.text"
-msgid "<link href=\"text/shared/submenu_spacing.xhp\">Spacing</link>"
-msgstr ""
-
-#. 22dPh
-#: submenu_spacing.xhp
-msgctxt ""
-"submenu_spacing.xhp\n"
-"par_id398855439580084\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens a submenu where you can choose text spacing commands.</ahelp>"
-msgstr ""
-
-#. 7Sh42
-#: submenu_spacing.xhp
-msgctxt ""
-"submenu_spacing.xhp\n"
-"hd_id3154944\n"
-"help.text"
-msgid "Line Spacing: 1"
-msgstr ""
-
-#. xxnjH
-#: submenu_spacing.xhp
-msgctxt ""
-"submenu_spacing.xhp\n"
-"hd_id3146969\n"
-"help.text"
-msgid "Line Spacing: 1.5"
-msgstr ""
-
-#. acjb4
-#: submenu_spacing.xhp
-msgctxt ""
-"submenu_spacing.xhp\n"
-"hd_id3153711\n"
-"help.text"
-msgid "Line Spacing: 2"
-msgstr ""
-
-#. 44Px9
-#: submenu_spacing.xhp
-msgctxt ""
-"submenu_spacing.xhp\n"
-"hd_id3147573\n"
-"help.text"
-msgid "Increase Paragraph Spacing"
-msgstr ""
-
-#. zhqwZ
-#: submenu_spacing.xhp
-msgctxt ""
-"submenu_spacing.xhp\n"
-"par_id3150695\n"
-"help.text"
-msgid "Increases the paragraph spacing above the selected paragraph."
-msgstr ""
-
-#. XCZUT
-#: submenu_spacing.xhp
-msgctxt ""
-"submenu_spacing.xhp\n"
-"hd_id3147574\n"
-"help.text"
-msgid "Decrease Paragraph Spacing"
-msgstr ""
-
-#. EVYri
-#: submenu_spacing.xhp
-msgctxt ""
-"submenu_spacing.xhp\n"
-"par_id3150696\n"
-"help.text"
-msgid "Decreases the paragraph spacing above the selected paragraph."
-msgstr ""
-
-#. EsHFP
-#: submenu_spacing.xhp
-msgctxt ""
-"submenu_spacing.xhp\n"
-"hd_id3147575\n"
-"help.text"
-msgid "Increase Indent"
-msgstr ""
-
-#. BU6i9
-#: submenu_spacing.xhp
-msgctxt ""
-"submenu_spacing.xhp\n"
-"par_id3150697\n"
-"help.text"
-msgid "Increases the left indent of the current paragraph or cell content and sets it to the next default tab position. If several paragraphs are selected, the indentation of all selected paragraphs is increased."
-msgstr ""
-
-#. YA8bT
-#: submenu_spacing.xhp
-msgctxt ""
-"submenu_spacing.xhp\n"
-"hd_id3147576\n"
-"help.text"
-msgid "Decrease Indent"
-msgstr ""
-
-#. zVFFG
-#: submenu_spacing.xhp
-msgctxt ""
-"submenu_spacing.xhp\n"
-"par_id3150698\n"
-"help.text"
-msgid "Decreases the left indent of the current paragraph or cell content and sets it to the previous default tab position. If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs."
-msgstr ""
-
#. MVHBc
#: submenu_text.xhp
msgctxt ""
diff --git a/source/sk/helpcontent2/source/text/shared/00.po b/source/sk/helpcontent2/source/text/shared/00.po
index e882bbc4098..637c32fd23f 100644
--- a/source/sk/helpcontent2/source/text/shared/00.po
+++ b/source/sk/helpcontent2/source/text/shared/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-09-28 11:22+0200\n"
-"PO-Revision-Date: 2020-10-01 18:35+0000\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
+"PO-Revision-Date: 2020-10-16 15:35+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: Slovak <https://weblate.documentfoundation.org/projects/libo_help-master/textshared00/sk/>\n"
"Language: sk\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542197405.000000\n"
#. 3B8ZN
@@ -673,24 +673,6 @@ msgctxt ""
msgid "Close the Options dialog and discard all changes done."
msgstr ""
-#. EFDpM
-#: 00000001.xhp
-msgctxt ""
-"00000001.xhp\n"
-"hd_id321597440555403\n"
-"help.text"
-msgid "Apply"
-msgstr ""
-
-#. yJtrx
-#: 00000001.xhp
-msgctxt ""
-"00000001.xhp\n"
-"par_id51597440622057\n"
-"help.text"
-msgid "Applies the modified or selected values without closing the Options dialog."
-msgstr ""
-
#. BRStA
#: 00000001.xhp
msgctxt ""
@@ -727,13 +709,13 @@ msgctxt ""
msgid "<link href=\"text/shared/00/00000002.xhp\" name=\"Glossary of Internet Terms\">Glossary of Internet Terms</link>"
msgstr ""
-#. aj3Pk
+#. 7Qeri
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
"par_id3155577\n"
"help.text"
-msgid "If you are a newcomer to the Internet, you will be confronted with unfamiliar terms: browser, bookmark, email, homepage, search engine, and many others. To make your first steps easier, this glossary explains some of the more important terminology you may find in the Internet, intranet, mail and news."
+msgid "If you are a newcomer to the Internet, you will be confronted with unfamiliar terms: browser, bookmark, e-mail, homepage, search engine, and many others. To make your first steps easier, this glossary explains some of the more important terminology you may find in the Internet, intranet, mail and news."
msgstr ""
#. 3Sv9k
@@ -1249,13 +1231,13 @@ msgctxt ""
msgid "URL"
msgstr "URL"
-#. 3b3CF
+#. CLTAn
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
"par_id3152931\n"
"help.text"
-msgid "The Uniform Resource Locator (URL) displays the address of a document or a server in the Internet. The general structure of a URL varies according to type and is generally in the form Service://Hostname:Port/Path/Page#Mark although not all elements are always required. An URL can be a FTP address, a WWW (HTTP) address, a file address or an email address."
+msgid "The Uniform Resource Locator (URL) displays the address of a document or a server in the Internet. The general structure of a URL varies according to type and is generally in the form Service://Hostname:Port/Path/Page#Mark although not all elements are always required. An URL can be a FTP address, a WWW (HTTP) address, a file address or an e-mail address."
msgstr ""
#. qAvon
@@ -3373,13 +3355,13 @@ msgctxt ""
msgid "When exporting to HTML, the character set selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save - HTML Compatibility</emph> is used. Characters not present there are written in a substitute form, which is displayed correctly in modern web browsers. When exporting such characters, you will receive an appropriate warning."
msgstr ""
-#. kEb5n
+#. CPvXB
#: 00000020.xhp
msgctxt ""
"00000020.xhp\n"
"par_id3153146\n"
"help.text"
-msgid "If, in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save - HTML Compatibility</emph>, you select Mozilla Firefox or $[officename] Writer as the export option, upon export all important font attributes are exported as direct attributes (for example, text color, font size, bold, italic, and so on) in CSS1 styles. (<link href=\"text/shared/00/00000002.xhp\" name=\"CSS\">CSS</link> stands for Cascading Style Sheets.) Importing is also carried out according to this standard."
+msgid "If, in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save - HTML Compatibility</emph>, you select Mozilla Firefox, MS Internet Explorer, or $[officename] Writer as the export option, upon export all important font attributes are exported as direct attributes (for example, text color, font size, bold, italic, and so on) in CSS1 styles. (<link href=\"text/shared/00/00000002.xhp\" name=\"CSS\">CSS</link> stands for Cascading Style Sheets.) Importing is also carried out according to this standard."
msgstr ""
#. XP7i4
@@ -3409,31 +3391,31 @@ msgctxt ""
msgid "\"Font: 10pt\" switches to a 10pt font, with bold, italic, small caps off."
msgstr "\"Font: 10pt\" zmení 10pt font, s tučným, kurzíva, štýl písma vypnutý."
-#. sx5EP
+#. iSvxV
#: 00000020.xhp
msgctxt ""
"00000020.xhp\n"
"par_id3155135\n"
"help.text"
-msgid "If $[officename] Writer are set as the export option, the sizes of the control field and their internal margins are exported as styles (print formats). CSS1 size properties are based on \"width\" and \"height\" values. The \"Margin\" property is used to set equal margins on all sides of the page. To allow different margins, the \"Margin-Left\", \"Margin-Right\", \"Margin-Top\" and \"Margin-Bottom\" properties are used."
+msgid "If MS Internet Explorer or $[officename] Writer are set as the export option, the sizes of the control field and their internal margins are exported as styles (print formats). CSS1 size properties are based on \"width\" and \"height\" values. The \"Margin\" property is used to set equal margins on all sides of the page. To allow different margins, the \"Margin-Left\", \"Margin-Right\", \"Margin-Top\" and \"Margin-Bottom\" properties are used."
msgstr ""
-#. ujGz3
+#. wiSGK
#: 00000020.xhp
msgctxt ""
"00000020.xhp\n"
"par_id3148473\n"
"help.text"
-msgid "The distances of graphics and Plug-Ins to the content can be set individually for export to $[officename] Writer. If the top/bottom or right/left margin is set differently, the distances are exported in a \"STYLE\" option for the corresponding tag as CSS1 size properties \"Margin-Top\", \"Margin-Bottom\", \"Margin-Left\" and \"Margin-Right\"."
+msgid "The distances of graphics and Plug-Ins to the content can be set individually for export to $[officename] Writer and MS Internet Explorer. If the top/bottom or right/left margin is set differently, the distances are exported in a \"STYLE\" option for the corresponding tag as CSS1 size properties \"Margin-Top\", \"Margin-Bottom\", \"Margin-Left\" and \"Margin-Right\"."
msgstr ""
-#. JxdSw
+#. xGAve
#: 00000020.xhp
msgctxt ""
"00000020.xhp\n"
"par_id3144510\n"
"help.text"
-msgid "Frames are supported with the use of CSS1 extensions for absolute positioned objects. This applies only to the export options Mozilla Firefox and $[officename] Writer. Frames can be aligned as graphics, <switchinline select=\"sys\"><caseinline select=\"WIN\"> Plug-Ins,</caseinline></switchinline>and Floating Frames, but character-linked frames are not possible."
+msgid "Frames are supported with the use of CSS1 extensions for absolute positioned objects. This applies only to the export options Mozilla Firefox, MS Internet Explorer, and $[officename] Writer. Frames can be aligned as graphics, <switchinline select=\"sys\"><caseinline select=\"WIN\"> Plug-Ins,</caseinline></switchinline>and Floating Frames, but character-linked frames are not possible."
msgstr ""
#. Vym4j
@@ -3634,13 +3616,13 @@ msgctxt ""
msgid "Importing and Exporting Numbering"
msgstr "Import a export čísel"
-#. GFHgr
+#. jfj5X
#: 00000020.xhp
msgctxt ""
"00000020.xhp\n"
"par_id3145591\n"
"help.text"
-msgid "If, in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save - HTML Compatibility</emph>, the export option \"$[officename] Writer\" is selected, the indents of numberings are exported as \"margin-left\" CSS1 property in the STYLE attribute of the <OL> and <UL> tags. The property indicates the difference relative to the indent of the next higher level."
+msgid "If, in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save - HTML Compatibility</emph>, the export option \"$[officename] Writer\" or \"Internet Explorer\" is selected, the indents of numberings are exported as \"margin-left\" CSS1 property in the STYLE attribute of the <OL> and <UL> tags. The property indicates the difference relative to the indent of the next higher level."
msgstr ""
#. ayGUf
@@ -4622,7 +4604,7 @@ msgctxt ""
"par_id388\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies the measurement units.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nastaviť rozlíšenie.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Určuje jednotky merania.</ahelp>"
#. tS8i8
#: 00000200.xhp
@@ -4640,7 +4622,7 @@ msgctxt ""
"par_id3154561\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"visible\">Specifies the width.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zavrie dialógové okno.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"visible\">Určuje šírku.</ahelp>"
#. VfTBy
#: 00000200.xhp
@@ -4658,7 +4640,7 @@ msgctxt ""
"par_id3147226\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"visible\">Specifies the height.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zavrie dialógové okno.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"visible\">Určuje výšku.</ahelp>"
#. eFBuk
#: 00000200.xhp
@@ -4676,7 +4658,7 @@ msgctxt ""
"par_id3150129\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the image resolution. Select the measurement units from the list box.</ahelp>"
-msgstr "<ahelp hid=\".\">Vloží pozdrav. Vyberte pozdrav zo zoznamu.</ahelp>"
+msgstr "<ahelp hid=\".\">Zadajte rozlíšenie obrázka. V zozname vyberte merné jednotky.</ahelp>"
#. PEM7x
#: 00000200.xhp
@@ -4703,7 +4685,7 @@ msgctxt ""
"par_id435923952\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the color depth from 8 bit grayscale or 24 bit true color.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte farbu pre vybraný zdroj svetla.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte farebnú hĺbku z 8-bitových odtieňov šedej alebo 24-bitových farieb.</ahelp>"
#. 4Aboo
#: 00000200.xhp
@@ -4739,7 +4721,7 @@ msgctxt ""
"par_id312346798\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies RLE (Run Length Encoding) to the BMP graphics.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte túto ikonku, ak chcete prechádzať obrázky.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Aplikuje RLE (Run Length Encoding) na grafiku BMP.</ahelp>"
#. gFotB
#: 00000200.xhp
@@ -4784,7 +4766,7 @@ msgctxt ""
"par_id35674840\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether the graphic is to be saved in interlaced mode.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Určiť poradie dátových bodov.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Určuje, či sa má grafika uložiť v prekladanom režime.</ahelp>"
#. 4E84u
#: 00000200.xhp
@@ -4829,7 +4811,7 @@ msgctxt ""
"par_id993155271\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether a preview image is exported in the TIFF format together with the actual PostScript file.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Upraví veľkosť náhľadu predlohy stránky.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Určuje, či sa má exportovať náhľadový obrázok vo formáte TIFF spolu so súborom PostScript.</ahelp>"
#. aauDC
#: 00000200.xhp
@@ -4856,7 +4838,7 @@ msgctxt ""
"par_id993159201\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the Level 2 option if your output device supports colored bitmaps, palette graphics and compressed graphics.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte túto ikonku, ak chcete prechádzať obrázky.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte možnosť Level 2, ak vaše výstupné zariadenie podporuje farebné bitmapy, paletovú grafiku a komprimovanú grafiku.</ahelp>"
#. EZteg
#: 00000200.xhp
@@ -4865,7 +4847,7 @@ msgctxt ""
"par_id319947250\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Exports the file in color.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte formát súboru.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Exportuje súbor farebne.</ahelp>"
#. m4CS7
#: 00000200.xhp
@@ -4874,7 +4856,7 @@ msgctxt ""
"par_id993147088\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Exports the file in grayscale tones.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte formát súboru.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Exportuje súbor v odtieňoch sivej.</ahelp>"
#. LYd2b
#: 00000200.xhp
@@ -4883,7 +4865,7 @@ msgctxt ""
"par_id399153683\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">LZW compression is the compression of a file into a smaller file using a table-based lookup algorithm.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Upraví veľkosť náhľadu predlohy stránky.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Kompresia LZW je bezstratová kompresia, ktorá vedie k menšiemu súboru.</ahelp>"
#. Cg5Fi
#: 00000200.xhp
@@ -4892,7 +4874,7 @@ msgctxt ""
"par_id319952780\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies that you do not wish to use compression.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte túto ikonku, ak chcete prechádzať sekcie.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Určuje, že nechcete používať kompresiu.</ahelp>"
#. KHHgh
#: 00000200.xhp
@@ -5234,7 +5216,7 @@ msgctxt ""
"par_id314949588\n"
"help.text"
msgid "<ahelp hid=\".\">Determines how the number strings are imported.</ahelp>"
-msgstr "<ahelp hid=\".\">Vytlačí čísla strán v päte.</ahelp>"
+msgstr "<ahelp hid=\".\">Určuje spôsob importovania číselných reťazcov.</ahelp>"
#. TBAyq
#: 00000208.xhp
@@ -6847,15 +6829,6 @@ msgctxt ""
msgid "Choose <emph>File - Digital Signatures - Sign Existing PDF</emph>."
msgstr ""
-#. BT3B5
-#: 00000401.xhp
-msgctxt ""
-"00000401.xhp\n"
-"par_id971594767600402\n"
-"help.text"
-msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - LibreOffice - Security</menuitem> and in <emph>Certificate Path</emph> area click <menuitem>Certificate</menuitem>."
-msgstr ""
-
#. BDjhC
#: 00000401.xhp
msgctxt ""
@@ -6892,13 +6865,13 @@ msgctxt ""
msgid "Double-click or right-click the <emph>Signature</emph> field on the <emph>Status</emph> bar."
msgstr ""
-#. AnZUZ
+#. wBuuE
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
"par_idN11173\n"
"help.text"
-msgid "<variable id=\"digitalsigsel\">Choose <emph>File - Properties - General</emph> tab, press <emph>Digital Signatures</emph> button, then click <emph>Sign Document</emph> button.</variable>"
+msgid "<variable id=\"digitalsigsel\">Choose <emph>File - Properties - General</emph> tab, press <emph>Digital Signatures</emph> button, then press <emph>Sign Document</emph> button.</variable>"
msgstr ""
#. VC4bt
@@ -7018,13 +6991,13 @@ msgctxt ""
msgid "<image id=\"img_id4044007\" src=\"cmd/sc_sendmail.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4044007\">Icon</alt></image>"
msgstr "<image id=\"img_id4044007\" src=\"cmd/sc_sendmail.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4044007\">Ikonka</alt></image>"
-#. iYxXg
+#. 2mB8o
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
"par_idN113C8\n"
"help.text"
-msgid "Email Document"
+msgid "E-mail Document"
msgstr ""
#. QF5Dw
@@ -7144,13 +7117,13 @@ msgctxt ""
msgid "Export Directly as PDF"
msgstr "Export priamo do PDF"
-#. NCJGr
+#. 75GDs
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
"par_id3145410\n"
"help.text"
-msgid "Choose <emph>File - Send - Email as PDF</emph>."
+msgid "Choose <emph>File - Send - E-mail as PDF</emph>."
msgstr ""
#. rZpZc
@@ -8026,14 +7999,14 @@ msgctxt ""
msgid "Basic Shapes"
msgstr "Základné tvary"
-#. PZB3N
+#. LKQPo
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_idN10EEE\n"
"help.text"
-msgid "<image id=\"Graphic4\" src=\"cmd/sc_symbolshapes.smiley.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_\">Icon Symbol Shapes</alt></image>"
-msgstr ""
+msgid "<image id=\"Graphic4\" src=\"cmd/sc_symbolshapes.smiley.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
+msgstr "<image id=\"Graphic4\" src=\"cmd/sc_symbolshapes.smiley.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Ikonka</alt></image>"
#. raBMx
#: 00000404.xhp
@@ -8665,24 +8638,6 @@ msgctxt ""
msgid "Choose <emph>Tools - AutoText - Path</emph>."
msgstr ""
-#. uSkyB
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
-"par_id3156091\n"
-"help.text"
-msgid "<variable id=\"imagemap\">Choose <menuitem>Tools - ImageMap</menuitem>.</variable>"
-msgstr ""
-
-#. q5E7e
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
-"par_id3155936\n"
-"help.text"
-msgid "<variable id=\"imagemap_desc\">Choose <menuitem>Tools - ImageMap</menuitem>, then select a section of the ImageMap and click <menuitem>Properties - Description</menuitem>.</variable>"
-msgstr ""
-
#. AMRtZ
#: 00000406.xhp
msgctxt ""
@@ -8953,13 +8908,13 @@ msgctxt ""
msgid "<variable id=\"laden\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - General</emph>.</variable>"
msgstr ""
-#. 8QqgR
+#. 2Fvii
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_idN10F2F\n"
"help.text"
-msgid "<variable id=\"mailmergeemail\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Mail Merge Email</emph>.</variable>"
+msgid "<variable id=\"mailmergeemail\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Mail Merge E-mail</emph>.</variable>"
msgstr ""
#. T5u9S
@@ -9817,13 +9772,13 @@ msgctxt ""
msgid "On <emph>Text Formatting</emph> bar (with cursor in object), click"
msgstr ""
-#. rxcvE
+#. KFCKR
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3148998\n"
"help.text"
-msgid "<image id=\"img_id3154894\" src=\"cmd/sc_outlineformat.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154894\">Icon Character</alt></image>"
+msgid "<image id=\"img_id3154894\" src=\"cmd/sc_outlineformat.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154894\">Icon Character</alt></image>"
msgstr ""
#. AdBzN
@@ -10033,13 +9988,13 @@ msgctxt ""
msgid "On <emph>Text Formatting</emph> bar (with cursor in object), click"
msgstr "Na paneli <emph>Formátovanie textu</emph> (kurzor v objekte) kliknite na"
-#. rQ9Bt
+#. Kobha
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3155995\n"
"help.text"
-msgid "<image id=\"img_id3150495\" src=\"cmd/sc_paragraphdialog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150495\">Icon Paragraph</alt></image>"
+msgid "<image id=\"img_id3150495\" src=\"cmd/sc_paragraphdialog.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150495\">Icon Paragraph</alt></image>"
msgstr ""
#. E7XoA
@@ -10204,22 +10159,22 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Borders</emph> tab.</caseinline></switchinline>"
msgstr ""
-#. 93Zxq
+#. NVSGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3155915\n"
"help.text"
-msgid "Menu <emph>Format - Paragraph</emph> - <emph>Border</emph> tab - <emph>Padding</emph>."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Menu <emph>Format - Paragraph</emph> - <emph>Border</emph> tab - <emph>Padding</emph>.</caseinline></switchinline>"
msgstr ""
-#. krmqa
+#. dCnPy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3159130\n"
"help.text"
-msgid "Menu <emph>Format - Page - Border - Padding</emph>."
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Menu <emph>Format - Page - Border - Padding</emph>.</caseinline></switchinline>"
msgstr ""
#. PGrMv
@@ -10231,13 +10186,13 @@ msgctxt ""
msgid "Choose <emph>Format - Paragraph - Background</emph> tab."
msgstr ""
-#. kfo3L
+#. S9R9E
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3147330\n"
"help.text"
-msgid "Choose <emph>Format - Character - Highlighting</emph> tab."
+msgid "Choose <emph>Format - Character - Background</emph> tab."
msgstr ""
#. nd9vD
@@ -10528,13 +10483,13 @@ msgctxt ""
msgid "On <emph>Formatting</emph> bar, click"
msgstr ""
-#. xHqEM
+#. raTBP
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3148533\n"
"help.text"
-msgid "<image id=\"img_id3149568\" src=\"cmd/sc_designerdialog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149568\">Icon Styles</alt></image>"
+msgid "<image id=\"img_id3149568\" src=\"cmd/sc_designerdialog.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149568\">Icon Styles</alt></image>"
msgstr ""
#. GGmAC
@@ -10546,13 +10501,13 @@ msgctxt ""
msgid "Styles"
msgstr ""
-#. CBSYY
+#. fVFNF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3159313\n"
"help.text"
-msgid "On the <emph>Drawing</emph> bar, click"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"WRITER\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>On the <emph>Drawing</emph> bar, click</defaultinline></switchinline>"
msgstr ""
#. GtJbA
@@ -10663,22 +10618,22 @@ msgctxt ""
msgid "Choose <emph>Format - Bullets and Numbering</emph>. Open <emph>Options</emph> tab page."
msgstr ""
-#. y4rGF
+#. ko4it
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3150785\n"
"help.text"
-msgid "Open <emph>Styles - Presentation Styles</emph> - context menu of an Outline Style - choose <emph>New/Modify</emph>."
+msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open <emph>Styles - Presentation Styles</emph> - context menu of an Outline Style - choose <emph>New/Modify</emph>.</caseinline></switchinline>"
msgstr ""
-#. 948Zd
+#. MH7Cp
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3148420\n"
"help.text"
-msgid "Open <emph>Styles - List Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph>."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles - List Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph>.</caseinline></switchinline>"
msgstr ""
#. Mx4EM
@@ -10690,22 +10645,22 @@ msgctxt ""
msgid "Choose <emph>Format - Bullets and Numbering - Bullets</emph> tab."
msgstr ""
-#. bYrZa
+#. MEePu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3149917\n"
"help.text"
-msgid "Open <emph>Styles - Presentation Styles</emph> - context menu of an Outline Style - choose <emph>New/Modify</emph>."
+msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open <emph>Styles - Presentation Styles</emph> - context menu of an Outline Style - choose <emph>New/Modify</emph>.</caseinline></switchinline>"
msgstr ""
-#. ZPMxH
+#. DHxR8
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154930\n"
"help.text"
-msgid "Open <emph>Styles - List Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph>."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles - List Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph>.</caseinline></switchinline>"
msgstr ""
#. ZD5up
@@ -10771,22 +10726,13 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles - List Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph>.</caseinline></switchinline>"
msgstr ""
-#. BQqBM
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3154931\n"
-"help.text"
-msgid "Open <emph>Styles - List Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph>."
-msgstr ""
-
-#. TDV7t
+#. WCC8T
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3153812\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> (F11) - choose List Styles - context menu of an entry - choose <menuitem>New/Modify</menuitem> - <emph>Position</emph> tab."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <menuitem>View - Styles</menuitem> (F11) - choose List Styles - context menu of an entry - choose <menuitem>New/Modify</menuitem> - <emph>Position</emph> tab.</caseinline></switchinline>"
msgstr ""
#. gfMdA
@@ -10798,40 +10744,40 @@ msgctxt ""
msgid "Choose <menuitem>Format - Bullets and Numbering</menuitem> - <emph>Position</emph> tab."
msgstr ""
-#. t8uTF
+#. QJzFj
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3153899\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - choose List Styles - context menu of an entry - choose <menuitem>New/Modify</menuitem> - <emph>Position</emph> tab."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <menuitem>Styles - Manage Styles</menuitem> - choose List Styles - context menu of an entry - choose <menuitem>New/Modify</menuitem> - <emph>Position</emph> tab.</caseinline></switchinline>"
msgstr ""
-#. DEQfE
+#. SZuQU
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3156170\n"
"help.text"
-msgid "Choose <menuitem>Tools - Chapter Numbering - Position</menuitem> tab."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <menuitem>Tools - Chapter Numbering - Position</menuitem> tab.</caseinline></switchinline>"
msgstr ""
-#. 8AtZC
+#. agBgR
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3151332\n"
"help.text"
-msgid "Menu <emph>Format - Image - Properties - Crop</emph> tab."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Menu <emph>Format - Image - Properties - Crop</emph> tab.</caseinline></switchinline>"
msgstr ""
-#. eREMF
+#. 4o7EQ
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3153317\n"
"help.text"
-msgid "Icon on the <emph>Image</emph> toolbar:"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline>Icon on the <emph>Image</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
#. YKAFD
@@ -10861,15 +10807,6 @@ msgctxt ""
msgid "Choose <menuitem>Format - Text</menuitem>."
msgstr ""
-#. CHNi9
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3151255\n"
-"help.text"
-msgid "Choose <menuitem>Format - Spacing</menuitem>."
-msgstr ""
-
#. suPn7
#: 00040500.xhp
msgctxt ""
@@ -10978,14 +10915,14 @@ msgctxt ""
msgid "Open <emph>Toolbox</emph> bar in Basic dialog editor, click"
msgstr ""
-#. JESNd
+#. ZCEGK
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3151054\n"
"help.text"
-msgid "<image id=\"img_id3150865\" src=\"cmd/sc_showpropbrowser.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150865\">Icon Properties</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3150865\" src=\"cmd/sc_showpropbrowser.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150865\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150865\" src=\"cmd/sc_showpropbrowser.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150865\">Ikonka</alt></image>"
#. 89DTS
#: 00040501.xhp
@@ -11005,14 +10942,14 @@ msgctxt ""
msgid "Open context menu of a selected form element - choose <emph>Form</emph>."
msgstr ""
-#. CMsFE
+#. w3xKU
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3152933\n"
"help.text"
-msgid "<image id=\"img_id3148676\" src=\"cmd/sc_formproperties.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148676\">Icon Form</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3148676\" src=\"cmd/sc_formproperties.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3148676\">Icon</alt></image>"
+msgstr "<image id=\"img_id3148676\" src=\"cmd/sc_formproperties.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3148676\">Ikonka</alt></image>"
#. F5LMe
#: 00040501.xhp
@@ -11104,14 +11041,14 @@ msgctxt ""
msgid "Open context menu of a selected form element - choose <emph>Control</emph>."
msgstr ""
-#. z6tko
+#. iGEwF
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3153953\n"
"help.text"
-msgid "<image id=\"img_id3149064\" src=\"cmd/sc_showbrowser.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149064\">Icon Control</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3149064\" src=\"cmd/sc_showbrowser.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3149064\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149064\" src=\"cmd/sc_showbrowser.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3149064\">Ikonka</alt></image>"
#. ADmRP
#: 00040501.xhp
@@ -11185,14 +11122,14 @@ msgctxt ""
msgid "On <emph>Form Design</emph> bar, click"
msgstr ""
-#. EJCyJ
+#. 9rRZS
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3157874\n"
"help.text"
-msgid "<image id=\"img_id3159345\" src=\"cmd/sc_tabdialog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3159345\">Icon Activation Order</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3159345\" src=\"cmd/sc_tabdialog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3159345\">Icon</alt></image>"
+msgstr "<image id=\"img_id3159345\" src=\"cmd/sc_tabdialog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3159345\">Ikonka</alt></image>"
#. BmMW5
#: 00040501.xhp
@@ -11212,14 +11149,14 @@ msgctxt ""
msgid "On <emph>Form Design</emph> bar, click"
msgstr ""
-#. pNmAg
+#. BtzB4
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3156439\n"
"help.text"
-msgid "<image id=\"img_id3153530\" src=\"cmd/sc_addfield.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153530\">Icon Add Field</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3153530\" src=\"cmd/sc_addfield.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153530\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153530\" src=\"cmd/sc_addfield.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153530\">Ikonka</alt></image>"
#. iQFBK
#: 00040501.xhp
@@ -11239,14 +11176,14 @@ msgctxt ""
msgid "On <emph>Form Design</emph> bar, click"
msgstr ""
-#. hgCuD
+#. C8Cfx
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3150749\n"
"help.text"
-msgid "<image id=\"img_id3157869\" src=\"cmd/sc_showfmexplorer.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3157869\">Icon Form Navigator</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3157869\" src=\"cmd/sc_showfmexplorer.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3157869\">Icon</alt></image>"
+msgstr "<image id=\"img_id3157869\" src=\"cmd/sc_showfmexplorer.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3157869\">Ikonka</alt></image>"
#. QEjGP
#: 00040501.xhp
@@ -11266,14 +11203,14 @@ msgctxt ""
msgid "On <emph>Form Controls</emph> toolbar or <emph>Form Design</emph> bar, click"
msgstr ""
-#. YgQWC
+#. GGJgP
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3156056\n"
"help.text"
-msgid "<image id=\"img_id3154508\" src=\"cmd/sc_testmode.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154508\">Icon Design Mode</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3154508\" src=\"cmd/sc_testmode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154508\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154508\" src=\"cmd/sc_testmode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154508\">Ikonka</alt></image>"
#. AATfh
#: 00040501.xhp
@@ -11302,14 +11239,14 @@ msgctxt ""
msgid "On <emph>Form Design</emph> bar, click"
msgstr ""
-#. iGE3k
+#. wzVK9
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3149822\n"
"help.text"
-msgid "<image id=\"img_id3151189\" src=\"cmd/sc_openreadonly.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151189\">Icon Open in Design Mode</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3151189\" src=\"cmd/sc_openreadonly.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151189\">Icon</alt></image>"
+msgstr "<image id=\"img_id3151189\" src=\"cmd/sc_openreadonly.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151189\">Ikonka</alt></image>"
#. UqdMN
#: 00040501.xhp
@@ -11329,14 +11266,14 @@ msgctxt ""
msgid "On <emph>Form Control</emph> toolbar, click"
msgstr ""
-#. msyNv
+#. 9EbHS
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3152948\n"
"help.text"
-msgid "<image id=\"img_id3156375\" src=\"cmd/sc_usewizards.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156375\">Icon Wizard</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3156375\" src=\"cmd/sc_usewizards.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156375\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156375\" src=\"cmd/sc_usewizards.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156375\">Ikonka</alt></image>"
#. o64U6
#: 00040501.xhp
@@ -11374,14 +11311,14 @@ msgctxt ""
msgid "Choose <emph>Shape - Arrange</emph> ($[officename] Draw)."
msgstr ""
-#. gqcDq
+#. p4AFF
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3155578\n"
"help.text"
-msgid "<image id=\"img_id3109842\" src=\"cmd/sc_bringtofront.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3109842\">Icon Arrange</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3109842\" src=\"cmd/sc_bringtofront.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3109842\">Icon</alt></image>"
+msgstr "<image id=\"img_id3109842\" src=\"cmd/sc_bringtofront.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3109842\">Ikonka</alt></image>"
#. jwdWP
#: 00040501.xhp
@@ -11428,14 +11365,14 @@ msgctxt ""
msgid "Open context menu - choose <emph>Arrange - Bring to Front</emph> ($[officename] Impress)."
msgstr ""
-#. HPFLD
+#. hMKdo
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3151213\n"
"help.text"
-msgid "<image id=\"img_id3145220\" src=\"cmd/sc_bringtofront.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145220\">Icon Bring to Front</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3145220\" src=\"cmd/sc_bringtofront.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145220\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145220\" src=\"cmd/sc_bringtofront.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145220\">Ikonka</alt></image>"
#. sBuGt
#: 00040501.xhp
@@ -11482,14 +11419,14 @@ msgctxt ""
msgid "Open context menu - choose <emph>Arrange - Bring Forward</emph> ($[officename] Impress)."
msgstr ""
-#. TSeCV
+#. hcf4a
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3159121\n"
"help.text"
-msgid "<image id=\"img_id3156142\" src=\"cmd/sc_forward.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156142\">Icon Bring Forward</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3156142\" src=\"cmd/sc_forward.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156142\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156142\" src=\"cmd/sc_forward.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156142\">Ikonka</alt></image>"
#. P9V6A
#: 00040501.xhp
@@ -11536,14 +11473,14 @@ msgctxt ""
msgid "Open context menu - choose <emph>Arrange - Send Backward</emph> ($[officename] Impress)."
msgstr ""
-#. BQhNe
+#. wCFzs
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3152994\n"
"help.text"
-msgid "<image id=\"img_id3163723\" src=\"cmd/sc_backward.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3163723\">Icon Send Backward</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3163723\" src=\"cmd/sc_backward.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3163723\">Icon</alt></image>"
+msgstr "<image id=\"img_id3163723\" src=\"cmd/sc_backward.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3163723\">Ikonka</alt></image>"
#. WKKNG
#: 00040501.xhp
@@ -11590,14 +11527,14 @@ msgctxt ""
msgid "Open context menu - choose <emph>Arrange - Send to Back</emph> ($[officename] Impress)."
msgstr ""
-#. A873M
+#. wN6km
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3145384\n"
"help.text"
-msgid "<image id=\"img_id3153813\" src=\"cmd/sc_sendtoback.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153813\">Icon Send to Back</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3153813\" src=\"cmd/sc_sendtoback.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153813\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153813\" src=\"cmd/sc_sendtoback.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153813\">Ikonka</alt></image>"
#. mH2tS
#: 00040501.xhp
@@ -11617,14 +11554,14 @@ msgctxt ""
msgid "Choose <emph>Format - Arrange - To Foreground</emph>."
msgstr ""
-#. G2AjB
+#. niZ3f
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3149408\n"
"help.text"
-msgid "<image id=\"img_id3155129\" src=\"cmd/sc_setobjecttoforeground.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155129\">Icon To Foreground</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3155129\" src=\"cmd/sc_setobjecttoforeground.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155129\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155129\" src=\"cmd/sc_setobjecttoforeground.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155129\">Ikonka</alt></image>"
#. 4ahEr
#: 00040501.xhp
@@ -11644,14 +11581,14 @@ msgctxt ""
msgid "Choose <emph>Format - Arrange - To Background</emph>."
msgstr ""
-#. FQRn8
+#. kAYhN
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3153815\n"
"help.text"
-msgid "<image id=\"img_id3154954\" src=\"cmd/sc_setobjecttobackground.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154954\">Icon To Background</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3154954\" src=\"cmd/sc_setobjecttobackground.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154954\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154954\" src=\"cmd/sc_setobjecttobackground.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154954\">Ikonka</alt></image>"
#. rCVpM
#: 00040501.xhp
@@ -11725,14 +11662,14 @@ msgctxt ""
msgid "On <emph>Align</emph> bar ($[officename] Impress, $[officename] Draw), click"
msgstr ""
-#. Po4LF
+#. ANyzk
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3153373\n"
"help.text"
-msgid "<image id=\"img_id3159209\" src=\"cmd/sc_objectalign.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3159209\">Icon Left</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3159209\" src=\"cmd/sc_objectalign.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3159209\">Icon</alt></image>"
+msgstr "<image id=\"img_id3159209\" src=\"cmd/sc_objectalign.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3159209\">Ikonka</alt></image>"
#. 3u7D2
#: 00040501.xhp
@@ -11770,14 +11707,14 @@ msgctxt ""
msgid "On <emph>Align</emph> bar ($[officename] Impress, $[officename] Draw), click"
msgstr ""
-#. mbnDh
+#. FqkBw
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3149519\n"
"help.text"
-msgid "<image id=\"img_id3143222\" src=\"cmd/sc_alignmiddle.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3143222\">Icon Centered</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3143222\" src=\"cmd/sc_alignmiddle.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3143222\">Icon</alt></image>"
+msgstr "<image id=\"img_id3143222\" src=\"cmd/sc_alignmiddle.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3143222\">Ikonka</alt></image>"
#. fawoM
#: 00040501.xhp
@@ -11815,14 +11752,14 @@ msgctxt ""
msgid "On <emph>Align</emph> bar ($[officename] Impress, $[officename] Draw), click"
msgstr ""
-#. EDVzM
+#. C2eCp
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3155436\n"
"help.text"
-msgid "<image id=\"img_id3153283\" src=\"cmd/sc_objectalignright.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153283\">Icon Right</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3153283\" src=\"cmd/sc_objectalignright.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153283\">Icon</alt></image>"
+msgstr "<image id=\"img_id3153283\" src=\"cmd/sc_objectalignright.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153283\">Ikonka</alt></image>"
#. mF7W6
#: 00040501.xhp
@@ -11869,14 +11806,14 @@ msgctxt ""
msgid "On <emph>Align</emph> bar ($[officename] Impress, $[officename] Draw), click"
msgstr ""
-#. eYWWR
+#. Zx8CA
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3155386\n"
"help.text"
-msgid "<image id=\"img_id3155542\" src=\"cmd/sc_alignup.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155542\">Icon Top</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3155542\" src=\"cmd/sc_alignup.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155542\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155542\" src=\"cmd/sc_alignup.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155542\">Ikonka</alt></image>"
#. WFtRg
#: 00040501.xhp
@@ -11923,14 +11860,14 @@ msgctxt ""
msgid "On <emph>Align</emph> bar ($[officename] Impress, $[officename] Draw), click"
msgstr ""
-#. RgieQ
+#. BBURn
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3145755\n"
"help.text"
-msgid "<image id=\"img_id3146776\" src=\"cmd/sc_aligncenter.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146776\">Icon Centered</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3146776\" src=\"cmd/sc_aligncenter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146776\">Icon</alt></image>"
+msgstr "<image id=\"img_id3146776\" src=\"cmd/sc_aligncenter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146776\">Ikonka</alt></image>"
#. NYgDY
#: 00040501.xhp
@@ -11968,14 +11905,14 @@ msgctxt ""
msgid "On <emph>Align</emph> bar ($[officename] Impress, $[officename] Draw), click"
msgstr ""
-#. DcDSM
+#. xNAAU
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3154057\n"
"help.text"
-msgid "<image id=\"img_id3147267\" src=\"cmd/sc_aligndown.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147267\">Icon Bottom</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3147267\" src=\"cmd/sc_aligndown.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147267\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147267\" src=\"cmd/sc_aligndown.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147267\">Ikonka</alt></image>"
#. rkNkG
#: 00040501.xhp
@@ -12004,14 +11941,14 @@ msgctxt ""
msgid "On <emph>Form Design</emph> bar, click"
msgstr ""
-#. DcsgR
+#. mExvf
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3151122\n"
"help.text"
-msgid "<image id=\"img_id3145357\" src=\"cmd/sc_toggleanchortype.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145357\">Icon Anchor</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3145357\" src=\"cmd/sc_toggleanchortype.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145357\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145357\" src=\"cmd/sc_toggleanchortype.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145357\">Ikonka</alt></image>"
#. s4iPa
#: 00040501.xhp
@@ -12130,14 +12067,14 @@ msgctxt ""
msgid "On <emph>Line and Filling</emph> bar, click"
msgstr ""
-#. wRABY
+#. XkgtK
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3148889\n"
"help.text"
-msgid "<image id=\"img_id3150669\" src=\"cmd/sc_formatline.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150669\">Icon Line</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3150669\" src=\"cmd/sc_formatline.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150669\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150669\" src=\"cmd/sc_formatline.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150669\">Ikonka</alt></image>"
#. acBGp
#: 00040502.xhp
@@ -12265,14 +12202,14 @@ msgctxt ""
msgid "On <emph>Line and Filling</emph> bar, click"
msgstr ""
-#. HBmFB
+#. eeYjd
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156424\n"
"help.text"
-msgid "<image id=\"img_id3150868\" src=\"cmd/sc_fillstyle.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150868\">Icon Area</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3150868\" src=\"cmd/sc_fillstyle.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150868\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150868\" src=\"cmd/sc_fillstyle.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150868\">Ikonka</alt></image>"
#. tdHtP
#: 00040502.xhp
@@ -12283,22 +12220,22 @@ msgctxt ""
msgid "Area"
msgstr "Oblasť"
-#. GCCNi
+#. dXFUA
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id511592159765396\n"
+"par_id3145607\n"
"help.text"
-msgid "Choose <menuitem>View - Styles (F11)</menuitem> - choose Paragraph, Frame or Page style - open context menu - choose <menuitem>Modify/New - Area</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> - choose <switchinline select=\"appl\"><caseinline select=\"WRITER\">Paragraph, Frame or Page</caseinline></switchinline> style - open context menu - choose <menuitem>Modify/New - </menuitem><switchinline select=\"appl\"><caseinline select=\"CALC\"><menuitem>Background</menuitem></caseinline><defaultinline><menuitem>Area</menuitem></defaultinline></switchinline> tab."
msgstr ""
-#. sV6fD
+#. TGDHe
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id841527083135387\n"
"help.text"
-msgid "Choose <menuitem>Table - Properties - Background</menuitem> tab. Select the table object - Cell, Row or Table - which background area is to be filled."
+msgid "Choose <menuitem>Table - Properties - Background</menuitem> tab."
msgstr ""
#. DhLwG
@@ -12310,31 +12247,13 @@ msgctxt ""
msgid "Choose <menuitem>Format - Page Style - Area</menuitem> tab."
msgstr ""
-#. GQb6M
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
-"par_id901592158395353\n"
-"help.text"
-msgid "Choose <menuitem>Format - Text Box and Shape - Area - Area</menuitem>"
-msgstr ""
-
-#. 6FQ2S
+#. hu68D
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id1001592157774069\n"
-"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles (F11)</menuitem> - choose Cell or Page style - open context menu - choose <menuitem>Modify/New - Background</menuitem> tab."
-msgstr ""
-
-#. LzEQU
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
-"par_id771592156369992\n"
+"par_id3149664\n"
"help.text"
-msgid "Choose <menuitem>Format - Page - Background</menuitem> tab"
+msgid "Choose <menuitem>Slide - Properties - Background</menuitem> tab."
msgstr ""
#. NP4xZ
@@ -12346,69 +12265,6 @@ msgctxt ""
msgid "Choose <menuitem>Format - Cells - Background</menuitem> tab"
msgstr ""
-#. LVAwN
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
-"par_id881592158156157\n"
-"help.text"
-msgid "Choose <menuitem>Format - Object - Area - Area</menuitem> tab."
-msgstr ""
-
-#. uQS9p
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
-"par_id951592158682096\n"
-"help.text"
-msgid "Choose <menuitem>Format - Style - Edit Style - Area</menuitem> tab"
-msgstr ""
-
-#. vKEWq
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
-"par_id11592158856626\n"
-"help.text"
-msgid "Choose <menuitem>Slide - Properties - Background</menuitem> tab"
-msgstr ""
-
-#. mQo4F
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
-"par_id891592159117695\n"
-"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles (F11)</menuitem> , choose Drawing or Presentation style - open context menu - choose <emph>Modify/New - Area</emph> tab."
-msgstr ""
-
-#. 8f2xv
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
-"par_id741592159264211\n"
-"help.text"
-msgid "Choose <menuitem>Format - Object and Shape - Area - Area</menuitem> tab"
-msgstr ""
-
-#. GN2Rd
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
-"par_id271592159552714\n"
-"help.text"
-msgid "Choose <menuitem>Format - Style - Edit Style - Area</menuitem> tab"
-msgstr ""
-
-#. icZBw
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
-"par_id161592159449638\n"
-"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles (F11)</menuitem> , choose Drawing style - open context menu - choose <emph>Modify/New - Area</emph> tab."
-msgstr ""
-
#. 8Ac8B
#: 00040502.xhp
msgctxt ""
@@ -12418,85 +12274,58 @@ msgctxt ""
msgid "Choose <menuitem>Page - Properties - Background</menuitem> tab."
msgstr ""
-#. DkwpP
+#. BNF8c
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id471592158481451\n"
+"par_id3154948\n"
"help.text"
-msgid "Choose <menuitem>Format - Area - Area</menuitem> tab"
+msgid "Choose <menuitem>Format - </menuitem><switchinline select=\"appl\"><caseinline select=\"WRITER\"><menuitem>Text Box and Shape - </menuitem></caseinline><caseinline select=\"IMPRESS\"><menuitem>Object and Shape - </menuitem></caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
msgstr ""
-#. 8CDNt
+#. CQaYm
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <menuitem>Format - Title - Area</menuitem> tab."
+msgid "Choose <menuitem>Format - Title - Area</menuitem> tab (chart documents)."
msgstr ""
-#. TRyTB
+#. dCqeB
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <menuitem>Format - Legend - Area</menuitem> tab."
+msgid "Choose <menuitem>Format - Legend - Area</menuitem> tab (chart documents)."
msgstr ""
-#. A6CBn
+#. KcL9w
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <menuitem>Format - Chart Wall - Area</menuitem> tab."
-msgstr "Zvoľte záložku <menuitem>Formát - Zadná stena grafu - Oblasť</menuitem>."
+msgid "Choose <menuitem>Format - Chart Wall - Area</menuitem> tab (chart documents)."
+msgstr ""
-#. jFmfH
+#. ijD7Y
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <menuitem>Format - Chart Floor - Area</menuitem>."
+msgid "Choose <menuitem>Format - Chart Floor - Area</menuitem> tab (chart documents)."
msgstr ""
-#. Pz9P5
+#. Zuv4t
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <menuitem>Format - Chart Area - Area</menuitem>."
-msgstr ""
-
-#. 9F87x
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
-"par_id901592160809757\n"
-"help.text"
-msgid "When editing a form:"
-msgstr ""
-
-#. oABmb
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
-"par_id201592161190323\n"
-"help.text"
-msgid "When editing a report:"
-msgstr ""
-
-#. VBYSN
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
-"par_id591592161180508\n"
-"help.text"
-msgid "Choose <menuitem>Format - Page - Background</menuitem> tab."
+msgid "Choose <menuitem>Format - Chart Area - Area</menuitem> tab (chart documents)."
msgstr ""
#. MBrCE
@@ -12724,14 +12553,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>F4</emph> key</caseinline><caseinline select=\"IMPRESS\"><emph>F4</emph> key</caseinline></switchinline>"
msgstr ""
-#. fevBK
+#. WyEg2
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3153052\n"
"help.text"
-msgid "<image id=\"img_id3150965\" src=\"cmd/sc_transformdialog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150965\">Icon Position and Size</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3150965\" src=\"cmd/sc_transformdialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150965\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150965\" src=\"cmd/sc_transformdialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150965\">Ikonka</alt></image>"
#. yL3FJ
#: 00040502.xhp
@@ -12778,14 +12607,14 @@ msgctxt ""
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 ""
-#. BESGV
+#. ENbvX
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3148495\n"
"help.text"
-msgid "<image id=\"img_id3146898\" src=\"cmd/sc_toggleobjectrotatemode.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146898\">Icon Rotate</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3146898\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3146898\">Icon</alt></image>"
+msgstr "<image id=\"img_id3146898\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3146898\">Ikonka</alt></image>"
#. raRWH
#: 00040502.xhp
@@ -12841,14 +12670,14 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>F8</emph> key</caseinline><caseinline select=\"IMPRESS\"><emph>F8</emph> key</caseinline></switchinline>"
msgstr ""
-#. m9Ntk
+#. oqKG2
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150044\n"
"help.text"
-msgid "<image id=\"img_id3147100\" src=\"cmd/sc_toggleobjectbeziermode.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147100\">Icon Edit Points</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3147100\" src=\"cmd/sc_toggleobjectbeziermode.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147100\">Icon</alt></image>"
+msgstr "<image id=\"img_id3147100\" src=\"cmd/sc_toggleobjectbeziermode.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147100\">Ikonka</alt></image>"
#. AMJ2m
#: 00040502.xhp
@@ -12904,14 +12733,14 @@ msgctxt ""
msgid "Open context menu - choose <emph>Style - Bold</emph>."
msgstr ""
-#. Ue6Ng
+#. G36Eg
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145766\n"
"help.text"
-msgid "<image id=\"img_id3156558\" src=\"cmd/sc_bold.svg\" width=\"1cm\" height=\"1cm\" localize=\"true\"><alt id=\"alt_id3156558\">Icon Bold</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3156558\" src=\"cmd/sc_bold.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3156558\">Icon</alt></image>"
+msgstr "<image id=\"img_id3156558\" src=\"cmd/sc_bold.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3156558\">Ikonka</alt></image>"
#. pQRTJ
#: 00040502.xhp
@@ -12931,14 +12760,14 @@ msgctxt ""
msgid "Open context menu - choose <emph>Style - Italic</emph>."
msgstr ""
-#. D9EAq
+#. AJBGa
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3159091\n"
"help.text"
-msgid "<image id=\"img_id3155578\" src=\"cmd/sc_italic.svg\" width=\"1cm\" height=\"1cm\" localize=\"true\"><alt id=\"alt_id3155578\">Icon Italic</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3155578\" src=\"cmd/sc_italic.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3155578\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155578\" src=\"cmd/sc_italic.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3155578\">Ikonka</alt></image>"
#. cggpG
#: 00040502.xhp
@@ -12958,14 +12787,14 @@ msgctxt ""
msgid "Open the menu <menuitem>Format - Text</menuitem> and choose <menuitem>Single Underline</menuitem> or <menuitem>Double Underline</menuitem>."
msgstr ""
-#. x8omF
+#. ibTke
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145223\n"
"help.text"
-msgid "<image id=\"img_id3151068\" src=\"cmd/sc_underline.svg\" width=\"1cm\" height=\"1cm\" localize=\"true\"><alt id=\"alt_id3151068\">Icon Underline</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3151068\" src=\"cmd/sc_underline.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3151068\">Icon</alt></image>"
+msgstr "<image id=\"img_id3151068\" src=\"cmd/sc_underline.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3151068\">Ikonka</alt></image>"
#. Bfqx8
#: 00040502.xhp
@@ -13075,14 +12904,14 @@ msgctxt ""
msgid "Open context menu - choose <emph>Align - Left</emph>."
msgstr ""
-#. hUH97
+#. TyqyJ
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147310\n"
"help.text"
-msgid "<image id=\"img_id3155370\" src=\"cmd/sc_alignleft.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155370\">Icon Align Left</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3155370\" src=\"cmd/sc_alignleft.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155370\">Icon</alt></image>"
+msgstr "<image id=\"img_id3155370\" src=\"cmd/sc_alignleft.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155370\">Ikonka</alt></image>"
#. okQkj
#: 00040502.xhp
@@ -13111,14 +12940,14 @@ msgctxt ""
msgid "Open context menu - choose <emph>Align - Right</emph>."
msgstr ""
-#. jddUQ
+#. NmexZ
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149408\n"
"help.text"
-msgid "<image id=\"img_id3154421\" src=\"cmd/sc_alignright.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154421\">Icon Align Right</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3154421\" src=\"cmd/sc_alignright.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154421\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154421\" src=\"cmd/sc_alignright.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154421\">Ikonka</alt></image>"
#. XnJxD
#: 00040502.xhp
@@ -13147,14 +12976,14 @@ msgctxt ""
msgid "Open context menu - choose <emph>Align - Center</emph>."
msgstr ""
-#. kZk7u
+#. 7PVck
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3153815\n"
"help.text"
-msgid "<image id=\"img_id3149757\" src=\"cmd/sc_centerpara.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149757\">Icon Centered</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3149757\" src=\"cmd/sc_centerpara.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149757\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149757\" src=\"cmd/sc_centerpara.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149757\">Ikonka</alt></image>"
#. CQD3j
#: 00040502.xhp
@@ -13183,14 +13012,14 @@ msgctxt ""
msgid "Open context menu - choose <emph>Align - Justified</emph>."
msgstr ""
-#. jfsgi
+#. WQNsi
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156189\n"
"help.text"
-msgid "<image id=\"img_id3145308\" src=\"cmd/sc_justifypara.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145308\">Icon Justified</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3145308\" src=\"cmd/sc_justifypara.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145308\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145308\" src=\"cmd/sc_justifypara.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145308\">Ikonka</alt></image>"
#. YBkwj
#: 00040502.xhp
@@ -13255,14 +13084,14 @@ msgctxt ""
msgid "Open context menu - choose <emph>Group - Group</emph> (form objects)."
msgstr ""
-#. ibZAV
+#. ezVbQ
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146858\n"
"help.text"
-msgid "<image id=\"img_id3154344\" src=\"cmd/sc_formatgroup.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154344\">Icon Group</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3154344\" src=\"cmd/sc_formatgroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154344\">Icon</alt></image>"
+msgstr "<image id=\"img_id3154344\" src=\"cmd/sc_formatgroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154344\">Ikonka</alt></image>"
#. DVEkd
#: 00040502.xhp
@@ -13300,14 +13129,14 @@ msgctxt ""
msgid "Open context menu - choose <emph>Ungroup</emph>."
msgstr ""
-#. zcmBV
+#. PgcjD
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3151300\n"
"help.text"
-msgid "<image id=\"img_id3150831\" src=\"cmd/sc_formatungroup.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150831\">Icon Ungroup</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3150831\" src=\"cmd/sc_formatungroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150831\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150831\" src=\"cmd/sc_formatungroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150831\">Ikonka</alt></image>"
#. DGWSV
#: 00040502.xhp
@@ -13345,14 +13174,14 @@ msgctxt ""
msgid "Open context menu - choose <emph>Exit Group</emph>."
msgstr ""
-#. BBvnq
+#. 55jie
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3158402\n"
"help.text"
-msgid "<image id=\"img_id3149422\" src=\"cmd/sc_leavegroup.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149422\">Icon Exit Group</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3149422\" src=\"cmd/sc_leavegroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149422\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149422\" src=\"cmd/sc_leavegroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149422\">Ikonka</alt></image>"
#. ndpeo
#: 00040502.xhp
@@ -13390,14 +13219,14 @@ msgctxt ""
msgid "Open context menu - choose <emph>Enter Group</emph>."
msgstr ""
-#. oDBK3
+#. kvzhG
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3152388\n"
"help.text"
-msgid "<image id=\"img_id3149900\" src=\"cmd/sc_entergroup.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149900\">Icon Enter Group</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3149900\" src=\"cmd/sc_entergroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149900\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149900\" src=\"cmd/sc_entergroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149900\">Ikonka</alt></image>"
#. yXmKi
#: 00040502.xhp
@@ -14650,6 +14479,24 @@ msgctxt ""
msgid "Open context menu of selected frame, choose <emph>Properties</emph>."
msgstr ""
+#. uGqZD
+#: edit_menu.xhp
+msgctxt ""
+"edit_menu.xhp\n"
+"par_id3156091\n"
+"help.text"
+msgid "<variable id=\"imagemap\">Choose <emph>Edit - ImageMap</emph> in Writer and Calc or <emph>Tools - ImageMap</emph> in Impress and Draw.</variable>"
+msgstr ""
+
+#. XmBGV
+#: edit_menu.xhp
+msgctxt ""
+"edit_menu.xhp\n"
+"par_id3155936\n"
+"help.text"
+msgid "<variable id=\"imapeigbea\">Choose <emph>Edit - ImageMap</emph> in Writer and Calc or <emph>Tools - ImageMap</emph> in Impress and Draw,<br/>then select a section of the ImageMap and click <emph>Properties - Description</emph>.</variable>"
+msgstr ""
+
#. hfZ8h
#: edit_menu.xhp
msgctxt ""
diff --git a/source/sk/helpcontent2/source/text/shared/01.po b/source/sk/helpcontent2/source/text/shared/01.po
index 9488e716edf..d874bb63ac4 100644
--- a/source/sk/helpcontent2/source/text/shared/01.po
+++ b/source/sk/helpcontent2/source/text/shared/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-10-12 15:02+0200\n"
-"PO-Revision-Date: 2020-09-30 15:35+0000\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
+"PO-Revision-Date: 2020-10-16 15:35+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: Slovak <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/sk/>\n"
"Language: sk\n"
@@ -1942,13 +1942,13 @@ msgctxt ""
msgid "%PRODUCTNAME uses the native file picker dialog of the window manager of your operating system for the <menuitem>Open</menuitem> command."
msgstr ""
-#. Q9Cu5
+#. sB6Fp
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"par_id3150713\n"
"help.text"
-msgid "If the file that you want to open contains styles, <link href=\"text/shared/01/01020000.xhp#templates\" name=\"special rules\">special rules</link> apply."
+msgid "If the file that you want to open contains styles, <link href=\"text/shared/01/01020000.xhp#vorlagen\" name=\"special rules\">special rules</link> apply."
msgstr ""
#. CCRFi
@@ -4559,7 +4559,7 @@ msgctxt ""
"par_id4\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether the graphics and drawings or OLE objects of your text document are printed.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Nastaví kurzor na predchádzajúci objekt vybraného typu.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Určuje, či sa majú tlačiť grafika, kresby a OLE objekty textového dokumentu.</ahelp>"
#. grHGN
#: 01130000.xhp
@@ -4586,7 +4586,7 @@ msgctxt ""
"par_id10\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether the form control fields of the text document are printed.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zarovná obsah bunky vpravo.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Určuje, či sa majú vytlačiť riadiace polia formulára textového dokumentu.</ahelp>"
#. y9r3D
#: 01130000.xhp
@@ -4595,7 +4595,7 @@ msgctxt ""
"par_id12\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to always print text in black.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Určiť poradie dátových bodov.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Určuje, či sa má text vždy tlačiť čiernou farbou.</ahelp>"
#. DyEuF
#: 01130000.xhp
@@ -4613,7 +4613,7 @@ msgctxt ""
"par_id16\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Specify where to print comments (if any).</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Určiť poradie dátových bodov.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zadajte, kde sa majú tlačiť komentáre (ak existujú).</ahelp>"
#. nigeb
#: 01130000.xhp
@@ -4622,7 +4622,7 @@ msgctxt ""
"par_id20\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether you want the name of the document to be included in the printout.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zarovná obsah bunky vpravo.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Určuje, či chcete, aby bol názov dokumentu zahrnutý do výtlačku.</ahelp>"
#. AZhWR
#: 01130000.xhp
@@ -4658,7 +4658,7 @@ msgctxt ""
"par_id28\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Adjusts the formula to the page format used in the printout.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Umiestni legendu vľavo vedľa grafu.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Upraví vzorec podľa formátu stránky použitého pri tlači.</ahelp>"
#. ixz2F
#: 01130000.xhp
@@ -4667,7 +4667,7 @@ msgctxt ""
"par_id30\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Reduces or enlarges the size of the printed formula by a specified factor.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Upraví veľkosť náhľadu predlohy stránky.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zmenší alebo zväčší veľkosť vytlačeného vzorca o určený faktor.</ahelp>"
#. f5ZER
#: 01130000.xhp
@@ -4685,7 +4685,7 @@ msgctxt ""
"par_id34\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">If checked empty pages that have no cell contents or draw objects are not printed.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Kliknutím vytvoríte jeden dokument pre každý záznam.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ak je zaškrtnuté, nevytlačia sa prázdne stránky bez buniek s obsahom alebo grafikou.</ahelp>"
#. VDGTG
#: 01130000.xhp
@@ -4703,7 +4703,7 @@ msgctxt ""
"par_id3149164\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Prints the entire document.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte formát súboru.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vytlačí celý dokument.</ahelp>"
#. x5fVs
#: 01130000.xhp
@@ -4712,7 +4712,7 @@ msgctxt ""
"par_id3152944\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Prints only the pages or slides that you specify in the <emph>Pages</emph> box.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Náhľad stránky ukončíte kliknutím na tlačidlo <emph>Zatvoriť náhľad</emph>.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vytlačí iba stránky alebo snímky, ktoré určíte v poli <emph>Strany</emph>.</ahelp>"
#. MCGtx
#: 01130000.xhp
@@ -4766,7 +4766,7 @@ msgctxt ""
"par_id38\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Check to not rely on the printer to create collated copies but create a print job for each copy instead.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Kliknutím vytvoríte jeden dokument pre každý záznam.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zaškrtnutím tohto políčka sa program nespoľahne na to, že tlačiareň vytvorí zoradené kópie, ale namiesto toho pre každú kópiu vytvorí samostatnú tlačovú úlohu.</ahelp>"
#. 6BvGF
#: 01130000.xhp
@@ -4775,7 +4775,7 @@ msgctxt ""
"par_id40\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Check to print pages in reverse order.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Určiť poradie dátových bodov.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zaškrtnite, ak chcete tlačiť stránky v opačnom poradí.</ahelp>"
#. 5TfKf
#: 01130000.xhp
@@ -4829,7 +4829,7 @@ msgctxt ""
"par_id46\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the Brochure option to print the document in brochure format.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte túto ikonku, ak chcete prechádzať vzorce v tabuľkách.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte možnosť Brožúra a dokument sa vytlačí vo formáte brožúry.</ahelp>"
#. ntHGB
#: 01130000.xhp
@@ -4838,7 +4838,7 @@ msgctxt ""
"par_id50\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Check to draw a border around each page.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Po kliknutí prejdete na danú stránku sprievodcu.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zaškrtnutím tejto možnosti nakreslíte orámovanie okolo každej stránky.</ahelp>"
#. 8dYfU
#: 01130000.xhp
@@ -4847,7 +4847,7 @@ msgctxt ""
"par_id52\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select order in which pages are to be printed.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zvoľte základný typ grafu.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte poradie, v ktorom sa majú stránky vytlačiť.</ahelp>"
#. GnLH5
#: 01130000.xhp
@@ -4856,7 +4856,7 @@ msgctxt ""
"par_id54\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the orientation of the paper.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte formát súboru.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte orientáciu papiera.</ahelp>"
#. GDPyv
#: 01130000.xhp
@@ -4865,7 +4865,7 @@ msgctxt ""
"par_id56\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select margin between the printed pages and paper edge.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Po kliknutí prejdete na danú stránku sprievodcu.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte okraj medzi vytlačenou stránkou a okrajom papiera.</ahelp>"
#. kDE4q
#: 01130000.xhp
@@ -4874,7 +4874,7 @@ msgctxt ""
"par_id58\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select margin between individual pages on each sheet of paper.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zvoľte variantu základného typu grafu.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte okraj medzi jednotlivými stránkami na každom hárku papiera.</ahelp>"
#. c3YXh
#: 01130000.xhp
@@ -4883,7 +4883,7 @@ msgctxt ""
"par_id60\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select number of rows.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte formát súboru.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte počet riadkov.</ahelp>"
#. vFDCD
#: 01130000.xhp
@@ -4892,7 +4892,7 @@ msgctxt ""
"par_id62\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select number of columns.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte formát súboru.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte počet stĺpcov.</ahelp>"
#. dCGix
#: 01130000.xhp
@@ -4910,7 +4910,7 @@ msgctxt ""
"par_id66\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Print multiple pages per sheet of paper.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zadajte názvy dátových radov.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tlačiť viac stránok na jeden list papiera.</ahelp>"
#. gG4q6
#: 01130000.xhp
@@ -4928,7 +4928,7 @@ msgctxt ""
"par_id68\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select which parts of the document should be printed.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte farbu okolitého osvetlenia.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte, ktoré časti dokumentu sa majú vytlačiť.</ahelp>"
#. GxBJz
#: 01130000.xhp
@@ -4937,7 +4937,7 @@ msgctxt ""
"par_id70\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select how many slides to print per page.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zvoľte základný typ grafu.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte, koľko snímok sa má vytlačiť na stránku.</ahelp>"
#. i82Sz
#: 01130000.xhp
@@ -4946,7 +4946,7 @@ msgctxt ""
"par_id72\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Specify how to arrange slides on the printed page.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Upraví veľkosť náhľadu predlohy stránky.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zadajte, ako usporiadať snímky na vytlačenej stránke.</ahelp>"
#. WwZMV
#: 01130000.xhp
@@ -4955,7 +4955,7 @@ msgctxt ""
"par_id74\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to print the page name of a document.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Použije predlohu stránky na všetky snímky.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Určuje, či sa má vytlačiť názov stránky dokumentu.</ahelp>"
#. MGEfC
#: 01130000.xhp
@@ -4964,7 +4964,7 @@ msgctxt ""
"par_id76\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to print the current date and time.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hľadá cez všetky listy vo vybranom zošite.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Určuje, či sa má vytlačiť aktuálny dátum a čas.</ahelp>"
#. 6GWDF
#: 01130000.xhp
@@ -4973,7 +4973,7 @@ msgctxt ""
"par_id78\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to print the pages that are currently hidden.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Použije predlohu stránky na všetky snímky.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Určuje, či sa majú vytlačiť stránky, ktoré sú momentálne skryté.</ahelp>"
#. Rwqfi
#: 01130000.xhp
@@ -4982,7 +4982,7 @@ msgctxt ""
"par_id80\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies to print in original colors.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Určiť poradie dátových bodov.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Určuje, že tlač má byť v pôvodných farbách.</ahelp>"
#. VNMu2
#: 01130000.xhp
@@ -4991,7 +4991,7 @@ msgctxt ""
"par_id82\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies to print colors as grayscale.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Určiť poradie dátových bodov.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Určuje, že tlač farieb má byť v odtieňoch sivej.</ahelp>"
#. BKmbG
#: 01130000.xhp
@@ -5000,7 +5000,7 @@ msgctxt ""
"par_id84\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies to print colors as black and white.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte databázu a tabuľku.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Určuje, že farby sa budú tlačiť čiernobielo.</ahelp>"
#. 5PvmX
#: 01130000.xhp
@@ -5009,7 +5009,7 @@ msgctxt ""
"par_id86\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Specify how to scale slides in the printout.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte tvar zo zoznamu.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zadajte, ako upraviť veľkosť snímok na výtlačku.</ahelp>"
#. s3Nsf
#: 01130000.xhp
@@ -5018,7 +5018,7 @@ msgctxt ""
"par_id88\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies that you do not want to further scale pages when printing.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zarovná obsah bunky vpravo.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Určuje, že pri tlači nechcete ďalej meniť mierku stránok.</ahelp>"
#. FFAHN
#: 01130000.xhp
@@ -5027,7 +5027,7 @@ msgctxt ""
"par_id90\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to scale down objects that are beyond the margins of the current printer so they fit on the paper in the printer.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hľadá cez všetky listy vo vybranom zošite.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Určuje, či sa má zmenšiť veľkosť objektov, ktoré sú za okrajmi súčasnej tlačiarne, aby sa zmestili na papier v tlačiarni.</ahelp>"
#. vMYjm
#: 01130000.xhp
@@ -5371,14 +5371,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Sends a copy of the current document to different applications.</ahelp>"
msgstr ""
-#. BJir9
+#. TN979
#: 01160000.xhp
msgctxt ""
"01160000.xhp\n"
"hd_id3154398\n"
"help.text"
-msgid "<link href=\"text/shared/01/01160200.xhp\" name=\"Document as Email\">Email Document</link>"
-msgstr ""
+msgid "<link href=\"text/shared/01/01160200.xhp\" name=\"Document as E-mail\">E-mail Document</link>"
+msgstr "<link href=\"text/shared/01/01010202.xhp\" name=\"Formát\">Formát</link>"
#. Q86XQ
#: 01160000.xhp
@@ -5398,13 +5398,13 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a new window in your default email program with the current document as an attachment. The Microsoft file format is used.</ahelp>"
msgstr ""
-#. E7FtX
+#. EyYsF
#: 01160000.xhp
msgctxt ""
"01160000.xhp\n"
"hd_id8111514\n"
"help.text"
-msgid "Email as OpenDocument Spreadsheet"
+msgid "E-mail as OpenDocument Spreadsheet"
msgstr ""
#. ewW2i
@@ -5416,13 +5416,13 @@ msgctxt ""
msgid "Opens a new window in your default email program with the current document as an attachment. The OpenDocument file format is used."
msgstr ""
-#. yrGWK
+#. FXCR6
#: 01160000.xhp
msgctxt ""
"01160000.xhp\n"
"hd_id5112460\n"
"help.text"
-msgid "Email as Microsoft Excel"
+msgid "E-mail as Microsoft Excel"
msgstr ""
#. pLjdc
@@ -5434,13 +5434,13 @@ msgctxt ""
msgid "Opens a new window in your default email program with the current document as an attachment. The Microsoft Excel file format is used."
msgstr ""
-#. DBfk7
+#. UrGaf
#: 01160000.xhp
msgctxt ""
"01160000.xhp\n"
"hd_id6694540\n"
"help.text"
-msgid "Email as OpenDocument Presentation"
+msgid "E-mail as OpenDocument Presentation"
msgstr ""
#. Ai2i2
@@ -5452,13 +5452,13 @@ msgctxt ""
msgid "Opens a new window in your default email program with the current document as an attachment. The OpenDocument file format is used."
msgstr ""
-#. q3LCG
+#. vtewB
#: 01160000.xhp
msgctxt ""
"01160000.xhp\n"
"hd_id2099063\n"
"help.text"
-msgid "Email as Microsoft PowerPoint Presentation"
+msgid "E-mail as Microsoft PowerPoint Presentation"
msgstr ""
#. uDGxn
@@ -5470,13 +5470,13 @@ msgctxt ""
msgid "Opens a new window in your default email program with the current document as an attachment. The Microsoft PowerPoint file format is used."
msgstr ""
-#. Vjqvr
+#. XFixi
#: 01160000.xhp
msgctxt ""
"01160000.xhp\n"
"hd_id9657277\n"
"help.text"
-msgid "Email as OpenDocument Text"
+msgid "E-mail as OpenDocument Text"
msgstr ""
#. Aewp6
@@ -5488,13 +5488,13 @@ msgctxt ""
msgid "Opens a new window in your default email program with the current document as an attachment. The OpenDocument file format is used."
msgstr ""
-#. TH4Pg
+#. c9WaG
#: 01160000.xhp
msgctxt ""
"01160000.xhp\n"
"hd_id7941831\n"
"help.text"
-msgid "Email as Microsoft Word"
+msgid "E-mail as Microsoft Word"
msgstr ""
#. dcXm5
@@ -5533,23 +5533,23 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/01160300.xhp\" name=\"Create AutoAbstract\">Create AutoAbstract</link>"
msgstr "<link href=\"text/swriter/01/01160300.xhp\" name=\"Vytvoriť automatický abstrakt\">Vytvoriť automatický abstrakt</link>"
-#. sFe9G
+#. BZfjH
#: 01160200.xhp
msgctxt ""
"01160200.xhp\n"
"tit\n"
"help.text"
-msgid "Email Document"
+msgid "E-mail Document"
msgstr ""
-#. cpCsu
+#. qAUyE
#: 01160200.xhp
msgctxt ""
"01160200.xhp\n"
"hd_id3150702\n"
"help.text"
-msgid "<link href=\"text/shared/01/01160200.xhp\">Email Document</link>"
-msgstr ""
+msgid "<link href=\"text/shared/01/01160200.xhp\">E-mail Document</link>"
+msgstr "<link href=\"text/shared/01/04150400.xhp\" name=\"Zvuk\">Zvuk</link>"
#. 8prjP
#: 01160200.xhp
@@ -5560,13 +5560,13 @@ msgctxt ""
msgid "<variable id=\"versendentext\"><ahelp hid=\".uno:SendMail\">Opens a new window in your default email program with the current document as an attachment. The current file format is used.</ahelp></variable> If the document is new and unsaved, the format specified in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save - General</emph> is used."
msgstr ""
-#. EAoDd
+#. w48Rf
#: 01160200.xhp
msgctxt ""
"01160200.xhp\n"
"par_id0807200809553672\n"
"help.text"
-msgid "If the document is in HTML format, any embedded or linked images will <emph>not</emph> be sent with the email."
+msgid "If the document is in HTML format, any embedded or linked images will <emph>not</emph> be sent with the e-mail."
msgstr ""
#. E5hZ4
@@ -6811,14 +6811,14 @@ msgctxt ""
msgid "Link"
msgstr ""
-#. HCLBh
+#. ss8BJ
#: 02070000.xhp
msgctxt ""
"02070000.xhp\n"
"par_id3146969\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/link\">Inserts the cell range as a link, so that changes made to the cells in the source file are updated in the target file. To ensure that changes made to empty cells in the source file are updated in the target file, ensure that the \"Paste All\" option is also selected.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/link\">Vloží oblasť buniek ako odkaz, aby sa zmeny vykonané v bunkách v zdrojovom súbore aktualizovali v cieľovom súbore. Ak chcete zabezpečiť, aby sa zmeny vykonané v prázdnych bunkách v zdrojovom súbore aktualizovali v cieľovom súbore, skontrolujte, či je vybraná aj možnosť „Vložiť všetko“.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/link\">Inserts the cell range as a link, so that changes made to the cells in the source file are updated in the target file. To ensure that changes made to empty cells in the source file are updated in the target file, ensure that the \"Insert All\" option is also selected. </ahelp>"
+msgstr ""
#. 5BxP6
#: 02070000.xhp
@@ -7133,7 +7133,7 @@ msgctxt ""
"par_id4089175\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches through all of the sheets in the current spreadsheet file.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hľadá cez všetky listy vo vybranom zošite.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyhľadáva vo všetkých hárkoch v aktuálnom tabuľkovom súbore.</ahelp>"
#. T6CG6
#: 02100000.xhp
@@ -7574,7 +7574,7 @@ msgctxt ""
"par_id743430\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches from left to right across the rows.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hľadá zhora dole cez stĺpce.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyhľadáva zľava doprava cez riadky.</ahelp>"
#. CJSEj
#: 02100000.xhp
@@ -7601,7 +7601,7 @@ msgctxt ""
"par_id3470564\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches from top to bottom through the columns.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Hľadá zhora dole cez stĺpce.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyhľadáva zhora nadol v stĺpcoch.</ahelp>"
#. 2we6m
#: 02100000.xhp
@@ -7664,15 +7664,15 @@ msgctxt ""
"par_id6064943\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches for the characters that you specify in values and in the results of formulas.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyhľadá znaky, ktoré špecifikujete v hodnotách a vo výsledku rovnice.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyhľadá znaky, ktoré zadáte v hodnotách a vo výsledkoch vzorcov.</ahelp>"
-#. Hxei2
+#. eyn9j
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
"hd_id3145650\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Comments</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Notes</caseinline></switchinline>"
msgstr ""
#. MTECk
@@ -7691,7 +7691,7 @@ msgctxt ""
"par_id9799798\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches for the characters that you specify in the comments that are attached to the cells.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyhľadá znaky, ktoré špecifikujete v hodnotách a vo výsledku rovnice.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyhľadá znaky, ktoré zadáte v komentároch pripojených k bunkám.</ahelp>"
#. sFF39
#: 02100000.xhp
@@ -8161,13 +8161,13 @@ msgctxt ""
msgid "Represents an uppercase character if <emph>Match case</emph> is selected in <emph>Options</emph>."
msgstr ""
-#. V4cUQ
+#. iArH4
#: 02100001.xhp
msgctxt ""
"02100001.xhp\n"
"par_id5311440\n"
"help.text"
-msgid "For a full list of supported metacharacters and syntax, see <link href=\"https://unicode-org.github.io/icu/\" name=\"ICU Regular Expressions documentation\">ICU Regular Expressions documentation</link>"
+msgid "For a full list of supported metacharacters and syntax, see <link href=\"http://userguide.icu-project.org/strings/regexp\" name=\"ICU Regular Expressions documentation\">ICU Regular Expressions documentation</link>"
msgstr ""
#. HBqoH
@@ -10096,13 +10096,13 @@ msgctxt ""
msgid "File"
msgstr ""
-#. JooHu
+#. pJqem
#: 02180100.xhp
msgctxt ""
"02180100.xhp\n"
"par_id3153527\n"
"help.text"
-msgid "<ahelp hid=\"sfx/ui/linkeditdialog/file\">Path to the source file. <link href=\"text/shared/00/00000005.xhp#saving\" name=\"Relative paths\">Relative paths</link> must be expressed by full URI, for example, with <emph>file://</emph>.</ahelp>"
+msgid "<ahelp hid=\"sfx/ui/linkeditdialog/file\">Path to the source file. <link href=\"text/shared/00/00000005.xhp#speichern\" name=\"Relative paths\">Relative paths</link> must be expressed by full URI, for example, with <emph>file://</emph>.</ahelp>"
msgstr ""
#. eEnmT
@@ -12884,7 +12884,7 @@ msgctxt ""
"par_id3153947\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the current record.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte formát súboru.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vymaže aktuálny záznam.</ahelp>"
#. 2BL5R
#: 02250000.xhp
@@ -13741,13 +13741,13 @@ msgctxt ""
msgid "When the cursor is inside a comment, you can press <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph>+<emph>Option</emph></caseinline><defaultinline><emph>Ctrl</emph>+<emph>Alt</emph></defaultinline></switchinline>+<emph>Page Down</emph> to jump to the next comment, or press <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph>+<emph>Option</emph></caseinline><defaultinline><emph>Ctrl</emph>+<emph>Alt</emph></defaultinline></switchinline>+<emph>Page Up</emph> to jump to the previous comment."
msgstr ""
-#. asYhr
+#. Fkxgn
#: 04050000.xhp
msgctxt ""
"04050000.xhp\n"
"par_id2116153\n"
"help.text"
-msgid "When the cursor is inside the normal text, press the above mentioned keys to jump to the next or previous comment anchor."
+msgid "When the cursor is inside the normal text, press the above mentioned keys to jump to the next or previous comment anchor. You can also use the small <emph>Navigation</emph> window below the vertical scrollbar to jump from one comment anchor to the next comment anchor."
msgstr ""
#. yCdcN
@@ -13766,7 +13766,7 @@ msgctxt ""
"par_id0522200809383431\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Delete the current comment.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte formát súboru.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Odstrániť aktuálny komentár.</ahelp>"
#. HsmR5
#: 04050000.xhp
@@ -13775,7 +13775,7 @@ msgctxt ""
"par_id0522200809383485\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Delete all comments by this author in the current document.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte formát súboru.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Odstrániť všetky komentáre tohto autora v aktuálnom dokumente.</ahelp>"
#. BVqcC
#: 04050000.xhp
@@ -13784,7 +13784,7 @@ msgctxt ""
"par_id0522200809383428\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Delete all comments in the current document.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte formát súboru.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Odstrániť všetky komentáre v aktuálnom dokumente.</ahelp>"
#. M44G3
#: 04050000.xhp
@@ -14513,7 +14513,7 @@ msgctxt ""
"par_id3148410\n"
"help.text"
msgid "<variable id=\"floating_frame_text\"><variable id=\"frameeinfuegentext\"><ahelp hid=\".\">Inserts a floating frame into the current document. Floating frames are used in HTML documents to display the contents of another file.</ahelp></variable></variable>"
-msgstr "<variable id=\"reftext\"><ahelp hid=\".\">Tu vkladáte do dokumentu odkazy alebo odkazované polia. Odkazy sú tvorené odkazovanými poľami v rámci rovnakého dokumentu alebo v poddokumentoch hlavného dokumentu.</ahelp></variable>"
+msgstr "<ahelp hid=\".\">Vloží plávajúci rámec do aktuálneho dokumentu. Plávajúce rámce sa v dokumentoch HTML používajú na zobrazenie obsahu iného súboru.</ahelp></variable></variable>"
#. XcQtA
#: 04160500.xhp
@@ -14650,13 +14650,13 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05010000.xhp\" name=\"Clear Direct Formatting\">Clear Direct Formatting</link>"
msgstr "<link href=\"text/swriter/01/05140000.xhp\" name=\"Štýly a Formátovanie\">Štýly a Formátovanie</link>"
-#. 25NkJ
+#. uB2DG
#: 05010000.xhp
msgctxt ""
"05010000.xhp\n"
"par_id3145829\n"
"help.text"
-msgid "<ahelp hid=\".\">Removes direct formatting from the selection.</ahelp>"
+msgid "<ahelp hid=\".\">Removes direct formatting and formatting by character styles from the selection.</ahelp>"
msgstr ""
#. LYtxB
@@ -14668,15 +14668,6 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><defaultinline>Direct formatting is formatting that you applied without using styles, such as setting bold typeface by clicking the <emph>Bold</emph> icon.</defaultinline></switchinline>"
msgstr ""
-#. KAK6k
-#: 05010000.xhp
-msgctxt ""
-"05010000.xhp\n"
-"par_id671594846326658\n"
-"help.text"
-msgid "Applied character styles will not be affected by Clear Direct Formatting, only direct formatting applied on top of the character styles. To remove formatting applied by a character style, reapply the <emph>Default</emph> character style."
-msgstr ""
-
#. h42SA
#: 05010000.xhp
msgctxt ""
@@ -14713,14 +14704,23 @@ msgctxt ""
msgid "<variable id=\"zeichentext\"><ahelp hid=\".uno:FontDialog\">Changes the font and the font formatting for the selected characters.</ahelp></variable>"
msgstr ""
-#. Ycmxn
+#. ZvERE
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3149988\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>"
+msgstr "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
+
+#. 2422m
#: 05020000.xhp
msgctxt ""
"05020000.xhp\n"
"hd_id3147588\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020400.xhp\" name=\"Hyperlink\">Hyperlink</link>"
-msgstr ""
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/05020400.xhp\" name=\"Hyperlink\">Hyperlink</link></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/02100300.xhp\" name=\"Formát\">Formát</link></caseinline></switchinline>"
#. ruEdb
#: 05020100.xhp
@@ -15469,41 +15469,32 @@ msgctxt ""
msgid "<bookmark_value>formats; number and currency formats</bookmark_value><bookmark_value>number formats; formats</bookmark_value><bookmark_value>currencies;format codes</bookmark_value><bookmark_value>defaults; number formats</bookmark_value>"
msgstr ""
-#. fXs76
-#: 05020300.xhp
-msgctxt ""
-"05020300.xhp\n"
-"hd_id3162942\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
-msgstr ""
-
-#. z8GFZ
+#. 28pR2
#: 05020300.xhp
msgctxt ""
"05020300.xhp\n"
-"par_id3145071\n"
+"hd_id3152942\n"
"help.text"
-msgid "<variable id=\"zahlen\"><ahelp hid=\".uno:TableNumberFormatDialog\">Specify the formatting options for the selected cell(s).</ahelp></variable>"
-msgstr "<variable id=\"zahlen\"><ahelp hid=\".uno:TableNumberFormatDialog\">Zadajte možnosti formátovania pre vybrané bunky.</ahelp></variable>"
+msgid "Numbers / Format"
+msgstr "Formát čísla"
-#. E2nXs
+#. CNMbg
#: 05020300.xhp
msgctxt ""
"05020300.xhp\n"
-"hd_id3152942\n"
+"par_id3145086\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers/Format\">Numbers / Format</link>"
+msgid "Specify the formatting option for the selected variable."
msgstr ""
-#. CNMbg
+#. z8GFZ
#: 05020300.xhp
msgctxt ""
"05020300.xhp\n"
-"par_id3145086\n"
+"par_id3145071\n"
"help.text"
-msgid "Specify the formatting option for the selected variable."
-msgstr ""
+msgid "<variable id=\"zahlen\"><ahelp hid=\".uno:TableNumberFormatDialog\">Specify the formatting options for the selected cell(s).</ahelp></variable>"
+msgstr "<variable id=\"zahlen\"><ahelp hid=\".uno:TableNumberFormatDialog\">Zadajte možnosti formátovania pre vybrané bunky.</ahelp></variable>"
#. KqXXP
#: 05020300.xhp
@@ -15586,13 +15577,13 @@ msgctxt ""
msgid "Language"
msgstr "Jazyk"
-#. akNwB
+#. wCJKH
#: 05020300.xhp
msgctxt ""
"05020300.xhp\n"
"par_id3154138\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/numberingformatpage/languagelb\"> <switchinline select=\"appl\"> <caseinline select=\"WRITER\"> Specifies the language setting for the selected fields. With the language set to <emph>Default</emph>, $[officename] automatically applies the number formats associated with the system default language. </caseinline> <caseinline select=\"CALC\"> Specifies the language setting for the selected cells. </caseinline> <defaultinline>Specifies the language setting for the selected field.</defaultinline> </switchinline> </ahelp>"
+msgid "<ahelp hid=\"cui/ui/numberingformatpage/languagelb\"> <switchinline select=\"appl\"> <caseinline select=\"WRITER\"> Select any language to fix the settings for the selected fields. With the language set to <emph>Automatic</emph>, $[officename] automatically applies the number formats associated with the system default language. Select any language to fix the settings for the selected fields. </caseinline> <caseinline select=\"CALC\"> Specifies the language setting for the selected cells. Select any language to fix the settings for the selected cells. </caseinline> <defaultinline>Specifies the language setting for the selected field. Select any language to fix the settings for the selected fields.</defaultinline> </switchinline> </ahelp>"
msgstr ""
#. K29ZG
@@ -20446,13 +20437,13 @@ msgctxt ""
msgid "<variable id=\"absatztext\"><ahelp hid=\".\">Modifies the format of the current paragraph, such as indents and alignment.</ahelp></variable> To modify the font of the current paragraph, select the entire paragraph, choose Format - Character, and then click on the Font tab."
msgstr ""
-#. WTG9S
+#. bfSQ5
#: 05030000.xhp
msgctxt ""
"05030000.xhp\n"
"par_id3156042\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">The paragraph style for the current paragraph is displayed at the <emph>Formatting</emph> toolbar, and is highlighted in the <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles window</link>.</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">The paragraph style for the current paragraph is displayed at the <emph>Formatting</emph> toolbar, and is highlighted in the <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles window</link>. </caseinline></switchinline>"
msgstr ""
#. 3xcFE
@@ -21580,6 +21571,303 @@ msgctxt ""
msgid "The rules can be condensed to the statement that the stronger attribute wins. If, for example, one cell has a red border of 2 point width, and the adjacent cell has a blue border of 3 point width, then the common border between these two cells will be blue with 3 point width."
msgstr ""
+#. utSoU
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"tit\n"
+"help.text"
+msgid "Background"
+msgstr "Pozadie"
+
+#. L5HEe
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"bm_id3151097\n"
+"help.text"
+msgid "<bookmark_value>frames; backgrounds</bookmark_value><bookmark_value>backgrounds; frames/sections/indexes</bookmark_value><bookmark_value>sections; backgrounds</bookmark_value><bookmark_value>indexes; backgrounds</bookmark_value><bookmark_value>footers;backgrounds</bookmark_value><bookmark_value>headers;backgrounds</bookmark_value>"
+msgstr ""
+
+#. aEEtK
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"hd_id3151097\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Background\">Area</link>"
+msgstr ""
+
+#. wVwj8
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"par_id3153748\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/backgroundpage/BackgroundPage\">Set the background color or graphic.</ahelp>"
+msgstr ""
+
+#. cfKE8
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"par_id3147653\n"
+"help.text"
+msgid "You can specify the background for <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraphs, pages, headers, footers, frames, tables, table cells, sections, and indexes.</caseinline><caseinline select=\"CALC\">cells and pages.</caseinline></switchinline>"
+msgstr ""
+
+#. WUJz3
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"hd_id3154514\n"
+"help.text"
+msgid "As"
+msgstr "Ako"
+
+#. KGbQM
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"par_id3154380\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/backgroundpage/selectlb\">Select the type of background that you want to apply.</ahelp>"
+msgstr ""
+
+#. NByTA
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"hd_id3151245\n"
+"help.text"
+msgid "Using a Color as a Background"
+msgstr ""
+
+#. nfABt
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"hd_id3148946\n"
+"help.text"
+msgid "Color Background"
+msgstr "Na pozadie"
+
+#. Bqxh3
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"par_id3152361\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/backgroundpage/backgroundcolorset\">Click the color that you want to use as a background. To remove a background color, click <emph>No Fill</emph>.</ahelp>"
+msgstr ""
+
+#. Hk3yg
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"hd_id3154216\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">For</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Upraviť</caseinline></switchinline>"
+
+#. 3xKHG
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"par_id3145419\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/backgroundpage/tablelb\">Select the area that you want to apply the background color to.</ahelp> For example, when you define the background color for a table, you can choose to apply it to the table, the active cell, the row, or the column.</caseinline></switchinline>"
+msgstr ""
+
+#. CVRaQ
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"par_id3150497\n"
+"help.text"
+msgid "This option is only available when you edit the background of a table or a paragraph style."
+msgstr ""
+
+#. qdBoG
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"hd_id3153056\n"
+"help.text"
+msgid "Using a Graphic as a Background"
+msgstr ""
+
+#. WyEiZ
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"hd_id3149983\n"
+"help.text"
+msgid "File"
+msgstr "Súbor"
+
+#. 2aeNe
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"par_id3152462\n"
+"help.text"
+msgid "Contains information about the graphic file."
+msgstr ""
+
+#. cxVFJ
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"hd_id3145592\n"
+"help.text"
+msgid "Display field"
+msgstr "Zobraziť pole"
+
+#. 2GUUE
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"par_id3154920\n"
+"help.text"
+msgid "Shows the path for the graphic file."
+msgstr ""
+
+#. FEGBw
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"hd_id3145272\n"
+"help.text"
+msgid "Link"
+msgstr "Odkaz"
+
+#. 8xzGd
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"par_id3154150\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/backgroundpage/link\">Links to or embeds the graphic file in the current file.</ahelp>"
+msgstr ""
+
+#. 8JaXm
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"hd_id3155366\n"
+"help.text"
+msgid "Preview"
+msgstr "Náhľad"
+
+#. 2q65e
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"par_id3147426\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/backgroundpage/showpreview\">Displays or hides a preview of the selected graphic.</ahelp>"
+msgstr ""
+
+#. ZYK3H
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"hd_id3154472\n"
+"help.text"
+msgid "Browse"
+msgstr "Prehľadávať"
+
+#. CV8je
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"par_id3153951\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/backgroundpage/browse\">Locate the graphic file that you want to use as a background, and then click <emph>Open</emph>.</ahelp>"
+msgstr ""
+
+#. KYFry
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"hd_id3153726\n"
+"help.text"
+msgid "Type"
+msgstr "Typ"
+
+#. 83qqt
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"par_id3147442\n"
+"help.text"
+msgid "Specify the way that you want to display the background graphic."
+msgstr ""
+
+#. hiDAM
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"hd_id3153366\n"
+"help.text"
+msgid "Position"
+msgstr "Umiestnenie"
+
+#. B22EE
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"par_id3153741\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/backgroundpage/positionrb\">Select this option, and then click a location in the position grid.</ahelp>"
+msgstr ""
+
+#. mGSC9
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"hd_id3156005\n"
+"help.text"
+msgid "Area"
+msgstr "Oblasť"
+
+#. BFBbE
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"par_id3152596\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/backgroundpage/arearb\">Stretches the graphic to fill the entire background of the selected object.</ahelp>"
+msgstr ""
+
+#. 556to
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"hd_id3145663\n"
+"help.text"
+msgid "Tile"
+msgstr "Dlaždica"
+
+#. iBkjp
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"par_id3149481\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/backgroundpage/tilerb\">Repeats the graphic so that it covers the entire background of the selected object.</ahelp>"
+msgstr ""
+
+#. ZNNNW
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"par_id3151114\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click a color. Click No Fill to remove a background or highlighting color. Click Automatic to reset a font color.</ahelp>"
+msgstr ""
+
#. iXWcd
#: 05030700.xhp
msgctxt ""
@@ -22111,13 +22399,13 @@ msgctxt ""
msgid "Organizer"
msgstr "Organizátor"
-#. HAEfy
+#. QZBEH
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"bm_id3153383\n"
"help.text"
-msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
+msgid "<bookmark_value>organizing; styles</bookmark_value> <bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
#. SZdCB
@@ -22156,22 +22444,22 @@ msgctxt ""
msgid "<ahelp hid=\"sfx/ui/managestylepage/name\">Displays the name of the selected style. If you are creating or modifying a custom style, enter a name for the style. You cannot change the name of a predefined style.</ahelp>"
msgstr ""
-#. xEE52
+#. NRACR
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153750\n"
"help.text"
-msgid "AutoUpdate"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">AutoUpdate</caseinline></switchinline>"
msgstr ""
-#. 7yXws
+#. vexD3
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"par_id3153749\n"
"help.text"
-msgid "<ahelp hid=\"sfx/ui/managestylepage/autoupdate\">Updates the style when you apply direct formatting to a paragraph using this style in your document. The formatting of all paragraphs using this style is automatically updated.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"sfx/ui/managestylepage/autoupdate\">Updates the style when you apply direct formatting to a paragraph using this style in your document. The formatting of all paragraphs using this style is automatically updated.</ahelp></caseinline></switchinline>"
msgstr ""
#. N5rDR
@@ -23164,14 +23452,14 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05030500.xhp\" name=\"Borders\">Borders</link>"
msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Oblasť\">Oblasť</link>"
-#. mctak
+#. wECro
#: 05040300.xhp
msgctxt ""
"05040300.xhp\n"
"par_id3147326\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Backgrounds\">Area</link>"
-msgstr ""
+msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Backgrounds\">Backgrounds</link>"
+msgstr "<link href=\"text/shared/01/01010201.xhp\" name=\"Štítky\">Štítky</link>"
#. 7xtR7
#: 05040400.xhp
@@ -23209,13 +23497,13 @@ msgctxt ""
msgid "If you want, you can also add borders or a background fill to a footer."
msgstr ""
-#. 5nvHF
+#. vks8A
#: 05040400.xhp
msgctxt ""
"05040400.xhp\n"
"par_id3155339\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">To insert a footer into the current document, select <emph>Footer on</emph>, and then click <emph>OK</emph>.</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">To insert a footer into the current document, select <emph>Footer on</emph>, and then click <emph>OK</emph>. </caseinline></switchinline>"
msgstr ""
#. DAGaz
@@ -23281,13 +23569,13 @@ msgctxt ""
msgid "Same content left/right"
msgstr ""
-#. KTdzy
+#. wr3Gk
#: 05040400.xhp
msgctxt ""
"05040400.xhp\n"
"par_id3149575\n"
"help.text"
-msgid "<ahelp hid=\"SVX_HID_FOOTER_CHECKSAMELR\">Even and odd pages share the same content.<switchinline select=\"appl\"><caseinline select=\"CALC\"> To assign a different footer to even and odd pages, clear this option, and then click <emph>Edit</emph>.</caseinline></switchinline></ahelp>"
+msgid "<ahelp hid=\"SVX_HID_FOOTER_CHECKSAMELR\">Even and odd pages share the same content.<switchinline select=\"appl\"><caseinline select=\"CALC\"> To assign a different footer to even and odd pages, clear this option, and then click <emph>Edit</emph>. </caseinline></switchinline></ahelp>"
msgstr ""
#. cL398
@@ -23434,14 +23722,14 @@ msgctxt ""
msgid "<ahelp hid=\"SVX_HID_FOOTER_BUTTONMORE\">Defines a border, a background color, or a background pattern for the footer.</ahelp>"
msgstr ""
-#. VcmMZ
+#. a9sG2
#: 05040400.xhp
msgctxt ""
"05040400.xhp\n"
"hd_id3157892\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Edit</caseinline></switchinline>"
-msgstr ""
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Edit </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Upraviť</caseinline></switchinline>"
#. 2HTzq
#: 05040400.xhp
@@ -23488,14 +23776,14 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05030500.xhp\" name=\"Borders\">Borders</link>"
msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Oblasť\">Oblasť</link>"
-#. 4DfxW
+#. w2QJP
#: 05040400.xhp
msgctxt ""
"05040400.xhp\n"
"par_id3152791\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Backgrounds\">Area</link>"
-msgstr ""
+msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Backgrounds\">Backgrounds</link>"
+msgstr "<link href=\"text/shared/01/01010201.xhp\" name=\"Štítky\">Štítky</link>"
#. CgGUH
#: 05060000.xhp
@@ -23999,7 +24287,7 @@ msgctxt ""
"par_id3150756\n"
"help.text"
msgid "<variable id=\"linkstext\"><ahelp hid=\".uno:LeftPara\" visibility=\"visible\">Aligns the selected paragraph(s) to the left page margin.</ahelp></variable>"
-msgstr "<variable id=\"linkstext\"><ahelp hid=\".uno:LeftPara\" visibility=\"visible\">Zarovná označené odseky k ľavému okraju strany.</ahelp></variable>"
+msgstr "<variable id=\"linkstext\"><ahelp hid=\".uno:LeftPara\" visibility=\"visible\">Zarovná vybrané odseky k ľavému okraju stránky.</ahelp></variable>"
#. YqECS
#: 05080200.xhp
@@ -24053,7 +24341,7 @@ msgctxt ""
"par_id3152876\n"
"help.text"
msgid "<variable id=\"zentrierttext\"><ahelp hid=\".uno:CenterPara\" visibility=\"visible\">Centers the selected paragraph(s) on the page.</ahelp></variable>"
-msgstr "<variable id=\"linkstext\"><ahelp hid=\".uno:LeftPara\" visibility=\"visible\">Zarovná označené odseky k ľavému okraju strany.</ahelp></variable>"
+msgstr "<variable id=\"zentrierttext\"><ahelp hid=\".uno:CenterPara\" visibility=\"visible\">Vycentruje vybrané odseky na stránke.</ahelp></variable>"
#. KQGiF
#: 05080400.xhp
@@ -25801,13 +26089,31 @@ msgctxt ""
msgid "Add"
msgstr "Pridať"
-#. 5xkB3
+#. sqyhp
#: 05200200.xhp
msgctxt ""
"05200200.xhp\n"
"par_id3149827\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/linestyletabpage/BTN_ADD\">Creates a new line style using the current settings.</ahelp> Enter a name for the new line style."
+msgid "<ahelp hid=\"cui/ui/linestyletabpage/BTN_ADD\">Creates a new line style using the current settings.</ahelp>"
+msgstr ""
+
+#. T2pNA
+#: 05200200.xhp
+msgctxt ""
+"05200200.xhp\n"
+"hd_id3155338\n"
+"help.text"
+msgid "Name"
+msgstr "Názov"
+
+#. 4phXf
+#: 05200200.xhp
+msgctxt ""
+"05200200.xhp\n"
+"par_id3153681\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter a name.</ahelp>"
msgstr ""
#. 6Yvch
@@ -26053,32 +26359,32 @@ msgctxt ""
msgid "Area tab"
msgstr ""
-#. yN2qC
+#. M6zvc
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
"bm_id3149999\n"
"help.text"
-msgid "<bookmark_value>areas; styles</bookmark_value><bookmark_value>fill patterns for areas</bookmark_value><bookmark_value>fill colors for areas</bookmark_value><bookmark_value>invisible areas</bookmark_value><bookmark_value>frames; backgrounds</bookmark_value><bookmark_value>backgrounds; frames/sections/indexes</bookmark_value><bookmark_value>sections; backgrounds</bookmark_value><bookmark_value>indexes; backgrounds</bookmark_value><bookmark_value>footers;backgrounds</bookmark_value><bookmark_value>headers;backgrounds</bookmark_value>"
+msgid "<bookmark_value>areas; styles</bookmark_value><bookmark_value>fill patterns for areas</bookmark_value><bookmark_value>fill colors for areas</bookmark_value><bookmark_value>invisible areas</bookmark_value>"
msgstr ""
-#. 3fEfw
+#. Y4ktT
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
"hd_id3145759\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Area\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Background</caseinline><defaultinline>Area</defaultinline></switchinline></link>"
-msgstr ""
+msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Area\">Area</link>"
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Oblasť\">Oblasť</link>"
-#. ubruG
+#. tcPKP
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
"par_id3149748\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/areatabpage/AreaTabPage\">Set the fill options for the selected drawing object or document element.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/areatabpage/AreaTabPage\">Nastavte možnosti výplne pre vybraný grafický objekt alebo prvok dokumentu.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/areatabpage/AreaTabPage\">Set the fill options for the selected drawing object.</ahelp>"
+msgstr ""
#. eE2Fr
#: 05210100.xhp
@@ -26089,6 +26395,24 @@ msgctxt ""
msgid "You can add custom colors, gradients, hatchings, two color patterns and bitmap patterns to the default lists for later use."
msgstr ""
+#. 5n3AA
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#. 8UdBz
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
#. CGbA3
#: 05210100.xhp
msgctxt ""
@@ -26125,6 +26449,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/areatabpage/btngradient\">Fills the object with a gradient selected on this page.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/areatabpage/btngradient\">Vyplní objekt prechodom vybraným na tejto stránke.</ahelp>"
+#. BtYSN
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3150771\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05210500.xhp#bitmapmuster\" name=\"Bitmap\">Bitmap</link>"
+msgstr ""
+
+#. qBkq4
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3149762\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/btnbitmap\">Fills the object with a bitmap pattern selected on this page.</ahelp> To add a bitmap to the list, open this dialog, click the <emph>Bitmaps </emph>tab, and then click <emph>Add / Import</emph>."
+msgstr ""
+
+#. EAYEg
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3150504\n"
+"help.text"
+msgid "Pattern"
+msgstr ""
+
+#. Z5Fcf
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3153626\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/areatabpage/btnpattern\">Fills the object with a simple two color pattern selected on this page.</ahelp>"
+msgstr ""
+
#. ydNTt
#: 05210100.xhp
msgctxt ""
@@ -26845,13 +27205,13 @@ msgctxt ""
msgid "Bitmap"
msgstr "Bitová mapa"
-#. DL8RS
+#. HFJGN
#: 05210500.xhp
msgctxt ""
"05210500.xhp\n"
"bm_id3155619\n"
"help.text"
-msgid "<bookmark_value>bitmaps; areas</bookmark_value><bookmark_value>areas; bitmap</bookmark_value>"
+msgid "<bookmark_value>bitmaps; patterns</bookmark_value><bookmark_value>areas; bitmap patterns</bookmark_value><bookmark_value>pixel patterns</bookmark_value><bookmark_value>pixel editor</bookmark_value><bookmark_value>pattern editor</bookmark_value>"
msgstr ""
#. 2jwXu
@@ -26863,220 +27223,67 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05210500.xhp\" name=\"Bitmap\">Bitmap</link>"
msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Oblasť\">Oblasť</link>"
-#. Xc6qZ
+#. yFYuj
#: 05210500.xhp
msgctxt ""
"05210500.xhp\n"
"par_id3149495\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/bitmaptabpage/BitmapTabPage\">Select a bitmap that you want to use as a fill image, or add your own bitmap pattern.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/bitmaptabpage/BitmapTabPage\">Vyberte bitmapu, ktorú chcete použiť ako výplňový obrázok, alebo pridajte svoj vlastný bitmapový vzor.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/bitmaptabpage/BitmapTabPage\">Select a bitmap that you want to use as a fill pattern, or create your own pixel pattern. You can also import bitmaps, and save or load bitmap lists.</ahelp>"
+msgstr ""
-#. wEhVG
+#. FvnTh
#: 05210500.xhp
msgctxt ""
"05210500.xhp\n"
"hd_id3148585\n"
"help.text"
-msgid "Bitmap"
-msgstr ""
+msgid "Pattern Editor"
+msgstr "Editor vzoriek"
-#. 8ZuCa
+#. aqBHc
#: 05210500.xhp
msgctxt ""
"05210500.xhp\n"
"par_id3147226\n"
"help.text"
-msgid "Lists the available bitmaps. You can also import bitmaps."
-msgstr ""
-
-#. eCeUD
-#: 05210500.xhp
-msgctxt ""
-"05210500.xhp\n"
-"par_id501592872056000\n"
-"help.text"
-msgid "To rename a bitmap, select the bitmap, right-click and choose <menuitem>Rename</menuitem>. To delete a bitmap, select the bitmap, right-click and choose <menuitem>Delete</menuitem>."
+msgid "Use this editor to create a simple, two-color, 8x8 pixel bitmap pattern."
msgstr ""
-#. MqVdD
-#: 05210500.xhp
-msgctxt ""
-"05210500.xhp\n"
-"hd_id71592866308524\n"
-"help.text"
-msgid "Add/Import"
-msgstr ""
-
-#. SGKZW
-#: 05210500.xhp
-msgctxt ""
-"05210500.xhp\n"
-"par_id3148473\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/bitmaptabpage/BTN_IMPORT\">Locate the bitmap that you want to import, and then click <emph>Open</emph>. The bitmap is added to the end of the list of available bitmaps.</ahelp>"
-msgstr ""
-
-#. EBwza
-#: 05210500.xhp
-msgctxt ""
-"05210500.xhp\n"
-"par_id301592866270627\n"
-"help.text"
-msgid "Imported bitmaps are saved in your user profile and can be used in other documents."
-msgstr ""
-
-#. pC4QD
+#. C9Reo
#: 05210500.xhp
msgctxt ""
"05210500.xhp\n"
"hd_id3145669\n"
"help.text"
-msgid "Options"
-msgstr ""
-
-#. smwef
-#: 05210500.xhp
-msgctxt ""
-"05210500.xhp\n"
-"hd_id251592868388253\n"
-"help.text"
-msgid "Style"
-msgstr ""
-
-#. GnwjN
-#: 05210500.xhp
-msgctxt ""
-"05210500.xhp\n"
-"par_id241592868416096\n"
-"help.text"
-msgid "<emph>Tiled</emph>: Fill the area with the bitmap as tiles."
-msgstr ""
-
-#. gCgdA
-#: 05210500.xhp
-msgctxt ""
-"05210500.xhp\n"
-"par_id161592868421600\n"
-"help.text"
-msgid "<emph>Stretched</emph>: Stretch the image to fit the object area."
-msgstr ""
-
-#. Fi4Fj
-#: 05210500.xhp
-msgctxt ""
-"05210500.xhp\n"
-"par_id651592868426975\n"
-"help.text"
-msgid "<emph>Custom position/size</emph>: Set a custom size and position of the bitmap in the object area."
-msgstr ""
-
-#. sAiUV
-#: 05210500.xhp
-msgctxt ""
-"05210500.xhp\n"
-"hd_id151592868900345\n"
-"help.text"
-msgid "Size"
-msgstr ""
-
-#. TeFTN
-#: 05210500.xhp
-msgctxt ""
-"05210500.xhp\n"
-"par_id321592869205683\n"
-"help.text"
-msgid "Size of the tiles and the custom size."
-msgstr ""
-
-#. rTjAd
-#: 05210500.xhp
-msgctxt ""
-"05210500.xhp\n"
-"par_id951592869294738\n"
-"help.text"
-msgid "<emph>Width</emph>: Set the width of the tile or custom size."
-msgstr ""
-
-#. RQFrq
-#: 05210500.xhp
-msgctxt ""
-"05210500.xhp\n"
-"par_id171592869301228\n"
-"help.text"
-msgid "<emph>Height</emph>: Set the height of the tile or custom size."
-msgstr ""
-
-#. twwdD
-#: 05210500.xhp
-msgctxt ""
-"05210500.xhp\n"
-"par_id351592869651411\n"
-"help.text"
-msgid "<emph>Scale</emph>: Mark to turn the height and width settings relative to original size."
-msgstr ""
-
-#. QEYV9
-#: 05210500.xhp
-msgctxt ""
-"05210500.xhp\n"
-"hd_id201592869695805\n"
-"help.text"
-msgid "Position"
-msgstr ""
-
-#. 8qFYv
-#: 05210500.xhp
-msgctxt ""
-"05210500.xhp\n"
-"par_id321592869780471\n"
-"help.text"
-msgid "Select the anchoring position of the bitmap image inside the object area."
-msgstr ""
-
-#. WKmCj
-#: 05210500.xhp
-msgctxt ""
-"05210500.xhp\n"
-"hd_id791592870139336\n"
-"help.text"
-msgid "Tiling Position"
-msgstr ""
-
-#. 286Bv
-#: 05210500.xhp
-msgctxt ""
-"05210500.xhp\n"
-"par_id811592870169715\n"
-"help.text"
-msgid "<emph>X-Offset</emph>: Set the horizontal bitmap offset value with respect to the anchoring position."
+msgid "Grid"
msgstr ""
-#. w8e6v
+#. N9L3c
#: 05210500.xhp
msgctxt ""
"05210500.xhp\n"
-"par_id41592870267463\n"
+"par_id3150774\n"
"help.text"
-msgid "<emph>Y-Offset</emph>: Set the vertical bitmap offset value with respect to the anchoring position."
+msgid "To enable this editor, select the <emph>Blank</emph> bitmap in the bitmap list."
msgstr ""
-#. FeN7H
+#. BJwLt
#: 05210500.xhp
msgctxt ""
"05210500.xhp\n"
-"hd_id631592870132856\n"
+"hd_id3149516\n"
"help.text"
-msgid "Tiling Offset"
+msgid "Import"
msgstr ""
-#. ogBQB
+#. SGKZW
#: 05210500.xhp
msgctxt ""
"05210500.xhp\n"
-"par_id111592870375812\n"
+"par_id3148473\n"
"help.text"
-msgid "Select the tiles offset in rows or columns. Use the spin button to specify the offset value."
+msgid "<ahelp hid=\"cui/ui/bitmaptabpage/BTN_IMPORT\">Locate the bitmap that you want to import, and then click <emph>Open</emph>. The bitmap is added to the end of the list of available bitmaps.</ahelp>"
msgstr ""
#. wAHtP
@@ -27241,14 +27448,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:FillShadow\">Adds a shadow to the selected object. If the object already has a shadow, the shadow is removed. If you click this icon when no object is selected, the shadow is added to the next object that you draw.</ahelp>"
msgstr ""
-#. gjXA8
+#. DK9fc
#: 05210600.xhp
msgctxt ""
"05210600.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<image id=\"img_id3149045\" src=\"cmd/sc_fillshadow.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149045\">Icon Add Shadow</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3149045\" src=\"cmd/sc_fillshadow.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149045\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149045\" src=\"cmd/sc_fillshadow.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149045\">Ikonka</alt></image>"
#. 6XJUi
#: 05210600.xhp
@@ -27529,177 +27736,6 @@ msgctxt ""
msgid "Use the preview to view your changes before you apply the transparency effect to the color fill of the selected object."
msgstr ""
-#. UE76G
-#: 05210800.xhp
-msgctxt ""
-"05210800.xhp\n"
-"tit\n"
-"help.text"
-msgid "Pattern"
-msgstr ""
-
-#. 5FVqC
-#: 05210800.xhp
-msgctxt ""
-"05210800.xhp\n"
-"bm_id431592861834899\n"
-"help.text"
-msgid "<bookmark_value>pattern;area</bookmark_value><bookmark_value>pattern;background</bookmark_value><bookmark_value>background;pattern</bookmark_value><bookmark_value>background;area</bookmark_value>"
-msgstr ""
-
-#. S8BBE
-#: 05210800.xhp
-msgctxt ""
-"05210800.xhp\n"
-"hd_id801592861657875\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05210800.xhp\" name=\"pattern\">Pattern</link>"
-msgstr ""
-
-#. qLwKU
-#: 05210800.xhp
-msgctxt ""
-"05210800.xhp\n"
-"par_id3153626\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/areatabpage/btnpattern\">Fills the object with a simple two color pattern selected on this page.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/areatabpage/btnpattern\">Vyplní objekt jednoduchým dvojfarebným vzorom vybraným na tejto stránke.</ahelp>"
-
-#. p5uGC
-#: 05210800.xhp
-msgctxt ""
-"05210800.xhp\n"
-"hd_id3159147\n"
-"help.text"
-msgid "Pattern"
-msgstr ""
-
-#. KW3Ah
-#: 05210800.xhp
-msgctxt ""
-"05210800.xhp\n"
-"par_id3149955\n"
-"help.text"
-msgid "Lists the available patterns. You can also modify or create your own pattern."
-msgstr ""
-
-#. rpQaV
-#: 05210800.xhp
-msgctxt ""
-"05210800.xhp\n"
-"par_id161584528499683\n"
-"help.text"
-msgid "To rename a pattern, select the pattern, right-click and choose <menuitem>Rename</menuitem>. To delete a pattern, select the pattern, right-click and choose <menuitem>Delete</menuitem>."
-msgstr ""
-
-#. VrE5t
-#: 05210800.xhp
-msgctxt ""
-"05210800.xhp\n"
-"hd_id3153823\n"
-"help.text"
-msgid "Add"
-msgstr ""
-
-#. 8fyh4
-#: 05210800.xhp
-msgctxt ""
-"05210800.xhp\n"
-"par_id3148924\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/patterntabpage/BTN_ADD\">Adds a custom pattern to the current list. Specify the properties of your pattern, and then click this button.</ahelp>"
-msgstr ""
-
-#. 5waZ4
-#: 05210800.xhp
-msgctxt ""
-"05210800.xhp\n"
-"hd_id3147620\n"
-"help.text"
-msgid "Modify"
-msgstr ""
-
-#. BSeBy
-#: 05210800.xhp
-msgctxt ""
-"05210800.xhp\n"
-"par_id3156023\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/patterntabpage/BTN_MODIFY\">Applies the current pattern properties to the selected pattern. If you want, you can save the pattern under a different name.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/patterntabpage/BTN_MODIFY\">Použije aktuálne vlastnosti vzoru na vybraný vzor. Ak chcete, môžete vzor uložiť pod iným názvom.</ahelp>"
-
-#. WCFwi
-#: 05210800.xhp
-msgctxt ""
-"05210800.xhp\n"
-"hd_id3156042\n"
-"help.text"
-msgid "Options"
-msgstr ""
-
-#. CVD9L
-#: 05210800.xhp
-msgctxt ""
-"05210800.xhp\n"
-"par_id3147291\n"
-"help.text"
-msgid "Draw or modify a pattern."
-msgstr ""
-
-#. ruCpD
-#: 05210800.xhp
-msgctxt ""
-"05210800.xhp\n"
-"hd_id3147834\n"
-"help.text"
-msgid "Pattern Editor"
-msgstr ""
-
-#. rFfJm
-#: 05210800.xhp
-msgctxt ""
-"05210800.xhp\n"
-"par_id3147010\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/patterntabpage/CTL_PIXEL\">Draw the pattern in the 8 x 8 pixel board. Click on a pattern pixel to activate it, click again to deactivate it.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/patterntabpage/CTL_PIXEL\">Nakreslite vzor na štvorec s rozmermi 8 x 8 pixelov. Kliknutím na pixel vzoru ho aktivujete, ďalším kliknutím ho deaktivujete.</ahelp>"
-
-#. hNAPN
-#: 05210800.xhp
-msgctxt ""
-"05210800.xhp\n"
-"hd_id3155355\n"
-"help.text"
-msgid "Foreground Color"
-msgstr ""
-
-#. sHjjw
-#: 05210800.xhp
-msgctxt ""
-"05210800.xhp\n"
-"par_id3156410\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/patterntabpage/LB_COLOR\">Set the color of the activated pattern pixels.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/patterntabpage/LB_COLOR\">Nastavte farbu aktivovaných pixelov vzoru.</ahelp>"
-
-#. nh8wk
-#: 05210800.xhp
-msgctxt ""
-"05210800.xhp\n"
-"hd_id3155449\n"
-"help.text"
-msgid "Background Color"
-msgstr ""
-
-#. JqSDi
-#: 05210800.xhp
-msgctxt ""
-"05210800.xhp\n"
-"par_id3152909\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/patterntabpage/LB_BACKGROUND_COLOR\">Set the color of the deactivated pattern pixels.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/patterntabpage/LB_BACKGROUND_COLOR\">Nastavte farbu deaktivovaných pixelov vzoru.</ahelp>"
-
#. fZrDg
#: 05220000.xhp
msgctxt ""
@@ -28013,7 +28049,7 @@ msgctxt ""
"par_id3150244\n"
"help.text"
msgid "<ahelp hid=\".\">Anchors the text to the full width of the drawing object or text object.</ahelp>"
-msgstr "<ahelp hid=\".\"> Vyberie oddeľovač medzi viacnásobnými textovými reťazcami v rovnakom objekte</ahelp>"
+msgstr "<ahelp hid=\".\">Ukotví text na celú šírku grafického alebo textového objektu.</ahelp>"
#. 2aBQA
#: 05230000.xhp
@@ -28375,14 +28411,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/rotationtabpage/Rotation\">Rotates the selected object.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/rotationtabpage/Rotation\">Otočí vybraný objekt.</ahelp>"
-#. pB7Dj
+#. kEn4i
#: 05230300.xhp
msgctxt ""
"05230300.xhp\n"
"hd_id3148983\n"
"help.text"
-msgid "Pivot Point"
-msgstr ""
+msgid "Pivot point"
+msgstr "Rotačný bod"
#. Zzs3U
#: 05230300.xhp
@@ -28402,14 +28438,14 @@ msgctxt ""
msgid "If you set a pivot point too far outside of the object boundaries, the object could be rotated off of the page."
msgstr ""
-#. FRRzG
+#. aFBHq
#: 05230300.xhp
msgctxt ""
"05230300.xhp\n"
"hd_id3145382\n"
"help.text"
-msgid "Position X"
-msgstr ""
+msgid "X Position"
+msgstr "Pozícia X"
#. yxcU2
#: 05230300.xhp
@@ -28420,14 +28456,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/rotationtabpage/MTR_FLD_POS_X\">Enter the horizontal distance from the left edge of the page to the pivot point.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/rotationtabpage/MTR_FLD_POS_X\">Zadajte vodorovnú vzdialenosť od ľavého okraja strany k vzťažnému bodu.</ahelp>"
-#. RMUdu
+#. BWKfU
#: 05230300.xhp
msgctxt ""
"05230300.xhp\n"
"hd_id3155323\n"
"help.text"
-msgid "Position Y"
-msgstr ""
+msgid "Y Position"
+msgstr "Pozícia Y"
#. oRJxp
#: 05230300.xhp
@@ -28438,13 +28474,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/rotationtabpage/MTR_FLD_POS_Y\">Enter the vertical distance from the top edge of the page to the pivot point.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/rotationtabpage/MTR_FLD_POS_Y\">Zadajte vertikálnu vzdialenosť od horného okraja strany k referenčnému bodu.</ahelp>"
-#. wMC2g
+#. pFK39
#: 05230300.xhp
msgctxt ""
"05230300.xhp\n"
"hd_id3153332\n"
"help.text"
-msgid "Default settings"
+msgid "Defaults"
msgstr ""
#. icmC7
@@ -28456,13 +28492,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/rotationtabpage/CTL_RECT\">Click where you want to place the pivot point.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/rotationtabpage/CTL_RECT\">Kliknite na miesto, kam chcete umiestniť vzťažný bod.</ahelp>"
-#. D9Mc3
+#. HEbt4
#: 05230300.xhp
msgctxt ""
"05230300.xhp\n"
"hd_id3146847\n"
"help.text"
-msgid "Rotation Angle"
+msgid "Rotation angle"
msgstr ""
#. owCBC
@@ -28492,14 +28528,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/rotationtabpage/NF_ANGLE\">Enter the number of degrees that you want to rotate the selected object.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/rotationtabpage/NF_ANGLE\">Zadajte počet stupňov, o ktoré chcete otočiť vybraný objekt.</ahelp>"
-#. fnugw
+#. ECUGH
#: 05230300.xhp
msgctxt ""
"05230300.xhp\n"
"hd_id3148474\n"
"help.text"
-msgid "Default settings"
-msgstr ""
+msgid "Defaults"
+msgstr "Východzie"
#. EvNrr
#: 05230300.xhp
@@ -28519,13 +28555,13 @@ msgctxt ""
msgid "Slant & Corner Radius"
msgstr "Skosenie a polomer rohu"
-#. FKWxd
+#. JuafH
#: 05230400.xhp
msgctxt ""
"05230400.xhp\n"
"bm_id3149988\n"
"help.text"
-msgid "<bookmark_value>slanting draw objects</bookmark_value><bookmark_value>draw objects; slanting</bookmark_value><bookmark_value>areas; slanting</bookmark_value><bookmark_value>shapes; control points</bookmark_value><bookmark_value>draw objects; control points</bookmark_value>"
+msgid "<bookmark_value>slanting draw objects</bookmark_value><bookmark_value>draw objects; slanting</bookmark_value><bookmark_value>areas; slanting</bookmark_value>"
msgstr ""
#. DxadW
@@ -28609,50 +28645,14 @@ msgctxt ""
msgid "Angle"
msgstr "Uhol"
-#. wuSBC
+#. RZJiu
#: 05230400.xhp
msgctxt ""
"05230400.xhp\n"
"par_id3153683\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/slantcornertabpage/MTR_FLD_ANGLE\">Enter the angle of the slant axis.</ahelp>. The slant angle relates to how much an object inclines or slants from its normal vertical position."
-msgstr ""
-
-#. cCmPK
-#: 05230400.xhp
-msgctxt ""
-"05230400.xhp\n"
-"hd_id621600964074859\n"
-"help.text"
-msgid "Control points 1 and 2"
-msgstr ""
-
-#. XXRdh
-#: 05230400.xhp
-msgctxt ""
-"05230400.xhp\n"
-"par_id551600994115345\n"
-"help.text"
-msgid "Some shapes have a special handle which you can drag to change the properties of the shape. The mouse pointer changes to a hand symbol over these special handles. The control points refers to the X and Y coordinates of the position of these handles. When the object has no handle, the values in these boxes are zero. When the shape has one control point, the coordinates of the other control point are zero."
-msgstr ""
-
-#. fbzxN
-#: 05230400.xhp
-msgctxt ""
-"05230400.xhp\n"
-"par_id841600966950007\n"
-"help.text"
-msgid "Enter a value to set the X and Y coordinates of the control points of the object."
-msgstr ""
-
-#. wGED2
-#: 05230400.xhp
-msgctxt ""
-"05230400.xhp\n"
-"par_id911600993420542\n"
-"help.text"
-msgid "<image src=\"media/helpimg/sdraw/control_points.png\" id=\"img_id691600993420543\"><alt id=\"alt_id651600993420544\">Control points in a shape</alt></image>"
-msgstr ""
+msgid "<ahelp hid=\"cui/ui/slantcornertabpage/MTR_FLD_ANGLE\">Enter the angle of the slant axis.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/slantcornertabpage/MTR_FLD_ANGLE\">Zadajte uhol šikmej osi.</ahelp>"
#. m8GMy
#: 05230500.xhp
@@ -32020,6 +32020,15 @@ msgctxt ""
msgid "<variable id=\"spaltformtext\"><ahelp hid=\"HID_BROWSER_COLUMNFORMAT\" visibility=\"visible\">Formats the selected column(s).</ahelp></variable>"
msgstr ""
+#. MdMcn
+#: 05340405.xhp
+msgctxt ""
+"05340405.xhp\n"
+"hd_id3150620\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format\">Format</link>"
+msgstr "<link href=\"text/shared/01/01010202.xhp\" name=\"Formát\">Formát</link>"
+
#. B5CTG
#: 05340500.xhp
msgctxt ""
@@ -35348,7 +35357,7 @@ msgctxt ""
"par_id3150838\n"
"help.text"
msgid "<variable id=\"autoko\"><ahelp hid=\".uno:AutoCorrectDlg\">Sets the options for automatically replacing text as you type.</ahelp></variable>"
-msgstr "<variable id=\"autoko\"><ahelp hid=\".uno:AutoCorrectDlg\">Nastaví možnosti pre automatické nahrádzanie textu počas písania alebo pre hromadné použitie automatických opráv v existujúcom texte.</ahelp></variable>"
+msgstr "<variable id=\"autoko\"><ahelp hid=\".uno:AutoCorrectDlg\">Nastaví možnosti automatického nahradzovania textu pri zadávaní.</ahelp></variable>"
#. XRVHi
#: 06040000.xhp
@@ -38939,7 +38948,7 @@ msgctxt ""
"par_id3153114\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/passwd/confirmpassEntry\">Reenter the new password for the selected library.</ahelp>"
-msgstr "<ahelp hid=\"svx/ui/passwd/newpassEntry\">Zadajte nové heslo pre vybranú knižnicu.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/passwd/confirmmpassEntry\">Znova zadajte nové heslo pre vybranú knižnicu.</ahelp>"
#. BpWEq
#: 06130200.xhp
@@ -40901,7 +40910,7 @@ msgctxt ""
"par_id3152937\n"
"help.text"
msgid "<variable id=\"assignaction\"><ahelp hid=\".\">Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs.</ahelp></variable>"
-msgstr "<variable id=\"autoko\"><ahelp hid=\".uno:AutoCorrectDlg\">Nastaví možnosti pre automatické nahrádzanie textu počas písania alebo pre hromadné použitie automatických opráv v existujúcom texte.</ahelp></variable>"
+msgstr "<variable id=\"assignaction\"><ahelp hid=\".\">Priradí makrá programovým udalostiam. Priradené makro sa spustí automaticky zakaždým, keď dôjde k vybranej udalosti.</ahelp></variable>"
#. micMb
#: 06140500.xhp
@@ -43009,13 +43018,13 @@ msgctxt ""
msgid "<image src=\"media/helpimg/sw_signatureline01.png\" id=\"img_id91526436546031\" width=\"311px\" height=\"179px\"> <alt id=\"alt_id351526436546031\">Signature Line Box</alt> </image>"
msgstr ""
-#. YbTJd
+#. AgbBh
#: addsignatureline.xhp
msgctxt ""
"addsignatureline.xhp\n"
"par_id651526423393786\n"
"help.text"
-msgid "The signature line displays an horizontal line, a location mark, the name, title and email of signer."
+msgid "The signature line displays an horizontal line, a location mark, the name, title and e-mail of signer."
msgstr ""
#. auwte
@@ -43063,14 +43072,14 @@ msgctxt ""
msgid "Email"
msgstr ""
-#. jr5gQ
+#. EnpJD
#: addsignatureline.xhp
msgctxt ""
"addsignatureline.xhp\n"
"par_id111526467993387\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter the email of the signer. The email is not displayed in the signature line graphic box, but is used for the digital signature.</ahelp>"
-msgstr "<ahelp hid=\".\">Zadajte e-mail podpisujúceho. E-mail sa nezobrazuje v grafickom poli riadku podpisu, ale slúži na digitálny podpis.</ahelp>"
+msgid "<ahelp hid=\".\">Enter the e-mail of the signer. The email is not displayed in the signature line graphic box, and is be used for the digital signature.</ahelp>"
+msgstr ""
#. EpDAG
#: addsignatureline.xhp
@@ -43126,78 +43135,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Insert instructions for the signer. The instructions appears in the Sign Signature Line dialog box, at the time of signature.</ahelp>"
msgstr "<ahelp hid=\".\">Vložte pokyny pre podpisujúceho. Pokyny sa zobrazia v čase podpisovania v dialógovom okne Podpísať podpisový riadok.</ahelp>"
-#. LjM7Z
-#: certificatepath.xhp
-msgctxt ""
-"certificatepath.xhp\n"
-"tit\n"
-"help.text"
-msgid "Certificate Paths"
-msgstr ""
-
-#. FBox6
-#: certificatepath.xhp
-msgctxt ""
-"certificatepath.xhp\n"
-"bm_id211594767045571\n"
-"help.text"
-msgid "<bookmark_value>digital signatures;certificate path</bookmark_value> <bookmark_value>certificate path</bookmark_value>"
-msgstr ""
-
-#. MhnU5
-#: certificatepath.xhp
-msgctxt ""
-"certificatepath.xhp\n"
-"hd_id141594763815174\n"
-"help.text"
-msgid "<variable id=\"Certificateh1\"><link href=\"text/shared/01/certificatepath.xhp\" name=\"Certificate\">Certificate</link></variable>"
-msgstr ""
-
-#. BuRGD
-#: certificatepath.xhp
-msgctxt ""
-"certificatepath.xhp\n"
-"par_id841594763815175\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/certdialog/CertDialog\">Select or add the correct Network Security Services Certificate directory to use for digital signatures.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/certdialog/CertDialog\">Vyberte alebo pridajte správny adresár certifikátu služieb zabezpečenia siete, ktorý sa má použiť na digitálne podpisy.</ahelp>"
-
-#. vCwDA
-#: certificatepath.xhp
-msgctxt ""
-"certificatepath.xhp\n"
-"hd_id511594765946403\n"
-"help.text"
-msgid "Available Certificate Paths"
-msgstr ""
-
-#. NK4GB
-#: certificatepath.xhp
-msgctxt ""
-"certificatepath.xhp\n"
-"par_id981594766097073\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/certdialog/CertDialog/liststore1\">Shows the list of Network Security Services Certificate directory to use for digital signatures.</ahelp>"
-msgstr ""
-
-#. DABZF
-#: certificatepath.xhp
-msgctxt ""
-"certificatepath.xhp\n"
-"hd_id741594764591263\n"
-"help.text"
-msgid "Select NSS path"
-msgstr ""
-
-#. 8gaEP
-#: certificatepath.xhp
-msgctxt ""
-"certificatepath.xhp\n"
-"par_id851594766090600\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/certdialog/CertDialog/add\">Opens a file picker dialog to add a new Network Security Services Certificate directory to the list.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/certdialog/CertDialog/add\">Otvorí dialógové okno na výber súborov a do zoznamu pridá nový adresár certifikátov služieb zabezpečenia.</ahelp>"
-
#. ViF5g
#: digitalsignatures.xhp
msgctxt ""
@@ -44222,7 +44159,7 @@ msgctxt ""
"par_idN105CD\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the grid lines in front of the objects on the slide or page.</ahelp>"
-msgstr "<ahelp hid=\".\">Zobrazí záchytné čiary pred objektami, ktoré sa nachádzajú na stránke alebo snímku.</ahelp>"
+msgstr "<ahelp hid=\".\">Zobrazí čiary mriežky pred objektmi na snímke alebo stránke.</ahelp>"
#. akSDE
#: grid.xhp
@@ -44348,7 +44285,7 @@ msgctxt ""
"par_idN105CA\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the snap lines in front of the objects on the slide or page.</ahelp>"
-msgstr "<ahelp hid=\".\">Zobrazí záchytné čiary pred objektami, ktoré sa nachádzajú na stránke alebo snímku.</ahelp>"
+msgstr "<ahelp hid=\".\">Zobrazuje záchytné čiary pred objektmi na snímke alebo stránke.</ahelp>"
#. FELMB
#: image_compression.xhp
@@ -46265,7 +46202,7 @@ msgctxt ""
"par_id31323250502\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to show or hide the file sharing password options.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Po kliknutí prejdete na danú stránku sprievodcu.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Kliknutím zobrazíte alebo skryjete možnosti hesla pre zdieľanie súborov.</ahelp>"
#. 6wEKA
#: password_main.xhp
@@ -47293,13 +47230,13 @@ msgctxt ""
msgid "PDF Export Digital Signature"
msgstr ""
-#. 9FdeP
+#. yMdYf
#: ref_pdf_export_digital_signature.xhp
msgctxt ""
"ref_pdf_export_digital_signature.xhp\n"
"bm_id761574111929927\n"
"help.text"
-msgid "<bookmark_value>PDF export;digital signature</bookmark_value><bookmark_value>PDF export;sign PDF document</bookmark_value><bookmark_value>PDF export;time stamp</bookmark_value>"
+msgid "<bookmark_value>PDF export;digital signature</bookmark_value><bookmark_value>PDF export;sign PDF document</bookmark_value>"
msgstr ""
#. ChX9A
@@ -47482,6 +47419,24 @@ msgctxt ""
msgid "<ahelp hid=\".\">These three fields allow you to optionally enter additional information about the digital signature that will be applied to the PDF (Where, by whom and why it was made). It will be embedded in the appropriate PDF fields and will be visible to anyone viewing the PDF. Each or all of the three fields may be left blank.</ahelp>"
msgstr "<ahelp hid=\".\">Tieto tri polia vám umožňujú voliteľne zadať ďalšie informácie o digitálnom podpise, ktorý sa použije na súbor PDF (kde, kto a prečo bol vytvorený). Budú vložené do príslušných polí PDF a budú viditeľné pre všetkých, ktorí si prezerajú PDF. Ľubovolné alebo aj všetky z týchto troch polí môžu zostať prázdne.</ahelp>"
+#. dDtVb
+#: ref_pdf_export_digital_signature.xhp
+msgctxt ""
+"ref_pdf_export_digital_signature.xhp\n"
+"hd_id14661702\n"
+"help.text"
+msgid "Time Stamp Authority"
+msgstr ""
+
+#. MUvFG
+#: ref_pdf_export_digital_signature.xhp
+msgctxt ""
+"ref_pdf_export_digital_signature.xhp\n"
+"par_id17868892\n"
+"help.text"
+msgid "<ahelp hid=\".\">Allows you to optionally select a Time Stamping Authority (TSA) URL. </ahelp>"
+msgstr ""
+
#. Po9jA
#: ref_pdf_export_digital_signature.xhp
msgctxt ""
@@ -47491,6 +47446,15 @@ msgctxt ""
msgid "During the PDF signing process, the TSA will be used to obtain a digitally signed timestamp that is then embedded in the signature. This (RFC 3161) timestamp will allow anyone viewing the PDF to verify when the document was signed."
msgstr ""
+#. aTCsU
+#: ref_pdf_export_digital_signature.xhp
+msgctxt ""
+"ref_pdf_export_digital_signature.xhp\n"
+"par_id39089022\n"
+"help.text"
+msgid "The list of TSA URLs that can be selected is maintained under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph> </caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Security - TSAs</emph>."
+msgstr ""
+
#. Gnocd
#: ref_pdf_export_digital_signature.xhp
msgctxt ""
@@ -49120,31 +49084,31 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select to show bookmark levels down to the selected level when the reader opens the PDF file.</ahelp>"
msgstr "<ahelp hid=\".\">Vyberte, ak chcete, aby sa pri otvorení súboru PDF čítačkou zobrazili úrovne záložiek až po vybranú úroveň.</ahelp>"
-#. 5AeZF
+#. HUGki
#: ref_pdf_send_as.xhp
msgctxt ""
"ref_pdf_send_as.xhp\n"
"tit\n"
"help.text"
-msgid "Email as PDF"
+msgid "E-mail as PDF"
msgstr ""
-#. rAFEF
+#. GJcvX
#: ref_pdf_send_as.xhp
msgctxt ""
"ref_pdf_send_as.xhp\n"
"hd_id3146902\n"
"help.text"
-msgid "<variable id=\"ref_pdf_send_as\"><link href=\"text/shared/01/ref_pdf_send_as.xhp\" name=\"Email as PDF\">Email as PDF</link></variable>"
+msgid "<variable id=\"ref_pdf_send_as\"><link href=\"text/shared/01/ref_pdf_send_as.xhp\" name=\"E-mail as PDF\">E-mail as PDF</link></variable>"
msgstr ""
-#. 7Uvgd
+#. CB95G
#: ref_pdf_send_as.xhp
msgctxt ""
"ref_pdf_send_as.xhp\n"
"par_id3150756\n"
"help.text"
-msgid "<variable id=\"ref_pdf_send_as_text\"><ahelp hid=\".uno:SendMailDocAsPDF\">Shows the Export as PDF dialog, exports the current document to Portable Document Format (PDF), and then opens an email sending window with the PDF as an attachment.</ahelp></variable>"
+msgid "<variable id=\"ref_pdf_send_as_text\"><ahelp hid=\".uno:SendMailDocAsPDF\">Shows the Export as PDF dialog, exports the current document to Portable Document Format (PDF), and then opens an e-mail sending window with the PDF as an attachment.</ahelp></variable>"
msgstr ""
#. wTQMX
@@ -49363,13 +49327,13 @@ msgctxt ""
msgid "<bookmark_value>digital signature;signing existing PDF</bookmark_value>"
msgstr ""
-#. ohSz3
+#. zBtBC
#: signexistingpdf.xhp
msgctxt ""
"signexistingpdf.xhp\n"
"hd_id201526432498222\n"
"help.text"
-msgid "<variable id=\"signexistingpdf\"><link href=\"text/shared/01/signexistingpdf.xhp\" name=\"Sign Existing PDF Files\">Signing Existing PDF files</link></variable>"
+msgid "<variable id=\"signexisitingpdf\"><link href=\"text/shared/01/signexistingpdf.xhp\" name=\"Sign Existing PDF Files\">Signing Existing PDF files</link></variable>"
msgstr ""
#. RM32g
@@ -49552,114 +49516,6 @@ msgctxt ""
msgid "<image src=\"media/helpimg/sw_signatureline02.png\" id=\"img_id551526579319036\" width=\"280px\" height=\"173px\"><alt id=\"alt_id641526579319036\">Signed Signature Line</alt></image>"
msgstr ""
-#. qMNEB
-#: timestampauth.xhp
-msgctxt ""
-"timestampauth.xhp\n"
-"tit\n"
-"help.text"
-msgid "Time Stamp Authorities for Digital Signatures"
-msgstr ""
-
-#. HgFt5
-#: timestampauth.xhp
-msgctxt ""
-"timestampauth.xhp\n"
-"bm_id371597437796483\n"
-"help.text"
-msgid "<bookmark_value>time stamp;digital signature</bookmark_value> <bookmark_value>digital signature;time stamp</bookmark_value> <bookmark_value>time stamp authority</bookmark_value> <bookmark_value>TSA</bookmark_value> <bookmark_value>time stamp for PDF digital signature</bookmark_value>"
-msgstr ""
-
-#. QwKC7
-#: timestampauth.xhp
-msgctxt ""
-"timestampauth.xhp\n"
-"hd_id901597433114069\n"
-"help.text"
-msgid "<variable id=\"timestampauthorityh1\"><link href=\"text/shared/01/timestampauth.xhp\" name=\"tsa\">Time Stamp Authority</link></variable>"
-msgstr ""
-
-#. L47NV
-#: timestampauth.xhp
-msgctxt ""
-"timestampauth.xhp\n"
-"par_id961597433114070\n"
-"help.text"
-msgid "Time Stamp Authorities (TSA) issue digitally signed timestamps (RFC 3161) that are optionally used during signed PDF export."
-msgstr ""
-
-#. jcBGy
-#: timestampauth.xhp
-msgctxt ""
-"timestampauth.xhp\n"
-"par_id571597434502189\n"
-"help.text"
-msgid "Adding a trusted timestamp to an electronic signature provides a digital seal of data integrity and a trusted date and time of when the transaction took place. Recipients of documents with a trusted timestamp can verify when the document was digitally or electronically signed, as well as verify that the document was not altered after the date the timestamp vouches for."
-msgstr ""
-
-#. HP6fQ
-#: timestampauth.xhp
-msgctxt ""
-"timestampauth.xhp\n"
-"par_id721597436315261\n"
-"help.text"
-msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME - Security - TSAs</menuitem>"
-msgstr ""
-
-#. n27rF
-#: timestampauth.xhp
-msgctxt ""
-"timestampauth.xhp\n"
-"hd_id281597438357127\n"
-"help.text"
-msgid "List of Time Stamp Authorities"
-msgstr ""
-
-#. Msech
-#: timestampauth.xhp
-msgctxt ""
-"timestampauth.xhp\n"
-"par_id701597438367251\n"
-"help.text"
-msgid "Display the list of existing TSAs."
-msgstr ""
-
-#. 2TESq
-#: timestampauth.xhp
-msgctxt ""
-"timestampauth.xhp\n"
-"par_idN106871\n"
-"help.text"
-msgid "Add"
-msgstr ""
-
-#. vZdyd
-#: timestampauth.xhp
-msgctxt ""
-"timestampauth.xhp\n"
-"par_idN1068B1\n"
-"help.text"
-msgid "Opens the <link href=\"text/shared/02/namedialog.xhp\" name=\"name dialog\">Name dialog</link> to enter a new Time Stamping Authority URL."
-msgstr ""
-
-#. stnAc
-#: timestampauth.xhp
-msgctxt ""
-"timestampauth.xhp\n"
-"hd_id251597435168013\n"
-"help.text"
-msgid "Delete"
-msgstr ""
-
-#. PPq6D
-#: timestampauth.xhp
-msgctxt ""
-"timestampauth.xhp\n"
-"par_id381597435161810\n"
-"help.text"
-msgid "Deletes the selected entry in the list. Deletion is immediate and does not display a confirmation dialog."
-msgstr ""
-
#. m3D8J
#: webhtml.xhp
msgctxt ""
@@ -49802,7 +49658,7 @@ msgctxt ""
"par_id0130200901590878\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the name.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte formát súboru.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Zadajte meno.</ahelp>"
#. F7Ktz
#: xformsdata.xhp
diff --git a/source/sk/helpcontent2/source/text/shared/02.po b/source/sk/helpcontent2/source/text/shared/02.po
index fabb103543e..c7c87904b24 100644
--- a/source/sk/helpcontent2/source/text/shared/02.po
+++ b/source/sk/helpcontent2/source/text/shared/02.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-09-28 11:22+0200\n"
-"PO-Revision-Date: 2020-09-26 19:35+0000\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
+"PO-Revision-Date: 2020-10-16 15:35+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: Slovak <https://weblate.documentfoundation.org/projects/libo_help-master/textshared02/sk/>\n"
"Language: sk\n"
@@ -1967,7 +1967,7 @@ msgctxt ""
"par_id3145581\n"
"help.text"
msgid "<ahelp hid=\".uno:ConvertToCheckBox\" visibility=\"visible\">The selected control is transformed into a check box.</ahelp>"
-msgstr "<ahelp hid=\".uno:ConvertToCheckBox\" visibility=\"visible\">Vybraný ovládací prvok sa premení na zaškrtávacie políčko.</ahelp>"
+msgstr "<ahelp hid=\". uno: ConvertToCheckBox\" visibility=\"visible\">Vybraný ovládací prvok sa transformuje na zaškrtávacie políčko.</ahelp>"
#. qRJCE
#: 01170001.xhp
@@ -2003,7 +2003,7 @@ msgctxt ""
"par_id3150012\n"
"help.text"
msgid "<ahelp hid=\".uno:ConvertToCombo\" visibility=\"visible\">The selected control is transformed into a combo box.</ahelp>"
-msgstr "<ahelp hid=\".uno:ConvertToCheckBox\" visibility=\"visible\">Vybraný ovládací prvok sa premení na zaškrtávacie políčko.</ahelp>"
+msgstr "<ahelp hid=\". uno: ConvertToCombo\" visibility=\"visible\">Vybraný ovládací prvok sa transformuje na rozbaľovacie pole.</ahelp>"
#. XjBTZ
#: 01170001.xhp
@@ -8809,13 +8809,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">If you create a <link href=\"text/shared/02/01170203.xhp\" name=\"subform\">subform</link>, enter the data field of the parent form responsible for the synchronization between parent and subform.</ahelp> To enter multiple values, press Shift + Enter after each input line."
msgstr ""
-#. BB25h
+#. FRDC5
#: 01170203.xhp
msgctxt ""
"01170203.xhp\n"
"par_id3149568\n"
"help.text"
-msgid "The subform is based on an <link href=\"text/shared/00/00000005.xhp#sql\" name=\"SQL\">SQL</link> query; more specifically, on a <link href=\"text/sdatabase/02010100.xhp\" name=\"Parameter Query\">Parameter Query</link>. If a field name is entered in the <emph>Link master fields</emph> box, the data contained in that field in the main form is read to a variable that you must enter in <emph>Link slave fields</emph>. In an appropriate SQL statement, this variable is compared to the table data that the subform refers to. Alternatively, you can enter the column name in the <emph>Link master fields</emph> box."
+msgid "The subform is based on an <link href=\"text/shared/00/00000005.xhp#sql\" name=\"SQL\">SQL</link> query; more specifically, on a <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Parameter Query\">Parameter Query</link>. If a field name is entered in the <emph>Link master fields</emph> box, the data contained in that field in the main form is read to a variable that you must enter in <emph>Link slave fields</emph>. In an appropriate SQL statement, this variable is compared to the table data that the subform refers to. Alternatively, you can enter the column name in the <emph>Link master fields</emph> box."
msgstr ""
#. KAQ4c
@@ -10528,14 +10528,14 @@ msgctxt ""
msgid "Each $[officename] application has its own <emph>Styles</emph> window. Hence there are separate windows for <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05140000.xhp\" name=\"text documents\">text documents</link></caseinline><defaultinline>text documents</defaultinline></switchinline>, for <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/05100000.xhp\" name=\"spreadsheets\">spreadsheets</link></caseinline><defaultinline>spreadsheets</defaultinline></switchinline> and for <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/01/05100000.xhp\" name=\"presentations/drawing documents\">presentations/drawing documents</link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/01/05100000.xhp\" name=\"presentations/drawing documents\">presentations/drawing documents</link></caseinline><defaultinline>presentations/drawing documents</defaultinline></switchinline>."
msgstr ""
-#. VmzDY
+#. qTFgZ
#: 01230000.xhp
msgctxt ""
"01230000.xhp\n"
"par_id3143267\n"
"help.text"
-msgid "<image id=\"img_id3149999\" src=\"cmd/sc_designerdialog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149999\">Icon Styles</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3149999\" src=\"cmd/sc_designerdialog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149999\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149999\" src=\"cmd/sc_designerdialog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149999\">Ikonka</alt></image>"
#. Cwybn
#: 01230000.xhp
@@ -11122,59 +11122,32 @@ msgctxt ""
msgid "Highlight Color"
msgstr "Farba zvýraznenia"
-#. 5GRDP
+#. EjB2o
#: 02160000.xhp
msgctxt ""
"02160000.xhp\n"
"hd_id3109850\n"
"help.text"
-msgid "<link href=\"text/shared/02/02160000.xhp\" name=\"Highlight Color\">Highlighting</link>"
-msgstr ""
+msgid "<link href=\"text/shared/02/02160000.xhp\" name=\"Highlight Color\">Highlight Color</link>"
+msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Body\">Body</link>"
-#. TLSg8
+#. aDVdx
#: 02160000.xhp
msgctxt ""
"02160000.xhp\n"
"par_id3154927\n"
"help.text"
-msgid "<variable id=\"zeichenhintergrundtext\"><ahelp hid=\".uno:BackColor\">Applies the current highlight color to the background of a character style or text selection.</ahelp></variable>"
-msgstr ""
-
-#. E9d9L
-#: 02160000.xhp
-msgctxt ""
-"02160000.xhp\n"
-"par_id871592838003088\n"
-"help.text"
-msgid "If no text is selected, click the <emph>Highlight Color</emph> icon, select the text that you want to highlight, and then click the <emph>Highlight Color</emph> icon again. To change the highlight color, click the arrow next to the <emph>Highlight Color</emph> icon, and then click the color that you want."
-msgstr ""
-
-#. KrAa6
-#: 02160000.xhp
-msgctxt ""
-"02160000.xhp\n"
-"par_id3147330\n"
-"help.text"
-msgid "Choose <menuitem>Format - Character - Highlighting</menuitem> tab."
-msgstr ""
-
-#. 6YA7C
-#: 02160000.xhp
-msgctxt ""
-"02160000.xhp\n"
-"par_id61592838932801\n"
-"help.text"
-msgid "When editing a character style, choose <emph>Highlighting</emph> tab."
-msgstr ""
+msgid "<variable id=\"zeichenhintergrundtext\"><ahelp hid=\".uno:BackColor\">Applies the current highlight color to the background of a text selection. If no text is selected, click the <emph>Highlight Color</emph> icon, select the text that you want to highlight, and then click the <emph>Highlight Color</emph> icon again. To change the highlight color, click the arrow next to the <emph>Highlight Color</emph> icon, and then click the color that you want.</ahelp></variable>"
+msgstr "<variable id=\"zeichenhintergrundtext\"><ahelp hid=\".uno:BackColor\">Použije aktuálnu farbu zvýraznenia na pozadie označeného textu. Pokiaľ nie je označený text, kliknite na ikonu <emph> Zvýraznenie </emph>, označte text, ktorý chcete zvýrazniť, a potom znovu kliknite na ikonu <emph> Zvýraznenie </emph>. Ak chcete zmeniť farbu zvýraznenia, kliknite na šípku vedľa ikony <emph> Zvýraznenie </emph> a potom na požadovanú farbu.</ahelp></variable>"
-#. AkVGB
+#. jDQTx
#: 02160000.xhp
msgctxt ""
"02160000.xhp\n"
"par_id3152551\n"
"help.text"
-msgid "<image id=\"img_id3149177\" src=\"cmd/sc_backcolor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149177\">Icon Highlighting</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3149177\" src=\"cmd/sc_backcolor.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149177\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149177\" src=\"cmd/sc_backcolor.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149177\">Ikonka</alt></image>"
#. gZTBs
#: 02160000.xhp
@@ -11761,14 +11734,14 @@ msgctxt ""
msgid "The <emph>Arrow Style</emph> icon is only displayed when you create a drawing with the drawing functions. For more information, see the <link href=\"text/shared/01/05200300.xhp\" name=\"Line Styles\"><emph>Line Styles</emph></link> section of the Help."
msgstr ""
-#. MeQRj
+#. iZS9C
#: 05020000.xhp
msgctxt ""
"05020000.xhp\n"
"par_id3148548\n"
"help.text"
-msgid "<image id=\"img_id3145090\" src=\"cmd/sc_lineendstyle.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145090\">Icon Line Ends</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3145090\" src=\"cmd/sc_lineendstyle.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145090\">Icon</alt></image>"
+msgstr "<image id=\"img_id3145090\" src=\"cmd/sc_lineendstyle.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145090\">Ikonka</alt></image>"
#. RuXvo
#: 05020000.xhp
@@ -13030,13 +13003,13 @@ msgctxt ""
msgid "<link href=\"text/shared/02/09070200.xhp\" name=\"Mail\">Mail</link>"
msgstr ""
-#. BBHET
+#. RPDBm
#: 09070200.xhp
msgctxt ""
"09070200.xhp\n"
"par_id3153049\n"
"help.text"
-msgid "<ahelp hid=\".\">On the <emph>Mail</emph> page in the <link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink dialog\"><emph>Hyperlink</emph> dialog</link> you can edit hyperlinks for email addresses.</ahelp>"
+msgid "<ahelp hid=\".\">On the <emph>Mail</emph> page in the <link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink dialog\"><emph>Hyperlink</emph> dialog</link> you can edit hyperlinks for e-mail addresses.</ahelp>"
msgstr ""
#. mDsga
@@ -13057,13 +13030,13 @@ msgctxt ""
msgid "Recipient"
msgstr "Príjemca"
-#. DWmiF
+#. mCiGb
#: 09070200.xhp
msgctxt ""
"09070200.xhp\n"
"par_id3166460\n"
"help.text"
-msgid "<ahelp hid=\".\">Assigns the specified <emph>email address</emph> to the hyperlink.</ahelp> Clicking the new hyperlink in the document will open a new message document, addressed to the receiver specified in the <emph>Recipient</emph> field."
+msgid "<ahelp hid=\".\">Assigns the specified <emph>e-mail address</emph> to the hyperlink.</ahelp> Clicking the new hyperlink in the document will open a new message document, addressed to the receiver specified in the <emph>Recipient</emph> field."
msgstr ""
#. Hop8w
@@ -13075,13 +13048,13 @@ msgctxt ""
msgid "Data Sources"
msgstr "Zdroje dát"
-#. xhxGP
+#. qd5fY
#: 09070200.xhp
msgctxt ""
"09070200.xhp\n"
"par_id3149514\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/hyperlinkmailpage/adressbook\">Hides or shows the <emph>data source</emph> browser.</ahelp> Drag the receiver's <emph>Email</emph> data field from the data source browser into the <emph>Recipient</emph> text field."
+msgid "<ahelp hid=\"cui/ui/hyperlinkmailpage/adressbook\">Hides or shows the <emph>data source</emph> browser.</ahelp> Drag the receiver's <emph>E-mail</emph> data field from the data source browser into the <emph>Recipient</emph> text field."
msgstr ""
#. AMsuz
@@ -15370,13 +15343,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/fmsearchdialog/rbSearchForText\">Enter the search term in the box or select it from the list.</ahelp> The text under the cursor is already copied into the <emph>Text</emph> combo box. Note that while running a search in a form, tabs and line breaks cannot be processed."
msgstr "<ahelp hid=\"cui/ui/fmsearchdialog/rbSearchForText\">Zadajte hľadaný výraz do poľa alebo ho vyberte zo zoznamu.</ahelp> Text pod kurzorom je už skopírovaný do rozbaľovacieho poľa <emph>Text</emph>. Upozorňujeme, že počas vyhľadávania vo formulári nie je možné spracovávať tabulátory a zalomenia riadkov."
-#. 7YYGz
+#. 2U9yt
#: 12100200.xhp
msgctxt ""
"12100200.xhp\n"
"par_id3148539\n"
"help.text"
-msgid "Your search terms will be saved as long as the table or the form document is open. If you are running more than one search and you would like to repeat the search term, you can select a previously used search term from the combo box."
+msgid "Your search terms will be saved as long as the table or the formula document is open. If you are running more than one search and you would like to repeat the search term, you can select a previously used search term from the combo box."
msgstr ""
#. GkrL9
@@ -17026,13 +16999,13 @@ msgctxt ""
msgid "Run SQL command directly"
msgstr "Spustiť SQL príkaz priamo"
-#. 2GZmA
+#. KmBRr
#: 14030000.xhp
msgctxt ""
"14030000.xhp\n"
"par_id3155535\n"
"help.text"
-msgid "Click the icon again to return to normal mode, in which the changes in the <link href=\"text/sdatabase/02010100.xhp\" name=\"New Query Design\"><emph>New Query Design</emph></link> are synchronized with the permitted changes through SQL."
+msgid "Click the icon again to return to normal mode, in which the changes in the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"New Query Design\"><emph>New Query Design</emph></link> are synchronized with the permitted changes through SQL."
msgstr ""
#. tTG7m
@@ -17053,13 +17026,13 @@ msgctxt ""
msgid "<link href=\"text/shared/02/14040000.xhp\" name=\"Functions\">Functions</link>"
msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Body\">Body</link>"
-#. LfbjB
+#. JisGv
#: 14040000.xhp
msgctxt ""
"14040000.xhp\n"
"par_id3159224\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\".uno:DBViewFunctions\">Displays the <emph>Function</emph> row in the lower part of the design view of the <link href=\"text/sdatabase/02010100.xhp\" name=\"Query Design\"><emph>Query Design</emph></link> window.</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\".uno:DBViewFunctions\">Displays the <emph>Function</emph> row in the lower part of the design view of the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Design\"><emph>Query Design</emph></link> window.</ahelp>"
msgstr ""
#. iGFfH
@@ -17098,13 +17071,13 @@ msgctxt ""
msgid "<link href=\"text/shared/02/14050000.xhp\" name=\"Table Name\">Table Name</link>"
msgstr "<link href=\"text/shared/02/05090000.xhp\" name=\"Otočiť\">Otočiť</link>"
-#. vEiiV
+#. ZZDpV
#: 14050000.xhp
msgctxt ""
"14050000.xhp\n"
"par_id3154232\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the <emph>Table</emph> row in the lower part of the <link href=\"text/sdatabase/02010100.xhp\" name=\"Query Design\"><emph>Query Design</emph></link>.</ahelp>"
+msgid "<ahelp hid=\".\">Displays the <emph>Table</emph> row in the lower part of the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Design\"><emph>Query Design</emph></link>.</ahelp>"
msgstr ""
#. t48DA
@@ -17143,13 +17116,13 @@ msgctxt ""
msgid "<link href=\"text/shared/02/14060000.xhp\" name=\"Alias\">Alias</link>"
msgstr "<link href=\"text/shared/02/05090000.xhp\" name=\"Otočiť\">Otočiť</link>"
-#. tE9CF
+#. jd5Ew
#: 14060000.xhp
msgctxt ""
"14060000.xhp\n"
"par_id3148731\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\".uno:DBViewAliases\">Displays the <emph>Alias</emph> row in the lower part of the <link href=\"text/sdatabase/02010100.xhp\" name=\"Query Design\"><emph>Query Design</emph></link>.</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\".uno:DBViewAliases\">Displays the <emph>Alias</emph> row in the lower part of the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Design\"><emph>Query Design</emph></link>.</ahelp>"
msgstr ""
#. CcbaZ
@@ -17197,13 +17170,13 @@ msgctxt ""
msgid "<link href=\"text/shared/02/14070000.xhp\" name=\"Distinct Values\">Distinct Values</link>"
msgstr "<link href=\"text/shared/02/05090000.xhp\" name=\"Otočiť\">Otočiť</link>"
-#. MhStz
+#. dwMdA
#: 14070000.xhp
msgctxt ""
"14070000.xhp\n"
"par_id3154894\n"
"help.text"
-msgid "<ahelp hid=\".uno:DBDistinctValues\">Expands the created select statement of the <link href=\"text/sdatabase/02010100.xhp\" name=\"SQL Query\"><emph>SQL Query</emph></link> in the current column by the parameter <emph>DISTINCT</emph>.</ahelp> The consequence is that identical values occurring multiple times are listed only once."
+msgid "<ahelp hid=\".uno:DBDistinctValues\">Expands the created select statement of the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"SQL Query\"><emph>SQL Query</emph></link> in the current column by the parameter <emph>DISTINCT</emph>.</ahelp> The consequence is that identical values occurring multiple times are listed only once."
msgstr ""
#. EXAFG
@@ -18968,7 +18941,7 @@ msgctxt ""
"par_idN10567\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the Basic Shapes toolbar which you can use to insert graphics into your document.</ahelp>"
-msgstr "<ahelp hid=\".\">Otvorí lištu nástrojov Základné útvary, ktorú možno použiť na vkladanie útvarov do dokumentu.</ahelp>"
+msgstr "<ahelp hid=\".\">Otvára panel nástrojov Základné útvary, pomocou ktorého môžete vkladať do dokumentu grafiku.</ahelp>"
#. 7ALxL
#: basicshapes.xhp
@@ -19013,7 +18986,7 @@ msgctxt ""
"par_idN1056A\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the Block Arrows toolbar from which you can insert graphics into your document.</ahelp>"
-msgstr "<ahelp hid=\".\">Otvorí lištu nástrojov Základné útvary, ktorú možno použiť na vkladanie útvarov do dokumentu.</ahelp>"
+msgstr "<ahelp hid=\".\">Otvorí panel nástrojov Blokové šípky, z ktorého môžete do dokumentu vkladať grafiku.</ahelp>"
#. RUL8e
#: blockarrows.xhp
@@ -19067,7 +19040,7 @@ msgctxt ""
"par_idN1056A\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the Callouts toolbar from which you can insert graphics into your document.</ahelp>"
-msgstr "<ahelp hid=\".\">Otvorí lištu nástrojov Základné útvary, ktorú možno použiť na vkladanie útvarov do dokumentu.</ahelp>"
+msgstr "<ahelp hid=\".\">Otvorí panel s nástrojmi Bubliny, z ktorého môžete do dokumentu vkladať grafiku.</ahelp>"
#. 45o2F
#: callouts.xhp
@@ -19148,7 +19121,7 @@ msgctxt ""
"par_idN10567\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the Flowchart toolbar from which you can insert graphics into your document.</ahelp>"
-msgstr "<ahelp hid=\".\">Otvorí lištu nástrojov Základné útvary, ktorú možno použiť na vkladanie útvarov do dokumentu.</ahelp>"
+msgstr "<ahelp hid=\".\">Otvorí panel s nástrojmi Vývojový diagram, z ktorého môžete do dokumentu vkladať grafiku.</ahelp>"
#. 8YruY
#: flowcharts.xhp
@@ -19240,40 +19213,13 @@ msgctxt ""
msgid "Limit"
msgstr "Hranica"
-#. SWTG4
+#. bXFUp
#: limit.xhp
msgctxt ""
"limit.xhp\n"
"par_id3154894\n"
"help.text"
-msgid "<ahelp hid=\".\">Expands the created select statement of the <link href=\"text/sdatabase/02010100.xhp\" name=\"SQL Query\">SQL Query</link> by the LIMIT X clause</ahelp>. This can be used to limit your SQL Query results to those that fall within the first X number of it."
-msgstr ""
-
-#. bbAX7
-#: namedialog.xhp
-msgctxt ""
-"namedialog.xhp\n"
-"tit\n"
-"help.text"
-msgid "Enter Name"
-msgstr ""
-
-#. pymwL
-#: namedialog.xhp
-msgctxt ""
-"namedialog.xhp\n"
-"hd_id581597430248366\n"
-"help.text"
-msgid "<variable id=\"namedialogh1\"><link href=\"text/shared/02/namedialog.xhp\" name=\"Name\">Enter Name Dialog</link></variable>"
-msgstr ""
-
-#. edfxG
-#: namedialog.xhp
-msgctxt ""
-"namedialog.xhp\n"
-"par_id3153681\n"
-"help.text"
-msgid "Enter a name or any requested text on the label."
+msgid "<ahelp hid=\".\">Expands the created select statement of the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"SQL Query\">SQL Query</link> by the LIMIT X clause</ahelp>. This can be used to limit your SQL Query results to those that fall within the first X number of it."
msgstr ""
#. Ae3Qb
@@ -19454,7 +19400,7 @@ msgctxt ""
"par_idN1056A\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the Stars and Banners toolbar from which you can insert graphics into your document.</ahelp>"
-msgstr "<ahelp hid=\".\">Otvorí lištu nástrojov Základné útvary, ktorú možno použiť na vkladanie útvarov do dokumentu.</ahelp>"
+msgstr "<ahelp hid=\".\">Otvorí panel s nástrojmi Hviezdy a panely, z ktorého môžete do dokumentu vkladať grafiku.</ahelp>"
#. gZmy9
#: stars.xhp
@@ -19499,7 +19445,7 @@ msgctxt ""
"par_idN1056A\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the Symbol Shapes toolbar from which you can insert graphics into your document.</ahelp>"
-msgstr "<ahelp hid=\".\">Otvorí lištu nástrojov Základné útvary, ktorú možno použiť na vkladanie útvarov do dokumentu.</ahelp>"
+msgstr "<ahelp hid=\".\">Otvorí panel nástrojov Útvary symbolov, z ktorého môžete do dokumentu vkladať grafiku.</ahelp>"
#. 6ZxYp
#: symbolshapes.xhp
@@ -19518,12 +19464,3 @@ msgctxt ""
"help.text"
msgid "Some shapes have a special handle which you can drag to change the properties of the shape. The mouse pointer changes to a hand symbol over these special handles."
msgstr ""
-
-#. Ju4Wr
-#: symbolshapes.xhp
-msgctxt ""
-"symbolshapes.xhp\n"
-"par_id911600993420542\n"
-"help.text"
-msgid "<image src=\"media/helpimg/sdraw/control_points.png\" id=\"img_id691600993420543\"><alt id=\"alt_id651600993420544\">Control points in a shape</alt></image>"
-msgstr ""
diff --git a/source/sk/helpcontent2/source/text/shared/04.po b/source/sk/helpcontent2/source/text/shared/04.po
index a53b8682abb..974f7399f00 100644
--- a/source/sk/helpcontent2/source/text/shared/04.po
+++ b/source/sk/helpcontent2/source/text/shared/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-07-21 11:19+0200\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
"PO-Revision-Date: 2018-07-08 16:54+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1168,13 +1168,13 @@ msgctxt ""
msgid "The \"Underlined\" attribute is applied to the selected area. If the cursor is positioned in a word, this word is also underlined."
msgstr ""
-#. EVCzG
+#. E6c39
#: 01010000.xhp
msgctxt ""
"01010000.xhp\n"
"par_idN10BC0\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+M"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">⌃M</caseinline><defaultinline>Ctrl+M</defaultinline></switchinline>"
msgstr ""
#. xoBua
diff --git a/source/sk/helpcontent2/source/text/shared/05.po b/source/sk/helpcontent2/source/text/shared/05.po
index 9d8d532aff0..1fee5919536 100644
--- a/source/sk/helpcontent2/source/text/shared/05.po
+++ b/source/sk/helpcontent2/source/text/shared/05.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-09-28 11:22+0200\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
"PO-Revision-Date: 2018-10-21 20:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -124,13 +124,13 @@ msgctxt ""
msgid "Security"
msgstr "Bezpečnosť"
-#. 4QHHk
+#. GqtZB
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id0804200803314235\n"
"help.text"
-msgid "In case you are concerned about any security issue with using this software, you can contact the developers on the <link href=\"https://lists.freedesktop.org/mailman/listinfo/libreoffice\">public mailing list</link>. If you want to discuss any issue with other users, send an email to the public mailing list <literal>users@global.libreoffice.org</literal>."
+msgid "In case you are concerned about any security issue with using this software, you can contact the developers on the <link href=\"https://lists.freedesktop.org/mailman/listinfo/libreoffice\">public mailing list</link>. If you want to discuss any issue with other users, send an email to the public mailing list <literal>users@libreoffice.org</literal>."
msgstr ""
#. tEPqi
@@ -1258,67 +1258,49 @@ msgctxt ""
msgid "Help Page Not Found"
msgstr ""
-#. NedCe
+#. YCEdQ
#: err_html.xhp
msgctxt ""
"err_html.xhp\n"
"hd_id3146957\n"
"help.text"
-msgid "Could not find Help page (404)."
-msgstr ""
+msgid "Could not find Help page."
+msgstr "Nebolo možné nájsť stránku pomocníka."
-#. YF3vS
+#. JcRCV
#: err_html.xhp
msgctxt ""
"err_html.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "That is an error. Possible causes are:"
-msgstr ""
-
-#. afzNC
-#: err_html.xhp
-msgctxt ""
-"err_html.xhp\n"
-"par_id131592238966436\n"
-"help.text"
-msgid "The page does not exist and must be created."
-msgstr ""
-
-#. wBHiJ
-#: err_html.xhp
-msgctxt ""
-"err_html.xhp\n"
-"par_id201592238985883\n"
-"help.text"
-msgid "The page exists, but the Help ID is wrong or missing."
-msgstr ""
+msgid "Unfortunately the Help page you selected was not found. The following data could be helpful in locating the error:"
+msgstr "Bohužial, stránku Pomocníka, ktorú ste si zvolili, nebolo možné nájsť. Pri určení chyby vám môžu pomôcť nasledujúce informácie:"
-#. Bbuu2
+#. Eekrb
#: err_html.xhp
msgctxt ""
"err_html.xhp\n"
-"par_id761592239118086\n"
+"par_id3143268\n"
"help.text"
-msgid "Use the Module, Contents, Index and Search selectors to find the right page."
+msgid "Help ID: <emph><help-id-missing/></emph>"
msgstr ""
-#. aKd5h
+#. wgFpy
#: err_html.xhp
msgctxt ""
"err_html.xhp\n"
-"par_id971592240070356\n"
+"par_idN10681\n"
"help.text"
-msgid "The following data could be helpful in locating the error:"
+msgid "You can install missing Help modules using the <emph>Setup</emph> application."
msgstr ""
-#. Eekrb
+#. vYGeB
#: err_html.xhp
msgctxt ""
"err_html.xhp\n"
-"par_id3143268\n"
+"par_id3150541\n"
"help.text"
-msgid "Help ID: <emph><help-id-missing/></emph>"
+msgid "Click <image id=\"img_id3148946\" src=\"res/sc06301.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148946\">Icon</alt></image><emph>Back</emph> to return to the previous page."
msgstr ""
#. UsFJF
diff --git a/source/sk/helpcontent2/source/text/shared/06.po b/source/sk/helpcontent2/source/text/shared/06.po
index 7ecf14fe749..7e6496734c0 100644
--- a/source/sk/helpcontent2/source/text/shared/06.po
+++ b/source/sk/helpcontent2/source/text/shared/06.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-09-28 11:22+0200\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
"PO-Revision-Date: 2018-09-03 13:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -196,13 +196,13 @@ msgctxt ""
msgid "<image src=\"media/screenshots/cui/ui/optgeneralpage/OptGeneralPage.png\" id=\"img_id11572514566037\"><alt id=\"alt_id41572514566038\">Options General Dialog Image</alt></image>"
msgstr ""
-#. 3B3a3
+#. ofEA4
#: sc_screenshots.xhp
msgctxt ""
"sc_screenshots.xhp\n"
"tit\n"
"help.text"
-msgid "Calc Screenshots"
+msgid "page_title"
msgstr ""
#. QaaKZ
@@ -295,15 +295,6 @@ msgctxt ""
msgid "<image id=\"img_id090120160131201466\" src=\"media/screenshots/cui/ui/pageformatpage/PageFormatPage.png\"><alt id=\"alt_id090120160131201466\">Page format tab page</alt></image>"
msgstr ""
-#. ZKaCs
-#: shared_cui_screenshots.xhp
-msgctxt ""
-"shared_cui_screenshots.xhp\n"
-"par_id521601001943409\n"
-"help.text"
-msgid "<image src=\"media/screenshots/cui/ui/slantcornertabpage/SlantAndCornerRadius.png\" id=\"img_id91601001943410\"><alt id=\"alt_id101601001943411\">Slant and Corner Radius tab page</alt></image>"
-msgstr ""
-
#. agtWk
#: simpress_screenshots.xhp
msgctxt ""
diff --git a/source/sk/helpcontent2/source/text/shared/autopi.po b/source/sk/helpcontent2/source/text/shared/autopi.po
index 4830aa4cd97..de4fc7ec589 100644
--- a/source/sk/helpcontent2/source/text/shared/autopi.po
+++ b/source/sk/helpcontent2/source/text/shared/autopi.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-08-04 13:02+0200\n"
-"PO-Revision-Date: 2020-09-26 19:35+0000\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
+"PO-Revision-Date: 2020-10-16 15:35+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: Slovak <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedautopi/sk/>\n"
"Language: sk\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1524571094.000000\n"
#. hCAzG
@@ -1481,7 +1481,7 @@ msgctxt ""
"par_idN105F7\n"
"help.text"
msgid "<ahelp hid=\".\">Includes a salutation. Select the salutation from the list box.</ahelp>"
-msgstr "<ahelp hid=\".\">Vloží pozdrav. Vyberte pozdrav zo zoznamu.</ahelp>"
+msgstr "<ahelp hid=\".\">Pridať oslovenie. Oslovenie vyberte zo zoznamu.</ahelp>"
#. tDEDH
#: 01020200.xhp
@@ -1499,7 +1499,7 @@ msgctxt ""
"par_idN105FE\n"
"help.text"
msgid "<ahelp hid=\".\">Includes a greeting. Select the greeting from the list box.</ahelp>"
-msgstr "<ahelp hid=\".\">Vloží pozdrav. Vyberte pozdrav zo zoznamu.</ahelp>"
+msgstr "<ahelp hid=\".\">Pridať pozdrav. Pozdrav vyberte zo zoznamu.</ahelp>"
#. RP8EW
#: 01020200.xhp
@@ -1733,7 +1733,7 @@ msgctxt ""
"par_idN105E7\n"
"help.text"
msgid "<ahelp hid=\".\">Prints a page number in the footer area.</ahelp>"
-msgstr "<ahelp hid=\".\">Vytlačí čísla strán v päte.</ahelp>"
+msgstr "<ahelp hid=\".\">Vytlačí číslo stránky v oblasti päty.</ahelp>"
#. Gpxsb
#: 01020400.xhp
@@ -3713,7 +3713,7 @@ msgctxt ""
"par_idN10568\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies that the fields have no border.</ahelp>"
-msgstr "<ahelp hid=\".\">Určuje, že polia nemajú okraje.</ahelp>"
+msgstr "<ahelp hid=\".\">Určuje, že polia nemajú orámovanie.</ahelp>"
#. ogq9S
#: 01090500.xhp
@@ -5722,23 +5722,23 @@ msgctxt ""
msgid "<ahelp hid=\"modules/simpress/ui/publishingdialog/authorEntry\">Specifies the name of the publication's author.</ahelp>"
msgstr "<ahelp hid=\"modules/simpress/ui/publishingdialog/authorEntry\">Určuje meno autora publikácie.</ahelp>"
-#. DcYxq
+#. f8b7F
#: 01110400.xhp
msgctxt ""
"01110400.xhp\n"
"hd_id3147089\n"
"help.text"
-msgid "Email address"
-msgstr ""
+msgid "E-mail address"
+msgstr "E-mailová adresa"
-#. Bm9Gp
+#. xxDYV
#: 01110400.xhp
msgctxt ""
"01110400.xhp\n"
"par_id3166460\n"
"help.text"
-msgid "<ahelp hid=\"modules/simpress/ui/publishingdialog/emailEntry\">Specifies the email address.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/publishingdialog/emailEntry\">Určuje e-mailovú adresu.</ahelp>"
+msgid "<ahelp hid=\"modules/simpress/ui/publishingdialog/emailEntry\">Specifies the e-mail address.</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/publishingdialog/emailEntry\">Určuje adresu elektronickej pošty.</ahelp>"
#. VhjgN
#: 01110400.xhp
@@ -7574,7 +7574,7 @@ msgctxt ""
"par_id6709494\n"
"help.text"
msgid "<ahelp hid=\".\">Select this option if you already use an address book in Thunderbird or Icedove.</ahelp>"
-msgstr "<ahelp hid=\".\">Ak používate databázu kontaktov Groupwise, zvoľte túto možnosť.</ahelp>"
+msgstr "<ahelp hid=\".\">Túto možnosť vyberte, ak už používate adresár v Thunderbird alebo Icedove.</ahelp>"
#. MDJ87
#: 01170000.xhp
@@ -7664,7 +7664,7 @@ msgctxt ""
"par_id5294045\n"
"help.text"
msgid "<ahelp hid=\".\">Select this option if you already use an address book in Groupwise.</ahelp>"
-msgstr "<ahelp hid=\".\">Ak používate databázu kontaktov Groupwise, zvoľte túto možnosť.</ahelp>"
+msgstr "<ahelp hid=\".\">Túto možnosť vyberte, ak už používate adresár v Groupwise.</ahelp>"
#. HWNER
#: 01170000.xhp
diff --git a/source/sk/helpcontent2/source/text/shared/explorer/database.po b/source/sk/helpcontent2/source/text/shared/explorer/database.po
index 09923de7142..64604f5f70c 100644
--- a/source/sk/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/sk/helpcontent2/source/text/shared/explorer/database.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-09-28 11:22+0200\n"
-"PO-Revision-Date: 2020-09-05 08:35+0000\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
+"PO-Revision-Date: 2020-10-16 15:35+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: Slovak <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedexplorerdatabase/sk/>\n"
"Language: sk\n"
@@ -16,6 +16,2760 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542031583.000000\n"
+#. ugSgG
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Queries"
+msgstr ""
+
+#. nuBLG
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"bm_id3150445\n"
+"help.text"
+msgid "<bookmark_value>queries;overview (Base)</bookmark_value><bookmark_value>tables in databases; printing queries (Base)</bookmark_value><bookmark_value>printing; queries (Base)</bookmark_value><bookmark_value>queries; printing (Base)</bookmark_value>"
+msgstr "<bookmark_value>dotazy; prehľad (Base)</bookmark_value><bookmark_value>tabuľky v databázach; tlač dotazov (Base)</bookmark_value><bookmark_value>tlač; dotazy (Base)</bookmark_value><bookmark_value>dotazy; tlač (Base)</bookmark_value>"
+
+#. ABqD3
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"hd_id3150445\n"
+"help.text"
+msgid "<link href=\"text/shared/explorer/database/02000000.xhp\" name=\"Queries\">Queries</link>"
+msgstr "<link href=\"text/shared/explorer/database/02000000.xhp\" name=\"Dotazy\">Dotazy</link>"
+
+#. KaF9w
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"par_id3150499\n"
+"help.text"
+msgid "A \"query\" is a special view of a table. A query can display chosen records or chosen fields within records; it can also sort those records. A query can apply to one table or to multiple tables, if they are linked by common data fields."
+msgstr ""
+
+#. FG8C9
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"par_id3147399\n"
+"help.text"
+msgid "Use queries to find records from data tables based on certain criteria. All queries created for a database are listed under the <emph>Queries</emph> entry. Since this entry contains the database queries, it is also called the \"query container\"."
+msgstr "Pomocou dotazov nájdete záznamy podľa zadaných kritérií. Všetky dotazy vytvorené pre databázu sú vypísané v časti <emph>Dotazy</emph>. Nakoľko táto časť obsahuje databázové dotazy, nazýva sa aj \"priečinok dotazov\"."
+
+#. AuJW3
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"hd_id3153750\n"
+"help.text"
+msgid "Printing Queries"
+msgstr "Tlač dotazov"
+
+#. BVVMe
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"par_id3149183\n"
+"help.text"
+msgid "To print a query or table:"
+msgstr "Tlač dotazov alebo tabuliek"
+
+#. zDMbu
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"par_id3156426\n"
+"help.text"
+msgid "Open a text document (or a spreadsheet document if you prefer the specific printing functions of this type of document)."
+msgstr "Otvorte textový dokument (alebo zošit ak preferujete jeho špecifické funkcie pre tlač)."
+
+#. KFWTE
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"par_id3149827\n"
+"help.text"
+msgid "Open the database file and click the Table icon if you want to print a table, or click the Query icon if you want to print a query."
+msgstr "Otvorte databázový súbor a kliknite na ikonu Tabuľka, ak chcete vytlačiť tabuľku, alebo kliknite na ikonu Dotaz, ak chcete vytlačiť dotaz."
+
+#. 9ZPFm
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"par_id3149398\n"
+"help.text"
+msgid "Drag the name of the table or query into the open text document or spreadsheet. The dialog <link href=\"text/shared/02/12070000.xhp\" name=\"Insert Database Columns\">Insert Database Columns</link> opens."
+msgstr "Pretiahnite názov tabuľky alebo dotazu pomocou myši do otvoreného dokumentu. Zobrazí sa dialogové okno <link href=\"text/shared/02/12070000.xhp\" name=\"Vložiť stĺpce databázy\">Vložiť stĺpce databázy</link>."
+
+#. m5TnG
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"par_id3150443\n"
+"help.text"
+msgid "Decide which columns = data fields you want to include. You can also click the <emph>AutoFormat</emph> button and select a corresponding formatting type. Close the dialog."
+msgstr "Určite, ktoré stĺpce (dátové polia) chcete zahrnúť. Je taktiež možné kliknúť na tlačidlo <emph>Automatické formátovavie</emph> a vybrať odpovedajúce formátovanie. Zavrite dialógové okno."
+
+#. AAQ4y
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"par_id3153561\n"
+"help.text"
+msgid "The query or table will be inserted into your document."
+msgstr "Dotaz alebo tabuľka budú vložené do vášho dokumentu."
+
+#. XDLzM
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"par_id3150503\n"
+"help.text"
+msgid "Print the document by choosing <emph>File - Print</emph>."
+msgstr "Dokument vytlačíte pomocou <emph>Súbor - Tlačiť</emph>."
+
+#. Kh9NG
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"par_id3153146\n"
+"help.text"
+msgid "You can also open the data source view (Ctrl+Shift+F4), select the entire database table in the data source view (click on the top left corner of the table), and then drag the selection to a text document or spreadsheet."
+msgstr ""
+
+#. PJjKX
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"hd_id3148946\n"
+"help.text"
+msgid "<link href=\"text/shared/main0212.xhp\" name=\"Sorting and Filtering Data\">Sorting and Filtering Data</link>"
+msgstr "<link href=\"text/shared/main0212.xhp\" name=\"Zaraďovanie a filtrovnie dát\">Zaraďovanie a filtrovnie dát</link>"
+
+#. ERCGr
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"par_id3149655\n"
+"help.text"
+msgid "Allows you to sort and filter the data in a query table."
+msgstr "Umožňuje vám zoradiť a filtrovať dáta v dotaze."
+
+#. EUECa
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"hd_id3153379\n"
+"help.text"
+msgid "<link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Design\">Query Design</link>"
+msgstr ""
+
+#. 3JCfK
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"par_id3151211\n"
+"help.text"
+msgid "With the <emph>Query Design</emph>, you can create and edit a query or view."
+msgstr "Pomocou <emph>Návrhu dotazu</emph> je možné vytvoriť alebo upraviť dotaz alebo pohľad."
+
+#. 343AB
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"hd_id3153968\n"
+"help.text"
+msgid "<link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Through Several Tables\">Query Through Several Tables</link>"
+msgstr "<link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Dotaz cez viac tabuliek\">Dotaz cez viac tabuliek</link>"
+
+#. ASeVi
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"par_id3151043\n"
+"help.text"
+msgid "The query result can contain data from several tables if these are linked to each other by suitable data fields."
+msgstr "Výsledok dotazu môže obsahovať dáta z viacerých tabuliek, ktoré sú prepojené medzi sebou pomocou vhodných polí."
+
+#. xGFWG
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"hd_id3159149\n"
+"help.text"
+msgid "<link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Formulating Query Criteria\">Formulating Query Criteria</link>"
+msgstr "<link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Zadanie kritérií dotazu\">Zadanie kritérií dotazu</link>"
+
+#. JTXBF
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"par_id3154910\n"
+"help.text"
+msgid "You can find out which operators and commands can be used to formulate the filter conditions for a query."
+msgstr "Možete zistiť, ktoré operátory a príkazy môžu byť použité na formulovanie podmienok filtrovania dotazu."
+
+#. haGR4
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"hd_id3156212\n"
+"help.text"
+msgid "<link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Executing Functions\">Executing Functions</link>"
+msgstr "<link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Spustenie funkcií\">Spustenie funkcií</link>"
+
+#. FWCVa
+#: 02000000.xhp
+msgctxt ""
+"02000000.xhp\n"
+"par_id3144762\n"
+"help.text"
+msgid "You can perform calculations with the data of a table and store the results as a query result."
+msgstr "S dátami tabuľky môžete vykonávať výpočty a výsledky zobraziť vo výsledku dotazu."
+
+#. BncmA
+#: 02000002.xhp
+msgctxt ""
+"02000002.xhp\n"
+"tit\n"
+"help.text"
+msgid "Missing Element"
+msgstr "Chýba prvok"
+
+#. noWgR
+#: 02000002.xhp
+msgctxt ""
+"02000002.xhp\n"
+"bm_id3150445\n"
+"help.text"
+msgid "<bookmark_value>queries; missing elements (Base)</bookmark_value>"
+msgstr "<bookmark_value>dotazy; chýbajúce prvky (Base)</bookmark_value>"
+
+#. EoEQz
+#: 02000002.xhp
+msgctxt ""
+"02000002.xhp\n"
+"hd_id3150445\n"
+"help.text"
+msgid "Missing Element"
+msgstr "Chýba prvok"
+
+#. X2NF9
+#: 02000002.xhp
+msgctxt ""
+"02000002.xhp\n"
+"par_id3150247\n"
+"help.text"
+msgid "If a query in which tables or fields no longer exist is opened, the<emph> Missing Element </emph>dialog appears. This dialog names the missing table or the field which cannot be interpreted and allows you to decide how to continue with the procedure."
+msgstr "Ak otvoríte dotaz, ktorého tabuľky alebo polia už neexistujú, zobrazí sa dialóg <emph>Chýba prvok</emph>. V tomto dialógu sú vypísané chybajúce tabuľky alebo polia, ktoré nie je možné interpretovať a umožňuje vybrať ako pokračovať."
+
+#. fBc3m
+#: 02000002.xhp
+msgctxt ""
+"02000002.xhp\n"
+"hd_id3145072\n"
+"help.text"
+msgid "How to continue?"
+msgstr "Ako pokračovať?"
+
+#. wV7Bh
+#: 02000002.xhp
+msgctxt ""
+"02000002.xhp\n"
+"par_id3149177\n"
+"help.text"
+msgid "There are three options available for answering this question:"
+msgstr "Na túto otázku existujú tri odpovede:"
+
+#. nwD7D
+#: 02000002.xhp
+msgctxt ""
+"02000002.xhp\n"
+"hd_id3147576\n"
+"help.text"
+msgid "Do you really want to open the query in the graphic view?"
+msgstr "Určite chcete otvoriť dotaz v grafickom zobrazení?"
+
+#. hLDZm
+#: 02000002.xhp
+msgctxt ""
+"02000002.xhp\n"
+"par_id3166461\n"
+"help.text"
+msgid "<ahelp hid=\".\">Allows you to open the query in the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Design View\">Design View</link> in spite of missing elements.</ahelp> This option also allows you to specify if other errors need to be ignored."
+msgstr "<ahelp hid=\".\">Otvoriť dotaz v <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"režime návrhu\">režime návrhu</link> je možné, aj keď chýbajú niektoré prvky.</ahelp> Taktiež je možné určiť, či sa majú ignorovať dalšie chyby."
+
+#. DX2vA
+#: 02000002.xhp
+msgctxt ""
+"02000002.xhp\n"
+"par_id3153031\n"
+"help.text"
+msgid "The query is opened in the Design View (the graphical interface). Missing tables appear blank and invalid fields appear with their (invalid) names in the list of fields. This lets you work with exactly those fields that caused the error."
+msgstr "Dotaz je otvorený v návrhovom pohľade (grafický pohľad). Chýbajúce tabuľky sú prázdne a neplatné polia sa objavia s ich (neplatnými názvami) v zozname polí. To umožňuje pracovať presne s tými poľami, ktoré spôsobili chybu."
+
+#. 477G3
+#: 02000002.xhp
+msgctxt ""
+"02000002.xhp\n"
+"hd_id3149578\n"
+"help.text"
+msgid "Open the query in the SQL View"
+msgstr "Otvoriť dotaz v zobrazení SQL."
+
+#. FRNyg
+#: 02000002.xhp
+msgctxt ""
+"02000002.xhp\n"
+"par_id3159157\n"
+"help.text"
+msgid "<ahelp hid=\".\">Allows you to open the query design in the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"SQL Mode\">SQL Mode</link> and to interpret the query as a <link href=\"text/shared/02/14030000.xhp\" name=\"Native SQL\">Native SQL</link>.</ahelp> You can only quit the native SQL mode when the $[officename] statement is completely interpreted (only possible if the used tables or fields in the query really exist)."
+msgstr "<ahelp hid=\".\">Otvoriť dotaz je možné v <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"režime SQL\">režime SQL</link> a interpretovať ho ako <link href=\"text/shared/02/14030000.xhp\" name=\"natívne SQL\">natívne SQL</link>.</ahelp> Režim SQL je možné ukončiť len vtedy, ak je príkaz $[officename] kompletne interpretovaný (to je možné, ak tabuľky alebo polia použité v dotaze skutečne existujú)."
+
+#. 2N4uG
+#: 02000002.xhp
+msgctxt ""
+"02000002.xhp\n"
+"hd_id3150984\n"
+"help.text"
+msgid "Do not open the query"
+msgstr "Neotvárať dotaz"
+
+#. 9hCbd
+#: 02000002.xhp
+msgctxt ""
+"02000002.xhp\n"
+"par_id3156329\n"
+"help.text"
+msgid "<ahelp hid=\".\">Allows you to cancel the procedure and specify that the query should not be opened.</ahelp> This option corresponds to the function of the <emph>Cancel</emph> dialog button."
+msgstr "<ahelp hid=\".\">Procedúru je možné zrušit a určit, že se dotaz nemá otvárať.</ahelp> Táto možnost zodpovedá funkcii tlačidla <emph>Zrušiť</emph>."
+
+#. 4QDUr
+#: 02000002.xhp
+msgctxt ""
+"02000002.xhp\n"
+"hd_id3148492\n"
+"help.text"
+msgid "Also ignore similar errors"
+msgstr "Ignorovať aj podobné chyby"
+
+#. tv3MZ
+#: 02000002.xhp
+msgctxt ""
+"02000002.xhp\n"
+"par_id3154285\n"
+"help.text"
+msgid "<ahelp hid=\".\">If you selected the first option, but you still want to open the query in the graphics view in spite of missing elements, you can specify whether other errors are ignored.</ahelp> Therefore, in the current opening process, no error message will be displayed if the query can not be correctly interpreted."
+msgstr "<ahelp hid=\".\">Ak vyberiete prvú možnosť, ale chcete otvoriť dotaz v grafickom režime napriek chýbajúcim prvkom, je možné určiť, že sa majú ignorovať aj iné chyby.</ahelp> Tak sa pri otváraní súčasného dotazu nezobrazia žiadne dalšie chyby ak dotaz nemožno správne interpretovať"
+
+#. E3MVS
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Query Design"
+msgstr "Návrh dotazu"
+
+#. Ys2sC
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"bm_id3153323\n"
+"help.text"
+msgid "<bookmark_value>views; creating database views (Base)</bookmark_value> <bookmark_value>queries; creating in design view (Base)</bookmark_value> <bookmark_value>designing; queries (Base)</bookmark_value> <bookmark_value>design view; queries/views (Base)</bookmark_value> <bookmark_value>joining;tables (Base)</bookmark_value> <bookmark_value>tables in databases; joining for queries (Base)</bookmark_value> <bookmark_value>queries; joining tables (Base)</bookmark_value> <bookmark_value>tables in databases; relations (Base)</bookmark_value> <bookmark_value>relations; joining tables (Base)</bookmark_value> <bookmark_value>queries; deleting table links (Base)</bookmark_value> <bookmark_value>criteria of query design (Base)</bookmark_value> <bookmark_value>queries; formulating filter conditions (Base)</bookmark_value> <bookmark_value>filter conditions;in queries (Base)</bookmark_value> <bookmark_value>parameters; queries (Base)</bookmark_value> <bookmark_value>queries; parameter queries (Base)</bookmark_value> <bookmark_value>SQL; queries (Base)</bookmark_value> <bookmark_value>native SQL (Base)</bookmark_value>"
+msgstr "<bookmark_value>pohľady; vytváranie databázových pohľadov</bookmark_value><bookmark_value>dotazy; vytváranie v režime návrhu</bookmark_value><bookmark_value>navrhovanie; dotazy</bookmark_value><bookmark_value>režim návrhu; dotazy/pohľady</bookmark_value><bookmark_value>spojenie; tabuľky</bookmark_value><bookmark_value>tabuľky v databázach; spojenie v dotazoch</bookmark_value><bookmark_value>dotazy; spojenie tabuliek</bookmark_value><bookmark_value>tabuľky v databázach; relácie</bookmark_value><bookmark_value>relácie; spojenie tabuliek</bookmark_value><bookmark_value>dotazy; odstránenie odkazu na tabuľku</bookmark_value><bookmark_value>kritériá dotazu</bookmark_value><bookmark_value>dotazy; určenie podmienok filtra</bookmark_value><bookmark_value>podmienky filtra v dotazoch</bookmark_value><bookmark_value>parametre; dotazy</bookmark_value><bookmark_value>dotazy; parametrické dotazy</bookmark_value><bookmark_value>SQL; dotazy</bookmark_value><bookmark_value>natívne SQL</bookmark_value><bookmark_value>operátory;v Base (SQL)</bookmark_value>"
+
+#. T4W7n
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3153394\n"
+"help.text"
+msgid "<link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Design\">Query Design</link>"
+msgstr "<link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Návrh dotazu\">Návrh dotazu</link>"
+
+#. GU8Jd
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3156411\n"
+"help.text"
+msgid "<ahelp hid=\".\">The <emph>Query Design View </emph>allows you to create and edit a database query.</ahelp>"
+msgstr "<ahelp hid=\".\"><emph>Režim návrhu</emph> vám umožňuje vytvoriť a upraviť databázový dotaz.</ahelp>"
+
+#. vGBE5
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id7024140\n"
+"help.text"
+msgid "Most databases use queries to filter or to sort database tables to display records on your computer. Views offer the same functionality as queries, but on the server side. If your database is on a server that supports views, you can use views to filter the records on the server to speed up the display time."
+msgstr ""
+
+#. WZcUE
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3159176\n"
+"help.text"
+msgid "Selecting the <emph>Create View</emph> command from the <emph>Tables</emph> tab page of a database document, you see the <emph>View Design</emph> window that resembles the <emph>Query Design</emph> window described here."
+msgstr "Zvoľte príkaz <emph>Vytvoriť pohľad</emph> v záložke <emph>Tabuľky</emph> v databázovom dokumente a zobrazí sa okno <emph>Návrh pohľadu</emph>, ktoré je podobné tu popísanému oknu <emph>Návrh dotazu</emph>."
+
+#. JMyC7
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id8307138\n"
+"help.text"
+msgid "The Query Design window layout is stored with a created query, but cannot be stored with a created view."
+msgstr "Rozloženie okna Návrh dotazu sa ukládá s vytvoreným dotazom, ale nie je možné ho uložiť s vytváraným pohľadom."
+
+#. TEBj6
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3149233\n"
+"help.text"
+msgid "The Design View"
+msgstr "Pohľad na návrh"
+
+#. zkTQc
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3145673\n"
+"help.text"
+msgid "To create a query, click the <emph>Queries</emph> icon in a database document, then click <emph>Create Query in Design View</emph>."
+msgstr "Pre vytvorene dotazu kliknite na ikonu <emph>Dotazy</emph> v databázovom dokumente a potom kliknite na <emph>Vytvoriť dotaz v režime pohľad na návrh</emph>."
+
+#. MAraF
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150255\n"
+"help.text"
+msgid "The lower pane of the Design View is where you <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"define\">define</link> the query. To define a query, specify the database <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"field names\">field names</link> to include and the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"criteria\">criteria</link> for displaying the fields. To rearrange the columns in the lower pane of the Design View, drag a column header to a new location, or select the column and press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+arrow key."
+msgstr ""
+
+#. GMVkG
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3152474\n"
+"help.text"
+msgid "In the top of the query Design View window, the <link href=\"text/shared/main0214.xhp\" name=\"icons\">icons</link> of the <emph>Query Design</emph> Bar and the <emph>Design</emph> bar are displayed."
+msgstr "V hornej časti pohľadu na návrh sú zobrazené <link href=\"text/shared/main0214.xhp\" name=\"ikony\">ikony</link> panela <emph>Návrh dotazu</emph> a panela <emph>Návrh</emph>."
+
+#. hYsxY
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3147559\n"
+"help.text"
+msgid "If you want to test a query, double-click the query name in the database document. The query result is displayed in a table similar to the Data Source View. Note: the table displayed is only temporary."
+msgstr "Ak chcete dotaz overiť, poklopte na názov dotazu v databázovom dokumente. Výsledok dotazu sa zobrazí v tabuľke podobnej Zobrazeniu zdroja dát. Poznámka: zobrazená tabuľka je iba dočasná."
+
+#. B4HEH
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id8226264\n"
+"help.text"
+msgid "Keys in Query Design View"
+msgstr "Klávesy v režime návrhu"
+
+#. Cvd4o
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id2341074\n"
+"help.text"
+msgid "Key"
+msgstr "Kľúč"
+
+#. mCy9S
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id4384289\n"
+"help.text"
+msgid "Function"
+msgstr "Funkcia"
+
+#. yybiC
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id5839106\n"
+"help.text"
+msgid "F4"
+msgstr "F4"
+
+#. FMTZD
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id8554338\n"
+"help.text"
+msgid "Preview"
+msgstr ""
+
+#. YQhGF
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id1254921\n"
+"help.text"
+msgid "F5"
+msgstr "F5"
+
+#. C9yhE
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id7636646\n"
+"help.text"
+msgid "Run Query"
+msgstr "Spustiť dotaz"
+
+#. jdEeJ
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id8579363\n"
+"help.text"
+msgid "F7"
+msgstr "F6"
+
+#. 6Y6Uw
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3227942\n"
+"help.text"
+msgid "Add Table or Query"
+msgstr "Pridať tabuľku alebo dotaz"
+
+#. WN7wR
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3154939\n"
+"help.text"
+msgid "Browse"
+msgstr ""
+
+#. 5y4VZ
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3148799\n"
+"help.text"
+msgid "When you open the query design for the first time, you see a dialog in which you must first select the table or query that will be the basis for your new query."
+msgstr ""
+
+#. FBQA9
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3144762\n"
+"help.text"
+msgid "<ahelp hid=\"HID_CTL_QRYDGNTAB\">Double-click fields to add them to the query. Drag-and-drop to define relations.</ahelp>"
+msgstr "<ahelp hid=\"HID_CTL_QRYDGNTAB\">Dvojitým kliknutím na pole ho pridáte do dotazu. Pretiahnutím určíte relácie.</ahelp>"
+
+#. eG8FD
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3157894\n"
+"help.text"
+msgid "While designing a query, you cannot modify the selected tables."
+msgstr "Počas vytvárania dotazu nemôžete vybrané tabuľka meniť."
+
+#. NLywF
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3149562\n"
+"help.text"
+msgid "Remove tables"
+msgstr "Odstrániť tabuľky"
+
+#. TbQzA
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150685\n"
+"help.text"
+msgid "To remove the table from Design View, click the upper border of the table window and display the context menu. You can use the <emph>Delete</emph> command to remove the table from the Design View. Another option is to press the Delete key."
+msgstr "Pre odstránenie tabuľky z pohľadu na návrh, kliknite na horný okraj tabuľky a zobraztekontextové menu. Kliknite na <emph>Odstrániť</emph> alebo stlačte klávesu Delete ak chcete odstrániť tabuľku z pohľadu na návrh."
+
+#. VLTKB
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3150012\n"
+"help.text"
+msgid "Move table and modify table size"
+msgstr "Presunutie tabuľky a zmena jej veľkosti"
+
+#. amBsQ
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3146922\n"
+"help.text"
+msgid "You can resize and arrange the tables according to your preferences. To move tables, drag the upper border to the desired position. Enlarge or reduce the size in which the table is displayed by positioning the mouse cursor on a border or on a corner and dragging the table until it is the desired size."
+msgstr "Tabuľky môžete usporiadať podľa svojich potrieb a zmeniť ich veľkosť. Ak chcete tabuľku posunúť, pretiahnite jej horný okraj na požadovanú pozíciu. Okno tabuľky zväčšíte alebo zmenšíte tak, že umiestnite kurzor myši na jeho okraj alebo roh a ťahaním myšou ho upravíte na požadovanú veľkosť."
+
+#. UoCRG
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3145365\n"
+"help.text"
+msgid "Table Relations"
+msgstr "Vzťahy medzi tabuľkami"
+
+#. BFCxB
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154145\n"
+"help.text"
+msgid "If there are data relations between a field name in one table and a field name in another table, you can use these relations for your query."
+msgstr "Ak medzi názvom poľa v jednej tabuľke a názvom poľa v druhej tabuľke existujú dátové vzťahy, môžete ich v dotaze použiť."
+
+#. jcLbE
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3152577\n"
+"help.text"
+msgid "If, for example, you have a spreadsheet for articles identified by an article number, and a spreadsheet for customers in which you record all articles that a customer orders using the corresponding article numbers, then there is a relationship between the two \"article number\" data fields. If you now want to create a query that returns all articles that a customer has ordered, you must retrieve data from two spreadsheets. To do this, you must inform $[officename] about the relationship which exists between the data in the two spreadsheets."
+msgstr ""
+
+#. FspJi
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3155302\n"
+"help.text"
+msgid "To do this, click a field name in a table (for example, the field name \"Item-Number\" from the Customer table), hold down the mouse button and then drag the field name to the field name of the other table (\"Item-Number\" from the Item table). When you release the mouse button, a line connecting the two fields between the two table windows appears. The corresponding condition that the content of the two field names must be identical is entered in the resulting SQL query."
+msgstr ""
+
+#. FmAaU
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3153876\n"
+"help.text"
+msgid "The creation of a query that is based on several related sheets is only possible if you use $[officename] as the interface for a relational database."
+msgstr "Vytvorenie dotazu, ktorý je založený na niekoľkých zošitoch, je možné len ak používate $[officename] ako rozhranie k relačnej databáze."
+
+#. N2f8q
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3145646\n"
+"help.text"
+msgid "You cannot access tables from different databases in a query. Queries involving multiple tables can only be created within one database."
+msgstr "V dotaze nemôžete pristupovať k tabuľkám z iných databáz. Dotazy nad niekoľkými tabuľkami je možné vytvoriť len v jednej databáze."
+
+#. nLSiq
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3153279\n"
+"help.text"
+msgid "Specifying the relation type"
+msgstr ""
+
+#. kDhFD
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154791\n"
+"help.text"
+msgid "If you double-click on the line connecting two linked fields or call the menu command <emph>Insert - New Relation</emph>, you can specify the type of relation in the <link href=\"text/shared/explorer/database/02010101.xhp\" name=\"Relations\"><emph>Relations</emph></link> dialog."
+msgstr ""
+
+#. rAkmw
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150094\n"
+"help.text"
+msgid "<ahelp hid=\"HID_QUERY_EDIT_JOINCONNECTION\" visibility=\"hidden\">Edit Join Properties.</ahelp> Alternatively, press Tab until the line is selected, then press Shift+F10 to display the context menu and there choose the command <emph>Edit</emph>. Some databases support only a subset of the possible join types."
+msgstr "<ahelp hid=\"HID_QUERY_EDIT_JOINCONNECTION\" visibility=\"hidden\">Upraviť vlastnosti relácie.</ahelp> Prípadne je možné pomocou klávesy Tab vybrať reláciu, potom stlačiť Shift+F10 pre zobrazenie kontextového menu a zvoliť príkaz <emph>Upraviť</emph>. Niektoré databázy podporujú len niektoré druhy relácií."
+
+#. n3PMB
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3155851\n"
+"help.text"
+msgid "Deleting relations"
+msgstr "Odstránenie relácií"
+
+#. jCb4H
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3156178\n"
+"help.text"
+msgid "To delete a relation between two tables, click the connection line and then press the Delete key."
+msgstr "Pre odstránenie relácie medzi dvoma tabuľkami kliknite na spojnicu a potom ststačte kláves Delete."
+
+#. 3UCig
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150715\n"
+"help.text"
+msgid "Alternatively, delete the respective entries in <emph>Fields involved </emph>in the <emph>Relations</emph> dialog. Or press Tab until the connecting vector is displayed highlighted, then press Shift+F10 to open the context menu and select <emph>Delete </emph>command."
+msgstr "Je taktiež možné odstrániť zodpovedajúce záznamy v poli <emph>Použité polia</emph> v dialógu <emph>Relácie</emph>. Prípadne je možné pomocou klávesy Tab vybrať reláciu (zobrazí sa zväčšene), potom stlačiť Shift+F10 na zobrazenie kontextovej ponuky a zvoliť príkaz <emph>Odstrániť</emph>."
+
+#. pBybB
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3151208\n"
+"help.text"
+msgid "Defining the query"
+msgstr ""
+
+#. yGfhU
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3158416\n"
+"help.text"
+msgid "<ahelp hid=\"HID_CTL_QRYDGNCRIT\">Select conditions to define the query.</ahelp> Each column of the design table accepts a data field for the query. The conditions in one row are linked with a Boolean AND."
+msgstr "<ahelp hid=\"HID_CTL_QRYDGNCRIT\">Vyberte podmienky na definíciu dotazu.</ahelp> Každý stĺpec predstavuje jedno dátové pole. Podmienky v jednom riadku sa spoja booleovským AND."
+
+#. UB5nG
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3154161\n"
+"help.text"
+msgid "Specifying field names"
+msgstr ""
+
+#. jyKMG
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3146791\n"
+"help.text"
+msgid "First, select all field names from the tables that you want to add to the query. You can do this either by drag-and-drop or by double-clicking a field name in the table window. With the drag-and-drop method, use the mouse to drag a field name from the table window into the lower area of the query design window. As you do this, you can decide which column in the query design window will receive the selected field. A field name can also be selected by double-clicking. It will then be added to the next free column in the query design window."
+msgstr ""
+
+#. 66Dcr
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3150750\n"
+"help.text"
+msgid "Deleting field names"
+msgstr "Odstránenie názvov polí"
+
+#. AbhrW
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154479\n"
+"help.text"
+msgid "To remove a field name from the query, click the column header of the field and choose the <emph>Delete</emph> command on the context menu for the column."
+msgstr "Ak chcete odstrániť názov poľa z dotazu kliknite na záhlavie poľa a v miestnej ponuke zvoľte <emph>Odstrániť</emph>."
+
+#. V92gB
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3155764\n"
+"help.text"
+msgid "Saving the query"
+msgstr ""
+
+#. 2kWoA
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3148481\n"
+"help.text"
+msgid "Use the <emph>Save</emph> icon on the Standard toolbar to save the query. You will see a dialog that asks you to enter a name for the query. If the database supports schemas, you can also enter a schema name."
+msgstr ""
+
+#. M9UQL
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3154362\n"
+"help.text"
+msgid "Schema"
+msgstr "Schéma"
+
+#. 4Jwm3
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154754\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/savedialog/schema\">Enter the name of the schema that is assigned to the query or table view.</ahelp>"
+msgstr "<ahelp hid=\"dbaccess/ui/savedialog/schema\">Zadajte názov schémy, ktorá sa priradí dotazu alebo pohľadu.</ahelp>"
+
+#. 6Q72c
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3156717\n"
+"help.text"
+msgid "Query name or table view name"
+msgstr "Názov dotazu alebo názov pohľadu"
+
+#. Cw73K
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154253\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/savedialog/title\">Enter the name of the query or table view.</ahelp>"
+msgstr "<ahelp hid=\"dbaccess/ui/savedialog/title\">Zadajte názov dotazu alebo pohľadu.</ahelp>"
+
+#. qgbNu
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3163805\n"
+"help.text"
+msgid "Filtering data"
+msgstr "Filtrovanie dát"
+
+#. Q9pG5
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154964\n"
+"help.text"
+msgid "To filter data for the query, set the desired criteria in the lower area of the query design window. The following options are available:"
+msgstr ""
+
+#. xxoMA
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3146916\n"
+"help.text"
+msgid "Field"
+msgstr ""
+
+#. 4KDzZ
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3156372\n"
+"help.text"
+msgid "<ahelp hid=\"HID_QRYDGN_ROW_FIELD\">Enter the name of the data field that is referred to in the Query. All settings made in the filter option rows refer to this field.</ahelp> If you activate a cell here with a mouse click you'll see an arrow button, which enables you to select a field. The \"Table name.*\" option selects all data fields with the effect that the specified criteria will be applied to all table fields."
+msgstr ""
+
+#. Z3pwF
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3145150\n"
+"help.text"
+msgid "Alias"
+msgstr ""
+
+#. EDa3A
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3146315\n"
+"help.text"
+msgid "<ahelp hid=\"HID_QRYDGN_ROW_ALIAS\">Specifies an alias. This alias will be listed in the query instead of the field name. This makes it possible to use user-defined column labels.</ahelp> For example, if the data field is named PtNo and, instead of that name, you would like to have PartNum appear in the query, enter PartNum as the alias."
+msgstr ""
+
+#. vvWbt
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3155959\n"
+"help.text"
+msgid "In a SQL statement, aliases are defined as follows:"
+msgstr ""
+
+#. CGsBz
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3149922\n"
+"help.text"
+msgid "SELECT column AS alias FROM table."
+msgstr "SELECT stlpec AS alias FROM tabulka."
+
+#. TWexq
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3159335\n"
+"help.text"
+msgid "For example:"
+msgstr "Napríklad:"
+
+#. ynSGq
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3148478\n"
+"help.text"
+msgid "SELECT \"PtNo\" AS \"PartNum\" FROM \"Parts\""
+msgstr "SELECT \"DČ\" AS \"ČísloDielu\" FROM \"Diely\""
+
+#. roTzi
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3148485\n"
+"help.text"
+msgid "Table"
+msgstr ""
+
+#. GM9Sp
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3163665\n"
+"help.text"
+msgid "<ahelp hid=\"HID_QRYDGN_ROW_TABLE\">The corresponding database table of the selected data field is listed here.</ahelp> If you activate this cell with a mouse click, an arrow will appear which enables you to select a different table for the current query."
+msgstr ""
+
+#. JGcfa
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3154207\n"
+"help.text"
+msgid "Sort"
+msgstr ""
+
+#. uXuDt
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150979\n"
+"help.text"
+msgid "<ahelp hid=\"HID_QRYDGN_ROW_ORDER\">If you click on this cell, you can choose a sort option: ascending, descending and unsorted.</ahelp> Text fields will be sorted alphabetically and numerical fields numerically. For most databases, administrators can set the sorting options at the database level."
+msgstr ""
+
+#. XsqW8
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3150384\n"
+"help.text"
+msgid "Visible"
+msgstr "Viditeľné"
+
+#. AAZfA
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3146133\n"
+"help.text"
+msgid "<ahelp hid=\"HID_QRYDGN_ROW_VISIBLE\">If you mark the <emph>Visible</emph> property for a data field, that field will be visibly displayed in the resulting query</ahelp>. If you are only using a data field to formulate a condition or make a calculation, you do not necessarily need to display it."
+msgstr ""
+
+#. eQFRR
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3154714\n"
+"help.text"
+msgid "Criteria"
+msgstr "Kritérium"
+
+#. JdqLq
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3145134\n"
+"help.text"
+msgid "<ahelp hid=\"HID_QRYDGN_ROW_CRIT\">Specifies a first <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"criteria \">criteria </link>by which the content of the data field is to be filtered.</ahelp>"
+msgstr ""
+
+#. qpADC
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3152477\n"
+"help.text"
+msgid "or"
+msgstr "alebo"
+
+#. KFVy8
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154585\n"
+"help.text"
+msgid "Here you can enter one additional filter criterion for each line. Multiple criteria in a single column will be interpreted as boolean OR."
+msgstr ""
+
+#. eXvp7
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3148800\n"
+"help.text"
+msgid "You can also use the context menu of the line headers in the lower area of the query design window to insert a filter based on a function:"
+msgstr ""
+
+#. 5x8LE
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3148419\n"
+"help.text"
+msgid "Functions"
+msgstr "Funkcie"
+
+#. Cxhjn
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3153233\n"
+"help.text"
+msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\" visibility=\"hidden\">Select a function to run in the query.</ahelp> The functions which are available here depend on those provided by the database engine."
+msgstr ""
+
+#. qFuqw
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id8760818\n"
+"help.text"
+msgid "If you are working with the embedded HSQL database, the list box in the <emph>Function</emph> row offers you the following options:"
+msgstr ""
+
+#. 9tdDn
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150307\n"
+"help.text"
+msgid "Option"
+msgstr "Možnosť"
+
+#. kBvXF
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3152993\n"
+"help.text"
+msgid "Effect"
+msgstr "Efekt"
+
+#. zCunm
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3155377\n"
+"help.text"
+msgid "No function"
+msgstr "Bez funkcie"
+
+#. kZMTN
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3155533\n"
+"help.text"
+msgid "No function will be executed."
+msgstr "Nebude spustená žiadna funkcia."
+
+#. 6dWZZ
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3166420\n"
+"help.text"
+msgid "Average"
+msgstr "Priemer"
+
+#. NfRNs
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154486\n"
+"help.text"
+msgid "Calculates the arithmetic mean of a field."
+msgstr "Vypočíta aritmetický priemer poľa."
+
+#. 6z2Kj
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3149979\n"
+"help.text"
+msgid "Count"
+msgstr "Počet"
+
+#. rvWA5
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3155810\n"
+"help.text"
+msgid "Determines the number of records in the table. Empty fields can either be counted (a) or excluded (b)."
+msgstr ""
+
+#. UyAx2
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3151333\n"
+"help.text"
+msgid "a) COUNT(*): Passing an asterisk as the argument counts all records in the table."
+msgstr "a) COUNT(*): Ak zadáte ako argument funkcie hviezdičku, spočítá funkcia všetky záznamy v tabuľke"
+
+#. FNCC8
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3152889\n"
+"help.text"
+msgid "b) COUNT(column): Passing a field name as an argument counts only the records in which the specified field contains a value. Records in which the field has a Null value (i.e. contains no textual or numeric value) will not be counted."
+msgstr ""
+
+#. 2ubvb
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3153067\n"
+"help.text"
+msgid "Maximum"
+msgstr "Maximum"
+
+#. ds4ey
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3159221\n"
+"help.text"
+msgid "Determines the highest value of a record for that field."
+msgstr ""
+
+#. EhSWy
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3146866\n"
+"help.text"
+msgid "Minimum"
+msgstr "Minimum"
+
+#. VxmeB
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3157982\n"
+"help.text"
+msgid "Determines the lowest value of a record for that field."
+msgstr ""
+
+#. CvkuF
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154828\n"
+"help.text"
+msgid "Sum"
+msgstr "Celkom"
+
+#. 82gAC
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154536\n"
+"help.text"
+msgid "Calculates the sum of the values of records for the associated fields."
+msgstr ""
+
+#. zCzVC
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3148820\n"
+"help.text"
+msgid "Group"
+msgstr "Zoskupiť"
+
+#. tSPNG
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3149438\n"
+"help.text"
+msgid "Groups query data according to the selected field name. Functions are executed according to the specified groups. In SQL, this option corresponds to the GROUP BY clause. If a criterion is added, this entry appears in the SQL HAVING sub-clause."
+msgstr ""
+
+#. qHfpD
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3156038\n"
+"help.text"
+msgid "You can also enter function calls directly into the SQL statement. The syntax is:"
+msgstr "Funkcie môžete zadať aj priamo do SQL dotazu. Syntax je:"
+
+#. Qg6Ue
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3156340\n"
+"help.text"
+msgid "SELECT FUNCTION(column) FROM table."
+msgstr "SELECT FUNKCIA(stĺpec) FROM tabulka."
+
+#. qAAoF
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3155075\n"
+"help.text"
+msgid "For example, the function call in SQL for calculating a sum is:"
+msgstr "Funkciu pre výpočet súčtov je napríklad možné volať vo výraze SQL nasledujúcím spôsobom:"
+
+#. VrHLf
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154591\n"
+"help.text"
+msgid "SELECT SUM(\"Price\") FROM \"Article\"."
+msgstr "SELECT SUM(\"Cena\") FROM \"Výrobok\"."
+
+#. dABCo
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3159205\n"
+"help.text"
+msgid "Except for the <emph>Group</emph> function, the above functions are called Aggregate functions. These are functions that calculate data to create summaries from the results. Additional functions that are not listed in the list box might be also possible. These depend on the specific database engine in use and on the current functionality provided by the Base driver used to connect to that database engine."
+msgstr ""
+
+#. BVC6J
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3148651\n"
+"help.text"
+msgid "To use other functions not listed in the list box, you must enter them manually under <emph>Field</emph>."
+msgstr ""
+
+#. WkboS
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3155098\n"
+"help.text"
+msgid "You can also assign aliases to function calls. If you do not want to display the query string in the column header, enter a desired substitute name under <emph>Alias</emph>."
+msgstr ""
+
+#. 98GCC
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3155539\n"
+"help.text"
+msgid "The corresponding function in an SQL statement is:"
+msgstr "Zodpovedajúca funkcia v príkaze SQL je:"
+
+#. WACG9
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3149425\n"
+"help.text"
+msgid "SELECT FUNCTION() AS alias FROM table"
+msgstr "SELECT FUNCTION() AS alias FROM tabuľka"
+
+#. EjzuD
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3144431\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#. G9URE
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154614\n"
+"help.text"
+msgid "SELECT COUNT(*) AS count FROM \"Item\""
+msgstr "SELECT COUNT(*) AS počet FROM \"Položka\"."
+
+#. xiNnR
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154610\n"
+"help.text"
+msgid "If you run such a function, you cannot insert any additional columns for the query other than as an argument in a \"Group\" function."
+msgstr ""
+
+#. EHACK
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154644\n"
+"help.text"
+msgid "<emph>Examples</emph>"
+msgstr "<emph>Príklady</emph>"
+
+#. N5CBE
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3151120\n"
+"help.text"
+msgid "In the following example, a query is run through two tables: an \"Item\" table with the \"Item_No\" field and a \"Suppliers\" table with the \"Supplier_Name\" field. In addition, both tables have a common field name \"Supplier_No.\""
+msgstr "V následujúcom príklade je dotaz spustený nad dvoma tabuľkami: tabuľkou \"Položka\" s poľom \"Položka_č\" a tabuľkou \"Dodávatelia\" s poľom \"Názov_dodávateľa\". Obe tabuľky majú naviac spoločný názov poľa \"Dodávateľ_č.\""
+
+#. P5hJD
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3155144\n"
+"help.text"
+msgid "The following steps are required to create a query containing all suppliers who deliver more than three items."
+msgstr "Na vytvorenie dotazu obsahujúceho všetkých dodávateľov, ktorí dodávajú viac ako tri položky, je nutné vykonať kroky uvedené ďalej."
+
+#. ZhRQD
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3153240\n"
+"help.text"
+msgid "Insert the \"Item\" and \"Suppliers\" tables into the query design."
+msgstr "Do návrhu dotazu vložte tabuľky \"Položka\" a \"Dodávatelia\"."
+
+#. LMRUV
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3148807\n"
+"help.text"
+msgid "Link the \"Supplier_No\" fields of the two tables if there is not already a relation of this type."
+msgstr "Spojte polia \"Dodávateľ_č\" oboch tabuliek, ak doteraz vzťah tohoto typu neexistuje."
+
+#. qWhFA
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3161652\n"
+"help.text"
+msgid "Double-click on the \"Item_No\" field from the \"Item\" table. Display the <emph>Function</emph> line using the context menu and select the Count function."
+msgstr ""
+
+#. TgPA2
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3151009\n"
+"help.text"
+msgid "Enter >3 as a criterion and disable the Visible field."
+msgstr "Zadajte hodnotu >3 ako kritérium a zrušte zaškrtnutie políčka v poli Viditeľné."
+
+#. VwEhF
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3145601\n"
+"help.text"
+msgid "Double-click the \"Supplier_Name\" field in the \"Suppliers\" table and choose the Group function."
+msgstr "V tabuľce \"Dodávatelia\" poklopte na pole \"Názov_dodávateľa\" a vyberte funkciu Zoskupiť."
+
+#. zsjaa
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3147512\n"
+"help.text"
+msgid "Run the query."
+msgstr "Spustiť dotaz."
+
+#. EzQsj
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3148638\n"
+"help.text"
+msgid "If the \"price\" (for the individual price of an article) and \"Supplier_No\" (for the supplier of the article) fields exist in the \"Item\" table, you can obtain the average price of the item that a supplier provides with the following query:"
+msgstr "Ak existuje v tabuľke Položka pole \"cena\" (ako jednotlivá cena výrobku) a pole \"Dodávateľ_č\" (ako dodávateľ daného výrobku), potom můžete zadaním nasledujúceho dotazu obdržať priemernú cenu za položku dodávanú dodávateľom:"
+
+#. qAByp
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3153045\n"
+"help.text"
+msgid "Insert the \"Item\" table into the query design."
+msgstr "Do návrhu dotazu vložte tabuľku \"Položka\"."
+
+#. tjfuE
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3149802\n"
+"help.text"
+msgid "Double-click the \"Price\" and \"Supplier_No\" fields."
+msgstr "Poklopte na polia \"Cena\" a \"Dodávateľ_č\"."
+
+#. 6dBkt
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3153554\n"
+"help.text"
+msgid "Enable the <emph>Function</emph> line and select the Average function from the \"Price\" field."
+msgstr "V poli \"Cena\" zvoľte riadok <emph>Funkcie</emph> a zvoľte funkciu Priemer."
+
+#. x8JB3
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3155597\n"
+"help.text"
+msgid "You can also enter \"Average\" in the line for the alias name (without quotation marks)."
+msgstr "Môžete zadat aj text \"Priemer\" do riadku pre zástupný názov (alias)."
+
+#. D4A9u
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3151191\n"
+"help.text"
+msgid "Choose Group for the \"Supplier_No\" field."
+msgstr "Pre pole \"Dodávateľ_č\" vyberte funkciu Zoskupenie - Group."
+
+#. BUYS9
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3155547\n"
+"help.text"
+msgid "Run the query."
+msgstr "Spustiť dotaz."
+
+#. EkHzB
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3147549\n"
+"help.text"
+msgid "The following context menu commands and symbols are available:"
+msgstr "K dispozícii sú nasledujúce príkazy a symboly miestnej ponuky:"
+
+#. PesFs
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3154172\n"
+"help.text"
+msgid "Functions"
+msgstr "Funkcie"
+
+#. BchuJ
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150414\n"
+"help.text"
+msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Shows or hides a row for the selection of functions.</ahelp>"
+msgstr ""
+
+#. yx5XE
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3149872\n"
+"help.text"
+msgid "Table Name"
+msgstr "Názov tabuľky"
+
+#. ELTGJ
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3147246\n"
+"help.text"
+msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Shows or hides the row for the table name.</ahelp>"
+msgstr "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Zobrazí alebo skryje riadok s názvom tabuľky.</ahelp>"
+
+#. DDFEA
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3145117\n"
+"help.text"
+msgid "Alias Name"
+msgstr "Alias"
+
+#. LDFZB
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3155754\n"
+"help.text"
+msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Shows or hides the row for the alias name.</ahelp>"
+msgstr "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Zobrazí alebo skryje riadok s aliasom.</ahelp>"
+
+#. wnNhq
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3153298\n"
+"help.text"
+msgid "Distinct Values"
+msgstr "Jedinečné hodnoty"
+
+#. 23sAF
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3147500\n"
+"help.text"
+msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Retrieves only distinct values from the query.</ahelp> This applies to multiple records that might contain several repeating occurrences of data in the selected fields. If the <emph>Distinct Values</emph> command is active, you should only see one record in the query (DISTINCT). Otherwise, you will see all records corresponding to the query criteria (ALL)."
+msgstr ""
+
+#. RZED7
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150436\n"
+"help.text"
+msgid "For example, if the name \"Smith\" occurs several times in your address database, you can choose the<emph> Distinct Values</emph> command to specify in the query that the name \"Smith\" will occur only once."
+msgstr "Príklad: ak sa v databáze adries niekoľkokrát objavuje priezvisko \"Lašček\", po zvolení príkazu <emph>Jedinečné hodnoty</emph> sa priezvisko \"Lašček\" v dotaze zobrazí len raz."
+
+#. 2GvRf
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3152352\n"
+"help.text"
+msgid "For a query involving several fields, the combination of values from all fields must be unique so that the result can be formed from a specific record. For example, you have \"Smith in Chicago\" once in your address book and \"Smith in London\" twice. With the<emph> Distinct Values</emph> command, the query will use the two fields \"last name\" and \"city\" and return the query result \"Smith in Chicago\" once and \"Smith in London\" once."
+msgstr "Ak dotaz obsahuje niekoľko polí, musí byť jedinečná kombinácia hodnôt zo všetkých polí. Príklad: v adresári máte raz \"Laščeka v Bratislave\" a dva krát \"Laščeka v Košiciach\". S príkazom <emph>Jedinečné hodnoty</emph> použije dotaz pole \"priezvisko\" a \"mesto\" a vo výsledku dotazu zobrazí raz \"Laščeka v Bratislave\" a raz \"Laščeka v Košiciach\"."
+
+#. m5UcG
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3149825\n"
+"help.text"
+msgid "In SQL, this command corresponds to the DISTINCT predicate."
+msgstr "V SQL zodpovedá tento príkaz predikátu DISTINCT."
+
+#. GHsJd
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3153290\n"
+"help.text"
+msgid "Limit"
+msgstr "Hranica"
+
+#. MijJg
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3147501\n"
+"help.text"
+msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">Allows you to limit the maximum number of records returned by a query.</ahelp>"
+msgstr ""
+
+#. B6S5f
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3152350\n"
+"help.text"
+msgid "If a <emph>Limit</emph> construction is added, you will get at most as many rows as the number you specify. Otherwise, you will see all records corresponding to the query criteria."
+msgstr ""
+
+#. MGqK3
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3148926\n"
+"help.text"
+msgid "Formulating filter conditions"
+msgstr "Formulovanie filtračných podmienok"
+
+#. iFSpm
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3153162\n"
+"help.text"
+msgid "When formulating filter conditions, various operators and commands are available to you. Apart from the relational operators, there are SQL-specific commands that query the content of database fields. If you use these commands in the $[officename] syntax, $[officename] automatically converts these into the corresponding SQL syntax via an internal parser. You can also enter the SQL command directly and bypass the internal parser. The following tables give an overview of the operators and commands:"
+msgstr ""
+
+#. fXeDd
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3149044\n"
+"help.text"
+msgid "Operator"
+msgstr "Operátor"
+
+#. mfdEx
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3152471\n"
+"help.text"
+msgid "Meaning"
+msgstr "Význam"
+
+#. mBZgC
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3147407\n"
+"help.text"
+msgid "Condition is satisfied if..."
+msgstr "Podmienka je splnená ak ..."
+
+#. gqkRK
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3153026\n"
+"help.text"
+msgid "equal to"
+msgstr "sa rovná"
+
+#. hw7KZ
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3148895\n"
+"help.text"
+msgid "... the content of the field is identical to the indicated expression."
+msgstr "... Obsah poľa sa zhoduje so zadaným výrazom."
+
+#. A8XJU
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3153120\n"
+"help.text"
+msgid "The operator = will not be displayed in the query fields. If you enter a value without any operator, the = operator is automatically assumed."
+msgstr ""
+
+#. mWwUE
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3145223\n"
+"help.text"
+msgid "not equal to"
+msgstr "nie je rovné"
+
+#. Db7BG
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3145635\n"
+"help.text"
+msgid "... the content of the field does not correspond to the specified expression."
+msgstr "... Obsah poľa sa nezhoduje so zadaným výrazom."
+
+#. dtjkU
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3146815\n"
+"help.text"
+msgid "greater than"
+msgstr "je väčší ako"
+
+#. gCWug
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3149150\n"
+"help.text"
+msgid "... the content of the field is greater than the specified expression."
+msgstr "... obsah poľa je väčší ako zadaný výraz."
+
+#. QkAKk
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3147379\n"
+"help.text"
+msgid "less than"
+msgstr "je menšie ako"
+
+#. xxPdk
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150375\n"
+"help.text"
+msgid "... the content of the field is less than the specified expression."
+msgstr "... obsah poľa je menší ako zadaný výraz."
+
+#. 4aJjX
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150636\n"
+"help.text"
+msgid "greater than or equal to"
+msgstr "je väčší alebo sa rovná"
+
+#. 2rwQm
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154584\n"
+"help.text"
+msgid "... the content of the field is greater than or equal to the specified expression."
+msgstr "... obsah poľa je väčší alebo sa rovná zadanému výrazu."
+
+#. ADRZk
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154052\n"
+"help.text"
+msgid "less than or equal to"
+msgstr "je menšie alebo sa rovná"
+
+#. 9KtmZ
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3157902\n"
+"help.text"
+msgid "... the content of the field is less than or equal to the specified expression."
+msgstr "... obsah poľa je väčší alebo sa rovná zadanému výrazu."
+
+#. DBXG9
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154630\n"
+"help.text"
+msgid "$[officename] command"
+msgstr "príkaz $[officename]"
+
+#. Yo7MG
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150484\n"
+"help.text"
+msgid "SQL command"
+msgstr "SQL príkaz"
+
+#. pJay6
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154158\n"
+"help.text"
+msgid "Meaning"
+msgstr "Význam"
+
+#. qmaX5
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3149433\n"
+"help.text"
+msgid "Condition is satisfied if..."
+msgstr "Podmienka je splnená ak ..."
+
+#. do6XQ
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3143236\n"
+"help.text"
+msgid "is null"
+msgstr "je prázdne"
+
+#. NPqBL
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154744\n"
+"help.text"
+msgid "... the field contains no data. For Yes/No fields with three possible states, this command automatically queries the undetermined state (neither Yes nor No)."
+msgstr ""
+
+#. 7Rfbd
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3151229\n"
+"help.text"
+msgid "is not empty"
+msgstr "Nie je prázdne"
+
+#. w3Tva
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3145304\n"
+"help.text"
+msgid "... the field is not empty, i.e it contains data."
+msgstr ""
+
+#. GGKUH
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3153891\n"
+"help.text"
+msgid "placeholder (*) for any number of characters"
+msgstr ""
+
+#. gbEWB
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3148887\n"
+"help.text"
+msgid "placeholder (?) for exactly one character"
+msgstr ""
+
+#. tBQfA
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"bm_id3157985\n"
+"help.text"
+msgid "<bookmark_value>placeholders; in SQL queries</bookmark_value>"
+msgstr "<bookmark_value>zástupné znaky; v SQL dotazoch</bookmark_value>"
+
+#. agxhB
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3157985\n"
+"help.text"
+msgid "placeholder (%) for any number of characters"
+msgstr ""
+
+#. EE9ii
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3147422\n"
+"help.text"
+msgid "Placeholder (_) for exactly one character"
+msgstr ""
+
+#. za5g2
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154845\n"
+"help.text"
+msgid "is an element of"
+msgstr "je prvkom."
+
+#. 2Y3zW
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3156130\n"
+"help.text"
+msgid "... the data field contains the indicated expression. The (*) placeholder indicates whether the expression x occurs at the beginning of (x*), at the end of (*x) or inside the field content (*x*). You can enter as a placeholder in SQL queries either the SQL % character or the familiar (*) file system placeholder in the %PRODUCTNAME interface."
+msgstr ""
+
+#. CPJyr
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150271\n"
+"help.text"
+msgid "The (*) or (%) placeholder stands for any number of characters. The question mark (?) in the $[officename] interface or the underscore (_) in SQL queries is used to represent exactly one character."
+msgstr ""
+
+#. AAEXi
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3159141\n"
+"help.text"
+msgid "Is not an element of"
+msgstr "Nie je prvkom"
+
+#. 9vFBZ
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3161664\n"
+"help.text"
+msgid "... the field does not contain data having the specified expression."
+msgstr ""
+
+#. CD2Ra
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3159184\n"
+"help.text"
+msgid "falls within the interval [x,y]"
+msgstr "patrí do intervalu [x,y]."
+
+#. cDe2u
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154395\n"
+"help.text"
+msgid "... the field contains a data value that lies between the two values x and y."
+msgstr ""
+
+#. KYAXv
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3155498\n"
+"help.text"
+msgid "Does not fall within the interval [x,y]"
+msgstr "Nepatrí do intervalu [x,y]."
+
+#. cVfAF
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3148992\n"
+"help.text"
+msgid "... the field contains a data value that does not lie between the two values x and y."
+msgstr ""
+
+#. DBBQE
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3159167\n"
+"help.text"
+msgid "Note that semicolons are used as separators in all value lists!"
+msgstr ""
+
+#. evEuh
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154809\n"
+"help.text"
+msgid "contains a, b, c..."
+msgstr "obsahuje a, b, c..."
+
+#. eeFC2
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3148399\n"
+"help.text"
+msgid "... the field name contains one of the specified expressions a, b, c,... Any number of expressions can be specified, and the result of the query is determined by a boolean OR operator. The expressions a, b, c... can be either numbers or characters"
+msgstr ""
+
+#. JXq76
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150679\n"
+"help.text"
+msgid "does not contain a, b, c..."
+msgstr "Neobsahuje a, b, c…"
+
+#. U5doB
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3158439\n"
+"help.text"
+msgid "... the field does not contain one of the specified expressions a, b, c,..."
+msgstr ""
+
+#. cECKt
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3149248\n"
+"help.text"
+msgid "has the value True"
+msgstr "má hodnotu Pravda"
+
+#. fbgDt
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3148524\n"
+"help.text"
+msgid "... the field name has the value True."
+msgstr "... pole má hodnotu Pravda."
+
+#. 39zcD
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3149955\n"
+"help.text"
+msgid "has the value false"
+msgstr "má hodnotu Nepravda."
+
+#. fGHY6
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3146850\n"
+"help.text"
+msgid "... the field data value is set to false."
+msgstr ""
+
+#. qQETa
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3155954\n"
+"help.text"
+msgid "Examples"
+msgstr "Príklady"
+
+#. 8GaiA
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150948\n"
+"help.text"
+msgid "returns field names with the field content \"Ms.\""
+msgstr "vrátí polia, ktoré obsahujú výraz Uzbekistan."
+
+#. C3BDE
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id315094A\n"
+"help.text"
+msgid "returns dates that occurred before January 10, 2001"
+msgstr ""
+
+#. T7ZhS
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3147332\n"
+"help.text"
+msgid "returns records with field content such as \"give\" and \"gave\"."
+msgstr ""
+
+#. f6T3F
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3155350\n"
+"help.text"
+msgid "returns records with field contents such as \"Sun\"."
+msgstr ""
+
+#. AvbKu
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3159406\n"
+"help.text"
+msgid "returns records with field content between the values 10 and 20. (The fields can be either text fields or number fields)."
+msgstr ""
+
+#. 3tymM
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3149712\n"
+"help.text"
+msgid "returns records with the values 1, 3, 5, 7. If the field name contains an item number, for example, you can create a query that returns the item having the specified number."
+msgstr ""
+
+#. uusce
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3147279\n"
+"help.text"
+msgid "returns records that do not contain \"Smith\"."
+msgstr ""
+
+#. AJ8Xo
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3146073\n"
+"help.text"
+msgid "<emph>Like </emph>Escape Sequence: {escape 'escape-character'}"
+msgstr "Escape sekvencia <emph>Like</emph>: {escape 'escape-character'}"
+
+#. Cy7Cc
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150661\n"
+"help.text"
+msgid "Example: select * from Item where ItemName like 'The *%' {escape '*'}"
+msgstr "Príklad: select * from Tovar where NázovTovaru like 'Fľa *%' {escape '*'}"
+
+#. newGb
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3148541\n"
+"help.text"
+msgid "The example will give you all of the entries where the item name begins with 'The *'. This means that you can also search for characters that would otherwise be interpreted as placeholders, such as *, ?, _, % or the period."
+msgstr "Tento príklad zobrazí všetky záznamy, kde názov tovaru začíná 'Fľa *'. To znamená, že môžete hľadať aj znaky, ktoré se inak identifikují jako zástupné znaky, napr. *, ?, _, % alebo bodka."
+
+#. bAP3N
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150572\n"
+"help.text"
+msgid "<emph>Outer Join</emph> Escape Sequence: {oj outer-join}"
+msgstr "Escape sekvencia <emph>Outer Join</emph>: {oj outer-join}"
+
+#. VnKGf
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3156052\n"
+"help.text"
+msgid "Example: select Article.* from {oj item LEFT OUTER JOIN orders ON item.no=orders.ANR}"
+msgstr "Príklad: select Article.* from {oj item LEFT OUTER JOIN orders ON item.no=orders.ANR}"
+
+#. mWG9p
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3153674\n"
+"help.text"
+msgid "Querying text fields"
+msgstr "Dotazy na textové polia"
+
+#. sxYQF
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3149134\n"
+"help.text"
+msgid "To query the content of a text field, you must put the expression between single quotes. The distinction between uppercase and lowercase letters depends on the database in use. LIKE, by definition, is case-sensitive (though some databases don't interpret this strictly)."
+msgstr ""
+
+#. BEp4G
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3149302\n"
+"help.text"
+msgid "Querying date fields"
+msgstr "Dotazy na dátumové polia"
+
+#. D5mjw
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3157998\n"
+"help.text"
+msgid "<emph>Date fields</emph> are represented as #Date# to clearly identify them as dates. Date, time and date/time constants (literals) used in conditions can be of either the SQL Escape Syntax type, or default SQL2 syntax."
+msgstr ""
+
+#. Zzuo6
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id31537341\n"
+"help.text"
+msgid "Date Type Element"
+msgstr ""
+
+#. JKys2
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id31537342\n"
+"help.text"
+msgid "SQL Escape syntax #1 - may be obsolete"
+msgstr ""
+
+#. AzkWz
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id31537343\n"
+"help.text"
+msgid "SQL Escape syntax #2"
+msgstr ""
+
+#. UJ6VA
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id31537344\n"
+"help.text"
+msgid "SQL2 syntax"
+msgstr ""
+
+#. 9V3Ky
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id315913111\n"
+"help.text"
+msgid "Date"
+msgstr "Dátum"
+
+#. YNF3S
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id31559471\n"
+"help.text"
+msgid "Time"
+msgstr "Čas"
+
+#. ssX5b
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id31509641\n"
+"help.text"
+msgid "DateTime"
+msgstr "Dátum a čas"
+
+#. FqZXM
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3149539\n"
+"help.text"
+msgid "Example: select {d '1999-12-31'} from world.years"
+msgstr "Príklad: select {d '1999-12-31'} from svetové.roky"
+
+#. WJ4YB
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3149540\n"
+"help.text"
+msgid "Example: select * from mytable where years='1999-12-31'"
+msgstr ""
+
+#. CZdA4
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150510\n"
+"help.text"
+msgid "All date expressions (date literals) must be enclosed with single quotation marks. (Consult the reference for the particular database and connector you are using for more details.)"
+msgstr ""
+
+#. HXdKT
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3150427\n"
+"help.text"
+msgid "Querying Yes/No fields"
+msgstr "Dotazy na polia s hodnotami Yes/No (Áno/Nie)"
+
+#. xWzix
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3149523\n"
+"help.text"
+msgid "To query Yes/No fields, use the following syntax for dBASE tables:"
+msgstr "Ak chcete filtrovať pole typu Áno/Nie, použite pre dBASE tabuľky nasledujúcu syntax:"
+
+#. A4Uh7
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3153180\n"
+"help.text"
+msgid "Status"
+msgstr ""
+
+#. FnXiE
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3147481\n"
+"help.text"
+msgid "Query criterion"
+msgstr "Kritérium dotazu"
+
+#. e6DJr
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3155187\n"
+"help.text"
+msgid "Example"
+msgstr "Príklad"
+
+#. Guy7d
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3156092\n"
+"help.text"
+msgid "Yes"
+msgstr "Áno"
+
+#. p9WTn
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3152414\n"
+"help.text"
+msgid "for dBASE tables: not equal to any given value"
+msgstr "Pre tabuľky vo formáte dBASE: nerovná sa žiadnej zadanej hodnote"
+
+#. RFrvz
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3151265\n"
+"help.text"
+msgid "=1 returns all records where the Yes/No field has the status \"Yes\" or \"On\" (selected in black),"
+msgstr "=1 vrátí všetky záznamy, kde pole Áno/Nie má stav Áno alebo Zapnuté (zobrazené černe),"
+
+#. 3P4ZB
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3152450\n"
+"help.text"
+msgid "No"
+msgstr "Nie"
+
+#. BzBAa
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150997\n"
+"help.text"
+msgid "."
+msgstr "."
+
+#. TFsQG
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3155331\n"
+"help.text"
+msgid "=0 returns all records for which the Yes/No field has the status \"No\" or \"Off\" (no selection)."
+msgstr "=0 vrátí všetky záznamy, kde pole s hodnotami Áno/Nie je v stave \"Nie\" nebo \"Vypnuté\" (neoznačené)."
+
+#. 9KXzK
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3154179\n"
+"help.text"
+msgid "Null"
+msgstr "Null"
+
+#. CwGZv
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3147035\n"
+"help.text"
+msgid "IS NULL"
+msgstr "IS NULL"
+
+#. dyXYc
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3159385\n"
+"help.text"
+msgid "IS NULL returns all records for which the Yes/No field has neither of the states Yes or No (selected in gray)."
+msgstr "IS NULL vráti všetky záznamy, kde pole s hodnotami Áno/Nie nie je v stave ani Áno ani Nie (označené šedo)."
+
+#. YWk5J
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3157888\n"
+"help.text"
+msgid "The syntax depends on the database system used. You should also note that Yes/No fields can be defined differently (only 2 states instead of 3)."
+msgstr "Tato syntax závisí na použitom databázovom systéme. Poznámka: polia Áno/Nie sa môžu chovať rôzne (môžu získavať dva stavy namiesto troch)."
+
+#. mmVa8
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3145772\n"
+"help.text"
+msgid "Parameter queries"
+msgstr "Parametrické dotazy"
+
+#. ND7xd
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id191120151905346795\n"
+"help.text"
+msgid "Parameter queries allow the user to input values at run-time. These values are used within the criteria for selecting the records to be displayed. Each such value has a parameter name associated with it, which is used to prompt the user when the query is run."
+msgstr ""
+
+#. Be7XG
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id191120151905439551\n"
+"help.text"
+msgid "Parameter names are preceded by a colon in both the Design and SQL views of a query. This can be used wherever a value can appear. If the same value is to appear more than once in the query, the same parameter name is used."
+msgstr ""
+
+#. rSkkZ
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id191120151905518123\n"
+"help.text"
+msgid "In the simplest case, where the user enters a value which is matched for equality, the parameter name with its preceding colon is simply entered in the Criterion row. In <link href=\"text/shared/explorer/database/02010100.xhp#sqlmode\">SQL mode</link> this should be typed as <item type=\"input\">WHERE \"Field\" = :Parameter_name</item>"
+msgstr ""
+
+#. DZCXm
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id191120151905584287\n"
+"help.text"
+msgid "Parameter names may not contain any of the characters <item type=\"input\"><space>`!\"$%^*()+={}[]@'~#<>?/,</item>. They may not be the same as field names or SQL reserved words. They may be the same as aliases."
+msgstr ""
+
+#. AY8e3
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id191120151931441881\n"
+"help.text"
+msgid "A useful construction for selecting records based on parts of a text field's content is to add a hidden column with <item type=\"input\">\"LIKE '%' || :Part_of_field || '%'\"</item> as the criterion. This will select records with an exact match. If a case-insensitive test is wanted, one solution is to use <item type=\"input\">LOWER (Field_Name)</item> as the field and <item type=\"input\">LIKE LOWER ( '%' || :Part_of_field || '%' )</item> as the criterion. Note that the spaces in the criterion are important; if they are left out the SQL parser interprets the entire criterion as a string to be matched. In <link href=\"text/shared/explorer/database/02010100.xhp#sqlmode\">SQL mode</link> this should be typed as <item type=\"input\">LOWER ( \"Field_Name\" ) LIKE LOWER ( '%' || :Part_of_field || '%' )</item>."
+msgstr ""
+
+#. sSSB9
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3150585\n"
+"help.text"
+msgid "Parameter queries may be used as the data source for <link href=\"text/shared/02/01170203.xhp\" name=\"subforms\">subforms</link>, to allow the user to restrict the displayed records."
+msgstr ""
+
+#. DRj78
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3151035\n"
+"help.text"
+msgid "Parameter Input"
+msgstr "Vstup parametra"
+
+#. BisCF
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3153596\n"
+"help.text"
+msgid "<ahelp hid=\"HID_QRYDGN_ROW_FUNCTION\">The <emph>Parameter Input</emph> dialog asks the user to enter the parameter values. Enter a value for each query parameter and confirm by clicking <emph>OK</emph> or typing <emph>Enter</emph>.</ahelp>"
+msgstr ""
+
+#. eGETM
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id191120151924165870\n"
+"help.text"
+msgid "The values entered by the user may consist of any characters which are allowable for the SQL for the relevant criterion; this may depend on the underlying database system."
+msgstr ""
+
+#. seFhG
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id191120151939594217\n"
+"help.text"
+msgid "The user can use the SQL wild-card characters \"%\" (arbitrary string) or \"_\" (arbitrary single character) as part of the value to retrieve records with more complex criteria."
+msgstr ""
+
+#. wRe6v
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"hd_id3145181\n"
+"help.text"
+msgid "SQL Mode"
+msgstr "Režim SQL"
+
+#. 5avVu
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3147013\n"
+"help.text"
+msgid "SQL stands for \"Structured Query Language\" and describes instructions for updating and administering relational databases."
+msgstr "SQL čiže Structured Query Language je jazyk, ktorý popisuje príkazy slúžiace na aktualizáciu a správu relačných databáz."
+
+#. wDAAY
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3152570\n"
+"help.text"
+msgid "In $[officename] you do not need any knowledge of SQL for most queries, since you do not have to enter the SQL code. If you create a query in the query designer, $[officename] automatically converts your instructions into the corresponding SQL syntax. If, with the help of the <emph>Switch Design View On/Off </emph>button, you change to the SQL view, you can see the SQL commands for a query that has already been created."
+msgstr ""
+
+#. hBQFv
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3152412\n"
+"help.text"
+msgid "You can formulate your query directly in SQL code. Note, however, that the special syntax is dependent upon the database system that you use."
+msgstr ""
+
+#. kkuBG
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3146842\n"
+"help.text"
+msgid "If you enter the SQL code manually, you can create SQL-specific queries that are not supported by the graphical interface in the <emph>Query designer</emph>. These queries must be executed in native SQL mode."
+msgstr ""
+
+#. cBY6B
+#: 02010100.xhp
+msgctxt ""
+"02010100.xhp\n"
+"par_id3149632\n"
+"help.text"
+msgid "By clicking the <link href=\"text/shared/02/14030000.xhp\" name=\"Run SQL command directly\"><emph>Run SQL command directly</emph></link> icon in the SQL view, you can formulate a query that is not processed by $[officename] and sent directly to the database engine."
+msgstr ""
+
+#. fKBDD
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"tit\n"
+"help.text"
+msgid "Join Properties"
+msgstr "Vlastnosti spojenia"
+
+#. TTCNB
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"bm_id3154015\n"
+"help.text"
+msgid "<bookmark_value>links;relational databases (Base)</bookmark_value> <bookmark_value>inner joins (Base)</bookmark_value> <bookmark_value>joins in databases (Base)</bookmark_value> <bookmark_value>left joins (Base)</bookmark_value> <bookmark_value>right joins (Base)</bookmark_value> <bookmark_value>full joins (Base)</bookmark_value>"
+msgstr ""
+
+#. DG7RD
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"hd_id3154015\n"
+"help.text"
+msgid "Join Properties"
+msgstr "Vlastnosti spojenia"
+
+#. MzpBt
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"par_id3151205\n"
+"help.text"
+msgid "If you double-click a connection between two linked fields in the query design, or if you choose <emph>Insert - New Relation</emph>, the <emph>Join Properties</emph> dialog appears. These properties will be used in all queries created in the future."
+msgstr ""
+
+#. oszEF
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"hd_id3155066\n"
+"help.text"
+msgid "Tables involved"
+msgstr "Zahrnuté tabuľky"
+
+#. 2AkcB
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"par_id3153924\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/joindialog/table2\">Specifies two different tables that you want to join.</ahelp>"
+msgstr "<ahelp hid=\"dbaccess/ui/joindialog/table2\">Určuje dve rôzne tabuľky, ktoré si želáte prepojiť.</ahelp>"
+
+#. X6wkD
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"hd_id3155766\n"
+"help.text"
+msgid "Fields involved"
+msgstr "Zahrnuté polia"
+
+#. 8bYEZ
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"par_id3148994\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies two data fields that will be joined by a relation.</ahelp>"
+msgstr "<ahelp hid=\".\">Určuje dve polia, ktoré budú spojené raláciou.</ahelp>"
+
+#. R8CbB
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"hd_id3159267\n"
+"help.text"
+msgid "Options"
+msgstr ""
+
+#. MRJCp
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"hd_id3147340\n"
+"help.text"
+msgid "Type"
+msgstr ""
+
+#. rxAGo
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"par_id3152482\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/joindialog/type\">Specifies the join type of the selected join.</ahelp> Some databases support only a subset of the various possible types."
+msgstr ""
+
+#. ngfse
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"hd_id3155334\n"
+"help.text"
+msgid "Inner Join"
+msgstr "Vnútorné spojenie"
+
+#. 356Dv
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"par_id3155936\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/joindialog/type\">In an inner join, the results table contains only those records for which the content of the linked fields is the same.</ahelp> In $[officename] SQL this type of link is created by a corresponding WHERE clause."
+msgstr ""
+
+#. XYKGT
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"hd_id3156372\n"
+"help.text"
+msgid "Left Join"
+msgstr "Ľavý spoj"
+
+#. dRFux
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"par_id3166450\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/joindialog/type\">In a left join, the results table contains all records of the queried fields from the left table and only those records of the queried fields from the right table for which the content of the linked fields is the same.</ahelp> In $[officename] SQL this type of link corresponds to the LEFT OUTER JOIN command."
+msgstr ""
+
+#. DxGWD
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"hd_id3155607\n"
+"help.text"
+msgid "Right Join"
+msgstr "Pravý spoj"
+
+#. 9eD8R
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"par_id3150647\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/joindialog/type\">In a right join, the results table contains all records of the queried fields from the right table and only those records of the queried fields from the left table for which the content of the linked fields is the same.</ahelp> In $[officename] SQL this type of link corresponds to the RIGHT OUTER JOIN command."
+msgstr ""
+
+#. wcFAd
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"hd_id3158215\n"
+"help.text"
+msgid "Full Join"
+msgstr "Plný spoj"
+
+#. wAFid
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"par_id3163665\n"
+"help.text"
+msgid "<ahelp hid=\"dbaccess/ui/joindialog/type\">In a full join, the results table contains all records of the queried fields from the left and right tables.</ahelp> In the SQL of $[officename] this type of link corresponds to the FULL OUTER JOIN command."
+msgstr ""
+
+#. gYRyC
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"hd_id0305200912031976\n"
+"help.text"
+msgid "Natural"
+msgstr "Prirodzené"
+
+#. 44FEn
+#: 02010101.xhp
+msgctxt ""
+"02010101.xhp\n"
+"par_id0305200912031977\n"
+"help.text"
+msgid "<ahelp hid=\".\">In a natural join, the keyword NATURAL in inserted into the SQL statement that defines the relation. The relation joins all columns that have the same column name in both tables. The resulting joined table contains only one column for each pair of equally named columns.</ahelp>"
+msgstr ""
+
#. pK6MV
#: 04000000.xhp
msgctxt ""
@@ -2327,7 +5081,7 @@ msgctxt ""
"par_id3163802\n"
"help.text"
msgid "<ahelp hid=\".\">Allows a user to read the data.</ahelp>"
-msgstr "<ahelp hid=\".\">Umožňuje uživateľovi čítať dáta.</ahelp>"
+msgstr "<ahelp hid=\".\">Umožňuje používateľovi čítať údaje.</ahelp>"
#. MFSk5
#: 05040100.xhp
@@ -2417,7 +5171,7 @@ msgctxt ""
"par_id3154897\n"
"help.text"
msgid "<ahelp hid=\".\">Allows the user to delete the table structure.</ahelp>"
-msgstr "<ahelp hid=\".\">Umožňuje používateľovi zmazať štruktúru tabuľky.</ahelp>"
+msgstr "<ahelp hid=\".\">Umožňuje používateľovi odstrániť štruktúru tabuľky.</ahelp>"
#. gFhhG
#: 05040100.xhp
@@ -2588,7 +5342,7 @@ msgctxt ""
"par_id3154514\n"
"help.text"
msgid "<ahelp hid=\".\">Type the user name for accessing the database.</ahelp>"
-msgstr "<ahelp hid=\".\">Zadajte uživateľské meno na prístup k databáze.</ahelp>"
+msgstr "<ahelp hid=\".\">Zadajte meno používateľa pre prístup do databázy.</ahelp>"
#. DpZgn
#: 11020000.xhp
@@ -3085,14 +5839,14 @@ msgctxt ""
msgid "You can only enter administration commands in this dialog, such as Grant, Create Table, or Drop Table, and not filter commands. The commands that you can enter depend on the data source, for example, dBASE can only run some of the SQL commands list here."
msgstr "V tomto dialógu je možné zadávať iba administratívne príkazy, napr. Grant, Create Table alebo Drop Table, nie príkazy pre filtrovanie. Príkazy, ktoré je možné zadať, závisejú na zdroji dát, napr. dBASE nepodporuje všetky vypísané SQL príkazy."
-#. JZmCZ
+#. zMG8X
#: 11080000.xhp
msgctxt ""
"11080000.xhp\n"
"par_id3154860\n"
"help.text"
-msgid "To run an SQL query for filtering data in the database, use the <link href=\"text/sdatabase/02010100.xhp\" name=\"Query Design\">Query Design View</link>."
-msgstr ""
+msgid "To run an SQL query for filtering data in the database, use the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Design\">Query Design View</link>."
+msgstr "Pre spustenie SQL dotazu zobrazujúceho údaje z databázy použite <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Návrh dotazu\">Návrh dotazu</link>."
#. Ck9G4
#: 11080000.xhp
@@ -3623,7 +6377,7 @@ msgctxt ""
"par_id040920092139526\n"
"help.text"
msgid "<ahelp hid=\".\">Use date/time literals that conform to ODBC standard.</ahelp>"
-msgstr "<ahelp hid=\".\">Určuje, že polia nemajú okraje.</ahelp>"
+msgstr "<ahelp hid=\".\">Používajte literály dátumu a času, ktoré zodpovedajú štandardu ODBC.</ahelp>"
#. 9PTAJ
#: dabaadvpropdat.xhp
@@ -3641,7 +6395,7 @@ msgctxt ""
"par_id04096620092139526\n"
"help.text"
msgid "<ahelp hid=\".\">Enable to overrule Base's heuristics used to detect whether the database supports primary keys.</ahelp>"
-msgstr "<ahelp hid=\".\">Umožňuje používateľovi zmazať štruktúru tabuľky.</ahelp>"
+msgstr "<ahelp hid=\".\">Povoliť potlačenie heuristiky Base použitej na zistenie, či databáza podporuje primárne kľúče.</ahelp>"
#. WCkDd
#: dabaadvpropdat.xhp
@@ -3848,7 +6602,7 @@ msgctxt ""
"par_idN10560\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the properties of a database.</ahelp>"
-msgstr "<ahelp hid=\".\">Nastavenie prístupu k databáze Adabas.</ahelp>"
+msgstr "<ahelp hid=\".\">Určuje vlastnosti databázy.</ahelp>"
#. GkxKK
#: dabaprop.xhp
@@ -3956,7 +6710,7 @@ msgctxt ""
"par_idN10615\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the name of the JDBC driver for the MySQL database.</ahelp>"
-msgstr "<ahelp hid=\".\">Zadajte uživateľské meno na prístup k databáze.</ahelp>"
+msgstr "<ahelp hid=\".\">Zadajte názov ovládača JDBC pre databázu MySQL.</ahelp>"
#. evMXj
#: dabapropadd.xhp
@@ -4001,7 +6755,7 @@ msgctxt ""
"par_idN10653\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the name of the JDBC driver for the Oracle database.</ahelp>"
-msgstr "<ahelp hid=\".\">Zadajte uživateľské meno na prístup k databáze.</ahelp>"
+msgstr "<ahelp hid=\".\">Zadajte názov ovládača JDBC pre databázu Oracle.</ahelp>"
#. 5KbCC
#: dabapropadd.xhp
@@ -4433,7 +7187,7 @@ msgctxt ""
"par_idN105B5\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the path to the folder of the text files.</ahelp>"
-msgstr "<ahelp hid=\".\">Zadajte uživateľské meno na prístup k databáze.</ahelp>"
+msgstr "<ahelp hid=\".\">Zadajte cestu k priečinku textových súborov.</ahelp>"
#. BbvJR
#: dabapropgen.xhp
@@ -4469,7 +7223,7 @@ msgctxt ""
"par_idN105C3\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the name of the ODBC data source.</ahelp>"
-msgstr "<ahelp hid=\".\">Zadajte uživateľské meno na prístup k databáze.</ahelp>"
+msgstr "<ahelp hid=\".\">Zadajte názov zdroja údajov ODBC.</ahelp>"
#. GNzhk
#: dabapropgen.xhp
@@ -4487,7 +7241,7 @@ msgctxt ""
"par_idN105CA\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the user name that is required to access the database.</ahelp>"
-msgstr "<ahelp hid=\".\">Zadajte uživateľské meno na prístup k databáze.</ahelp>"
+msgstr "<ahelp hid=\".\">Zadajte meno používateľa, ktoré je potrebné na prístup do databázy.</ahelp>"
#. YDXqp
#: dabapropgen.xhp
@@ -4523,7 +7277,7 @@ msgctxt ""
"par_id5589159\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the name of the database.</ahelp>"
-msgstr "<ahelp hid=\".\">Zadajte uživateľské meno na prístup k databáze.</ahelp>"
+msgstr "<ahelp hid=\".\">Zadajte názov databázy.</ahelp>"
#. 8Bxuy
#: dabapropgen.xhp
@@ -4595,7 +7349,7 @@ msgctxt ""
"par_idN105F4\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the host name for the LDAP data source.</ahelp>"
-msgstr "<ahelp hid=\".\">Zadajte uživateľské meno na prístup k databáze.</ahelp>"
+msgstr "<ahelp hid=\".\">Zadajte názov hostiteľa pre zdroj údajov LDAP.</ahelp>"
#. NsdZh
#: dabapropgen.xhp
@@ -4613,7 +7367,7 @@ msgctxt ""
"par_idN105FB\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the location of the JDBC data source as a URL.</ahelp>"
-msgstr "<ahelp hid=\".\">Zadajte uživateľské meno na prístup k databáze.</ahelp>"
+msgstr "<ahelp hid=\".\">Zadajte umiestnenie zdroja údajov JDBC ako URL adresu.</ahelp>"
#. 2qqXH
#: dabapropgen.xhp
@@ -5234,7 +7988,7 @@ msgctxt ""
"par_idN10548\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the path to the database file.</ahelp>"
-msgstr "<ahelp hid=\".\">Zadajte uživateľské meno na prístup k databáze.</ahelp>"
+msgstr "<ahelp hid=\".\">Určuje cestu k databázovému súboru.</ahelp>"
#. cKU7v
#: dabawiz02access.xhp
@@ -5477,7 +8231,7 @@ msgctxt ""
"par_idN1055A\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the path to the dBASE *.dbf files.</ahelp>"
-msgstr "<ahelp hid=\".\">Zadajte uživateľské meno na prístup k databáze.</ahelp>"
+msgstr "<ahelp hid=\".\">Zadajte cestu k súborom dBASE *.dbf.</ahelp>"
#. JtErQ
#: dabawiz02dbase.xhp
@@ -6224,7 +8978,7 @@ msgctxt ""
"par_idN10556\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the path to the database file.</ahelp>"
-msgstr "<ahelp hid=\".\">Zadajte uživateľské meno na prístup k databáze.</ahelp>"
+msgstr "<ahelp hid=\".\">Zadajte cestu k databázovému súboru.</ahelp>"
#. 7KKFy
#: dabawiz02odbc.xhp
@@ -6314,7 +9068,7 @@ msgctxt ""
"par_idN105A8\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the options to access an Oracle database.</ahelp>"
-msgstr "<ahelp hid=\".\">Nastavenie prístupu k databáze Adabas.</ahelp>"
+msgstr "<ahelp hid=\".\">Určuje možnosti prístupu k databáze Oracle.</ahelp>"
#. FMq7o
#: dabawiz02oracle.xhp
@@ -6791,7 +9545,7 @@ msgctxt ""
"par_idN10545\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the user name to access the database.</ahelp>"
-msgstr "<ahelp hid=\".\">Zadajte uživateľské meno na prístup k databáze.</ahelp>"
+msgstr "<ahelp hid=\".\">Zadajte meno používateľa pre prístup do databázy.</ahelp>"
#. cAFEU
#: dabawiz03auth.xhp
@@ -7279,40 +10033,40 @@ msgctxt ""
msgid "Opens a submenu."
msgstr ""
-#. EAusx
+#. ffiWu
#: menufile.xhp
msgctxt ""
"menufile.xhp\n"
"par_idN105F8\n"
"help.text"
-msgid "Email Document"
+msgid "E-mail Document"
msgstr ""
-#. Qxg2W
+#. XHCkB
#: menufile.xhp
msgctxt ""
"menufile.xhp\n"
"par_idN105FC\n"
"help.text"
-msgid "Opens the default email application to send a new email. The current database file is appended as an attachment. You can enter the subject, the recipients and a mail body."
+msgid "Opens the default e-mail application to send a new e-mail. The current database file is appended as an attachment. You can enter the subject, the recipients and a mail body."
msgstr ""
-#. 9WihT
+#. sbEoh
#: menufile.xhp
msgctxt ""
"menufile.xhp\n"
"par_idN105FF\n"
"help.text"
-msgid "Report as Email"
+msgid "Report as E-mail"
msgstr ""
-#. XWAoV
+#. CrSUL
#: menufile.xhp
msgctxt ""
"menufile.xhp\n"
"par_idN10603\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the default email application to send a new email. The selected report is appended as an attachment. You can enter the subject, the recipients and a mail body. A dynamic report is exported as a copy of the database contents at the time of export.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the default e-mail application to send a new e-mail. The selected report is appended as an attachment. You can enter the subject, the recipients and a mail body. A dynamic report is exported as a copy of the database contents at the time of export.</ahelp>"
msgstr ""
#. 9cSVg
@@ -7376,7 +10130,7 @@ msgctxt ""
"par_idN10568\n"
"help.text"
msgid "<ahelp hid=\".\">Click to create a new folder within the database file.</ahelp>"
-msgstr "<ahelp hid=\".\">Zadajte uživateľské meno na prístup k databáze.</ahelp>"
+msgstr "<ahelp hid=\".\">Kliknutím vytvoríte nový priečinok v súbore databázy.</ahelp>"
#. P9r94
#: menufilesave.xhp
@@ -7430,7 +10184,7 @@ msgctxt ""
"par_idN105B9\n"
"help.text"
msgid "<ahelp hid=\".\">Click to save the form to the database file.</ahelp>"
-msgstr "<ahelp hid=\".\">Zadajte uživateľské meno na prístup k databáze.</ahelp>"
+msgstr "<ahelp hid=\".\">Kliknutím uložíte formulár do súboru databázy.</ahelp>"
#. oxGKs
#: menuinsert.xhp
@@ -8132,7 +10886,7 @@ msgctxt ""
"par_idN10551\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the user name to connect to the data source.</ahelp>"
-msgstr "<ahelp hid=\".\">Zadajte uživateľské meno na prístup k databáze.</ahelp>"
+msgstr "<ahelp hid=\".\">Zadajte meno používateľa na pripojenie k zdroju údajov.</ahelp>"
#. dQH7s
#: password.xhp
@@ -8150,7 +10904,7 @@ msgctxt ""
"par_idN1056C\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the password to connect to the data source.</ahelp>"
-msgstr "<ahelp hid=\".\">Zadajte uživateľské meno na prístup k databáze.</ahelp>"
+msgstr "<ahelp hid=\".\">Zadajte heslo na pripojenie k zdroju údajov.</ahelp>"
#. TudyG
#: password.xhp
@@ -8465,7 +11219,7 @@ msgctxt ""
"par_idN105CC\n"
"help.text"
msgid "<ahelp hid=\".\">Select the field name for the filter condition.</ahelp>"
-msgstr "<ahelp hid=\".\">Zadajte uživateľské meno na prístup k databáze.</ahelp>"
+msgstr "<ahelp hid=\".\">Vyberte názov poľa pre podmienku filtra.</ahelp>"
#. cpBwd
#: querywizard03.xhp
@@ -8501,7 +11255,7 @@ msgctxt ""
"par_idN105E6\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the value for the filter condition.</ahelp>"
-msgstr "<ahelp hid=\".\">Zadajte uživateľské meno na prístup k databáze.</ahelp>"
+msgstr "<ahelp hid=\".\">Zadajte hodnotu podmienky filtra.</ahelp>"
#. hZQwL
#: querywizard03.xhp
@@ -8798,7 +11552,7 @@ msgctxt ""
"par_idN1056B\n"
"help.text"
msgid "<ahelp hid=\".\">Select the field name for the grouping condition.</ahelp>"
-msgstr "<ahelp hid=\".\">Zadajte uživateľské meno na prístup k databáze.</ahelp>"
+msgstr "<ahelp hid=\".\">Vyberte názov poľa pre podmienku zoskupenia.</ahelp>"
#. vYSzM
#: querywizard06.xhp
@@ -8834,7 +11588,7 @@ msgctxt ""
"par_idN10579\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the value for the grouping condition.</ahelp>"
-msgstr "<ahelp hid=\".\">Zadajte uživateľské meno na prístup k databáze.</ahelp>"
+msgstr "<ahelp hid=\".\">Zadajte hodnotu podmienky zoskupenia.</ahelp>"
#. LM5AB
#: querywizard06.xhp
@@ -8888,7 +11642,7 @@ msgctxt ""
"par_idN1055A\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the alias for the field name.</ahelp>"
-msgstr "<ahelp hid=\".\">Zadajte uživateľské meno na prístup k databáze.</ahelp>"
+msgstr "<ahelp hid=\".\">Zadajte alias pre názov poľa.</ahelp>"
#. jZ6HM
#: querywizard07.xhp
@@ -8942,7 +11696,7 @@ msgctxt ""
"par_idN1055A\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the name of the query.</ahelp>"
-msgstr "<ahelp hid=\".\">Zadajte uživateľské meno na prístup k databáze.</ahelp>"
+msgstr "<ahelp hid=\".\">Zadajte názov dotazu.</ahelp>"
#. uC9Qc
#: querywizard08.xhp
@@ -11562,3 +14316,354 @@ msgctxt ""
"help.text"
msgid "<link href=\"text/shared/explorer/database/tablewizard00.xhp\" name=\"Table Wizard\">Table Wizard</link>"
msgstr "<link href=\"text/shared/explorer/database/tablewizard00.xhp\" name=\"Sprievodca tabuľkou\">Sprievodca tabuľkou</link>"
+
+#. PAxTq
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"tit\n"
+"help.text"
+msgid "Toolbars"
+msgstr "Panely nástrojov"
+
+#. BJ5pd
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10541\n"
+"help.text"
+msgid "<variable id=\"toolbars\"><link href=\"text/shared/explorer/database/toolbars.xhp\">Toolbars</link></variable>"
+msgstr ""
+
+#. B3mEW
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10545\n"
+"help.text"
+msgid "In a database file window, you can see the following toolbars."
+msgstr ""
+
+#. ZNxCw
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10548\n"
+"help.text"
+msgid "Table"
+msgstr "Tabuľka"
+
+#. JWHfj
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10554\n"
+"help.text"
+msgid "Open database object"
+msgstr ""
+
+#. 4fvFG
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10558\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the selected table so you can enter, edit, or delete records.</ahelp>"
+msgstr "<ahelp hid=\".\">Otvorí vybraný dotaz tak, aby ste mohli zadávať, upravovať alebo zmazať záznamy.</ahelp>"
+
+#. LFKBo
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN1056F\n"
+"help.text"
+msgid "Edit"
+msgstr "Upraviť"
+
+#. tLLAy
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10573\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the selected table so you can change the structure.</ahelp>"
+msgstr ""
+
+#. FEBzp
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN1058A\n"
+"help.text"
+msgid "Delete"
+msgstr "Zmazať"
+
+#. PDZsk
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN1058E\n"
+"help.text"
+msgid "<ahelp hid=\".\">Deletes the selected table.</ahelp>"
+msgstr "<ahelp hid=\".\">Odstráni vybraného používateľa.</ahelp>"
+
+#. m7BX3
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN105A5\n"
+"help.text"
+msgid "Rename"
+msgstr "Premenovať"
+
+#. B596w
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN105A9\n"
+"help.text"
+msgid "<ahelp hid=\".\">Renames the selected table.</ahelp>"
+msgstr "<ahelp hid=\".\">Odstráni vybraného používateľa.</ahelp>"
+
+#. LEWCs
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN105B8\n"
+"help.text"
+msgid "Query"
+msgstr "Dotaz"
+
+#. VT3EG
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN105C4\n"
+"help.text"
+msgid "Open database object"
+msgstr ""
+
+#. 2cEFv
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN105C8\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the selected query so you can enter, edit, or delete records.</ahelp>"
+msgstr "<ahelp hid=\".\">Otvorí vybraný dotaz tak, aby ste mohli zadávať, upravovať alebo zmazať záznamy.</ahelp>"
+
+#. yVNxZ
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN105DF\n"
+"help.text"
+msgid "Edit"
+msgstr "Upraviť"
+
+#. kGSTA
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN105E3\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the selected query so you can change the structure.</ahelp>"
+msgstr ""
+
+#. W75xu
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN105FA\n"
+"help.text"
+msgid "Delete"
+msgstr "Zmazať"
+
+#. XJQBJ
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN105FE\n"
+"help.text"
+msgid "<ahelp hid=\".\">Deletes the selected query.</ahelp>"
+msgstr "<ahelp hid=\".\">Odstráni vybraného používateľa.</ahelp>"
+
+#. bC56u
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10615\n"
+"help.text"
+msgid "Rename"
+msgstr "Premenovať"
+
+#. GDAZR
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10619\n"
+"help.text"
+msgid "<ahelp hid=\".\">Renames the selected query.</ahelp>"
+msgstr "<ahelp hid=\".\">Odstráni vybraného používateľa.</ahelp>"
+
+#. mzY5g
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10628\n"
+"help.text"
+msgid "Form"
+msgstr "Formulár"
+
+#. BXrRw
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10634\n"
+"help.text"
+msgid "Open database object"
+msgstr ""
+
+#. GJDxB
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10638\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the selected form so you can enter, edit, or delete records.</ahelp>"
+msgstr "<ahelp hid=\".\">Otvorí vybraný dotaz tak, aby ste mohli zadávať, upravovať alebo zmazať záznamy.</ahelp>"
+
+#. 7f3E9
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN1064F\n"
+"help.text"
+msgid "Edit"
+msgstr "Upraviť"
+
+#. ZmiNz
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10653\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the selected form so you can change the layout.</ahelp>"
+msgstr ""
+
+#. xCBQ3
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN1066A\n"
+"help.text"
+msgid "Delete"
+msgstr "Zmazať"
+
+#. p5bD4
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN1066E\n"
+"help.text"
+msgid "<ahelp hid=\".\">Deletes the selected form.</ahelp>"
+msgstr "<ahelp hid=\".\">Odstráni vybraného používateľa.</ahelp>"
+
+#. Jrqh7
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10685\n"
+"help.text"
+msgid "Rename"
+msgstr "Premenovať"
+
+#. CLTV2
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10689\n"
+"help.text"
+msgid "<ahelp hid=\".\">Renames the selected form.</ahelp>"
+msgstr "<ahelp hid=\".\">Odstráni vybraného používateľa.</ahelp>"
+
+#. tkXGC
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN10698\n"
+"help.text"
+msgid "Report"
+msgstr "Správa"
+
+#. GMWLb
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN106A4\n"
+"help.text"
+msgid "Open database object"
+msgstr ""
+
+#. BzwcK
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN106A8\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the selected report so you can enter, edit, or delete records.</ahelp>"
+msgstr "<ahelp hid=\".\">Otvorí vybraný dotaz tak, aby ste mohli zadávať, upravovať alebo zmazať záznamy.</ahelp>"
+
+#. sLPTD
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN106BF\n"
+"help.text"
+msgid "Edit"
+msgstr "Upraviť"
+
+#. DF32e
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN106C3\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the selected report so you can change the layout.</ahelp>"
+msgstr ""
+
+#. FGuUB
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN106DA\n"
+"help.text"
+msgid "Delete"
+msgstr "Zmazať"
+
+#. xikUv
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN106DE\n"
+"help.text"
+msgid "<ahelp hid=\".\">Deletes the selected report.</ahelp>"
+msgstr "<ahelp hid=\".\">Odstráni vybraného používateľa.</ahelp>"
+
+#. kmUBC
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN106F5\n"
+"help.text"
+msgid "Rename"
+msgstr "Premenovať"
+
+#. CgE7D
+#: toolbars.xhp
+msgctxt ""
+"toolbars.xhp\n"
+"par_idN106F9\n"
+"help.text"
+msgid "<ahelp hid=\".\">Renames the selected report.</ahelp>"
+msgstr "<ahelp hid=\".\">Odstráni vybraného používateľa.</ahelp>"
diff --git a/source/sk/helpcontent2/source/text/shared/guide.po b/source/sk/helpcontent2/source/text/shared/guide.po
index 0f9cb252b03..80b0d0c4d18 100644
--- a/source/sk/helpcontent2/source/text/shared/guide.po
+++ b/source/sk/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-08-17 12:39+0200\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
"PO-Revision-Date: 2020-09-08 16:28+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Slovak <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedguide/sk/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542197410.000000\n"
#. iharT
@@ -907,32 +907,32 @@ msgctxt ""
msgid "<bookmark_value>backgrounds; defining colors/pictures</bookmark_value><bookmark_value>colors; backgrounds</bookmark_value><bookmark_value>pictures; backgrounds</bookmark_value><bookmark_value>pages; backgrounds in all applications</bookmark_value><bookmark_value>watermarks</bookmark_value><bookmark_value>text, see also text documents, paragraphs and characters</bookmark_value>"
msgstr "<bookmark_value>pozadie; voľba farby/pozadia</bookmark_value><bookmark_value>farby, pozadia</bookmark_value><bookmark_value>obrázky pozadia</bookmark_value><bookmark_value>stránky; pozadie všetkých aplikácií</bookmark_value><bookmark_value>vodotlač</bookmark_value><bookmark_value>text, pozrite tiež textové dokumenty, odseky a znaky</bookmark_value>"
-#. C7HBu
+#. zLwi7
#: background.xhp
msgctxt ""
"background.xhp\n"
"hd_id3149346\n"
"help.text"
-msgid "<variable id=\"background\"><link href=\"text/shared/guide/background.xhp\" name=\"Defining Graphics or Colors in the Background of Pages (Watermark)\">Defining Graphics or Colors in the Background of Pages (Watermark)</link></variable>"
-msgstr ""
+msgid "<variable id=\"background\"><link href=\"text/shared/guide/background.xhp\" name=\"Defining Graphics or Colors in the Background of Pages (Watermark)\">Defining Graphics or Colors in the Background of Pages (Watermark)</link> </variable>"
+msgstr "<variable id=\"background\"><link href=\"text/shared/guide/background.xhp\" name=\"Defining Graphics or Colors in the Background of Pages (Watermark)\">Definícia grafiky alebo farieb na pozadí stránok (vodotlač)</link> </variable>"
-#. Fa7Pn
+#. S9E8h
#: background.xhp
msgctxt ""
"background.xhp\n"
"par_id3153878\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style</menuitem>."
-msgstr ""
+msgid "Choose <emph>Format - Page</emph>."
+msgstr "Zvoľte <emph>Formát - Stránka</emph>."
-#. DjYpm
+#. XDxkU
#: background.xhp
msgctxt ""
"background.xhp\n"
"par_id3149581\n"
"help.text"
-msgid "On the <emph>Area</emph> tab page, select a background color or a background graphic."
-msgstr ""
+msgid "On the <emph>Background</emph> tab page, select a background color or a background graphic."
+msgstr "Na záložke <emph>Pozadie</emph> vyberte farbu pozadia alebo obrázok na pozadí."
#. WCBmU
#: background.xhp
@@ -943,14 +943,14 @@ msgctxt ""
msgid "In spreadsheets this background appears only in the print behind the cells not formatted elsewhere."
msgstr "V listoch zošitu sa tento podklad objavuje len za bunkami, ktoré nie sú formátované."
-#. v5EAG
+#. jQFQC
#: background.xhp
msgctxt ""
"background.xhp\n"
"par_id3156180\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Background tab page\"><emph>Area</emph> tab page</link>"
-msgstr ""
+msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Background tab page\"><emph>Background</emph> tab page</link>"
+msgstr "<link href=\"text/shared/01/05030600.xhp\" name=\"Záložka pozadia\">Záložka <emph>pozadia</emph></link>"
#. BDPLL
#: background.xhp
@@ -2752,13 +2752,13 @@ msgctxt ""
msgid "If the file is not stored in a CMIS server, choose <item type=\"menuitem\">File - Save Remote</item> or long-click the <emph>Save</emph> icon and select <emph>Save Remote File</emph>."
msgstr ""
-#. DaEPC
+#. ryFLE
#: cmis-remote-files.xhp
msgctxt ""
"cmis-remote-files.xhp\n"
"par_id170820161605428591\n"
"help.text"
-msgid "The <emph>Remote files</emph> dialog appears. Select the remote file server."
+msgid "The <emph>Remote files</emph> dialog appears"
msgstr ""
#. wQjzG
@@ -6523,14 +6523,14 @@ msgctxt ""
msgid "Click the <emph>Save</emph> or <emph>Save As</emph> icon <image id=\"img_id3153159\" src=\"cmd/sc_save.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153159\">Icon</alt></image> to save the query."
msgstr ""
-#. CFL3H
+#. WiVpi
#: data_enter_sql.xhp
msgctxt ""
"data_enter_sql.xhp\n"
"par_id3153223\n"
"help.text"
-msgid "<link href=\"text/sdatabase/02010100.xhp\" name=\"Query Design\">Query Design</link>"
-msgstr ""
+msgid "<link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Design\">Query Design</link>"
+msgstr "<link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Návrh dotazu\">Návrh dotazu</link>"
#. 2ArGc
#: data_forms.xhp
@@ -7081,14 +7081,14 @@ msgctxt ""
msgid "Click <emph>Create Query in Design View</emph>."
msgstr "Kliknite na <emph>Vytvoriť nový dotaz v režime návrhu</emph>."
-#. xkwQQ
+#. 9nBBo
#: data_queries.xhp
msgctxt ""
"data_queries.xhp\n"
"par_idN1065F\n"
"help.text"
-msgid "You see the <link href=\"text/sdatabase/02010100.xhp\">Query Design window</link>."
-msgstr ""
+msgid "You see the <link href=\"text/shared/explorer/database/02010100.xhp\">Query Design window</link>."
+msgstr "Otvorí sa okno <link href=\"text/shared/explorer/database/02010100.xhp\">Návrh dotazu</link>."
#. xGFGr
#: data_register.xhp
@@ -7747,14 +7747,14 @@ msgctxt ""
msgid "Enter the filter conditions into one or several fields. Note that if you enter filter conditions into several fields, all of the entered conditions must match (Boolean AND)."
msgstr "Zadajte podmienky filtru do jedného či viacerých polí. Pokiaľ zadáte podmienky do niekoľkých polí, musia platiť všetky zadané podmienky (booleovské AND)."
-#. sNJBm
+#. FjhEB
#: data_search2.xhp
msgctxt ""
"data_search2.xhp\n"
"par_id3149481\n"
"help.text"
-msgid "More information about wildcards and operators can be found in <link href=\"text/sdatabase/02010100.xhp\" name=\"Query Design\">Query Design</link>."
-msgstr ""
+msgid "More information about wildcards and operators can be found in <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Design\">Query Design</link>."
+msgstr "Viac informácií o zástupných znakoch a operátoroch nájdete v časti <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Návrh dotazu\">Návrh dotazu</link>."
#. cEDEo
#: data_search2.xhp
@@ -7963,14 +7963,14 @@ msgctxt ""
msgid "<variable id=\"data_tables\"><link href=\"text/shared/guide/data_tables.xhp\">Working with Tables</link></variable>"
msgstr "<variable id=\"data_tables\"><link href=\"text/shared/guide/data_tables.xhp\">Práca s tabuľkami</link></variable>"
-#. A5KzF
+#. xEHUC
#: data_tables.xhp
msgctxt ""
"data_tables.xhp\n"
"par_idN10617\n"
"help.text"
-msgid "Data is stored in tables. As an example, your system address book that you use for your email addresses is a table of the address book database. Each address is a data record, presented as a row in that table. The data records consist of data fields, for example the first and the last name fields and the email field."
-msgstr ""
+msgid "Data is stored in tables. As an example, your system address book that you use for your e-mail addresses is a table of the address book database. Each address is a data record, presented as a row in that table. The data records consist of data fields, for example the first and the last name fields and the e-mail field."
+msgstr "Údaje sa ukladajú v tabuľkách. Napr. databáza kontaktov, v ktorej máte uložené e-mailové kontakty, je tabuľka v databáze. Každá adresa predstavuje dátový záznam, čiže jeden riadok v tejto tabuľke. Dátové záznamy sa skladajú z dátových polí, ako napr. meno, priezvisko či e-mail."
#. No5nx
#: data_tables.xhp
@@ -8107,14 +8107,14 @@ msgctxt ""
msgid "Click <emph>Create Table View</emph>."
msgstr "Kliknite na <emph>Vytvoriť pohľad na tabuľku</emph>."
-#. QEHKK
+#. oUbtR
#: data_tables.xhp
msgctxt ""
"data_tables.xhp\n"
"par_idN10795\n"
"help.text"
-msgid "You see the View Design window, which is almost the same as the <link href=\"text/sdatabase/020010100.xhp\">Query Design window</link>."
-msgstr ""
+msgid "You see the View Design window, which is almost the same as the <link href=\"text/shared/explorer/database/02010100.xhp\">Query Design window</link>."
+msgstr "Uvidíte okno s Návrhom vzhľadu, ktoré je rovnaké ako okno <link href=\"text/shared/explorer/database/02010100.xhp\">Návrh dotazu</link>."
#. bTx8G
#: data_view.xhp
@@ -8332,14 +8332,14 @@ msgctxt ""
msgid "Queries"
msgstr "Dotazy"
-#. DwEUz
+#. jQrME
#: database_main.xhp
msgctxt ""
"database_main.xhp\n"
"par_id3125864\n"
"help.text"
-msgid "<link href=\"text/sdatabase/02000000.xhp\" name=\"Create new query or table view, edit query structure\">Create new query or table view, edit query structure</link>"
-msgstr ""
+msgid "<link href=\"text/shared/explorer/database/02000000.xhp\" name=\"Create new query or table view, edit query structure\">Create new query or table view, edit query structure</link>"
+msgstr "<link href=\"text/shared/explorer/database/02000000.xhp\" name=\"Vytvorenie nového dotazu alebo pohľadu, úprava štruktúry dotazu\">Vytvorenie nového dotazu alebo pohľadu, úprava štruktúry dotazu</link>"
#. A3f6p
#: database_main.xhp
@@ -8683,13 +8683,13 @@ msgctxt ""
msgid "When you receive a signed document, and the software reports that the signature is valid, this does not mean that you can be absolutely sure that the document is the same that the sender has sent. Signing documents with software certificates is not a perfectly secure method. Numerous ways are possible to circumvent the security features."
msgstr "Keď obdržíte podpísaný dokument a program oznámi, že je podpis platný, nemusí to znamenať absolútnu istotu, že ide o ten istý dokument, ktorý poslal odosielateľ. Podpisovanie dokumentov digitálnymi certifikátmi nie je stopercentne bezpečná metóda. Existujú spôsoby, ako toto zabezpečenie obísť."
-#. HbiMb
+#. cMAMH
#: digital_signatures.xhp
msgctxt ""
"digital_signatures.xhp\n"
"par_id7953123\n"
"help.text"
-msgid "Example: Think about someone who wants to camouflage his identity to be a sender from your bank. He can easily get a certificate using a false name, then send you any signed email pretending he is working for your bank. You will get that email, and the email or the document within has the \"valid signed\" icon."
+msgid "Example: Think about someone who wants to camouflage his identity to be a sender from your bank. He can easily get a certificate using a false name, then send you any signed e-mail pretending he is working for your bank. You will get that e-mail, and the e-mail or the document within has the \"valid signed\" icon."
msgstr ""
#. DGz9C
@@ -10627,41 +10627,41 @@ msgctxt ""
msgid "Click <emph>OK</emph>."
msgstr "Kliknite na <emph>OK</emph>."
-#. Kw8ax
+#. EtTc9
#: email.xhp
msgctxt ""
"email.xhp\n"
"tit\n"
"help.text"
-msgid "Sending Documents as Email"
-msgstr ""
+msgid "Sending Documents as E-mail"
+msgstr "Odoslanie dokumentu ako e-mail."
-#. noFBE
+#. vsHuY
#: email.xhp
msgctxt ""
"email.xhp\n"
"bm_id3153345\n"
"help.text"
-msgid "<bookmark_value>documents; sending as email</bookmark_value><bookmark_value>sending; documents as email</bookmark_value><bookmark_value>email attachments</bookmark_value><bookmark_value>files; sending as email</bookmark_value><bookmark_value>text documents;sending as email</bookmark_value><bookmark_value>spreadsheets; sending as email</bookmark_value><bookmark_value>drawings; sending as email</bookmark_value><bookmark_value>presentations; sending as email</bookmark_value><bookmark_value>attachments in emails</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>documents; sending as e-mail</bookmark_value><bookmark_value>sending; documents as e-mail</bookmark_value><bookmark_value>e-mail attachments</bookmark_value><bookmark_value>files; sending as e-mail</bookmark_value><bookmark_value>text documents;sending as e-mail</bookmark_value><bookmark_value>spreadsheets; sending as e-mail</bookmark_value><bookmark_value>drawings; sending as e-mail</bookmark_value><bookmark_value>presentations; sending as e-mail</bookmark_value><bookmark_value>attachments in e-mails</bookmark_value>"
+msgstr "<bookmark_value>dokumenty; odoslať ako e-mail</bookmark_value><bookmark_value>odoslanie; dokumenty ako e-mail</bookmark_value><bookmark_value>e-mailové prílohy</bookmark_value><bookmark_value>súbory; odoslať ako e-mail</bookmark_value><bookmark_value>textové dokumenty;odoslať ako e-mail</bookmark_value><bookmark_value>tabuľky; odoslať ako e-mail</bookmark_value><bookmark_value>kresby; odoslať ako e-mail</bookmark_value><bookmark_value>prezentácia; odoslať ako e-mail</bookmark_value><bookmark_value>prílohy v e-mailoch</bookmark_value>"
-#. CU2Ym
+#. YbCCD
#: email.xhp
msgctxt ""
"email.xhp\n"
"hd_id3153345\n"
"help.text"
-msgid "<variable id=\"email\"><link href=\"text/shared/guide/email.xhp\" name=\"Sending Documents as Email\">Sending Documents as Email</link></variable>"
-msgstr ""
+msgid "<variable id=\"email\"><link href=\"text/shared/guide/email.xhp\" name=\"Sending Documents as E-mail\">Sending Documents as E-mail</link></variable>"
+msgstr "<variable id=\"email\"><link href=\"text/shared/guide/email.xhp\" name=\"Odosielanie dokumentov vo forme e-mailu\">Odosielanie dokumentov vo forme e-mailu</link></variable>"
-#. Z3E7r
+#. dsSbC
#: email.xhp
msgctxt ""
"email.xhp\n"
"par_id3154897\n"
"help.text"
-msgid "Working in $[officename], you can send the current document as an email attachment."
-msgstr ""
+msgid "Working in $[officename], you can send the current document as an e-mail attachment."
+msgstr "Pri práci v $[officename] môžete odosielať aktuálny dokument ako prílohu e-mailu."
#. 8jsBd
#: email.xhp
@@ -10681,23 +10681,23 @@ msgctxt ""
msgid "$[officename] opens your default email program.<switchinline select=\"sys\"><caseinline select=\"UNIX\"> If you want to send the current document with another email program, you can select the program to use with <emph>Internet - Email</emph> in the Options dialog box.</caseinline></switchinline>"
msgstr ""
-#. maP2B
+#. 3vDxY
#: email.xhp
msgctxt ""
"email.xhp\n"
"par_id3150986\n"
"help.text"
-msgid "In your email program, enter the recipient, subject and any text you want to add, then send the email."
-msgstr ""
+msgid "In your e-mail program, enter the recipient, subject and any text you want to add, then send the e-mail."
+msgstr "Vo vašom e-mailovom programe zadajte príjemcu, predmet a text správy, potom e-mail odošlite."
-#. XdVXq
+#. 2WZb7
#: email.xhp
msgctxt ""
"email.xhp\n"
"par_id3595385\n"
"help.text"
-msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - Email as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - Email as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - Email as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - Email as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
-msgstr ""
+msgid "In case you want to send the e-mail to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.<br/>For a text document, choose <item type=\"menuitem\">File - Send - E-mail as Microsoft Word</item>. For a spreadsheet, choose <item type=\"menuitem\">File - Send - E-mail as Microsoft Excel</item>. And for a presentation, choose <item type=\"menuitem\">File - Send - E-mail as Microsoft PowerPoint</item>. <br/>If you want to send the document as a read-only file, choose <item type=\"menuitem\">File - Send - E-mail as PDF</item>.<br/>These commands do not change your current document. Only a temporary copy is created and sent."
+msgstr "V prípade, že chcete poslať e-mail príjemcovi, ktorý používa software, ktorý nie je schopný čítať formát otvoreného dokumentu, zvolený dokument môžete odoslať v inom často používanom proprietárnom formáte<br/>Pre textový dokument zvoľte<item type=\"menuitem\">Súbor - Odoslať - Dokument ako Microsoft Word</item>. Pre zošit zvoľte <item type=\"menuitem\">Súbor - Odoslať - Dokument ako Microsoft Excel</item>. A pre prezentáciu zvoľte <item type=\"menuitem\">Súbor - Odoslať - Dokument ako Microsoft PowerPoint</item>. <br/>Ak chcete odoslať dokument iba na čítanie, zvoľte<item type=\"menuitem\">Súbor - Odoslať - Dokument ako PDF</item>.<br/>Tieto príkazy nezmenia váš aktuálny dokument, iba dočasne vytvoria jeho kópiu, ktorú odošlú."
#. J84BK
#: error_report.xhp
@@ -10807,14 +10807,14 @@ msgctxt ""
msgid "You will not get an answer to your error report. If you need support, please visit the <link href=\"text/shared/main0108.xhp\">support forum</link> on the Internet."
msgstr "Na oznámenie o chybe nedostanete odpoveď. Ak potrebujete podporu, navštívte prosím<link href=\"text/shared/main0108.xhp\">fórum podpory</link> na Internete."
-#. yhvCf
+#. kz5CY
#: error_report.xhp
msgctxt ""
"error_report.xhp\n"
"par_id3153526\n"
"help.text"
-msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by email, should additional information be required. By default this box is not marked, so you will not get any email."
-msgstr ""
+msgid "You may choose to respond to questions that the developers may have about the reported error. Mark the check box if you want to be contacted by e-mail, should additional information be required. By default this box is not marked, so you will not get any e-mail."
+msgstr "Ak budete chcieť, môžete vývojárom zodpovedať prípadné dotazy o chybe. Ak nám dovolíte kontaktovať vás elektronickou poštou v prípade potreby doplňujúcich informácií, zaškrtnite prosím toto políčko. Štandardne táto voľba nie je zvolená, takže od nás nedostanete žiadne správy."
#. C7FWC
#: error_report.xhp
@@ -12778,13 +12778,13 @@ msgctxt ""
msgid "When you include hyperlinks, two factors must be taken into account: whether they are set as relative or absolute on saving, and whether or not the file is present."
msgstr "Pri vkladaní hypertextových odkazov musíte myslieť na dva faktory: či je odkaz relatívny alebo absolútny a či je alebo nie je daný súbor prítomný."
-#. KFh7J
+#. swmJ3
#: hyperlink_rel_abs.xhp
msgctxt ""
"hyperlink_rel_abs.xhp\n"
"par_id3147008\n"
"help.text"
-msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010200.xhp\" name=\"Load/Save - General\"><emph>Load/Save - General</emph></link> and specify in the <emph>Save URLs relative to</emph> field if $[officename] creates <link href=\"text/shared/00/00000005.xhp#saving\" name=\"relative or absolute hyperlinks\">relative or absolute hyperlinks</link>. Relative linking is only possible when the document you are working on and the link destination are on the same drive."
+msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010200.xhp\" name=\"Load/Save - General\"><emph>Load/Save - General</emph></link> and specify in the <emph>Save URLs relative to</emph> field if $[officename] creates <link href=\"text/shared/00/00000005.xhp#speichern\" name=\"relative or absolute hyperlinks\">relative or absolute hyperlinks</link>. Relative linking is only possible when the document you are working on and the link destination are on the same drive."
msgstr ""
#. Ue6zh
@@ -13651,13 +13651,13 @@ msgctxt ""
msgid "This function allows you to insert special characters, such as check marks, boxes, and telephone symbols, into your text."
msgstr "Táto funkcia umožňuje vložiť do textu špeciálna znaky, napríklad symboly zaškrtnutia a telefónu."
-#. oBfFd
+#. N5gfA
#: insert_specialchar.xhp
msgctxt ""
"insert_specialchar.xhp\n"
"par_id3155535\n"
"help.text"
-msgid "To view a repertoire of all characters, choose <menuitem>Insert - Special Character</menuitem>."
+msgid "To view a selection of all characters, choose <menuitem>Insert - Special Character</menuitem>."
msgstr ""
#. fFAT9
@@ -20077,13 +20077,13 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/qrcode.xhp\" name=\"QR Code\">QR Code</link>"
msgstr ""
-#. YdWKF
+#. Q8ujF
#: qrcode.xhp
msgctxt ""
"qrcode.xhp\n"
"par_id381566315781439\n"
"help.text"
-msgid "Generate QR Code for any text or URL."
+msgid "<ahelp hid=\".\">Generate QR Code for any text or URL.</ahelp>"
msgstr ""
#. SzeNM
@@ -20113,13 +20113,13 @@ msgctxt ""
msgid "URL or Text"
msgstr ""
-#. ikC8E
+#. CxDiM
#: qrcode.xhp
msgctxt ""
"qrcode.xhp\n"
"par_id251566316519649\n"
"help.text"
-msgid "The text from which to generate the QR code."
+msgid "<ahelp hid=\".\">The text from which to generate the QR code.</ahelp>"
msgstr ""
#. 6mj5K
@@ -20149,40 +20149,40 @@ msgctxt ""
msgid "There are four standard error correction values."
msgstr ""
-#. LdLRP
+#. B7CfZ
#: qrcode.xhp
msgctxt ""
"qrcode.xhp\n"
"par_id271566316757549\n"
"help.text"
-msgid "<emph>Low</emph>: 7% of codewords can be restored."
+msgid "<emph>Low</emph>: <ahelp hid=\".\">7% of codewords can be restored.</ahelp>"
msgstr ""
-#. gNLdh
+#. Tp5Fa
#: qrcode.xhp
msgctxt ""
"qrcode.xhp\n"
"par_id751566316834436\n"
"help.text"
-msgid "<emph>Medium</emph>: 15% of codewords can be restored."
+msgid "<emph>Medium</emph>: <ahelp hid=\".\">15% of codewords can be restored.</ahelp>"
msgstr ""
-#. GQtTJ
+#. 45uQ6
#: qrcode.xhp
msgctxt ""
"qrcode.xhp\n"
"par_id481566316843503\n"
"help.text"
-msgid "<emph>Quartile</emph>: 25% of codewords can be restored."
+msgid "<emph>Quartile</emph>: <ahelp hid=\".\">25% of codewords can be restored.</ahelp>"
msgstr ""
-#. QBceY
+#. sP2BA
#: qrcode.xhp
msgctxt ""
"qrcode.xhp\n"
"par_id641566316849901\n"
"help.text"
-msgid "<emph>High</emph>: 30% of codewords can be restored."
+msgid "<emph>High</emph>: <ahelp hid=\".\">30% of codewords can be restored.</ahelp>"
msgstr ""
#. F32vf
@@ -20194,13 +20194,13 @@ msgctxt ""
msgid "Border"
msgstr ""
-#. wz9kT
+#. jzJW7
#: qrcode.xhp
msgctxt ""
"qrcode.xhp\n"
"par_id981566316947064\n"
"help.text"
-msgid "The width in dots of the border surrounding the QR code."
+msgid "<ahelp hid=\".\">The width in dots of the border surrounding the QR code.</ahelp>"
msgstr ""
#. kZPNW
@@ -20401,22 +20401,22 @@ msgctxt ""
msgid "The <emph>Redacted Export</emph> button box has two options:"
msgstr ""
-#. iFMK3
+#. pBqFG
#: redaction.xhp
msgctxt ""
"redaction.xhp\n"
"par_id551562796791417\n"
"help.text"
-msgid "<emph>Redacted Export (Black)</emph>: finalize your document by converting the semitransparent redaction shapes to opaque black and export as pixels in the PDF file."
+msgid "<emph>Redacted Export (Black)</emph>: finalize your document by converting the semitransparent redaction shapes to opaque black and export as a pixellized PDF file."
msgstr ""
-#. HSvWX
+#. Z5u4M
#: redaction.xhp
msgctxt ""
"redaction.xhp\n"
"par_id191562796822685\n"
"help.text"
-msgid "<emph>Redacted Export (White)</emph>: finalize your document by converting the semitransparent redaction shapes to opaque white shapes, and export as pixels in the PDF file."
+msgid "<emph>Redacted Export (White)</emph>: finalize your document by converting the semitransparent redaction shapes to opaque white shapes, and export as a pixellized PDF file."
msgstr ""
#. 2w5mE
@@ -20500,14 +20500,14 @@ msgctxt ""
msgid "The edited document comes back to you, and you can incorporate or ignore the suggestions of the two reviewers."
msgstr "Upravený dokument sa vráti späť k vám a vy môžete prijať alebo ignorovať návrhy oboch osôb."
-#. QC87c
+#. SJz3q
#: redlining.xhp
msgctxt ""
"redlining.xhp\n"
"par_id3146957\n"
"help.text"
-msgid "Let's say you also emailed a copy of the report to a good friend and colleague who has done research on a similar topic in the past. You asked for a few suggestions, and the document is now returned by email with your colleague's suggestions."
-msgstr ""
+msgid "Let's say you also e-mailed a copy of the report to a good friend and colleague who has done research on a similar topic in the past. You asked for a few suggestions, and the document is now returned by e-mail with your colleague's suggestions."
+msgstr "Povedzme, že ste kópiu reportáže zároveň odoslali elektronickou poštou svojmu priateľovi a kolegovi, ktorý sa v minulosti zaoberal rovnakou témou. Požiadali ste ho o niekoľko ďalších námetov a teraz vám priateľ dokumenty so svojimi pripomienkami poslal späť."
#. CoW6n
#: redlining.xhp
@@ -21058,13 +21058,13 @@ msgctxt ""
msgid "<bookmark_value>changes; protecting</bookmark_value><bookmark_value>protecting; recorded changes</bookmark_value><bookmark_value>records; protecting</bookmark_value><bookmark_value>review function;protecting records</bookmark_value>"
msgstr "<bookmark_value>zmeny; ochrana</bookmark_value><bookmark_value>ochrana; zaznamenané zmeny</bookmark_value><bookmark_value>záznamy; ochrana</bookmark_value><bookmark_value>funkcie recenzie;ochrana záznamov</bookmark_value>"
-#. Tj23h
+#. 4cTt7
#: redlining_protect.xhp
msgctxt ""
"redlining_protect.xhp\n"
"hd_id3159201\n"
"help.text"
-msgid "<variable id=\"redlining_protect\"><link href=\"text/shared/guide/redlining_protect.xhp\" name=\"Protecting Changes\">Protecting Changes</link></variable>"
+msgid "<variable id=\"redlining_protect\"><link href=\"text/shared/guide/redlining_protect.xhp\" name=\"Protecting Changes\">Protecting Changes</link> </variable>"
msgstr ""
#. jVeUw
@@ -24361,23 +24361,23 @@ msgctxt ""
msgid "Switching Between Insert Mode and Overwrite Mode"
msgstr "Prepnutie Medzi Režimom Vkladania a Režimom Prepisovania"
-#. FrywY
+#. BzPEA
#: textmode_change.xhp
msgctxt ""
"textmode_change.xhp\n"
"bm_id3159233\n"
"help.text"
-msgid "<bookmark_value>text; overwriting or inserting</bookmark_value> <bookmark_value>overwrite mode</bookmark_value> <bookmark_value>insert mode for entering text</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>text; overwriting or inserting</bookmark_value><bookmark_value>overwrite mode</bookmark_value><bookmark_value>insert mode for entering text</bookmark_value>"
+msgstr "<bookmark_value>text; prepísanie alebo vkladanie</bookmark_value><bookmark_value>prepisovanie; režim pre text</bookmark_value><bookmark_value>vkladanie; režim pre text</bookmark_value>"
-#. AWrGk
+#. 7ST7D
#: textmode_change.xhp
msgctxt ""
"textmode_change.xhp\n"
"hd_id3159233\n"
"help.text"
-msgid "<variable id=\"textmode_change\"> <link href=\"text/shared/guide/textmode_change.xhp\" name=\"Switching Between Insert Mode and Overwrite Mode\">Switching Between Insert Mode and Overwrite Mode</link> </variable>"
-msgstr ""
+msgid "<variable id=\"textmode_change\"><link href=\"text/shared/guide/textmode_change.xhp\" name=\"Switching Between Insert Mode and Overwrite Mode\">Switching Between Insert Mode and Overwrite Mode</link></variable>"
+msgstr "<variable id=\"textmode_change\"><link href=\"text/shared/guide/textmode_change.xhp\" name=\"Prepnutie Medzi Režimom Vkladanie a Režimom Prepisovania\">Prepnutie Medzi Režimom Vkladanie a Režimom Prepisovania</link></variable>"
#. qhFEZ
#: textmode_change.xhp
@@ -24388,14 +24388,14 @@ msgctxt ""
msgid "With the keyboard:"
msgstr "Pomocou klávesnice:"
-#. beikb
+#. 3GsGt
#: textmode_change.xhp
msgctxt ""
"textmode_change.xhp\n"
"par_id3153031\n"
"help.text"
-msgid "Press <keycode>Insert</keycode> to toggle between overwrite mode and insert mode. The current mode is displayed on the Status Bar. <switchinline select=\"appl\"><caseinline select=\"CALC\"> The text cursor must be enabled in the cell or in the input line.</caseinline></switchinline>"
-msgstr ""
+msgid "Press Insert to toggle between overwrite mode and insert mode. The current mode is displayed on the Status Bar.<switchinline select=\"appl\"><caseinline select=\"CALC\"> The text cursor must be enabled in the cell or in the input line. </caseinline></switchinline>"
+msgstr "Stlačením klávesy Insert prepínate medzi režimom prepisovania a režimom vkladania. Aktuálny režim je zobrazený v stavovom riadku. <switchinline select=\"appl\"><caseinline select=\"CALC\">Musí byť aktívny textový kurzor v bunke alebo vo vstupnom riadku.</caseinline></switchinline>"
#. Hd4Vg
#: textmode_change.xhp
@@ -24415,41 +24415,41 @@ msgctxt ""
msgid "On the Status Bar, click on the area indicating the current mode in order to switch to the other mode:"
msgstr "V stavovom riadku kliknite na časť, kde je zobrazený aktuálny režim. Tým zmeníte režim:"
-#. DG4fD
+#. XAHAp
#: textmode_change.xhp
msgctxt ""
"textmode_change.xhp\n"
"par_id3145673\n"
"help.text"
-msgid "<emph>Insert</emph>"
-msgstr ""
+msgid "<emph>INSRT</emph>"
+msgstr "<emph>INSRT</emph>"
-#. DjbYz
+#. ZLXCM
#: textmode_change.xhp
msgctxt ""
"textmode_change.xhp\n"
"par_id3154307\n"
"help.text"
-msgid "<switchinline select=\"sys\"> <caseinline select=\"MAC\">Insert mode is active.</caseinline> <defaultinline>The area in the status bar is blank, when Insert mode is active.</defaultinline> </switchinline> The text cursor is a blinking vertical line. Click on the area to activate the overwrite mode."
-msgstr ""
+msgid "Insert mode is enabled. <switchinline select=\"appl\"><caseinline select=\"WRITER\">The text cursor is a blinking vertical line. </caseinline></switchinline>Click on the area to enable the overwrite mode."
+msgstr "Je aktívny režim vkladania. <switchinline select=\"appl\"><caseinline select=\"WRITER\"> Textový kurzor je blikajúca zvislá čiara. </caseinline></switchinline>Kliknutím na túto oblasť prepnete na režim prepisovania."
-#. XFgYi
+#. n8G6G
#: textmode_change.xhp
msgctxt ""
"textmode_change.xhp\n"
"par_id3150984\n"
"help.text"
-msgid "<emph>Overwrite</emph>"
-msgstr ""
+msgid "<emph>OVER</emph>"
+msgstr "<emph>OVER</emph>"
-#. idAmv
+#. YQKDi
#: textmode_change.xhp
msgctxt ""
"textmode_change.xhp\n"
"par_id3148491\n"
"help.text"
-msgid "The overwrite mode is active. The text cursor is a blinking block. Click on the area to activate insert mode."
-msgstr ""
+msgid "The overwrite mode is enabled. <switchinline select=\"appl\"><caseinline select=\"WRITER\">The text cursor is a blinking block. </caseinline></switchinline>Click on the area to enable insert mode."
+msgstr "Je aktívny režim prepisovania. <switchinline select=\"appl\"><caseinline select=\"WRITER\">Textový kurzor je blikajúci obdĺžnik. </caseinline></switchinline> Kliknutím do tejto oblasti prepnete na režim vkladania."
#. tHRqe
#: textmode_change.xhp
diff --git a/source/sk/helpcontent2/source/text/shared/help.po b/source/sk/helpcontent2/source/text/shared/help.po
index d4b8583db6f..7c9b68b305d 100644
--- a/source/sk/helpcontent2/source/text/shared/help.po
+++ b/source/sk/helpcontent2/source/text/shared/help.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-07-21 11:19+0200\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
"PO-Revision-Date: 2018-11-12 14:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -133,15 +133,6 @@ msgctxt ""
msgid "<variable id=\"searchhelpcontents\">Search help contents</variable>"
msgstr ""
-#. ucD7E
-#: browserhelp.xhp
-msgctxt ""
-"browserhelp.xhp\n"
-"par_id211591971675557\n"
-"help.text"
-msgid "<variable id=\"noscriptmsg\">Enable JavaScript in the browser to display %PRODUCTNAME Help pages.</variable>"
-msgstr ""
-
#. DXqYQ
#: browserhelp.xhp
msgctxt ""
diff --git a/source/sk/helpcontent2/source/text/shared/optionen.po b/source/sk/helpcontent2/source/text/shared/optionen.po
index 829cbad2120..8ea693514ef 100644
--- a/source/sk/helpcontent2/source/text/shared/optionen.po
+++ b/source/sk/helpcontent2/source/text/shared/optionen.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-09-28 11:22+0200\n"
-"PO-Revision-Date: 2020-09-30 15:35+0000\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
+"PO-Revision-Date: 2020-10-16 15:35+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: Slovak <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/sk/>\n"
"Language: sk\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542197412.000000\n"
#. PzSYs
@@ -61,13 +61,13 @@ msgctxt ""
msgid "All your settings are saved automatically. To expand an entry either double click this entry or click the plus sign. To collapse the entry, click the minus sign or double click the entry."
msgstr ""
-#. HMSEY
+#. Dn9AL
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
"par_idN10607\n"
"help.text"
-msgid "You see only the entries that are applicable to the current document. If the current document is a text document, you see the %PRODUCTNAME Writer entry, and so on for all modules of %PRODUCTNAME."
+msgid "You see only the entries that are applicable to the current document. If the current document is a text document, you see the %PRODUCTNAME Writer entry, and so on for all modules of %PRODUCTNAME. %PRODUCTNAME Impress and %PRODUCTNAME Draw are treated as the same in this dialog. The common entries are always visible."
msgstr ""
#. uYcBu
@@ -79,13 +79,13 @@ msgctxt ""
msgid "<ahelp hid=\"HID_OFADLG_TREELISTBOX\" visibility=\"hidden\">Select an entry to edit.</ahelp>"
msgstr ""
-#. cLKW2
+#. qV89h
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
-"par_id61597440155071\n"
+"par_id1013200911280529\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline>"
+msgid "Note for macOS users: The Help mentions the menu path Tools - Options at numerous places. Replace this path with %PRODUCTNAME - Preferences on your macOS main menu. Both menu entries open the Options dialog box."
msgstr ""
#. WS53M
@@ -356,7 +356,7 @@ msgctxt ""
"par_id3153821\n"
"help.text"
msgid "<ahelp hid=\".\">Type your first name.</ahelp>"
-msgstr "<ahelp hid=\".\">Zadajte svoje meno.</ahelp>"
+msgstr "<ahelp hid=\".\">Zadajte svoje krstné meno.</ahelp>"
#. mUDNX
#: 01010100.xhp
@@ -556,23 +556,23 @@ msgctxt ""
msgid "<ahelp hid=\".\">Type your fax number in this field.</ahelp>"
msgstr "<ahelp hid=\".\">Zadajte svoje číslo faxu.</ahelp>"
-#. rioqH
+#. SbdwC
#: 01010100.xhp
msgctxt ""
"01010100.xhp\n"
"hd_id3150592\n"
"help.text"
-msgid "Email"
+msgid "E-mail"
msgstr "Email"
-#. FNyZE
+#. g5uYB
#: 01010100.xhp
msgctxt ""
"01010100.xhp\n"
"par_id3154942\n"
"help.text"
-msgid "<ahelp hid=\".\">Type your email address.</ahelp> For example, my.name@my.provider.com"
-msgstr "<ahelp hid=\".\">Zadajte svoju emailovú adresu.</ahelp> Napríklad, moje.meno@moj.provider.com"
+msgid "<ahelp hid=\".\">Type your e-mail address.</ahelp> For example, my.name@my.provider.com"
+msgstr ""
#. DA4Z7
#: 01010100.xhp
@@ -925,13 +925,13 @@ msgctxt ""
msgid "Save URLs relative to file system"
msgstr "Uložiť URL relatívne k súborovému systému"
-#. URbep
+#. Dwh8W
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149484\n"
"help.text"
-msgid "This option allows you to select the default for <link href=\"text/shared/00/00000005.xhp#saving\" name=\"relative\"><emph>relative</emph></link> addressing of URLs in the file system and on the Internet. Relative addressing is only possible if the source document and the referenced document are both on the same drive."
+msgid "This option allows you to select the default for <link href=\"text/shared/00/00000005.xhp#speichern\" name=\"relative\"><emph>relative</emph></link> addressing of URLs in the file system and on the Internet. Relative addressing is only possible if the source document and the referenced document are both on the same drive."
msgstr ""
#. jDPKd
@@ -1033,13 +1033,13 @@ msgctxt ""
msgid "The Help tip always displays an absolute path. However, if a document is saved in HTML format, <item type=\"productname\">%PRODUCTNAME</item> will enter a relative path if the appropriate check box is selected."
msgstr ""
-#. 2sqRz
+#. tDU47
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3155176\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/relative_fsys\">Select this box for <link href=\"text/shared/00/00000005.xhp#saving\" name=\"relative saving\"><emph>relative saving</emph></link> of URLs in the file system.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/relative_fsys\">Select this box for <link href=\"text/shared/00/00000005.xhp#speichern\" name=\"relative saving\"><emph>relative saving</emph></link> of URLs in the file system.</ahelp>"
msgstr ""
#. x9sAv
@@ -1051,13 +1051,13 @@ msgctxt ""
msgid "Save URLs relative to internet"
msgstr "Uložiť URL relatívne k internetu"
-#. UHaGc
+#. HfnEy
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3155608\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/relative_inet\">Select this box for <link href=\"text/shared/00/00000005.xhp#saving\" name=\"relative saving\"><emph>relative saving</emph></link> of URLs to the Internet.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/relative_inet\">Select this box for <link href=\"text/shared/00/00000005.xhp#speichern\" name=\"relative saving\"><emph>relative saving</emph></link> of URLs to the Internet.</ahelp>"
msgstr ""
#. Ymh8t
@@ -4876,50 +4876,50 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optproxypage/ftpport\">Type the port for the corresponding proxy server.</ahelp> The maximum value of a port number is fixed at 65535."
msgstr "<ahelp hid=\"cui/ui/optproxypage/ftpport\">Zadajte port príslušného proxy serveru.</ahelp> Maximálna hodnota čísla portu je pevne stanovená na 65535."
-#. 7oGRX
+#. CvGfQ
#: 01020300.xhp
msgctxt ""
"01020300.xhp\n"
"tit\n"
"help.text"
-msgid "Email"
-msgstr ""
+msgid "E-mail"
+msgstr "Email"
-#. 8iAf5
+#. bFEGY
#: 01020300.xhp
msgctxt ""
"01020300.xhp\n"
"par_idN1054D\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01020300.xhp\">Email</link>"
-msgstr ""
+msgid "<link href=\"text/shared/optionen/01020300.xhp\">E-mail</link>"
+msgstr "<link href=\"text/shared/optionen/01010300.xhp\" name=\"Cesty\">Cesty</link>"
-#. zqXGG
+#. ADUFe
#: 01020300.xhp
msgctxt ""
"01020300.xhp\n"
"par_idN1056B\n"
"help.text"
-msgid "On UNIX systems, specifies the email program to use when you send the current document as email."
+msgid "On UNIX systems, specifies the e-mail program to use when you send the current document as e-mail."
msgstr ""
-#. DFhk6
+#. rBUxL
#: 01020300.xhp
msgctxt ""
"01020300.xhp\n"
"par_idN10576\n"
"help.text"
-msgid "Email program"
+msgid "E-mail program"
msgstr ""
-#. KBusD
+#. cXMGv
#: 01020300.xhp
msgctxt ""
"01020300.xhp\n"
"par_idN1057A\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optemailpage/url\">Enter the email program path and name.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optemailpage/url\">Zadajte názov a cestu k poštovému programu.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optemailpage/url\">Enter the e-mail program path and name.</ahelp>"
+msgstr ""
#. aP7pK
#: 01020300.xhp
@@ -4930,14 +4930,14 @@ msgctxt ""
msgid "Browse"
msgstr "Prehľadávať"
-#. DAjWA
+#. QDZFn
#: 01020300.xhp
msgctxt ""
"01020300.xhp\n"
"par_idN10595\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optemailpage/browse\">Opens a file dialog to select the email program.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optemailpage/browse\">Otvorí súborový dialóg na výber poštového programu.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optemailpage/browse\">Opens a file dialog to select the e-mail program.</ahelp>"
+msgstr ""
#. KhbuR
#: 01030000.xhp
@@ -5245,6 +5245,42 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optsecuritypage/cert\">Opens the <emph>Certificate Path</emph> dialog.</ahelp>"
msgstr ""
+#. yZc9g
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_idN106871\n"
+"help.text"
+msgid "TSAs"
+msgstr "Autority časových pečiatok"
+
+#. yxkXg
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_idN1068B1\n"
+"help.text"
+msgid "Allows you to maintain a list of Time Stamping Authority (TSA) URLs. TSAs issue digitally signed timestamps (RFC 3161) that are optionally used during signed PDF export."
+msgstr ""
+
+#. LBhZv
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_idN1068E1\n"
+"help.text"
+msgid "TSAs"
+msgstr "Autority časových pečiatok"
+
+#. 3GGAj
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_idN106921\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optsecuritypage/tsas\">Opens the <emph>Time Stamping Authority URLs</emph> dialog.</ahelp>"
+msgstr ""
+
#. tY5b3
#: 01030500.xhp
msgctxt ""
@@ -7486,168 +7522,6 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/optredlinepage/markcolor\">Specifies the color for highlighting the changed lines in the text.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/optredlinepage/markcolor\">Určuje farbu na označenie zmenených riadkov textu.</ahelp>"
-#. BANMp
-#: 01040800.xhp
-msgctxt ""
-"01040800.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Options"
-msgstr ""
-
-#. E6UnW
-#: 01040800.xhp
-msgctxt ""
-"01040800.xhp\n"
-"bm_id481597340419434\n"
-"help.text"
-msgid "<bookmark_value>document comparison;options</bookmark_value> <bookmark_value>comparison;automatic</bookmark_value> <bookmark_value>comparison;by word</bookmark_value> <bookmark_value>comparison;by character</bookmark_value> <bookmark_value>document comparison;random ID</bookmark_value>"
-msgstr ""
-
-#. Bw9mZ
-#: 01040800.xhp
-msgctxt ""
-"01040800.xhp\n"
-"hd_id801597320214148\n"
-"help.text"
-msgid "<variable id=\"comparisonoptionh1\"><link href=\"text/shared/optionen/01040800.xhp\" name=\"Comparison\">Document Comparison Options</link></variable>"
-msgstr ""
-
-#. DRYng
-#: 01040800.xhp
-msgctxt ""
-"01040800.xhp\n"
-"par_id761597320214148\n"
-"help.text"
-msgid "Defines the comparison options for the document."
-msgstr ""
-
-#. vgLbk
-#: 01040800.xhp
-msgctxt ""
-"01040800.xhp\n"
-"par_id101597332748471\n"
-"help.text"
-msgid "Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME Writer - Comparison</menuitem>."
-msgstr ""
-
-#. mjJDZ
-#: 01040800.xhp
-msgctxt ""
-"01040800.xhp\n"
-"hd_id421597320817511\n"
-"help.text"
-msgid "Compare documents"
-msgstr ""
-
-#. uKiJe
-#: 01040800.xhp
-msgctxt ""
-"01040800.xhp\n"
-"par_id821597320851919\n"
-"help.text"
-msgid "<emph>Automatic</emph>: Uses traditional algorithm for document comparison (default)."
-msgstr ""
-
-#. sG9SF
-#: 01040800.xhp
-msgctxt ""
-"01040800.xhp\n"
-"par_id771597320878668\n"
-"help.text"
-msgid "<emph>By word</emph>: compares documents segmenting contents word by word."
-msgstr ""
-
-#. BRvm7
-#: 01040800.xhp
-msgctxt ""
-"01040800.xhp\n"
-"par_id431597320905536\n"
-"help.text"
-msgid "<emph>By characters</emph>: compares documents segmenting contents character by character. You can define the minimal number of character for the comparison."
-msgstr ""
-
-#. 8Pb46
-#: 01040800.xhp
-msgctxt ""
-"01040800.xhp\n"
-"hd_id521597320824763\n"
-"help.text"
-msgid "Random Number to improve accuracy of document comparison"
-msgstr ""
-
-#. CVid8
-#: 01040800.xhp
-msgctxt ""
-"01040800.xhp\n"
-"par_id411597332706569\n"
-"help.text"
-msgid "Introduce an identifier to improve accuracy of document comparison when done by word or by characters."
-msgstr ""
-
-#. SBPxy
-#: 01040800.xhp
-msgctxt ""
-"01040800.xhp\n"
-"par_id631597333767341\n"
-"help.text"
-msgid "These options are enabled when the Compare documents options are by words or by characters."
-msgstr ""
-
-#. D8X8F
-#: 01040800.xhp
-msgctxt ""
-"01040800.xhp\n"
-"hd_id601597323591520\n"
-"help.text"
-msgid "Take it into account when comparing"
-msgstr ""
-
-#. AzAaF
-#: 01040800.xhp
-msgctxt ""
-"01040800.xhp\n"
-"par_id191597335836486\n"
-"help.text"
-msgid "Activates the document comparison using By word and By character options."
-msgstr ""
-
-#. BRybW
-#: 01040800.xhp
-msgctxt ""
-"01040800.xhp\n"
-"hd_id1001597323596761\n"
-"help.text"
-msgid "Ignore pieces of length"
-msgstr ""
-
-#. jrR5L
-#: 01040800.xhp
-msgctxt ""
-"01040800.xhp\n"
-"par_id751597333853235\n"
-"help.text"
-msgid "Set the minimum number of characters to trigger a valid comparison."
-msgstr ""
-
-#. hZ7bt
-#: 01040800.xhp
-msgctxt ""
-"01040800.xhp\n"
-"hd_id291597323603653\n"
-"help.text"
-msgid "Store it when changing the document"
-msgstr ""
-
-#. GgGrD
-#: 01040800.xhp
-msgctxt ""
-"01040800.xhp\n"
-"par_id421597332757267\n"
-"help.text"
-msgid "Stores the random number in the document."
-msgstr ""
-
#. CxgNP
#: 01040900.xhp
msgctxt ""
@@ -8080,42 +7954,6 @@ msgctxt ""
msgid "Specifies the characters that are considered as word separators when counting words, in addition to spaces, tabs and line and paragraph breaks."
msgstr ""
-#. LBDBF
-#: 01040900.xhp
-msgctxt ""
-"01040900.xhp\n"
-"hd_id691599000315902\n"
-"help.text"
-msgid "Show standardized page count"
-msgstr ""
-
-#. 67L2A
-#: 01040900.xhp
-msgctxt ""
-"01040900.xhp\n"
-"par_id581599002628645\n"
-"help.text"
-msgid "Editors and publishers often define a “standard” page as containing a specified number of characters or words. Mark this field to allows quick calculation of the number of these pages."
-msgstr ""
-
-#. eQjAd
-#: 01040900.xhp
-msgctxt ""
-"01040900.xhp\n"
-"hd_id511599000321915\n"
-"help.text"
-msgid "Characters per standardized page"
-msgstr ""
-
-#. AFkck
-#: 01040900.xhp
-msgctxt ""
-"01040900.xhp\n"
-"par_id271599002636069\n"
-"help.text"
-msgid "Set the number of characters for the standardized page."
-msgstr ""
-
#. RPuAH
#: 01041000.xhp
msgctxt ""
@@ -8996,7 +8834,7 @@ msgctxt ""
"par_id3150439\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the number of intermediate spaces between grid points on the X-axis.</ahelp>"
-msgstr "<ahelp hid=\".\">Určuje maximálny počet znakov, ktoré môže používateľ zadať.</ahelp>"
+msgstr "<ahelp hid=\".\">Zadajte počet medzier medzi bodmi mriežky na osi X.</ahelp>"
#. kqM5q
#: 01050100.xhp
@@ -9014,7 +8852,7 @@ msgctxt ""
"par_id3154918\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the number of intermediate spaces between grid points on the Y-axis.</ahelp>"
-msgstr "<ahelp hid=\".\">Určuje maximálny počet znakov, ktoré môže používateľ zadať.</ahelp>"
+msgstr "<ahelp hid=\".\">Zadajte počet medzier medzi bodmi mriežky na osi Y.</ahelp>"
#. jQ6kM
#: 01050100.xhp
@@ -9133,14 +8971,14 @@ msgctxt ""
msgid "Specifies the background for HTML documents. The background is valid for both new HTML documents and for those that you load, as long as these have not defined their own background."
msgstr ""
-#. mASX2
+#. 3SbXD
#: 01050300.xhp
msgctxt ""
"01050300.xhp\n"
-"par_id3151114\n"
+"par_id3156156\n"
"help.text"
-msgid "<ahelp hid=\".\">Click a color. Click No Fill to remove a background or highlighting color.</ahelp>"
-msgstr ""
+msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Further information\">Further information</link>"
+msgstr "<link href=\"text/shared/01/05030600.xhp\" name=\"Ďalšie informácie\">Ďalšie informácie</link>"
#. YvDPU
#: 01060000.xhp
@@ -15415,13 +15253,13 @@ msgctxt ""
msgid "Expert Configuration"
msgstr "Expertné nastavenia"
-#. rmYbp
+#. YGAEk
#: expertconfig.xhp
msgctxt ""
"expertconfig.xhp\n"
"par_id0609201521430059\n"
"help.text"
-msgid "Choose <menuitem>Tools - Options - %PRODUCTNAME - Advanced - Open Expert Configuration</menuitem>."
+msgid "Choose <emph>Tools – Options – %PRODUCTNAME – Advanced – Expert Configuration</emph>"
msgstr ""
#. 7CGay
@@ -15631,13 +15469,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/aboutconfigdialog/edit\">Opens a dialog to edit the preference.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/aboutconfigdialog/edit\">Otvorí dialógové okno na úpravu preferencií.</ahelp>"
-#. aZSk8
+#. tLoDF
#: expertconfig.xhp
msgctxt ""
"expertconfig.xhp\n"
"par_id0609201523043085\n"
"help.text"
-msgid "Double-click in the preference row to edit current string and long values or toggle boolean types."
+msgid "You can double click in the preference row to edit the current value of the property."
msgstr ""
#. HGh4N
@@ -15739,42 +15577,6 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optadvancedpage/javas\">Select the JRE that you want to use. On some systems, you must wait a minute until the list gets populated. On some systems, you must restart %PRODUCTNAME to use your changed setting.</ahelp> The path to the JRE is displayed beneath the list box."
msgstr "<ahelp hid=\"cui/ui/optadvancedpage/javas\">Vyberte JRE, ktoré chcete použiť. Na niektorých systémoch musíte chvíľu počkať, než sa zoznam naplní. Na niektorých systémoch musíte reštartovať %PRODUCTNAME, aby sa zmeny prejavili.</ahelp> Cesta k JRE je zobrazená pod zoznamom."
-#. BEsVP
-#: java.xhp
-msgctxt ""
-"java.xhp\n"
-"par_id431600889434242\n"
-"help.text"
-msgid "You can override the default JRE of the operating system with one of the following alternatives:"
-msgstr ""
-
-#. Skrxp
-#: java.xhp
-msgctxt ""
-"java.xhp\n"
-"par_id191600889458048\n"
-"help.text"
-msgid "By setting the environment variable <literal>JAVA_HOME</literal>,"
-msgstr ""
-
-#. Z6Vzz
-#: java.xhp
-msgctxt ""
-"java.xhp\n"
-"par_id131600889466713\n"
-"help.text"
-msgid "By adding a JRE to the <literal>$PATH</literal> variable,"
-msgstr ""
-
-#. CFjhz
-#: java.xhp
-msgctxt ""
-"java.xhp\n"
-"par_id501600889473339\n"
-"help.text"
-msgid "By providing the configuration file <switchinline select=\"sys\"> <caseinline select=\"MAC\"><literal>javasettings_macOS_X86_64.xml</literal></caseinline> <caseinline select=\"WIN\"><literal>javasettings_Windows_X86_64.xml</literal></caseinline> <caseinline select=\"UNIX\"><literal>javasettings_Linux_X86_64.xml</literal></caseinline> <defaultinline><literal>javasettings_${_OS}_${_ARCH}.xml</literal></defaultinline> </switchinline> in the folder <literal><instdir>/presets/config</literal>."
-msgstr ""
-
#. UM9FC
#: java.xhp
msgctxt ""
@@ -16486,32 +16288,32 @@ msgctxt ""
msgid "<ahelp hid=\".\">Removes the selected folder from the list of trusted file locations.</ahelp>"
msgstr "<ahelp hid=\".\">Odstráni vybraný priečinok zo zoznamu dôveryhodných umiestnení.</ahelp>"
-#. jPwp4
+#. yyWAP
#: mailmerge.xhp
msgctxt ""
"mailmerge.xhp\n"
"tit\n"
"help.text"
-msgid "Mail Merge Email"
-msgstr ""
+msgid "Mail Merge E-mail"
+msgstr "Hromadná korešpondencia emailom"
-#. DzJfg
+#. FyzTB
#: mailmerge.xhp
msgctxt ""
"mailmerge.xhp\n"
"par_idN10554\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/mailmerge.xhp\">Mail Merge Email</link>"
-msgstr ""
+msgid "<link href=\"text/shared/optionen/mailmerge.xhp\">Mail Merge E-mail</link>"
+msgstr "<link href=\"text/shared/optionen/mailmerge.xhp\">Hromadná korešpondencia emailom</link>"
-#. tXuUS
+#. rSTkd
#: mailmerge.xhp
msgctxt ""
"mailmerge.xhp\n"
"par_idN10564\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies the user information and server settings for when you send form letters as email messages.</ahelp>"
-msgstr "<ahelp hid=\".\">Určuje informácie o používateľovi a nastavenia servera, keď odosielate listy vo forme e-mailových správ.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies the user information and server settings for when you send form letters as e-mail messages.</ahelp>"
+msgstr ""
#. vYkrk
#: mailmerge.xhp
@@ -16522,13 +16324,13 @@ msgctxt ""
msgid "User information"
msgstr "Používateľské informácie"
-#. QRRdv
+#. rHEhA
#: mailmerge.xhp
msgctxt ""
"mailmerge.xhp\n"
"par_idN1057F\n"
"help.text"
-msgid "Enter the user information to use when you send email."
+msgid "Enter the user information to use when you send e-mail."
msgstr ""
#. CZo2m
@@ -16547,43 +16349,43 @@ msgctxt ""
"par_idN1058E\n"
"help.text"
msgid "<ahelp hid=\".\">Enter your name.</ahelp>"
-msgstr "<ahelp hid=\".\">Zadajte svoje meno.</ahelp>"
+msgstr "<ahelp hid=\".\">Zadajte svoje priezvisko.</ahelp>"
-#. pVBDV
+#. 9FWED
#: mailmerge.xhp
msgctxt ""
"mailmerge.xhp\n"
"par_idN105A5\n"
"help.text"
-msgid "Email address"
-msgstr ""
+msgid "E-mail address"
+msgstr "E-mailová adresa"
-#. 6fFPM
+#. Eh9MR
#: mailmerge.xhp
msgctxt ""
"mailmerge.xhp\n"
"par_idN105A9\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter your email address for replies.</ahelp>"
-msgstr "<ahelp hid=\".\">Zadajte svoju e-mailovú adresu pre odpovede.</ahelp>"
+msgid "<ahelp hid=\".\">Enter your e-mail address for replies.</ahelp>"
+msgstr ""
-#. EpoB6
+#. KPwBG
#: mailmerge.xhp
msgctxt ""
"mailmerge.xhp\n"
"par_idN105C0\n"
"help.text"
-msgid "Send replies to different email address"
+msgid "Send replies to different e-mail address"
msgstr ""
-#. jgiMB
+#. C9eSe
#: mailmerge.xhp
msgctxt ""
"mailmerge.xhp\n"
"par_idN105C4\n"
"help.text"
-msgid "<ahelp hid=\".\">Uses the email address that you enter in the Reply address text box as the reply-to email address.</ahelp>"
-msgstr "<ahelp hid=\".\">Používa e-mailovú adresu, ktorú zadáte do textového poľa Adresa pre odpoveď, ako e-mailovú adresu pre odpoveď.</ahelp>"
+msgid "<ahelp hid=\".\">Uses the e-mail address that you enter in the Reply address text box as the reply-to e-mail address.</ahelp>"
+msgstr ""
#. EbiSo
#: mailmerge.xhp
@@ -16594,14 +16396,14 @@ msgctxt ""
msgid "Reply address"
msgstr "Adresa pre odpoveď"
-#. MzZzQ
+#. R5G9w
#: mailmerge.xhp
msgctxt ""
"mailmerge.xhp\n"
"par_idN105DF\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter the address to use for email replies.</ahelp>"
-msgstr "<ahelp hid=\".\">Zadajte adresu, na ktorú majú odpovedať e-maily.</ahelp>"
+msgid "<ahelp hid=\".\">Enter the address to use for e-mail replies.</ahelp>"
+msgstr ""
#. KxDNm
#: mailmerge.xhp
@@ -16612,13 +16414,13 @@ msgctxt ""
msgid "Outgoing server (SMTP) settings"
msgstr ""
-#. Q8Wj3
+#. fEnNg
#: mailmerge.xhp
msgctxt ""
"mailmerge.xhp\n"
"par_idN105F2\n"
"help.text"
-msgid "Specify the server settings for outgoing emails."
+msgid "Specify the server settings for outgoing e-mails."
msgstr ""
#. MGAFY
@@ -16666,14 +16468,14 @@ msgctxt ""
msgid "Use secure connection"
msgstr ""
-#. QWtkz
+#. uasTc
#: mailmerge.xhp
msgctxt ""
"mailmerge.xhp\n"
"par_idN10637\n"
"help.text"
-msgid "<ahelp hid=\".\">When available, uses a secure connection to send emails.</ahelp>"
-msgstr "<ahelp hid=\".\">Ak je k dispozícii, používa zabezpečené pripojenie na odosielanie e-mailov.</ahelp>"
+msgid "<ahelp hid=\".\">When available, uses a secure connection to send e-mails.</ahelp>"
+msgstr ""
#. xN8RP
#: mailmerge.xhp
@@ -16684,13 +16486,13 @@ msgctxt ""
msgid "Server Authentication"
msgstr "Autentifikácia servera"
-#. qp3FK
+#. aACLS
#: mailmerge.xhp
msgctxt ""
"mailmerge.xhp\n"
"par_idN10652\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/optionen/serverauthentication.xhp\">Server Authentication</link> dialog where you can specify the server authentication settings for secure email.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/optionen/serverauthentication.xhp\">Server Authentication</link> dialog where you can specify the server authentication settings for secure e-mail.</ahelp>"
msgstr ""
#. AnELG
@@ -16945,40 +16747,40 @@ msgctxt ""
msgid "Enable the check to send information about your %PRODUCTNAME version, operating system and basic hardware. This information is used to optimize the download."
msgstr ""
-#. AN7zk
+#. uDvTG
#: opencl.xhp
msgctxt ""
"opencl.xhp\n"
"tit_opencl\n"
"help.text"
-msgid "OpenCL"
+msgid "Open CL"
msgstr ""
-#. sDXCB
+#. enEVC
#: opencl.xhp
msgctxt ""
"opencl.xhp\n"
"bm_id4077578\n"
"help.text"
-msgid "<bookmark_value>OpenCL;setting options</bookmark_value><bookmark_value>setting options;OpenCL</bookmark_value>"
+msgid "<bookmark_value>Open CL;setting options</bookmark_value><bookmark_value>setting options;Open CL</bookmark_value>"
msgstr ""
-#. RAY7n
+#. bVCo8
#: opencl.xhp
msgctxt ""
"opencl.xhp\n"
"par_idN10558\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/opencl.xhp\">OpenCL</link>"
-msgstr ""
+msgid "<link href=\"text/shared/optionen/opencl.xhp\">Open CL</link>"
+msgstr "<link href=\"text/shared/optionen/01010300.xhp\" name=\"Cesty\">Cesty</link>"
-#. KoASK
+#. wKxGg
#: opencl.xhp
msgctxt ""
"opencl.xhp\n"
"par_idN10568\n"
"help.text"
-msgid "OpenCL is a technology to speed up calculation on large spreadsheets."
+msgid "Open CL is a technology to speed up calculation on large spreadsheets."
msgstr ""
#. ddvkj
@@ -17215,13 +17017,13 @@ msgctxt ""
msgid "<link href=\"text/shared/optionen/serverauthentication.xhp\">Server Authentication</link>"
msgstr "<link href=\"text/shared/optionen/serverauthentication.xhp\">Autentifikácia servera</link>"
-#. iHmg5
+#. 8PBab
#: serverauthentication.xhp
msgctxt ""
"serverauthentication.xhp\n"
"par_idN1054E\n"
"help.text"
-msgid "On the <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/mailmerge.xhp\">%PRODUCTNAME Writer - Mail Merge Email</link> tab page, click the <emph>Server Authentication</emph> button to specify the server security settings."
+msgid "On the <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/mailmerge.xhp\">%PRODUCTNAME Writer - Mail Merge E-mail</link> tab page, click the <emph>Server Authentication</emph> button to specify the server security settings."
msgstr ""
#. QEP5M
@@ -17233,14 +17035,14 @@ msgctxt ""
msgid "The outgoing mail server (SMTP) requires authentication"
msgstr ""
-#. QzCt7
+#. yXJzw
#: serverauthentication.xhp
msgctxt ""
"serverauthentication.xhp\n"
"par_idN105BE\n"
"help.text"
-msgid "<ahelp hid=\".\">Enables the authentication that is required to send email by SMTP.</ahelp>"
-msgstr "<ahelp hid=\".\">Povoľuje autentifikáciu, ktorá je potrebná na odosielanie e-mailov prostredníctvom protokolu SMTP.</ahelp>"
+msgid "<ahelp hid=\".\">Enables the authentication that is required to send e-mail by SMTP.</ahelp>"
+msgstr ""
#. JEin8
#: serverauthentication.xhp
@@ -17305,14 +17107,14 @@ msgctxt ""
msgid "The outgoing mail server uses the same authentication as the incoming mail server."
msgstr ""
-#. 9vFtZ
+#. GaABU
#: serverauthentication.xhp
msgctxt ""
"serverauthentication.xhp\n"
"par_idN1061A\n"
"help.text"
-msgid "<ahelp hid=\".\">Select if you are required to first read your email before you can send email.</ahelp> This method is also called \"SMTP after POP3\"."
-msgstr "<ahelp hid=\".\">Vyberte, či sa vyžaduje, aby ste si e-maily prečítali skôr, ako budete môcť e-maily odosielať.</ahelp> Táto metóda sa nazýva aj „SMTP po POP3“."
+msgid "<ahelp hid=\".\">Select if you are required to first read your e-mail before you can send e-mail.</ahelp> This method is also called \"SMTP after POP3\"."
+msgstr ""
#. GtmDj
#: serverauthentication.xhp
@@ -17440,13 +17242,13 @@ msgctxt ""
msgid "<link href=\"text/shared/optionen/testaccount.xhp\">Test Account Settings</link>"
msgstr "<link href=\"text/shared/optionen/testaccount.xhp\">Otestovať nastavenia účtu</link>"
-#. AEDCa
+#. R3dUn
#: testaccount.xhp
msgctxt ""
"testaccount.xhp\n"
"par_idN10557\n"
"help.text"
-msgid "When you enter settings on the <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/mailmerge.xhp\">%PRODUCTNAME Writer - Mail Merge Email</link> tab page, you can click the <emph>Test Settings</emph> button to test your settings."
+msgid "When you enter settings on the <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/mailmerge.xhp\">%PRODUCTNAME Writer - Mail Merge E-mail</link> tab page, you can click the <emph>Test Settings</emph> button to test your settings."
msgstr ""
#. 4AK5G
diff --git a/source/sk/helpcontent2/source/text/simpress.po b/source/sk/helpcontent2/source/text/simpress.po
index 34001c1d6ba..34233c8359e 100644
--- a/source/sk/helpcontent2/source/text/simpress.po
+++ b/source/sk/helpcontent2/source/text/simpress.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-08-17 12:39+0200\n"
-"PO-Revision-Date: 2020-09-05 08:35+0000\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
+"PO-Revision-Date: 2020-10-16 15:35+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: Slovak <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress/sk/>\n"
"Language: sk\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1507118400.000000\n"
#. 2Va4w
@@ -347,7 +347,7 @@ msgctxt ""
"par_id3147435\n"
"help.text"
msgid "<ahelp hid=\".uno:WindowList\">Contains commands for manipulating and displaying document windows.</ahelp>"
-msgstr "<ahelp hid=\".uno:WindowList\">Obsahuje príkazy na manipuláciu a zobrazenie okien dokumentov.</ahelp>"
+msgstr "<ahelp hid=\". uno: WindowList\">Obsahuje príkazy na manipuláciu a zobrazovanie okien dokumentu.</ahelp>"
#. 4YdgG
#: main0113.xhp
@@ -601,6 +601,15 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Area Style / Filling</link>"
msgstr "<link href=\"text/shared/01/05210100.xhp\" name=\"Štýl oblasti / výplň\">Štýl oblasti / výplň</link>"
+#. nn7rV
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id3150048\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05210600.xhp\" name=\"Shadow\">Shadow</link>"
+msgstr "<link href=\"text/shared/01/05210600.xhp\" name=\"Tieň\">Tieň</link>"
+
#. qXLpG
#: main0203.xhp
msgctxt ""
diff --git a/source/sk/helpcontent2/source/text/simpress/00.po b/source/sk/helpcontent2/source/text/simpress/00.po
index 990e158d584..883b5aa4134 100644
--- a/source/sk/helpcontent2/source/text/simpress/00.po
+++ b/source/sk/helpcontent2/source/text/simpress/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-08-04 13:02+0200\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
"PO-Revision-Date: 2018-04-17 15:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -403,14 +403,14 @@ msgctxt ""
msgid "Choose <emph>View - Normal</emph>"
msgstr "Zvoľte <emph>Zobraziť - Normálne</emph>"
-#. qm8qt
+#. usm8x
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
"par_id3151264\n"
"help.text"
-msgid "Choose <emph>View - Master Slide</emph>"
-msgstr ""
+msgid "Choose <emph>View - Master</emph>"
+msgstr "Zvoľte <emph>Zobraziť - Predloha</emph>"
#. DxBby
#: 00000403.xhp
diff --git a/source/sk/helpcontent2/source/text/simpress/01.po b/source/sk/helpcontent2/source/text/simpress/01.po
index 9fc7183bd79..a7e91841b92 100644
--- a/source/sk/helpcontent2/source/text/simpress/01.po
+++ b/source/sk/helpcontent2/source/text/simpress/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-07-21 11:19+0200\n"
-"PO-Revision-Date: 2020-09-26 19:35+0000\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
+"PO-Revision-Date: 2020-10-16 15:35+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: Slovak <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress01/sk/>\n"
"Language: sk\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1535981183.000000\n"
#. mu9aV
@@ -3569,7 +3569,7 @@ msgctxt ""
"par_id3154643\n"
"help.text"
msgid "<variable id=\"tabelletext\"><ahelp hid=\".\">Specifies the properties of the selected table, for example, fonts, font effects, borders, and background.</ahelp></variable>"
-msgstr "<variable id=\"tabelletext\"><ahelp hid=\".uno:TableDialog\">Určenie vlastností vybranej tabuľky, napríklad názov, zarovnanie, rozostup, šírku stĺpca, okraje a pozadie.</ahelp></variable>"
+msgstr "<variable id=\"tabelletext\"><ahelp hid=\".\">Určuje vlastnosti vybranej tabuľky, napríklad písmo, efekty písma, ohraničenie a pozadie.</ahelp></variable>"
#. SABYC
#: 05090000m.xhp
@@ -3580,6 +3580,15 @@ msgctxt ""
msgid "On the Table Bar, click <emph>Table Properties</emph>."
msgstr ""
+#. 2uf2C
+#: 05090000m.xhp
+msgctxt ""
+"05090000m.xhp\n"
+"hd_id3146119\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>"
+msgstr "<link href=\"text/simpress/01/06100100.xhp\" name=\"Nový\">Nový</link>"
+
#. fcvcu
#: 05100000.xhp
msgctxt ""
diff --git a/source/sk/helpcontent2/source/text/simpress/02.po b/source/sk/helpcontent2/source/text/simpress/02.po
index 73973cc15fd..7afa0e91700 100644
--- a/source/sk/helpcontent2/source/text/simpress/02.po
+++ b/source/sk/helpcontent2/source/text/simpress/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-06-22 17:23+0200\n"
-"PO-Revision-Date: 2020-08-31 14:11+0000\n"
+"PO-Revision-Date: 2020-10-16 15:35+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: Slovak <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpress02/sk/>\n"
"Language: sk\n"
@@ -1391,7 +1391,7 @@ msgctxt ""
"par_id3147252\n"
"help.text"
msgid "<ahelp hid=\".uno:GlueHorzAlignLeft\">When the object is resized, the current gluepoint remains fixed to the left edge of the object.</ahelp>"
-msgstr "<ahelp hid=\".uno:GlueHorzAlignLeft\">Pri zmene veľkosti objektu ostane súčasný záchytný bod prichytený pri pravom okraji objektu.</ahelp>"
+msgstr "<ahelp hid=\". uno: GlueHorzAlignLeft\">Keď sa zmení veľkosť objektu, aktuálny záchytný bod ostane uchytený k ľavému okraju objektu.</ahelp>"
#. cDXuJ
#: 10030200.xhp
@@ -1427,7 +1427,7 @@ msgctxt ""
"par_id3147510\n"
"help.text"
msgid "<ahelp hid=\".uno:GlueHorzAlignCenter\">When the object is resized, the current gluepoint remains fixed to the center of the object.</ahelp>"
-msgstr "<ahelp hid=\".uno:GlueHorzAlignLeft\">Pri zmene veľkosti objektu ostane súčasný záchytný bod prichytený pri pravom okraji objektu.</ahelp>"
+msgstr "<ahelp hid=\". uno: GlueHorzAlignCenter\">Po zmene veľkosti objektu zostane aktuálny záchytný bod umiestnený do stredu objektu.</ahelp>"
#. JHN3D
#: 10030200.xhp
@@ -1463,7 +1463,7 @@ msgctxt ""
"par_id3154096\n"
"help.text"
msgid "<ahelp hid=\".uno:GlueHorzAlignRight\">When the object is resized, the current gluepoint remains fixed to the right edge of the object.</ahelp>"
-msgstr "<ahelp hid=\".uno:GlueHorzAlignLeft\">Pri zmene veľkosti objektu ostane súčasný záchytný bod prichytený pri pravom okraji objektu.</ahelp>"
+msgstr "<ahelp hid=\". uno: GlueHorzAlignRight\">Keď sa zmení veľkosť objektu, aktuálny záchytný bod ostane uchytený k pravému okraju objektu.</ahelp>"
#. BFEKQ
#: 10030200.xhp
@@ -1499,7 +1499,7 @@ msgctxt ""
"par_id3149930\n"
"help.text"
msgid "<ahelp hid=\".uno:GlueVertAlignTop\">When the object is resized, the current gluepoint remains fixed to the top edge of the object.</ahelp>"
-msgstr "<ahelp hid=\".uno:GlueHorzAlignLeft\">Pri zmene veľkosti objektu ostane súčasný záchytný bod prichytený pri pravom okraji objektu.</ahelp>"
+msgstr "<ahelp hid=\". uno: GlueVertAlignTop\">Po zmene veľkosti objektu zostane aktuálny záchytný bod uchytený k hornému okraju objektu.</ahelp>"
#. 8LAFQ
#: 10030200.xhp
@@ -1535,7 +1535,7 @@ msgctxt ""
"par_id3151310\n"
"help.text"
msgid "<ahelp hid=\".uno:GlueVertAlignCenter\">When the object is resized, the current gluepoint remains fixed to the vertical center of the object.</ahelp>"
-msgstr "<ahelp hid=\".uno:GlueHorzAlignLeft\">Pri zmene veľkosti objektu ostane súčasný záchytný bod prichytený pri pravom okraji objektu.</ahelp>"
+msgstr "<ahelp hid=\". uno: GlueVertAlignCenter\">Po zmene veľkosti objektu zostane aktuálny záchytný bod uchytený do vertikálneho stredu objektu.</ahelp>"
#. KDaky
#: 10030200.xhp
@@ -1571,7 +1571,7 @@ msgctxt ""
"par_id3148397\n"
"help.text"
msgid "<ahelp hid=\".uno:GlueVertAlignBottom\">When the object is resized, the current gluepoint remains fixed to the bottom edge of the object.</ahelp>"
-msgstr "<ahelp hid=\".uno:GlueHorzAlignLeft\">Pri zmene veľkosti objektu ostane súčasný záchytný bod prichytený pri pravom okraji objektu.</ahelp>"
+msgstr "<ahelp hid=\". uno: GlueVertAlignBottom\">Po zmene veľkosti objektu zostane aktuálny záchytný bod uchytený k spodnému okraju objektu.</ahelp>"
#. EsARp
#: 10030200.xhp
diff --git a/source/sk/helpcontent2/source/text/simpress/guide.po b/source/sk/helpcontent2/source/text/simpress/guide.po
index d20d40f89e1..693bb9822f5 100644
--- a/source/sk/helpcontent2/source/text/simpress/guide.po
+++ b/source/sk/helpcontent2/source/text/simpress/guide.po
@@ -3,10 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-09-28 11:22+0200\n"
-"PO-Revision-Date: 2018-09-03 13:26+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
+"PO-Revision-Date: 2020-10-16 15:35+0000\n"
+"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
+"Language-Team: Slovak <https://weblate.documentfoundation.org/projects/libo_help-master/textsimpressguide/sk/>\n"
"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
@@ -1348,14 +1348,14 @@ msgctxt ""
msgid "<bookmark_value>footers;master slides</bookmark_value><bookmark_value>master slides; headers and footers</bookmark_value><bookmark_value>headers and footers; master slides</bookmark_value><bookmark_value>inserting;headers/footers in all slides</bookmark_value><bookmark_value>slide numbers on all slides</bookmark_value><bookmark_value>page numbers on all slides</bookmark_value><bookmark_value>date on all slides</bookmark_value><bookmark_value>time and date on all slides</bookmark_value>"
msgstr ""
-#. CP4C8
+#. GP8y3
#: footer.xhp
msgctxt ""
"footer.xhp\n"
"hd_id3153191\n"
"help.text"
-msgid "<variable id=\"footer\"><link href=\"text/simpress/guide/footer.xhp\" name=\"Adding a Header or a Footer to All Slides\">Adding a Header or a Footer to All Slides</link></variable>"
-msgstr ""
+msgid "<variable id=\"footer\"><link href=\"text/simpress/guide/footer.xhp\" name=\"Adding a Header or a Footer to All Slides\">Adding a Header or a Footer to All Slides</link> </variable>"
+msgstr "<variable id=\"footer\"><link href=\"text/simpress/guide/footer.xhp\" name=\"Pridanie hlavičky a pätiy pre všetky snímky\">Pridanie hlavičky a päty pre všetky snímky</link></variable>"
#. fRX2a
#: footer.xhp
@@ -1528,15 +1528,6 @@ msgctxt ""
msgid "Click the Date Area and move the time and date field. Select the <date/time> field and apply some formatting to change the format for the date and time on all slides. The same applies to the Footer Area and the Slide Number Area."
msgstr "Kliknite na oblasť Dátum a presuňte pole pre dátum a čas. Označte pole <dátum/čas> a upravte formátovanie poľa, tým sa zmení formát dátumu a času na všetkých snímkach. To isté platí pre oblasti Päta a Číslo snímky."
-#. DhBjE
-#: footer.xhp
-msgctxt ""
-"footer.xhp\n"
-"par_id171597939732335\n"
-"help.text"
-msgid "Normally the predefined elements of the master slide are set to visible in the presentation. You can control the visibility of the predefined elements by choosing <menuitem>Slide - Master Elements</menuitem>."
-msgstr ""
-
#. MhrkU
#: footer.xhp
msgctxt ""
@@ -1564,14 +1555,14 @@ msgctxt ""
msgid "Choose <emph>View - Master Slide</emph>."
msgstr ""
-#. ABnCF
+#. mkgvD
#: footer.xhp
msgctxt ""
"footer.xhp\n"
"par_id3147295\n"
"help.text"
-msgid "On the <emph>Drawing</emph> bar, select the <emph>Text</emph> icon<image id=\"img_id3154654\" src=\"cmd/sc_texttoolbox.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154654\">Icon</alt></image>."
-msgstr ""
+msgid "On the <emph>Drawing</emph> bar, select the <emph>Text</emph> icon <image id=\"img_id3154654\" src=\"cmd/sc_texttoolbox.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154654\">Icon</alt></image>."
+msgstr "Na paneli <emph>Kresba</emph> vyberte ikonu <emph>Text</emph> <image id=\"img_id3154654\" src=\"cmd/sc_texttoolbox.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154654\">Ikona</alt></image>."
#. pV2Dh
#: footer.xhp
@@ -5891,7 +5882,7 @@ msgctxt ""
"par_idN10626\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Selects the current table.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberte databázu a tabuľku.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vyberie aktuálnu tabuľku.</ahelp>"
#. ZCDq4
#: table_insert.xhp
diff --git a/source/sk/helpcontent2/source/text/smath/01.po b/source/sk/helpcontent2/source/text/smath/01.po
index 5033c019a2b..952331507e3 100644
--- a/source/sk/helpcontent2/source/text/smath/01.po
+++ b/source/sk/helpcontent2/source/text/smath/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-09-28 11:22+0200\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
"PO-Revision-Date: 2020-09-17 17:44+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Slovak <https://weblate.documentfoundation.org/projects/libo_help-master/textsmath01/sk/>\n"
@@ -4606,13 +4606,13 @@ msgctxt ""
msgid "Note that some entries require spaces for the correct structure. This is especially true when you specify attributes with fixed values instead of placeholders."
msgstr "Všimnite si, že niektoré vami spracované vzorce požadujú medzery pre korektnú štruktúru. To je obzvlášť potrebné, ak špecifikujete atribúty s pevnými hodnotami namiesto zástupných znakov."
-#. mPEEx
+#. RXMei
#: 03090600.xhp
msgctxt ""
"03090600.xhp\n"
"par_id3145230\n"
"help.text"
-msgid "For more information about formatting in %PRODUCTNAME Math, see <link href=\"text/smath/01/03091100.xhp\" name=\"Brackets and Grouping\">Brackets and Grouping</link>."
+msgid "For more information about formatting in <emph>%PRODUCTNAME</emph> <emph>Math</emph>, see <link href=\"text/smath/01/03091100.xhp\" name=\"Brackets and Grouping\">Brackets and Grouping</link>."
msgstr ""
#. 5WAfz
diff --git a/source/sk/helpcontent2/source/text/swriter.po b/source/sk/helpcontent2/source/text/swriter.po
index dcabcdb09b9..6294ba50a2a 100644
--- a/source/sk/helpcontent2/source/text/swriter.po
+++ b/source/sk/helpcontent2/source/text/swriter.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-07-21 11:19+0200\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
"PO-Revision-Date: 2020-09-05 08:35+0000\n"
"Last-Translator: Miloš Šrámek <msramek22@gmail.com>\n"
"Language-Team: Slovak <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter/sk/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1540154116.000000\n"
#. P7iNX
@@ -736,6 +736,15 @@ msgctxt ""
msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Odkazy\">Odkazy</link>"
+#. C22bV
+#: main0102.xhp
+msgctxt ""
+"main0102.xhp\n"
+"hd_id3156150\n"
+"help.text"
+msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
+msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"Obrázková mapa\">Obrázková mapa</link>"
+
#. pFCu3
#: main0102.xhp
msgctxt ""
@@ -1222,15 +1231,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"Automatická oprava\">Nastavenie automatickej opravy</link>"
-#. qKqMR
-#: main0106.xhp
-msgctxt ""
-"main0106.xhp\n"
-"hd_id3156150\n"
-"help.text"
-msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
-msgstr ""
-
#. VY3FE
#: main0106.xhp
msgctxt ""
diff --git a/source/sk/helpcontent2/source/text/swriter/00.po b/source/sk/helpcontent2/source/text/swriter/00.po
index b7bbe422197..6aab699e1aa 100644
--- a/source/sk/helpcontent2/source/text/swriter/00.po
+++ b/source/sk/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2020-07-21 11:19+0200\n"
+"POT-Creation-Date: 2020-10-23 13:36+0200\n"
"PO-Revision-Date: 2018-11-14 12:10+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -781,14 +781,14 @@ msgctxt ""
msgid "Open <emph>Insert</emph> toolbar, click"
msgstr "Otvorte panel nástrojov <emph>Vložiť</emph> a kliknite na"
-#. WgGL9
+#. d8Cn4
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3154569\n"
"help.text"
-msgid "<image id=\"img_id3152952\" src=\"cmd/sc_insertsection.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152952\">Icon Section</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3152952\" src=\"cmd/sc_insertsection.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152952\">Icon</alt></image>"
+msgstr "<image id=\"img_id3152952\" src=\"cmd/sc_insertsection.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152952\">Ikonka</alt></image>"
#. YVzDx
#: 00000404.xhp
@@ -1276,14 +1276,14 @@ msgctxt ""
msgid "Open <emph>Insert</emph> toolbar, click"
msgstr "Otvorte panel nástrojov <emph>Vložiť</emph> a kliknite na"
-#. 8jBbi
+#. QFRDY
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3149372\n"
"help.text"
-msgid "<image id=\"img_id3149379\" src=\"cmd/sc_insertframe.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149379\">Icon Insert Frame</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3149379\" src=\"cmd/sc_insertframe.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149379\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149379\" src=\"cmd/sc_insertframe.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149379\">Ikonka</alt></image>"
#. 9WJAn
#: 00000404.xhp
@@ -1753,13 +1753,31 @@ msgctxt ""
msgid "<variable id=\"autoformattab\">Choose <emph>Table - AutoFormat Styles</emph> (with cursor in a table).</variable>"
msgstr ""
-#. Uxeuc
+#. KtR4n
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3147484\n"
"help.text"
-msgid "Choose <menuitem>Format - Image - Properties - Area</menuitem> tab."
+msgid "Choose <emph>Format - Image</emph>."
+msgstr ""
+
+#. fzd8D
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3147504\n"
+"help.text"
+msgid "Choose <emph>Insert - Image - From File - Properties</emph> button."
+msgstr ""
+
+#. FuDEm
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3145256\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Insert - Image - From File</emph> (when graphics are selected).</caseinline></switchinline>"
msgstr ""
#. H2Zb6
@@ -1771,14 +1789,14 @@ msgctxt ""
msgid "On the <emph>Image</emph> bar (when images are selected), click"
msgstr ""
-#. nrAxh
+#. RTRdP
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3150557\n"
"help.text"
-msgid "<image id=\"img_id3149214\" src=\"cmd/sc_framedialog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149214\">Icon Graphics Properties</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3149214\" src=\"cmd/sc_framedialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149214\">Icon</alt></image>"
+msgstr "<image id=\"img_id3149214\" src=\"cmd/sc_framedialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149214\">Ikonka</alt></image>"
#. nQDmh
#: 00000405.xhp
@@ -1969,13 +1987,13 @@ msgctxt ""
msgid "Choose <emph>Tools - AutoText - AutoText (button) - Macro</emph>."
msgstr ""
-#. xACw5
+#. sm4Qi
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3148792\n"
"help.text"
-msgid "Choose <menuitem>Tools - ImageMap</menuitem> - open context menu <emph>Macro</emph>."
+msgid "Choose <emph>Edit - ImageMap</emph> - open context menu <emph>Macro</emph>."
msgstr ""
#. T5m7n
@@ -2491,14 +2509,14 @@ msgctxt ""
msgid "Choose <emph>Format - Frame and Object - Properties</emph>."
msgstr ""
-#. nsMFC
+#. AygsC
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3151276\n"
"help.text"
-msgid "<image id=\"img_id3151283\" src=\"cmd/sc_framedialog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151283\"> Icon Object Properties</alt></image>"
-msgstr ""
+msgid "<image id=\"img_id3151283\" src=\"cmd/sc_framedialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3151283\">Icon</alt></image>"
+msgstr "<image id=\"img_id3151283\" src=\"cmd/sc_framedialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3151283\">Ikonka</alt></image>"
#. vpeBB
#: 00000405.xhp
diff --git a/source/sk/helpcontent2/source/text/swriter/01.po b/source/sk/helpcontent2/source/text/swriter/01.po
index 8730f73a7ee..5797a99dda1 100644
--- a/source/sk/helpcontent2/source/text/swriter/01.po
+++ b/source/sk/helpcontent2/source/text/swriter/01.po