summaryrefslogtreecommitdiff
path: root/include/sfx2/request.hxx
blob: f862cb0f279a861d35ebbd12081d6c0a116ceb30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */
#ifndef INCLUDED_SFX2_REQUEST_HXX
#define INCLUDED_SFX2_REQUEST_HXX

#include <sal/config.h>
#include <sfx2/dllapi.h>
#include <sal/types.h>
#include <svl/itemset.hxx>
#include <svl/hint.hxx>

#include <com/sun/star/uno/Sequence.hxx>
#include <com/sun/star/beans/PropertyValue.hpp>
#include <com/sun/star/frame/XDispatchRecorder.hpp>

class SfxPoolItem;
class SfxAllItemSet;
class SfxItemSet;
class SfxItemPool;
class SfxShell;
class SfxSlot;
class SfxViewFrame;
struct SfxRequest_Impl;
enum class SfxCallMode : sal_uInt16;



class SFX2_DLLPUBLIC SfxRequest: public SfxHint
{
friend struct SfxRequest_Impl;

    sal_uInt16          nSlot;
    SfxAllItemSet*      pArgs;
    SfxRequest_Impl*    pImp;


public:
    SAL_DLLPRIVATE void Record_Impl( SfxShell &rSh, const SfxSlot &rSlot,
                                     com::sun::star::uno::Reference< com::sun::star::frame::XDispatchRecorder > xRecorder,
                                     SfxViewFrame* );
private:
    SAL_DLLPRIVATE void Done_Impl( const SfxItemSet *pSet );



public:
                        SfxRequest( SfxViewFrame*, sal_uInt16 nSlotId );
                        SfxRequest( sal_uInt16 nSlot, SfxCallMode nCallMode, SfxItemPool &rPool );
                        SfxRequest( const SfxSlot* pSlot, const com::sun::star::uno::Sequence < com::sun::star::beans::PropertyValue >& rArgs,
                                            SfxCallMode nCallMode, SfxItemPool &rPool );
                        SfxRequest( sal_uInt16 nSlot, SfxCallMode nCallMode, const SfxAllItemSet& rSfxArgs );
                        SfxRequest( const SfxRequest& rOrig );
                        virtual ~SfxRequest();

    sal_uInt16              GetSlot() const { return nSlot; }
    void                SetSlot(sal_uInt16 nNewSlot) { nSlot = nNewSlot; }

    sal_uInt16              GetModifier() const;
    void                SetModifier( sal_uInt16 nModi );
    SAL_DLLPRIVATE void SetInternalArgs_Impl( const SfxAllItemSet& rArgs );
    SAL_DLLPRIVATE const SfxItemSet* GetInternalArgs_Impl() const;
    const SfxItemSet*   GetArgs() const { return pArgs; }
    void                SetArgs( const SfxAllItemSet& rArgs );
    void                AppendItem(const SfxPoolItem &);
    void                RemoveItem( sal_uInt16 nSlotId );

    static const SfxPoolItem* GetItem( const SfxItemSet*, sal_uInt16 nSlotId,
                                       bool bDeep = false,
                                       TypeId aType = 0 );
    const SfxPoolItem*  GetArg( sal_uInt16 nSlotId, bool bDeep = false, TypeId aType = 0 ) const;
    void                ReleaseArgs();
    void                SetReturnValue(const SfxPoolItem &);
    const SfxPoolItem*  GetReturnValue() const;

    static com::sun::star::uno::Reference< com::sun::star::frame::XDispatchRecorder > GetMacroRecorder( SfxViewFrame* pFrame=NULL );
    static bool         HasMacroRecorder( SfxViewFrame* pFrame=NULL );
    SfxCallMode         GetCallMode() const;
    void                AllowRecording( bool );
    bool                AllowsRecording() const;
    bool                IsAPI() const;
    bool                IsSynchronCall() const;
    void                SetSynchronCall( bool bSynchron );

    bool                IsDone() const;
    void                Done( bool bRemove = false );

    void                Ignore();
    void                Cancel();
    bool                IsCancelled() const;
    void                Done(const SfxItemSet &, bool bKeep = true );

    void                ForgetAllArgs();

private:
    const SfxRequest&   operator=(const SfxRequest &); // n.i.!!
};



#define SFX_REQUEST_ARG(rReq, pItem, ItemType, nSlotId, bDeep) \
        const ItemType *pItem = static_cast<const ItemType*>( \
                rReq.GetArg( nSlotId, bDeep, TYPE(ItemType) ) )
#define SFX_ITEMSET_ARG(pArgs, pItem, ItemType, nSlotId, bDeep) \
    const ItemType *pItem = static_cast<const ItemType*>( \
        SfxRequest::GetItem( pArgs, nSlotId, bDeep, TYPE(ItemType) ) )

#endif

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
raph'>
-rw-r--r--source/lv/wizards/messages.po66
-rw-r--r--source/lv/wizards/source/resources.po18
-rw-r--r--source/lv/writerperfect/messages.po10
-rw-r--r--source/lv/xmlsecurity/messages.po361
87 files changed, 16226 insertions, 10620 deletions
diff --git a/source/lv/accessibility/messages.po b/source/lv/accessibility/messages.po
index a526978722a..7e855451e10 100644
--- a/source/lv/accessibility/messages.po
+++ b/source/lv/accessibility/messages.po
@@ -3,15 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-02-27 13:56+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"PO-Revision-Date: 2017-10-05 22:45+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: lv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1507243504.000000\n"
#: accessibility/inc/strings.hrc:25
msgctxt "RID_STR_ACC_NAME_BROWSEBUTTON"
@@ -29,42 +32,37 @@ msgid "Collapse"
msgstr "Sakļaut"
#: accessibility/inc/strings.hrc:28
-msgctxt "STR_SVT_ACC_LISTENTRY_SELCTED_STATE"
-msgid "(Selected)"
-msgstr "(Izvēlēts)"
-
-#: accessibility/inc/strings.hrc:29
msgctxt "RID_STR_ACC_ACTION_CHECK"
msgid "Check"
msgstr "Atzīmēt"
-#: accessibility/inc/strings.hrc:30
+#: accessibility/inc/strings.hrc:29
msgctxt "RID_STR_ACC_ACTION_UNCHECK"
msgid "Uncheck"
msgstr "Noņemt atzīmi"
-#: accessibility/inc/strings.hrc:31
+#: accessibility/inc/strings.hrc:30
msgctxt "RID_STR_ACC_SCROLLBAR_NAME_VERTICAL"
msgid "Vertical scroll bar"
msgstr "Vertikālā ritjosla"
-#: accessibility/inc/strings.hrc:32
+#: accessibility/inc/strings.hrc:31
msgctxt "RID_STR_ACC_SCROLLBAR_NAME_HORIZONTAL"
msgid "Horizontal scroll bar"
msgstr "Horizontālā ritjosla"
-#: accessibility/inc/strings.hrc:33
+#: accessibility/inc/strings.hrc:32
msgctxt "RID_STR_ACC_PANEL_DESCRIPTION"
msgid "Please press enter to go into child control for more operations"
msgstr "Lūdzu, spiediet enter, lai piekļūtu citām darbībām"
-#: accessibility/inc/strings.hrc:34
+#: accessibility/inc/strings.hrc:33
#, c-format
msgctxt "RID_STR_ACC_COLUMN_NUM"
msgid "Column %COLUMNNUMBER"
msgstr "Kolonna %COLUMNNUMBER"
-#: accessibility/inc/strings.hrc:35
+#: accessibility/inc/strings.hrc:34
msgctxt "RID_STR_ACC_ROW_NUM"
msgid "Row %ROWNUMBER"
msgstr "Rinda %ROWNUMBER"
diff --git a/source/lv/basctl/messages.po b/source/lv/basctl/messages.po
index 371800ea2b6..884b4241e1f 100644
--- a/source/lv/basctl/messages.po
+++ b/source/lv/basctl/messages.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-12-17 16:28+0100\n"
-"PO-Revision-Date: 2017-11-22 16:41+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"PO-Revision-Date: 2019-04-15 05:27+0000\n"
+"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lv\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1511368899.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1555306068.000000\n"
#: basctl/inc/strings.hrc:25
msgctxt "RID_STR_FILTER_ALLFILES"
@@ -79,7 +79,7 @@ msgstr "Ievadiet 'XX' paroli"
#: basctl/inc/strings.hrc:37
msgctxt "RID_STR_SBXNAMEALLREADYUSED"
msgid "Name already exists"
-msgstr "Nosaukums jau eksistē"
+msgstr "Nosaukums jau pastāv"
#: basctl/inc/strings.hrc:38
msgctxt "RID_STR_SIGNED"
@@ -89,7 +89,7 @@ msgstr "(Parakstīts)"
#: basctl/inc/strings.hrc:39
msgctxt "RID_STR_SBXNAMEALLREADYUSED2"
msgid "Object with same name already exists"
-msgstr "Objekts ar tādu pašu nosaukumu jau eksistē"
+msgstr "Objekts ar tādu pašu nosaukumu jau pastāv"
#: basctl/inc/strings.hrc:40
msgctxt "RID_STR_CANNOTRUNMACRO"
@@ -286,7 +286,7 @@ msgstr "Izsaukumi: "
#: basctl/inc/strings.hrc:78
msgctxt "RID_STR_USERMACROS"
msgid "My Macros"
-msgstr "Mani makro"
+msgstr "Manas makrokomandas"
#: basctl/inc/strings.hrc:79
msgctxt "RID_STR_USERDIALOGS"
@@ -296,12 +296,12 @@ msgstr "Mani dialogi"
#: basctl/inc/strings.hrc:80
msgctxt "RID_STR_USERMACROSDIALOGS"
msgid "My Macros & Dialogs"
-msgstr "Mani makro un dialogi"
+msgstr "Manas makrokomandas un dialogi"
#: basctl/inc/strings.hrc:81
msgctxt "RID_STR_SHAREMACROS"
msgid "%PRODUCTNAME Macros"
-msgstr "%PRODUCTNAME makro"
+msgstr "%PRODUCTNAME makrokomandas"
#: basctl/inc/strings.hrc:82
msgctxt "RID_STR_SHAREDIALOGS"
@@ -311,7 +311,7 @@ msgstr "%PRODUCTNAME dialogi"
#: basctl/inc/strings.hrc:83
msgctxt "RID_STR_SHAREMACROSDIALOGS"
msgid "%PRODUCTNAME Macros & Dialogs"
-msgstr "%PRODUCTNAME makro un dialogi"
+msgstr "%PRODUCTNAME makrokomandas un dialogi"
#: basctl/inc/strings.hrc:84
msgctxt "RID_STR_REMOVEWATCHTIP"
@@ -418,29 +418,29 @@ msgstr ""
" "
#: basctl/inc/strings.hrc:100
-msgctxt "RID_STR_PRINTDLG_RANGE"
-msgid "Print range"
-msgstr "Drukāšanas diapazons"
+msgctxt "RID_STR_PRINTDLG_PAGES"
+msgid "Pages:"
+msgstr "Lappuses:"
#: basctl/inc/strings.hrc:101
-msgctxt "RID_STR_PRINTDLG_ALLPAGES"
+msgctxt "RID_STR_PRINTDLG_PRINTALLPAGES"
msgid "All ~Pages"
msgstr "Visas la~ppuses"
#: basctl/inc/strings.hrc:102
-msgctxt "RID_STR_PRINTDLG_PAGES"
-msgid "Pa~ges"
-msgstr "~Lappuses"
+msgctxt "RID_STR_PRINTDLG_PRINTPAGES"
+msgid "Pa~ges:"
+msgstr "~Lappuses:"
#: basctl/inc/strings.hrc:103
-msgctxt "RID_STR_BTNDEL"
-msgid "~Delete"
-msgstr "~Dzēst"
+msgctxt "RID_STR_PRINTDLG_PRINTEVENPAGES"
+msgid "~Even pages"
+msgstr "Pāra lappus~es"
#: basctl/inc/strings.hrc:104
-msgctxt "RID_STR_BTNNEW"
-msgid "~New"
-msgstr "Jau~ns"
+msgctxt "RID_STR_PRINTDLG_PRINTODDPAGES"
+msgid "~Odd pages"
+msgstr "~Nepāra lappuses"
#: basctl/inc/strings.hrc:105
msgctxt "RID_STR_CHOOSE"
@@ -521,17 +521,17 @@ msgstr "Palaist"
#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:166
msgctxt "basicmacrodialog|existingmacrosft"
msgid "Existing Macros In:"
-msgstr "Esošie makro iekš:"
+msgstr "Esošās makrokomandas iekš:"
#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:250
msgctxt "basicmacrodialog|macrofromft"
msgid "Macro From"
-msgstr "Makro no"
+msgstr "Makrokomanda no"
#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:266
msgctxt "basicmacrodialog|macrotoft"
msgid "Save Macro In"
-msgstr "Saglabāt makro iekš"
+msgstr "Saglabāt makrokomandu iekš"
#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:312
msgctxt "basicmacrodialog|libraryft1"
@@ -548,6 +548,16 @@ msgctxt "basicmacrodialog|edit"
msgid "Edit"
msgstr "Rediģēt"
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:363
+msgctxt "basicmacrodialog|delete"
+msgid "_Delete"
+msgstr "_Dzēst"
+
+#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:377
+msgctxt "basicmacrodialog|new"
+msgid "_New"
+msgstr "Jau_ns"
+
#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:391
msgctxt "basicmacrodialog|organize"
msgid "Organizer..."
@@ -578,32 +588,32 @@ msgctxt "breakpointmenus|properties"
msgid "_Properties..."
msgstr "Ī_pašības..."
-#: basctl/uiconfig/basicide/ui/defaultlanguage.ui:9
+#: basctl/uiconfig/basicide/ui/defaultlanguage.ui:30
msgctxt "defaultlanguage|DefaultLanguageDialog"
msgid "Set Default User Interface Language"
msgstr "Iestatīt noklusējuma lietotāja saskarnes valodu"
-#: basctl/uiconfig/basicide/ui/defaultlanguage.ui:93
+#: basctl/uiconfig/basicide/ui/defaultlanguage.ui:117
msgctxt "defaultlanguage|defaultlabel"
msgid "Default language:"
msgstr "Noklusējuma valoda:"
-#: basctl/uiconfig/basicide/ui/defaultlanguage.ui:135
+#: basctl/uiconfig/basicide/ui/defaultlanguage.ui:218
msgctxt "defaultlanguage|checkedlabel"
msgid "Available languages:"
msgstr "Pieejamās valodas:"
-#: basctl/uiconfig/basicide/ui/defaultlanguage.ui:155
+#: basctl/uiconfig/basicide/ui/defaultlanguage.ui:254
msgctxt "defaultlanguage|defined"
msgid "Select a language to define the default user interface language. All currently present strings will be assigned to the resources created for the selected language."
msgstr "Izvēlieties valodu, lai definētu noklusējuma lietotāja saskarnes valodu. Visas esošās virknes tiks piešķirtas resursiem, kuri ir izveidoti izvēlētajai valodai."
-#: basctl/uiconfig/basicide/ui/defaultlanguage.ui:170
+#: basctl/uiconfig/basicide/ui/defaultlanguage.ui:269
msgctxt "defaultlanguage|added"
msgid "Select languages to be added. Resources for these languages will be created in the library. Strings of the current default user interface language will be copied to these new resources by default."
msgstr "Izvēlieties valodas, kuras pievienot. Šo valodu resursi tiks izveidoti bibliotēkā. Pašreizējās noklusējuma valodas saskarnes virknes tiks kopētas uz šiem jaunajiem resursiem pēc noklusējuma."
-#: basctl/uiconfig/basicide/ui/defaultlanguage.ui:184
+#: basctl/uiconfig/basicide/ui/defaultlanguage.ui:284
msgctxt "defaultlanguage|alttitle"
msgid "Add User Interface Languages"
msgstr "Pievienot lietotāja saskarnes valodas"
@@ -678,22 +688,22 @@ msgctxt "gotolinedialog|area"
msgid "_Line number:"
msgstr "_Rindas numurs:"
-#: basctl/uiconfig/basicide/ui/importlibdialog.ui:9
+#: basctl/uiconfig/basicide/ui/importlibdialog.ui:22
msgctxt "importlibdialog|ImportLibDialog"
msgid "Import Libraries"
msgstr "Importēt bibliotēkas"
-#: basctl/uiconfig/basicide/ui/importlibdialog.ui:98
+#: basctl/uiconfig/basicide/ui/importlibdialog.ui:119
msgctxt "importlibdialog|ref"
msgid "Insert as reference (read-only)"
msgstr "Ievietot kā norādi (tikai lasāms)"
-#: basctl/uiconfig/basicide/ui/importlibdialog.ui:113
+#: basctl/uiconfig/basicide/ui/importlibdialog.ui:134
msgctxt "importlibdialog|replace"
msgid "Replace existing libraries"
msgstr "Aizstāt esošās bibliotēkas"
-#: basctl/uiconfig/basicide/ui/importlibdialog.ui:134
+#: basctl/uiconfig/basicide/ui/importlibdialog.ui:155
msgctxt "importlibdialog|label1"
msgid "Options"
msgstr "Opcijas"
@@ -728,47 +738,47 @@ msgctxt "libpage|export"
msgid "_Export..."
msgstr "_Eksportēt..."
-#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:24
+#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:16
msgctxt "managebreakpoints|ManageBreakpointsDialog"
msgid "Manage Breakpoints"
msgstr "Pārvaldīt pārtraukuma punktus"
-#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:147
+#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:139
msgctxt "managebreakpoints|active"
msgid "Active"
msgstr "Aktīvs"
-#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:246
+#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:237
msgctxt "managebreakpoints|label2"
msgid "Pass count:"
msgstr "Apstrāžu skaits:"
-#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:269
+#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:260
msgctxt "managebreakpoints|label1"
msgid "Breakpoints"
msgstr "Pārtraukuma punkti"
-#: basctl/uiconfig/basicide/ui/managelanguages.ui:8
+#: basctl/uiconfig/basicide/ui/managelanguages.ui:16
msgctxt "managelanguages|ManageLanguagesDialog"
msgid "Manage User Interface Languages [$1]"
msgstr "Pārvaldīt lietotāja saskarnes valodas [$1]"
-#: basctl/uiconfig/basicide/ui/managelanguages.ui:69
+#: basctl/uiconfig/basicide/ui/managelanguages.ui:80
msgctxt "managelanguages|label1"
msgid "Present languages:"
msgstr "Esošās valodas:"
-#: basctl/uiconfig/basicide/ui/managelanguages.ui:83
+#: basctl/uiconfig/basicide/ui/managelanguages.ui:94
msgctxt "managelanguages|label2"
msgid "The default language is used if no localization for a user interface locale is present. Furthermore all strings from the default language are copied to resources of newly added languages."
msgstr "Noklusējuma valoda tiek lietota, ja nav pieejama lokalizācija lietotāja saskarnes lokālei. Turklāt visas virknes no noklusējuma valodas tiek kopētas uz jaunpievienotas valodas resursiem."
-#: basctl/uiconfig/basicide/ui/managelanguages.ui:108
+#: basctl/uiconfig/basicide/ui/managelanguages.ui:120
msgctxt "managelanguages|add"
msgid "Add..."
msgstr "Pievienot..."
-#: basctl/uiconfig/basicide/ui/managelanguages.ui:136
+#: basctl/uiconfig/basicide/ui/managelanguages.ui:148
msgctxt "managelanguages|default"
msgid "Default"
msgstr "Noklusējuma"
@@ -811,7 +821,7 @@ msgstr "_Nosaukums:"
#: basctl/uiconfig/basicide/ui/organizedialog.ui:8
msgctxt "organizedialog|OrganizeDialog"
msgid "%PRODUCTNAME Basic Macro Organizer"
-msgstr "%PRODUCTNAME Basic makro organizētājs"
+msgstr "%PRODUCTNAME Basic makrokomandu organizētājs"
#: basctl/uiconfig/basicide/ui/organizedialog.ui:80
msgctxt "organizedialog|modules"
diff --git a/source/lv/basic/messages.po b/source/lv/basic/messages.po
index 4593c6ae321..0d4fff16019 100644
--- a/source/lv/basic/messages.po
+++ b/source/lv/basic/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-02-27 15:07+0100\n"
-"PO-Revision-Date: 2018-08-22 10:38+0000\n"
+"PO-Revision-Date: 2019-03-22 06:04+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lv\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1534934332.000000\n"
+"X-POOTLE-MTIME: 1553234690.000000\n"
#: basic/inc/basic.hrc:27
msgctxt "RID_BASIC_START"
@@ -144,7 +144,7 @@ msgstr "Ierīces ievadizvades (I/O) kļūda."
#: basic/inc/basic.hrc:52
msgctxt "RID_BASIC_START"
msgid "File already exists."
-msgstr "Datne jau eksistē."
+msgstr "Datne jau pastāv."
#: basic/inc/basic.hrc:53
msgctxt "RID_BASIC_START"
diff --git a/source/lv/chart2/messages.po b/source/lv/chart2/messages.po
index 6e8f11e3072..2884d6dc8ae 100644
--- a/source/lv/chart2/messages.po
+++ b/source/lv/chart2/messages.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-12-17 16:28+0100\n"
-"PO-Revision-Date: 2018-10-21 19:38+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2019-01-12 13:17+0100\n"
+"PO-Revision-Date: 2019-02-27 11:56+0000\n"
+"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lv\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1540150726.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1551268612.000000\n"
#: chart2/inc/chart.hrc:17
msgctxt "tp_ChartType|liststore1"
@@ -54,7 +54,7 @@ msgstr "Kāpņveida līnijas"
#: chart2/inc/strings.hrc:27
msgctxt "STR_DLG_REMOVE_DATA_TABLE"
msgid "This chart currently contains an internal data table. Do you want to proceed, deleting the internal data table, and set a new data range?"
-msgstr ""
+msgstr "Šī diagramma pašlaik satur iekšējo datu tabulu. Vai vēlaties turpināt, dzēšot iekšējo datu tabulu un iestatot jaunu datu diapazonu?"
#: chart2/inc/strings.hrc:28
msgctxt "STR_PAGE_CHARTTYPE"
@@ -966,12 +966,12 @@ msgstr "Datu diapazoni"
#: chart2/uiconfig/ui/datarangedialog.ui:124
msgctxt "datarangedialog|range"
msgid "Data Range"
-msgstr ""
+msgstr "Datu diapazons"
#: chart2/uiconfig/ui/datarangedialog.ui:170
msgctxt "datarangedialog|series"
msgid "Data Series"
-msgstr ""
+msgstr "Datu sērijas"
#: chart2/uiconfig/ui/dlg_DataLabel.ui:13
msgctxt "dlg_DataLabel|dlg_DataLabels"
@@ -1511,7 +1511,7 @@ msgstr "Virsraksti"
#: chart2/uiconfig/ui/sidebarelements.ui:102
msgctxt "sidebarelements|checkbutton_legend|tooltip_text"
msgid "Show Legend"
-msgstr "Rādīt apzīmējumu"
+msgstr "Rādīt apzīmējumus"
#: chart2/uiconfig/ui/sidebarelements.ui:126
msgctxt "sidebarelements|placement_label"
@@ -2693,120 +2693,120 @@ msgctxt "tp_RangeChooser|STR_PAGE_DATA_RANGE"
msgid "Data Range"
msgstr "Datu diapazons"
-#: chart2/uiconfig/ui/tp_Scale.ui:63
+#: chart2/uiconfig/ui/tp_Scale.ui:59
msgctxt "tp_Scale|CBX_REVERSE"
msgid "_Reverse direction"
msgstr "P_retējais virziens"
-#: chart2/uiconfig/ui/tp_Scale.ui:79
+#: chart2/uiconfig/ui/tp_Scale.ui:75
msgctxt "tp_Scale|CBX_LOGARITHM"
msgid "_Logarithmic scale"
msgstr "_Logaritmiskā skala"
-#: chart2/uiconfig/ui/tp_Scale.ui:102
+#: chart2/uiconfig/ui/tp_Scale.ui:98
msgctxt "tp_Scale|TXT_AXIS_TYPE"
msgid "T_ype"
msgstr "T_ips"
-#: chart2/uiconfig/ui/tp_Scale.ui:118
+#: chart2/uiconfig/ui/tp_Scale.ui:114
msgctxt "tp_Scale|LB_AXIS_TYPE"
msgid "Automatic"
msgstr "Automātiski"
-#: chart2/uiconfig/ui/tp_Scale.ui:119
+#: chart2/uiconfig/ui/tp_Scale.ui:115
msgctxt "tp_Scale|LB_AXIS_TYPE"
msgid "Text"
msgstr "Teksts"
-#: chart2/uiconfig/ui/tp_Scale.ui:120
+#: chart2/uiconfig/ui/tp_Scale.ui:116
msgctxt "tp_Scale|LB_AXIS_TYPE"
msgid "Date"
msgstr "Datums"
-#: chart2/uiconfig/ui/tp_Scale.ui:153
+#: chart2/uiconfig/ui/tp_Scale.ui:149
msgctxt "tp_Scale|TXT_MIN"
msgid "_Minimum"
msgstr "_Minimums"
-#: chart2/uiconfig/ui/tp_Scale.ui:167
+#: chart2/uiconfig/ui/tp_Scale.ui:163
msgctxt "tp_Scale|TXT_MAX"
msgid "Ma_ximum"
msgstr "Ma_ksimums"
-#: chart2/uiconfig/ui/tp_Scale.ui:179
+#: chart2/uiconfig/ui/tp_Scale.ui:175
msgctxt "tp_Scale|CBX_AUTO_MIN"
msgid "_Automatic"
msgstr "_Automātiski"
-#: chart2/uiconfig/ui/tp_Scale.ui:194
+#: chart2/uiconfig/ui/tp_Scale.ui:190
msgctxt "tp_Scale|CBX_AUTO_MAX"
msgid "A_utomatic"
msgstr "A_utomātiski"
-#: chart2/uiconfig/ui/tp_Scale.ui:249
+#: chart2/uiconfig/ui/tp_Scale.ui:245
msgctxt "tp_Scale|TXT_TIME_RESOLUTION"
msgid "R_esolution"
msgstr "_Izšķirtspēja"
-#: chart2/uiconfig/ui/tp_Scale.ui:265 chart2/uiconfig/ui/tp_Scale.ui:347
-#: chart2/uiconfig/ui/tp_Scale.ui:473
+#: 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 "Dienas"
-#: chart2/uiconfig/ui/tp_Scale.ui:266 chart2/uiconfig/ui/tp_Scale.ui:348
-#: chart2/uiconfig/ui/tp_Scale.ui:474
+#: 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 "Mēneši"
-#: chart2/uiconfig/ui/tp_Scale.ui:267 chart2/uiconfig/ui/tp_Scale.ui:349
-#: chart2/uiconfig/ui/tp_Scale.ui:475
+#: 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 "Gadi"
-#: chart2/uiconfig/ui/tp_Scale.ui:278
+#: chart2/uiconfig/ui/tp_Scale.ui:274
msgctxt "tp_Scale|CBX_AUTO_TIME_RESOLUTION"
msgid "Automat_ic"
msgstr "Automāt_iski"
-#: chart2/uiconfig/ui/tp_Scale.ui:308
+#: chart2/uiconfig/ui/tp_Scale.ui:304
msgctxt "tp_Scale|TXT_STEP_MAIN"
msgid "Ma_jor interval"
msgstr "_Lielais intervāls"
-#: chart2/uiconfig/ui/tp_Scale.ui:388
+#: chart2/uiconfig/ui/tp_Scale.ui:384
msgctxt "tp_Scale|CBX_AUTO_STEP_MAIN"
msgid "Au_tomatic"
msgstr "Au_tomātiski"
-#: chart2/uiconfig/ui/tp_Scale.ui:423
+#: chart2/uiconfig/ui/tp_Scale.ui:419
msgctxt "tp_Scale|TXT_STEP_HELP"
msgid "Minor inter_val"
msgstr "Papildu inter_vāls"
-#: chart2/uiconfig/ui/tp_Scale.ui:437
+#: chart2/uiconfig/ui/tp_Scale.ui:433
msgctxt "tp_Scale|TXT_STEP_HELP_COUNT"
msgid "Minor inter_val count"
msgstr "Papildu inter_vālu skaits"
-#: chart2/uiconfig/ui/tp_Scale.ui:486
+#: chart2/uiconfig/ui/tp_Scale.ui:482
msgctxt "tp_Scale|CBX_AUTO_STEP_HELP"
msgid "Aut_omatic"
msgstr "Aut_omātiski"
-#: chart2/uiconfig/ui/tp_Scale.ui:516
+#: chart2/uiconfig/ui/tp_Scale.ui:512
msgctxt "tp_Scale|TXT_ORIGIN"
msgid "Re_ference value"
msgstr "_Atsauces vērtība"
-#: chart2/uiconfig/ui/tp_Scale.ui:542
+#: chart2/uiconfig/ui/tp_Scale.ui:538
msgctxt "tp_Scale|CBX_AUTO_ORIGIN"
msgid "Automat_ic"
msgstr "Automāt_iski"
-#: chart2/uiconfig/ui/tp_Scale.ui:571
+#: chart2/uiconfig/ui/tp_Scale.ui:567
msgctxt "tp_Scale|FL_SCALE"
msgid "Scale"
msgstr "Mērogs"
@@ -2859,7 +2859,7 @@ msgstr "Attēlot trūkstošās vērtības"
#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:267
msgctxt "tp_SeriesToAxis|RB_DONT_PAINT"
msgid "_Leave gap"
-msgstr "_Atstāt spraugu"
+msgstr "_Atstāt atstarpi"
#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:283
msgctxt "tp_SeriesToAxis|RB_ASSUME_ZERO"
@@ -2881,6 +2881,16 @@ msgctxt "tp_SeriesToAxis|label3"
msgid "Plot Options"
msgstr "Attēlošanas opcijas"
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:385
+msgctxt "tp_SeriesToAxis|CB_LEGEND_ENTRY_HIDDEN"
+msgid "Hide legend entry"
+msgstr "Slēpt apzīmējuma ierakstu"
+
+#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:406
+msgctxt "tp_SeriesToAxis|label4"
+msgid "Legend Entry"
+msgstr "Apzīmējuma ieraksts"
+
#: chart2/uiconfig/ui/tp_Trendline.ui:65
msgctxt "tp_Trendline|linear"
msgid "_Linear"
diff --git a/source/lv/connectivity/messages.po b/source/lv/connectivity/messages.po
index 569225ea982..743eeecfa93 100644
--- a/source/lv/connectivity/messages.po
+++ b/source/lv/connectivity/messages.po
@@ -4,14 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-09-03 13:23+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2019-03-22 06:06+0000\n"
+"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: lv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1553234761.000000\n"
#. = the mozab driver's resource strings
#: connectivity/inc/strings.hrc:26
@@ -68,7 +71,7 @@ msgstr "Lūdzu, izpildiet rindu '$position$' pirms rindu atjaunināšanas vai ja
#: connectivity/inc/strings.hrc:37
msgctxt "STR_NO_CONNECTION_GIVEN"
msgid "It doesn't exist a connection to the database."
-msgstr "Savienojums ar datubāzi neeksistē."
+msgstr "Savienojums ar datubāzi nepastāv."
#: connectivity/inc/strings.hrc:38
msgctxt "STR_WRONG_PARAM_INDEX"
@@ -280,7 +283,7 @@ msgstr "Neizdevās izveidot indeksu. Notika nezināma kļūda."
#: connectivity/inc/strings.hrc:80
msgctxt "STR_COULD_NOT_CREATE_INDEX_NAME"
msgid "The index could not be created. The file '$filename$' is used by another index."
-msgstr ""
+msgstr "Indekss nevarēja tikt izveidots. Datni '$filename$' izmanto cits indekss."
#: connectivity/inc/strings.hrc:81
msgctxt "STR_COULD_NOT_CREATE_INDEX_KEYSIZE"
@@ -554,7 +557,7 @@ msgstr "Nav savienojuma ar datubāzi."
#: connectivity/inc/strings.hrc:139
msgctxt "STR_AB_ADDRESSBOOK_NOT_FOUND"
msgid "No $1$ exists."
-msgstr "$1$ neeksistē."
+msgstr "$1$ nepastāv."
#: connectivity/inc/strings.hrc:140
msgctxt "STR_DATA_CANNOT_SELECT_UNFILTERED"
diff --git a/source/lv/cui/messages.po b/source/lv/cui/messages.po
index 971aae437b5..9453d07615b 100644
--- a/source/lv/cui/messages.po
+++ b/source/lv/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: 2018-12-17 16:28+0100\n"
-"PO-Revision-Date: 2018-11-16 10:02+0000\n"
+"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"PO-Revision-Date: 2019-04-17 09:09+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lv\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1542362552.000000\n"
+"X-POOTLE-MTIME: 1555492189.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -179,7 +179,7 @@ msgstr "Klasifikācija"
#: cui/inc/strings.hrc:45
msgctxt "RID_SVXSTR_KEY_AUTOCORRECT_DIR"
msgid "AutoCorrect"
-msgstr "Automātiskais labotājs"
+msgstr "Automātiskā labošana"
#: cui/inc/strings.hrc:46
msgctxt "RID_SVXSTR_KEY_LINGUISTIC_DIR"
@@ -329,8 +329,8 @@ msgstr "Pasts"
#: cui/inc/strings.hrc:80
msgctxt "RID_SVXSTR_HYPERDLG_HLMAILTP_HELP"
-msgid "This is where you create a hyperlink to an e-mail address."
-msgstr "Šeit jūs izveidojat hipersaiti uz e-pasta adresi."
+msgid "This is where you create a hyperlink to an email address."
+msgstr "Šeit veido hipersaiti uz e-pasta adresi."
#: cui/inc/strings.hrc:81
msgctxt "RID_SVXSTR_HYPERDLG_HLDOCTP"
@@ -340,7 +340,7 @@ msgstr "Dokuments"
#: cui/inc/strings.hrc:82
msgctxt "RID_SVXSTR_HYPERDLG_HLDOCTP_HELP"
msgid "This is where you create a hyperlink to an existing document or a target within a document."
-msgstr "Šeit tiek veidota saite uz eksistējošu dokumentu vai mērķi dokumentā."
+msgstr "Šeit veido hipersaiti uz esošu dokumentu vai mērķi dokumentā."
#: cui/inc/strings.hrc:83
msgctxt "RID_SVXSTR_HYPERDLG_HLDOCNTP"
@@ -365,7 +365,7 @@ msgstr "Teksts"
#: cui/inc/strings.hrc:87
msgctxt "RID_SVXSTR_HYPERDLG_QUERYOVERWRITE"
msgid "The file already exists. Overwrite?"
-msgstr "Datne jau eksistē. Pārrakstīt?"
+msgstr "Datne jau pastāv. Pārrakstīt?"
#: cui/inc/strings.hrc:89
msgctxt "RID_SVXSTR_ERR_TEXTNOTFOUND"
@@ -385,22 +385,22 @@ msgstr "Visas komandas"
#: cui/inc/strings.hrc:92
msgctxt "RID_SVXSTR_MACROS"
msgid "Macros"
-msgstr "Makro"
+msgstr "Makrokomandas"
#: cui/inc/strings.hrc:93
msgctxt "RID_SVXSTR_MYMACROS"
msgid "My Macros"
-msgstr "Mani makro"
+msgstr "Manas makrokomandas"
#: cui/inc/strings.hrc:94
msgctxt "RID_SVXSTR_PRODMACROS"
msgid "%PRODUCTNAME Macros"
-msgstr "%PRODUCTNAME makro"
+msgstr "%PRODUCTNAME makrokomandas"
#: cui/inc/strings.hrc:95
msgctxt "RID_SVXSTR_NOMACRODESC"
msgid "There is no description available for this macro."
-msgstr "Šim makro nav pieejams apraksts."
+msgstr "Šai makrokomandai nav pieejams apraksts."
#: cui/inc/strings.hrc:96
msgctxt "RID_SVXSTR_SELECTOR_ADD_COMMANDS"
@@ -493,7 +493,7 @@ msgstr "Konfigurācija (*.cfg)"
#: cui/inc/strings.hrc:116
msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_NOENTRIES"
msgid "Targets do not exist in the document."
-msgstr "Dokumentā mērķi neeksistē."
+msgstr "Dokumentā mērķi nepastāv."
#: cui/inc/strings.hrc:117
msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_DOCNOTOPEN"
@@ -518,7 +518,7 @@ msgstr "Handža"
#: cui/inc/strings.hrc:121
msgctxt "RID_SVXSTR_BASICMACROS"
msgid "BASIC Macros"
-msgstr "BASIC makrosi"
+msgstr "BASIC makrokomandas"
#: cui/inc/strings.hrc:122
msgctxt "RID_SVXSTR_GROUP_STYLES"
@@ -953,12 +953,12 @@ msgstr "<Visas datnes>"
#: cui/inc/strings.hrc:211
msgctxt "RID_SVXSTR_GALLERY_ID_EXISTS"
msgid "This ID already exists..."
-msgstr "Šāds ID jau eksistē..."
+msgstr "Šis ID jau pastāv..."
#: cui/inc/strings.hrc:213
msgctxt "RID_MULTIPATH_DBL_ERR"
msgid "The path %1 already exists."
-msgstr "Ceļš %1 jau eksistē."
+msgstr "Ceļš %1 jau pastāv."
#: cui/inc/strings.hrc:214
msgctxt "RID_SVXSTR_ARCHIVE_TITLE"
@@ -973,7 +973,7 @@ msgstr "Arhīvi"
#: cui/inc/strings.hrc:216
msgctxt "RID_SVXSTR_MULTIFILE_DBL_ERR"
msgid "The file %1 already exists."
-msgstr "Datne %1 jau eksistē."
+msgstr "Datne %1 jau pastāv."
#: cui/inc/strings.hrc:217
msgctxt "RID_SVXSTR_ADD_IMAGE"
@@ -1075,7 +1075,7 @@ msgid ""
msgstr ""
"Datne\n"
"$file$\n"
-"neeksistē."
+"nepastāv."
#: cui/inc/strings.hrc:243
msgctxt "STR_LINKEDDOC_NO_SYSTEM_FILE"
@@ -1086,7 +1086,7 @@ msgid ""
msgstr ""
"Datne\n"
"$file$\n"
-"neatrodas šajā datņu sistēmā."
+"nepastāv lokālajā datņu sistēmā."
#: cui/inc/strings.hrc:244
msgctxt "STR_NAME_CONFLICT"
@@ -1130,7 +1130,7 @@ msgstr "Neizdevās izveidot objektu."
#: cui/inc/strings.hrc:252
msgctxt "RID_SVXSTR_CREATEFAILEDDUP"
msgid " Object with the same name already exists."
-msgstr " Objekts ar tādu pašu nosaukumu jau eksistē."
+msgstr " Objekts ar tādu pašu nosaukumu jau pastāv."
#: cui/inc/strings.hrc:253
msgctxt "RID_SVXSTR_CREATEFAILED_TITLE"
@@ -1196,60 +1196,50 @@ msgctxt "RID_SVXSTR_ERROR_MESSAGE_LABEL"
msgid "Message:"
msgstr "Ziņojums:"
-#: cui/inc/strings.hrc:266
-msgctxt "RID_SVXSTR_TYPE"
-msgid "Registered name"
-msgstr "Reģistrēts nosaukums"
-
-#: cui/inc/strings.hrc:267
-msgctxt "RID_SVXSTR_PATH"
-msgid "Database file"
-msgstr "Datubāzes datne"
-
#. abbreviation for "[Load]"
-#: cui/inc/strings.hrc:270
+#: cui/inc/strings.hrc:267
msgctxt "RID_SVXSTR_HEADER1"
msgid "[L]"
msgstr "[L]"
#. abbreviation for "[Save]"
-#: cui/inc/strings.hrc:272
+#: cui/inc/strings.hrc:269
msgctxt "RID_SVXSTR_HEADER2"
msgid "[S]"
msgstr "[S]"
-#: cui/inc/strings.hrc:273
+#: cui/inc/strings.hrc:270
msgctxt "RID_SVXSTR_CHG_MATH"
msgid "MathType to %PRODUCTNAME Math or reverse"
msgstr "MathType uz %PRODUCTNAME Math vai otrādi"
-#: cui/inc/strings.hrc:274
+#: cui/inc/strings.hrc:271
msgctxt "RID_SVXSTR_CHG_WRITER"
msgid "WinWord to %PRODUCTNAME Writer or reverse"
msgstr "WinWord uz %PRODUCTNAME Writer vai otrādi"
-#: cui/inc/strings.hrc:275
+#: cui/inc/strings.hrc:272
msgctxt "RID_SVXSTR_CHG_CALC"
msgid "Excel to %PRODUCTNAME Calc or reverse"
msgstr "Excel uz %PRODUCTNAME Calc vai otrādi"
-#: cui/inc/strings.hrc:276
+#: cui/inc/strings.hrc:273
msgctxt "RID_SVXSTR_CHG_IMPRESS"
msgid "PowerPoint to %PRODUCTNAME Impress or reverse"
msgstr "PowerPoint uz %PRODUCTNAME Impress vai otrādi"
-#: cui/inc/strings.hrc:277
+#: cui/inc/strings.hrc:274
msgctxt "RID_SVXSTR_CHG_SMARTART"
msgid "SmartArt to %PRODUCTNAME shapes or reverse"
msgstr "SmartArt uz %PRODUCTNAME figūrām vai otrādi"
-#: cui/inc/strings.hrc:279
+#: cui/inc/strings.hrc:276
msgctxt "RID_SVXSTR_OPT_DOUBLE_DICTS"
msgid ""
"The specified name already exists.\n"
"Please enter a new name."
msgstr ""
-"Izvēlētais vārds jau ir aizņemts\n"
+"Norādītais vārds jau pastāv.\n"
"Lūdzu, ievadiet jaunu vārdu."
#. To translators:
@@ -1264,112 +1254,112 @@ 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:294
+#: cui/inc/strings.hrc:291
msgctxt "RID_SVXSTR_OPT_GRAMMAR_BY"
msgid "~Grammar By"
msgstr "~Gramatika"
-#: cui/inc/strings.hrc:295
+#: cui/inc/strings.hrc:292
msgctxt "STR_MODIFY"
msgid "~Replace"
msgstr "~Aizstāt"
-#: cui/inc/strings.hrc:296
+#: cui/inc/strings.hrc:293
msgctxt "RID_SVXSTR_CONFIRM_SET_LANGUAGE"
msgid "Do you want to change the '%1' dictionary language?"
msgstr "Vai vēlaties mainīt '%1' vārdnīcas valodu?"
-#: cui/inc/strings.hrc:298
+#: cui/inc/strings.hrc:295
msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE"
msgid "Do you really want to delete the color scheme?"
msgstr "Vai tiešām vēlaties dzēst šo krāsu shēmu?"
-#: cui/inc/strings.hrc:299
+#: cui/inc/strings.hrc:296
msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE_TITLE"
msgid "Color Scheme Deletion"
msgstr "Krāsu shēmas dzēšana"
-#: cui/inc/strings.hrc:300
+#: cui/inc/strings.hrc:297
msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE1"
msgid "Save scheme"
msgstr "Saglabāt saskaņu"
-#: cui/inc/strings.hrc:301
+#: cui/inc/strings.hrc:298
msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE2"
msgid "Name of color scheme"
msgstr "Krāsu shēmas nosaukums"
-#: cui/inc/strings.hrc:303
+#: cui/inc/strings.hrc:300
msgctxt "RID_SVXSTR_SPELL"
msgid "Spelling"
msgstr "Pareizrakstība"
-#: cui/inc/strings.hrc:304
+#: cui/inc/strings.hrc:301
msgctxt "RID_SVXSTR_HYPH"
msgid "Hyphenation"
msgstr "Zilbjdale"
-#: cui/inc/strings.hrc:305
+#: cui/inc/strings.hrc:302
msgctxt "RID_SVXSTR_THES"
msgid "Thesaurus"
msgstr "Tēzaurs"
-#: cui/inc/strings.hrc:306
+#: cui/inc/strings.hrc:303
msgctxt "RID_SVXSTR_GRAMMAR"
msgid "Grammar"
msgstr "Gramatika"
-#: cui/inc/strings.hrc:307
+#: cui/inc/strings.hrc:304
msgctxt "RID_SVXSTR_CAPITAL_WORDS"
msgid "Check uppercase words"
msgstr "Pārbaudīt vārdus ar lielajiem burtiem"
-#: cui/inc/strings.hrc:308
+#: cui/inc/strings.hrc:305
msgctxt "RID_SVXSTR_WORDS_WITH_DIGITS"
msgid "Check words with numbers "
msgstr "Pārbaudīt vārdus ar cipariem"
-#: cui/inc/strings.hrc:309
+#: cui/inc/strings.hrc:306
msgctxt "RID_SVXSTR_SPELL_SPECIAL"
msgid "Check special regions"
msgstr "Pārbaudīt īpašos reģionus"
-#: cui/inc/strings.hrc:310
+#: cui/inc/strings.hrc:307
msgctxt "RID_SVXSTR_SPELL_AUTO"
msgid "Check spelling as you type"
msgstr "Pārbaudīt pareizrakstību rakstīšanas laikā"
-#: cui/inc/strings.hrc:311
+#: cui/inc/strings.hrc:308
msgctxt "RID_SVXSTR_GRAMMAR_AUTO"
msgid "Check grammar as you type"
msgstr "Pārbaudīt gramatiku rakstīšanas laikā"
-#: cui/inc/strings.hrc:312
+#: cui/inc/strings.hrc:309
msgctxt "RID_SVXSTR_NUM_MIN_WORDLEN"
msgid "Minimal number of characters for hyphenation: "
msgstr "Minimālais rakstzīmju skaitu zilbjdalē:"
-#: cui/inc/strings.hrc:313
+#: cui/inc/strings.hrc:310
msgctxt "RID_SVXSTR_NUM_PRE_BREAK"
msgid "Characters before line break: "
msgstr "Rakstzīmes pirms rindas dalīšanas:"
-#: cui/inc/strings.hrc:314
+#: cui/inc/strings.hrc:311
msgctxt "RID_SVXSTR_NUM_POST_BREAK"
msgid "Characters after line break: "
msgstr "Rakstzīmes pēc rindas dalīšanas:"
-#: cui/inc/strings.hrc:315
+#: cui/inc/strings.hrc:312
msgctxt "RID_SVXSTR_HYPH_AUTO"
msgid "Hyphenate without inquiry"
msgstr "Dalīt zilbēs bez apvaicāšanas"
-#: cui/inc/strings.hrc:316
+#: cui/inc/strings.hrc:313
msgctxt "RID_SVXSTR_HYPH_SPECIAL"
msgid "Hyphenate special regions"
msgstr "Dalīt zilbēs īpašos reģionus"
-#: cui/inc/strings.hrc:318
+#: cui/inc/strings.hrc:315
msgctxt "RID_SVXSTR_JRE_NOT_RECOGNIZED"
msgid ""
"The folder you selected does not contain a Java runtime environment.\n"
@@ -1378,7 +1368,7 @@ msgstr ""
"Izvēlētajā mapē nav Java runtime environment.\n"
"Lūdzu, izvēlieties citu mapi."
-#: cui/inc/strings.hrc:319
+#: cui/inc/strings.hrc:316
msgctxt "RID_SVXSTR_JRE_FAILED_VERSION"
msgid ""
"The Java runtime environment you selected is not the required version.\n"
@@ -1387,17 +1377,12 @@ msgstr ""
"Izvēlētam Java runtime environment nav vajadzīgā versija.\n"
"Lūdzu, izvēlieties citu mapi."
-#: cui/inc/strings.hrc:320
-msgctxt "RID_SVXSTR_OPTIONS_RESTART"
-msgid "Please restart %PRODUCTNAME now so the new or modified values can take effect."
-msgstr "Lūdzu, pārstartējiet %PRODUCTNAME tagad, lai jaunās vai modificētās vērtības varētu stāties spēkā."
-
-#: cui/inc/strings.hrc:321
+#: cui/inc/strings.hrc:317
msgctxt "RID_SVXSTR_JAVA_START_PARAM"
msgid "Edit Parameter"
msgstr "Rediģēt parametru"
-#: cui/inc/strings.hrc:323
+#: cui/inc/strings.hrc:319
msgctxt "RID_SVXSTR_OPT_PROXYPORTS"
msgid ""
"Invalid value!\n"
@@ -1408,32 +1393,32 @@ msgstr ""
"\n"
"Maksimālais porta skaitlis ir 65535."
-#: cui/inc/strings.hrc:325
+#: cui/inc/strings.hrc:321
msgctxt "RID_SVXSTR_DESC_GRADIENT"
msgid "Please enter a name for the gradient:"
msgstr "Lūdzu, ievadiet nosaukumu krāsu pārejai:"
-#: cui/inc/strings.hrc:326
+#: cui/inc/strings.hrc:322
msgctxt "RID_SVXSTR_DESC_NEW_BITMAP"
msgid "Please enter a name for the bitmap:"
msgstr "Lūdzu, ievadiet nosaukumu bitkartei:"
-#: cui/inc/strings.hrc:327
+#: cui/inc/strings.hrc:323
msgctxt "RID_SVXSTR_DESC_EXT_BITMAP"
msgid "Please enter a name for the external bitmap:"
msgstr "Lūdzu, ievadiet nosaukumu ārējai bitkartei:"
-#: cui/inc/strings.hrc:328
+#: cui/inc/strings.hrc:324
msgctxt "RID_SVXSTR_DESC_NEW_PATTERN"
msgid "Please enter a name for the pattern:"
msgstr "Lūdzu, ievadiet raksta nosaukumu:"
-#: cui/inc/strings.hrc:329
+#: cui/inc/strings.hrc:325
msgctxt "RID_SVXSTR_DESC_LINESTYLE"
msgid "Please enter a name for the line style:"
msgstr "Lūdzu, ievadiet nosaukumu līnijas stilam:"
-#: cui/inc/strings.hrc:330
+#: cui/inc/strings.hrc:326
msgctxt "RID_SVXSTR_ASK_CHANGE_LINESTYLE"
msgid ""
"The line style was modified without saving. \n"
@@ -1442,311 +1427,1843 @@ msgstr ""
"Līnijas stils tika modificēts bez saglabāšanas. \n"
"Modificējiet izvēlēto līnijas stilu vai pievienojiet jaunu."
-#: cui/inc/strings.hrc:331
+#: cui/inc/strings.hrc:327
msgctxt "RID_SVXSTR_DESC_HATCH"
msgid "Please enter a name for the hatching:"
msgstr "Lūdzu, ievadiet nosaukumu svītrojumam:"
-#: cui/inc/strings.hrc:332
+#: cui/inc/strings.hrc:328
msgctxt "RID_SVXSTR_CHANGE"
msgid "Modify"
msgstr "Modificēt"
-#: cui/inc/strings.hrc:333
+#: cui/inc/strings.hrc:329
msgctxt "RID_SVXSTR_ADD"
msgid "Add"
msgstr "Pievienot"
-#: cui/inc/strings.hrc:334
+#: cui/inc/strings.hrc:330
msgctxt "RID_SVXSTR_DESC_COLOR"
msgid "Please enter a name for the new color:"
msgstr "Lūdzu, ievadiet nosaukumu jaunajai krāsai:"
-#: cui/inc/strings.hrc:335
+#: cui/inc/strings.hrc:331
msgctxt "RID_SVXSTR_TABLE"
msgid "Table"
msgstr "Tabula"
-#: cui/inc/strings.hrc:336
+#: cui/inc/strings.hrc:332
msgctxt "RID_SVXSTR_DESC_LINEEND"
msgid "Please enter a name for the new arrowhead:"
msgstr "Lūdzu, ievadiet nosaukumu jaunajam bultas galam:"
-#: cui/inc/strings.hrc:337
+#: cui/inc/strings.hrc:333
msgctxt "RID_SVXSTR_CHARNAME_NOSTYLE"
msgid "No %1"
msgstr "Nr %1"
-#: cui/inc/strings.hrc:338
+#: cui/inc/strings.hrc:334
msgctxt "RID_SVXSTR_CHARNAME_FAMILY"
msgid "Family:"
msgstr "Saime:"
-#: cui/inc/strings.hrc:339
+#: cui/inc/strings.hrc:335
msgctxt "RID_SVXSTR_CHARNAME_FONT"
msgid "Font:"
msgstr "Fonts:"
-#: cui/inc/strings.hrc:340
+#: cui/inc/strings.hrc:336
msgctxt "RID_SVXSTR_CHARNAME_STYLE"
msgid "Style:"
msgstr "Stils:"
-#: cui/inc/strings.hrc:341
+#: cui/inc/strings.hrc:337
msgctxt "RID_SVXSTR_CHARNAME_TYPEFACE"
msgid "Typeface:"
msgstr "Burtveidols:"
-#: cui/inc/strings.hrc:342
+#: cui/inc/strings.hrc:338
msgctxt "RID_SVXSTR_CHARNAME_HIGHLIGHTING"
msgid "Highlight Color"
msgstr "Izcelšanas krāsa"
-#: cui/inc/strings.hrc:343
+#: cui/inc/strings.hrc:339
msgctxt "RID_SVXSTR_USE_REPLACE"
msgid "Use replacement table"
msgstr "Lietot aizstājumu tabulu"
-#: cui/inc/strings.hrc:344
+#: cui/inc/strings.hrc:340
msgctxt "RID_SVXSTR_CPTL_STT_WORD"
msgid "Correct TWo INitial CApitals"
-msgstr "Labot, ja PIrmie DIvi LIelie BUrti"
+msgstr "Labot SĀkotnējos DIvus LIelos BUrtus"
-#: cui/inc/strings.hrc:345
+#: cui/inc/strings.hrc:341
msgctxt "RID_SVXSTR_CPTL_STT_SENT"
msgid "Capitalize first letter of every sentence"
msgstr "Visu teikumu pirmos burtus pārvērst par lielajiem"
-#: cui/inc/strings.hrc:346
+#: cui/inc/strings.hrc:342
msgctxt "RID_SVXSTR_BOLD_UNDER"
msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
msgstr "Automātisks *trekns*, /kursīvs/, -pārsvītrojums- un _pasvītrojums_"
-#: cui/inc/strings.hrc:347
+#: cui/inc/strings.hrc:343
msgctxt "RID_SVXSTR_NO_DBL_SPACES"
msgid "Ignore double spaces"
msgstr "Ignorēt dubultas atstarpes"
-#: cui/inc/strings.hrc:348
+#: cui/inc/strings.hrc:344
msgctxt "RID_SVXSTR_DETECT_URL"
msgid "URL Recognition"
msgstr "URL atpazīšana"
-#: cui/inc/strings.hrc:349
+#: cui/inc/strings.hrc:345
msgctxt "RID_SVXSTR_DASH"
msgid "Replace dashes"
msgstr "Aizstāt domuzīmes"
-#: cui/inc/strings.hrc:350
+#: cui/inc/strings.hrc:346
msgctxt "RID_SVXSTR_CORRECT_ACCIDENTAL_CAPS_LOCK"
msgid "Correct accidental use of cAPS LOCK key"
msgstr "Labot nejaušu taustiņā cAPS LOCK izmantošanu"
-#: cui/inc/strings.hrc:351
+#: cui/inc/strings.hrc:347
msgctxt "RID_SVXSTR_NON_BREAK_SPACE"
msgid "Add non-breaking space before specific punctuation marks in French text"
msgstr "Pievienot nedalāmo atstarpi pirms noteiktām interpunkcijas zīmēm franču valodas tekstos"
-#: cui/inc/strings.hrc:352
+#: cui/inc/strings.hrc:348
msgctxt "RID_SVXSTR_ORDINAL"
msgid "Format ordinal numbers suffixes (1st -> 1^st)"
msgstr "Formatēt kārtas skaitļu sufiksus (1st -> 1^st)"
-#: cui/inc/strings.hrc:353
+#: cui/inc/strings.hrc:349
msgctxt "RID_SVXSTR_DEL_EMPTY_PARA"
msgid "Remove blank paragraphs"
msgstr "Izņemt tukšās rindkopas"
-#: cui/inc/strings.hrc:354
+#: cui/inc/strings.hrc:350
msgctxt "RID_SVXSTR_USER_STYLE"
msgid "Replace Custom Styles"
msgstr "Aizstāt pielāgotos stilus"
-#: cui/inc/strings.hrc:355
+#: cui/inc/strings.hrc:351
msgctxt "RID_SVXSTR_BULLET"
msgid "Replace bullets with: %1"
-msgstr ""
+msgstr "Aizstāt aizzīmes ar: %1"
#. To translators: %1 will be replaced with a percentage, e.g. "10%"
-#: cui/inc/strings.hrc:357
+#: cui/inc/strings.hrc:353
msgctxt "RID_SVXSTR_RIGHT_MARGIN"
msgid "Combine single line paragraphs if length greater than %1"
-msgstr ""
+msgstr "Apvienot vienrindas rindkopas, ja garums ir lielāks par %1"
-#: cui/inc/strings.hrc:358
+#: cui/inc/strings.hrc:354
msgctxt "RID_SVXSTR_NUM"
msgid "Bulleted and numbered lists. Bullet symbol: %1"
-msgstr ""
+msgstr "Saraksti ar aizzīmēm un numurēti saraksti. Aizzīmes simbols: %1"
-#: cui/inc/strings.hrc:359
+#: cui/inc/strings.hrc:355
msgctxt "RID_SVXSTR_BORDER"
msgid "Apply border"
msgstr "Pielietot apmali"
-#: cui/inc/strings.hrc:360
+#: cui/inc/strings.hrc:356
msgctxt "RID_SVXSTR_CREATE_TABLE"
msgid "Create table"
msgstr "Izveidot tabulu"
-#: cui/inc/strings.hrc:361
+#: cui/inc/strings.hrc:357
msgctxt "RID_SVXSTR_REPLACE_TEMPLATES"
msgid "Apply Styles"
msgstr "Pielietot stilus"
-#: cui/inc/strings.hrc:362
+#: cui/inc/strings.hrc:358
msgctxt "RID_SVXSTR_DEL_SPACES_AT_STT_END"
msgid "Delete spaces and tabs at beginning and end of paragraph"
msgstr "Dzēst atstarpes un tabulācijas rindkopu sākumā un beigās"
-#: cui/inc/strings.hrc:363
+#: cui/inc/strings.hrc:359
msgctxt "RID_SVXSTR_DEL_SPACES_BETWEEN_LINES"
msgid "Delete spaces and tabs at end and start of line"
msgstr "Dzēst atstarpes un tabulācijas rindu sākumā un beigās"
-#: cui/inc/strings.hrc:364
+#: cui/inc/strings.hrc:360
msgctxt "RID_SVXSTR_CONNECTOR"
msgid "Connector"
msgstr "Savienotājs"
-#: cui/inc/strings.hrc:365
+#: cui/inc/strings.hrc:361
msgctxt "RID_SVXSTR_DIMENSION_LINE"
msgid "Dimension line"
msgstr "Mērlīnija"
-#: cui/inc/strings.hrc:366
+#: cui/inc/strings.hrc:362
msgctxt "RID_SVXSTR_STARTQUOTE"
msgid "Start Quote"
msgstr "Sākuma pēdiņa"
-#: cui/inc/strings.hrc:367
+#: cui/inc/strings.hrc:363
msgctxt "RID_SVXSTR_ENDQUOTE"
msgid "End Quote"
msgstr "Beigu pēdiņa"
-#: cui/inc/strings.hrc:369
+#: cui/inc/strings.hrc:365
msgctxt "RID_SVXSTR_SELECTEDPERSONA"
msgid "Selected Theme: "
msgstr "Izvēlētais motīvs:"
-#: cui/inc/strings.hrc:370
+#: cui/inc/strings.hrc:366
msgctxt "RID_SVXSTR_SEARCHING"
msgid "Searching, please wait..."
msgstr "Meklē. Lūdzu, uzgaidiet..."
-#: cui/inc/strings.hrc:371
+#: cui/inc/strings.hrc:367
msgctxt "RID_SVXSTR_SEARCHERROR"
msgid "Cannot open %1, please try again later."
msgstr "Nevar atvērt %1, lūdzu, vēlāk mēģiniet vēlreiz."
-#: cui/inc/strings.hrc:372
+#: cui/inc/strings.hrc:368
msgctxt "RID_SVXSTR_NORESULTS"
msgid "No results found."
msgstr "Nav atrastu rezultātu."
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:369
msgctxt "RID_SVXSTR_APPLYPERSONA"
msgid "Applying Theme..."
msgstr "Pielieto motīvu..."
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:370
msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
+msgstr "Lūdzu, ievadiet derīgu motīva adresi vai meklējamo terminu."
+
+#: cui/inc/strings.hrc:371
+msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
+msgid "The Mozilla Themes API is currently unavailable."
msgstr ""
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Iestatīt bez malām"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Iestatīt tikai ārējās malas"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Iestatīt ārējās apmales un horizontālās līnijas"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Iestatīt ārējās malas un visas iekšējās līnijas"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Iestatīt ārējās apmales nemainot iekšējās līnijas"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Iestatīt tikai diagonālās līnijas"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Iestatīt visas četras malas"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Iestatīt tikai labās un kreisās malas"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Iestatīt tikai augšējās un apakšējās malas"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Iestatīt tikai kreisās puses malu"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Iestatīt augšējo, apakšējo malu un visas iekšējās līnijas"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Iestatīt labās, kreisās malas un visas iekšējās līnijas"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Nav ēnas"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Mest ēnu uz leju/pa labi"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Mest ēnu uz augšu/pa labi"
-#: cui/inc/strings.hrc:391
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Mest ēnu uz leju/pa kreisi"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Mest ēnu uz augšu/pa kreisi"
-#: cui/inc/strings.hrc:393
+#: cui/inc/strings.hrc:390
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Parakstījis: %1"
+#: cui/inc/strings.hrc:392
+msgctxt "RID_SVXSTR_FILTER_ALL"
+msgid "All files"
+msgstr "Visas datnes"
+
#: cui/inc/strings.hrc:394
-msgctxt "RID_SVXSTR_OPENCL_RESTART"
-msgid "For the OpenCL changes to take effect, %PRODUCTNAME must be restarted."
-msgstr "%PRODUCTNAME ir jāpārstartē, lai stātos spēkā OpenCL izmaiņas."
+msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
+msgid "Registered Databases"
+msgstr "Reģistrētās datubāzes"
+
+#: cui/inc/tipoftheday.hrc:35
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "LibreOffice has the ask.libreoffice.org portal where you may get help from the community. https://ask.libreoffice.org/"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:36
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "You can easily convert your documents to PDF with one click by clicking the PDF icon in the toolbar."
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:37
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Editable PDFs? Yes, you can create Hybrid PDFs with LibreOffice. https://wiki.documentfoundation.org/Documentation/HowTo/CreateAHybridPDF"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:38
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "You can select the new Sifr icon set from Tools > Options... > LibreOffice > View > User Interface > Icon size and style."
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:39
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "You can easily create fillable form documents (even PDF's) with LibreOffice"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:40
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "You can use your Android or iPhone to remotely control your Impress presentation"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:41
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Something about rollAPP? You can use LibreOffice on your iPad or Chrome OS via rollApp"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:42
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "LibreOffice has great extensions to increase your productivity on its Extension Center, check it out. https://extensions.libreoffice.org/"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:43
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "LibreOffice has a template center to create good looking documents, check it out. http://templates.libreoffice.org/template-center"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:44
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "You can use font embedding for greater interoperability with other office suites/oses "
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:45
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Conditional formatting..."
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:46
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "XSLT and xml filters http://fridrich.blogspot.com.tr/2013/08/extending-swiss-army-knife-overview.html "
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:47
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Zotero is an extensions for better bibliography citation management for Academic works and students https://www.zotero.org/download/"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:48
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Mendeley is an extensions for better bibliography citation management for Academic works and students http://www.mendeley.com/"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:49
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "You can change the appearance of LibreOffice with Firefox Personas https://addons.mozilla.org/firefox/themes/"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:50
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "You can change the splash screen of LibreOffice for your own taste"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:51
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "You can disable the splash screen "
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:52
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "You can speed-up/fine tune LibreOffice's performance http://oldpapyrus.wordpress.com/2012/06/28/reduce-libreoffice-memory-usage/"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:53
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "You can use Quickstart to open LibreOffice quicker"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:54
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Have you tried our new sidebar- Appearance- Sidebar"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:55
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Have you known that LibreOffice has great documentation and free user guide books http://www.libreoffice.org/get-help/documentation/ "
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:56
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Embedded help can save lives. Just click F1 to reach the embedded help, if you've installed it. Otherwise you may benefit from this huge content online at http://help.libreoffice.org"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:57
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "LibreOffice has a portable version which gives you mobility. If you don't have administrator rights on your computer you may install LibreOffice Portable to your hard drive too http://www.libreoffice.org/download/portable-versions/"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:58
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "How to remove pagebreaks from a .docx document that someone sent you, where there are pagebreaks for each sentence in the document."
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:59
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Open 1 document in 2 windows"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:60
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Format one or more characters with a border available since 4.2"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:61
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Generate fully customized PDF documents: you can define the exact pdf format, image compression, comments, access rights, password. File > Export as PDF"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:62
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Right-click context menu on bottom left scrollbar arrows to switch sheets"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:63
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "CMIS protocol support to access Document Management Systems"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:64
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Use Data › Statistics for Sampling, Descriptive Statistics, Analysis of Variance, Correlation, Covariance, Exponential Smoothing, Moving Avg"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:65
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Right-click in the status bar and select 'Selection count' to display the number of selected cells"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:66
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Insert › Image › Photo Album to create slideshows from a series of pictures with the 'Photo Album' feature"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:67
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Take a look at the new 'Gallery' (Images & sounds, fifteen themes: Arrows, Bullets, Computers, Environment, Finance, School, Symbols...)"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:68
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Did you know that you can attach comments to portions of text?"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:69
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Need to insert the date in a cell? Type Ctrl+; (Shift+Ctrl+; to insert the time)"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:70
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "You want to sort a series such as A1, A2, A3, A11, A15, not in alphabetical order but on the number? Enable natural sort in the Options tab"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:71
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Need to move one or more paragraphs? No need to cut and paste: Use the keyboard shortcut Ctrl+Alt+Arrow (Up/Down)"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:72
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Delete a col of a table (writer) without changing the column widths? Click the column, press Alt+Del 3 seconds then press left/right arrow"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:73
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "With #libreoffice is easy to set-up a custom palette. Here's a videoguide: http://impress.paolopelloni.it/2012/06/22/how-create-custom-colour-palette-libreoffice-impress/"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:74
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Presenter console is a great feature when presenting with Impress. Have you checked it out?"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:75
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Impress offers you different keys to control your slide presentation: http://impress.paolopelloni.it/2012/07/24/the-right-keys-to-press-when-presenting-with-impress/"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:76
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Do you know that since version 3.5 colour palette is embedded in the document for greater portability?"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:77
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "You can automatically mark alphabetical index entries using a concordance file."
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:78
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Frames can be linked so that the text can flow from one to the other as in desktop publishing."
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:79
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "LibreOffice supports 110 languages https://wiki.documentfoundation.org/Language_support_of_LibreOffice"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:80
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "LibreOffice supports 4 macros security levels (from low to very high) and trusted sources"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:81
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "LibreOffice allows you to use assistive tools, such as external screen readers, Braille devices or speech recognition input devices."
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:82
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Title page: one single instruction to insert, number the pages, choose the layout..."
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:83
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Batch convert your MS Office documents to OpenDocument format by the Document Converter wizard"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:84
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "LibreOffice intends to apply as an organization for Google Summer of Code (GSoC) see https://wiki.documentfoundation.org/Development/GSoC"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:85
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "LibreOffice has a certification program. Interested? See http://www.documentfoundation.org/certification"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:86
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Uncheck Tools›Options›Calc›View›Zoom: 'Synchronize sheets' so that each sheet has its own zoom factor"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:87
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "To open a CSV file as a new sheet in the current spreadsheet use Insert›Sheet from file"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:88
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "You write a book? LibreOffice master document lets you manage large documents as a container for individual LibreOffice Writer files."
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:89
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Show summary slide: right click and 'goto slide' or Ctrl+Shift+F5 to display the browser and that gives you a pointer to draw on the slides"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:90
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Need to move a writer table? Select whole table, Insert›Frame›Check Autosize›Ok, Move where you want !"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:91
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "In Draw to change the 0 point of the rulers, drag the intersection of the two rulers in the top left corner into the workspace"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:92
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "To change the default options for Drawing toolbar tools, select one of the tools and define the options before drawing the first object"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:93
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Use array formula to repeat calculation using different values: they need less disk space & consume little memory"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:94
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Enable massive parallel calculations of formula cells via OpenCL formula option"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:95
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "You have a mouse with a scroll wheel? you can hold down Ctrl and turn the wheel to change the zoom factor in all main modules of LibreOffice"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:96
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "In writer use the 'content view' of the navigator to synchronize the cursor position & the title"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:97
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Edit Find & Replace lets you insert special characters directly: right click in 'search for' or 'replace by' zone (Ctrl+Shift+S)"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:98
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Don't use tabs to space items on a writer document. Depending on what you are trying to do, a borderless table can be a better choice"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:99
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Drag a formatted object to the Styles and Formatting window. A dialog box opens, just enter the name of the new style."
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:100
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Besides styles, customizations menus and toolbars can be saved in a template"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:101
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Tools›Options›LibreOffice›Color lets you edit and create colors available in all LibreOffice documents"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:102
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "To edit a not showed comment in Calc, right-click the cell and choose Insert comment. Edit then click outside the comment (hidden again)"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:103
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:104
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "To keep the zeros before a number, use the 'leading zeroes' cell format option or format the cell as text before entering the number"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:105
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "To copy a comment without losing the content of the target cell : Paste Special›uncheck everything except Comments. Operations select Add"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:106
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "With Calc calculate loan repayments: eg. PMT(2%/12;36;2500) interest rate per payment period 2%/12, 36 months, loan amount 2500"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:107
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "To create a chart on another sheet than where the data is, start to create the chart in the other sheet. You can then select the data"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:108
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc, Writer... to select an object in the background use the tool Select in the Draw toolbar to surround the object to select"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:109
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Using Writer, apply Heading paragraph styles with Shortcut Keys: Ctrl+1 applies Heading 1, Ctrl+2 applies Heading 2, etc."
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:110
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "In Calc mix portrait and landscape orientations in a spreadsheet by applying different page styles on sheets"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:111
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "In Writer Sections can protect part of text, show/hide text, reuse parts from other documents, use different column layout"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:112
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "To choose the medium and the background of your presentation select File›Wizards›Presentation›Page 2"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:113
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "You can create many master pages in a presentation template: View›Master›Slide Master›New Master (toolbar or right click in Slide Pane)"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:114
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Draw/Impress: 'Fit object to paper format' (Format›Page) resizes the objects so that they fit on the paper format that you select"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:115
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "You want to modify an AutoPlay presentation? Open it, it starts, right click›Edit the presentation "
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:116
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Rename your slides to help you define 'Go to page' interactions and have a summary more explicit than Slide1, Slide2..."
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:117
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "To play a music throughout a slideshow, assign the sound to the first slide transition without clicking the Apply to All Slides button"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:118
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "With Slide Show›Custom Slide Show you can reorder and pick slides to fit a slideshow to public needs"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:119
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "To include a paragraph that is not a title in the TOC, edit the paragraph, Outline & Numbering tab select the outline level"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:120
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Impress: Select a layout directly when inserting a slide by long click on the +Slide button on the Presentation toolbar"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:121
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Draw/Impress: Use the Connector tool from the Drawing toolbar to draw flowcharts. You can copy and paste into writer"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:122
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "The Navigator's Open Documents List allow to select a document in the list. You can then drag & drop an item to another document"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:123
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Draw: Want to see an object but do not print? Draw it or move it to a new layer unprintable"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:124
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Want to stop base forms from going to the next record when you tab from the last field ? Select Active record in the Cycle list (data tab)"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:125
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Want to print 2 portrait pages on a landscape one (reducing A4 to A5)? File›Print›Page Layout tab, select 2 pages per page"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:126
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "To be able to get the Vertical Text tool in Drawing toolbar check Tool›Options›Language Settings›Languages›Default languages›Asian"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:127
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Draw/Impress: double-click a tool in drawing toolbar to use it for multiple tasks"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:128
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Want to display only the highest 10 values in a spreadsheet? Data›Filter›AutoFilter›Standard click the drop-down arrow›Top10"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:129
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "You can not modify or delete a custom cell style? Check all sheets: none should be protected"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:130
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc: Want to get the number of days in month? Try =DAYSINMONTH(TODAY())"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:131
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Do you know that the Styles & Formatting dialog allows you to hide the styles you do not use?"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:132
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc displays Err: followed by a number? This page gives the explanation https://help.libreoffice.org/Calc/Error_Codes_in_Calc "
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:133
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Want something else than a color as cell background? Drag a background from the Gallery, resize then right click›Arrange To Background"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:134
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "To quickly get a math object in Writer type your formulas, mark it then Insert›Object›Formula"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:135
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Writer inserts a blank page between two odd (even) pages that follow. Use File›Print›Writer tab›Print inserted blank pages as per your need"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:136
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "The 4th optional parameter of VLOOKUP Calc function tells whether the first column of data is sorted. If not, enter FALSE or zero"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:137
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Want to show hidden col A? Click a cell in col B, keep the left mouse button, move the mouse to the left, release. Format›Column›Show"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:138
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Writer helps you to make backups: with File›Save a copy you create a new document continuing to work on the original. Be safe!"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:139
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "You have to present a report written with Writer? File›Send›Outline to Presentation automatically creates your slideshow from the outline"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:140
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Drag & drop cells from calc into the normal view of a slide creates a table. Into the outline view, each cell creates a line in the outline"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:141
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Writer: to copy the table cells' background, use the Format Paintbrush of the Standard ToolBar"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:142
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Draw/Impress›Right click›Alignment to center the selection: on the page if 1 object or a group, on the selection if several objects"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:143
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Want to find the words in bold in a Writer doc? Edit›Find&Replace›Other options›Attributes›Font weight (check Including styles if needed)"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:144
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Want to repeat the heading on next page when a table spans more than one page? Table›Table Properties›Text Flow tab›Check Repeat heading"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:145
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "You can use the column (row) labels in formulas. Eg. you have 2 columns, Time & KM, use =Time/KM to get minutes per kilometer (apply hour format)"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:146
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Writer: To change the number of a page, edit its first paragraph›Flow tab check Break›Insert and give the number (0 for continuous numbering)"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:147
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Do you want the cursor to go into the cell to the right, after you've entered a value in a cell? Use the Tab key instead of the Enter key"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:148
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Impress provides you with a simple animation editor to create an animated GIF: Insert›Animated Image"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:149
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Since LibreOffice version 4.1, you can show or hide comments in Writer by clicking the comment toggle button in the rule"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:150
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "In Calc, it is no longer necessary to use RAND or RANDBETWEEN function to generate a random series. Use Edit›Fill›Random Number"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:151
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Fit your sheet or print ranges to a page with Format›Page›Sheet Tab›Scaling Mode"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:152
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "To keep visible column headers of a sheet when scrolling lines, use Windows›Freeze (or Windows›Split if scrollable header needed)"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:153
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Want your chapter titles to always begin a page? Edit Heading1 (paragraph style)›Flow tab›Breaks›check Insert›Page›Before"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:154
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Do you want to keep the text but remove a hyperlink in Writer? Right click on the link›Remove Hyperlink"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:155
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Want to remove all <> at once & keep the text inside? Edit›Find & Replace›Search›[<|>]›Replace›blank›Other Options›check Regular expressions"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:156
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc: Use Format›Conditional Formatting›Manage to find out which are the cells for which conditional formatting has been defined"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:157
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Writer: To create a chart based on a Writer table, click in the table and then Insert›Object›Chart"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:158
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc: Move a column between 2 others in 1 step? Click header then a cell in the col, keep mouse button and move to the target with Alt key"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:159
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc: Use the Backspace key instead of Delete. You can choose what to delete"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:160
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Writer: Want to distribute some text in multi-columns? Select the text then Format›Columns"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:161
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Uncheck Slide Show›Settings›Always on top if you need another program displays its window to the front of your presentation"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:162
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Tools›Detective›Mark Invalid Data Marks all cells in the sheet that contain values outside the validation rules"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:163
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Writer: Need to allow changes to parts of a read-only document? Insert frames or sections that can authorize changes"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:164
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Select options in Tools›Options›Writer›Formatting Aids›Display to specify which nonprinting characters are displayed"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:165
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc: Want the same layout for the screen display and printing? Check Tools›Options›Calc›General›Use printer metrics for text formatting"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:166
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Customize your footnotes page with Tools›Footnotes/Endnotes"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:167
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Want to sum a cell through several sheets? Refer to the range of sheets (insert/delete sheet handled) e.g. =SUM(Sheet1.A1:Sheet3.A1)"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:168
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "You can copy from one sheet to another without the clipboard. Select the area to copy›ctrl+click the target sheet's tab›Edit›Fill›Sheets"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:169
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Want to insert a value in the same place on several sheets? Select the sheets: hold down Ctrl key and click their tabs before entering"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:170
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Click a col field (row) PivotTable and press F12 to group data. Choices adapt to content: Date (month, quarter, year), }, number (classes)"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:171
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Apart from table of contents LibreOffice can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:172
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Want to count words for just one paragraph style? Use Find & Replace›Search for Styles›select the style›Find All. Look at the status bar"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:173
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "With LibreOffice you can use your Google Mail account to do a mail merge. Fill in Tools›Options›Writer›Mail Merge E-mail"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:174
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Toolbars are contextual, they open depending on the context. If you do not want that, uncheck them from the View Toolbars menu"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:175
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Writer: Insert and number your formulas in one step: type fn then F3. An AutoText is inserted with formula and number aligned in a table"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:176
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "There are Themes to customize LibreOffice: Tools›Customize (menu, keyboard, toolbars, events)"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:177
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "To automatically number your table rows in Writer, select the relevant column, then apply a numbering style from List Styles"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:178
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Delete in one step all of your printing areas: select all sheets then Format›Print Ranges›Clear"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:179
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "LibreOffice helps you not to enter two or more spaces in Writer. Check Tools›AutoCorrect Options›Ignore double spaces"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:180
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Transpose a writer table? Copy-Paste in Calc. Transpose with Copy-Paste special then Copy-paste special›Formatted text in writer"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:181
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Writer lets you number your footnotes per page, chapter, document: Tools›Footnotes/Endnotes›Footnotes tab›Counting"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:182
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Left-handed? Check Tools›Options›Language Settings›Languages›Asian & Writer›View›Ruler›Right-aligned Displays the scrollbar to the left"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:183
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc: To display the scrollbar to the left Check Tools›Options›Language Settings›Languages›Complex text & Format›Sheet›Right-To-Left"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:184
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "To insert Calc cells in a Writer table copy the cells›Paste special›Format RTF in Writer out of the table›copy this new table in your table"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:185
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:186
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "In a chart you can choose to leave a gap, assume zero or continue a line & you can include values from hidden cells or not"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:187
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Writer: use Ctrl+Alt+Shift+V to paste the contents of the clipboard as unformatted text"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:188
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "59.a (alternative) Need more pasting options? Use 'Paste Special' via Edit - Special paste or press Ctrl+Shift+V"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:189
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "When editing a cell in place, you can right click›Insert fields: Date, Sheet name, Title"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:190
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Wrap Text Around an Object in Writer: Select the graphic›Right-click›Wrap›Edit Contour"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:191
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Slide Show›Slide Show Settings›Type›Auto: Restarts the slide show after the pause interval you specify"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:192
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "In LibreOffice Calc, document sharing allows simultaneous write access for many users"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:193
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "You can delete multiple custom styles at once: select them›right click›Delete"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:194
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "The Calc's keyboard shortcut to toggle between relative and absolute references is Shift + F4"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:195
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc's keyboard shortcut to toggle between relative and absolute references is F4"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:196
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc: You can not see all the text in a cell? Expand the input line in the formula bar, you can scroll"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:197
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "You often create a document from another? Have you considered using a template?"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:198
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "New versions do not bring that new features and bug fixes. They also include security patches. Be safe, put yourself updated!"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:199
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc: Want to duplicate the above line? Click the row header and then press Ctrl + D"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:200
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "You can embed copied graphics from web to your docs via Edit - Links - Break Link "
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:201
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "You can easily arrange size table rows and columns - Right click - Row(or Columns) - Optimal Height and Width"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:202
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Best way to fix bad looking MS Word table cells via Right click - Row(or Columns) - Optimal Height and Width (Or Table AutoFit)"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:203
+#, c-format
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Don't get lost in long%large documents. Use Navigator(F5) to find your way through the content."
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:204
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Want to change a word which appears multiple places many place Use Find&Replace to save time."
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:205
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "You can use various table styles via Table - AutoFormat to have good looking tables"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:206
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Want to select a large range of cells without scrolling? Type the range reference (e.g. A1:A1000) in the name box then Enter"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:207
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc›Data›Validity allows you to create drop-down lists for the user selects instead of typing"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:208
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc›Format›Page›Sheet Tab›Print:Grid can avoid you draw borders"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:209
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Want to center cells on a printed page? Format›Page›Page Tab›Layout settings›Table alignment"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:210
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Writer: Want to change basic fonts for the predefined template or Current document? Tools›Options›Writer›Basic Fonts"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:211
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Define texts that you often use as AutoText. You will be able to insert them by their name, shortcut or toolbar in any writer document"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:212
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc: you can import data from Data Sources view as you do in Writer with Data to Text button (creates a refreshable datarange)"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:213
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "You can drag and drop a contiguous range of cells in a chart to redefine"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:214
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "LibreOffice uses Regexp ICU’s engine (International Components for Unicode)"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:215
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc›View›Value Highlighting displays cell contents in colors: Text/black, Formulas/green, Numbers/blue, Protected cells/grey background"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:216
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc: to show formulas instead of results in cells Tools›Options›Calc›View›Display›Formulas or check Format›Page›Sheet tab›Print›Formulas"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:217
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Writer: Want to reach a page by its number? F5 to open the navigator›Type the number in the field›Enter"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:218
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "With Edit›AutoText›Import you can select Word document or template, containing the AutoText entries that you want to import"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:219
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc can display a number or a calculation as a fraction: Format›Cells›Number tab›Category›Fraction"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:220
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "To print the notes of your slides File›Print›General tab›Select Notes in the Print listbox"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:221
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Draw: To Move an object to another Layer›Hold it until its edges flash›Drag to the name tab of the layer you want to move it to›Release"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:222
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Want to exclude duplicate rows in a spreadsheet? Use Data›Filter›Standard Filter›Options›No duplications"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:223
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Want to find words more than 10 characters? Edit›Find & Replace›Search›\\<[a-z]{10,}›Other Options›Check Regular expressions"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:224
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "You delete instead of insert? You are in overwrite mode. Press the Insert key on the keyboard or click in the status bar on Overwrite"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:225
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Surprised that Writer adds blank pages in a mailing? Would you like to have a recipient letter to the back of another (Duplexing)?"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:226
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Help users to insert a picture in a Writer template? Insert›Fields›Other›Functions tab›PlaceHolder›Image. One Click to select an image"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:227
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Have you checked Tools›Options›Load/Save›General›Always create backup copy ?"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:228
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Create a master document from the current Writer document? File›Send›Create Master Document (sub-document created depending of outline)"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:229
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Writer includes LibreLogo: simple Logo-like programming environment with turtle vector graphics, DTP and graphic design"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:230
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Need custom acceptance date format? Tools›Options›Language Settings›Language›Date acceptance patterns"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:231
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Typing in bold italics or underlined in Writer you can continue with the default attributes using only the shortcut Ctrl+Shift+X"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:232
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Looking WordArt in LibreOffice? Click Fontwork gallery in the Drawing Toolbar"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:233
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "To protect cells: Tools›Protect Document›Sheet. To prevent insert, delete, rename, move/copy sheets: Tools›Protect›Document›Document"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:234
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Search by default in several sheets, select them before you start the search"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:235
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Want to change spell checking for some part of the text? Click in the language zone of the status bar or better, apply a style"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:236
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "You don't like the selection color ? Uncheck or modify Tools›Options›LibreOffice›View›Selection›Transparency"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:237
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc: a date is a formatted number of days since a date origin. An hour is a day divided by 24: noon = 0.5"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:238
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Need custom contents for metadata properties? File›Properties›Custom Properties tab lets you create what you want"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:239
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Customize›ToolbarModify›Change Icon›Import to use your icons for toolbars (only PNG file format and 16x16 or 26x26 pixels)"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:240
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Insert your metadata in your Writer document: Insert›Fields›Other›Document or DocInformation tabs"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:241
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "You are missing a label at the beginning of each page? Delete the 'Next Record' field from the last label, it is implicit"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:242
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc: To delete multiple comments, Copy the range›Edit›Paste Special›Selection›Everything except Comments"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:243
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc: you would like to view the calculation of individual elements of a formula, select the respective elements and press F9"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:244
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Writer: you can rotate cells table orientation with Table›Table Properties›Text Flow tab›Text orientation"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:245
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "LibreOffice can automatically add a numbered caption when you insert an object. See Tools›Options›LibreOffice Writer›AutoCaption"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:246
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc: Want to add x months to a date? Use =EDATE(date;months)"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:247
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Many images in your writer document? Speed up the display by disabling Tools›Options›LibreOffice Writer›View›Graphics and objects"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:248
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Writer: Shift+Ctrl+Del deletes from cursor to the end of the current sentence. If the cursor is at the end of a cell, same for the next cell"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:249
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Writer: Want to sort paragraphs or table rows alphabetically or numerically? Select them›Tools›Sort"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:250
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "To bring back a cell on screen after entering formula for which you need to scroll the sheet, select the cell before typing"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:251
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Writer: Need an unnumbered item in a list? Use 'Insert Unnumbered Entry' in Bullets and Numbering toolbar"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:252
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Want to open/save to favourite places? Enable Tools›Options›LibreOffice›General›Use LibreOffice dialogs lets you record shortcuts"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:253
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc: Click a row header›Ctrl++›Ctrl+D duplicates the above row, including formulas. Just type new values"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:254
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc: Trace cells used in a formula, precedents (Shift+F7) or dependants (Shift+F5). For each hit you go one more step in the chain"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:255
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Want to sort a pivot table? Click on drop-list's arrow in the row/col header and select sort method: ascending, descending or custom"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:256
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Sticky templates (user & shared template folders) let you apply style changes when you open a document created from the template"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:257
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Tools›AutoCorrect›Replace provides a list of common substitutions. Take a look and complete with your own replacements"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:258
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Center a picture in a Writer Table's cell? Anchor as ›Center buttons in Formatting (horizontally) & Table (vertically) toolbars"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:259
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Do not insert empty paragraph to separate two paragraphs, set Indents & Spacing›Spacing›Below paragraph for the paragraph style"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:260
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Want your documents open where you were when last saved? Fill Tools›Options›LibreOffice›User Data First/Last name"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:261
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Writer: with the navigator you can select & move up/down headings and the text below the heading, in the Navigator and in the document"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:262
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "LibreOffice doesn't calculate from left to right but respects the order Parentheses›Exponents›Multiplication›Division›Addition›Subtraction"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:263
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc: you can change the default function in the status bar: right click on the area"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:264
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc: you do not want to print all columns? Hide or group ones you do not need"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:265
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc: use Shift+Space to select the current row & Ctrl+Shift+Space to select the current column (previous versions)"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:266
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid " Calc: use Shift+Space to select the current row & Ctrl+Space to select the current column"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:267
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Writer handles Conditional styles: paragraph styles that have different properties depending on the context"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:268
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Install/LibreOffice not working? Have you checked the integrity of the download? On Download page click on Info to get the checksums"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:269
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Writer: want to show the current date in your document? Insert›Fields›Other›Document tab›select Date (not fixed)›select a format"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:270
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc: Need to fill a serie? Select the cell range›Edit›Fill›Series›Choose between Linear, Growth, Date and AutoFill"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:271
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Writer: Click at the beginning (end) of a section and press Alt+Enter to insert a paragraph before (after) the section"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:272
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "With File›Versions Save multiple versions of the document in the same file. You can also open, delete, and compare previous versions"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:273
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "You change computers and want to recover your customizations? See https://wiki.documentfoundation.org/UserProfile"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:274
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc: You can set a color for each tab: right-click the tab›Tab ColourfA"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:275
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Looking for examples of LibreOffice Basic macros? Look at LibreOffice Macros›Tools"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:276
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc: Insert›Function List opens a resizable dockable window which displays all functions that can be inserted into your document"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:277
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Don't want the page number in your TOC? Edit index›Delete Tab Stop & Page number from Structure Line in Entries tab"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:278
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc: to quickly assign a name to a range of cells, select it›type the name in the name box and press Enter"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:279
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Writer: Outline numbering lets you set text to be displayed before the chapter number. For example, type 'Chapter ' to display 'Chapter 1'"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:280
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Base not only manages its own. Connect to main database engines: JDBC PostgreSQL MySQL LDAP Address book, MS Access ODBC Spreadsheet Text"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:281
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc: Want to know if a cell is referred in formulas of other cells? Tools›Detective›Trace Dependents [Shift+F5]"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:282
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Want to customize the middle mouse button? Tools›Options›LibreOffice›View›Middle Mouse button"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:283
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Writer: To delete picture's caption select the picture›Ctrl+X›There is only the legend's frame›Select›Delete›Ctrl+C to paste the picture"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:284
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Base: Need a crosstab query ? Calc›Data›Pivot Table›Create›choose your registered Data source"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:285
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc Print: Repeat rows/columns on every pages? Format›Print Ranges›Edit›Click the Row/Col text box›drag the mouse in the sheet"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:286
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc: To copy rows/cols to another sheet preserving heights/widths, select them by clicking the labels before copying"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:287
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "With LibreOffice it is very easy to install a new dictionary: they are supplied as an extension"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:288
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Registered databases can also be used in Calc, for example to export your tables to CSV format"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:289
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Need to precisely position? Alt+Arrow Keys move objects (shape, picture, formula...) by one pixel"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:290
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Choose Hierarchical View in the Styles and Formatting window to see the links between styles"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:291
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Print 2 A5 on A4? Check File›Print›Options tab›Use only paper size from printer & set A4 landscape orientation in the printer properties"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:292
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Writer: The field names are displayed instead of their content? View›Fields Names or Ctrl + F9"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:293
+#, c-format
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Writer: Creating a Style based on another, you can enter a percentage value or a point value (e.g. 110% or -2pt or +5pt)"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:294
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Want to know the valid Command Line Parameters? Start soffice with --help or -h or -?"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:295
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Writer: Want to return to default after applying a List Style? Click Bullets or Numbering On/Off tool on the Formatting toolbar"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:296
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Configure use of the Ctrl key to follow hyperlinks? Tools›Options›LibreOffice›Security›Options›Ctrl+click required to follow hyperlinks"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:297
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "You get 'weird' characters opening a text file? Check the character set when importing"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:298
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Open Document Format is the key. LibreOffice is the solution."
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:299
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "For your safety, save your files to disk and then copy them to your USB key. Never do the opposite !"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:300
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "After a copy you can hit Esc to stop the 'marching ants'. The copied content will remain available for pasting"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:301
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc: To quickly insert or delete rows, drag the mouse over the header to select the desired number of lines then Ctrl+ or Ctrl-"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:302
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc: Select contiguous cell range that contains data and is bounded by empty row and columns ? Use Ctrl+* (numeric key pad )"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:303
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Tools›Customize›Keyboard›Save saves the current shortcut key configuration, so that you can load it later or on another computer"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:304
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Property mapping for charts allows to change data serie's fill & border colors based on spreadsheet values"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:305
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc: Ctrl+Shift+F9 Recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:306
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Writer: Write along a curve? Draw the line›Double click›Type the text›Format›Object›Fontwork... Have fun with the proposed effects"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:307
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Click the bo4rders button adds borders to selected cells - Shift+Click replaces all borders of current cell with your choice"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:308
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Writer: you can create an illustration index from Object names, not only from Captions"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:309
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "To enable macro recording check Tools›Options›LibreOffice›Advanced›Enable macro recording (limited)"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:310
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "In the Replace input field of AutoCorrection you can use the wildcards .*"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:311
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "You no longer find an option? Search in Tools›Options›LibreOffice›Advanced›Configuration Expert"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:312
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc - Want to export formulas to CSV? File›Save As›Type:Text CSV›Check Edit filter settings›Check Save cell formulas"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:313
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Impress: set Handouts in File›Print›Document listbox›select the number of slides per page (lines automatically drawn if you pick 3)"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:314
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Impress: Outline View. You cannot use Tab/Shift+Tab to move the title in the hierarchy with Title slide layout (apply Title, content)"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:315
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid " Impress: Outline View. You cannot use Tab/Shift+Tab to move the title in the hierarchy with Title slide layout (apply Title, content"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:316
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:317
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Tools›Customize›Keyboard› No need to scroll through the list to find a shortcut: just type the shortcut"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:318
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Draw/Impress: Want to quickly zoom in on selection? Press the Divide Key (number pad) - Press * to restore entire page in screen"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:319
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc: Want to quickly zoom in on range selection? Right click on the zoom part of the status bar, choose Optimal"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:320
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Writer: to reformat all comments in a document click the down arrow in a comment and choose 'Format all Comments'"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:321
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Writer: File›Print›Comments and choose Place in margins, end of page, end of document"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:322
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc: Convert formula into static values ? No need to copy-paste: Tools›Cell Contents›Formula to Value"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:323
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc: Can not get what you want with VLOOKUP? With INDEX and MATCH You can do everything!"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:324
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Writer: LibreOffice 5.1 introduces Hide Whitespace option which removes gaps between pages, to help you really focus on your content"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:325
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "LibreOffice 5.1 reorganize main menus in Writer, Calc and Impress to improve usability"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:326
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Mailing: with LibreOffice 5.1 embed your datasource definition in the document"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:327
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "5.3 implements table styles in Writer, try them!"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:328
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc 5.3 brings new cell styles, and the possibility to create your own x"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:329
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "New arrow endings in LibreOffice 5.3, including Crow's foot notation's ones "
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:330
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Grab the latest docker image from Docker Hub here: https://hub.docker.com/r/libreoffice/online "
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:331
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Release 5.3 features the first source release of LibreOffice Online "
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:332
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Calc now supports scrolling through the Scroll key"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:333
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Now possible to sign existing PDF files and also verify those signatures"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:334
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "A safe mode has been added which starts LibreOffice temporarily with a fresh user profile"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:335
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Menu Help: direct link to user guides, collateral documentation, help on line"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:336
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "You can now import AutoText import from .dotx and .dotm files"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:337
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Version 5.4 introduces Pivot Charts"
+msgstr ""
+
+#: cui/inc/tipoftheday.hrc:338
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Writer: To find the expressions in brackets Edit›Find & Replace›Find›\\([^)]+\\)›set Regular expression"
+msgstr ""
#: cui/inc/treeopt.hrc:30
msgctxt "SID_GENERAL_OPTIONS_RES"
@@ -1865,7 +3382,7 @@ msgstr "Starpnieks"
#: cui/inc/treeopt.hrc:61
msgctxt "SID_INET_DLG_RES"
-msgid "E-mail"
+msgid "Email"
msgstr "E-pasts"
#: cui/inc/treeopt.hrc:66
@@ -1940,7 +3457,7 @@ msgstr "Automātisks paraksts"
#: cui/inc/treeopt.hrc:80
msgctxt "SID_SW_EDITOPTIONS_RES"
-msgid "Mail Merge E-mail"
+msgid "Mail Merge Email"
msgstr "Vēstuļu sapludināšanas e-pasts"
#: cui/inc/treeopt.hrc:85
@@ -2243,12 +3760,12 @@ msgctxt "aboutconfigdialog|reset"
msgid "Reset"
msgstr "Atiestatīt"
-#: cui/uiconfig/ui/aboutconfigvaluedialog.ui:9
+#: cui/uiconfig/ui/aboutconfigvaluedialog.ui:8
msgctxt "aboutconfigvaluedialog|AboutConfigValueDialog"
msgid "Name"
msgstr "Nosaukums"
-#: cui/uiconfig/ui/aboutconfigvaluedialog.ui:87
+#: cui/uiconfig/ui/aboutconfigvaluedialog.ui:90
msgctxt "aboutconfigvaluedialog|label1"
msgid "Value:"
msgstr "Vērtība:"
@@ -2291,7 +3808,7 @@ msgstr "Lokāle: $LOCALE"
#: cui/uiconfig/ui/aboutdialog.ui:170
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
-msgstr ""
+msgstr "Lietotāja saskarnes valoda: $LOCALE"
#: cui/uiconfig/ui/aboutdialog.ui:187
msgctxt "aboutdialog|buildIdLink"
@@ -2305,8 +3822,8 @@ msgstr "%PRODUCTNAME ir mūsdienīga, viegli lietojama, atvērtā pirmkoda biroj
#: cui/uiconfig/ui/aboutdialog.ui:227
msgctxt "aboutdialog|copyright"
-msgid "Copyright © 2000–2018 LibreOffice contributors."
-msgstr "Autortiesības © 2000 - 2018 LibreOffice veidotāji."
+msgid "Copyright © 2000–2019 LibreOffice contributors."
+msgstr "Autortiesības © 2000 - 2019 LibreOffice veidotāji."
#: cui/uiconfig/ui/aboutdialog.ui:241
msgctxt "aboutdialog|libreoffice"
@@ -2328,57 +3845,57 @@ msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
-#: cui/uiconfig/ui/accelconfigpage.ui:54
+#: cui/uiconfig/ui/accelconfigpage.ui:132
msgctxt "accelconfigpage|label21"
msgid "Shortcu_t Keys"
msgstr "Īsinājum_taustiņi"
-#: cui/uiconfig/ui/accelconfigpage.ui:80
+#: cui/uiconfig/ui/accelconfigpage.ui:158
msgctxt "accelconfigpage|office"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/accelconfigpage.ui:97
+#: cui/uiconfig/ui/accelconfigpage.ui:175
msgctxt "accelconfigpage|module"
msgid "$(MODULE)"
msgstr "$(MODULE)"
-#: cui/uiconfig/ui/accelconfigpage.ui:129
+#: cui/uiconfig/ui/accelconfigpage.ui:207
msgctxt "accelconfigpage|change"
msgid "_Modify"
msgstr "_Modificēt"
-#: cui/uiconfig/ui/accelconfigpage.ui:157
+#: cui/uiconfig/ui/accelconfigpage.ui:235
msgctxt "accelconfigpage|load"
msgid "_Load..."
msgstr "Ie_lādēt..."
-#: cui/uiconfig/ui/accelconfigpage.ui:172
+#: cui/uiconfig/ui/accelconfigpage.ui:250
msgctxt "accelconfigpage|save"
msgid "_Save..."
msgstr "_Saglabāt..."
-#: cui/uiconfig/ui/accelconfigpage.ui:247
+#: cui/uiconfig/ui/accelconfigpage.ui:325
msgctxt "accelconfigpage|searchEntry"
msgid "Type to search"
msgstr "Rakstiet, lai meklētu"
-#: cui/uiconfig/ui/accelconfigpage.ui:267
+#: cui/uiconfig/ui/accelconfigpage.ui:345
msgctxt "accelconfigpage|label23"
msgid "_Category"
msgstr "_Kategorija"
-#: cui/uiconfig/ui/accelconfigpage.ui:281
+#: cui/uiconfig/ui/accelconfigpage.ui:359
msgctxt "accelconfigpage|label24"
msgid "_Function"
msgstr "_Funkcija"
-#: cui/uiconfig/ui/accelconfigpage.ui:295
+#: cui/uiconfig/ui/accelconfigpage.ui:373
msgctxt "accelconfigpage|label25"
msgid "_Keys"
msgstr "_Taustiņi"
-#: cui/uiconfig/ui/accelconfigpage.ui:365
+#: cui/uiconfig/ui/accelconfigpage.ui:521
msgctxt "accelconfigpage|label22"
msgid "F_unctions"
msgstr "F_unkcijas"
@@ -2415,8 +3932,8 @@ msgstr "A_utomātiski iekļaut"
#: cui/uiconfig/ui/acorexceptpage.ui:292
msgctxt "acorexceptpage|newdouble-atkobject"
-msgid "New words with two initial capitals"
-msgstr "Jauni vārdi ar diviem lielajiem burtiem sākumā"
+msgid "New words with two initial capitals or small initial"
+msgstr "Jauni vārdi ar sākotnējiem diviem lielajiem burtiem vai sākotnējo mazo burtu"
#: cui/uiconfig/ui/acorexceptpage.ui:304
msgctxt "acorexceptpage|replace1"
@@ -2425,13 +3942,13 @@ msgstr "_Aizstāt"
#: cui/uiconfig/ui/acorexceptpage.ui:328
msgctxt "acorexceptpage|deldouble-atkobject"
-msgid "Delete words with two initial capitals"
-msgstr "Dzēst vārdus ar dieviem lielajiem burtiem sākumā"
+msgid "Delete words with two initial capitals or small initial"
+msgstr "Dzēst vārdus ar diviem lielajiem burtiem vai mazo burtu sākumā"
#: cui/uiconfig/ui/acorexceptpage.ui:397
msgctxt "acorexceptpage|label2"
-msgid "Words With TWo INitial CApitals"
-msgstr "Vārdi ar DIviem LIelajiem BUrtiem sākumā"
+msgid "Words With TWo INitial CApitals or sMALL iNITIAL"
+msgstr "Vārdi ar DIviem LIelajiem BUrtiem vai mAZO bURTU sākumā"
#: cui/uiconfig/ui/acorreplacepage.ui:47
msgctxt "acorreplacepage|replace"
@@ -2468,137 +3985,137 @@ msgctxt "agingdialog|label1"
msgid "Parameters"
msgstr "Parametri"
-#: cui/uiconfig/ui/applyautofmtpage.ui:39
+#: cui/uiconfig/ui/applyautofmtpage.ui:47
msgctxt "applyautofmtpage|edit"
msgid "_Edit..."
msgstr "R_ediģēt..."
-#: cui/uiconfig/ui/applyautofmtpage.ui:57
+#: cui/uiconfig/ui/applyautofmtpage.ui:65
msgctxt "applyautofmtpage|label1"
msgid "[M]: Replace while modifying existing text"
msgstr "[M]: Aizstāt, kamēr modificē esošu tekstu"
-#: cui/uiconfig/ui/applyautofmtpage.ui:69
+#: cui/uiconfig/ui/applyautofmtpage.ui:77
msgctxt "applyautofmtpage|label2"
msgid "[T]: AutoCorrect while typing"
-msgstr "[R]: Automātiski koriģēt rakstot"
+msgstr "[R]: Automātiski labot rakstot"
-#: cui/uiconfig/ui/applyautofmtpage.ui:114
+#: cui/uiconfig/ui/applyautofmtpage.ui:122
msgctxt "applyautofmtpage|m"
msgid "[M]"
msgstr "[M]"
-#: cui/uiconfig/ui/applyautofmtpage.ui:128
+#: cui/uiconfig/ui/applyautofmtpage.ui:137
msgctxt "applyautofmtpage|t"
msgid "[T]"
msgstr "[R]"
-#: cui/uiconfig/ui/applylocalizedpage.ui:72
+#: cui/uiconfig/ui/applylocalizedpage.ui:84
msgctxt "applylocalizedpage|m"
msgid "[M]"
msgstr "[M]"
-#: cui/uiconfig/ui/applylocalizedpage.ui:86
+#: cui/uiconfig/ui/applylocalizedpage.ui:99
msgctxt "applylocalizedpage|t"
msgid "[T]"
msgstr "[R]"
-#: cui/uiconfig/ui/applylocalizedpage.ui:202
+#: cui/uiconfig/ui/applylocalizedpage.ui:217
msgctxt "applylocalizedpage|singlereplace"
msgid "Repla_ce"
msgstr "Aizviet_ot"
-#: cui/uiconfig/ui/applylocalizedpage.ui:219
+#: cui/uiconfig/ui/applylocalizedpage.ui:234
msgctxt "applylocalizedpage|startquoteft"
msgid "_Start quote:"
msgstr "_Sākuma pēdiņa:"
-#: cui/uiconfig/ui/applylocalizedpage.ui:242
+#: cui/uiconfig/ui/applylocalizedpage.ui:257
msgctxt "applylocalizedpage|startsingle-atkobject"
msgid "Start quote of single quotes"
msgstr "Sākuma pēdiņa apostrofam"
-#: cui/uiconfig/ui/applylocalizedpage.ui:255
+#: cui/uiconfig/ui/applylocalizedpage.ui:270
msgctxt "applylocalizedpage|singlestartex"
msgid "Default"
msgstr "Noklusējuma"
-#: cui/uiconfig/ui/applylocalizedpage.ui:271
+#: cui/uiconfig/ui/applylocalizedpage.ui:286
msgctxt "applylocalizedpage|defaultsingle"
msgid "_Default"
msgstr "_Noklusējuma"
-#: cui/uiconfig/ui/applylocalizedpage.ui:279
+#: cui/uiconfig/ui/applylocalizedpage.ui:294
msgctxt "applylocalizedpage|defaultsingle-atkobject"
msgid "Single quotes default"
msgstr "Apostrofa noklusējums"
-#: cui/uiconfig/ui/applylocalizedpage.ui:292
+#: cui/uiconfig/ui/applylocalizedpage.ui:307
msgctxt "applylocalizedpage|endquoteft"
msgid "_End quote:"
msgstr "_Beigu pēdiņa:"
-#: cui/uiconfig/ui/applylocalizedpage.ui:315
+#: cui/uiconfig/ui/applylocalizedpage.ui:330
msgctxt "applylocalizedpage|endsingle-atkobject"
msgid "End quote of single quotes"
msgstr "Beigu pēdiņa apostrofam"
-#: cui/uiconfig/ui/applylocalizedpage.ui:328
+#: cui/uiconfig/ui/applylocalizedpage.ui:343
msgctxt "applylocalizedpage|singleendex"
msgid "Default"
msgstr "Noklusējuma"
-#: cui/uiconfig/ui/applylocalizedpage.ui:350
+#: cui/uiconfig/ui/applylocalizedpage.ui:365
msgctxt "applylocalizedpage|label1"
msgid "Single Quotes"
msgstr "Apostrofs"
-#: cui/uiconfig/ui/applylocalizedpage.ui:380
+#: cui/uiconfig/ui/applylocalizedpage.ui:395
msgctxt "applylocalizedpage|doublereplace"
msgid "Repla_ce"
msgstr "Aizviet_ot"
-#: cui/uiconfig/ui/applylocalizedpage.ui:397
+#: cui/uiconfig/ui/applylocalizedpage.ui:412
msgctxt "applylocalizedpage|label6"
msgid "_Start quote:"
msgstr "_Sākuma pēdiņa:"
-#: cui/uiconfig/ui/applylocalizedpage.ui:420
+#: cui/uiconfig/ui/applylocalizedpage.ui:435
msgctxt "applylocalizedpage|startdouble-atkobject"
msgid "Start quote of double quotes"
msgstr "Sākuma pēdiņa pēdiņām"
-#: cui/uiconfig/ui/applylocalizedpage.ui:433
+#: cui/uiconfig/ui/applylocalizedpage.ui:448
msgctxt "applylocalizedpage|doublestartex"
msgid "Default"
msgstr "Noklusējuma"
-#: cui/uiconfig/ui/applylocalizedpage.ui:449
+#: cui/uiconfig/ui/applylocalizedpage.ui:464
msgctxt "applylocalizedpage|defaultdouble"
msgid "_Default"
msgstr "_Noklusējuma"
-#: cui/uiconfig/ui/applylocalizedpage.ui:457
+#: cui/uiconfig/ui/applylocalizedpage.ui:472
msgctxt "applylocalizedpage|defaultdouble-atkobject"
msgid "Double quotes default"
msgstr "Pēdiņu noklusējums"
-#: cui/uiconfig/ui/applylocalizedpage.ui:470
+#: cui/uiconfig/ui/applylocalizedpage.ui:485
msgctxt "applylocalizedpage|label8"
msgid "_End quote:"
msgstr "_Beigu pēdiņa:"
-#: cui/uiconfig/ui/applylocalizedpage.ui:493
+#: cui/uiconfig/ui/applylocalizedpage.ui:508
msgctxt "applylocalizedpage|enddouble-atkobject"
msgid "End quote of double quotes"
msgstr "Beigu pēdiņa pēdiņām"
-#: cui/uiconfig/ui/applylocalizedpage.ui:506
+#: cui/uiconfig/ui/applylocalizedpage.ui:521
msgctxt "applylocalizedpage|doubleendex"
msgid "Default"
msgstr "Noklusējuma"
-#: cui/uiconfig/ui/applylocalizedpage.ui:528
+#: cui/uiconfig/ui/applylocalizedpage.ui:543
msgctxt "applylocalizedpage|label10"
msgid "Double Quotes"
msgstr "Pēdiņas"
@@ -2701,7 +4218,7 @@ msgstr "Komponentes metodes nosaukums:"
#: cui/uiconfig/ui/autocorrectdialog.ui:8
msgctxt "autocorrectdialog|AutoCorrectDialog"
msgid "AutoCorrect"
-msgstr "Automātiskā koriģēšana"
+msgstr "Automātiskā labošana"
#: cui/uiconfig/ui/autocorrectdialog.ui:108
msgctxt "autocorrectdialog|label1"
@@ -2833,77 +4350,72 @@ msgctxt "backgroundpage|showpreview"
msgid "Pre_view"
msgstr "Priekš_skatījums"
-#: cui/uiconfig/ui/baselinksdialog.ui:9
+#: cui/uiconfig/ui/baselinksdialog.ui:22
msgctxt "baselinksdialog|BaseLinksDialog"
msgid "Edit Links"
msgstr "Rediģēt saites"
-#: cui/uiconfig/ui/baselinksdialog.ui:52
-msgctxt "baselinksdialog|UPDATE_NOW"
-msgid "_Update"
-msgstr "_Atjaunināt"
-
-#: cui/uiconfig/ui/baselinksdialog.ui:66
+#: cui/uiconfig/ui/baselinksdialog.ui:56
msgctxt "baselinksdialog|CHANGE_SOURCE"
msgid "_Modify..."
msgstr "_Modificēt..."
-#: cui/uiconfig/ui/baselinksdialog.ui:80
+#: cui/uiconfig/ui/baselinksdialog.ui:70
msgctxt "baselinksdialog|BREAK_LINK"
msgid "_Break Link"
msgstr "_Pārtraukt saiti"
-#: cui/uiconfig/ui/baselinksdialog.ui:127
+#: cui/uiconfig/ui/baselinksdialog.ui:84
+msgctxt "baselinksdialog|UPDATE_NOW"
+msgid "_Update"
+msgstr "_Atjaunināt"
+
+#: cui/uiconfig/ui/baselinksdialog.ui:159
msgctxt "baselinksdialog|FILES"
msgid "Source file"
msgstr "Avota datne"
-#: cui/uiconfig/ui/baselinksdialog.ui:141
+#: cui/uiconfig/ui/baselinksdialog.ui:172
msgctxt "baselinksdialog|LINKS"
-msgid "Element:"
-msgstr "Elements:"
+msgid "Element"
+msgstr "Elements"
-#: cui/uiconfig/ui/baselinksdialog.ui:155
+#: cui/uiconfig/ui/baselinksdialog.ui:185
msgctxt "baselinksdialog|TYPE"
msgid "Type"
msgstr "Tips"
-#: cui/uiconfig/ui/baselinksdialog.ui:170
+#: cui/uiconfig/ui/baselinksdialog.ui:198
msgctxt "baselinksdialog|STATUS"
msgid "Status"
msgstr "Statuss"
-#: cui/uiconfig/ui/baselinksdialog.ui:197
-msgctxt "baselinksdialog|TB_LINKS-atkobject"
-msgid "Edit Links"
-msgstr "Rediģēt saites"
-
-#: cui/uiconfig/ui/baselinksdialog.ui:226
+#: cui/uiconfig/ui/baselinksdialog.ui:234
msgctxt "baselinksdialog|FILES2"
msgid "Source file"
msgstr "Avota datne"
-#: cui/uiconfig/ui/baselinksdialog.ui:242
+#: cui/uiconfig/ui/baselinksdialog.ui:248
msgctxt "baselinksdialog|SOURCE2"
msgid "Element:"
msgstr "Elements:"
-#: cui/uiconfig/ui/baselinksdialog.ui:256
+#: cui/uiconfig/ui/baselinksdialog.ui:260
msgctxt "baselinksdialog|TYPE2"
msgid "Type:"
msgstr "Tips:"
-#: cui/uiconfig/ui/baselinksdialog.ui:270
+#: cui/uiconfig/ui/baselinksdialog.ui:272
msgctxt "baselinksdialog|UPDATE"
msgid "Update:"
msgstr "Atjaunināt:"
-#: cui/uiconfig/ui/baselinksdialog.ui:347
+#: cui/uiconfig/ui/baselinksdialog.ui:338
msgctxt "baselinksdialog|AUTOMATIC"
msgid "_Automatic"
msgstr "_Automātiski"
-#: cui/uiconfig/ui/baselinksdialog.ui:366
+#: cui/uiconfig/ui/baselinksdialog.ui:354
msgctxt "baselinksdialog|MANUAL"
msgid "Ma_nual"
msgstr "Paš_rocīgi"
@@ -2948,16 +4460,16 @@ msgctxt "bitmaptabpage|label5"
msgid "Width:"
msgstr "Platums:"
-#: cui/uiconfig/ui/bitmaptabpage.ui:226
-msgctxt "bitmaptabpage|scaletsb"
-msgid "Scale"
-msgstr "Mērogs"
-
-#: cui/uiconfig/ui/bitmaptabpage.ui:249
+#: cui/uiconfig/ui/bitmaptabpage.ui:233
msgctxt "bitmaptabpage|label6"
msgid "Height:"
msgstr "Augstums:"
+#: cui/uiconfig/ui/bitmaptabpage.ui:264
+msgctxt "bitmaptabpage|scaletsb"
+msgid "Scale"
+msgstr "Mērogs"
+
#: cui/uiconfig/ui/bitmaptabpage.ui:295
msgctxt "bitmaptabpage|label7"
msgid "Position:"
@@ -3143,112 +4655,112 @@ msgctxt "borderbackgrounddialog|background"
msgid "Background"
msgstr "Fons"
-#: cui/uiconfig/ui/borderpage.ui:101
+#: cui/uiconfig/ui/borderpage.ui:100
msgctxt "borderpage|userdefft"
msgid "_User-defined:"
msgstr "Lietotāja _definēts:"
-#: cui/uiconfig/ui/borderpage.ui:115
+#: cui/uiconfig/ui/borderpage.ui:114
msgctxt "borderpage|label14"
msgid "Pr_esets:"
msgstr "Pri_ekšiestatījumi:"
-#: cui/uiconfig/ui/borderpage.ui:156
+#: cui/uiconfig/ui/borderpage.ui:155
msgctxt "borderpage|rmadjcellbordersft"
msgid "_Adjacent Cells:"
msgstr "Bl_akus esošās šūnas:"
-#: cui/uiconfig/ui/borderpage.ui:168
+#: cui/uiconfig/ui/borderpage.ui:167
msgctxt "borderpage|rmadjcellborders"
msgid "Remove border"
msgstr "Noņemt malas"
-#: cui/uiconfig/ui/borderpage.ui:189
+#: cui/uiconfig/ui/borderpage.ui:188
msgctxt "borderpage|label8"
msgid "Line Arrangement"
msgstr "Rindu izkārtojums"
-#: cui/uiconfig/ui/borderpage.ui:222
+#: cui/uiconfig/ui/borderpage.ui:221
msgctxt "borderpage|label15"
msgid "St_yle:"
msgstr "St_ils:"
-#: cui/uiconfig/ui/borderpage.ui:236
+#: cui/uiconfig/ui/borderpage.ui:235
msgctxt "borderpage|label16"
msgid "_Width:"
msgstr "_Platums:"
-#: cui/uiconfig/ui/borderpage.ui:250
+#: cui/uiconfig/ui/borderpage.ui:249
msgctxt "borderpage|label17"
msgid "_Color:"
msgstr "_Krāsa:"
-#: cui/uiconfig/ui/borderpage.ui:312
+#: cui/uiconfig/ui/borderpage.ui:315
msgctxt "borderpage|label9"
msgid "Line"
msgstr "Līnija"
-#: cui/uiconfig/ui/borderpage.ui:398
+#: cui/uiconfig/ui/borderpage.ui:403
msgctxt "borderpage|leftft"
msgid "_Left:"
msgstr "Kreisais:"
-#: cui/uiconfig/ui/borderpage.ui:412
+#: cui/uiconfig/ui/borderpage.ui:417
msgctxt "borderpage|rightft"
msgid "Right:"
msgstr "Labā:"
-#: cui/uiconfig/ui/borderpage.ui:426
+#: cui/uiconfig/ui/borderpage.ui:431
msgctxt "borderpage|topft"
msgid "_Top:"
msgstr "Augšā:"
-#: cui/uiconfig/ui/borderpage.ui:440
+#: cui/uiconfig/ui/borderpage.ui:445
msgctxt "borderpage|bottomft"
msgid "_Bottom:"
msgstr "_Apakšā:"
-#: cui/uiconfig/ui/borderpage.ui:452
+#: cui/uiconfig/ui/borderpage.ui:457
msgctxt "borderpage|sync"
msgid "Synchronize"
msgstr "Sinhronizēt"
-#: cui/uiconfig/ui/borderpage.ui:474
+#: cui/uiconfig/ui/borderpage.ui:479
msgctxt "borderpage|label10"
msgid "Padding"
msgstr "Iekšmale"
-#: cui/uiconfig/ui/borderpage.ui:516
+#: cui/uiconfig/ui/borderpage.ui:555
msgctxt "borderpage|label22"
msgid "_Position:"
msgstr "_Novietojums:"
-#: cui/uiconfig/ui/borderpage.ui:530
+#: cui/uiconfig/ui/borderpage.ui:585
msgctxt "borderpage|distanceft"
msgid "Distan_ce:"
msgstr "_Attālums:"
-#: cui/uiconfig/ui/borderpage.ui:544
+#: cui/uiconfig/ui/borderpage.ui:635
msgctxt "borderpage|shadowcolorft"
msgid "C_olor:"
msgstr "_Krāsa:"
-#: cui/uiconfig/ui/borderpage.ui:617
+#: cui/uiconfig/ui/borderpage.ui:678
msgctxt "borderpage|label11"
msgid "Shadow Style"
msgstr "Ēnas stils"
-#: cui/uiconfig/ui/borderpage.ui:650
+#: cui/uiconfig/ui/borderpage.ui:711
msgctxt "borderpage|mergewithnext"
msgid "_Merge with next paragraph"
msgstr "_Apvienot ar nākamo rindkopu"
-#: cui/uiconfig/ui/borderpage.ui:665
+#: cui/uiconfig/ui/borderpage.ui:726
msgctxt "borderpage|mergeadjacent"
msgid "_Merge adjacent line styles"
msgstr "_Apvienot blakus esošo līniju stilus"
-#: cui/uiconfig/ui/borderpage.ui:686
+#: cui/uiconfig/ui/borderpage.ui:747
msgctxt "borderpage|label12"
msgid "Properties"
msgstr "Īpašības"
@@ -3548,122 +5060,122 @@ msgctxt "cellalignment|labelABCD"
msgid "ABCD"
msgstr "ABCD"
-#: cui/uiconfig/ui/certdialog.ui:9
+#: cui/uiconfig/ui/certdialog.ui:24
msgctxt "certdialog|CertDialog"
msgid "Certificate Path"
msgstr "Sertifikāta ceļš"
-#: cui/uiconfig/ui/certdialog.ui:78
+#: cui/uiconfig/ui/certdialog.ui:43
msgctxt "certdialog|add"
msgid "_Add..."
msgstr "_Pievienot..."
-#: cui/uiconfig/ui/certdialog.ui:129
+#: 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 "Izvēlieties vai pievienojiet pareizo tīkla drošības pakalpojumu sertifikātu mapi, lai izmantotu ciparparakstu:"
-#: cui/uiconfig/ui/certdialog.ui:151
+#: cui/uiconfig/ui/certdialog.ui:160
msgctxt "certdialog|manual"
msgid "manual"
msgstr "pašrocīgi"
-#: cui/uiconfig/ui/certdialog.ui:165
+#: cui/uiconfig/ui/certdialog.ui:171
+msgctxt "certdialog|certdir"
+msgid "Select a Certificate directory"
+msgstr "Izvēlēties sertifikāta mapi"
+
+#: cui/uiconfig/ui/certdialog.ui:223
msgctxt "certdialog|profile"
msgid "Profile"
msgstr "Profils"
-#: cui/uiconfig/ui/certdialog.ui:179
+#: cui/uiconfig/ui/certdialog.ui:236
msgctxt "certdialog|dir"
msgid "Directory"
msgstr "Direktorija"
-#: cui/uiconfig/ui/certdialog.ui:192
-msgctxt "certdialog|certdir"
-msgid "Select a Certificate directory"
-msgstr "Izvēlēties sertifikāta mapi"
-
-#: cui/uiconfig/ui/certdialog.ui:235
+#: cui/uiconfig/ui/certdialog.ui:261
msgctxt "certdialog|label1"
msgid "Certificate Path"
msgstr "Sertifikāta ceļš"
-#: cui/uiconfig/ui/charnamepage.ui:375
+#: cui/uiconfig/ui/charnamepage.ui:348
msgctxt "charnamepage|westsizeft-nocjk"
msgid "Size:"
msgstr "Izmērs:"
-#: cui/uiconfig/ui/charnamepage.ui:401
+#: cui/uiconfig/ui/charnamepage.ui:374
msgctxt "charnamepage|westlangft-nocjk"
msgid "Language:"
msgstr "Valoda:"
-#: cui/uiconfig/ui/charnamepage.ui:449
+#: cui/uiconfig/ui/charnamepage.ui:423
msgctxt "charnamepage|west_features_button-nocjk"
msgid "Features..."
msgstr "Iespējas..."
-#: cui/uiconfig/ui/charnamepage.ui:528
+#: cui/uiconfig/ui/charnamepage.ui:502
msgctxt "charnamepage|westsizeft-cjk"
msgid "Size:"
msgstr "Izmērs:"
-#: cui/uiconfig/ui/charnamepage.ui:542
+#: cui/uiconfig/ui/charnamepage.ui:516
msgctxt "charnamepage|westlangft-cjk"
msgid "Language:"
msgstr "Valoda:"
-#: cui/uiconfig/ui/charnamepage.ui:645
+#: cui/uiconfig/ui/charnamepage.ui:623
msgctxt "charnamepage|west_features_button-cjk"
msgid "Features..."
msgstr "Iespējas..."
-#: cui/uiconfig/ui/charnamepage.ui:671
+#: cui/uiconfig/ui/charnamepage.ui:649
msgctxt "charnamepage|label4"
msgid "Western Text Font"
msgstr "Rietumu teksta fonts"
-#: cui/uiconfig/ui/charnamepage.ui:736
+#: cui/uiconfig/ui/charnamepage.ui:714
msgctxt "charnamepage|eastsizeft"
msgid "Size:"
msgstr "Izmērs:"
-#: cui/uiconfig/ui/charnamepage.ui:750
+#: cui/uiconfig/ui/charnamepage.ui:728
msgctxt "charnamepage|eastlangft"
msgid "Language:"
msgstr "Valoda:"
-#: cui/uiconfig/ui/charnamepage.ui:852
+#: cui/uiconfig/ui/charnamepage.ui:833
msgctxt "charnamepage|east_features_button"
msgid "Features..."
msgstr "Iespējas..."
-#: cui/uiconfig/ui/charnamepage.ui:878
+#: cui/uiconfig/ui/charnamepage.ui:859
msgctxt "charnamepage|label5"
msgid "Asian Text Font"
msgstr "Āzijas teksta formāts"
-#: cui/uiconfig/ui/charnamepage.ui:943
+#: cui/uiconfig/ui/charnamepage.ui:924
msgctxt "charnamepage|ctlsizeft"
msgid "Size:"
msgstr "Izmērs:"
-#: cui/uiconfig/ui/charnamepage.ui:957
+#: cui/uiconfig/ui/charnamepage.ui:938
msgctxt "charnamepage|ctllangft"
msgid "Language:"
msgstr "Valoda:"
-#: cui/uiconfig/ui/charnamepage.ui:1060
+#: cui/uiconfig/ui/charnamepage.ui:1044
msgctxt "charnamepage|ctl_features_button"
msgid "Features..."
msgstr "Iespējas..."
-#: cui/uiconfig/ui/charnamepage.ui:1086
+#: cui/uiconfig/ui/charnamepage.ui:1070
msgctxt "charnamepage|label6"
msgid "CTL Font"
msgstr "CTL fonts"
-#: cui/uiconfig/ui/charnamepage.ui:1124
+#: cui/uiconfig/ui/charnamepage.ui:1108
msgctxt "charnamepage|preview-atkobject"
msgid "Preview"
msgstr "Priekšskatījums"
@@ -4078,32 +5590,32 @@ msgctxt "colorpage|label19"
msgid "_Hex"
msgstr "_Hex"
-#: cui/uiconfig/ui/colorpage.ui:817
+#: cui/uiconfig/ui/colorpage.ui:818
msgctxt "colorpage|label11"
msgid "_C"
msgstr "_C"
-#: cui/uiconfig/ui/colorpage.ui:830
+#: cui/uiconfig/ui/colorpage.ui:831
msgctxt "colorpage|label12"
msgid "_M"
msgstr "_M"
-#: cui/uiconfig/ui/colorpage.ui:843
+#: cui/uiconfig/ui/colorpage.ui:844
msgctxt "colorpage|label13"
msgid "_K"
msgstr "_K"
-#: cui/uiconfig/ui/colorpage.ui:880
+#: cui/uiconfig/ui/colorpage.ui:881
msgctxt "colorpage|label14"
msgid "_Y"
msgstr "_Y"
-#: cui/uiconfig/ui/colorpage.ui:922
+#: cui/uiconfig/ui/colorpage.ui:923
msgctxt "colorpage|edit"
msgid "Pick"
msgstr "Paņemt"
-#: cui/uiconfig/ui/colorpage.ui:945
+#: cui/uiconfig/ui/colorpage.ui:946
msgctxt "colorpage|label6"
msgid "New"
msgstr "Jauns"
@@ -4116,7 +5628,7 @@ msgstr "Izvēlieties krāsu"
#: cui/uiconfig/ui/colorpickerdialog.ui:278
msgctxt "colorpickerdialog|redRadiobutton"
msgid "_Red:"
-msgstr "Sarkans: "
+msgstr "Sa_rkans:"
#: cui/uiconfig/ui/colorpickerdialog.ui:294
msgctxt "colorpickerdialog|greenRadiobutton"
@@ -4383,27 +5895,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Īpašības"
-#: cui/uiconfig/ui/cuiimapdlg.ui:96
+#: cui/uiconfig/ui/cuiimapdlg.ui:101
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:137
+#: cui/uiconfig/ui/cuiimapdlg.ui:143
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "Ietva_rs:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:184
+#: cui/uiconfig/ui/cuiimapdlg.ui:191
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Nosaukums:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:225
+#: cui/uiconfig/ui/cuiimapdlg.ui:233
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "Alternatīvs _teksts:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:266
+#: cui/uiconfig/ui/cuiimapdlg.ui:275
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Apraksts:"
@@ -4413,72 +5925,82 @@ msgctxt "customizedialog|CustomizeDialog"
msgid "Customize"
msgstr "Pielāgot"
-#: cui/uiconfig/ui/customizedialog.ui:107
+#: cui/uiconfig/ui/customizedialog.ui:137
msgctxt "customizedialog|menus"
msgid "Menus"
msgstr "Izvēlnes"
-#: cui/uiconfig/ui/customizedialog.ui:129
+#: cui/uiconfig/ui/customizedialog.ui:183
msgctxt "customizedialog|toolbars"
msgid "Toolbars"
msgstr "Rīkjoslas"
-#: cui/uiconfig/ui/customizedialog.ui:152
+#: cui/uiconfig/ui/customizedialog.ui:230
msgctxt "customizedialog|contextmenus"
msgid "Context Menus"
msgstr "Konteksta izvēlnes"
-#: cui/uiconfig/ui/customizedialog.ui:175
+#: cui/uiconfig/ui/customizedialog.ui:277
msgctxt "customizedialog|keyboard"
msgid "Keyboard"
msgstr "Tastatūra"
-#: cui/uiconfig/ui/customizedialog.ui:198
+#: cui/uiconfig/ui/customizedialog.ui:324
msgctxt "customizedialog|events"
msgid "Events"
msgstr "Notikumi"
-#: cui/uiconfig/ui/databaselinkdialog.ui:9
+#: cui/uiconfig/ui/databaselinkdialog.ui:8
msgctxt "databaselinkdialog|DatabaseLinkDialog"
msgid "Create Database Link"
msgstr "Izveidot datubāzes saiti"
-#: cui/uiconfig/ui/databaselinkdialog.ui:88
+#: cui/uiconfig/ui/databaselinkdialog.ui:93
msgctxt "databaselinkdialog|browse"
msgid "Browse..."
msgstr "Pārlūkot..."
-#: cui/uiconfig/ui/databaselinkdialog.ui:104
+#: cui/uiconfig/ui/databaselinkdialog.ui:108
msgctxt "databaselinkdialog|label1"
msgid "_Database file:"
msgstr "_Datubāzes datne:"
-#: cui/uiconfig/ui/databaselinkdialog.ui:148
+#: cui/uiconfig/ui/databaselinkdialog.ui:154
msgctxt "databaselinkdialog|label4"
msgid "Registered _name:"
msgstr "Reģistrēts _nosaukums:"
-#: cui/uiconfig/ui/databaselinkdialog.ui:179
+#: cui/uiconfig/ui/databaselinkdialog.ui:187
msgctxt "databaselinkdialog|alttitle"
msgid "Edit Database Link"
msgstr "Rediģēt datu bāzes saiti"
-#: cui/uiconfig/ui/dbregisterpage.ui:62
+#: cui/uiconfig/ui/dbregisterpage.ui:73
+msgctxt "dbregisterpage|type"
+msgid "Registered name"
+msgstr "Reģistrētais nosaukums"
+
+#: cui/uiconfig/ui/dbregisterpage.ui:95
+msgctxt "dbregisterpage|path"
+msgid "Database file"
+msgstr "Datubāzes datne"
+
+#: cui/uiconfig/ui/dbregisterpage.ui:123
msgctxt "dbregisterpage|new"
msgid "_New..."
msgstr "Jau_ns..."
-#: cui/uiconfig/ui/dbregisterpage.ui:76
+#: cui/uiconfig/ui/dbregisterpage.ui:137
msgctxt "dbregisterpage|delete"
msgid "_Delete"
msgstr "_Dzēst"
-#: cui/uiconfig/ui/dbregisterpage.ui:90
+#: cui/uiconfig/ui/dbregisterpage.ui:151
msgctxt "dbregisterpage|edit"
msgid "_Edit..."
msgstr "R_ediģēt..."
-#: cui/uiconfig/ui/dbregisterpage.ui:117
+#: cui/uiconfig/ui/dbregisterpage.ui:178
msgctxt "dbregisterpage|label1"
msgid "Registered Databases"
msgstr "Reģistrētās datubāzes"
@@ -4551,7 +6073,7 @@ msgstr "Rādīt _mērvienības"
#: cui/uiconfig/ui/dimensionlinestabpage.ui:446
msgctxt "dimensionlinestabpage|label2"
msgid "Legend"
-msgstr "Leģenda"
+msgstr "Apzīmējumi"
#: cui/uiconfig/ui/dimensionlinestabpage.ui:470
msgctxt "dimensionlinestabpage|STR_MEASURE_AUTOMATIC"
@@ -4623,37 +6145,37 @@ msgctxt "distributionpage|label1"
msgid "Vertical"
msgstr "Vertikāli"
-#: cui/uiconfig/ui/editdictionarydialog.ui:8
+#: cui/uiconfig/ui/editdictionarydialog.ui:26
msgctxt "editdictionarydialog|EditDictionaryDialog"
msgid "Edit Custom Dictionary"
msgstr "Rediģēt pielāgotu vārdnīcu"
-#: cui/uiconfig/ui/editdictionarydialog.ui:95
+#: cui/uiconfig/ui/editdictionarydialog.ui:114
msgctxt "editdictionarydialog|book_label"
msgid "_Book:"
msgstr "_Grāmata:"
-#: cui/uiconfig/ui/editdictionarydialog.ui:110
+#: cui/uiconfig/ui/editdictionarydialog.ui:128
msgctxt "editdictionarydialog|lang_label"
msgid "_Language:"
msgstr "Va_loda:"
-#: cui/uiconfig/ui/editdictionarydialog.ui:180
+#: cui/uiconfig/ui/editdictionarydialog.ui:191
msgctxt "editdictionarydialog|word_label"
msgid "_Word"
msgstr "_Vārds"
-#: cui/uiconfig/ui/editdictionarydialog.ui:196
+#: cui/uiconfig/ui/editdictionarydialog.ui:205
msgctxt "editdictionarydialog|replace_label"
msgid "_Replace By"
msgstr "_Aizstāt ar"
-#: cui/uiconfig/ui/editdictionarydialog.ui:249
+#: cui/uiconfig/ui/editdictionarydialog.ui:334
msgctxt "editdictionarydialog|newreplace"
msgid "_New"
msgstr "Jau_ns"
-#: cui/uiconfig/ui/editdictionarydialog.ui:263
+#: cui/uiconfig/ui/editdictionarydialog.ui:348
msgctxt "editdictionarydialog|delete"
msgid "_Delete"
msgstr "_Dzēst"
@@ -4733,237 +6255,237 @@ msgctxt "effectspage|underlinecolorft"
msgid "Underline color:"
msgstr "Pasvītrojuma krāsa:"
-#: cui/uiconfig/ui/effectspage.ui:152
+#: cui/uiconfig/ui/effectspage.ui:154
msgctxt "effectspage|liststore1"
msgid "(Without)"
msgstr "(Bez)"
-#: cui/uiconfig/ui/effectspage.ui:153
+#: cui/uiconfig/ui/effectspage.ui:155
msgctxt "effectspage|liststore1"
msgid "Capitals"
msgstr "Visi lielie buti"
-#: cui/uiconfig/ui/effectspage.ui:154
+#: cui/uiconfig/ui/effectspage.ui:156
msgctxt "effectspage|liststore1"
msgid "Lowercase"
msgstr "Mazie burti"
-#: cui/uiconfig/ui/effectspage.ui:155
+#: cui/uiconfig/ui/effectspage.ui:157
msgctxt "effectspage|liststore1"
msgid "Title"
msgstr "Virsraksts"
-#: cui/uiconfig/ui/effectspage.ui:156
+#: cui/uiconfig/ui/effectspage.ui:158
msgctxt "effectspage|liststore1"
msgid "Small capitals"
msgstr "Samazināti lielie burti"
-#: cui/uiconfig/ui/effectspage.ui:169 cui/uiconfig/ui/effectspage.ui:213
+#: cui/uiconfig/ui/effectspage.ui:171 cui/uiconfig/ui/effectspage.ui:215
msgctxt "effectspage|liststore6"
msgid "(Without)"
msgstr "(Bez)"
-#: cui/uiconfig/ui/effectspage.ui:170 cui/uiconfig/ui/effectspage.ui:214
+#: cui/uiconfig/ui/effectspage.ui:172 cui/uiconfig/ui/effectspage.ui:216
msgctxt "effectspage|liststore6"
msgid "Single"
msgstr "Viena"
-#: cui/uiconfig/ui/effectspage.ui:171 cui/uiconfig/ui/effectspage.ui:215
+#: cui/uiconfig/ui/effectspage.ui:173 cui/uiconfig/ui/effectspage.ui:217
msgctxt "effectspage|liststore6"
msgid "Double"
msgstr "Dubulta"
-#: cui/uiconfig/ui/effectspage.ui:172 cui/uiconfig/ui/effectspage.ui:216
+#: cui/uiconfig/ui/effectspage.ui:174 cui/uiconfig/ui/effectspage.ui:218
msgctxt "effectspage|liststore6"
msgid "Bold"
msgstr "Trekna"
-#: cui/uiconfig/ui/effectspage.ui:173 cui/uiconfig/ui/effectspage.ui:217
+#: cui/uiconfig/ui/effectspage.ui:175 cui/uiconfig/ui/effectspage.ui:219
msgctxt "effectspage|liststore6"
msgid "Dotted"
msgstr "Punktēta"
-#: cui/uiconfig/ui/effectspage.ui:174 cui/uiconfig/ui/effectspage.ui:218
+#: cui/uiconfig/ui/effectspage.ui:176 cui/uiconfig/ui/effectspage.ui:220
msgctxt "effectspage|liststore6"
msgid "Dotted (Bold)"
msgstr "Punktēta (trekna)"
-#: cui/uiconfig/ui/effectspage.ui:175 cui/uiconfig/ui/effectspage.ui:219
+#: cui/uiconfig/ui/effectspage.ui:177 cui/uiconfig/ui/effectspage.ui:221
msgctxt "effectspage|liststore6"
msgid "Dash"
msgstr "Domuzīme"
-#: cui/uiconfig/ui/effectspage.ui:176 cui/uiconfig/ui/effectspage.ui:220
+#: cui/uiconfig/ui/effectspage.ui:178 cui/uiconfig/ui/effectspage.ui:222
msgctxt "effectspage|liststore6"
msgid "Dash (Bold)"
msgstr "Domuzīme (trekna)"
-#: cui/uiconfig/ui/effectspage.ui:177 cui/uiconfig/ui/effectspage.ui:221
+#: cui/uiconfig/ui/effectspage.ui:179 cui/uiconfig/ui/effectspage.ui:223
msgctxt "effectspage|liststore6"
msgid "Long Dash"
msgstr "Garā domuzīme"
-#: cui/uiconfig/ui/effectspage.ui:178 cui/uiconfig/ui/effectspage.ui:222
+#: cui/uiconfig/ui/effectspage.ui:180 cui/uiconfig/ui/effectspage.ui:224
msgctxt "effectspage|liststore6"
msgid "Long Dash (Bold)"
msgstr "Garā domuzīme (trekna)"
-#: cui/uiconfig/ui/effectspage.ui:179 cui/uiconfig/ui/effectspage.ui:223
+#: cui/uiconfig/ui/effectspage.ui:181 cui/uiconfig/ui/effectspage.ui:225
msgctxt "effectspage|liststore6"
msgid "Dot Dash"
-msgstr "Punkts domuzīme"
+msgstr "Punkts—domuzīme"
-#: cui/uiconfig/ui/effectspage.ui:180 cui/uiconfig/ui/effectspage.ui:224
+#: cui/uiconfig/ui/effectspage.ui:182 cui/uiconfig/ui/effectspage.ui:226
msgctxt "effectspage|liststore6"
msgid "Dot Dash (Bold)"
-msgstr "Punkts domuzīme (trekna)"
+msgstr "Punkts—domuzīme (trekna)"
-#: cui/uiconfig/ui/effectspage.ui:181 cui/uiconfig/ui/effectspage.ui:225
+#: cui/uiconfig/ui/effectspage.ui:183 cui/uiconfig/ui/effectspage.ui:227
msgctxt "effectspage|liststore6"
msgid "Dot Dot Dash"
-msgstr "Punkts punkts domuzīme"
+msgstr "Punkts—punkts—domuzīme"
-#: cui/uiconfig/ui/effectspage.ui:182 cui/uiconfig/ui/effectspage.ui:226
+#: cui/uiconfig/ui/effectspage.ui:184 cui/uiconfig/ui/effectspage.ui:228
msgctxt "effectspage|liststore6"
msgid "Dot Dot Dash (Bold)"
-msgstr "Punkts punkts domuzīme (trekna)"
+msgstr "Punkts—punkts—domuzīme (trekna)"
-#: cui/uiconfig/ui/effectspage.ui:183 cui/uiconfig/ui/effectspage.ui:227
+#: cui/uiconfig/ui/effectspage.ui:185 cui/uiconfig/ui/effectspage.ui:229
msgctxt "effectspage|liststore6"
msgid "Wave"
msgstr "Vilnītis"
-#: cui/uiconfig/ui/effectspage.ui:184 cui/uiconfig/ui/effectspage.ui:228
+#: cui/uiconfig/ui/effectspage.ui:186 cui/uiconfig/ui/effectspage.ui:230
msgctxt "effectspage|liststore6"
msgid "Wave (Bold)"
msgstr "Vilnītis (trekns)"
-#: cui/uiconfig/ui/effectspage.ui:185 cui/uiconfig/ui/effectspage.ui:229
+#: cui/uiconfig/ui/effectspage.ui:187 cui/uiconfig/ui/effectspage.ui:231
msgctxt "effectspage|liststore6"
msgid "Double Wave"
msgstr "Dubultvilnītis"
-#: cui/uiconfig/ui/effectspage.ui:198
+#: cui/uiconfig/ui/effectspage.ui:200
msgctxt "effectspage|liststore2"
msgid "(Without)"
msgstr "(Bez)"
-#: cui/uiconfig/ui/effectspage.ui:199
+#: cui/uiconfig/ui/effectspage.ui:201
msgctxt "effectspage|liststore2"
msgid "Embossed"
msgstr "Izspiests"
-#: cui/uiconfig/ui/effectspage.ui:200
+#: cui/uiconfig/ui/effectspage.ui:202
msgctxt "effectspage|liststore2"
msgid "Engraved"
msgstr "Iegravēts"
-#: cui/uiconfig/ui/effectspage.ui:242
+#: cui/uiconfig/ui/effectspage.ui:244
msgctxt "effectspage|liststore5"
msgid "(Without)"
msgstr "(Bez)"
-#: cui/uiconfig/ui/effectspage.ui:243
+#: cui/uiconfig/ui/effectspage.ui:245
msgctxt "effectspage|liststore5"
msgid "Single"
msgstr "Viena"
-#: cui/uiconfig/ui/effectspage.ui:244
+#: cui/uiconfig/ui/effectspage.ui:246
msgctxt "effectspage|liststore5"
msgid "Double"
msgstr "Dubulta"
-#: cui/uiconfig/ui/effectspage.ui:245
+#: cui/uiconfig/ui/effectspage.ui:247
msgctxt "effectspage|liststore5"
msgid "Bold"
msgstr "Trekna"
-#: cui/uiconfig/ui/effectspage.ui:246
+#: cui/uiconfig/ui/effectspage.ui:248
msgctxt "effectspage|liststore5"
msgid "With /"
msgstr "Ar /"
-#: cui/uiconfig/ui/effectspage.ui:247
+#: cui/uiconfig/ui/effectspage.ui:249
msgctxt "effectspage|liststore5"
msgid "With X"
msgstr "Ar X"
-#: cui/uiconfig/ui/effectspage.ui:287
+#: cui/uiconfig/ui/effectspage.ui:293
msgctxt "effectspage|outlinecb"
msgid "Outline"
msgstr "Kontūra"
-#: cui/uiconfig/ui/effectspage.ui:303
+#: cui/uiconfig/ui/effectspage.ui:309
msgctxt "effectspage|blinkingcb"
msgid "Blinking"
msgstr "Mirgošana"
-#: cui/uiconfig/ui/effectspage.ui:319
+#: cui/uiconfig/ui/effectspage.ui:325
msgctxt "effectspage|hiddencb"
msgid "Hidden"
msgstr "Slēpts"
-#: cui/uiconfig/ui/effectspage.ui:335
+#: cui/uiconfig/ui/effectspage.ui:341
msgctxt "effectspage|individualwordscb"
msgid "Individual words"
msgstr "Katram vārdam atsevišķi"
-#: cui/uiconfig/ui/effectspage.ui:353
+#: cui/uiconfig/ui/effectspage.ui:359
msgctxt "effectspage|liststore3"
msgid "(Without)"
msgstr "(Bez)"
-#: cui/uiconfig/ui/effectspage.ui:354
+#: cui/uiconfig/ui/effectspage.ui:360
msgctxt "effectspage|liststore3"
msgid "Dot"
msgstr "Punkts"
-#: cui/uiconfig/ui/effectspage.ui:355
+#: cui/uiconfig/ui/effectspage.ui:361
msgctxt "effectspage|liststore3"
msgid "Circle"
msgstr "Riņķis"
-#: cui/uiconfig/ui/effectspage.ui:356
+#: cui/uiconfig/ui/effectspage.ui:362
msgctxt "effectspage|liststore3"
msgid "Disc"
msgstr "Ripa"
-#: cui/uiconfig/ui/effectspage.ui:357
+#: cui/uiconfig/ui/effectspage.ui:363
msgctxt "effectspage|liststore3"
msgid "Accent"
msgstr "Akcents"
-#: cui/uiconfig/ui/effectspage.ui:370
+#: cui/uiconfig/ui/effectspage.ui:376
msgctxt "effectspage|liststore4"
msgid "Above text"
msgstr "Virs teksta"
-#: cui/uiconfig/ui/effectspage.ui:371
+#: cui/uiconfig/ui/effectspage.ui:377
msgctxt "effectspage|liststore4"
msgid "Below text"
msgstr "Zem teksta"
-#: cui/uiconfig/ui/effectspage.ui:383
+#: cui/uiconfig/ui/effectspage.ui:389
msgctxt "effectspage|positionft"
msgid "Position:"
msgstr "Novietojums:"
-#: cui/uiconfig/ui/effectspage.ui:397
+#: cui/uiconfig/ui/effectspage.ui:403
msgctxt "effectspage|emphasisft"
msgid "Emphasis mark:"
msgstr "Uzsvara zīme:"
-#: cui/uiconfig/ui/effectspage.ui:409
+#: cui/uiconfig/ui/effectspage.ui:415
msgctxt "effectspage|shadowcb"
msgid "Shadow"
msgstr "Ēna"
-#: cui/uiconfig/ui/effectspage.ui:450
+#: cui/uiconfig/ui/effectspage.ui:456
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 "Pieejamības opcija \"Izmantot automātisku fonta krāsu rādīšanai uz ekrāna\" ir aktīva. Fonta krāsas atribūti pašreiz netiek lietoti, lai attēlotu tekstu."
-#: cui/uiconfig/ui/effectspage.ui:510
+#: cui/uiconfig/ui/effectspage.ui:516
msgctxt "effectspage|preview-atkobject"
msgid "Preview"
msgstr "Priekšskatījums"
@@ -4986,69 +6508,69 @@ msgstr "Parametri"
#: cui/uiconfig/ui/eventassigndialog.ui:8
msgctxt "eventassigndialog|EventAssignDialog"
msgid "Assign Macro"
-msgstr "Piesaistīt makro"
+msgstr "Piešķirt makrokomandu"
-#: cui/uiconfig/ui/eventassignpage.ui:84
+#: cui/uiconfig/ui/eventassignpage.ui:85
msgctxt "eventassignpage|eventft"
msgid "Event"
msgstr "Notikums"
-#: cui/uiconfig/ui/eventassignpage.ui:97
+#: cui/uiconfig/ui/eventassignpage.ui:98
msgctxt "eventassignpage|assignft"
msgid "Assigned Action"
msgstr "Piesaistītā darbība"
-#: cui/uiconfig/ui/eventassignpage.ui:116
+#: cui/uiconfig/ui/eventassignpage.ui:117
msgctxt "eventassignpage|libraryft1"
msgid "Assignments"
msgstr "Piesaistījumi"
-#: cui/uiconfig/ui/eventassignpage.ui:137
+#: cui/uiconfig/ui/eventassignpage.ui:138
msgctxt "eventassignpage|assign"
msgid "Assign"
msgstr "Piesaistīt"
-#: cui/uiconfig/ui/eventassignpage.ui:152
+#: cui/uiconfig/ui/eventassignpage.ui:153
msgctxt "eventassignpage|delete"
msgid "Remove"
msgstr "Noņemt"
-#: cui/uiconfig/ui/eventassignpage.ui:243
+#: cui/uiconfig/ui/eventassignpage.ui:244
msgctxt "eventassignpage|macrotoft"
msgid "Macro From"
-msgstr "Makro no"
+msgstr "Makrokomanda no"
-#: cui/uiconfig/ui/eventassignpage.ui:319
+#: cui/uiconfig/ui/eventassignpage.ui:320
msgctxt "eventassignpage|existingmacrosft"
msgid "Existing Macros"
-msgstr "Esošie makro"
+msgstr "Esošās makrokomandas"
-#: cui/uiconfig/ui/eventsconfigpage.ui:31
+#: cui/uiconfig/ui/eventsconfigpage.ui:41
msgctxt "eventsconfigpage|label1"
msgid "Assign:"
msgstr "Piesaistīt:"
-#: cui/uiconfig/ui/eventsconfigpage.ui:49
+#: cui/uiconfig/ui/eventsconfigpage.ui:60
msgctxt "eventsconfigpage|macro"
msgid "M_acro..."
msgstr "M_akros..."
-#: cui/uiconfig/ui/eventsconfigpage.ui:63
+#: cui/uiconfig/ui/eventsconfigpage.ui:74
msgctxt "eventsconfigpage|delete"
msgid "_Remove"
msgstr "_Izņemt"
-#: cui/uiconfig/ui/eventsconfigpage.ui:105
+#: cui/uiconfig/ui/eventsconfigpage.ui:116
msgctxt "eventsconfigpage|label2"
msgid "Save in:"
msgstr "Saglabāt iekš:"
-#: cui/uiconfig/ui/eventsconfigpage.ui:156
+#: cui/uiconfig/ui/eventsconfigpage.ui:167
msgctxt "eventsconfigpage|eventft"
msgid "Event"
msgstr "Notikums"
-#: cui/uiconfig/ui/eventsconfigpage.ui:168
+#: cui/uiconfig/ui/eventsconfigpage.ui:191
msgctxt "eventsconfigpage|actionft"
msgid "Assigned Action"
msgstr "Piesaistītā darbība"
@@ -5058,130 +6580,130 @@ msgctxt "fmsearchdialog|RecordSearchDialog"
msgid "Record Search"
msgstr "Ieraksta meklēšana"
-#: cui/uiconfig/ui/fmsearchdialog.ui:21
+#: cui/uiconfig/ui/fmsearchdialog.ui:27
msgctxt "fmsearchdialog|pbSearchAgain"
msgid "S_earch"
msgstr "M_eklēt"
-#: cui/uiconfig/ui/fmsearchdialog.ui:139
+#: cui/uiconfig/ui/fmsearchdialog.ui:146
msgctxt "fmsearchdialog|rbSearchForText"
msgid "_Text:"
msgstr "_Teksts:"
-#: cui/uiconfig/ui/fmsearchdialog.ui:162
+#: cui/uiconfig/ui/fmsearchdialog.ui:169
msgctxt "fmsearchdialog|rbSearchForNull"
msgid "Field content is _NULL"
msgstr "Lauka saturs ir _NULL"
-#: cui/uiconfig/ui/fmsearchdialog.ui:180
+#: cui/uiconfig/ui/fmsearchdialog.ui:187
msgctxt "fmsearchdialog|rbSearchForNotNull"
msgid "Field content is not NU_LL"
msgstr "Lauka saturs nav NU_LL"
-#: cui/uiconfig/ui/fmsearchdialog.ui:210
+#: cui/uiconfig/ui/fmsearchdialog.ui:217
msgctxt "fmsearchdialog|flSearchFor"
msgid "_Search for"
msgstr "_Meklēt"
-#: cui/uiconfig/ui/fmsearchdialog.ui:266
+#: cui/uiconfig/ui/fmsearchdialog.ui:273
msgctxt "fmsearchdialog|rbSingleField"
msgid "_Single field:"
msgstr "Vien_s lauks:"
-#: cui/uiconfig/ui/fmsearchdialog.ui:302
+#: cui/uiconfig/ui/fmsearchdialog.ui:309
msgctxt "fmsearchdialog|rbAllFields"
msgid "_All fields"
msgstr "Visi l_auki"
-#: cui/uiconfig/ui/fmsearchdialog.ui:327
+#: cui/uiconfig/ui/fmsearchdialog.ui:333
msgctxt "fmsearchdialog|ftForm"
msgid "Form:"
msgstr "Forma:"
-#: cui/uiconfig/ui/fmsearchdialog.ui:401
+#: cui/uiconfig/ui/fmsearchdialog.ui:408
msgctxt "fmsearchdialog|label2"
msgid "Where to Search"
msgstr "Kur jāmeklē"
-#: cui/uiconfig/ui/fmsearchdialog.ui:452
+#: cui/uiconfig/ui/fmsearchdialog.ui:458
msgctxt "fmsearchdialog|ftPosition"
msgid "_Position:"
msgstr "_Novietojums:"
-#: cui/uiconfig/ui/fmsearchdialog.ui:488
+#: cui/uiconfig/ui/fmsearchdialog.ui:495
msgctxt "fmsearchdialog|HalfFullFormsCJK"
msgid "Match character wi_dth"
msgstr "Sakrīt rakstzīmju p_latums"
-#: cui/uiconfig/ui/fmsearchdialog.ui:508
+#: cui/uiconfig/ui/fmsearchdialog.ui:515
msgctxt "fmsearchdialog|SoundsLikeCJK"
msgid "Sounds like (_Japanese)"
msgstr "Izklausās kā (_Japāņu)"
-#: cui/uiconfig/ui/fmsearchdialog.ui:523
+#: cui/uiconfig/ui/fmsearchdialog.ui:530
msgctxt "fmsearchdialog|SoundsLikeCJKSettings"
msgid "Similarities..."
msgstr "Līdzības..."
-#: cui/uiconfig/ui/fmsearchdialog.ui:548
+#: cui/uiconfig/ui/fmsearchdialog.ui:555
msgctxt "fmsearchdialog|cbApprox"
msgid "S_imilarity search"
msgstr "Meklēt _līdzīgos"
-#: cui/uiconfig/ui/fmsearchdialog.ui:563
+#: cui/uiconfig/ui/fmsearchdialog.ui:570
msgctxt "fmsearchdialog|pbApproxSettings"
msgid "Similarities..."
msgstr "Līdzības..."
-#: cui/uiconfig/ui/fmsearchdialog.ui:584
+#: cui/uiconfig/ui/fmsearchdialog.ui:591
msgctxt "fmsearchdialog|cbCase"
msgid "_Match case"
msgstr "_Reģistrjutīgs"
-#: cui/uiconfig/ui/fmsearchdialog.ui:599
+#: cui/uiconfig/ui/fmsearchdialog.ui:606
msgctxt "fmsearchdialog|cbStartOver"
msgid "Fr_om top"
msgstr "N_o sākuma"
-#: cui/uiconfig/ui/fmsearchdialog.ui:614
+#: cui/uiconfig/ui/fmsearchdialog.ui:621
msgctxt "fmsearchdialog|cbRegular"
msgid "_Regular expression"
msgstr "_Regulārā izteiksme"
-#: cui/uiconfig/ui/fmsearchdialog.ui:629
+#: cui/uiconfig/ui/fmsearchdialog.ui:636
msgctxt "fmsearchdialog|cbUseFormat"
msgid "Appl_y field format"
msgstr "P_ielietot lauka formātu"
-#: cui/uiconfig/ui/fmsearchdialog.ui:644
+#: cui/uiconfig/ui/fmsearchdialog.ui:651
msgctxt "fmsearchdialog|cbBackwards"
msgid "Search _backwards"
msgstr "Meklēt _pretējā virzienā"
-#: cui/uiconfig/ui/fmsearchdialog.ui:659
+#: cui/uiconfig/ui/fmsearchdialog.ui:666
msgctxt "fmsearchdialog|cbWildCard"
msgid "_Wildcard expression"
msgstr "_Aizstājējzīmju izteiksme"
-#: cui/uiconfig/ui/fmsearchdialog.ui:687
+#: cui/uiconfig/ui/fmsearchdialog.ui:694
msgctxt "fmsearchdialog|flOptions"
msgid "Settings"
msgstr "Iestatījumi"
-#: cui/uiconfig/ui/fmsearchdialog.ui:723
+#: cui/uiconfig/ui/fmsearchdialog.ui:729
msgctxt "fmsearchdialog|ftRecordLabel"
msgid "Record:"
msgstr "Ieraksts:"
-#: cui/uiconfig/ui/fmsearchdialog.ui:734
+#: cui/uiconfig/ui/fmsearchdialog.ui:741
msgctxt "fmsearchdialog|ftRecord"
msgid "record count"
msgstr "ierakstu skaits"
-#: cui/uiconfig/ui/fmsearchdialog.ui:760
+#: cui/uiconfig/ui/fmsearchdialog.ui:767
msgctxt "fmsearchdialog|flState"
msgid "State"
-msgstr "Stāvoklis"
+msgstr "Štats"
#: cui/uiconfig/ui/fontfeaturesdialog.ui:10
msgctxt "fontfeaturesdialog|FontFeaturesDialog"
@@ -5198,22 +6720,22 @@ msgctxt "formatcellsdialog|FormatCellsDialog"
msgid "Table Properties"
msgstr "Tabulas īpašības"
-#: cui/uiconfig/ui/formatcellsdialog.ui:138
+#: cui/uiconfig/ui/formatcellsdialog.ui:137
msgctxt "formatcellsdialog|name"
msgid "Font"
msgstr "Fonts"
-#: cui/uiconfig/ui/formatcellsdialog.ui:184
+#: cui/uiconfig/ui/formatcellsdialog.ui:183
msgctxt "formatcellsdialog|effects"
msgid "Font Effects"
msgstr "Fontu efekti"
-#: cui/uiconfig/ui/formatcellsdialog.ui:231
+#: cui/uiconfig/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|border"
msgid "Borders"
msgstr "Malas"
-#: cui/uiconfig/ui/formatcellsdialog.ui:278
+#: cui/uiconfig/ui/formatcellsdialog.ui:277
msgctxt "formatcellsdialog|area"
msgid "Background"
msgstr "Fons"
@@ -5349,117 +6871,117 @@ msgctxt "galleryupdateprogress|label2"
msgid "File"
msgstr "Datne"
-#: cui/uiconfig/ui/gradientpage.ui:125
+#: cui/uiconfig/ui/gradientpage.ui:130
msgctxt "gradientpage|modify"
msgid "_Modify"
msgstr "_Modificēt"
-#: cui/uiconfig/ui/gradientpage.ui:152
+#: cui/uiconfig/ui/gradientpage.ui:157
msgctxt "gradientpage|label1"
msgid "Gradient"
msgstr "Krāsu pāreja"
-#: cui/uiconfig/ui/gradientpage.ui:200
+#: cui/uiconfig/ui/gradientpage.ui:205
msgctxt "gradientpage|typeft"
msgid "_Type:"
msgstr "_Tips:"
-#: cui/uiconfig/ui/gradientpage.ui:216
+#: cui/uiconfig/ui/gradientpage.ui:221
msgctxt "gradientpage|gradienttypelb"
msgid "Linear"
msgstr "Lineārs"
-#: cui/uiconfig/ui/gradientpage.ui:217
+#: cui/uiconfig/ui/gradientpage.ui:222
msgctxt "gradientpage|gradienttypelb"
msgid "Axial"
msgstr "Aksiāls"
-#: cui/uiconfig/ui/gradientpage.ui:218
+#: cui/uiconfig/ui/gradientpage.ui:223
msgctxt "gradientpage|gradienttypelb"
msgid "Radial"
msgstr "Radiāls"
-#: cui/uiconfig/ui/gradientpage.ui:219
+#: cui/uiconfig/ui/gradientpage.ui:224
msgctxt "gradientpage|gradienttypelb"
msgid "Ellipsoid"
msgstr "Elipsoīds"
-#: cui/uiconfig/ui/gradientpage.ui:220
+#: cui/uiconfig/ui/gradientpage.ui:225
msgctxt "gradientpage|gradienttypelb"
msgid "Quadratic"
msgstr "Kvadrātisks"
-#: cui/uiconfig/ui/gradientpage.ui:221
+#: cui/uiconfig/ui/gradientpage.ui:226
msgctxt "gradientpage|gradienttypelb"
msgid "Square"
msgstr "Kvadrāts"
-#: cui/uiconfig/ui/gradientpage.ui:248
+#: cui/uiconfig/ui/gradientpage.ui:253
msgctxt "gradientpage|incrementft"
msgid "Increment:"
msgstr "Palielinājums:"
-#: cui/uiconfig/ui/gradientpage.ui:288
+#: cui/uiconfig/ui/gradientpage.ui:278
msgctxt "gradientpage|autoincrement"
msgid "A_utomatic"
msgstr "A_utomātiski"
-#: cui/uiconfig/ui/gradientpage.ui:320
+#: cui/uiconfig/ui/gradientpage.ui:310
msgctxt "gradientpage|centerft"
msgid "Center ( X / Y ):"
msgstr "Centrs ( X / Y ):"
-#: cui/uiconfig/ui/gradientpage.ui:389
+#: cui/uiconfig/ui/gradientpage.ui:375
msgctxt "gradientpage|borderft"
msgid "_Border:"
msgstr "Mala:"
-#: cui/uiconfig/ui/gradientpage.ui:444
+#: cui/uiconfig/ui/gradientpage.ui:428
msgctxt "gradientpage|angleft"
msgid "A_ngle:"
msgstr "Leņķis:"
-#: cui/uiconfig/ui/gradientpage.ui:485
+#: cui/uiconfig/ui/gradientpage.ui:471
msgctxt "gradientpage|colortoft"
msgid "_To Color:"
msgstr "_Uz krāsu:"
-#: cui/uiconfig/ui/gradientpage.ui:526
+#: cui/uiconfig/ui/gradientpage.ui:514
msgctxt "gradientpage|colorfromft"
msgid "_From Color:"
msgstr "_No krāsas:"
-#: cui/uiconfig/ui/gradientpage.ui:551
+#: cui/uiconfig/ui/gradientpage.ui:552
msgctxt "gradientpage|a11y_center_x"
msgid "Center X"
msgstr "Centrs X"
-#: cui/uiconfig/ui/gradientpage.ui:565
+#: cui/uiconfig/ui/gradientpage.ui:566
msgctxt "gradientpage|a11y_center_y"
msgid "Center Y"
msgstr "Centrs Y"
-#: cui/uiconfig/ui/gradientpage.ui:579
+#: cui/uiconfig/ui/gradientpage.ui:580
msgctxt "gradientpage|a11y_percentage_from"
msgid "From color percentage"
msgstr "No krāsu procentiem"
-#: cui/uiconfig/ui/gradientpage.ui:593
+#: cui/uiconfig/ui/gradientpage.ui:594
msgctxt "gradientpage|a11y_percentage_to"
msgid "To color percentage"
msgstr "Uz krāsu procentiem"
-#: cui/uiconfig/ui/gradientpage.ui:618
+#: cui/uiconfig/ui/gradientpage.ui:619
msgctxt "gradientpage|propfl"
msgid "Options"
msgstr "Opcijas"
-#: cui/uiconfig/ui/gradientpage.ui:667
+#: cui/uiconfig/ui/gradientpage.ui:668
msgctxt "gradientpage|previewctl-atkobject"
msgid "Example"
msgstr "Piemērs"
-#: cui/uiconfig/ui/gradientpage.ui:689
+#: cui/uiconfig/ui/gradientpage.ui:690
msgctxt "gradientpage|label2"
msgid "Preview"
msgstr "Priekšskatījums"
@@ -5479,172 +7001,172 @@ msgctxt "hangulhanjaadddialog|label1"
msgid "Dictionary"
msgstr "Vārdnīca"
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:7
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:8
msgctxt "hangulhanjaconversiondialog|HangulHanjaConversionDialog"
msgid "Hangul/Hanja Conversion"
msgstr "Hangul/handža pārvēršana"
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:96
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:97
msgctxt "hangulhanjaconversiondialog|label1"
msgid "Original"
msgstr "Oriģināls"
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:132
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:122
msgctxt "hangulhanjaconversiondialog|label3"
msgid "Word"
msgstr "Vārds"
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:153
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:150
msgctxt "hangulhanjaconversiondialog|find"
msgid "_Find"
msgstr "_Meklēt"
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:181
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:172
msgctxt "hangulhanjaconversiondialog|label4"
msgid "Suggestions"
msgstr "Ieteikumi"
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:219
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:265
msgctxt "hangulhanjaconversiondialog|label5"
msgid "Format"
msgstr "Formāts"
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:229
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:285
+msgctxt "hangulhanjaconversiondialog|hanja_above"
+msgid "Hanja above"
+msgstr "Handža virs"
+
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:301
+msgctxt "hangulhanjaconversiondialog|hanja_below"
+msgid "Hanja below"
+msgstr "Handža zem"
+
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:317
+msgctxt "hangulhanjaconversiondialog|hangul_above"
+msgid "Hangul above"
+msgstr "Hangul virs"
+
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:333
+msgctxt "hangulhanjaconversiondialog|hangul_below"
+msgid "Hangul below"
+msgstr "Hangul zem"
+
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:346
msgctxt "hangulhanjaconversiondialog|simpleconversion"
msgid "_Hangul/Hanja"
msgstr "_Hangul/handža"
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:247
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:362
msgctxt "hangulhanjaconversiondialog|hangulbracket"
msgid "Hanja (Han_gul)"
msgstr "Handža (Han_gul)"
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:264
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:378
msgctxt "hangulhanjaconversiondialog|hanjabracket"
msgid "Hang_ul (Hanja)"
msgstr "Hang_ul (Handža)"
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:295
-msgctxt "hangulhanjaconversiondialog|hanja_above"
-msgid "Hanja"
-msgstr "Handža"
-
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:312
-msgctxt "hangulhanjaconversiondialog|hanja_below"
-msgid "Hanja"
-msgstr "Handža"
-
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:328
-msgctxt "hangulhanjaconversiondialog|hangul_above"
-msgid "Hangul"
-msgstr "Hangul"
-
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:344
-msgctxt "hangulhanjaconversiondialog|hangul_below"
-msgid "Hangul"
-msgstr "Hangul"
-
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:375
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:408
msgctxt "hangulhanjaconversiondialog|label6"
msgid "Conversion"
msgstr "Pārvēršana"
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:385
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:425
msgctxt "hangulhanjaconversiondialog|hangulonly"
msgid "Hangul _only"
msgstr "_Tikai hangul"
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:402
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:441
msgctxt "hangulhanjaconversiondialog|hanjaonly"
msgid "Hanja onl_y"
msgstr "T_ikai handža"
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:440
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:478
msgctxt "hangulhanjaconversiondialog|ignore"
msgid "_Ignore"
msgstr "_Ignorēt"
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:456
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:494
msgctxt "hangulhanjaconversiondialog|ignoreall"
msgid "Always I_gnore"
msgstr "Vienmēr i_gnorēt"
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:470
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:508
msgctxt "hangulhanjaconversiondialog|replace"
msgid "_Replace"
msgstr "_Aizstāt"
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:484
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:522
msgctxt "hangulhanjaconversiondialog|replaceall"
msgid "Always R_eplace"
msgstr "Vi_enmēr aizstāt"
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:501
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:536
msgctxt "hangulhanjaconversiondialog|replacebychar"
msgid "Replace b_y character"
msgstr "Aizstāt a_r rakstzīmi"
-#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:517
+#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:552
msgctxt "hangulhanjaconversiondialog|options"
-msgid "Options"
-msgstr "Opcijas"
+msgid "Options..."
+msgstr "Opcijas..."
-#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:9
+#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:8
msgctxt "hangulhanjaeditdictdialog|HangulHanjaEditDictDialog"
msgid "Edit Custom Dictionary"
msgstr "Rediģēt pielāgotu vārdnīcu"
-#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:107
+#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:111
msgctxt "hangulhanjaeditdictdialog|label4"
msgid "Book"
msgstr "Grāmata"
-#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:213
+#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:216
msgctxt "hangulhanjaeditdictdialog|label2"
msgid "Original"
msgstr "Oriģināls"
-#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:326
+#: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:325
msgctxt "hangulhanjaeditdictdialog|label3"
msgid "Suggestions"
msgstr "Ieteikumi"
-#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:8
+#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:22
msgctxt "hangulhanjaoptdialog|HangulHanjaOptDialog"
msgid "Hangul/Hanja Options"
msgstr "Hangul/handža opcijas"
-#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:107
+#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:127
msgctxt "hangulhanjaoptdialog|new"
msgid "New..."
msgstr "Jauns..."
-#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:121
+#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:141
msgctxt "hangulhanjaoptdialog|edit"
msgid "Edit..."
msgstr "Rediģēt..."
-#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:172
+#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:235
msgctxt "hangulhanjaoptdialog|label1"
msgid "User-defined Dictionaries"
msgstr "Lietotāja definētās vārdnīcas"
-#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:203
+#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:266
msgctxt "hangulhanjaoptdialog|ignorepost"
msgid "Ignore post-positional word"
msgstr "Ignorēt pēcpozīcijas vārdus"
-#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:218
+#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:281
msgctxt "hangulhanjaoptdialog|showrecentfirst"
msgid "Show recently used entries first"
msgstr "Rādīt nesen lietotos ierakstus pirmos"
-#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:233
+#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:296
msgctxt "hangulhanjaoptdialog|autoreplaceunique"
msgid "Replace all unique entries automatically"
msgstr "Aizstāt visus unikālos ierakstus automātiski"
-#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:254
+#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:317
msgctxt "hangulhanjaoptdialog|label2"
msgid "Options"
msgstr "Opcijas"
@@ -5694,22 +7216,22 @@ msgctxt "hatchpage|linecolorft"
msgid "Line _color:"
msgstr "Līnijas krāsa:"
-#: cui/uiconfig/ui/hatchpage.ui:306
+#: cui/uiconfig/ui/hatchpage.ui:308
msgctxt "hatchpage|backgroundcolor"
msgid "Background Color"
msgstr "Fona krāsa"
-#: cui/uiconfig/ui/hatchpage.ui:352
+#: cui/uiconfig/ui/hatchpage.ui:356
msgctxt "hatchpage|propfl"
msgid "Options"
msgstr "Opcijas"
-#: cui/uiconfig/ui/hatchpage.ui:402
+#: cui/uiconfig/ui/hatchpage.ui:406
msgctxt "hatchpage|previewctl-atkobject"
msgid "Example"
msgstr "Piemērs"
-#: cui/uiconfig/ui/hatchpage.ui:424
+#: cui/uiconfig/ui/hatchpage.ui:428
msgctxt "hatchpage|label1"
msgid "Preview"
msgstr "Priekšskatījums"
@@ -6053,22 +7575,22 @@ msgctxt "iconselectordialog|IconSelector"
msgid "Change Icon"
msgstr "Mainīt ikonu"
-#: cui/uiconfig/ui/iconselectordialog.ui:122
+#: cui/uiconfig/ui/iconselectordialog.ui:148
msgctxt "iconselectordialog|label1"
msgid "_Icons"
msgstr "_Ikonas"
-#: cui/uiconfig/ui/iconselectordialog.ui:145
+#: cui/uiconfig/ui/iconselectordialog.ui:171
msgctxt "iconselectordialog|importButton"
msgid "I_mport..."
msgstr "I_mportēt..."
-#: cui/uiconfig/ui/iconselectordialog.ui:159
+#: cui/uiconfig/ui/iconselectordialog.ui:185
msgctxt "iconselectordialog|deleteButton"
msgid "_Delete..."
msgstr "_Dzēst..."
-#: cui/uiconfig/ui/iconselectordialog.ui:192
+#: cui/uiconfig/ui/iconselectordialog.ui:216
msgctxt "iconselectordialog|noteLabel"
msgid ""
"Note:\n"
@@ -6446,137 +7968,137 @@ msgctxt "linetabpage|FT_COLOR"
msgid "Colo_r:"
msgstr "K_rāsa:"
-#: cui/uiconfig/ui/linetabpage.ui:265
+#: cui/uiconfig/ui/linetabpage.ui:267
msgctxt "linetabpage|FT_LINE_WIDTH"
msgid "_Width:"
msgstr "_Platums:"
-#: cui/uiconfig/ui/linetabpage.ui:306
+#: cui/uiconfig/ui/linetabpage.ui:308
msgctxt "linetabpage|FT_TRANSPARENT"
msgid "_Transparency:"
msgstr "_Caurspīdība:"
-#: cui/uiconfig/ui/linetabpage.ui:345
+#: cui/uiconfig/ui/linetabpage.ui:347
msgctxt "linetabpage|label1"
msgid "Line Properties"
msgstr "Līnijas īpašības"
-#: cui/uiconfig/ui/linetabpage.ui:392
+#: cui/uiconfig/ui/linetabpage.ui:394
msgctxt "linetabpage|FT_LINE_ENDS_STYLE"
msgid "Start st_yle:"
msgstr "Sākuma st_ils:"
-#: cui/uiconfig/ui/linetabpage.ui:456
+#: cui/uiconfig/ui/linetabpage.ui:458
msgctxt "linetabpage|label5"
msgid "End sty_le:"
msgstr "Beigu sti_ls:"
-#: cui/uiconfig/ui/linetabpage.ui:476
+#: cui/uiconfig/ui/linetabpage.ui:478
msgctxt "linetabpage|FT_LINE_START_WIDTH"
msgid "Wi_dth:"
msgstr "Pla_tums:"
-#: cui/uiconfig/ui/linetabpage.ui:503
+#: cui/uiconfig/ui/linetabpage.ui:505
msgctxt "linetabpage|TSB_CENTER_START"
msgid "Ce_nter"
msgstr "Ce_ntrs"
-#: cui/uiconfig/ui/linetabpage.ui:534
+#: cui/uiconfig/ui/linetabpage.ui:536
msgctxt "linetabpage|FT_LINE_END_WIDTH"
msgid "W_idth:"
msgstr "P_latums:"
-#: cui/uiconfig/ui/linetabpage.ui:561
+#: cui/uiconfig/ui/linetabpage.ui:563
msgctxt "linetabpage|TSB_CENTER_END"
msgid "C_enter"
msgstr "C_entrs"
-#: cui/uiconfig/ui/linetabpage.ui:591
+#: cui/uiconfig/ui/linetabpage.ui:593
msgctxt "linetabpage|CBX_SYNCHRONIZE"
msgid "Synchroni_ze ends"
msgstr "Sinhroni_zēt uzgaļus"
-#: cui/uiconfig/ui/linetabpage.ui:613
+#: cui/uiconfig/ui/linetabpage.ui:615
msgctxt "linetabpage|label2"
msgid "Arrow Styles"
msgstr "Bultas stili"
-#: cui/uiconfig/ui/linetabpage.ui:648
+#: cui/uiconfig/ui/linetabpage.ui:650
msgctxt "linetabpage|FT_EDGE_STYLE"
msgid "_Corner style:"
msgstr "_Stūru stili:"
-#: cui/uiconfig/ui/linetabpage.ui:662
+#: cui/uiconfig/ui/linetabpage.ui:664
msgctxt "linetabpage|FT_CAP_STYLE"
msgid "Ca_p style:"
msgstr "Uz_gaļa stils:"
-#: cui/uiconfig/ui/linetabpage.ui:677
+#: cui/uiconfig/ui/linetabpage.ui:679
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Rounded"
msgstr "Noapaļots"
-#: cui/uiconfig/ui/linetabpage.ui:678
+#: cui/uiconfig/ui/linetabpage.ui:680
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "- none -"
msgstr "- nav -"
-#: cui/uiconfig/ui/linetabpage.ui:679
+#: cui/uiconfig/ui/linetabpage.ui:681
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Mitered"
msgstr "Spics"
-#: cui/uiconfig/ui/linetabpage.ui:680
+#: cui/uiconfig/ui/linetabpage.ui:682
msgctxt "linetabpage|liststoreEDGE_STYLE"
msgid "Beveled"
msgstr "Nošķelts"
-#: cui/uiconfig/ui/linetabpage.ui:693
+#: cui/uiconfig/ui/linetabpage.ui:695
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Flat"
msgstr "Plakans"
-#: cui/uiconfig/ui/linetabpage.ui:694
+#: cui/uiconfig/ui/linetabpage.ui:696
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Round"
msgstr "Apaļš"
-#: cui/uiconfig/ui/linetabpage.ui:695
+#: cui/uiconfig/ui/linetabpage.ui:697
msgctxt "linetabpage|liststoreCAP_STYLE"
msgid "Square"
msgstr "Kvadrāts"
-#: cui/uiconfig/ui/linetabpage.ui:711
+#: cui/uiconfig/ui/linetabpage.ui:713
msgctxt "linetabpage|label3"
msgid "Corner and Cap Styles"
msgstr "Stūru un uzgaļu stili"
-#: cui/uiconfig/ui/linetabpage.ui:744
+#: cui/uiconfig/ui/linetabpage.ui:746
msgctxt "linetabpage|MB_SYMBOL_BITMAP"
msgid "Select..."
msgstr "Izvēlēties..."
-#: cui/uiconfig/ui/linetabpage.ui:770
+#: cui/uiconfig/ui/linetabpage.ui:773
msgctxt "linetabpage|FT_SYMBOL_WIDTH"
msgid "Widt_h:"
msgstr "Platu_ms:"
-#: cui/uiconfig/ui/linetabpage.ui:794
+#: cui/uiconfig/ui/linetabpage.ui:797
msgctxt "linetabpage|CB_SYMBOL_RATIO"
msgid "_Keep ratio"
msgstr "_Saglabāt samēru"
-#: cui/uiconfig/ui/linetabpage.ui:812
+#: cui/uiconfig/ui/linetabpage.ui:815
msgctxt "linetabpage|FT_SYMBOL_HEIGHT"
msgid "Hei_ght:"
msgstr "Au_gstums:"
-#: cui/uiconfig/ui/linetabpage.ui:849
+#: cui/uiconfig/ui/linetabpage.ui:852
msgctxt "linetabpage|label4"
msgid "Icon"
msgstr "Ikona"
-#: cui/uiconfig/ui/linetabpage.ui:901
+#: cui/uiconfig/ui/linetabpage.ui:904
msgctxt "linetabpage|CTL_PREVIEW-atkobject"
msgid "Example"
msgstr "Piemērs"
@@ -6586,256 +8108,261 @@ msgctxt "macroassigndialog|MacroAssignDialog"
msgid "Assign Action"
msgstr "Piesaistīt darbību"
-#: cui/uiconfig/ui/macroassignpage.ui:57
+#: cui/uiconfig/ui/macroassignpage.ui:64
msgctxt "macroassignpage|eventft"
msgid "Event"
msgstr "Notikums"
-#: cui/uiconfig/ui/macroassignpage.ui:70
+#: cui/uiconfig/ui/macroassignpage.ui:88
msgctxt "macroassignpage|assignft"
msgid "Assigned Action"
msgstr "Piesaistītā darbība"
-#: cui/uiconfig/ui/macroassignpage.ui:95
+#: cui/uiconfig/ui/macroassignpage.ui:107
msgctxt "macroassignpage|libraryft1"
msgid "Assignments"
msgstr "Piesaistījumi"
-#: cui/uiconfig/ui/macroassignpage.ui:130
+#: cui/uiconfig/ui/macroassignpage.ui:140
msgctxt "macroassignpage|assign"
msgid "M_acro..."
msgstr "M_akros..."
-#: cui/uiconfig/ui/macroassignpage.ui:144
+#: cui/uiconfig/ui/macroassignpage.ui:154
msgctxt "macroassignpage|component"
msgid "Com_ponent..."
msgstr "Kom_ponente..."
-#: cui/uiconfig/ui/macroassignpage.ui:158
+#: cui/uiconfig/ui/macroassignpage.ui:168
msgctxt "macroassignpage|delete"
msgid "Remove"
msgstr "Izņemt"
-#: cui/uiconfig/ui/macroassignpage.ui:216
+#: cui/uiconfig/ui/macroassignpage.ui:188
msgctxt "macroassignpage|label1"
msgid "Assign"
msgstr "Piesaistīt"
-#: cui/uiconfig/ui/macroselectordialog.ui:8
+#: cui/uiconfig/ui/macroselectordialog.ui:26
msgctxt "macroselectordialog|MacroSelectorDialog"
msgid "Macro Selector"
-msgstr "Makro selektors"
+msgstr "Makrokomandas selektors"
-#: cui/uiconfig/ui/macroselectordialog.ui:37
+#: cui/uiconfig/ui/macroselectordialog.ui:45
msgctxt "macroselectordialog|add"
msgid "Add"
msgstr "Pievienot"
-#: cui/uiconfig/ui/macroselectordialog.ui:114
+#: 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 "Izvēlieties bibliotēku, kas satur vajadzīgo makro. Tad izvēlieties makro zem 'Makro nosaukums'."
+msgstr "Izvēlieties bibliotēku, kas satur vajadzīgo makrokomandu. Tad izvēlieties makrokomandu zem 'Makrokomandas nosaukums'."
-#: cui/uiconfig/ui/macroselectordialog.ui:130
+#: 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 "Lai pievienotu komandu rīkjoslai, izvēlieties kategoriju un tad komandu. Tad pārvelciet komandu uz komandu sarakstu no rīkjoslu cilnes lappuses pielāgošanas dialogā."
-#: cui/uiconfig/ui/macroselectordialog.ui:184
+#: cui/uiconfig/ui/macroselectordialog.ui:240
msgctxt "macroselectordialog|libraryft"
msgid "Library"
msgstr "Bibliotēka"
-#: cui/uiconfig/ui/macroselectordialog.ui:199
+#: cui/uiconfig/ui/macroselectordialog.ui:255
msgctxt "macroselectordialog|categoryft"
msgid "Category"
msgstr "Kategorija"
-#: cui/uiconfig/ui/macroselectordialog.ui:256
+#: cui/uiconfig/ui/macroselectordialog.ui:334
msgctxt "macroselectordialog|macronameft"
msgid "Macro Name"
-msgstr "Makro nosaukums"
+msgstr "Makrokomandas nosaukums"
-#: cui/uiconfig/ui/macroselectordialog.ui:272
+#: cui/uiconfig/ui/macroselectordialog.ui:350
msgctxt "macroselectordialog|commandsft"
msgid "Commands"
msgstr "Komandas"
-#: cui/uiconfig/ui/macroselectordialog.ui:341
+#: cui/uiconfig/ui/macroselectordialog.ui:419
msgctxt "macroselectordialog|label1"
msgid "Description"
msgstr "Apraksts"
-#: cui/uiconfig/ui/menuassignpage.ui:13
+#: cui/uiconfig/ui/menuassignpage.ui:44
+msgctxt "menuassignpage|insertseparator"
+msgid "Insert Separator"
+msgstr "Ievietot atdalītāju"
+
+#: cui/uiconfig/ui/menuassignpage.ui:52
+msgctxt "menuassignpage|insertsubmenu"
+msgid "Insert Submenu"
+msgstr "Ievietot apakšizvēlni"
+
+#: cui/uiconfig/ui/menuassignpage.ui:102 cui/uiconfig/ui/menuassignpage.ui:174
msgctxt "menuassignpage|gear_add"
msgid "_Add..."
msgstr "_Pievienot..."
-#: cui/uiconfig/ui/menuassignpage.ui:21
+#: cui/uiconfig/ui/menuassignpage.ui:110 cui/uiconfig/ui/menuassignpage.ui:182
msgctxt "menuassignpage|gear_delete"
msgid "_Delete"
msgstr "_Dzēst"
-#: cui/uiconfig/ui/menuassignpage.ui:29
+#: cui/uiconfig/ui/menuassignpage.ui:118 cui/uiconfig/ui/menuassignpage.ui:190
msgctxt "menuassignpage|gear_rename"
msgid "_Rename..."
msgstr "Pā_rdēvēt..."
-#: cui/uiconfig/ui/menuassignpage.ui:37
+#: cui/uiconfig/ui/menuassignpage.ui:126 cui/uiconfig/ui/menuassignpage.ui:198
msgctxt "menuassignpage|gear_move"
msgid "_Move..."
msgstr "_Pārvietot..."
-#: cui/uiconfig/ui/menuassignpage.ui:51
+#: cui/uiconfig/ui/menuassignpage.ui:138
+msgctxt "menuassignpage|renameItem"
+msgid "Rename..."
+msgstr "Pārdēvēt..."
+
+#: cui/uiconfig/ui/menuassignpage.ui:146
+msgctxt "menuassignpage|changeIcon"
+msgid "Change Icon..."
+msgstr "Mainīt ikonu..."
+
+#: cui/uiconfig/ui/menuassignpage.ui:154
+msgctxt "menuassignpage|resetIcon"
+msgid "Reset Icon"
+msgstr "Atiestatīt ikonu"
+
+#: cui/uiconfig/ui/menuassignpage.ui:162
+msgctxt "menuassignpage|restoreItem"
+msgid "Restore Default Command"
+msgstr "Atjaunot noklusējuma komandu"
+
+#: cui/uiconfig/ui/menuassignpage.ui:212
msgctxt "menuassignpage|gear_iconAndText"
msgid "_Icon and text"
msgstr "_Ikona un teksts"
-#: cui/uiconfig/ui/menuassignpage.ui:59
+#: cui/uiconfig/ui/menuassignpage.ui:222
msgctxt "menuassignpage|gear_iconOnly"
msgid "Icon _only"
msgstr "Tikai ik_ona"
-#: cui/uiconfig/ui/menuassignpage.ui:67
+#: cui/uiconfig/ui/menuassignpage.ui:232
msgctxt "menuassignpage|gear_textOnly"
msgid "_Text only"
msgstr "_Tikai teksts"
-#: cui/uiconfig/ui/menuassignpage.ui:119
+#: cui/uiconfig/ui/menuassignpage.ui:261
msgctxt "menuassignpage|contentslabel"
msgid "_Search"
msgstr "M_eklēt"
-#: cui/uiconfig/ui/menuassignpage.ui:136
+#: cui/uiconfig/ui/menuassignpage.ui:278
msgctxt "menuassignpage|desc"
msgid "Local help is not installed."
msgstr "Lokālā palīdzība nav instalēta."
-#: cui/uiconfig/ui/menuassignpage.ui:157
+#: cui/uiconfig/ui/menuassignpage.ui:300
msgctxt "menuassignpage|label33"
msgid "D_escription"
msgstr "_Apraksts"
-#: cui/uiconfig/ui/menuassignpage.ui:191
+#: cui/uiconfig/ui/menuassignpage.ui:366
msgctxt "menuassignpage|contentslabel"
msgid "_Function"
msgstr "_Funkcija"
-#: cui/uiconfig/ui/menuassignpage.ui:217
+#: cui/uiconfig/ui/menuassignpage.ui:392
msgctxt "menuassignpage|contentslabel"
msgid "Categor_y"
msgstr "Kategori_ja"
-#: cui/uiconfig/ui/menuassignpage.ui:230
+#: cui/uiconfig/ui/menuassignpage.ui:406
msgctxt "menuassignpage|searchEntry"
msgid "Type to search"
msgstr "Rakstiet, lai meklētu"
-#: cui/uiconfig/ui/menuassignpage.ui:257
+#: cui/uiconfig/ui/menuassignpage.ui:433
msgctxt "menuassignpage|functionbtn"
msgid "_Function"
msgstr "_Funkcija"
-#: cui/uiconfig/ui/menuassignpage.ui:302
+#: cui/uiconfig/ui/menuassignpage.ui:480 cui/uiconfig/ui/menuassignpage.ui:502
msgctxt "menuassignpage|gearbtn"
msgid "Gear Menu"
msgstr "Zobrata izvēlne"
-#: cui/uiconfig/ui/menuassignpage.ui:303
-msgctxt "menuassignpage|gearbtn"
-msgid "Contains commands to modify or delete the selected toolbar or the top level menu, and the command to add new toolbars or top level menus."
-msgstr "Satur komandas izvēlētās rīkjoslas vai augšējā līmeņa izvēlnes pārveidošanai vai dzēšanai un komandu jaunu rīkjoslu vai augšējā līmeņa izvēļņu pievienošanai."
+#: cui/uiconfig/ui/menuassignpage.ui:481
+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 "Satur komandas izvēlētās augšējā līmeņa izvēlnes pārveidošanai vai dzēšanai un komandu jaunu augšējā līmeņa izvēļņu pievienošanai."
-#: cui/uiconfig/ui/menuassignpage.ui:370
+#: cui/uiconfig/ui/menuassignpage.ui:503
+msgctxt "menuassignpage|toolbargearbtn"
+msgid "Contains commands to modify or delete the selected toolbar, and the command to add new toolbars."
+msgstr "Satur komandas izvēlētās rīkjoslas pārveidošanai vai dzēšanai un komandu jaunu rīkjoslu pievienošanai."
+
+#: cui/uiconfig/ui/menuassignpage.ui:673
msgctxt "menuassignpage|insert"
msgid "_Insert"
msgstr "_Ievietot"
-#: cui/uiconfig/ui/menuassignpage.ui:388
+#: cui/uiconfig/ui/menuassignpage.ui:697
msgctxt "menuassignpage|modify"
msgid "_Modify"
msgstr "_Modificēt"
-#: cui/uiconfig/ui/menuassignpage.ui:406
+#: cui/uiconfig/ui/menuassignpage.ui:721
msgctxt "menuassignpage|defaultsbtn"
msgid "_Defaults"
msgstr "_Noklusējumi"
-#: cui/uiconfig/ui/menuassignpage.ui:417
+#: cui/uiconfig/ui/menuassignpage.ui:732
msgctxt "menuassignpage|defaultsbtn"
msgid "Resets the selected toolbar, menu, or context menu to its default state."
msgstr "Atiestata izvēlēto rīkjoslu, izvēlni vai konteksta izvēlni uz tās noklusējuma stāvokli."
-#: cui/uiconfig/ui/menuassignpage.ui:451
+#: cui/uiconfig/ui/menuassignpage.ui:766
msgctxt "menuassignpage|add"
msgid "Add item"
msgstr "Pievienot vienumu"
-#: cui/uiconfig/ui/menuassignpage.ui:481
+#: cui/uiconfig/ui/menuassignpage.ui:796
msgctxt "menuassignpage|remove"
msgid "Remove item"
msgstr "Noņemt vienumu"
-#: cui/uiconfig/ui/menuassignpage.ui:518
+#: cui/uiconfig/ui/menuassignpage.ui:833
msgctxt "menuassignpage|moveupbtn"
msgid "Move up"
msgstr "Pārvietot augšup"
-#: cui/uiconfig/ui/menuassignpage.ui:531
+#: cui/uiconfig/ui/menuassignpage.ui:846
msgctxt "menuassignpage|movedownbtn"
msgid "Move down"
msgstr "Pārvietot lejup"
-#: cui/uiconfig/ui/menuassignpage.ui:550
+#: cui/uiconfig/ui/menuassignpage.ui:865
msgctxt "menuassignpage|scopelabel"
msgid "S_cope"
msgstr "_Darbības apgabals"
-#: cui/uiconfig/ui/menuassignpage.ui:563
+#: cui/uiconfig/ui/menuassignpage.ui:878
msgctxt "menuassignpage|targetlabel"
msgid "_Target"
msgstr "_Mērķis"
-#: cui/uiconfig/ui/menuassignpage.ui:576
+#: cui/uiconfig/ui/menuassignpage.ui:891
msgctxt "menuassignpage|functionlabel"
msgid "F_unction"
msgstr "F_unkcija"
-#: cui/uiconfig/ui/menuassignpage.ui:589
+#: cui/uiconfig/ui/menuassignpage.ui:904
msgctxt "menuassignpage|customizelabel"
msgid "_Customize"
msgstr "_Pielāgot"
-#: cui/uiconfig/ui/menuassignpage.ui:671
-msgctxt "menuassignpage|insertseparator"
-msgid "Insert Separator"
-msgstr "Ievietot atdalītāju"
-
-#: cui/uiconfig/ui/menuassignpage.ui:679
-msgctxt "menuassignpage|insertsubmenu"
-msgid "Insert Submenu"
-msgstr "Ievietot apakšizvēlni"
-
-#: cui/uiconfig/ui/menuassignpage.ui:691
-msgctxt "menuassignpage|renameItem"
-msgid "Rename..."
-msgstr "Pārdēvēt..."
-
-#: cui/uiconfig/ui/menuassignpage.ui:699
-msgctxt "menuassignpage|changeIcon"
-msgid "Change Icon..."
-msgstr "Mainīt ikonu..."
-
-#: cui/uiconfig/ui/menuassignpage.ui:707
-msgctxt "menuassignpage|resetIcon"
-msgid "Reset Icon"
-msgstr "Atiestatīt ikonu"
-
-#: cui/uiconfig/ui/menuassignpage.ui:715
-msgctxt "menuassignpage|restoreItem"
-msgid "Restore Default Command"
-msgstr "Atjaunot noklusējuma komandu"
-
#: cui/uiconfig/ui/mosaicdialog.ui:21
msgctxt "mosaicdialog|MosaicDialog"
msgid "Mosaic"
@@ -6881,32 +8408,32 @@ msgctxt "movemenu|label1"
msgid "Menu _position:"
msgstr "Izvēlnes _novietojums:"
-#: cui/uiconfig/ui/movemenu.ui:227
+#: cui/uiconfig/ui/movemenu.ui:228
msgctxt "movemenu|up-atkobject"
msgid "Up"
msgstr "Augšup"
-#: cui/uiconfig/ui/movemenu.ui:246
+#: cui/uiconfig/ui/movemenu.ui:247
msgctxt "movemenu|down-atkobject"
msgid "Down"
msgstr "Lejup"
-#: cui/uiconfig/ui/multipathdialog.ui:9
+#: cui/uiconfig/ui/multipathdialog.ui:22
msgctxt "multipathdialog|MultiPathDialog"
msgid "Select Paths"
msgstr "Izvēlēties ceļus"
-#: cui/uiconfig/ui/multipathdialog.ui:107
+#: cui/uiconfig/ui/multipathdialog.ui:123
msgctxt "multipathdialog|add"
msgid "_Add..."
msgstr "_Pievienot..."
-#: cui/uiconfig/ui/multipathdialog.ui:164
+#: cui/uiconfig/ui/multipathdialog.ui:200
msgctxt "multipathdialog|pathlist"
-msgid "Path list:"
-msgstr "Ceļu saraksts:"
+msgid "Path list"
+msgstr "Ceļu saraksts"
-#: cui/uiconfig/ui/multipathdialog.ui:185
+#: cui/uiconfig/ui/multipathdialog.ui:231
msgctxt "multipathdialog|label1"
msgid "Mark the Default Path for New Files"
msgstr "Norādīt noklusējuma ceļu jaunām datnēm"
@@ -6921,27 +8448,27 @@ msgctxt "newlibdialog|NewLibDialog"
msgid "Create Library"
msgstr "Izveidot bibliotēku"
-#: cui/uiconfig/ui/newlibdialog.ui:71
+#: cui/uiconfig/ui/newlibdialog.ui:74
msgctxt "newlibdialog|newlibft"
msgid "Enter the name for the new library."
msgstr "Ievadiet nosaukumu jaunajai bibliotēkai."
-#: cui/uiconfig/ui/newlibdialog.ui:97
+#: cui/uiconfig/ui/newlibdialog.ui:100
msgctxt "newlibdialog|newmacroft"
msgid "Enter the name for the new macro."
-msgstr "Ievadiet nosaukumu jaunajam makro."
+msgstr "Ievadiet nosaukumu jaunajai makrokomandai."
-#: cui/uiconfig/ui/newlibdialog.ui:111
+#: cui/uiconfig/ui/newlibdialog.ui:114
msgctxt "newlibdialog|renameft"
msgid "Enter the new name for the selected object."
msgstr "Ievadiet jaunu nosaukumu izvēlētajam objektam."
-#: cui/uiconfig/ui/newlibdialog.ui:125
+#: cui/uiconfig/ui/newlibdialog.ui:128
msgctxt "newlibdialog|altmacrotitle"
msgid "Create Macro"
msgstr "Izveidot makrokomandu"
-#: cui/uiconfig/ui/newlibdialog.ui:137
+#: cui/uiconfig/ui/newlibdialog.ui:139
msgctxt "newlibdialog|altrenametitle"
msgid "Rename"
msgstr "Pārdēvēt"
@@ -6976,87 +8503,87 @@ msgctxt "newtoolbardialog|label2"
msgid "_Save in:"
msgstr "_Saglabāt mapē:"
-#: cui/uiconfig/ui/numberingformatpage.ui:97
+#: cui/uiconfig/ui/numberingformatpage.ui:98
msgctxt "numberingformatpage|add|tooltip_text"
msgid "Add"
msgstr "Pievienot"
-#: cui/uiconfig/ui/numberingformatpage.ui:112
+#: cui/uiconfig/ui/numberingformatpage.ui:113
msgctxt "numberingformatpage|edit|tooltip_text"
msgid "Edit Comment"
msgstr "Rediģēt komentāru"
-#: cui/uiconfig/ui/numberingformatpage.ui:127
+#: cui/uiconfig/ui/numberingformatpage.ui:128
msgctxt "numberingformatpage|delete|tooltip_text"
msgid "Remove"
msgstr "Izņemt"
-#: cui/uiconfig/ui/numberingformatpage.ui:152
+#: cui/uiconfig/ui/numberingformatpage.ui:153
msgctxt "numberingformatpage|commented|tooltip_text"
msgid "Comment"
msgstr "Komentārs"
-#: cui/uiconfig/ui/numberingformatpage.ui:168
+#: cui/uiconfig/ui/numberingformatpage.ui:169
msgctxt "numberingformatpage|formatf"
msgid "_Format code"
msgstr "_Formatēt kodu"
-#: cui/uiconfig/ui/numberingformatpage.ui:259
+#: cui/uiconfig/ui/numberingformatpage.ui:260
msgctxt "numberingformatpage|denominatorft"
msgid "Den_ominator places:"
msgstr "_Saucēja zīmes:"
-#: cui/uiconfig/ui/numberingformatpage.ui:274
+#: cui/uiconfig/ui/numberingformatpage.ui:275
msgctxt "numberingformatpage|decimalsft"
msgid "_Decimal places:"
msgstr "Cipari aiz ko_mata:"
-#: cui/uiconfig/ui/numberingformatpage.ui:295
+#: cui/uiconfig/ui/numberingformatpage.ui:296
msgctxt "numberingformatpage|leadzerosft"
msgid "Leading _zeroes:"
msgstr "Vadošās _nulles:"
-#: cui/uiconfig/ui/numberingformatpage.ui:307
+#: cui/uiconfig/ui/numberingformatpage.ui:308
msgctxt "numberingformatpage|negnumred"
msgid "_Negative numbers red"
msgstr "_Negatīvie skaitļi sarkani"
-#: cui/uiconfig/ui/numberingformatpage.ui:329
+#: cui/uiconfig/ui/numberingformatpage.ui:330
msgctxt "numberingformatpage|engineering"
msgid "_Engineering notation"
msgstr "Inž_enierijas notācija"
-#: cui/uiconfig/ui/numberingformatpage.ui:344
+#: cui/uiconfig/ui/numberingformatpage.ui:345
msgctxt "numberingformatpage|thousands"
msgid "_Thousands separator"
msgstr "_Tūkstošu atdalītājs"
-#: cui/uiconfig/ui/numberingformatpage.ui:372
+#: cui/uiconfig/ui/numberingformatpage.ui:373
msgctxt "numberingformatpage|optionsft"
msgid "Options"
msgstr "Opcijas"
-#: cui/uiconfig/ui/numberingformatpage.ui:445
+#: cui/uiconfig/ui/numberingformatpage.ui:446
msgctxt "numberingformatpage|categoryft"
msgid "C_ategory"
msgstr "K_ategorija"
-#: cui/uiconfig/ui/numberingformatpage.ui:489
+#: cui/uiconfig/ui/numberingformatpage.ui:490
msgctxt "numberingformatpage|liststore2"
msgid "Automatically"
msgstr "Automātiski"
-#: cui/uiconfig/ui/numberingformatpage.ui:543
+#: cui/uiconfig/ui/numberingformatpage.ui:544
msgctxt "numberingformatpage|formatft"
msgid "Fo_rmat"
msgstr "Fo_rmāts"
-#: cui/uiconfig/ui/numberingformatpage.ui:589
+#: cui/uiconfig/ui/numberingformatpage.ui:590
msgctxt "numberingformatpage|sourceformat"
msgid "So_urce format"
msgstr "A_vota formāts"
-#: cui/uiconfig/ui/numberingformatpage.ui:636
+#: cui/uiconfig/ui/numberingformatpage.ui:637
msgctxt "numberingformatpage|languageft"
msgid "_Language"
msgstr "Va_loda"
@@ -7161,62 +8688,62 @@ msgctxt "numberingoptionspage|bitmap"
msgid "Select..."
msgstr "Izvēlieties..."
-#: cui/uiconfig/ui/numberingoptionspage.ui:405
+#: cui/uiconfig/ui/numberingoptionspage.ui:408
msgctxt "numberingoptionspage|bullet"
msgid "Select..."
msgstr "Izvēlēties..."
-#: cui/uiconfig/ui/numberingoptionspage.ui:424
+#: cui/uiconfig/ui/numberingoptionspage.ui:427
msgctxt "numberingoptionspage|prefixft"
msgid "Before:"
msgstr "Pirms:"
-#: cui/uiconfig/ui/numberingoptionspage.ui:445
+#: cui/uiconfig/ui/numberingoptionspage.ui:448
msgctxt "numberingoptionspage|separator"
msgid "Separator"
msgstr "Atdalītājs"
-#: cui/uiconfig/ui/numberingoptionspage.ui:481
+#: cui/uiconfig/ui/numberingoptionspage.ui:484
msgctxt "numberingoptionspage|suffixft"
msgid "After:"
msgstr "Pēc:"
-#: cui/uiconfig/ui/numberingoptionspage.ui:495
+#: cui/uiconfig/ui/numberingoptionspage.ui:498
msgctxt "numberingoptionspage|sublevelsft"
msgid "Show sublevels:"
msgstr "Rādīt apakšlīmeņus:"
-#: cui/uiconfig/ui/numberingoptionspage.ui:510
+#: cui/uiconfig/ui/numberingoptionspage.ui:513
msgctxt "numberingoptionspage|bulletft"
msgid "Character:"
msgstr "Rakstzīme:"
-#: cui/uiconfig/ui/numberingoptionspage.ui:524
+#: cui/uiconfig/ui/numberingoptionspage.ui:527
msgctxt "numberingoptionspage|relsizeft"
msgid "_Relative size:"
msgstr "_Relatīvs izmērs:"
-#: cui/uiconfig/ui/numberingoptionspage.ui:538
+#: cui/uiconfig/ui/numberingoptionspage.ui:541
msgctxt "numberingoptionspage|colorft"
msgid "Color:"
msgstr "Krāsa:"
-#: cui/uiconfig/ui/numberingoptionspage.ui:552
+#: cui/uiconfig/ui/numberingoptionspage.ui:555
msgctxt "numberingoptionspage|charstyleft"
msgid "Character style:"
msgstr "Rakstzīmes stils:"
-#: cui/uiconfig/ui/numberingoptionspage.ui:617
+#: cui/uiconfig/ui/numberingoptionspage.ui:620
msgctxt "numberingoptionspage|label2"
msgid "Numbering"
msgstr "Numurēšana"
-#: cui/uiconfig/ui/numberingoptionspage.ui:644
+#: cui/uiconfig/ui/numberingoptionspage.ui:647
msgctxt "numberingoptionspage|allsame"
msgid "_Consecutive numbering"
msgstr "Se_cīga numurēšana"
-#: cui/uiconfig/ui/numberingoptionspage.ui:660
+#: cui/uiconfig/ui/numberingoptionspage.ui:663
msgctxt "numberingoptionspage|label3"
msgid "All Levels"
msgstr "Visi līmeņi"
@@ -7358,12 +8885,12 @@ msgstr "Izmantot te_ksta izvēlēšanās kursoru teksta dokumentos, kuri ir las
#: cui/uiconfig/ui/optaccessibilitypage.ui:63
msgctxt "optaccessibilitypage|animatedgraphics"
msgid "Allow animated _images"
-msgstr "Atļaut kustīgus _attēlus"
+msgstr "Atļaut animētus _attēlus"
#: cui/uiconfig/ui/optaccessibilitypage.ui:79
msgctxt "optaccessibilitypage|animatedtext"
msgid "Allow animated _text"
-msgstr "Atļaut kustīgu _tekstu"
+msgstr "Atļaut animētu _tekstu"
#: cui/uiconfig/ui/optaccessibilitypage.ui:101
msgctxt "optaccessibilitypage|label1"
@@ -7458,7 +8985,7 @@ msgstr "Ieslēgt eksperimentālās iespējas (var būt nestabils)"
#: cui/uiconfig/ui/optadvancedpage.ui:330
msgctxt "optadvancedpage|macrorecording"
msgid "Enable macro recording (may be limited)"
-msgstr "Ieslēgt makro ierakstīšanu (var būt ierobežots)"
+msgstr "Ieslēgt makrokomandu ierakstīšanu (var būt ierobežota)"
#: cui/uiconfig/ui/optadvancedpage.ui:345
msgctxt "optadvancedpage|expertconfig"
@@ -7610,17 +9137,17 @@ msgctxt "optbasicidepage|label3"
msgid "Language Features"
msgstr "Valodas iespējas"
-#: cui/uiconfig/ui/optchartcolorspage.ui:43
+#: cui/uiconfig/ui/optchartcolorspage.ui:47
msgctxt "optchartcolorspage|label20"
msgid "Chart Colors"
msgstr "Diagrammas krāsas"
-#: cui/uiconfig/ui/optchartcolorspage.ui:129
+#: cui/uiconfig/ui/optchartcolorspage.ui:119
msgctxt "optchartcolorspage|default"
msgid "_Default"
msgstr "_Noklusējuma"
-#: cui/uiconfig/ui/optchartcolorspage.ui:157
+#: cui/uiconfig/ui/optchartcolorspage.ui:171
msgctxt "optchartcolorspage|label1"
msgid "Color Table"
msgstr "Krāsu tabula"
@@ -7697,7 +9224,7 @@ msgstr "Vispārīgas opcijas"
#: cui/uiconfig/ui/optemailpage.ui:26
msgctxt "optemailpage|label2"
-msgid "_E-mail program:"
+msgid "_Email program:"
msgstr "_E-pasta programma:"
#: cui/uiconfig/ui/optemailpage.ui:54
@@ -7717,8 +9244,8 @@ msgstr "Novērst dokumentu slēptos elementus"
#: cui/uiconfig/ui/optemailpage.ui:167
msgctxt "optemailpage|label1"
-msgid "Sending Documents as E-mail Attachments"
-msgstr "Sūtot dokumentus kā e-pasta pielikumus"
+msgid "Sending Documents as Email Attachments"
+msgstr "Dokumentu kā e-pasta ziņojumu pielikumu sūtīšana"
#: cui/uiconfig/ui/optfltrembedpage.ui:52
msgctxt "optfltrembedpage|label2"
@@ -7730,31 +9257,41 @@ msgctxt "optfltrembedpage|label3"
msgid "[S]: Convert and save the object"
msgstr "[S]: Pārveidot un saglabāt objektu"
-#: cui/uiconfig/ui/optfltrembedpage.ui:81
+#: cui/uiconfig/ui/optfltrembedpage.ui:82
msgctxt "optfltrembedpage|label1"
msgid "Embedded Objects"
msgstr "Iegultie objekti"
-#: cui/uiconfig/ui/optfltrembedpage.ui:116
+#: cui/uiconfig/ui/optfltrembedpage.ui:115
msgctxt "optfltrembedpage|label5"
msgid "Export as:"
msgstr "Eksportēt kā:"
-#: cui/uiconfig/ui/optfltrembedpage.ui:131
+#: cui/uiconfig/ui/optfltrembedpage.ui:130
msgctxt "optfltrembedpage|highlighting"
msgid "Highlighting"
msgstr "Izcelšana"
-#: cui/uiconfig/ui/optfltrembedpage.ui:148
+#: cui/uiconfig/ui/optfltrembedpage.ui:147
msgctxt "optfltrembedpage|shading"
msgid "Shading"
msgstr "Ēnojums"
-#: cui/uiconfig/ui/optfltrembedpage.ui:177
+#: cui/uiconfig/ui/optfltrembedpage.ui:176
msgctxt "optfltrembedpage|label4"
msgid "Character Highlighting"
msgstr "Simbolu izcelšana"
+#: cui/uiconfig/ui/optfltrembedpage.ui:207
+msgctxt "optfltrembedpage|mso_lockfile"
+msgid "Create MSO lock file"
+msgstr "Izveidot MSO noslēgšanas datni"
+
+#: cui/uiconfig/ui/optfltrembedpage.ui:230
+msgctxt "optfltrembedpage|label5"
+msgid "Lock files"
+msgstr "Noslēgšanas datnes"
+
#: cui/uiconfig/ui/optfltrpage.ui:29
msgctxt "optfltrpage|wo_basic"
msgid "Load Basic _code"
@@ -7885,77 +9422,82 @@ msgctxt "optgeneralpage|popupnohelp"
msgid "Show \"No offline help installed\" popup"
msgstr "Rādīt izlecošo logu \"Neviena lokālā palīdzība nav instalēta\""
-#: cui/uiconfig/ui/optgeneralpage.ui:70
+#: cui/uiconfig/ui/optgeneralpage.ui:64
+msgctxt "optgeneralpage|TipOfTheDayCheckbox"
+msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgstr ""
+
+#: cui/uiconfig/ui/optgeneralpage.ui:84
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Palīdzība"
-#: cui/uiconfig/ui/optgeneralpage.ui:100
+#: cui/uiconfig/ui/optgeneralpage.ui:114
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Lietot %PRODUCTNAME dialogus"
-#: cui/uiconfig/ui/optgeneralpage.ui:134
+#: cui/uiconfig/ui/optgeneralpage.ui:148
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Atvērt/saglabāt dialogi"
-#: cui/uiconfig/ui/optgeneralpage.ui:160
+#: cui/uiconfig/ui/optgeneralpage.ui:174
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Lietot %PRODUCTNAME _dialogus"
-#: cui/uiconfig/ui/optgeneralpage.ui:175
+#: cui/uiconfig/ui/optgeneralpage.ui:189
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Drukāšanas dialogi"
-#: cui/uiconfig/ui/optgeneralpage.ui:201
+#: cui/uiconfig/ui/optgeneralpage.ui:215
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Drukāšana iestata \"dokuments modificēts\" statusu"
-#: cui/uiconfig/ui/optgeneralpage.ui:216
+#: cui/uiconfig/ui/optgeneralpage.ui:230
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumenta statuss"
-#: cui/uiconfig/ui/optgeneralpage.ui:249
+#: cui/uiconfig/ui/optgeneralpage.ui:263
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretēt kā gadus starp "
-#: cui/uiconfig/ui/optgeneralpage.ui:274
+#: cui/uiconfig/ui/optgeneralpage.ui:289
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "un "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:304
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Gads (divciparu)"
-#: cui/uiconfig/ui/optgeneralpage.ui:315
+#: cui/uiconfig/ui/optgeneralpage.ui:330
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Ievākt informāciju par izmantošanu un nosūtīt to uz The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:345
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Palīdzi uzlabot %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:361
+#: cui/uiconfig/ui/optgeneralpage.ui:376
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Ielādēt %PRODUCTNAME pie sistēmas startēšanas"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:391
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Ieslēgt sistēmas ikonu joslā Quickstarter"
-#: cui/uiconfig/ui/optgeneralpage.ui:397
+#: cui/uiconfig/ui/optgeneralpage.ui:412
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Quickstarter"
@@ -8088,7 +9630,7 @@ msgstr "“atkārtotas _rakstzīmes” iezīme"
#: cui/uiconfig/ui/optjsearchpage.ui:135
msgctxt "optjsearchpage|matchvariantformkanji"
msgid "_variant-form kanji (itaiji)"
-msgstr "_kanji varianta forma (itaiji)"
+msgstr "kanji _varianta forma (itaiji)"
#: cui/uiconfig/ui/optjsearchpage.ui:152
msgctxt "optjsearchpage|matcholdkanaforms"
@@ -8230,67 +9772,67 @@ msgctxt "optlanguagespage|label3"
msgid "Enhanced Language Support"
msgstr "Paplašinātais valodas atbalsts"
-#: cui/uiconfig/ui/optlingupage.ui:47
+#: cui/uiconfig/ui/optlingupage.ui:90
msgctxt "optlingupage|lingumodulesft"
msgid "_Available language modules:"
msgstr "Pieejamie v_alodas moduļi:"
-#: cui/uiconfig/ui/optlingupage.ui:74
+#: cui/uiconfig/ui/optlingupage.ui:157
msgctxt "optlingupage|lingumodulesedit"
msgid "_Edit..."
msgstr "R_ediģēt..."
-#: cui/uiconfig/ui/optlingupage.ui:82
+#: cui/uiconfig/ui/optlingupage.ui:165
msgctxt "optlingupage|lingumodulesedit-atkobject"
msgid "Edit Available language modules"
msgstr "Rediģēt pieejamos valodas moduļus"
-#: cui/uiconfig/ui/optlingupage.ui:112
+#: cui/uiconfig/ui/optlingupage.ui:195
msgctxt "optlingupage|lingudictsft"
msgid "_User-defined dictionaries:"
msgstr "_Lietotāja definētās vārdnīcas:"
-#: cui/uiconfig/ui/optlingupage.ui:146
+#: cui/uiconfig/ui/optlingupage.ui:269
msgctxt "optlingupage|lingudictsnew"
msgid "_New..."
msgstr "Jau_ns..."
-#: cui/uiconfig/ui/optlingupage.ui:160
+#: cui/uiconfig/ui/optlingupage.ui:283
msgctxt "optlingupage|lingudictsedit"
msgid "Ed_it..."
msgstr "Red_iģēt..."
-#: cui/uiconfig/ui/optlingupage.ui:167
+#: cui/uiconfig/ui/optlingupage.ui:290
msgctxt "optlingupage|lingudictsedit-atkobject"
msgid "Edit User-defined dictionaries"
msgstr "Rediģēt lietotāja definētas vārdnīcas"
-#: cui/uiconfig/ui/optlingupage.ui:179
+#: cui/uiconfig/ui/optlingupage.ui:302
msgctxt "optlingupage|lingudictsdelete"
msgid "_Delete"
msgstr "_Dzēst"
-#: cui/uiconfig/ui/optlingupage.ui:218
+#: cui/uiconfig/ui/optlingupage.ui:341
msgctxt "optlingupage|label4"
msgid "_Options:"
msgstr "_Opcijas:"
-#: cui/uiconfig/ui/optlingupage.ui:230
+#: cui/uiconfig/ui/optlingupage.ui:353
msgctxt "optlingupage|moredictslink"
msgid "Get more dictionaries online..."
msgstr "Iegūt vairāk vārdnīcu tiešsaistē..."
-#: cui/uiconfig/ui/optlingupage.ui:262
+#: cui/uiconfig/ui/optlingupage.ui:425
msgctxt "optlingupage|linguoptionsedit"
msgid "Edi_t..."
msgstr "Rediģē_t..."
-#: cui/uiconfig/ui/optlingupage.ui:270
+#: cui/uiconfig/ui/optlingupage.ui:433
msgctxt "optlingupage|linguoptionsedit-atkobject"
msgid "Edit Options"
msgstr "Rediģēt opcijas"
-#: cui/uiconfig/ui/optlingupage.ui:296
+#: cui/uiconfig/ui/optlingupage.ui:459
msgctxt "optlingupage|label1"
msgid "Writing Aids"
msgstr "Rakstīšanas palīdzība"
@@ -8684,17 +10226,17 @@ msgstr "Sertifikāta ceļš"
#: cui/uiconfig/ui/optsecuritypage.ui:186
msgctxt "optsecuritypage|label5"
msgid "Adjust the security level for executing macros and specify trusted macro developers."
-msgstr "Pielāgot drošības līmeni makrokomandu izpildei un norādīt uzticamos makro izstrādātājus."
+msgstr "Pielāgot drošības līmeni makrokomandu izpildei un norādīt uzticamos makrokomandu izstrādātājus."
#: cui/uiconfig/ui/optsecuritypage.ui:199
msgctxt "optsecuritypage|macro"
msgid "Macro Securit_y..."
-msgstr "Makro drošī_ba..."
+msgstr "Makrokomandu drošī_ba..."
#: cui/uiconfig/ui/optsecuritypage.ui:221
msgctxt "optsecuritypage|label3"
msgid "Macro Security"
-msgstr "Makro drošība"
+msgstr "Makrokomandu drošība"
#: cui/uiconfig/ui/optsecuritypage.ui:263
msgctxt "optsecuritypage|savepassword"
@@ -8752,219 +10294,217 @@ msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr "Drošības opcijas un brīdinājumi"
-#: cui/uiconfig/ui/optuserpage.ui:12
-msgctxt "optuserpage|liststore1"
-msgid "No key"
-msgstr "Nav taustiņa"
-
-#: cui/uiconfig/ui/optuserpage.ui:45
+#: cui/uiconfig/ui/optuserpage.ui:34
msgctxt "optuserpage|companyft"
msgid "_Company:"
msgstr "_Firma:"
-#: cui/uiconfig/ui/optuserpage.ui:59
+#: cui/uiconfig/ui/optuserpage.ui:48
msgctxt "optuserpage|nameft"
msgid "First/last _name/initials:"
msgstr "Vārds / uzvārds / i_niciāļi:"
-#: cui/uiconfig/ui/optuserpage.ui:73
+#: cui/uiconfig/ui/optuserpage.ui:62
msgctxt "optuserpage|streetft"
msgid "_Street:"
msgstr "_Iela:"
-#: cui/uiconfig/ui/optuserpage.ui:87
+#: cui/uiconfig/ui/optuserpage.ui:76
msgctxt "optuserpage|cityft"
msgid "City/state/_zip:"
msgstr "Pilsēta/valsts/pasta indekss:"
-#: cui/uiconfig/ui/optuserpage.ui:101
+#: cui/uiconfig/ui/optuserpage.ui:90
msgctxt "optuserpage|countryft"
msgid "Country/re_gion:"
msgstr "Va_lsts/reģions:"
-#: cui/uiconfig/ui/optuserpage.ui:115
+#: cui/uiconfig/ui/optuserpage.ui:104
msgctxt "optuserpage|titleft"
msgid "_Title/position:"
msgstr "_Tituls/amats:"
-#: cui/uiconfig/ui/optuserpage.ui:129
+#: cui/uiconfig/ui/optuserpage.ui:118
msgctxt "optuserpage|phoneft"
msgid "Telephone (home/_work):"
msgstr "Tālrunis (mājas/darba)"
-#: cui/uiconfig/ui/optuserpage.ui:134
+#: cui/uiconfig/ui/optuserpage.ui:123
msgctxt "phoneft-atkobject"
msgid "Home telephone number"
msgstr "Mājas tālruņa numurs"
-#: cui/uiconfig/ui/optuserpage.ui:148
+#: cui/uiconfig/ui/optuserpage.ui:137
msgctxt "optuserpage|faxft"
-msgid "Fa_x/e-mail:"
-msgstr "Fakss/e-pasts:"
+msgid "Fa_x/email:"
+msgstr "_Fakss/e-pasts:"
-#: cui/uiconfig/ui/optuserpage.ui:170
+#: cui/uiconfig/ui/optuserpage.ui:160
msgctxt "optuserpage|firstname-atkobject"
msgid "First name"
msgstr "Vārds"
-#: cui/uiconfig/ui/optuserpage.ui:187
+#: cui/uiconfig/ui/optuserpage.ui:178
msgctxt "lastname-atkobject"
msgid "Last name"
msgstr "Uzvārds"
-#: cui/uiconfig/ui/optuserpage.ui:204
+#: cui/uiconfig/ui/optuserpage.ui:196
msgctxt "shortname-atkobject"
msgid "Initials"
msgstr "Iniciāļi"
-#: cui/uiconfig/ui/optuserpage.ui:232
+#: cui/uiconfig/ui/optuserpage.ui:225
msgctxt "city-atkobject"
msgid "City"
msgstr "Pilsēta"
-#: cui/uiconfig/ui/optuserpage.ui:249
-#, fuzzy
+#: cui/uiconfig/ui/optuserpage.ui:243
msgctxt "state-atkobject"
msgid "State"
-msgstr "Stāvoklis"
+msgstr "Štats"
-#: cui/uiconfig/ui/optuserpage.ui:266
+#: cui/uiconfig/ui/optuserpage.ui:261
msgctxt "zip-atkobject"
msgid "Zip code"
msgstr "Pasta indekss"
-#: cui/uiconfig/ui/optuserpage.ui:295
+#: cui/uiconfig/ui/optuserpage.ui:291
msgctxt "title-atkobject"
msgid "Title"
msgstr "Virsraksts"
-#: cui/uiconfig/ui/optuserpage.ui:312
-#, fuzzy
+#: cui/uiconfig/ui/optuserpage.ui:309
msgctxt "position-atkobject"
msgid "Position"
-msgstr "Pozīcija"
+msgstr "Amats"
-#: cui/uiconfig/ui/optuserpage.ui:340
+#: cui/uiconfig/ui/optuserpage.ui:338
msgctxt "home-atkobject"
msgid "Home telephone number"
msgstr "Mājas tālruņa numurs"
-#: cui/uiconfig/ui/optuserpage.ui:357
+#: cui/uiconfig/ui/optuserpage.ui:356
msgctxt "work-atkobject"
msgid "Work telephone number"
msgstr "Darba tālruņa numurs"
#: cui/uiconfig/ui/optuserpage.ui:386
msgctxt "fax-atkobject"
-msgid "FAX number"
+msgid "Fax number"
msgstr "Faksa numurs"
-#: cui/uiconfig/ui/optuserpage.ui:403
+#: cui/uiconfig/ui/optuserpage.ui:404
msgctxt "email-atkobject"
msgid "email address"
msgstr "E-pasta adrese"
-#: cui/uiconfig/ui/optuserpage.ui:420
+#: cui/uiconfig/ui/optuserpage.ui:421
msgctxt "optuserpage|usefordocprop"
msgid "Use data for document properties"
msgstr "Izmantot datus dokumenta īpašībās"
-#: cui/uiconfig/ui/optuserpage.ui:438
+#: cui/uiconfig/ui/optuserpage.ui:439
msgctxt "optuserpage|rusnameft"
msgid "Last name/first _name/father’s name/initials:"
msgstr "Uzvārds/_vārds/tēva vārds/iniciāļi:"
-#: cui/uiconfig/ui/optuserpage.ui:460
+#: cui/uiconfig/ui/optuserpage.ui:462
msgctxt "ruslastname-atkobject"
msgid "Last name"
msgstr "Uzvārds"
-#: cui/uiconfig/ui/optuserpage.ui:477
+#: cui/uiconfig/ui/optuserpage.ui:480
msgctxt "rusfathersname-atkobject"
msgid "Father's name"
msgstr "Tēva vārds"
-#: cui/uiconfig/ui/optuserpage.ui:494
+#: cui/uiconfig/ui/optuserpage.ui:498
msgctxt "russhortname-atkobject"
msgid "Initials"
msgstr "Iniciāļi"
-#: cui/uiconfig/ui/optuserpage.ui:511
+#: cui/uiconfig/ui/optuserpage.ui:516
msgctxt "rusfirstname-atkobject"
msgid "First name"
msgstr "Vārds"
-#: cui/uiconfig/ui/optuserpage.ui:531
+#: cui/uiconfig/ui/optuserpage.ui:536
msgctxt "optuserpage|eastnameft"
msgid "Last/first _name/initials:"
msgstr "Uzvārds/vārds/i_niciāļi:"
-#: cui/uiconfig/ui/optuserpage.ui:553
+#: cui/uiconfig/ui/optuserpage.ui:559
msgctxt "eastlastname-atkobject"
msgid "Last name"
msgstr "Uzvārds"
-#: cui/uiconfig/ui/optuserpage.ui:570
+#: cui/uiconfig/ui/optuserpage.ui:577
msgctxt "eastfirstname-atkobject"
msgid "First name"
msgstr "Vārds"
-#: cui/uiconfig/ui/optuserpage.ui:587
+#: cui/uiconfig/ui/optuserpage.ui:595
msgctxt "eastshortname-atkobject"
msgid "Initials"
msgstr "Iniciāļi"
-#: cui/uiconfig/ui/optuserpage.ui:607
+#: cui/uiconfig/ui/optuserpage.ui:615
msgctxt "optuserpage|russtreetft"
msgid "_Street/apartment number:"
msgstr "Iela/dzīvokļa numur_s:"
-#: cui/uiconfig/ui/optuserpage.ui:629
+#: cui/uiconfig/ui/optuserpage.ui:638
msgctxt "russtreet-atkobject"
msgid "Street"
msgstr "Iela"
-#: cui/uiconfig/ui/optuserpage.ui:646
+#: cui/uiconfig/ui/optuserpage.ui:656
msgctxt "ruslastname-atkobject"
msgid "Apartment number"
msgstr "Dzīvokļa numurs"
-#: cui/uiconfig/ui/optuserpage.ui:666
+#: cui/uiconfig/ui/optuserpage.ui:676
msgctxt "optuserpage|icityft"
msgid "_Zip/city:"
msgstr "Pasta indekss/pilsēta:"
-#: cui/uiconfig/ui/optuserpage.ui:688
+#: cui/uiconfig/ui/optuserpage.ui:699
msgctxt "icity-atkobject"
msgid "City"
msgstr "Pilsēta"
-#: cui/uiconfig/ui/optuserpage.ui:705
+#: cui/uiconfig/ui/optuserpage.ui:717
msgctxt "izip-atkobject"
msgid "Zip code"
msgstr "Pasta indekss"
-#: cui/uiconfig/ui/optuserpage.ui:800
+#: cui/uiconfig/ui/optuserpage.ui:815
msgctxt "optuserpage|label1"
msgid "Address"
msgstr "Adrese"
-#: cui/uiconfig/ui/optuserpage.ui:836
+#: cui/uiconfig/ui/optuserpage.ui:851
msgctxt "optuserpage|signingkeylabel"
msgid "OpenPGP signing key:"
msgstr "OpenPGP parakstīšanas atslēga:"
-#: cui/uiconfig/ui/optuserpage.ui:850
+#: cui/uiconfig/ui/optuserpage.ui:865
msgctxt "optuserpage|encryptionkeylabel"
msgid "OpenPGP encryption key:"
msgstr "OpenPGP šifrēšanas atslēga:"
-#: cui/uiconfig/ui/optuserpage.ui:885
+#: cui/uiconfig/ui/optuserpage.ui:880 cui/uiconfig/ui/optuserpage.ui:894
+msgctxt "optuserpage|liststore1"
+msgid "No key"
+msgstr "Nav taustiņa"
+
+#: cui/uiconfig/ui/optuserpage.ui:904
msgctxt "optuserpage|encrypttoself"
msgid "When encrypting documents, always encrypt to self"
msgstr "Kad šifrē dokumentus, vienmēr šifrēt sev"
-#: cui/uiconfig/ui/optuserpage.ui:909
+#: cui/uiconfig/ui/optuserpage.ui:928
msgctxt "optuserpage|cryptographylabel"
msgid "Cryptography"
msgstr "Kriptogrāfija"
@@ -9132,7 +10672,7 @@ msgstr "Mazs"
#: cui/uiconfig/ui/optviewpage.ui:383
msgctxt "optviewpage|iconsize"
msgid "Extra Large"
-msgstr "Vēl lielāks"
+msgstr "Īpaši liels"
#: cui/uiconfig/ui/optviewpage.ui:396
msgctxt "optviewpage|label6"
@@ -9249,27 +10789,27 @@ msgctxt "pageformatpage|labelWidth"
msgid "_Width:"
msgstr "_Platums:"
-#: cui/uiconfig/ui/pageformatpage.ui:95
+#: cui/uiconfig/ui/pageformatpage.ui:94
msgctxt "pageformatpage|labelHeight"
msgid "_Height:"
msgstr "_Augstums:"
-#: cui/uiconfig/ui/pageformatpage.ui:121
+#: cui/uiconfig/ui/pageformatpage.ui:120
msgctxt "pageformatpage|labelOrientation"
msgid "_Orientation:"
msgstr "_Orientācija:"
-#: cui/uiconfig/ui/pageformatpage.ui:133
+#: cui/uiconfig/ui/pageformatpage.ui:132
msgctxt "pageformatpage|radiobuttonPortrait"
msgid "_Portrait"
msgstr "_Portrets"
-#: cui/uiconfig/ui/pageformatpage.ui:153
+#: cui/uiconfig/ui/pageformatpage.ui:152
msgctxt "pageformatpage|radiobuttonLandscape"
msgid "L_andscape"
msgstr "_Ainava"
-#: cui/uiconfig/ui/pageformatpage.ui:176
+#: cui/uiconfig/ui/pageformatpage.ui:175
msgctxt "pageformatpage|labelTextFlow"
msgid "_Text direction:"
msgstr "_Teksta virziens:"
@@ -9284,35 +10824,35 @@ msgctxt "pageformatpage|labelPaperFormat"
msgid "Paper Format"
msgstr "Papīra formāts"
-#: cui/uiconfig/ui/pageformatpage.ui:316
-msgctxt "pageformatpage|labelTopMargin"
-msgid "Top:"
-msgstr "Augša:"
+#: cui/uiconfig/ui/pageformatpage.ui:321
+msgctxt "pageformatpage|labelLeftMargin"
+msgid "Left:"
+msgstr "Kreisā:"
-#: cui/uiconfig/ui/pageformatpage.ui:330
-msgctxt "pageformatpage|labelBottomMargin"
-msgid "Bottom:"
-msgstr "Apakša:"
+#: cui/uiconfig/ui/pageformatpage.ui:335
+msgctxt "pageformatpage|labelInner"
+msgid "I_nner:"
+msgstr "I_ekšējs:"
-#: cui/uiconfig/ui/pageformatpage.ui:393
+#: cui/uiconfig/ui/pageformatpage.ui:372
msgctxt "pageformatpage|labelRightMargin"
msgid "Right:"
msgstr "Labā:"
-#: cui/uiconfig/ui/pageformatpage.ui:407
+#: cui/uiconfig/ui/pageformatpage.ui:386
msgctxt "pageformatpage|labelOuter"
msgid "O_uter:"
msgstr "Ārē_js:"
-#: cui/uiconfig/ui/pageformatpage.ui:433
-msgctxt "pageformatpage|labelLeftMargin"
-msgid "Left:"
-msgstr "Kreisā:"
+#: cui/uiconfig/ui/pageformatpage.ui:418
+msgctxt "pageformatpage|labelTopMargin"
+msgid "Top:"
+msgstr "Augša:"
-#: cui/uiconfig/ui/pageformatpage.ui:447
-msgctxt "pageformatpage|labelInner"
-msgid "I_nner:"
-msgstr "I_ekšējs:"
+#: cui/uiconfig/ui/pageformatpage.ui:443
+msgctxt "pageformatpage|labelBottomMargin"
+msgid "Bottom:"
+msgstr "Apakša:"
#: cui/uiconfig/ui/pageformatpage.ui:472
msgctxt "pageformatpage|labelMargins"
@@ -9334,51 +10874,51 @@ msgctxt "pageformatpage|checkRegisterTrue"
msgid "Register-tr_ue"
msgstr "Sak_ritenis"
-#: cui/uiconfig/ui/pageformatpage.ui:555
+#: cui/uiconfig/ui/pageformatpage.ui:565
+msgctxt "pageformatpage|labelRegisterStyle"
+msgid "Reference _Style:"
+msgstr "Norādes _stils:"
+
+#: cui/uiconfig/ui/pageformatpage.ui:601
msgctxt "pageformatpage|liststorePageLayout"
msgid "Right and left"
msgstr "Labā un kreisā"
-#: cui/uiconfig/ui/pageformatpage.ui:556
+#: cui/uiconfig/ui/pageformatpage.ui:602
msgctxt "pageformatpage|liststorePageLayout"
msgid "Mirrored"
msgstr "Simetriskas"
-#: cui/uiconfig/ui/pageformatpage.ui:557
+#: cui/uiconfig/ui/pageformatpage.ui:603
msgctxt "pageformatpage|liststorePageLayout"
msgid "Only right"
msgstr "Tikai labā"
-#: cui/uiconfig/ui/pageformatpage.ui:558
+#: cui/uiconfig/ui/pageformatpage.ui:604
msgctxt "pageformatpage|liststorePageLayout"
msgid "Only left"
msgstr "Tikai kreisā"
-#: cui/uiconfig/ui/pageformatpage.ui:581
+#: cui/uiconfig/ui/pageformatpage.ui:627
msgctxt "pageformatpage|labelTblAlign"
msgid "Table alignment:"
msgstr "Tabulas līdzināšana:"
-#: cui/uiconfig/ui/pageformatpage.ui:593
+#: cui/uiconfig/ui/pageformatpage.ui:639
msgctxt "pageformatpage|checkbuttonHorz"
msgid "Hori_zontal"
msgstr "Hori_zontāli"
-#: cui/uiconfig/ui/pageformatpage.ui:608
+#: cui/uiconfig/ui/pageformatpage.ui:654
msgctxt "pageformatpage|checkbuttonVert"
msgid "_Vertical"
msgstr "_Vertikāli"
-#: cui/uiconfig/ui/pageformatpage.ui:623
+#: cui/uiconfig/ui/pageformatpage.ui:669
msgctxt "pageformatpage|checkAdaptBox"
msgid "_Fit object to paper format"
msgstr "Pielāgot objektu papīra _formātam"
-#: cui/uiconfig/ui/pageformatpage.ui:654
-msgctxt "pageformatpage|labelRegisterStyle"
-msgid "Reference _Style:"
-msgstr "Norādes _stils:"
-
#: cui/uiconfig/ui/pageformatpage.ui:696
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
@@ -9620,82 +11160,82 @@ msgctxt "paraindentspacing|label3"
msgid "Register-true"
msgstr "Sakritenis"
-#: cui/uiconfig/ui/paratabspage.ui:126
+#: cui/uiconfig/ui/paratabspage.ui:117
msgctxt "paratabspage|label1"
msgid "Position"
msgstr "Novietojums"
-#: cui/uiconfig/ui/paratabspage.ui:161
+#: cui/uiconfig/ui/paratabspage.ui:152
msgctxt "paratabspage|radiobuttonBTN_TABTYPE_DECIMAL"
msgid "Deci_mal"
msgstr "Deci_mālais"
-#: cui/uiconfig/ui/paratabspage.ui:233
+#: cui/uiconfig/ui/paratabspage.ui:224
msgctxt "paratabspage|radiobuttonBTN_TABTYPE_LEFT"
msgid "_Left"
msgstr "_Kreisais"
-#: cui/uiconfig/ui/paratabspage.ui:249
+#: cui/uiconfig/ui/paratabspage.ui:240
msgctxt "paratabspage|radiobuttonST_LEFTTAB_ASIAN"
msgid "_Left/Top"
msgstr "_Kreisais/augšējais"
-#: cui/uiconfig/ui/paratabspage.ui:276
+#: cui/uiconfig/ui/paratabspage.ui:267
msgctxt "paratabspage|radiobuttonBTN_TABTYPE_RIGHT"
msgid "Righ_t"
msgstr "_Labais"
-#: cui/uiconfig/ui/paratabspage.ui:292
+#: cui/uiconfig/ui/paratabspage.ui:283
msgctxt "paratabspage|radiobuttonST_RIGHTTAB_ASIAN"
msgid "Righ_t/Bottom"
msgstr "_Labais/apakšējais"
-#: cui/uiconfig/ui/paratabspage.ui:314
+#: cui/uiconfig/ui/paratabspage.ui:305
msgctxt "paratabspage|radiobuttonBTN_TABTYPE_CENTER"
msgid "C_entered"
msgstr "_Vidus"
-#: cui/uiconfig/ui/paratabspage.ui:338
+#: cui/uiconfig/ui/paratabspage.ui:329
msgctxt "paratabspage|labelFT_TABTYPE_DECCHAR"
msgid "_Character"
msgstr "_Rakstzīme"
-#: cui/uiconfig/ui/paratabspage.ui:358
+#: cui/uiconfig/ui/paratabspage.ui:349
msgctxt "paratabspage|label2"
msgid "Type"
msgstr "Tips"
-#: cui/uiconfig/ui/paratabspage.ui:392
+#: cui/uiconfig/ui/paratabspage.ui:383
msgctxt "paratabspage|radiobuttonBTN_FILLCHAR_NO"
msgid "N_one"
msgstr "_Nav"
-#: cui/uiconfig/ui/paratabspage.ui:460
+#: cui/uiconfig/ui/paratabspage.ui:451
msgctxt "paratabspage|radiobuttonBTN_FILLCHAR_OTHER"
msgid "C_haracter"
msgstr "Ra_kstzīme"
-#: cui/uiconfig/ui/paratabspage.ui:499
+#: cui/uiconfig/ui/paratabspage.ui:490
msgctxt "paratabspage|label3"
msgid "Fill Character"
msgstr "Aizpildījuma rakstzīme"
-#: cui/uiconfig/ui/paratabspage.ui:537
+#: cui/uiconfig/ui/paratabspage.ui:528
msgctxt "paratabspage|buttonBTN_DELALL"
msgid "Delete _all"
msgstr "Dzēst _visu"
-#: cui/uiconfig/ui/paratabspage.ui:566
+#: cui/uiconfig/ui/paratabspage.ui:557
msgctxt "paratabspage|label4"
msgid "points"
msgstr "punkti"
-#: cui/uiconfig/ui/paratabspage.ui:579
+#: cui/uiconfig/ui/paratabspage.ui:570
msgctxt "paratabspage|label5"
msgid "dashes"
msgstr "svītras"
-#: cui/uiconfig/ui/paratabspage.ui:592
+#: cui/uiconfig/ui/paratabspage.ui:583
msgctxt "paratabspage|label6"
msgid "underscores"
msgstr "pasvītrojumi"
@@ -9790,22 +11330,22 @@ msgctxt "patterntabpage|label5"
msgid "Foreground Color:"
msgstr "Priekšplāna krāsa:"
-#: cui/uiconfig/ui/patterntabpage.ui:262
+#: cui/uiconfig/ui/patterntabpage.ui:264
msgctxt "patterntabpage|label6"
msgid "Background Color:"
msgstr "Fona krāsa:"
-#: cui/uiconfig/ui/patterntabpage.ui:304
+#: cui/uiconfig/ui/patterntabpage.ui:308
msgctxt "patterntabpage|label1"
msgid "Options"
msgstr "Opcijas"
-#: cui/uiconfig/ui/patterntabpage.ui:353
+#: cui/uiconfig/ui/patterntabpage.ui:357
msgctxt "patterntabpage|CTL_PREVIEW-atkobject"
msgid "Example"
msgstr "Piemērs"
-#: cui/uiconfig/ui/patterntabpage.ui:375
+#: cui/uiconfig/ui/patterntabpage.ui:379
msgctxt "patterntabpage|label2"
msgid "Preview"
msgstr "Priekšskatījums"
@@ -9830,22 +11370,22 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Priekšinstalēts motīvs"
-#: cui/uiconfig/ui/personalization_tab.ui:190
+#: cui/uiconfig/ui/personalization_tab.ui:194
msgctxt "personalization_tab|own_persona"
msgid "Own Theme"
msgstr "Mans motīvs"
-#: cui/uiconfig/ui/personalization_tab.ui:220
+#: cui/uiconfig/ui/personalization_tab.ui:224
msgctxt "personalization_tab|select_persona"
-msgid "Select Theme"
-msgstr "Izvēlieties motīvu"
+msgid "Load Firefox theme"
+msgstr "Ielādēt Firefox motīvu"
-#: cui/uiconfig/ui/personalization_tab.ui:241
+#: cui/uiconfig/ui/personalization_tab.ui:245
msgctxt "personalization_tab|extensions_label"
msgid "Or, select from the Themes installed via extensions:"
msgstr "Vai arī izvēlieties no motīviem, kas instalēti caur paplašinājumiem:"
-#: cui/uiconfig/ui/personalization_tab.ui:295
+#: cui/uiconfig/ui/personalization_tab.ui:299
msgctxt "personalization_tab|personas_label"
msgid "Firefox Themes"
msgstr "Firefox motīvi"
@@ -10203,7 +11743,7 @@ msgstr "Nosaukums dublējas"
#: cui/uiconfig/ui/queryduplicatedialog.ui:14
msgctxt "queryduplicatedialog|DuplicateNameDialog"
msgid "The name you have entered already exists."
-msgstr "Ievadītais nosaukums jau eksistē."
+msgstr "Ievadītais nosaukums jau pastāv."
#: cui/uiconfig/ui/queryduplicatedialog.ui:15
msgctxt "queryduplicatedialog|DuplicateNameDialog"
@@ -10278,7 +11818,7 @@ msgstr "Pozīcija _Y:"
#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
-msgstr "Noklusētie iestatījumi:"
+msgstr "_Noklusējuma iestatījumi:"
#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
@@ -10330,37 +11870,37 @@ msgctxt "screenshotannotationdialog|label1"
msgid "Paste the following markup into the help file:"
msgstr "Ielīmēt sekojošo iezīmēšanu palīdzības datnē:"
-#: cui/uiconfig/ui/scriptorganizer.ui:7
+#: cui/uiconfig/ui/scriptorganizer.ui:18
msgctxt "scriptorganizer|ScriptOrganizerDialog"
msgid "%MACROLANG Macros"
-msgstr "%MACROLANG makro"
+msgstr "%MACROLANG makrokomandas"
-#: cui/uiconfig/ui/scriptorganizer.ui:20
+#: cui/uiconfig/ui/scriptorganizer.ui:37
msgctxt "scriptorganizer|run"
msgid "Run"
msgstr "Palaist"
-#: cui/uiconfig/ui/scriptorganizer.ui:49
+#: cui/uiconfig/ui/scriptorganizer.ui:165
msgctxt "scriptorganizer|create"
msgid "Create..."
msgstr "Izveidot..."
-#: cui/uiconfig/ui/scriptorganizer.ui:78
+#: cui/uiconfig/ui/scriptorganizer.ui:192
msgctxt "scriptorganizer|rename"
msgid "Rename..."
msgstr "Pārdēvēt..."
-#: cui/uiconfig/ui/scriptorganizer.ui:92
+#: cui/uiconfig/ui/scriptorganizer.ui:205
msgctxt "scriptorganizer|delete"
msgid "Delete..."
msgstr "Dzēst..."
-#: cui/uiconfig/ui/scriptorganizer.ui:159
+#: cui/uiconfig/ui/scriptorganizer.ui:230
msgctxt "scriptorganizer|macrosft"
msgid "Macros"
-msgstr "Makro"
+msgstr "Makrokomandas"
-#: cui/uiconfig/ui/searchattrdialog.ui:9
+#: cui/uiconfig/ui/searchattrdialog.ui:22
msgctxt "searchattrdialog|SearchAttrDialog"
msgid "Attributes"
msgstr "Atribūti"
@@ -10370,47 +11910,47 @@ msgctxt "searchformatdialog|SearchFormatDialog"
msgid "Text Format "
msgstr "Teksta formāts"
-#: cui/uiconfig/ui/searchformatdialog.ui:134
+#: cui/uiconfig/ui/searchformatdialog.ui:135
msgctxt "searchformatdialog|font"
msgid "Font"
msgstr "Fonts"
-#: cui/uiconfig/ui/searchformatdialog.ui:180
+#: cui/uiconfig/ui/searchformatdialog.ui:181
msgctxt "searchformatdialog|fonteffects"
msgid "Font Effects"
msgstr "Fontu efekti"
-#: cui/uiconfig/ui/searchformatdialog.ui:227
+#: cui/uiconfig/ui/searchformatdialog.ui:228
msgctxt "searchformatdialog|position"
msgid "Position"
msgstr "Novietojums"
-#: cui/uiconfig/ui/searchformatdialog.ui:274
+#: cui/uiconfig/ui/searchformatdialog.ui:275
msgctxt "searchformatdialog|asianlayout"
msgid "Asian Layout"
msgstr "Āzijas izkārtojums"
-#: cui/uiconfig/ui/searchformatdialog.ui:321
+#: cui/uiconfig/ui/searchformatdialog.ui:322
msgctxt "searchformatdialog|labelTP_PARA_STD"
msgid "Indents & Spacing"
msgstr "Atkāpes un atstarpes"
-#: cui/uiconfig/ui/searchformatdialog.ui:368
+#: cui/uiconfig/ui/searchformatdialog.ui:369
msgctxt "searchformatdialog|labelTP_PARA_ALIGN"
msgid "Alignment"
msgstr "Līdzināšana"
-#: cui/uiconfig/ui/searchformatdialog.ui:416
+#: cui/uiconfig/ui/searchformatdialog.ui:417
msgctxt "searchformatdialog|labelTP_PARA_EXT"
msgid "Text Flow"
msgstr "Teksta plūsma"
-#: cui/uiconfig/ui/searchformatdialog.ui:464
+#: cui/uiconfig/ui/searchformatdialog.ui:465
msgctxt "searchformatdialog|labelTP_PARA_ASIAN"
msgid "Asian Typography"
msgstr "Āzijas tipogrāfija"
-#: cui/uiconfig/ui/searchformatdialog.ui:511
+#: cui/uiconfig/ui/searchformatdialog.ui:512
msgctxt "searchformatdialog|background"
msgid "Highlighting"
msgstr "Izcelšana"
@@ -10468,7 +12008,7 @@ msgstr "Lai sekotu hipersaitei, klikšķinot jāpietur Ctrl _taustiņš"
#: cui/uiconfig/ui/securityoptionsdialog.ui:327
msgctxt "securityoptionsdialog|blockuntrusted"
msgid "Block any links from documents not among the trusted locations (see Macro Security)"
-msgstr "Bloķēt visas saites no dokumentiem, kas nav starp uzticamajām vietām (skatiet makro drošību)"
+msgstr "Bloķēt visas saites no dokumentiem, kas nav starp uzticamajām vietām (skatiet \"Makrokomandu drošība\")"
#: cui/uiconfig/ui/securityoptionsdialog.ui:398
msgctxt "securityoptionsdialog|label2"
@@ -10480,96 +12020,96 @@ msgctxt "select_persona_dialog|SelectPersonaDialog"
msgid "Select Firefox Theme"
msgstr "Izvēlieties Firefox motīvu"
-#: cui/uiconfig/ui/select_persona_dialog.ui:103
+#: cui/uiconfig/ui/select_persona_dialog.ui:109
msgctxt "select_persona_dialog|search_term"
msgid "Search term or address"
-msgstr ""
+msgstr "Meklējamais termins vai adrese"
-#: cui/uiconfig/ui/select_persona_dialog.ui:145
+#: cui/uiconfig/ui/select_persona_dialog.ui:151
msgctxt "select_persona_dialog|categories_label"
msgid "Ca_tegory:"
-msgstr ""
+msgstr "Ka_tegorija:"
-#: cui/uiconfig/ui/select_persona_dialog.ui:160
+#: cui/uiconfig/ui/select_persona_dialog.ui:166
msgctxt "select_persona_dialog|categoriesCB"
msgid "Abstract"
-msgstr ""
+msgstr "Abstrakts"
-#: cui/uiconfig/ui/select_persona_dialog.ui:161
+#: cui/uiconfig/ui/select_persona_dialog.ui:167
msgctxt "select_persona_dialog|categoriesCB"
msgid "Causes"
-msgstr ""
+msgstr "Cēloņi"
-#: cui/uiconfig/ui/select_persona_dialog.ui:162
+#: cui/uiconfig/ui/select_persona_dialog.ui:168
msgctxt "select_persona_dialog|categoriesCB"
msgid "Fashion"
-msgstr ""
+msgstr "Mode"
-#: cui/uiconfig/ui/select_persona_dialog.ui:163
+#: cui/uiconfig/ui/select_persona_dialog.ui:169
msgctxt "select_persona_dialog|categoriesCB"
msgid "Film and TV"
-msgstr ""
+msgstr "Kino un TV"
-#: cui/uiconfig/ui/select_persona_dialog.ui:164
+#: cui/uiconfig/ui/select_persona_dialog.ui:170
msgctxt "select_persona_dialog|categoriesCB"
msgid "Firefox"
msgstr "Firefox"
#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:165
+#: cui/uiconfig/ui/select_persona_dialog.ui:171
msgctxt "select_persona_dialog|categoriesCB"
msgid "Foxkeh"
-msgstr ""
+msgstr "Foxkeh"
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
+#: cui/uiconfig/ui/select_persona_dialog.ui:172
msgctxt "select_persona_dialog|categoriesCB"
msgid "Holiday"
-msgstr ""
+msgstr "Brīvdiena"
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
+#: cui/uiconfig/ui/select_persona_dialog.ui:173
msgctxt "select_persona_dialog|categoriesCB"
msgid "Music"
-msgstr ""
+msgstr "Mūzika"
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
+#: cui/uiconfig/ui/select_persona_dialog.ui:174
msgctxt "select_persona_dialog|categoriesCB"
msgid "Nature"
-msgstr ""
+msgstr "Daba"
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
+#: cui/uiconfig/ui/select_persona_dialog.ui:175
msgctxt "select_persona_dialog|categoriesCB"
msgid "Other"
-msgstr ""
+msgstr "Cits"
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
+#: cui/uiconfig/ui/select_persona_dialog.ui:176
msgctxt "select_persona_dialog|categoriesCB"
msgid "Scenery"
-msgstr ""
+msgstr "Ainava"
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
+#: cui/uiconfig/ui/select_persona_dialog.ui:177
msgctxt "select_persona_dialog|categoriesCB"
msgid "Seasonal"
-msgstr ""
+msgstr "Sezonas"
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
+#: cui/uiconfig/ui/select_persona_dialog.ui:178
msgctxt "select_persona_dialog|categoriesCB"
msgid "Solid"
-msgstr ""
+msgstr "Viendabīgs"
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
+#: cui/uiconfig/ui/select_persona_dialog.ui:179
msgctxt "select_persona_dialog|categoriesCB"
msgid "Sports"
-msgstr ""
+msgstr "Sports"
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
+#: cui/uiconfig/ui/select_persona_dialog.ui:180
msgctxt "select_persona_dialog|categoriesCB"
msgid "Websites"
msgstr "Tīmekļa vietnes"
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
+#: cui/uiconfig/ui/select_persona_dialog.ui:181
msgctxt "select_persona_dialog|categoriesCB"
msgid "Featured"
-msgstr ""
+msgstr "Piedāvātās"
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
@@ -10591,27 +12131,27 @@ msgctxt "shadowtabpage|TSB_SHOW_SHADOW"
msgid "_Use shadow"
msgstr "Lietot ēn_u"
-#: cui/uiconfig/ui/shadowtabpage.ui:145
+#: cui/uiconfig/ui/shadowtabpage.ui:147
msgctxt "shadowtabpage|FT_DISTANCE"
msgid "_Distance:"
msgstr "_Attālums:"
-#: cui/uiconfig/ui/shadowtabpage.ui:166
+#: cui/uiconfig/ui/shadowtabpage.ui:168
msgctxt "shadowtabpage|FT_TRANSPARENT"
msgid "_Transparency:"
msgstr "_Caurspīdība:"
-#: cui/uiconfig/ui/shadowtabpage.ui:187
+#: cui/uiconfig/ui/shadowtabpage.ui:189
msgctxt "shadowtabpage|FT_SHADOW_COLOR"
msgid "_Color:"
msgstr "_Krāsa:"
-#: cui/uiconfig/ui/shadowtabpage.ui:244
+#: cui/uiconfig/ui/shadowtabpage.ui:246
msgctxt "shadowtabpage|CTL_COLOR_PREVIEW-atkobject"
msgid "Example"
msgstr "Piemērs"
-#: cui/uiconfig/ui/shadowtabpage.ui:273
+#: cui/uiconfig/ui/shadowtabpage.ui:275
msgctxt "shadowtabpage|label"
msgid "Properties"
msgstr "Īpašības"
@@ -10697,7 +12237,7 @@ msgstr "Parakstīt paraksta rindu"
#: cui/uiconfig/ui/signsignatureline.ui:56
msgctxt "signsignatureline|ok"
msgid "Sign"
-msgstr ""
+msgstr "Parakstīt"
#: cui/uiconfig/ui/signsignatureline.ui:113
msgctxt "signsignatureline|edit_name"
@@ -10725,22 +12265,22 @@ msgstr "Izvēlieties sertifikātu"
#: cui/uiconfig/ui/signsignatureline.ui:166
msgctxt "signsignatureline|label_name"
msgid "or"
-msgstr ""
+msgstr "vai"
#: cui/uiconfig/ui/signsignatureline.ui:175
msgctxt "signsignatureline|btn_load_image"
msgid "Use Signature Image"
-msgstr ""
+msgstr "Lietot paraksta attēlu"
#: cui/uiconfig/ui/signsignatureline.ui:190
msgctxt "signsignatureline|btn_clear_image"
msgid "Clear"
-msgstr ""
+msgstr "Attīrīt"
#: cui/uiconfig/ui/signsignatureline.ui:206
msgctxt "signsignatureline|label_image_dimensions"
msgid "Best image size: 600 x 100 px"
-msgstr ""
+msgstr "Labākais attēla izmērs: 600 x 100 pikseļi"
#: cui/uiconfig/ui/signsignatureline.ui:237
msgctxt "signsignatureline|label_sign"
@@ -10837,17 +12377,17 @@ msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Kontroles punkts 2"
-#: cui/uiconfig/ui/smarttagoptionspage.ui:30
+#: cui/uiconfig/ui/smarttagoptionspage.ui:34
msgctxt "smarttagoptionspage|main"
msgid "Label text with smart tags"
msgstr "Iezīmēt tekstu ar viedtagiem"
-#: cui/uiconfig/ui/smarttagoptionspage.ui:70
+#: cui/uiconfig/ui/smarttagoptionspage.ui:72
msgctxt "smarttagoptionspage|properties"
msgid "Properties..."
msgstr "Īpašības..."
-#: cui/uiconfig/ui/smarttagoptionspage.ui:148
+#: cui/uiconfig/ui/smarttagoptionspage.ui:147
msgctxt "smarttagoptionspage|label1"
msgid "Currently Installed Smart Tags"
msgstr "Šobrīd instalētie viedtagi"
@@ -11082,32 +12622,32 @@ msgctxt "splitcellsdialog|label2"
msgid "Direction"
msgstr "Virziens"
-#: cui/uiconfig/ui/storedwebconnectiondialog.ui:9
+#: cui/uiconfig/ui/storedwebconnectiondialog.ui:18
msgctxt "storedwebconnectiondialog|StoredWebConnectionDialog"
msgid "Stored Web Connection Information"
msgstr "Saglabātā tīmekļa savienojuma informācija"
-#: cui/uiconfig/ui/storedwebconnectiondialog.ui:70
+#: cui/uiconfig/ui/storedwebconnectiondialog.ui:81
msgctxt "storedwebconnectiondialog|label1"
msgid "Web login information (passwords are never shown)"
msgstr "Tīmekļa pieteikšanās informācija (paroles nekad netiek rādītas)"
-#: cui/uiconfig/ui/storedwebconnectiondialog.ui:87
+#: cui/uiconfig/ui/storedwebconnectiondialog.ui:112
msgctxt "storedwebconnectiondialog|website"
msgid "Website"
msgstr "Tīmekļa vietne"
-#: cui/uiconfig/ui/storedwebconnectiondialog.ui:98
+#: cui/uiconfig/ui/storedwebconnectiondialog.ui:127
msgctxt "storedwebconnectiondialog|username"
msgid "User name"
msgstr "Lietotāja vārds"
-#: cui/uiconfig/ui/storedwebconnectiondialog.ui:148
+#: cui/uiconfig/ui/storedwebconnectiondialog.ui:166
msgctxt "storedwebconnectiondialog|removeall"
msgid "Remove _All"
msgstr "Izņemt _visu"
-#: cui/uiconfig/ui/storedwebconnectiondialog.ui:162
+#: cui/uiconfig/ui/storedwebconnectiondialog.ui:180
msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "_Mainīt paroli..."
@@ -11432,117 +12972,117 @@ msgctxt "textdialog|RID_SVXPAGE_TEXTANIMATION"
msgid "Text Animation"
msgstr "Teksta animācija"
-#: cui/uiconfig/ui/textflowpage.ui:74
+#: cui/uiconfig/ui/textflowpage.ui:77
msgctxt "textflowpage|checkAuto"
msgid "A_utomatically"
msgstr "A_utomātiski"
-#: cui/uiconfig/ui/textflowpage.ui:139
+#: cui/uiconfig/ui/textflowpage.ui:142
msgctxt "textflowpage|labelLineEnd"
msgid "C_haracters at line end"
msgstr "R_akstzīmes rindas galā"
-#: cui/uiconfig/ui/textflowpage.ui:153
+#: cui/uiconfig/ui/textflowpage.ui:156
msgctxt "textflowpage|labelLineBegin"
msgid "Cha_racters at line begin"
msgstr "_Rakstzīmes rindas sākumā"
-#: cui/uiconfig/ui/textflowpage.ui:167
+#: cui/uiconfig/ui/textflowpage.ui:170
msgctxt "textflowpage|labelMaxNum"
msgid "_Maximum number of consecutive hyphens"
msgstr "_Maksimālais secīgu pārnesumu skaits"
-#: cui/uiconfig/ui/textflowpage.ui:184
+#: cui/uiconfig/ui/textflowpage.ui:187
msgctxt "textflowpage|LabelHyphenation"
msgid "Hyphenation"
msgstr "Zilbjdale"
-#: cui/uiconfig/ui/textflowpage.ui:217
+#: cui/uiconfig/ui/textflowpage.ui:220
msgctxt "textflowpage|checkInsert"
msgid "_Insert"
msgstr "_Ievietot"
-#: cui/uiconfig/ui/textflowpage.ui:233
+#: cui/uiconfig/ui/textflowpage.ui:236
msgctxt "textflowpage|checkPageStyle"
msgid "With page st_yle:"
msgstr "Ar _lappuses stilu:"
-#: cui/uiconfig/ui/textflowpage.ui:255
+#: cui/uiconfig/ui/textflowpage.ui:258
msgctxt "textflowpage|labelType"
msgid "_Type:"
msgstr "_Tips:"
-#: cui/uiconfig/ui/textflowpage.ui:282
+#: cui/uiconfig/ui/textflowpage.ui:285
msgctxt "textflowpage|labelPageNum"
msgid "Page _number:"
msgstr "Lappuses _numurs:"
-#: cui/uiconfig/ui/textflowpage.ui:303
+#: cui/uiconfig/ui/textflowpage.ui:306
msgctxt "textflowpage|labelPosition"
msgid "Position:"
msgstr "Novietojums:"
-#: cui/uiconfig/ui/textflowpage.ui:323
+#: cui/uiconfig/ui/textflowpage.ui:326
msgctxt "textflowpage|comboPageStyle-atkobject"
msgid "Page Style"
msgstr "Lappušu stils"
-#: cui/uiconfig/ui/textflowpage.ui:337
+#: cui/uiconfig/ui/textflowpage.ui:340
msgctxt "textflowpage|comboBreakType"
msgid "Page"
msgstr "Lappuse"
-#: cui/uiconfig/ui/textflowpage.ui:338
+#: cui/uiconfig/ui/textflowpage.ui:341
msgctxt "textflowpage|comboBreakType"
msgid "Column"
msgstr "Kolonna"
-#: cui/uiconfig/ui/textflowpage.ui:351
+#: cui/uiconfig/ui/textflowpage.ui:354
msgctxt "textflowpage|comboBreakPosition"
msgid "Before"
msgstr "Pirms"
-#: cui/uiconfig/ui/textflowpage.ui:352
+#: cui/uiconfig/ui/textflowpage.ui:355
msgctxt "textflowpage|comboBreakPosition"
msgid "After"
msgstr "Pēc"
-#: cui/uiconfig/ui/textflowpage.ui:371
+#: cui/uiconfig/ui/textflowpage.ui:374
msgctxt "textflowpage|label3"
msgid "Breaks"
msgstr "Atdalītāji"
-#: cui/uiconfig/ui/textflowpage.ui:403
+#: cui/uiconfig/ui/textflowpage.ui:406
msgctxt "textflowpage|checkSplitPara"
msgid "_Do not split paragraph"
msgstr "Nešķelt rin_dkopu"
-#: cui/uiconfig/ui/textflowpage.ui:419
+#: cui/uiconfig/ui/textflowpage.ui:422
msgctxt "textflowpage|checkKeepPara"
msgid "_Keep with next paragraph"
msgstr "Turēties pie nākamās rind_kopas"
-#: cui/uiconfig/ui/textflowpage.ui:435
+#: cui/uiconfig/ui/textflowpage.ui:438
msgctxt "textflowpage|checkOrphan"
msgid "_Orphan control"
msgstr "_Bāreņrindu kontrole"
-#: cui/uiconfig/ui/textflowpage.ui:454
+#: cui/uiconfig/ui/textflowpage.ui:457
msgctxt "textflowpage|checkWidow"
msgid "_Widow control"
msgstr "_Atraitņrindu kontrole"
-#: cui/uiconfig/ui/textflowpage.ui:507
+#: cui/uiconfig/ui/textflowpage.ui:510
msgctxt "textflowpage|labelOrphan"
msgid "lines"
msgstr "rindas"
-#: cui/uiconfig/ui/textflowpage.ui:519
+#: cui/uiconfig/ui/textflowpage.ui:522
msgctxt "textflowpage|labelWidow"
msgid "lines"
msgstr "rindas"
-#: cui/uiconfig/ui/textflowpage.ui:547
+#: cui/uiconfig/ui/textflowpage.ui:550
msgctxt "textflowpage|labelOptions"
msgid "Options"
msgstr "Opcijas"
@@ -11572,157 +13112,182 @@ msgctxt "thesaurus|label3"
msgid "Replace with:"
msgstr "Aizstāt ar:"
+#: cui/uiconfig/ui/tipofthedaydialog.ui:8
+msgctxt "TipOfTheDayDialog|Name"
+msgid "Tip of the day"
+msgstr ""
+
+#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+msgctxt "TipOfTheDay|Checkbox"
+msgid "_Show tips on startup"
+msgstr ""
+
+#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+msgctxt "TipOfTheDay|Checkbox_Tooltip"
+msgid "Enable the dialog again at Tools > Options > General"
+msgstr ""
+
+#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+msgctxt "TipOfTheDayDialog|Next_Button"
+msgid "_Next Tip"
+msgstr ""
+
+#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+msgctxt "TipOfTheDayDialog|Title"
+msgid "Did you know?"
+msgstr ""
+
+#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+msgctxt "TipOfTheDayDialog|Link_Button"
+msgid "Link"
+msgstr ""
+
#: cui/uiconfig/ui/transparencytabpage.ui:77
msgctxt "transparencytabpage|RBT_TRANS_OFF"
msgid "_No transparency"
msgstr "_Nav caurspīdības"
-#: cui/uiconfig/ui/transparencytabpage.ui:94
+#: cui/uiconfig/ui/transparencytabpage.ui:93
msgctxt "transparencytabpage|RBT_TRANS_LINEAR"
msgid "_Transparency:"
msgstr "_Caurspīdība:"
-#: cui/uiconfig/ui/transparencytabpage.ui:114
+#: cui/uiconfig/ui/transparencytabpage.ui:112
msgctxt "transparencytabpage|RBT_TRANS_GRADIENT"
msgid "_Gradient"
msgstr "_Krāsu pāreju"
-#: cui/uiconfig/ui/transparencytabpage.ui:239
+#: cui/uiconfig/ui/transparencytabpage.ui:237
msgctxt "transparencytabpage|liststoreTYPE"
msgid "Linear"
msgstr "Lineārs"
-#: cui/uiconfig/ui/transparencytabpage.ui:240
+#: cui/uiconfig/ui/transparencytabpage.ui:238
msgctxt "transparencytabpage|liststoreTYPE"
msgid "Axial"
msgstr "Aksiāls"
-#: cui/uiconfig/ui/transparencytabpage.ui:241
+#: cui/uiconfig/ui/transparencytabpage.ui:239
msgctxt "transparencytabpage|liststoreTYPE"
msgid "Radial"
msgstr "Radiāls"
-#: cui/uiconfig/ui/transparencytabpage.ui:242
+#: cui/uiconfig/ui/transparencytabpage.ui:240
msgctxt "transparencytabpage|liststoreTYPE"
msgid "Ellipsoid"
msgstr "Elipsoīds"
-#: cui/uiconfig/ui/transparencytabpage.ui:243
+#: cui/uiconfig/ui/transparencytabpage.ui:241
msgctxt "transparencytabpage|liststoreTYPE"
msgid "Quadratic"
msgstr "Kvadrātisks"
-#: cui/uiconfig/ui/transparencytabpage.ui:244
+#: cui/uiconfig/ui/transparencytabpage.ui:242
msgctxt "transparencytabpage|liststoreTYPE"
msgid "Square"
msgstr "Kvadrāts"
-#: cui/uiconfig/ui/transparencytabpage.ui:261
+#: cui/uiconfig/ui/transparencytabpage.ui:259
msgctxt "transparencytabpage|FT_TRGR_TYPE"
msgid "Ty_pe:"
msgstr "Ti_ps:"
-#: cui/uiconfig/ui/transparencytabpage.ui:282
+#: cui/uiconfig/ui/transparencytabpage.ui:280
msgctxt "transparencytabpage|FT_TRGR_CENTER_X"
msgid "Center _X:"
msgstr "Centrs _X:"
-#: cui/uiconfig/ui/transparencytabpage.ui:303
+#: cui/uiconfig/ui/transparencytabpage.ui:301
msgctxt "transparencytabpage|FT_TRGR_CENTER_Y"
msgid "Center _Y:"
msgstr "Centrs _Y:"
-#: cui/uiconfig/ui/transparencytabpage.ui:324
+#: cui/uiconfig/ui/transparencytabpage.ui:322
msgctxt "transparencytabpage|FT_TRGR_ANGLE"
msgid "_Angle:"
msgstr "_Leņķis:"
-#: cui/uiconfig/ui/transparencytabpage.ui:345
+#: cui/uiconfig/ui/transparencytabpage.ui:343
msgctxt "transparencytabpage|FT_TRGR_BORDER"
msgid "_Border:"
msgstr "_Mala:"
-#: cui/uiconfig/ui/transparencytabpage.ui:366
+#: cui/uiconfig/ui/transparencytabpage.ui:364
msgctxt "transparencytabpage|FT_TRGR_START_VALUE"
msgid "_Start value:"
msgstr "_Sākuma vērtība:"
-#: cui/uiconfig/ui/transparencytabpage.ui:387
+#: cui/uiconfig/ui/transparencytabpage.ui:385
msgctxt "transparencytabpage|FT_TRGR_END_VALUE"
msgid "_End value:"
msgstr "B_eigu vērtība:"
-#: cui/uiconfig/ui/transparencytabpage.ui:444
+#: cui/uiconfig/ui/transparencytabpage.ui:442
msgctxt "transparencytabpage|CTL_BITMAP_PREVIEW-atkobject"
msgid "Example"
msgstr "Piemērs"
-#: cui/uiconfig/ui/transparencytabpage.ui:479
+#: cui/uiconfig/ui/transparencytabpage.ui:477
msgctxt "transparencytabpage|CTL_TRANS_PREVIEW-atkobject"
msgid "Example"
msgstr "Piemērs"
-#: cui/uiconfig/ui/transparencytabpage.ui:523
+#: cui/uiconfig/ui/transparencytabpage.ui:521
msgctxt "transparencytabpage|FL_PROP"
msgid "Area Transparency Mode"
msgstr "Laukuma caurspīdības režīms"
-#: cui/uiconfig/ui/tsaurldialog.ui:7
+#: cui/uiconfig/ui/tsaurldialog.ui:16
msgctxt "tsaurldialog|TSAURLDialog"
msgid "Time Stamping Authority URLs"
msgstr "Laika spiedogošanas autoritātes URL"
-#: cui/uiconfig/ui/tsaurldialog.ui:35
-msgctxt "tsaurldialog|delete"
-msgid "_Delete..."
-msgstr "_Dzēst..."
-
-#: cui/uiconfig/ui/tsaurldialog.ui:51
+#: cui/uiconfig/ui/tsaurldialog.ui:67
msgctxt "tsaurldialog|add"
msgid "_Add..."
msgstr "_Pievienot..."
-#: cui/uiconfig/ui/tsaurldialog.ui:131
+#: cui/uiconfig/ui/tsaurldialog.ui:145
msgctxt "tsaurldialog|label2"
msgid "Add or delete Time Stamp Authority URLs"
msgstr "Pievienot vai dzēst laika spiedogošanas autoritātes URL"
-#: cui/uiconfig/ui/tsaurldialog.ui:168
+#: cui/uiconfig/ui/tsaurldialog.ui:207
msgctxt "tsaurldialog|enteraurl"
msgid "Enter a Time Stamp Authority URL"
msgstr "Ievadiet laika spiedogošanas autoritātes URL"
-#: cui/uiconfig/ui/tsaurldialog.ui:198
+#: cui/uiconfig/ui/tsaurldialog.ui:235
msgctxt "tsaurldialog|label1"
msgid "TSA URL"
msgstr "TSA URL"
-#: cui/uiconfig/ui/twolinespage.ui:41
+#: cui/uiconfig/ui/twolinespage.ui:43
msgctxt "twolinespage|twolines"
msgid "Write in double lines"
msgstr "Rakstīt divās līnijās"
-#: cui/uiconfig/ui/twolinespage.ui:56
+#: cui/uiconfig/ui/twolinespage.ui:58
msgctxt "twolinespage|label2"
msgid "Double-lined"
msgstr "Dubultas līnijas"
-#: cui/uiconfig/ui/twolinespage.ui:91
+#: cui/uiconfig/ui/twolinespage.ui:99
msgctxt "twolinespage|label29"
msgid "Initial character"
msgstr "Sākotnējā rakstzīme"
-#: cui/uiconfig/ui/twolinespage.ui:102
+#: cui/uiconfig/ui/twolinespage.ui:110
msgctxt "twolinespage|label30"
msgid "Final character"
msgstr "Beigu rakstzīme"
-#: cui/uiconfig/ui/twolinespage.ui:195
+#: cui/uiconfig/ui/twolinespage.ui:203
msgctxt "twolinespage|label28"
msgid "Enclosing Character"
msgstr "Rakstzīmju apvilkšana"
-#: cui/uiconfig/ui/twolinespage.ui:233
+#: cui/uiconfig/ui/twolinespage.ui:241
msgctxt "twolinespage|preview-atkobject"
msgid "Preview"
msgstr "Priekšskatījums"
@@ -11775,7 +13340,7 @@ msgstr "Pi_eņemt ar:"
#: cui/uiconfig/ui/zoomdialog.ui:19
msgctxt "zoomdialog|ZoomDialog"
msgid "Zoom & View Layout"
-msgstr "Mērogs un skata izkārtojums"
+msgstr "Tālummaiņa un skata izkārtojums"
#: cui/uiconfig/ui/zoomdialog.ui:112
msgctxt "zoomdialog|optimal"
@@ -11810,7 +13375,7 @@ msgstr "Mainīgais"
#: cui/uiconfig/ui/zoomdialog.ui:239
msgctxt "zoomdialog|label2"
msgid "Zoom Factor"
-msgstr "Mērogs"
+msgstr "Tālummaiņas koeficients"
#: cui/uiconfig/ui/zoomdialog.ui:272
msgctxt "zoomdialog|automatic"
diff --git a/source/lv/dbaccess/messages.po b/source/lv/dbaccess/messages.po
index 6c55aa87533..f4d99eba664 100644
--- a/source/lv/dbaccess/messages.po
+++ b/source/lv/dbaccess/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-12-17 16:28+0100\n"
-"PO-Revision-Date: 2018-10-03 15:51+0000\n"
+"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"PO-Revision-Date: 2019-03-25 06:17+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lv\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1538581885.000000\n"
+"X-POOTLE-MTIME: 1553494639.000000\n"
#: dbaccess/inc/query.hrc:26
msgctxt "RSC_QUERY_OBJECT_TYPE"
@@ -39,7 +39,7 @@ msgstr "Neizdevās izveidot savienojumu."
#: dbaccess/inc/strings.hrc:26
msgctxt "RID_STR_TABLE_IS_FILTERED"
msgid "The table $name$ already exists. It is not visible because it has been filtered out."
-msgstr "Tabula $name$ jau eksistē. Tā nav redzama, jo tā nav atlasīta."
+msgstr "Tabula $name$ jau pastāv. Tā nav redzama, jo tā tika atfiltrēta."
#: dbaccess/inc/strings.hrc:27
msgctxt "RID_STR_COULDNOTCONNECT_UNSPECIFIED"
@@ -157,9 +157,9 @@ msgid "Relative positioning is not allowed in this state."
msgstr "Relatīvā pozicionēšana nav atļauta šajā stāvoklī."
#: dbaccess/inc/strings.hrc:49
-msgctxt "RID_STR_NO_REFESH_AFTERLAST"
+msgctxt "RID_STR_NO_REFRESH_AFTERLAST"
msgid "A row cannot be refreshed when the ResultSet is positioned after the last row."
-msgstr "Rindu nevar atsvaidzināt, kad ResultSet ir novietots pēc pēdējā ieraksta."
+msgstr ""
#: dbaccess/inc/strings.hrc:50
msgctxt "RID_STR_NO_MOVETOINSERTROW_CALLED"
@@ -194,22 +194,22 @@ msgstr "Draiveris neatbalsta tabulu kolonnu aprakstu izmainīšanu, mainot indek
#: dbaccess/inc/strings.hrc:56
msgctxt "RID_STR_FILE_DOES_NOT_EXIST"
msgid "The file \"$file$\" does not exist."
-msgstr "Datne \"$file$\" neeksistē."
+msgstr "Datne \"$file$\" nepastāv."
#: dbaccess/inc/strings.hrc:57
msgctxt "RID_STR_TABLE_DOES_NOT_EXIST"
msgid "There exists no table named \"$table$\"."
-msgstr "Neeksistē tabula ar nosaukumu \"$table$\"."
+msgstr "Nepastāv tabula ar nosaukumu \"$table$\"."
#: dbaccess/inc/strings.hrc:58
msgctxt "RID_STR_QUERY_DOES_NOT_EXIST"
msgid "There exists no query named \"$table$\"."
-msgstr "Neeksistē vaicājums ar nosaukumu \"$table$\"."
+msgstr "Nepastāv vaicājums ar nosaukumu \"$table$\"."
#: dbaccess/inc/strings.hrc:59
msgctxt "RID_STR_CONFLICTING_NAMES"
msgid "There are tables in the database whose names conflict with the names of existing queries. To make full use of all queries and tables, make sure they have distinct names."
-msgstr "Datubāzē ir tabulas, kuru nosaukumi konfliktē ar eksistējošu vaicājumu nosaukumiem. Lai pilnībā izmantotu visus vaicājumus un tabulas, lūdzu, nodrošiniet, lai to nosaukumi atšķirtos."
+msgstr "Datubāzē ir tabulas, kuru nosaukumi konfliktē ar esošu vaicājumu nosaukumiem. Lai pilnībā izmantotu visus vaicājumus un tabulas, lūdzu, nodrošiniet, lai to nosaukumi atšķirtos."
#: dbaccess/inc/strings.hrc:60
msgctxt "RID_STR_COMMAND_LEADING_TO_ERROR"
@@ -278,7 +278,7 @@ msgstr ""
#: dbaccess/inc/strings.hrc:70
msgctxt "RID_STR_NO_SUB_FOLDER"
msgid "There exists no folder named \"$folder$\"."
-msgstr "Neeksistē mape ar nosaukumu \"$folder$\"."
+msgstr "Nepastāv mape ar nosaukumu \"$folder$\"."
#: dbaccess/inc/strings.hrc:71
msgctxt "RID_STR_NO_DELETE_BEFORE_AFTER"
@@ -420,13 +420,13 @@ msgctxt "STR_STATE_SUMMARY"
msgid "Summary"
msgstr "Kopsavilkums"
-#. To translators: This refers to a form documen t inside a database document.
+#. To translators: This refers to a form document inside a database document.
#: dbaccess/inc/strings.hrc:102
msgctxt "STR_FORM"
msgid "Form '$name$'"
msgstr "Forma '$name$'"
-#. To translators: This refers to a report docum ent inside a database document.
+#. To translators: This refers to a report document inside a database document.
#: dbaccess/inc/strings.hrc:104
msgctxt "STR_REPORT"
msgid "Report '$name$'"
@@ -570,7 +570,7 @@ msgstr "Pievienot kolonnu"
#: dbaccess/inc/strings.hrc:133
msgctxt "RID_STR_FIELD_DOESNT_EXIST"
msgid "Invalid expression, field name '$name$' does not exist."
-msgstr "Nederīga izteiksme, lauka nosaukums '$name$' neeksistē."
+msgstr "Nederīga izteiksme, lauka nosaukums '$name$' nepastāv."
#: dbaccess/inc/strings.hrc:134
msgctxt "STR_QUERY_UNDO_TABWINDELETE"
@@ -680,7 +680,7 @@ msgstr "Šī datubāze neatbalsta tabulas skatus."
#: dbaccess/inc/strings.hrc:155
msgctxt "STR_NO_ALTER_VIEW_SUPPORT"
msgid "This database does not support altering of existing table views."
-msgstr "Datubāze neatbalsta eksistējošo tabulu skatu mainīšanu."
+msgstr "Šī datubāze neatbalsta esošo tabulu skatu mainīšanu."
#: dbaccess/inc/strings.hrc:156
msgctxt "STR_QUERYDESIGN_NO_VIEW_ASK"
@@ -792,7 +792,7 @@ msgstr "Skats #"
#: dbaccess/inc/strings.hrc:180
msgctxt "STR_NAME_ALREADY_EXISTS"
msgid "The name \"#\" already exists."
-msgstr "Nosaukums \"#\" jau eksistē."
+msgstr "Nosaukums \"#\" jau pastāv."
#: dbaccess/inc/strings.hrc:181
msgctxt "STR_NO_COLUMNNAME_MATCHING"
@@ -980,7 +980,7 @@ msgstr "M~apes nosaukums"
#: dbaccess/inc/strings.hrc:220
msgctxt "STR_SUB_DOCS_WITH_SCRIPTS"
msgid "The document contains forms or reports with embedded macros."
-msgstr "Dokuments satur formas un atskaites ar iegultiem makro."
+msgstr "Dokuments satur formas vai atskaites ar iegultām makrokomandām."
#: dbaccess/inc/strings.hrc:221
msgctxt "STR_SUB_DOCS_WITH_SCRIPTS_DETAIL"
@@ -991,11 +991,11 @@ msgid ""
"\n"
"Note that you won't be able to embed macros into the database document itself until this migration is done. "
msgstr ""
-"Makro vajadzētu tikt iegultiem pašā datubāzes dokumentā.\n"
+"Makrokomandām vajadzētu tikt iegultām pašā datubāzes dokumentā.\n"
"\n"
-"Jūs varat turpināt izmantot savu dokumentu kā iepriekš, taču makro ir vēlams migrēt. Ja vēlaties palīdzību, izvēlieties 'Rīki / Migrēt makro....'.\n"
+"Jūs varat turpināt izmantot savu dokumentu kā iepriekš, taču makrokomandas ir vēlams migrēt. Ja vēlaties palīdzību, izvēlieties 'Rīki / Migrēt makrokomandas...'.\n"
"\n"
-"Ņemiet vērā, ka bez šīs migrācijas iegult makro datubāzes dokumentā nebūs iespējams."
+"Ņemiet vērā, ka pašā datubāzes dokumentā nebūs iespējams iegult makrokomandas, kamēr šī migrācija nebūs pabeigta."
#: dbaccess/inc/strings.hrc:226
msgctxt "RID_STR_EMBEDDED_DATABASE"
@@ -1309,12 +1309,12 @@ msgstr "Norādiet ciparu skaitu aiz komata, kādu jāatļauj šim laukam."
#: dbaccess/inc/strings.hrc:287
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 "Šeit jūs redzat kā dati tiks attēloti tekošajā formātā (lietojiet pogu pa labi, lai izmainītu formātu)."
+msgstr "Šeit redzams, kā dati tiks attēloti tekošajā formātā (lietojiet pa labi esošo pogu, lai izmainītu formātu)."
#: dbaccess/inc/strings.hrc:288
msgctxt "STR_HELP_FORMAT_BUTTON"
msgid "This is where you determine the output format of the data."
-msgstr "Šeit jūs izvēlaties datu izvades formātu."
+msgstr "Šeit nosaka datu izvades formātu."
#: dbaccess/inc/strings.hrc:289
msgctxt "STR_HELP_AUTOINCREMENT"
@@ -1472,7 +1472,7 @@ msgstr ""
"\n"
"$path$\n"
"\n"
-"neeksistē. Vai to izveidot?"
+"nepastāv. Vai to izveidot?"
#: dbaccess/inc/strings.hrc:314
msgctxt "STR_COULD_NOT_CREATE_DIRECTORY"
@@ -1482,7 +1482,7 @@ msgstr "Direktoriju $name$ neizdevās izveidot."
#: dbaccess/inc/strings.hrc:315
msgctxt "STR_ALREADYEXISTOVERWRITE"
msgid "The file already exists. Overwrite?"
-msgstr "Datne jau eksistē. Pārrakstīt?"
+msgstr "Datne jau pastāv. Pārrakstīt?"
#: dbaccess/inc/strings.hrc:316
msgctxt "STR_NEW_FOLDER"
@@ -1596,8 +1596,8 @@ msgstr "Kļūda izveides laikā"
#: dbaccess/inc/strings.hrc:341
msgctxt "STR_UNEXPECTED_ERROR"
-msgid "An unexpected error occurred. The operation could not be performed."
-msgstr "Notikusi negaidīta kļūda. Darbību neizdevās izpildīt."
+msgid "An error occurred. The operation could not be performed."
+msgstr ""
#: dbaccess/inc/strings.hrc:342
msgctxt "STR_COULDNOTOPEN_LINKEDDOC"
@@ -1632,7 +1632,7 @@ msgstr "Nav atrasts atbilstošs kolonnas tips kolonnai '#1'."
#: dbaccess/inc/strings.hrc:348
msgctxt "STR_FILE_DOES_NOT_EXIST"
msgid "The file \"$file$\" does not exist."
-msgstr "Datne “$file$” neeksistē."
+msgstr "Datne “$file$” nepastāv."
#: dbaccess/inc/strings.hrc:349
msgctxt "STR_WARNINGS_DURING_CONNECT"
@@ -1645,8 +1645,8 @@ msgid ""
"The name '$#$' already exists.\n"
"Please enter another name."
msgstr ""
-"Nosaukums “$#$” jau eksistē.\n"
-"Lūdzu, norādiet citu nosaukumu."
+"Nosaukums “$#$” jau pastāv.\n"
+"Lūdzu, ievadiet citu nosaukumu."
#. #i96130# use hard coded name
#: dbaccess/inc/strings.hrc:352
@@ -2285,7 +2285,7 @@ msgstr "Dotais mijiedarbības apstrādātājs ir nederīgs."
#: dbaccess/inc/strings.hrc:485
msgctxt "STR_QUERY_REL_EDIT_RELATION"
msgid "This relation already exists. Do you want to edit it or create a new one?"
-msgstr "Relācija jau eksistē. Vai vēlaties to rediģēt, vai arī izveidot jaunu?"
+msgstr "Šī relācija jau pastāv. Vai vēlaties to rediģēt vai arī izveidot jaunu?"
#: dbaccess/inc/strings.hrc:486
msgctxt "STR_QUERY_REL_EDIT"
@@ -2411,17 +2411,17 @@ msgctxt "backuppage|browse"
msgid "Browse..."
msgstr "Pārlūkot..."
-#: dbaccess/uiconfig/ui/choosedatasourcedialog.ui:8
+#: dbaccess/uiconfig/ui/choosedatasourcedialog.ui:16
msgctxt "choosedatasourcedialog|ChooseDataSourceDialog"
msgid "Data Source"
msgstr "Datu avots"
-#: dbaccess/uiconfig/ui/choosedatasourcedialog.ui:67
+#: dbaccess/uiconfig/ui/choosedatasourcedialog.ui:81
msgctxt "choosedatasourcedialog|organize"
msgid "Or_ganize..."
msgstr "Or_ganizēt..."
-#: dbaccess/uiconfig/ui/choosedatasourcedialog.ui:100
+#: dbaccess/uiconfig/ui/choosedatasourcedialog.ui:113
msgctxt "choosedatasourcedialog|label1"
msgid "Choose a data source:"
msgstr "Izvēlieties datu avotu:"
@@ -2559,7 +2559,7 @@ msgstr "Nosaukums:"
#: dbaccess/uiconfig/ui/copytablepage.ui:175
msgctxt "copytablepage|infoLabel"
msgid "Existing data fields can be set as primary key on the type formatting step (third page) of the wizard."
-msgstr "Pastāvošie datu lauki var tikt iestatīti kā primārā atslēga vedņa tipa formatēšanas solī (trešā lappuse)."
+msgstr "Esošie datu lauki var tikt iestatīti kā primārā atslēga vedņa tipa formatēšanas solī (trešā lappuse)."
#: dbaccess/uiconfig/ui/copytablepage.ui:192
msgctxt "copytablepage|label1"
@@ -2718,7 +2718,7 @@ msgstr "Izveidot jaunu"
#: dbaccess/uiconfig/ui/deleteallrowsdialog.ui:12
msgctxt "deleteallrowsdialog|DeleteAllRowsDialog"
msgid "You are trying to delete all the columns in the table. A table cannot exist without columns. Should the table be deleted from the database? If not, the table will remain unchanged."
-msgstr "Jūs mēģināt dzēst visas kolonnas tabulā. Tabula bez kolonnām nevar eksistēt. Vai dzēst tabulu no datubāzes? Ja nē, tabula paliks nemainīta."
+msgstr "Jūs mēģināt dzēst visas tabulā esošās kolonnas. Tabula bez kolonnām nevar pastāvēt. Vai dzēst tabulu no datubāzes? Ja nē, tabula paliks nemainīta."
#: dbaccess/uiconfig/ui/designsavemodifieddialog.ui:12
msgctxt "designsavemodifieddialog|DesignSaveModifiedDialog"
@@ -2859,7 +2859,7 @@ msgstr "Laipni lūgti %PRODUCTNAME datubāzes vednī"
#: dbaccess/uiconfig/ui/generalpagewizard.ui:35
msgctxt "generalpagewizard|helpText"
msgid "Use the Database Wizard to create a new database, open an existing database file, or connect to a database stored on a server."
-msgstr "Izmantojiet datubāzes vedni, lai izveidotu jaunu datubāzi, atvērtu eksistējošu datubāzes datni, kā arī, lai savienotos ar datubāzi uz servera."
+msgstr "Izmantojiet datubāzes vedni, lai izveidotu jaunu datubāzi, atvērtu esošas datubāzes datni vai lai savienotos ar uz servera glabātu datubāzi."
#: dbaccess/uiconfig/ui/generalpagewizard.ui:50
msgctxt "generalpagewizard|sourceTypeHeader"
@@ -3389,7 +3389,7 @@ msgstr "Lietotājs “$name$: $”"
#: dbaccess/uiconfig/ui/preparepage.ui:17
msgctxt "preparepage|label1"
msgid "Welcome to the Database Macro Migration Wizard"
-msgstr "Laipni lūdzam datubāžu makro migrācijas vednī"
+msgstr "Laipni lūdzam datubāžu makrokomandu migrācijas vednī"
#: dbaccess/uiconfig/ui/preparepage.ui:34
msgctxt "preparepage|label2"
@@ -3402,11 +3402,11 @@ msgid ""
"\n"
"Before the migration can start, all forms, reports, queries and tables belonging to the document must be closed. Press 'Next' to do so."
msgstr ""
-"Šis vednis palīdzēs jums migrēt jūsu makro.\n"
+"Šis vednis palīdzēs jums migrēt jūsu makrokomandas.\n"
"\n"
-"Pēc pabeigšanas visi makro, kas agrāk bija iegulti pašreizējā datubāzes dokumenta formās un atskaitēs, būs pārvietoti uz pašu dokumentu. Arī bibliotēkas tiks atbilstoši pārdēvētas.\n"
+"Pēc pabeigšanas visas makrokomandas, kas agrāk bija iegultas pašreizējā datubāzes dokumenta formās un atskaitēs, būs pārvietotas uz pašu dokumentu. Arī bibliotēkas tiks atbilstoši pārdēvētas.\n"
"\n"
-"Ja formas un atskaites satur atsauces uz šiem makro, tās iespēju robežās tiks pieskaņotas.\n"
+"Ja formas un atskaites satur atsauces uz šīm makrokomandām, tās iespēju robežās tiks pieskaņotas.\n"
"\n"
"Pirms sākt migrāciju, visām dokumenta formām, atskaitēm, vaicājumiem un tabulām jābūt aizvērtām. Lai to darītu, spiediet “Nākamais”."
@@ -3435,77 +3435,77 @@ msgctxt "queryfilterdialog|label2"
msgid "Operator"
msgstr "Operators"
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:114
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:113
msgctxt "queryfilterdialog|label5"
msgid "Field name"
msgstr "Lauka nosaukums"
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:126
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:124
msgctxt "queryfilterdialog|label6"
msgid "Condition"
msgstr "Nosacījums"
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:140
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:137
msgctxt "queryfilterdialog|field1"
msgid "- none -"
msgstr "- nekas -"
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:154
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:152
msgctxt "queryfilterdialog|cond1"
msgid "="
msgstr "="
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:155
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:153
msgctxt "queryfilterdialog|cond1"
msgid "<>"
msgstr "<>"
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:156
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:154
msgctxt "queryfilterdialog|cond1"
msgid "<"
msgstr "<"
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:157
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:155
msgctxt "queryfilterdialog|cond1"
msgid "<="
msgstr "<="
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:158
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:156
msgctxt "queryfilterdialog|cond1"
msgid ">"
msgstr ">"
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:159
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:157
msgctxt "queryfilterdialog|cond1"
msgid ">="
msgstr ">="
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:160
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:158
msgctxt "queryfilterdialog|cond1"
msgid "like"
msgstr "līdzīgs"
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:161
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:159
msgctxt "queryfilterdialog|cond1"
msgid "not like"
msgstr "nav līdzīgs"
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:162
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:160
msgctxt "queryfilterdialog|cond1"
msgid "null"
msgstr "null"
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:163
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:161
msgctxt "queryfilterdialog|cond1"
msgid "not null"
msgstr "nav null"
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:177
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:175
msgctxt "queryfilterdialog|field2"
msgid "- none -"
msgstr "- nekas -"
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:191
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:189
msgctxt "queryfilterdialog|field3"
msgid "- none -"
msgstr "- nekas -"
@@ -3515,27 +3515,27 @@ msgctxt "queryfilterdialog|label7"
msgid "Value"
msgstr "Vērtība"
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:272
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:274
msgctxt "queryfilterdialog|op2"
msgid "AND"
msgstr "UN"
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:273
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:275
msgctxt "queryfilterdialog|op2"
msgid "OR"
msgstr "VAI"
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:287
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:289
msgctxt "queryfilterdialog|op3"
msgid "AND"
msgstr "UN"
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:288
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:290
msgctxt "queryfilterdialog|op3"
msgid "OR"
msgstr "VAI"
-#: dbaccess/uiconfig/ui/queryfilterdialog.ui:307
+#: dbaccess/uiconfig/ui/queryfilterdialog.ui:309
msgctxt "queryfilterdialog|label1"
msgid "Criteria"
msgstr "Kritērijs"
@@ -3695,22 +3695,22 @@ msgctxt "rtfcopytabledialog|RTFCopyTable"
msgid "Copy RTF Table"
msgstr "Kopēt RTF tabulu"
-#: dbaccess/uiconfig/ui/savedialog.ui:9
+#: dbaccess/uiconfig/ui/savedialog.ui:8
msgctxt "savedialog|SaveDialog"
msgid "Save As"
msgstr "Saglabāt kā"
-#: dbaccess/uiconfig/ui/savedialog.ui:85
+#: dbaccess/uiconfig/ui/savedialog.ui:89
msgctxt "savedialog|descriptionft"
msgid "Please enter a name for the object to be created:"
msgstr "Lūdzu, ievadiet izveidojamā objekta nosaukumu:"
-#: dbaccess/uiconfig/ui/savedialog.ui:100
+#: dbaccess/uiconfig/ui/savedialog.ui:104
msgctxt "savedialog|catalogft"
msgid "_Catalog:"
msgstr "_Katalogs:"
-#: dbaccess/uiconfig/ui/savedialog.ui:114
+#: dbaccess/uiconfig/ui/savedialog.ui:118
msgctxt "savedialog|schemaft"
msgid "_Schema:"
msgstr "_Shēma:"
@@ -4025,32 +4025,32 @@ msgctxt "tablesfilterdialog|TablesFilterDialog"
msgid "Tables Filter"
msgstr "Tabulu filtrs"
-#: dbaccess/uiconfig/ui/tablesfilterpage.ui:34
+#: dbaccess/uiconfig/ui/tablesfilterpage.ui:50
msgctxt "tablesfilterpage|label2"
msgid "Mark the tables that should be visible for the applications."
msgstr "Atzīmēt tabulas, kurām būtu jābūt redzamām no lietotnēm."
-#: dbaccess/uiconfig/ui/tablesfilterpage.ui:70
+#: dbaccess/uiconfig/ui/tablesfilterpage.ui:130
msgctxt "tablesfilterpage|label1"
msgid "Tables and Table Filter"
msgstr "Tables and Table Filter"
-#: dbaccess/uiconfig/ui/tablesjoindialog.ui:82
+#: dbaccess/uiconfig/ui/tablesjoindialog.ui:106
msgctxt "tablesjoindialog|tables"
msgid "Tables"
msgstr "Tabulas"
-#: dbaccess/uiconfig/ui/tablesjoindialog.ui:99
+#: dbaccess/uiconfig/ui/tablesjoindialog.ui:122
msgctxt "tablesjoindialog|queries"
msgid "Queries"
msgstr "Vaicājumi"
-#: dbaccess/uiconfig/ui/tablesjoindialog.ui:132
+#: dbaccess/uiconfig/ui/tablesjoindialog.ui:188
msgctxt "tablesjoindialog|title"
msgid "Add Tables"
msgstr "Pievienot tabulas"
-#: dbaccess/uiconfig/ui/tablesjoindialog.ui:143
+#: dbaccess/uiconfig/ui/tablesjoindialog.ui:199
msgctxt "tablesjoindialog|alttitle"
msgid "Add Table or Query"
msgstr "Pievienot tabulu vai vaicājumu"
diff --git a/source/lv/desktop/messages.po b/source/lv/desktop/messages.po
index 61577fb3cfc..eee6777f2ec 100644
--- a/source/lv/desktop/messages.po
+++ b/source/lv/desktop/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: 2018-11-05 17:38+0100\n"
-"PO-Revision-Date: 2018-09-20 16:08+0000\n"
+"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"PO-Revision-Date: 2019-03-13 13:47+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lv\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1537459721.000000\n"
+"X-POOTLE-MTIME: 1552484859.000000\n"
#: desktop/inc/strings.hrc:25
msgctxt "RID_STR_COPYING_PACKAGE"
@@ -468,7 +468,7 @@ msgstr "Nav pieejami jauni atjauninājumi."
#: desktop/inc/strings.hrc:144
msgctxt "RID_DLG_UPDATE_NOINSTALLABLE"
msgid "No installable updates are available. To see ignored or disabled updates, mark the check box 'Show all updates'."
-msgstr "Nav pieejami instalējami atjauninājumi. Lai apskatītu ignorētos vai izslēgtos atjauninājumus, atzīmējiet “Rādīt visus atjauninājumus”."
+msgstr "Nav pieejami instalējami atjauninājumi. Lai apskatītu ignorētos vai izslēgtos atjauninājumus, atzīmējiet rūtiņu “Rādīt visus atjauninājumus”."
#: desktop/inc/strings.hrc:145
msgctxt "RID_DLG_UPDATE_FAILURE"
@@ -511,86 +511,71 @@ msgid "Version"
msgstr "Versija"
#: desktop/inc/strings.hrc:153
-msgctxt "RID_DLG_UPDATE_IGNORE"
-msgid "Ignore this Update"
-msgstr "Ignorēt šo atjauninājumu"
-
-#: desktop/inc/strings.hrc:154
-msgctxt "RID_DLG_UPDATE_IGNORE_ALL"
-msgid "Ignore all Updates"
-msgstr "Ignorēt visus atjauninājumus"
-
-#: desktop/inc/strings.hrc:155
-msgctxt "RID_DLG_UPDATE_ENABLE"
-msgid "Enable Updates"
-msgstr "Ieslēgt atjauninājumus"
-
-#: desktop/inc/strings.hrc:156
msgctxt "RID_DLG_UPDATE_IGNORED_UPDATE"
msgid "This update will be ignored.\n"
msgstr "Šis atjauninājums tiks ignorēts.\n"
-#: desktop/inc/strings.hrc:158
+#: desktop/inc/strings.hrc:155
msgctxt "STR_BOOTSTRAP_ERR_CANNOT_START"
msgid "The application cannot be started. "
msgstr "Nevar palaist lietotni. "
-#: desktop/inc/strings.hrc:159
+#: desktop/inc/strings.hrc:156
msgctxt "STR_BOOTSTRAP_ERR_DIR_MISSING"
msgid "The configuration directory \"$1\" could not be found."
msgstr "Neizdevās atrast konfigurācijas mapi “$1”."
-#: desktop/inc/strings.hrc:160
+#: desktop/inc/strings.hrc:157
msgctxt "STR_BOOTSTRAP_ERR_PATH_INVALID"
msgid "The installation path is invalid."
msgstr "Kļūdaini norādīts instalācijas ceļš."
-#: desktop/inc/strings.hrc:161
+#: desktop/inc/strings.hrc:158
msgctxt "STR_BOOTSTRAP_ERR_INTERNAL"
msgid "An internal error occurred."
msgstr "Gadījās iekšējā kļūda."
-#: desktop/inc/strings.hrc:162
+#: desktop/inc/strings.hrc:159
msgctxt "STR_BOOTSTRAP_ERR_FILE_CORRUPT"
msgid "The configuration file \"$1\" is corrupt."
msgstr "Konfigurācijas datne “$1” ir bojāta."
-#: desktop/inc/strings.hrc:163
+#: desktop/inc/strings.hrc:160
msgctxt "STR_BOOTSTRAP_ERR_FILE_MISSING"
msgid "The configuration file \"$1\" was not found."
msgstr "Neizdevās atrast konfigurācijas datni “$1”."
-#: desktop/inc/strings.hrc:164
+#: desktop/inc/strings.hrc:161
msgctxt "STR_BOOTSTRAP_ERR_NO_SUPPORT"
msgid "The configuration file \"$1\" does not support the current version."
msgstr "Konfigurācijas datne “$1” nav savietojama ar šo produkta versiju."
-#: desktop/inc/strings.hrc:165
+#: desktop/inc/strings.hrc:162
msgctxt "STR_BOOTSTRAP_ERR_LANGUAGE_MISSING"
msgid "The user interface language cannot be determined."
msgstr "Nevar noteikt lietotāja saskarnes valodu."
-#: desktop/inc/strings.hrc:166
+#: desktop/inc/strings.hrc:163
msgctxt "STR_BOOTSTRAP_ERR_USERINSTALL_FAILED"
msgid "User installation could not be completed. "
msgstr "Neizdevās pabeigt lietotāja instalāciju."
-#: desktop/inc/strings.hrc:167
+#: desktop/inc/strings.hrc:164
msgctxt "STR_BOOTSTRAP_ERR_NO_CFG_SERVICE"
msgid "The configuration service is not available."
msgstr "Nav pieejams konfigurēšanas serviss."
-#: desktop/inc/strings.hrc:168
+#: desktop/inc/strings.hrc:165
msgctxt "STR_ASK_START_SETUP_MANUALLY"
msgid "Start the setup application to repair the installation from the CD or the folder containing the installation packages."
msgstr "Palaidiet instalēšanas lietotni, lai salabotu instalāciju, izmantojot instalācijas CD vai mapi, kura satur instalācijas datnes."
-#: desktop/inc/strings.hrc:169
+#: desktop/inc/strings.hrc:166
msgctxt "STR_CONFIG_ERR_ACCESS_GENERAL"
msgid "A general error occurred while accessing your central configuration. "
msgstr "Gadījās vispārēja kļūda, piekļūstot galvenajai konfigurācijai. "
-#: desktop/inc/strings.hrc:170
+#: desktop/inc/strings.hrc:167
msgctxt "STR_BOOTSTRAP_ERR_CFG_DATAACCESS"
msgid ""
"%PRODUCTNAME cannot be started due to an error in accessing the %PRODUCTNAME configuration data.\n"
@@ -601,17 +586,17 @@ msgstr ""
"\n"
"Lūdzu, sazinieties ar sistēmas administratoru."
-#: desktop/inc/strings.hrc:171
+#: desktop/inc/strings.hrc:168
msgctxt "STR_INTERNAL_ERRMSG"
msgid "The following internal error has occurred: "
msgstr "Notikusi šāda iekšējā kļūda: "
-#: desktop/inc/strings.hrc:172
+#: desktop/inc/strings.hrc:169
msgctxt "STR_LO_MUST_BE_RESTARTED"
msgid "%PRODUCTNAME must unfortunately be manually restarted once after installation or update."
msgstr "Diemžēl pēc instalēšanas vai atjaunināšanas %PRODUCTNAME ir jāpārstartē pašrocīgi."
-#: desktop/inc/strings.hrc:173
+#: desktop/inc/strings.hrc:170
msgctxt "STR_QUERY_USERDATALOCKED"
msgid ""
"Either another instance of %PRODUCTNAME is accessing your personal settings or your personal settings are locked.\n"
@@ -624,22 +609,22 @@ msgstr ""
"\n"
"Vai tiešām vēlaties turpināt?"
-#: desktop/inc/strings.hrc:174
+#: desktop/inc/strings.hrc:171
msgctxt "STR_TITLE_USERDATALOCKED"
msgid "%PRODUCTNAME %PRODUCTVERSION"
msgstr "%PRODUCTNAME %PRODUCTVERSION"
-#: desktop/inc/strings.hrc:175
+#: desktop/inc/strings.hrc:172
msgctxt "STR_ERR_PRINTDISABLED"
msgid "Printing is disabled. No documents can be printed."
msgstr "Drukāšana ir izslēgta. Dokumentus pašlaik nevar izdrukāt."
-#: desktop/inc/strings.hrc:176
+#: desktop/inc/strings.hrc:173
msgctxt "STR_BOOTSTRAP_ERR_NO_PATHSET_SERVICE"
msgid "The path manager is not available.\n"
msgstr "Nav pieejams ceļu pārvaldnieks.\n"
-#: desktop/inc/strings.hrc:177
+#: desktop/inc/strings.hrc:174
msgctxt "STR_BOOTSTRAP_ERR_NOTENOUGHDISKSPACE"
msgid ""
"%PRODUCTNAME user installation could not be completed due to insufficient free disk space. Please free more disc space at the following location and restart %PRODUCTNAME:\n"
@@ -648,7 +633,7 @@ msgstr ""
"%PRODUCTNAME lietotāja instalāciju nevar pabeigt, jo pietrūkst brīvās diska vietas. Lūdzu, atbrīvojiet diska vietu norādītājā vietā un pārstartējiet %PRODUCTNAME:\n"
"\n"
-#: desktop/inc/strings.hrc:178
+#: desktop/inc/strings.hrc:175
msgctxt "STR_BOOTSTRAP_ERR_NOACCESSRIGHTS"
msgid ""
"%PRODUCTNAME user installation could not be processed due to missing access rights. Please make sure that you have sufficient access rights for the following location and restart %PRODUCTNAME:\n"
@@ -657,62 +642,62 @@ msgstr ""
"%PRODUCTNAME lietotāja instalācija nevar tikt apstrādāta, jo pietrūkst pieejas tiesību. Lūdzu, pārliecinieties, ka jums ir pietiekamas tiesības norādītajā mapē, un pārstartējiet %PRODUCTNAME:\n"
"\n"
-#: desktop/inc/strings.hrc:180
+#: desktop/inc/strings.hrc:177
msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_1"
msgid "Extension Software License Agreement of $NAME:"
msgstr "Paplašinājuma $NAME programmatūras licences līgums:"
-#: desktop/inc/strings.hrc:181
+#: desktop/inc/strings.hrc:178
msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_2"
msgid "Read the complete License Agreement displayed above. Accept the License Agreement by typing \"yes\" on the console then press the Return key. Type \"no\" to decline and to abort the extension setup."
msgstr "Izlasiet visu licences līgumu, kas parādīts augstāk. Pieņemiet licences nosacījumus, ierakstot \"jā\" konsolē, un nospiediet Enter. Ierakstiet \"nē\", lai noraidītu līgumu un atceltu paplašinājuma instalēšanu."
-#: desktop/inc/strings.hrc:185
+#: desktop/inc/strings.hrc:182
msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_3"
msgid "[Enter \"yes\" or \"no\"]:"
msgstr "[Ievadiet \"jā\" vai \"nē\"]:"
-#: desktop/inc/strings.hrc:186
+#: desktop/inc/strings.hrc:183
msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_4"
msgid "Your input was not correct. Please enter \"yes\" or \"no\":"
msgstr "Ievade bija nepareiza. Lūdzu, ievadiet \"jā\" vai \"nē\":"
-#: desktop/inc/strings.hrc:187
+#: desktop/inc/strings.hrc:184
msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_YES"
msgid "YES"
msgstr "JĀ"
-#: desktop/inc/strings.hrc:188
+#: desktop/inc/strings.hrc:185
msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_Y"
msgid "Y"
msgstr "J"
-#: desktop/inc/strings.hrc:189
+#: desktop/inc/strings.hrc:186
msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_NO"
msgid "NO"
msgstr "NĒ"
-#: desktop/inc/strings.hrc:190
+#: desktop/inc/strings.hrc:187
msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_N"
msgid "N"
msgstr "N"
-#: desktop/inc/strings.hrc:191
+#: desktop/inc/strings.hrc:188
msgctxt "RID_STR_CONCURRENTINSTANCE"
msgid "unopkg cannot be started. The lock file indicates it is already running. If this does not apply, delete the lock file at:"
msgstr "unopkg nevar tikt palaists. Slēgšanas datne norāda, ka tas jau ir palaists. Ja tā nav, izdzēsiet šo slēgšanas datni pie:"
-#: desktop/inc/strings.hrc:193
+#: desktop/inc/strings.hrc:190
msgctxt "RID_STR_UNOPKG_ERROR"
msgid "ERROR: "
msgstr "KĻŪDA: "
-#: desktop/uiconfig/ui/dependenciesdialog.ui:9
+#: desktop/uiconfig/ui/dependenciesdialog.ui:18
msgctxt "dependenciesdialog|Dependencies"
msgid "System dependencies check"
msgstr "Sistēmas atkarību pārbaude"
-#: desktop/uiconfig/ui/dependenciesdialog.ui:59
+#: desktop/uiconfig/ui/dependenciesdialog.ui:73
msgctxt "dependenciesdialog|label1"
msgid "The extension cannot be installed as the following system dependencies are not fulfilled:"
msgstr "Paplašinājumu nevar uzinstalēt, jo nav izpildītas šis sistēmas atkarības:"
@@ -802,17 +787,17 @@ msgctxt "licensedialog|LicenseDialog"
msgid "Extension Software License Agreement"
msgstr "Paplašinājuma programmatūras licences līgums"
-#: desktop/uiconfig/ui/licensedialog.ui:21
+#: desktop/uiconfig/ui/licensedialog.ui:24
msgctxt "licensedialog|accept"
msgid "Accept"
msgstr "Pieņemt"
-#: desktop/uiconfig/ui/licensedialog.ui:36
+#: desktop/uiconfig/ui/licensedialog.ui:39
msgctxt "licensedialog|decline"
msgid "Decline"
msgstr "Noraidīt"
-#: desktop/uiconfig/ui/licensedialog.ui:67
+#: desktop/uiconfig/ui/licensedialog.ui:69
msgctxt "licensedialog|head"
msgid "Please follow these steps to proceed with the installation of the extension:"
msgstr "Lūdzu, sekojiet šiem soļiem, lai turpinātu paplašinājuma instalēšanu:"
@@ -822,27 +807,27 @@ msgctxt "licensedialog|label2"
msgid "1."
msgstr "1."
-#: desktop/uiconfig/ui/licensedialog.ui:105
+#: desktop/uiconfig/ui/licensedialog.ui:103
msgctxt "licensedialog|label3"
msgid "2."
msgstr "2."
-#: desktop/uiconfig/ui/licensedialog.ui:149
+#: desktop/uiconfig/ui/licensedialog.ui:141
msgctxt "licensedialog|label4"
msgid "Read the complete License Agreement. Use the scroll bar or the 'Scroll Down' button in this dialog to view the entire license text."
msgstr "Izlasiet licences līgumu. Izmantojiet ritjoslu vai dialoga pogu 'Ritināt lejup', lai apskatītu visu licences tekstu."
-#: desktop/uiconfig/ui/licensedialog.ui:167
+#: desktop/uiconfig/ui/licensedialog.ui:158
msgctxt "licensedialog|label5"
msgid "Accept the License Agreement for the extension by pressing the 'Accept' button."
msgstr "Piekrītiet paplašinājuma licences līgumam, nospiežot pogu “Pieņemt”."
-#: desktop/uiconfig/ui/licensedialog.ui:180
+#: desktop/uiconfig/ui/licensedialog.ui:171
msgctxt "licensedialog|down"
msgid "_Scroll Down"
msgstr "_Ritināt lejup"
-#: desktop/uiconfig/ui/showlicensedialog.ui:7
+#: desktop/uiconfig/ui/showlicensedialog.ui:8
msgctxt "showlicensedialog|ShowLicenseDialog"
msgid "Extension Software License Agreement"
msgstr "Paplašinājuma programmatūras licences līgums"
@@ -852,47 +837,47 @@ msgctxt "updatedialog|UpdateDialog"
msgid "Extension Update"
msgstr "Paplašinājumu atjaunināšana"
-#: desktop/uiconfig/ui/updatedialog.ui:38
+#: desktop/uiconfig/ui/updatedialog.ui:44
msgctxt "updatedialog|INSTALL"
msgid "_Install"
msgstr "_Instalēt"
-#: desktop/uiconfig/ui/updatedialog.ui:104
+#: desktop/uiconfig/ui/updatedialog.ui:109
msgctxt "updatedialog|UPDATE_LABEL"
msgid "_Available extension updates"
msgstr "Pieejamie paplašinājumu _atjauninājumi"
-#: desktop/uiconfig/ui/updatedialog.ui:117
+#: desktop/uiconfig/ui/updatedialog.ui:122
msgctxt "updatedialog|UPDATE_CHECKING"
msgid "Checking..."
msgstr "Pārbauda..."
-#: desktop/uiconfig/ui/updatedialog.ui:160
+#: desktop/uiconfig/ui/updatedialog.ui:206
msgctxt "updatedialog|UPDATE_ALL"
msgid "_Show all updates"
msgstr "Rādīt vi_sus atjauninājums"
-#: desktop/uiconfig/ui/updatedialog.ui:195
+#: desktop/uiconfig/ui/updatedialog.ui:240
msgctxt "updatedialog|DESCRIPTION_LABEL"
msgid "Description"
msgstr "Apraksts"
-#: desktop/uiconfig/ui/updatedialog.ui:213
+#: desktop/uiconfig/ui/updatedialog.ui:258
msgctxt "updatedialog|PUBLISHER_LABEL"
msgid "Publisher:"
msgstr "Izdevējs:"
-#: desktop/uiconfig/ui/updatedialog.ui:224
+#: desktop/uiconfig/ui/updatedialog.ui:269
msgctxt "updatedialog|PUBLISHER_LINK"
msgid "button"
msgstr "poga"
-#: desktop/uiconfig/ui/updatedialog.ui:241
+#: desktop/uiconfig/ui/updatedialog.ui:286
msgctxt "updatedialog|RELEASE_NOTES_LABEL"
msgid "What is new:"
msgstr "Kas jauns:"
-#: desktop/uiconfig/ui/updatedialog.ui:252
+#: desktop/uiconfig/ui/updatedialog.ui:297
msgctxt "updatedialog|RELEASE_NOTES_LINK"
msgid "Release notes"
msgstr "Informācija par laidienu"
@@ -902,12 +887,12 @@ msgctxt "updateinstalldialog|UpdateInstallDialog"
msgid "Download and Installation"
msgstr "Lejupielādēšana un instalēšana"
-#: desktop/uiconfig/ui/updateinstalldialog.ui:84
+#: desktop/uiconfig/ui/updateinstalldialog.ui:90
msgctxt "updateinstalldialog|DOWNLOADING"
msgid "Downloading extensions..."
msgstr "Lejupielādē paplašinājumus..."
-#: desktop/uiconfig/ui/updateinstalldialog.ui:122
+#: desktop/uiconfig/ui/updateinstalldialog.ui:128
msgctxt "updateinstalldialog|RESULTS"
msgid "Result"
msgstr "Rezultāts"
diff --git a/source/lv/dictionaries/en/dialog/registry/data/org/openoffice/Office.po b/source/lv/dictionaries/en/dialog/registry/data/org/openoffice/Office.po
index 2f895c37f02..93380651247 100644
--- a/source/lv/dictionaries/en/dialog/registry/data/org/openoffice/Office.po
+++ b/source/lv/dictionaries/en/dialog/registry/data/org/openoffice/Office.po
@@ -3,17 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-11-20 13:01+0100\n"
-"PO-Revision-Date: 2011-10-21 22:55+0300\n"
-"Last-Translator: Rūdofls Mazurs <rudolfs.mazurs@gmail.com>\n"
+"POT-Creation-Date: 2019-01-12 13:17+0100\n"
+"PO-Revision-Date: 2019-03-01 14:09+0000\n"
+"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
"Language: lv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1551449378.000000\n"
#: OptionsDialog.xcu
msgctxt ""
@@ -30,5 +31,5 @@ msgctxt ""
"..OptionsDialog.Nodes.LanguageSettings.Leaves.org.openoffice.lightproof.en\n"
"Label\n"
"value.text"
-msgid "English sentence checking"
+msgid "English Sentence Checking"
msgstr "Gramatikas pārbaude angļu valodā"
diff --git a/source/lv/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po b/source/lv/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po
index 6b87bf352aa..dceabee78ca 100644
--- a/source/lv/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po
+++ b/source/lv/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po
@@ -3,17 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-11-20 13:01+0100\n"
-"PO-Revision-Date: 2011-10-21 22:55+0300\n"
-"Last-Translator: Rūdofls Mazurs <rudolfs.mazurs@gmail.com>\n"
+"POT-Creation-Date: 2019-01-12 13:17+0100\n"
+"PO-Revision-Date: 2019-03-01 14:09+0000\n"
+"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
"Language: lv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1551449395.000000\n"
#: OptionsDialog.xcu
msgctxt ""
@@ -30,5 +31,5 @@ msgctxt ""
"..OptionsDialog.Nodes.LanguageSettings.Leaves.org.openoffice.lightproof.hu_HU\n"
"Label\n"
"value.text"
-msgid "Hungarian sentence checking"
+msgid "Hungarian Sentence Checking"
msgstr "Gramatikas pārbaude ungāru valodā"
diff --git a/source/lv/dictionaries/pt_BR/dialog.po b/source/lv/dictionaries/pt_BR/dialog.po
index 5f35d46d43a..39db8782bef 100644
--- a/source/lv/dictionaries/pt_BR/dialog.po
+++ b/source/lv/dictionaries/pt_BR/dialog.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2015-08-10 13:22+0000\n"
-"Last-Translator: nitalynx <nitalynx@gmail.com>\n"
+"POT-Creation-Date: 2019-01-12 13:17+0100\n"
+"PO-Revision-Date: 2019-02-22 06:13+0000\n"
+"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.lv>\n"
"Language: lv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1439212941.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1550816035.000000\n"
#: OptionsDialog.xcu
msgctxt ""
@@ -31,5 +31,5 @@ msgctxt ""
"..OptionsDialog.Nodes.LanguageSettings.Leaves.org.openoffice.lightproof.pt_BR\n"
"Label\n"
"value.text"
-msgid "Grammar checking (Portuguese)"
+msgid "Grammar Checking (Portuguese)"
msgstr "Gramatikas pārbaude (portugāļu)"
diff --git a/source/lv/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po b/source/lv/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po
index 0838dce0efd..edd0faae984 100644
--- a/source/lv/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po
+++ b/source/lv/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-06-16 22:46+0200\n"
-"PO-Revision-Date: 2013-01-22 10:24+0200\n"
-"Last-Translator: Rūdolfs Mazurs <rudolfs.mazurs@gmail.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-01-12 13:17+0100\n"
+"PO-Revision-Date: 2019-02-22 06:17+0000\n"
+"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <kde-i18n-doc@kde.org>\n"
"Language: lv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1550816238.000000\n"
#: OptionsDialog.xcu
msgctxt ""
@@ -30,5 +31,5 @@ msgctxt ""
"..OptionsDialog.Nodes.LanguageSettings.Leaves.org.openoffice.lightproof.pt_BR\n"
"Label\n"
"value.text"
-msgid "Grammar checking (Portuguese)"
+msgid "Grammar Checking (Portuguese)"
msgstr "Gramatikas pārbaude (portugāļu)"
diff --git a/source/lv/dictionaries/ru_RU/dialog.po b/source/lv/dictionaries/ru_RU/dialog.po
index 94f79301a3b..36e94572615 100644
--- a/source/lv/dictionaries/ru_RU/dialog.po
+++ b/source/lv/dictionaries/ru_RU/dialog.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-11-05 17:38+0100\n"
-"PO-Revision-Date: 2015-08-10 13:36+0000\n"
+"PO-Revision-Date: 2019-02-22 06:17+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lv\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1439213767.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1550816253.000000\n"
#: ru_RU_en_US.properties
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"typographica\n"
"property.text"
msgid "Typographical"
-msgstr ""
+msgstr "Tipogrāfiskais"
#: ru_RU_en_US.properties
msgctxt ""
diff --git a/source/lv/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po b/source/lv/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po
index 75669a8a8fa..aced578f1f8 100644
--- a/source/lv/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po
+++ b/source/lv/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-10-21 22:55+0300\n"
-"Last-Translator: Rūdofls Mazurs <rudolfs.mazurs@gmail.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-01-12 13:17+0100\n"
+"PO-Revision-Date: 2019-03-02 15:06+0000\n"
+"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
"Language: lv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1551539175.000000\n"
#: OptionsDialog.xcu
msgctxt ""
@@ -30,5 +31,5 @@ msgctxt ""
"..OptionsDialog.Nodes.LanguageSettings.Leaves.org.openoffice.lightproof.ru_RU\n"
"Label\n"
"value.text"
-msgid "Grammar checking (Russian)"
+msgid "Grammar Checking (Russian)"
msgstr "Gramatikas pārbaude krievu valodā"
diff --git a/source/lv/editeng/messages.po b/source/lv/editeng/messages.po
index 4e037a02e1a..863c32f98ec 100644
--- a/source/lv/editeng/messages.po
+++ b/source/lv/editeng/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-02-27 13:56+0100\n"
-"PO-Revision-Date: 2018-03-04 11:27+0000\n"
+"PO-Revision-Date: 2019-02-20 11:29+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lv\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1520162820.000000\n"
+"X-POOTLE-MTIME: 1550662181.000000\n"
#: editeng/uiconfig/ui/spellmenu.ui:12
msgctxt "spellmenu|ignore"
@@ -300,12 +300,12 @@ msgstr "Pasvītrojums (garas svītras)"
#: include/editeng/editrids.hrc:85
msgctxt "RID_SVXITEMS_UL_DASHDOT"
msgid "Underline (dot dash)"
-msgstr "Pasvītrojums (punkts svītra)"
+msgstr "Pasvītrojums (punkts—domuzīme)"
#: include/editeng/editrids.hrc:86
msgctxt "RID_SVXITEMS_UL_DASHDOTDOT"
msgid "Underline (dot dot dash)"
-msgstr "Pasvītrojums (punkts punkts svītra)"
+msgstr "Pasvītrojums (punkts—punkts—domuzīme)"
#: include/editeng/editrids.hrc:87
msgctxt "RID_SVXITEMS_UL_SMALLWAVE"
@@ -345,12 +345,12 @@ msgstr "Pasvītrojums (garas svītras, trekns)"
#: include/editeng/editrids.hrc:94
msgctxt "RID_SVXITEMS_UL_BOLDDASHDOT"
msgid "Underline (dot dash, bold)"
-msgstr "Pasvītrojums (punkts svītra, trekns)"
+msgstr "Pasvītrojums (punkts—domuzīme, trekns)"
#: include/editeng/editrids.hrc:95
msgctxt "RID_SVXITEMS_UL_BOLDDASHDOTDOT"
msgid "Underline (dot dot dash, bold)"
-msgstr "Pasvītrojums (punkts punkts svītra, trekns)"
+msgstr "Pasvītrojums (punkts—punkts—domuzīme, trekns)"
#: include/editeng/editrids.hrc:96
msgctxt "RID_SVXITEMS_UL_BOLDWAVE"
@@ -396,12 +396,12 @@ msgstr "Virssvītra (garas svītras)"
#: include/editeng/editrids.hrc:106
msgctxt "RID_SVXITEMS_OL_DASHDOT"
msgid "Overline (dot dash)"
-msgstr "Virssvītra (punkts svītra)"
+msgstr "Virssvītra (punkts—domuzīme)"
#: include/editeng/editrids.hrc:107
msgctxt "RID_SVXITEMS_OL_DASHDOTDOT"
msgid "Overline (dot dot dash)"
-msgstr "Virssvītra (punkts punkts svītra)"
+msgstr "Virssvītra (punkts—punkts—domuzīme)"
#: include/editeng/editrids.hrc:108
msgctxt "RID_SVXITEMS_OL_SMALLWAVE"
@@ -441,12 +441,12 @@ msgstr "Virssvītra (garas treknas svītras)"
#: include/editeng/editrids.hrc:115
msgctxt "RID_SVXITEMS_OL_BOLDDASHDOT"
msgid "Overline (dot dash, bold)"
-msgstr "Virssvītra (punkts svītra, trekns)"
+msgstr "Virssvītra (punkts—domuzīme, trekns)"
#: include/editeng/editrids.hrc:116
msgctxt "RID_SVXITEMS_OL_BOLDDASHDOTDOT"
msgid "Overline (dot dot dash, bold)"
-msgstr "Virssvītra (punkts punkts svītra, trekns)"
+msgstr "Virssvītra (punkts—punkts—domuzīme, trekns)"
#: include/editeng/editrids.hrc:117
msgctxt "RID_SVXITEMS_OL_BOLDWAVE"
@@ -645,12 +645,12 @@ msgstr "Dubultas, fiksētas plānas līnijas"
#: include/editeng/editrids.hrc:163
msgctxt "RID_DASH_DOT"
msgid "Single, dash-dot"
-msgstr "Viena, svītra - punkts"
+msgstr "Viena, domuzīme—punkts"
#: include/editeng/editrids.hrc:164
msgctxt "RID_DASH_DOT_DOT"
msgid "Single, dash-dot-dot"
-msgstr "Viena, svītra - punkts - punkts"
+msgstr "Viena, domuzīme—punkts—punkts"
#: include/editeng/editrids.hrc:165
msgctxt "RID_SVXITEMS_METRIC_MM"
diff --git a/source/lv/extensions/messages.po b/source/lv/extensions/messages.po
index d845893233d..9aede5343ab 100644
--- a/source/lv/extensions/messages.po
+++ b/source/lv/extensions/messages.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-12-17 16:28+0100\n"
-"PO-Revision-Date: 2018-11-12 12:01+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"PO-Revision-Date: 2019-04-17 09:13+0000\n"
+"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lv\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1542024088.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1555492410.000000\n"
#: extensions/inc/command.hrc:29
msgctxt "RID_RSC_ENUM_COMMAND_TYPE"
@@ -1029,7 +1029,7 @@ msgstr "Laika formāts"
#: extensions/inc/strings.hrc:103
msgctxt "RID_STR_CURRSYM_POSITION"
msgid "Prefix symbol"
-msgstr "Prefiksa simbols"
+msgstr "Priedēkļa simbols"
#: extensions/inc/strings.hrc:104
msgctxt "RID_STR_VALUE"
@@ -1715,37 +1715,97 @@ msgctxt "RID_STR_FONT_DEFAULT"
msgid "(Default)"
msgstr "(Noklusējuma)"
+#: extensions/inc/strings.hrc:244
+msgctxt "RID_STR_URL"
+msgid "URL"
+msgstr "URL"
+
#: extensions/inc/strings.hrc:245
+msgctxt "RID_STR_SELECTIONMODEL"
+msgid "Selection Type"
+msgstr "Izvēles tips"
+
+#: extensions/inc/strings.hrc:246
+msgctxt "RID_STR_USEGRIDLINE"
+msgid "Use grid line"
+msgstr "Lietot režģa līniju"
+
+#: extensions/inc/strings.hrc:247
+msgctxt "RID_STR_GRIDLINECOLOR"
+msgid "Grid line color"
+msgstr "Režģa līnijas krāsa"
+
+#: extensions/inc/strings.hrc:248
+msgctxt "RID_STR_SHOWCOLUMNHEADER"
+msgid "Show column header"
+msgstr "Rādīt kolonnas galveni"
+
+#: extensions/inc/strings.hrc:249
+msgctxt "RID_STR_SHOWROWHEADER"
+msgid "Show row header"
+msgstr "Rādīt rindas galveni"
+
+#: extensions/inc/strings.hrc:250
+msgctxt "RID_STR_HEADERBACKGROUNDCOLOR"
+msgid "Header background color"
+msgstr "Galvenes fona krāsa"
+
+#: extensions/inc/strings.hrc:251
+msgctxt "RID_STR_HEADERTEXTCOLOR"
+msgid "Header text color"
+msgstr "Galvenes teksta krāsa"
+
+#: extensions/inc/strings.hrc:252
+msgctxt "RID_STR_ACTIVESELECTIONBACKGROUNDCOLOR"
+msgid "Active selection background color"
+msgstr "Aktīvās izvēles fona krāsa"
+
+#: extensions/inc/strings.hrc:253
+msgctxt "ID_STR_ACTIVESELECTIONTEXTCOLOR"
+msgid "Active selection text color"
+msgstr "Aktīvās izvēles teksta krāsa"
+
+#: extensions/inc/strings.hrc:254
+msgctxt "RID_STR_INACTIVESELECTIONBACKGROUNDCOLOR"
+msgid "Inactive selection background color"
+msgstr "Neaktīvās izvēles fona krāsa"
+
+#: extensions/inc/strings.hrc:255
+msgctxt "RID_STR_INACTIVESELECTIONTEXTCOLOR"
+msgid "Inactive selection text color"
+msgstr "Neaktīvās izvēles teksta krāsa"
+
+#: extensions/inc/strings.hrc:256
msgctxt "RID_STR_STANDARD"
msgid "Default"
msgstr "Noklusējuma"
-#: extensions/inc/strings.hrc:246
+#: extensions/inc/strings.hrc:257
msgctxt "RID_STR_PROPPAGE_DEFAULT"
msgid "General"
msgstr "Pamata"
-#: extensions/inc/strings.hrc:247
+#: extensions/inc/strings.hrc:258
msgctxt "RID_STR_PROPPAGE_DATA"
msgid "Data"
msgstr "Dati"
-#: extensions/inc/strings.hrc:248
+#: extensions/inc/strings.hrc:259
msgctxt "RID_STR_HELP_SECTION_LABEL"
msgid "Help"
msgstr "Palīdzība"
-#: extensions/inc/strings.hrc:249
+#: extensions/inc/strings.hrc:260
msgctxt "RID_EMBED_IMAGE_PLACEHOLDER"
msgid "<Embedded-Image>"
msgstr "<Iegults attēls>"
-#: extensions/inc/strings.hrc:250
+#: extensions/inc/strings.hrc:261
msgctxt "RID_STR_TEXT_FORMAT"
msgid "Text"
msgstr "Teksts"
-#: extensions/inc/strings.hrc:252
+#: extensions/inc/strings.hrc:263
msgctxt "RID_STR_CONFIRM_DELETE_DATA_TYPE"
msgid ""
"Do you want to delete the data type '#type#' from the model?\n"
@@ -1754,143 +1814,143 @@ msgstr ""
"Vai vēlaties dzēst datu tipu '#type#' no modeļa?\n"
"Ievērojiet, ka tas ietekmēs visas vadīklas, kas ir piesaistītas šim datu tipam."
-#: extensions/inc/strings.hrc:254
+#: extensions/inc/strings.hrc:265
msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
msgid "Button"
msgstr "Poga"
-#: extensions/inc/strings.hrc:255
+#: extensions/inc/strings.hrc:266
msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
msgid "Option Button"
msgstr "Opciju poga"
-#: extensions/inc/strings.hrc:256
+#: extensions/inc/strings.hrc:267
msgctxt "RID_STR_PROPTITLE_CHECKBOX"
msgid "Check Box"
msgstr "Izvēles rūtiņa"
-#: extensions/inc/strings.hrc:257
+#: extensions/inc/strings.hrc:268
msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
msgid "Label Field"
msgstr "Etiķetes lauks"
-#: extensions/inc/strings.hrc:258
+#: extensions/inc/strings.hrc:269
msgctxt "RID_STR_PROPTITLE_GROUPBOX"
msgid "Group Box"
msgstr "Grupas rāmis"
-#: extensions/inc/strings.hrc:259
+#: extensions/inc/strings.hrc:270
msgctxt "RID_STR_PROPTITLE_EDIT"
msgid "Text Box"
msgstr "Tekstlodziņš"
-#: extensions/inc/strings.hrc:260
+#: extensions/inc/strings.hrc:271
msgctxt "RID_STR_PROPTITLE_FORMATTED"
msgid "Formatted Field"
msgstr "Formatēts lauks"
-#: extensions/inc/strings.hrc:261
+#: extensions/inc/strings.hrc:272
msgctxt "RID_STR_PROPTITLE_LISTBOX"
msgid "List Box"
msgstr "Saraksta lodziņš"
-#: extensions/inc/strings.hrc:262
+#: extensions/inc/strings.hrc:273
msgctxt "RID_STR_PROPTITLE_COMBOBOX"
msgid "Combo Box"
msgstr "Kombinētais lodziņš"
-#: extensions/inc/strings.hrc:263
+#: extensions/inc/strings.hrc:274
msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
msgid "Image Button"
msgstr "Attēla poga"
-#: extensions/inc/strings.hrc:264
+#: extensions/inc/strings.hrc:275
msgctxt "RID_STR_PROPTITLE_HIDDENCONTROL"
msgid "Hidden Control"
msgstr "Slēpta vadīkla"
-#: extensions/inc/strings.hrc:265
+#: extensions/inc/strings.hrc:276
msgctxt "RID_STR_PROPTITLE_UNKNOWNCONTROL"
msgid "Control (unknown type)"
msgstr "Vadīkla (nezināma tipa)"
-#: extensions/inc/strings.hrc:266
+#: extensions/inc/strings.hrc:277
msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
msgid "Image Control"
msgstr "Attēla vadīkla"
-#: extensions/inc/strings.hrc:267
+#: extensions/inc/strings.hrc:278
msgctxt "RID_STR_PROPTITLE_FILECONTROL"
msgid "File Selection"
msgstr "Datņu izvēle"
-#: extensions/inc/strings.hrc:268
+#: extensions/inc/strings.hrc:279
msgctxt "RID_STR_PROPTITLE_DATEFIELD"
msgid "Date Field"
msgstr "Datuma lauks"
-#: extensions/inc/strings.hrc:269
+#: extensions/inc/strings.hrc:280
msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
msgid "Time Field"
msgstr "Laika lauks"
-#: extensions/inc/strings.hrc:270
+#: extensions/inc/strings.hrc:281
msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
msgid "Numeric Field"
msgstr "Skaitļu lauks"
-#: extensions/inc/strings.hrc:271
+#: extensions/inc/strings.hrc:282
msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
msgid "Currency Field"
msgstr "Valūtas lauks"
-#: extensions/inc/strings.hrc:272
+#: extensions/inc/strings.hrc:283
msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
msgid "Pattern Field"
msgstr "Parauga lauks"
-#: extensions/inc/strings.hrc:273
+#: extensions/inc/strings.hrc:284
msgctxt "RID_STR_PROPTITLE_DBGRID"
msgid "Table Control "
msgstr "Tabulas vadīkla"
-#: extensions/inc/strings.hrc:275
+#: extensions/inc/strings.hrc:286
msgctxt "STR_DETAIL_FORM"
msgid "Sub Form"
msgstr "Apakšforma"
-#: extensions/inc/strings.hrc:276
+#: extensions/inc/strings.hrc:287
msgctxt "STR_MASTER_FORM"
msgid "Master Form"
msgstr "Galvenā forma"
#. To translators: # will be replace with a name.
-#: extensions/inc/strings.hrc:278
+#: extensions/inc/strings.hrc:289
msgctxt "STR_ERROR_RETRIEVING_COLUMNS"
msgid "The columns of '#' could not be retrieved."
msgstr "Neizdevās iegūt apakšformas '#' kolonnas."
-#: extensions/inc/strings.hrc:280
+#: extensions/inc/strings.hrc:291
msgctxt "RID_STR_FORMS"
msgid "Forms"
msgstr "Formas"
-#: extensions/inc/strings.hrc:282
+#: extensions/inc/strings.hrc:293
msgctxt "RID_UPDATE_STR_CHECKING"
msgid "Checking..."
msgstr "Pārbauda..."
-#: extensions/inc/strings.hrc:283
+#: extensions/inc/strings.hrc:294
msgctxt "RID_UPDATE_STR_CHECKING_ERR"
msgid "Checking for an update failed."
msgstr "Atjauninājumu pārbaude neizdevās."
-#: extensions/inc/strings.hrc:284
+#: extensions/inc/strings.hrc:295
msgctxt "RID_UPDATE_STR_NO_UPD_FOUND"
msgid "%PRODUCTNAME %PRODUCTVERSION is up to date."
msgstr "%PRODUCTNAME %PRODUCTVERSION ir visjaunākā versija."
-#: extensions/inc/strings.hrc:285
+#: extensions/inc/strings.hrc:296
msgctxt "RID_UPDATE_STR_UPD_FOUND"
msgid ""
"%PRODUCTNAME %NEXTVERSION is available.\n"
@@ -1907,22 +1967,22 @@ msgstr ""
"Piezīme: Pirms atjauninājuma lejupielādēšanas, pārliecinieties, ka jums ir pietiekamas piekļuves tiesības, lai to uzinstalētu.\n"
"Varētu vajadzēt ievadīt paroli, parasti tā ir administratora vai root parole."
-#: extensions/inc/strings.hrc:286
+#: extensions/inc/strings.hrc:297
msgctxt "RID_UPDATE_STR_DLG_TITLE"
msgid "Check for Updates"
msgstr "Pārbaudīt atjauninājumus"
-#: extensions/inc/strings.hrc:287
+#: extensions/inc/strings.hrc:298
msgctxt "RID_UPDATE_STR_DOWNLOAD_PAUSE"
msgid "Downloading %PRODUCTNAME %NEXTVERSION paused at..."
msgstr "%PRODUCTNAME %NEXTVERSION lejupielādēšana tika pauzēta pie..."
-#: extensions/inc/strings.hrc:288
+#: extensions/inc/strings.hrc:299
msgctxt "RID_UPDATE_STR_DOWNLOAD_ERR"
msgid "Downloading %PRODUCTNAME %NEXTVERSION stalled at"
msgstr "%PRODUCTNAME %NEXTVERSION lejupielādēšanas apstājās pie"
-#: extensions/inc/strings.hrc:289
+#: extensions/inc/strings.hrc:300
msgctxt "RID_UPDATE_STR_DOWNLOAD_WARN"
msgid ""
"The download location is: %DOWNLOAD_PATH.\n"
@@ -1933,12 +1993,12 @@ msgstr ""
"\n"
"Jūs varat mainīt lejupielādes vietu zem Rīki – Opcijas... - %PRODUCTNAME – Tiešsaistes atjaunināšana."
-#: extensions/inc/strings.hrc:290
+#: extensions/inc/strings.hrc:301
msgctxt "RID_UPDATE_STR_DOWNLOAD_DESCR"
msgid "%FILE_NAME has been downloaded to %DOWNLOAD_PATH."
msgstr "%FILE_NAME ir lejupielādēts uz %DOWNLOAD_PATH."
-#: extensions/inc/strings.hrc:291
+#: extensions/inc/strings.hrc:302
msgctxt "RID_UPDATE_STR_DOWNLOAD_UNAVAIL"
msgid ""
"The automatic download of the update is currently not available.\n"
@@ -1949,207 +2009,192 @@ msgstr ""
"\n"
"Spiediet 'Lejupielādēt...', lai no Interneta pašrocīgi lejupielādētu %PRODUCTNAME %NEXTVERSION."
-#: extensions/inc/strings.hrc:292
+#: extensions/inc/strings.hrc:303
msgctxt "RID_UPDATE_STR_DOWNLOADING"
msgid "Downloading %PRODUCTNAME %NEXTVERSION..."
msgstr "Lejupielādē %PRODUCTNAME %NEXTVERSION..."
-#: extensions/inc/strings.hrc:293
+#: extensions/inc/strings.hrc:304
msgctxt "RID_UPDATE_STR_READY_INSTALL"
msgid "Download of %PRODUCTNAME %NEXTVERSION completed. Ready for installation."
msgstr "Ir pabeigta %PRODUCTNAME %NEXTVERSION lejupielāde. Gatavs instalēšanai."
-#: extensions/inc/strings.hrc:294
-msgctxt "RID_UPDATE_STR_CANCEL_TITLE"
-msgid "%PRODUCTNAME %PRODUCTVERSION"
-msgstr "%PRODUCTNAME %PRODUCTVERSION"
-
-#: extensions/inc/strings.hrc:295
+#: extensions/inc/strings.hrc:305
msgctxt "RID_UPDATE_STR_CANCEL_DOWNLOAD"
msgid "Do you really want to cancel the download?"
msgstr "Vai tiešām vēlaties atcelt lejupielādēšanu?"
-#: extensions/inc/strings.hrc:296
+#: extensions/inc/strings.hrc:306
msgctxt "RID_UPDATE_STR_BEGIN_INSTALL"
msgid "To install the update, %PRODUCTNAME %PRODUCTVERSION needs to be closed. Do you want to install the update now?"
msgstr "Lai instalētu atjauninājumu, ir jāaizver %PRODUCTNAME %PRODUCTVERSION. Vai vēlaties atjaunināt tagad?"
-#: extensions/inc/strings.hrc:297
-msgctxt "RID_UPDATE_STR_INSTALL_NOW"
-msgid "Install ~now"
-msgstr "I~nstalēt tagad"
-
-#: extensions/inc/strings.hrc:298
-msgctxt "RID_UPDATE_STR_INSTALL_LATER"
-msgid "Install ~later"
-msgstr "Instalēt vē~lāk"
-
-#: extensions/inc/strings.hrc:299
+#: extensions/inc/strings.hrc:307
msgctxt "RID_UPDATE_STR_INSTALL_ERROR"
msgid "Could not run the installer application, please run %FILE_NAME in %DOWNLOAD_PATH manually."
msgstr "Nevarēja palaist instalēšanas lietotni. Lūdzu, palaidiet %FILE_NAME iekš %DOWNLOAD_PATH pašrocīgi."
-#: extensions/inc/strings.hrc:300
+#: extensions/inc/strings.hrc:308
msgctxt "RID_UPDATE_STR_OVERWRITE_WARNING"
msgid "A file with that name already exists! Do you want to overwrite the existing file?"
-msgstr "Datne ar tādu nosaukumu jau eksistē! Vai vēlaties pārrakstīt esošo datni?"
+msgstr "Datne ar tādu nosaukumu jau pastāv! Vai vēlaties pārrakstīt esošo datni?"
-#: extensions/inc/strings.hrc:301
+#: extensions/inc/strings.hrc:309
msgctxt "RID_UPDATE_STR_RELOAD_WARNING"
msgid "A file with the name '%FILENAME' already exists in '%DOWNLOAD_PATH'! Do you want to continue with the download or delete and reload the file?"
-msgstr "Datne ar nosaukumu '%FILENAME' jau atrodas iekš '%DOWNLOAD_PATH'! Vai vēlaties turpināt tā lejupielādi vai dzēst to un ielādēt no jauna?"
+msgstr "Datne ar nosaukumu '%FILENAME' jau pastāv iekš '%DOWNLOAD_PATH'! Vai vēlaties turpināt tās lejupielādi vai dzēst to un ielādēt no jauna?"
-#: extensions/inc/strings.hrc:302
+#: extensions/inc/strings.hrc:310
msgctxt "RID_UPDATE_STR_RELOAD_RELOAD"
msgid "Reload File"
msgstr "Ielādēt datni atkārtoti"
-#: extensions/inc/strings.hrc:303
+#: extensions/inc/strings.hrc:311
msgctxt "RID_UPDATE_STR_RELOAD_CONTINUE"
msgid "Continue"
msgstr "Turpināt"
-#: extensions/inc/strings.hrc:304
+#: extensions/inc/strings.hrc:312
msgctxt "RID_UPDATE_STR_PERCENT"
msgid "%PERCENT%"
msgstr "%PERCENT%"
-#: extensions/inc/strings.hrc:305
+#: extensions/inc/strings.hrc:313
msgctxt "RID_UPDATE_FT_STATUS"
msgid "Status"
msgstr "Statuss"
-#: extensions/inc/strings.hrc:306
+#: extensions/inc/strings.hrc:314
msgctxt "RID_UPDATE_FT_DESCRIPTION"
msgid "Description"
msgstr "Apraksts"
-#: extensions/inc/strings.hrc:307
+#: extensions/inc/strings.hrc:315
msgctxt "RID_UPDATE_BTN_CLOSE"
msgid "Close"
msgstr "Aizvērt"
-#: extensions/inc/strings.hrc:308
+#: extensions/inc/strings.hrc:316
msgctxt "RID_UPDATE_BTN_DOWNLOAD"
msgid "~Download"
msgstr "Lejupielā~dēt"
-#: extensions/inc/strings.hrc:309
+#: extensions/inc/strings.hrc:317
msgctxt "RID_UPDATE_BTN_INSTALL"
msgid "~Install"
msgstr "~Instalēt"
-#: extensions/inc/strings.hrc:310
+#: extensions/inc/strings.hrc:318
msgctxt "RID_UPDATE_BTN_PAUSE"
msgid "~Pause"
msgstr "~Pauzēt"
-#: extensions/inc/strings.hrc:311
+#: extensions/inc/strings.hrc:319
msgctxt "RID_UPDATE_BTN_RESUME"
msgid "~Resume"
msgstr "~Atsākt"
-#: extensions/inc/strings.hrc:312
+#: extensions/inc/strings.hrc:320
msgctxt "RID_UPDATE_BTN_CANCEL"
msgid "Cancel"
msgstr "Atcelt"
-#: extensions/inc/strings.hrc:313
+#: extensions/inc/strings.hrc:321
msgctxt "RID_UPDATE_BUBBLE_T_UPDATE_AVAIL"
msgid "%PRODUCTNAME update available"
msgstr "Ir pieejams %PRODUCTNAME atjauninājums"
-#: extensions/inc/strings.hrc:314
+#: extensions/inc/strings.hrc:322
msgctxt "RID_UPDATE_BUBBLE_UPDATE_AVAIL"
msgid "Click the icon to start the download."
msgstr "Spiediet uz ikonas, lai sāktu lejupielādēšanu."
-#: extensions/inc/strings.hrc:315
+#: extensions/inc/strings.hrc:323
msgctxt "RID_UPDATE_BUBBLE_T_UPDATE_NO_DOWN"
msgid "%PRODUCTNAME update available"
msgstr "Ir pieejams %PRODUCTNAME atjauninājums"
-#: extensions/inc/strings.hrc:316
+#: extensions/inc/strings.hrc:324
msgctxt "RID_UPDATE_BUBBLE_UPDATE_NO_DOWN"
msgid "Click the icon for more information."
msgstr "Spiediet uz ikonas, lai uzzinātu vairāk."
-#: extensions/inc/strings.hrc:317
+#: extensions/inc/strings.hrc:325
msgctxt "RID_UPDATE_BUBBLE_T_AUTO_START"
msgid "%PRODUCTNAME update available"
msgstr "Ir pieejams %PRODUCTNAME atjauninājums"
-#: extensions/inc/strings.hrc:318
+#: extensions/inc/strings.hrc:326
msgctxt "RID_UPDATE_BUBBLE_AUTO_START"
msgid "Download of update begins."
msgstr "Sākas atjauninājumu lejupielādēšana."
-#: extensions/inc/strings.hrc:319
+#: extensions/inc/strings.hrc:327
msgctxt "RID_UPDATE_BUBBLE_T_DOWNLOADING"
msgid "Download of update in progress"
msgstr "Norit atjauninājuma lejupielādēšana"
-#: extensions/inc/strings.hrc:320
+#: extensions/inc/strings.hrc:328
msgctxt "RID_UPDATE_BUBBLE_DOWNLOADING"
msgid "Click the icon to pause."
msgstr "Spiediet uz ikonas, lai pauzētu."
-#: extensions/inc/strings.hrc:321
+#: extensions/inc/strings.hrc:329
msgctxt "RID_UPDATE_BUBBLE_T_DOWNLOAD_PAUSED"
msgid "Download of update paused"
msgstr "Atjauninājuma lejupielādēšana ir pauzēta"
-#: extensions/inc/strings.hrc:322
+#: extensions/inc/strings.hrc:330
msgctxt "RID_UPDATE_BUBBLE_DOWNLOAD_PAUSED"
msgid "Click the icon to resume."
msgstr "Spiediet uz ikonas, lai turpinātu."
-#: extensions/inc/strings.hrc:323
+#: extensions/inc/strings.hrc:331
msgctxt "RID_UPDATE_BUBBLE_T_ERROR_DOWNLOADING"
msgid "Download of update stalled"
msgstr "Atjauninājuma lejupielādēšana apstājās"
-#: extensions/inc/strings.hrc:324
+#: extensions/inc/strings.hrc:332
msgctxt "RID_UPDATE_BUBBLE_ERROR_DOWNLOADING"
msgid "Click the icon for more information."
msgstr "Spiediet uz ikonas, lai uzzinātu vairāk."
-#: extensions/inc/strings.hrc:325
+#: extensions/inc/strings.hrc:333
msgctxt "RID_UPDATE_BUBBLE_T_DOWNLOAD_AVAIL"
msgid "Download of update completed"
msgstr "Atjauninājuma lejupielādēšana ir pabeigta"
-#: extensions/inc/strings.hrc:326
+#: extensions/inc/strings.hrc:334
msgctxt "RID_UPDATE_BUBBLE_DOWNLOAD_AVAIL"
msgid "Click the icon to start the installation."
msgstr "Spiediet uz ikonas, lai sāktu instalēšanu."
-#: extensions/inc/strings.hrc:327
+#: extensions/inc/strings.hrc:335
msgctxt "RID_UPDATE_BUBBLE_T_EXT_UPD_AVAIL"
msgid "Updates for extensions available"
msgstr "Ir pieejami paplašinājuma atjauninājumi"
-#: extensions/inc/strings.hrc:328
+#: extensions/inc/strings.hrc:336
msgctxt "RID_UPDATE_BUBBLE_EXT_UPD_AVAIL"
msgid "Click the icon for more information."
msgstr "Spiediet uz ikonas, lai uzzinātu vairāk."
-#: extensions/inc/strings.hrc:330
+#: extensions/inc/strings.hrc:338
msgctxt "STR_COULD_NOT_BE_INIT"
msgid "The SANE interface could not be initialized. Scanning is not possible."
msgstr "Nevarēja inicializēt SANE saskarni. Skanēšana nav iespējama."
-#: extensions/inc/strings.hrc:331
+#: extensions/inc/strings.hrc:339
msgctxt "STR_SLOW_PREVIEW"
msgid "The device does not offer a preview option. Therefore, a normal scan will be used as a preview instead. This may take a considerable amount of time."
msgstr "Šai ierīcei nav priekšskatījuma opcijas. Tāpēc tā vietā vienkārša skanēšana tiks izmantota, lai iegūtu priekšskatījumu. Tas varētu aizņemt daudz laika."
-#: extensions/inc/strings.hrc:332
+#: extensions/inc/strings.hrc:340
msgctxt "STR_ERROR_SCAN"
msgid "An error occurred while scanning."
msgstr "Skenējot gadījās kļūda."
-#: extensions/inc/strings.hrc:333
+#: extensions/inc/strings.hrc:341
#, c-format
msgctxt "STR_DEVICE_DESC"
msgid ""
@@ -2163,177 +2208,177 @@ msgstr ""
"Modelis: %s\n"
"Tips: %s"
-#: extensions/inc/strings.hrc:335
+#: extensions/inc/strings.hrc:343
msgctxt "RID_BIB_STR_FRAME_TITLE"
msgid "Bibliography Database"
msgstr "Bibliogrāfijas datubāze"
-#: extensions/inc/strings.hrc:336
+#: extensions/inc/strings.hrc:344
msgctxt "RID_MAP_QUESTION"
msgid "Do you want to edit the column arrangement?"
msgstr "Vai jūs vēlaties rediģēt kolonnu izkārtojumu?"
-#: extensions/inc/strings.hrc:337
+#: extensions/inc/strings.hrc:345
msgctxt "RID_BIB_STR_NONE"
msgid "<none>"
msgstr "<nav>"
-#: extensions/inc/strings.hrc:339
+#: extensions/inc/strings.hrc:347
msgctxt "ST_ERROR_PREFIX"
msgid "The following column names could not be assigned:\n"
msgstr "Sekojošie kolonnu nosaukumi nevarēja tikt piešķirti:\n"
-#: extensions/inc/strings.hrc:340
+#: extensions/inc/strings.hrc:348
msgctxt "ST_TYPE_ARTICLE"
msgid "Article"
msgstr "Raksts"
-#: extensions/inc/strings.hrc:341
+#: extensions/inc/strings.hrc:349
msgctxt "ST_TYPE_BOOK"
msgid "Book"
msgstr "Grāmata"
-#: extensions/inc/strings.hrc:342
+#: extensions/inc/strings.hrc:350
msgctxt "ST_TYPE_BOOKLET"
msgid "Brochures"
msgstr "Brošūras"
-#: extensions/inc/strings.hrc:343
+#: extensions/inc/strings.hrc:351
msgctxt "ST_TYPE_CONFERENCE"
msgid "Conference proceedings article (BiBTeX)"
msgstr "Konferences darba raksts (BiBTeX)"
-#: extensions/inc/strings.hrc:344
+#: extensions/inc/strings.hrc:352
msgctxt "ST_TYPE_INBOOK"
msgid "Book excerpt"
msgstr "Grāmatas izraksts"
-#: extensions/inc/strings.hrc:345
+#: extensions/inc/strings.hrc:353
msgctxt "ST_TYPE_INCOLLECTION"
msgid "Book excerpt with title"
msgstr "Grāmatas izraksts ar virsrakstu"
-#: extensions/inc/strings.hrc:346
+#: extensions/inc/strings.hrc:354
msgctxt "ST_TYPE_INPROCEEDINGS"
msgid "Conference proceedings article"
msgstr "Konferences darba raksts"
-#: extensions/inc/strings.hrc:347
+#: extensions/inc/strings.hrc:355
msgctxt "ST_TYPE_JOURNAL"
msgid "Journal"
msgstr "Žurnāls"
-#: extensions/inc/strings.hrc:348
+#: extensions/inc/strings.hrc:356
msgctxt "ST_TYPE_MANUAL"
msgid "Techn. documentation"
msgstr "Tehniskā dokumentācija"
-#: extensions/inc/strings.hrc:349
+#: extensions/inc/strings.hrc:357
msgctxt "ST_TYPE_MASTERSTHESIS"
msgid "Thesis"
msgstr "Tēzes"
-#: extensions/inc/strings.hrc:350
+#: extensions/inc/strings.hrc:358
msgctxt "ST_TYPE_MISC"
msgid "Miscellaneous"
msgstr "Dažādi"
-#: extensions/inc/strings.hrc:351
+#: extensions/inc/strings.hrc:359
msgctxt "ST_TYPE_PHDTHESIS"
msgid "Dissertation"
msgstr "Disertācija"
-#: extensions/inc/strings.hrc:352
+#: extensions/inc/strings.hrc:360
msgctxt "ST_TYPE_PROCEEDINGS"
msgid "Conference proceedings"
msgstr "Konferences darbs"
-#: extensions/inc/strings.hrc:353
+#: extensions/inc/strings.hrc:361
msgctxt "ST_TYPE_TECHREPORT"
msgid "Research report"
msgstr "Pētniecības darba pārskats"
-#: extensions/inc/strings.hrc:354
+#: extensions/inc/strings.hrc:362
msgctxt "ST_TYPE_UNPUBLISHED"
msgid "Unpublished"
msgstr "Nepublicēts materiāls"
-#: extensions/inc/strings.hrc:355
+#: extensions/inc/strings.hrc:363
msgctxt "ST_TYPE_EMAIL"
-msgid "E-mail"
+msgid "Email"
msgstr "E-pasts"
-#: extensions/inc/strings.hrc:356
+#: extensions/inc/strings.hrc:364
msgctxt "ST_TYPE_WWW"
msgid "WWW document"
msgstr "Tīmekļa dokuments"
-#: extensions/inc/strings.hrc:357
+#: extensions/inc/strings.hrc:365
msgctxt "ST_TYPE_CUSTOM1"
msgid "User-defined1"
msgstr "Lietotāja definēts 1"
-#: extensions/inc/strings.hrc:358
+#: extensions/inc/strings.hrc:366
msgctxt "ST_TYPE_CUSTOM2"
msgid "User-defined2"
msgstr "Lietotāja definēts 2"
-#: extensions/inc/strings.hrc:359
+#: extensions/inc/strings.hrc:367
msgctxt "ST_TYPE_CUSTOM3"
msgid "User-defined3"
msgstr "Lietotāja definēts 3"
-#: extensions/inc/strings.hrc:360
+#: extensions/inc/strings.hrc:368
msgctxt "ST_TYPE_CUSTOM4"
msgid "User-defined4"
msgstr "Lietotāja definēts 4"
-#: extensions/inc/strings.hrc:361
+#: extensions/inc/strings.hrc:369
msgctxt "ST_TYPE_CUSTOM5"
msgid "User-defined5"
msgstr "Lietotāja definēts 5"
-#: extensions/inc/strings.hrc:362
+#: extensions/inc/strings.hrc:370
msgctxt "ST_TYPE_TITLE"
msgid "General"
msgstr "Vispārēji"
-#: extensions/inc/strings.hrc:364
+#: extensions/inc/strings.hrc:372
msgctxt "RID_STR_ABSOURCEDIALOGTITLE"
msgid "Address Book Data Source Wizard"
msgstr "Adrešu grāmatas datu avota vednis"
-#: extensions/inc/strings.hrc:365
+#: extensions/inc/strings.hrc:373
msgctxt "RID_STR_SELECT_ABTYPE"
-msgid "Address book type"
+msgid "Address Book Type"
msgstr "Adrešu grāmatas tips"
-#: extensions/inc/strings.hrc:366
+#: extensions/inc/strings.hrc:374
msgctxt "RID_STR_INVOKE_ADMIN_DIALOG"
msgid "Connection Settings"
msgstr "Savienojuma iestatījumi"
-#: extensions/inc/strings.hrc:367
+#: extensions/inc/strings.hrc:375
msgctxt "RID_STR_TABLE_SELECTION"
-msgid "Table selection"
+msgid "Table Selection"
msgstr "Tabulas izvēle"
-#: extensions/inc/strings.hrc:368
+#: extensions/inc/strings.hrc:376
msgctxt "RID_STR_MANUAL_FIELD_MAPPING"
msgid "Field Assignment"
msgstr "Lauka piesaiste"
-#: extensions/inc/strings.hrc:369
+#: extensions/inc/strings.hrc:377
msgctxt "RID_STR_FINAL_CONFIRM"
msgid "Data Source Title"
msgstr "Datu avota nosaukums"
-#: extensions/inc/strings.hrc:370
+#: extensions/inc/strings.hrc:378
msgctxt "RID_STR_NEEDTYPESELECTION"
msgid "Please select a type of address book."
msgstr "Lūdzu, izvēlieties adrešu grāmatas tipu."
-#: extensions/inc/strings.hrc:371
+#: extensions/inc/strings.hrc:379
msgctxt "RID_STR_QRY_NOTABLES"
msgid ""
"The data source does not contain any tables.\n"
@@ -2342,7 +2387,7 @@ msgstr ""
"Datu avots nesatur nevienu tabulu.\n"
"Vai tomēr vēlaties to iestatīt kā adrešu datu avotu?"
-#: extensions/inc/strings.hrc:372
+#: extensions/inc/strings.hrc:380
msgctxt "RID_STR_QRY_NO_EVO_GW"
msgid ""
"You don't seem to have any GroupWise account configured in Evolution.\n"
@@ -2351,32 +2396,32 @@ msgstr ""
"Uz Evolution nav nokonfigurēts neviens GroupWise konts.\n"
"Vai tomēr vēlaties to iestatīt kā adrešu datu avotu?"
-#: extensions/inc/strings.hrc:373
+#: extensions/inc/strings.hrc:381
msgctxt "RID_STR_DEFAULT_NAME"
msgid "Addresses"
msgstr "Adreses"
-#: extensions/inc/strings.hrc:374
+#: extensions/inc/strings.hrc:382
msgctxt "RID_STR_ADMINDIALOGTITLE"
msgid "Create Address Data Source"
msgstr "Izveidot adrešu datu avotu"
-#: extensions/inc/strings.hrc:375
+#: extensions/inc/strings.hrc:383
msgctxt "RID_STR_NOCONNECTION"
msgid "The connection could not be established."
msgstr "Nevarēja izveidot savienojumu."
-#: extensions/inc/strings.hrc:376
+#: extensions/inc/strings.hrc:384
msgctxt "RID_STR_PLEASECHECKSETTINGS"
msgid "Please check the settings made for the data source."
msgstr "Lūdzu, pārbaudiet datu avota iestatījumus."
-#: extensions/inc/strings.hrc:377
+#: extensions/inc/strings.hrc:385
msgctxt "RID_STR_FIELDDIALOGTITLE"
msgid "Address Data - Field Assignment"
msgstr "Adrešu dati - lauka piesaiste"
-#: extensions/inc/strings.hrc:378
+#: extensions/inc/strings.hrc:386
msgctxt "RID_STR_NOFIELDSASSIGNED"
msgid ""
"There are no fields assigned at this time.\n"
@@ -2387,77 +2432,77 @@ msgstr ""
"Jūs varat vai nu piesaistīt laukus tagad, vai darīt to vēlāk, izvēloties:\n"
"\"Datne - Veidnes - Adrešu grāmatas avots...\""
-#: extensions/inc/strings.hrc:380
+#: extensions/inc/strings.hrc:388
msgctxt "RID_STR_OPTION_DB_FIELD_TITLE"
msgid "Database Field"
msgstr "Datubāzes lauks"
-#: extensions/inc/strings.hrc:381
+#: extensions/inc/strings.hrc:389
msgctxt "RID_STR_TYPE_TABLE"
msgid "Table"
msgstr "Tabula"
-#: extensions/inc/strings.hrc:382
+#: extensions/inc/strings.hrc:390
msgctxt "RID_STR_TYPE_QUERY"
msgid "Query"
msgstr "Vaicājums"
-#: extensions/inc/strings.hrc:383
+#: extensions/inc/strings.hrc:391
msgctxt "RID_STR_TYPE_COMMAND"
msgid "SQL command"
msgstr "SQL komanda"
-#: extensions/inc/strings.hrc:385
+#: extensions/inc/strings.hrc:393
msgctxt "RID_STR_GROUPWIZARD_TITLE"
msgid "Group Element Wizard"
msgstr "Grupas elementa vednis"
-#: extensions/inc/strings.hrc:386
+#: extensions/inc/strings.hrc:394
msgctxt "RID_STR_GRIDWIZARD_TITLE"
msgid "Table Element Wizard"
msgstr "Tabulas elementa vednis"
-#: extensions/inc/strings.hrc:387
+#: extensions/inc/strings.hrc:395
msgctxt "RID_STR_LISTWIZARD_TITLE"
msgid "List Box Wizard"
msgstr "Saraksta lauka vednis"
-#: extensions/inc/strings.hrc:388
+#: extensions/inc/strings.hrc:396
msgctxt "RID_STR_COMBOWIZARD_TITLE"
msgid "Combo Box Wizard"
msgstr "Kombinētā lodziņa vednis"
-#: extensions/inc/strings.hrc:389
+#: extensions/inc/strings.hrc:397
msgctxt "RID_STR_COULDNOTOPENTABLE"
msgid "The table connection to the data source could not be established."
msgstr "Neizdevās izveidot tabulas savienojumu ar datu avotu."
-#: extensions/inc/strings.hrc:391
+#: extensions/inc/strings.hrc:399
msgctxt "RID_STR_DATEPOSTFIX"
msgid " (Date)"
msgstr " (Datums)"
-#: extensions/inc/strings.hrc:392
+#: extensions/inc/strings.hrc:400
msgctxt "RID_STR_TIMEPOSTFIX"
msgid " (Time)"
msgstr " (Laiks)"
-#: extensions/inc/strings.hrc:394
+#: extensions/inc/strings.hrc:402
msgctxt "RID_STR_FIELDINFO_COMBOBOX"
msgid "The contents of the field selected will be shown in the combo box list."
msgstr "Izvēlētā lauka saturs tiks rādīts kombinētā lodziņa sarakstā."
-#: extensions/inc/strings.hrc:395
+#: extensions/inc/strings.hrc:403
msgctxt "RID_STR_FIELDINFO_LISTBOX"
msgid "The contents of the selected field will be shown in the list box if the linked fields are identical."
msgstr "Izvēlētā lauka saturs tiks rādīts saraksta lodziņā, ja saistītie lauki būs identiski."
-#: extensions/inc/strings.hrc:396
+#: extensions/inc/strings.hrc:404
msgctxt "RID_STR_COMBOWIZ_DBFIELD"
msgid "You can either save the value of the combo box in a database field or use it for display purposes."
msgstr "Jūs varat vai nu saglabāt vērtību no kombinētā lodziņa vai arī izmantot to attēlošanas nolūkiem."
-#: extensions/inc/strings.hrc:398
+#: extensions/inc/strings.hrc:406
msgctxt "RID_STR_GROUPWIZ_DBFIELD"
msgid "You can either save the value of the option group in a database field or use it for a later action."
msgstr "Jūs varat vai nu saglabāt opciju grupas vērtību datubāzes laukā, vai arī izmantot to vēlākās darbībās."
@@ -2599,7 +2644,7 @@ msgstr "Lauka piesaiste"
#: extensions/uiconfig/sabpilot/ui/fieldlinkpage.ui:19
msgctxt "fieldlinkpage|desc"
msgid "This is where you select fields with matching contents so that the value from the display field will be shown."
-msgstr "Šeit jūs izvēlaties laukus ar atbilstošu saturu, tā, lai vērtība no attēlošanas lauka tiktu parādīta."
+msgstr "Šeit izvēlas laukus ar atbilstošu saturu tā, lai vērtība no attēlošanas lauka tiktu parādīta."
#: extensions/uiconfig/sabpilot/ui/fieldlinkpage.ui:52
msgctxt "fieldlinkpage|label2"
@@ -2736,17 +2781,17 @@ msgstr ""
"Nevarēja izveidot savienojumu ar datu avotu.\n"
"Pirms turpināšanas, lūdzu, pārbaudiet jūsu veiktos iestatījumus, vai iepriekšējā lapā izvēlieties citu adrešu datu avotu tipu."
-#: extensions/uiconfig/sabpilot/ui/optiondbfieldpage.ui:38
+#: extensions/uiconfig/sabpilot/ui/optiondbfieldpage.ui:37
msgctxt "optiondbfieldpage|label1"
msgid "Do you want to save the value in a database field?"
msgstr "Vai vēlaties saglabāt vērtību datubāzes laukā?"
-#: extensions/uiconfig/sabpilot/ui/optiondbfieldpage.ui:59
+#: extensions/uiconfig/sabpilot/ui/optiondbfieldpage.ui:58
msgctxt "optiondbfieldpage|yesRadiobutton"
msgid "_Yes, I want to save it in the following database field:"
msgstr "_Jā, es vēlos saglabāt to sekojošā datubāzes laukā:"
-#: extensions/uiconfig/sabpilot/ui/optiondbfieldpage.ui:78
+#: extensions/uiconfig/sabpilot/ui/optiondbfieldpage.ui:77
msgctxt "optiondbfieldpage|noRadiobutton"
msgid "_No, I only want to save the value in the form."
msgstr "_Nē, es vēlos saglabāt vērtību formā."
@@ -2878,12 +2923,12 @@ msgctxt "tableselectionpage|label1"
msgid "Data"
msgstr "Dati"
-#: extensions/uiconfig/sbibliography/ui/choosedatasourcedialog.ui:8
+#: extensions/uiconfig/sbibliography/ui/choosedatasourcedialog.ui:16
msgctxt "choosedatasourcedialog|ChooseDataSourceDialog"
msgid "Choose Data Source"
msgstr "Izvēlieties datu avotu"
-#: extensions/uiconfig/sbibliography/ui/choosedatasourcedialog.ui:91
+#: extensions/uiconfig/sbibliography/ui/choosedatasourcedialog.ui:130
msgctxt "choosedatasourcedialog|label1"
msgid "Entry"
msgstr "Ieraksts"
@@ -3403,42 +3448,42 @@ msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "etiķete"
-#: extensions/uiconfig/spropctrlr/ui/labelselectiondialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/labelselectiondialog.ui:18
msgctxt "labelselectiondialog|LabelSelectionDialog"
msgid "Label Field Selection"
msgstr "Etiķetes lauka izvēle"
-#: extensions/uiconfig/spropctrlr/ui/labelselectiondialog.ui:86
+#: extensions/uiconfig/spropctrlr/ui/labelselectiondialog.ui:102
msgctxt "labelselectiondialog|label"
msgid "These are control fields that can be used as label fields for the $controlclass$ $controlname$."
msgstr "Šie ir vadīklas lauki, kurus var lietot kā etiķetes $controlclass$ $controlname$."
-#: extensions/uiconfig/spropctrlr/ui/labelselectiondialog.ui:120
+#: extensions/uiconfig/spropctrlr/ui/labelselectiondialog.ui:166
msgctxt "labelselectiondialog|noassignment"
msgid "_No assignment"
msgstr "_Nav piešķires"
-#: extensions/uiconfig/spropctrlr/ui/taborder.ui:8
+#: extensions/uiconfig/spropctrlr/ui/taborder.ui:18
msgctxt "taborder|TabOrderDialog"
msgid "Tab Order"
msgstr "Ciļņu secība"
-#: extensions/uiconfig/spropctrlr/ui/taborder.ui:21
+#: extensions/uiconfig/spropctrlr/ui/taborder.ui:168
msgctxt "taborder|upB"
msgid "_Move Up"
msgstr "_Augšup"
-#: extensions/uiconfig/spropctrlr/ui/taborder.ui:35
+#: extensions/uiconfig/spropctrlr/ui/taborder.ui:182
msgctxt "taborder|downB"
msgid "Move _Down"
msgstr "_Lejup"
-#: extensions/uiconfig/spropctrlr/ui/taborder.ui:49
+#: extensions/uiconfig/spropctrlr/ui/taborder.ui:196
msgctxt "taborder|autoB"
msgid "_Automatic Sort"
msgstr "Kārtot _automātiski"
-#: extensions/uiconfig/spropctrlr/ui/taborder.ui:146
+#: extensions/uiconfig/spropctrlr/ui/taborder.ui:222
msgctxt "taborder|label2"
msgid "Controls"
msgstr "Vadīklas"
diff --git a/source/lv/extras/source/autocorr/emoji.po b/source/lv/extras/source/autocorr/emoji.po
index 920c967e31d..602efeb5ad5 100644
--- a/source/lv/extras/source/autocorr/emoji.po
+++ b/source/lv/extras/source/autocorr/emoji.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-12-20 08:16+0100\n"
-"PO-Revision-Date: 2018-11-04 12:41+0000\n"
+"PO-Revision-Date: 2019-04-19 18:22+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lv\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1541335280.000000\n"
+"X-POOTLE-MTIME: 1555698179.000000\n"
#. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3065,7 +3065,7 @@ msgctxt ""
"WHITE_HEAVY_CHECK_MARK\n"
"LngText.text"
msgid "check mark3"
-msgstr "kontrolzīme3"
+msgstr "ķeksītis3"
#. ✆ (U+02706), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3182,7 +3182,7 @@ msgctxt ""
"CHECK_MARK\n"
"LngText.text"
msgid "check mark"
-msgstr "kontrolzīme"
+msgstr "ķeksītis"
#. ✔ (U+02714), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3191,7 +3191,7 @@ msgctxt ""
"HEAVY_CHECK_MARK\n"
"LngText.text"
msgid "check mark2"
-msgstr "kontrolzīme2"
+msgstr "ķeksītis2"
#. ✖ (U+02716), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9689,7 +9689,7 @@ msgctxt ""
"FORK_AND_KNIFE_WITH_PLATE\n"
"LngText.text"
msgid "plate"
-msgstr ""
+msgstr "šķīvis"
#. 🗺 (U+1F5FA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9824,7 +9824,7 @@ msgctxt ""
"RAILWAY_TRACK\n"
"LngText.text"
msgid "track"
-msgstr ""
+msgstr "sliedes"
#. 🛢 (U+1F6E2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10121,7 +10121,7 @@ msgctxt ""
"FILM_FRAMES\n"
"LngText.text"
msgid "film"
-msgstr ""
+msgstr "kinolente"
#. 📽 (U+1F4FD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10211,7 +10211,7 @@ msgctxt ""
"LOWER_LEFT_CRAYON\n"
"LngText.text"
msgid "crayon"
-msgstr ""
+msgstr "krītiņš"
#. 🗂 (U+1F5C2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10256,7 +10256,7 @@ msgctxt ""
"CARD_FILE_BOX\n"
"LngText.text"
msgid "box"
-msgstr ""
+msgstr "kaste"
#. 🗄 (U+1F5C4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10265,7 +10265,7 @@ msgctxt ""
"FILE_CABINET\n"
"LngText.text"
msgid "cabinet"
-msgstr ""
+msgstr "kartotēka"
#. 🗑 (U+1F5D1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10274,7 +10274,7 @@ msgctxt ""
"WASTEBASKET\n"
"LngText.text"
msgid "wastebasket"
-msgstr ""
+msgstr "atkritumu grozs"
#. 🗝 (U+1F5DD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10319,7 +10319,7 @@ msgctxt ""
"COMPRESSION\n"
"LngText.text"
msgid "clamp"
-msgstr ""
+msgstr "spaile"
#. 🛏 (U+1F6CF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10373,7 +10373,7 @@ msgctxt ""
"BLACK_CIRCLE_FOR_RECORD\n"
"LngText.text"
msgid "record"
-msgstr ""
+msgstr "ierakstīt"
#. 🏴 (U+1F3F4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10787,7 +10787,7 @@ msgctxt ""
"NO_PIRACY\n"
"LngText.text"
msgid "no piracy"
-msgstr ""
+msgstr "pirātismam nē"
#. 🕅 (U+1F545), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10868,7 +10868,7 @@ msgctxt ""
"BLACK_PUSHPIN\n"
"LngText.text"
msgid "tack"
-msgstr ""
+msgstr "spraudīte"
#. 🖄 (U+1F584), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10931,7 +10931,7 @@ msgctxt ""
"OVERLAP\n"
"LngText.text"
msgid "overlap"
-msgstr ""
+msgstr "pārklāšanās"
#. 🗏 (U+1F5CF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11066,7 +11066,7 @@ msgctxt ""
"EMPTY_NOTE_PAD\n"
"LngText.text"
msgid "empty note pad"
-msgstr ""
+msgstr "tukšs piezīmju bloks"
#. 🗉 (U+1F5C9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11210,7 +11210,7 @@ msgctxt ""
"OLD_PERSONAL_COMPUTER\n"
"LngText.text"
msgid "pc"
-msgstr ""
+msgstr "personālais dators"
#. 🖵 (U+1F5B5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11354,7 +11354,7 @@ msgctxt ""
"PORTABLE_STEREO\n"
"LngText.text"
msgid "stereo"
-msgstr ""
+msgstr "stereoatskaņotājs"
#. 🏶 (U+1F3F6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11579,7 +11579,7 @@ msgctxt ""
"BALLOT_SCRIPT_X\n"
"LngText.text"
msgid "check mark4"
-msgstr "kontrolzīme4"
+msgstr "ķeksītis4"
#. 🗪 (U+1F5EA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11624,7 +11624,7 @@ msgctxt ""
"LIGHT_CHECK_MARK\n"
"LngText.text"
msgid "check mark5"
-msgstr "kontrolzīme5"
+msgstr "ķeksītis5"
#. 🤗 (U+1F917), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11633,7 +11633,7 @@ msgctxt ""
"HUGGING_FACE\n"
"LngText.text"
msgid "hugging"
-msgstr ""
+msgstr "apskauj"
#. 🤔 (U+1F914), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11642,7 +11642,7 @@ msgctxt ""
"THINKING_FACE\n"
"LngText.text"
msgid "thinking"
-msgstr ""
+msgstr "domā"
#. 🙄 (U+1F644), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11651,7 +11651,7 @@ msgctxt ""
"FACE_WITH_ROLLING_EYES\n"
"LngText.text"
msgid "eye roll"
-msgstr ""
+msgstr "blisina acis"
#. 🤐 (U+1F910), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11669,7 +11669,7 @@ msgctxt ""
"UPSIDE-DOWN_FACE\n"
"LngText.text"
msgid "upside-down"
-msgstr ""
+msgstr "kājām gaisā"
#. 🤑 (U+1F911), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11696,7 +11696,7 @@ msgctxt ""
"FACE_WITH_HEAD-BANDAGE\n"
"LngText.text"
msgid "bandage"
-msgstr ""
+msgstr "apsējs"
#. 🤓 (U+1F913), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11705,7 +11705,7 @@ msgctxt ""
"NERD_FACE\n"
"LngText.text"
msgid "nerd"
-msgstr ""
+msgstr "nūģis"
#. 🤖 (U+1F916), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11777,7 +11777,7 @@ msgctxt ""
"PRAYER_BEADS\n"
"LngText.text"
msgid "beads"
-msgstr ""
+msgstr "lūgšanu krelles"
#. 🦁 (U+1F981), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11885,7 +11885,7 @@ msgctxt ""
"AMPHORA\n"
"LngText.text"
msgid "amphora"
-msgstr ""
+msgstr "amfora"
#. 🕌 (U+1F54C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11975,7 +11975,7 @@ msgctxt ""
"BOW_AND_ARROW\n"
"LngText.text"
msgid "bow"
-msgstr ""
+msgstr "loks"
#. 🛐 (U+1F6D0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -11984,7 +11984,7 @@ msgctxt ""
"PLACE_OF_WORSHIP\n"
"LngText.text"
msgid "worship"
-msgstr ""
+msgstr "dievkalpojums"
#. 🕎 (U+1F54E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12011,7 +12011,7 @@ msgctxt ""
"DROOLING_FACE\n"
"LngText.text"
msgid "drool"
-msgstr ""
+msgstr "siekalojas"
#. 🤢 (U+1F922), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12074,7 +12074,7 @@ msgctxt ""
"MAN_IN_TUXEDO\n"
"LngText.text"
msgid "groom"
-msgstr ""
+msgstr "līgavainis"
#. 🤰 (U+1F930), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12092,7 +12092,7 @@ msgctxt ""
"MRS._CLAUS\n"
"LngText.text"
msgid "mrs. claus"
-msgstr ""
+msgstr "ziemassvētku vecenīte"
#. 🤦 (U+1F926), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12110,7 +12110,7 @@ msgctxt ""
"PERSON_SHRUGGING\n"
"LngText.text"
msgid "shrugging"
-msgstr ""
+msgstr "parausta plecus"
#. 🕺 (U+1F57A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12128,7 +12128,7 @@ msgctxt ""
"PERSON_FENCING\n"
"LngText.text"
msgid "fencer"
-msgstr ""
+msgstr "paukotājs"
#. 🤸 (U+1F938), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12146,7 +12146,7 @@ msgctxt ""
"PEOPLE_WRESTLING\n"
"LngText.text"
msgid "wrestling"
-msgstr ""
+msgstr "cīkstēšanās"
#. 🤽 (U+1F93D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12173,7 +12173,7 @@ msgctxt ""
"PERSON_JUGGLING\n"
"LngText.text"
msgid "juggling"
-msgstr ""
+msgstr "žonglēšana"
#. 🤳 (U+1F933), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12191,7 +12191,7 @@ msgctxt ""
"CROSSED_FINGERS\n"
"LngText.text"
msgid "good luck"
-msgstr ""
+msgstr "sakrustoti pirksti"
#. 🤙 (U+1F919), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12245,7 +12245,7 @@ msgctxt ""
"BLACK_HEART\n"
"LngText.text"
msgid "black heart"
-msgstr ""
+msgstr "melna sirds"
#. 🦍 (U+1F98D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12272,7 +12272,7 @@ msgctxt ""
"DEER\n"
"LngText.text"
msgid "deer"
-msgstr ""
+msgstr "alnis"
#. 🦏 (U+1F98F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12461,7 +12461,7 @@ msgctxt ""
"BACON\n"
"LngText.text"
msgid "bacon"
-msgstr ""
+msgstr "bekons"
#. 🥙 (U+1F959), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12488,7 +12488,7 @@ msgctxt ""
"SHALLOW_PAN_OF_FOOD\n"
"LngText.text"
msgid "food"
-msgstr ""
+msgstr "pārtika"
#. 🥗 (U+1F957), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12497,7 +12497,7 @@ msgctxt ""
"GREEN_SALAD\n"
"LngText.text"
msgid "salad"
-msgstr ""
+msgstr "salāti"
#. 🥛 (U+1F95B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12542,7 +12542,7 @@ msgctxt ""
"SCOOTER\n"
"LngText.text"
msgid "scooter"
-msgstr ""
+msgstr "skrejritenis"
#. 🛵 (U+1F6F5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12551,7 +12551,7 @@ msgctxt ""
"MOTOR_SCOOTER\n"
"LngText.text"
msgid "scooter2"
-msgstr ""
+msgstr "motorollers"
#. 🛑 (U+1F6D1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12569,7 +12569,7 @@ msgctxt ""
"CANOE\n"
"LngText.text"
msgid "canoe"
-msgstr ""
+msgstr "kanoe"
#. 🥇 (U+1F947), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12605,7 +12605,7 @@ msgctxt ""
"BOXING_GLOVE\n"
"LngText.text"
msgid "boxing"
-msgstr ""
+msgstr "bokss"
#. 🥋 (U+1F94B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12632,7 +12632,7 @@ msgctxt ""
"DRUM_WITH_DRUMSTICKS\n"
"LngText.text"
msgid "drum2"
-msgstr ""
+msgstr "bungas2"
#. 🛒 (U+1F6D2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12641,7 +12641,7 @@ msgctxt ""
"SHOPPING_TROLLEY\n"
"LngText.text"
msgid "cart"
-msgstr ""
+msgstr "iepirkumu ratiņi"
#. 🤩 (U+1F929), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12659,7 +12659,7 @@ msgctxt ""
"FACE_WITH_ONE_EYEBROW_RAISED\n"
"LngText.text"
msgid "eyebrow"
-msgstr ""
+msgstr "paceļ uzaci"
#. 🤯 (U+1F92F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12668,7 +12668,7 @@ msgctxt ""
"SHOCKED_FACE_WITH_EXPLODING_HEAD\n"
"LngText.text"
msgid "shocked"
-msgstr ""
+msgstr "šokēts"
#. 🤪 (U+1F92A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12677,7 +12677,7 @@ msgctxt ""
"GRINNING_FACE_WITH_ONE_LARGE_AND_ONE_SMALL_EYE\n"
"LngText.text"
msgid "zany"
-msgstr ""
+msgstr "āksts"
#. 🤬 (U+1F92C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12686,7 +12686,7 @@ msgctxt ""
"SERIOUS_FACE_WITH_SYMBOLS_COVERING_MOUTH\n"
"LngText.text"
msgid "cursing"
-msgstr ""
+msgstr "lamājas"
#. 🤮 (U+1F92E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12704,7 +12704,7 @@ msgctxt ""
"FACE_WITH_FINGER_COVERING_CLOSED_LIPS\n"
"LngText.text"
msgid "hush"
-msgstr ""
+msgstr "klusumu"
#. 🤭 (U+1F92D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12731,7 +12731,7 @@ msgctxt ""
"CHILD\n"
"LngText.text"
msgid "child"
-msgstr ""
+msgstr "bērns"
#. 🧑 (U+1F9D1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12740,7 +12740,7 @@ msgctxt ""
"ADULT\n"
"LngText.text"
msgid "adult"
-msgstr ""
+msgstr "pieaugušais"
#. 🧓 (U+1F9D3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12749,7 +12749,7 @@ msgctxt ""
"OLDER_ADULT\n"
"LngText.text"
msgid "old"
-msgstr ""
+msgstr "seniors"
#. 🧕 (U+1F9D5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12758,7 +12758,7 @@ msgctxt ""
"PERSON_WITH_HEADSCARF\n"
"LngText.text"
msgid "headscarf"
-msgstr ""
+msgstr "galvas lakats"
#. 🧔 (U+1F9D4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12785,7 +12785,7 @@ msgctxt ""
"MAGE\n"
"LngText.text"
msgid "mage"
-msgstr ""
+msgstr "burvis"
#. 🧚 (U+1F9DA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12812,7 +12812,7 @@ msgctxt ""
"MERPERSON\n"
"LngText.text"
msgid "merperson"
-msgstr ""
+msgstr "nāra"
#. 🧝 (U+1F9DD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12821,7 +12821,7 @@ msgctxt ""
"ELF\n"
"LngText.text"
msgid "elf"
-msgstr ""
+msgstr "elfs"
#. 🧞 (U+1F9DE), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12857,7 +12857,7 @@ msgctxt ""
"PERSON_CLIMBING\n"
"LngText.text"
msgid "climber"
-msgstr ""
+msgstr "alpīnists"
#. 🧘 (U+1F9D8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12902,7 +12902,7 @@ msgctxt ""
"ORANGE_HEART\n"
"LngText.text"
msgid "orange heart"
-msgstr ""
+msgstr "oranža sirds"
#. 🧣 (U+1F9E3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12911,7 +12911,7 @@ msgctxt ""
"SCARF\n"
"LngText.text"
msgid "scarf"
-msgstr ""
+msgstr "šalle"
#. 🧤 (U+1F9E4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -12920,7 +12920,7 @@ msgctxt ""
"GLOVES\n"
"LngText.text"
msgid "gloves"
-msgstr ""
+msgstr "cimdi"
#. 🧥 (U+1F9E5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -13073,7 +13073,7 @@ msgctxt ""
"DUMPLING\n"
"LngText.text"
msgid "dumpling"
-msgstr ""
+msgstr "klimpa"
#. 🥠 (U+1F960), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -13091,7 +13091,7 @@ msgctxt ""
"TAKEOUT_BOX\n"
"LngText.text"
msgid "takeout"
-msgstr ""
+msgstr "ēdiens līdzņemšanai"
#. 🥧 (U+1F967), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -13118,7 +13118,7 @@ msgctxt ""
"CHOPSTICKS\n"
"LngText.text"
msgid "chopsticks"
-msgstr ""
+msgstr "irbulīši"
#. 🛸 (U+1F6F8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -13136,7 +13136,7 @@ msgctxt ""
"SLED\n"
"LngText.text"
msgid "sled"
-msgstr ""
+msgstr "ragavas"
#. 🥌 (U+1F94C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -13145,7 +13145,7 @@ msgctxt ""
"CURLING_STONE\n"
"LngText.text"
msgid "curling"
-msgstr ""
+msgstr "kērlings"
#. ₿ (U+20BF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -13154,7 +13154,7 @@ msgctxt ""
"BITCOIN_SIGN\n"
"LngText.text"
msgid "bitcoin"
-msgstr ""
+msgstr "bitmonēta"
#. ½ (U+000BD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
diff --git a/source/lv/filter/messages.po b/source/lv/filter/messages.po
index 9b8e2c66d35..7998a4a0042 100644
--- a/source/lv/filter/messages.po
+++ b/source/lv/filter/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: 2018-10-21 20:57+0200\n"
-"PO-Revision-Date: 2018-08-26 17:38+0000\n"
+"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"PO-Revision-Date: 2019-04-20 16:38+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lv\n"
@@ -13,183 +13,173 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1535305113.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1555778300.000000\n"
#: filter/inc/strings.hrc:25
-msgctxt "STR_COLUMN_HEADER_NAME"
-msgid "Name"
-msgstr "Nosaukums"
-
-#: filter/inc/strings.hrc:26
-msgctxt "STR_COLUMN_HEADER_TYPE"
-msgid "Type"
-msgstr "Tips"
-
-#: filter/inc/strings.hrc:27
msgctxt "STR_UNKNOWN_APPLICATION"
msgid "Unknown"
msgstr "Nezināms"
-#: filter/inc/strings.hrc:28
+#: filter/inc/strings.hrc:26
msgctxt "STR_IMPORT_ONLY"
msgid "import filter"
msgstr "importa filtrs"
-#: filter/inc/strings.hrc:29
+#: filter/inc/strings.hrc:27
msgctxt "STR_IMPORT_EXPORT"
msgid "import/export filter"
msgstr "importa/eksporta filtrs"
-#: filter/inc/strings.hrc:30
+#: filter/inc/strings.hrc:28
msgctxt "STR_EXPORT_ONLY"
msgid "export filter"
msgstr "eksporta filtrs"
-#: filter/inc/strings.hrc:31
+#: filter/inc/strings.hrc:29
#, c-format
msgctxt "STR_WARN_DELETE"
msgid "Do you really want to delete the XML Filter '%s'? This action cannot be undone."
msgstr "Vai tiešām vēlaties dzēst XML filtru '%s'? Šo darbību nevarēs atsaukt."
-#: filter/inc/strings.hrc:32
+#: filter/inc/strings.hrc:30
#, c-format
msgctxt "STR_ERROR_FILTER_NAME_EXISTS"
msgid "An XML filter with the name '%s' already exists. Please enter a different name."
-msgstr "XML filtrs ar nosaukumu '%s' jau eksistē. Lūdzu, norādiet citu nosaukumu."
+msgstr "XML filtrs ar nosaukumu '%s' jau pastāv. Lūdzu, ievadiet citu nosaukumu."
-#: filter/inc/strings.hrc:33
+#: filter/inc/strings.hrc:31
#, c-format
msgctxt "STR_ERROR_TYPE_NAME_EXISTS"
msgid "The name for the user interface '%s1' is already used by the XML filter '%s2'. Please enter a different name."
msgstr "Lietotāja saskarnes '%s1' nosaukums jau tiek lietots XML filtram '%s2'. Lūdzu, ievadiet citu nosaukumu."
-#: filter/inc/strings.hrc:34
+#: filter/inc/strings.hrc:32
msgctxt "STR_ERROR_EXPORT_XSLT_NOT_FOUND"
msgid "The XSLT for export cannot be found. Please enter a valid path."
msgstr "Nevar atrast XSLT eksportam. Lūdzu, ievadiet pareizu ceļu."
-#: filter/inc/strings.hrc:35
+#: filter/inc/strings.hrc:33
msgctxt "STR_ERROR_IMPORT_XSLT_NOT_FOUND"
msgid "The XSLT for import cannot be found. Please enter a valid path."
msgstr "Nevar atrast XSLT importam. Lūdzu, ievadiet pareizu ceļu."
-#: filter/inc/strings.hrc:36
+#: filter/inc/strings.hrc:34
msgctxt "STR_ERROR_IMPORT_TEMPLATE_NOT_FOUND"
msgid "The given import template cannot be found. Please enter a valid path."
msgstr "Nevar atrast dotā importa veidni. Lūdzu, ievadiet derīgu ceļu."
-#: filter/inc/strings.hrc:37
+#: filter/inc/strings.hrc:35
msgctxt "STR_DEFAULT_FILTER_NAME"
msgid "New Filter"
msgstr "Jauns filtrs"
-#: filter/inc/strings.hrc:38
+#: filter/inc/strings.hrc:36
msgctxt "STR_DEFAULT_UI_NAME"
msgid "Untitled"
msgstr "Nenosaukts"
-#: filter/inc/strings.hrc:39
+#: filter/inc/strings.hrc:37
msgctxt "STR_UNDEFINED_FILTER"
msgid "undefined filter"
msgstr "nedefinēts filtrs"
-#: filter/inc/strings.hrc:40
+#: filter/inc/strings.hrc:38
#, c-format
msgctxt "STR_FILTER_HAS_BEEN_SAVED"
msgid "The XML filter '%s' has been saved as package '%s'. "
msgstr "XML filtrs '%s' ir saglabāts kā pakotne '%s'. "
-#: filter/inc/strings.hrc:41
+#: filter/inc/strings.hrc:39
#, c-format
msgctxt "STR_FILTERS_HAVE_BEEN_SAVED"
msgid "%s XML filters have been saved in the package '%s'."
msgstr "%s XML filtri ir saglabāti pakā '%s'."
-#: filter/inc/strings.hrc:42
+#: filter/inc/strings.hrc:40
msgctxt "STR_FILTER_PACKAGE"
msgid "XSLT filter package"
msgstr "XSLT filtru pakotne"
-#: filter/inc/strings.hrc:43
+#: filter/inc/strings.hrc:41
#, c-format
msgctxt "STR_FILTER_INSTALLED"
msgid "The XML filter '%s' has been installed successfully."
msgstr "XML filtrs '%s' ir veiksmīgi instalēts."
-#: filter/inc/strings.hrc:44
+#: filter/inc/strings.hrc:42
#, c-format
msgctxt "STR_FILTERS_INSTALLED"
msgid "%s XML filters have been installed successfully."
msgstr "%s XML filtri ir veiksmīgi instalēti."
-#: filter/inc/strings.hrc:45
+#: filter/inc/strings.hrc:43
#, c-format
msgctxt "STR_NO_FILTERS_FOUND"
msgid "No XML filter could be installed because the package '%s' does not contain any XML filters."
msgstr "XML filtru nevar iestatīt, jo pakotne '%s' nesatur XML filtrus."
-#: filter/inc/strings.hrc:46
+#: filter/inc/strings.hrc:44
msgctxt "STR_XML_FILTER_LISTBOX"
msgid "XML Filter List"
msgstr "XML filtru saraksts"
-#: filter/inc/strings.hrc:48
+#: filter/inc/strings.hrc:46
msgctxt "T602FILTER_STR_IMPORT_DIALOG_TITLE"
msgid "Settings for T602 import"
msgstr "T602 importēšana iestatījumi"
-#: filter/inc/strings.hrc:49
+#: filter/inc/strings.hrc:47
msgctxt "T602FILTER_STR_ENCODING_LABEL"
msgid "Encoding"
msgstr "Kodējums"
-#: filter/inc/strings.hrc:50
+#: filter/inc/strings.hrc:48
msgctxt "T602FILTER_STR_ENCODING_AUTO"
msgid "Automatic"
msgstr "Automātisks"
-#: filter/inc/strings.hrc:51
+#: filter/inc/strings.hrc:49
msgctxt "T602FILTER_STR_ENCODING_CP852"
msgid "CP852 (Latin2)"
msgstr "CP852 (Latin2)"
-#: filter/inc/strings.hrc:52
+#: filter/inc/strings.hrc:50
msgctxt "T602FILTER_STR_ENCODING_CP895"
msgid "CP895 (KEYB2CS, Kamenicky)"
msgstr "CP895 (KEYB2CS, Kamenicky)"
-#: filter/inc/strings.hrc:53
+#: filter/inc/strings.hrc:51
msgctxt "T602FILTER_STR_ENCODING_KOI8CS2"
msgid "KOI8 CS2"
msgstr "KOI8 CS2"
-#: filter/inc/strings.hrc:54
+#: filter/inc/strings.hrc:52
msgctxt "T602FILTER_STR_CYRILLIC_MODE"
msgid "Mode for Russian language (Cyrillic)"
msgstr "Krievu valodas režīms (kirilica)"
-#: filter/inc/strings.hrc:55
+#: filter/inc/strings.hrc:53
msgctxt "T602FILTER_STR_REFORMAT_TEXT"
msgid "Reformat the text"
msgstr "Pārformatēt tekstu"
-#: filter/inc/strings.hrc:56
+#: filter/inc/strings.hrc:54
msgctxt "T602FILTER_STR_DOT_COMMANDS"
msgid "Display dot commands"
msgstr "Rādīt punkta komandas"
-#: filter/inc/strings.hrc:57
+#: filter/inc/strings.hrc:55
msgctxt "T602FILTER_STR_CANCEL_BUTTON"
msgid "Cancel"
msgstr "Atcelt"
-#: filter/inc/strings.hrc:58
+#: filter/inc/strings.hrc:56
msgctxt "T602FILTER_STR_OK_BUTTON"
msgid "OK"
msgstr "Labi"
-#: filter/inc/strings.hrc:60
+#: filter/inc/strings.hrc:58
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
@@ -198,75 +188,75 @@ msgstr ""
"Brīdinājums: Ne visas importētās EPS grafikas varēs saglabāt ar līmeni 1,\n"
"jo dažas ir augstāka līmeņa!"
-#: filter/inc/strings.hrc:62
+#: filter/inc/strings.hrc:60
msgctxt "PDF_PROGRESS_BAR"
msgid "Export as PDF"
msgstr "Eksportēt kā PDF"
#. strings used in encryption UI
#. password dialog title
-#: filter/inc/strings.hrc:66
+#: filter/inc/strings.hrc:64
msgctxt "STR_PDF_EXPORT_UDPWD"
msgid "Set open password"
msgstr "Iestatīt atvēršanas paroli"
#. password dialog title
-#: filter/inc/strings.hrc:68
+#: filter/inc/strings.hrc:66
msgctxt "STR_PDF_EXPORT_ODPWD"
msgid "Set permission password"
msgstr "Iestatīt atļauju paroli"
-#: filter/inc/strings.hrc:69
+#: filter/inc/strings.hrc:67
msgctxt "STR_WARN_PASSWORD_PDFA"
msgid "PDF/A does not allow encryption. The exported PDF file will not be password protected."
msgstr "PDF/A neatļauj šifrēšanu. Eksportētā PDF datne nebūs aizsargāta ar paroli."
-#: filter/inc/strings.hrc:70
+#: filter/inc/strings.hrc:68
msgctxt "STR_WARN_TRANSP_PDFA_SHORT"
msgid "PDF/A transparency"
msgstr "PDF/A caurspīdība"
-#: filter/inc/strings.hrc:71
+#: filter/inc/strings.hrc:69
msgctxt "STR_WARN_TRANSP_PDFA"
msgid "PDF/A forbids transparency. A transparent object was painted opaque instead."
msgstr "PDF/A neatļauj caurspīdību. Caurspīdīgais objekts tika nokrāsots necaurspīdīgs."
-#: filter/inc/strings.hrc:72
+#: filter/inc/strings.hrc:70
msgctxt "STR_WARN_TRANSP_VERSION_SHORT"
msgid "PDF version conflict"
msgstr "PDF versiju konflikts"
-#: filter/inc/strings.hrc:73
+#: filter/inc/strings.hrc:71
msgctxt "STR_WARN_TRANSP_VERSION"
msgid "Transparency is not supported in PDF versions earlier than PDF 1.4. A transparent object was painted opaque instead"
msgstr "PDF versijas vecākas nekā PDF 1.4 neatbalsta caurspīdību. Caurspīdīgais objekts tika nokrāsots necaurspīdīgs"
-#: filter/inc/strings.hrc:74
+#: filter/inc/strings.hrc:72
msgctxt "STR_WARN_FORMACTION_PDFA_SHORT"
msgid "PDF/A form action"
msgstr "PDF/A formas darbība"
-#: filter/inc/strings.hrc:75
+#: filter/inc/strings.hrc:73
msgctxt "STR_WARN_FORMACTION_PDFA"
msgid "A form control contained an action not supported by the PDF/A standard. The action was skipped"
msgstr "Formu kontrole saturēja darbību, kuru PDF/A standarts neatbalsta. Darbība tika izlaista"
-#: filter/inc/strings.hrc:76
+#: filter/inc/strings.hrc:74
msgctxt "STR_WARN_TRANSP_CONVERTED"
msgid "Some objects were converted to an image in order to remove transparencies, because the target PDF format does not support transparencies. Possibly better results can be achieved if you remove the transparent objects before exporting."
msgstr "Lai izņemtu caurspīdības, daži objekti tika pārveidoti par attēliem, jo mērķa PDF formāts neatbalsta caurspīdības. Ja pirms eksportēšanas izņemsiet caurspīdīgos objektus, iespējams, iegūsiet labākus rezultātus."
-#: filter/inc/strings.hrc:77
+#: filter/inc/strings.hrc:75
msgctxt "STR_WARN_TRANSP_CONVERTED_SHORT"
msgid "Transparencies removed"
msgstr "Caurspīdības izņemtas"
-#: filter/inc/strings.hrc:78
+#: filter/inc/strings.hrc:76
msgctxt "STR_ERR_SIGNATURE_FAILED"
msgid "Signature generation failed"
msgstr "Neizdevās paraksta ģenerēšana"
-#: filter/inc/strings.hrc:79
+#: filter/inc/strings.hrc:77
msgctxt "STR_ERR_PDF_EXPORT_ABORTED"
msgid "PDF export aborted"
msgstr "PDF eksportēšana ir pārtraukta"
@@ -432,13 +422,13 @@ msgstr "Izveido PDF, ko var viegli rediģēt ar %PRODUCTNAME"
#: filter/uiconfig/ui/pdfgeneralpage.ui:466
msgctxt "pdfgeneralpage|pdfa"
-msgid "Archive P_DF/A-1a (ISO 19005-1)"
-msgstr "Arhīva P_DF/A-1a (ISO 19005-1)"
+msgid "Archive P_DF/A-2b (ISO 19005-2)"
+msgstr "Arhīva P_DF/A-2b (ISO 19005-2)"
#: filter/uiconfig/ui/pdfgeneralpage.ui:470
msgctxt "pdfgeneralpage|pdfa|tooltip_text"
-msgid "Creates an ISO 19005-1 compliant PDF file, ideal for long-term document preservation"
-msgstr "Izveido ISO 19005-1 standartam atbilstošu PDF datni, ideāls ilgtermiņa dokumentu uzglabāšanai"
+msgid "Creates an ISO 19005-2 compliant PDF file, ideal for long-term document preservation"
+msgstr ""
#: filter/uiconfig/ui/pdfgeneralpage.ui:482
msgctxt "pdfgeneralpage|tagged"
@@ -502,8 +492,8 @@ msgstr "Ekspo_rtēt vietturus"
#: filter/uiconfig/ui/pdfgeneralpage.ui:609
msgctxt "pdfgeneralpage|comments"
-msgid "_Export comments"
-msgstr "_Eksportēt komentārus"
+msgid "_Comments as PDF annotations"
+msgstr "_Komentāri kā PDF anotācijas"
#: filter/uiconfig/ui/pdfgeneralpage.ui:624
msgctxt "pdfgeneralpage|emptypages"
@@ -913,7 +903,7 @@ msgstr "Piemērot re_dzamajam"
#: filter/uiconfig/ui/pdfviewpage.ui:243
msgctxt "pdfviewpage|fitzoom"
msgid "_Zoom factor:"
-msgstr "_Mērogs:"
+msgstr "_Tālummaiņas koeficients:"
#: filter/uiconfig/ui/pdfviewpage.ui:289
msgctxt "pdfviewpage|label3"
@@ -1025,46 +1015,51 @@ msgctxt "warnpdfdialog|WarnPDFDialog"
msgid "During PDF export the following problems occurred:"
msgstr "Eksportējot PDF, gadījās sekojošās problēmas:"
-#: filter/uiconfig/ui/xmlfiltersettings.ui:9
+#: filter/uiconfig/ui/xmlfiltersettings.ui:18
msgctxt "xmlfiltersettings|XMLFilterSettingsDialog"
msgid "XML Filter Settings"
msgstr "XML filtra iestatījumi"
-#: filter/uiconfig/ui/xmlfiltersettings.ui:24
+#: filter/uiconfig/ui/xmlfiltersettings.ui:103
+msgctxt "xmlfiltersettings|header_name"
+msgid "Name"
+msgstr "Nosaukums"
+
+#: filter/uiconfig/ui/xmlfiltersettings.ui:116
+msgctxt "xmlfiltersettings|header_type"
+msgid "Type"
+msgstr "Tips"
+
+#: filter/uiconfig/ui/xmlfiltersettings.ui:144
msgctxt "xmlfiltersettings|new"
msgid "_New..."
msgstr "Jau_ns..."
-#: filter/uiconfig/ui/xmlfiltersettings.ui:38
+#: filter/uiconfig/ui/xmlfiltersettings.ui:158
msgctxt "xmlfiltersettings|edit"
msgid "_Edit..."
msgstr "R_ediģēt..."
-#: filter/uiconfig/ui/xmlfiltersettings.ui:52
+#: filter/uiconfig/ui/xmlfiltersettings.ui:172
msgctxt "xmlfiltersettings|test"
msgid "_Test XSLTs..."
msgstr "_Testēt XSLT..."
-#: filter/uiconfig/ui/xmlfiltersettings.ui:66
+#: filter/uiconfig/ui/xmlfiltersettings.ui:186
msgctxt "xmlfiltersettings|delete"
msgid "_Delete..."
msgstr "_Dzēst..."
-#: filter/uiconfig/ui/xmlfiltersettings.ui:80
+#: filter/uiconfig/ui/xmlfiltersettings.ui:200
msgctxt "xmlfiltersettings|save"
msgid "_Save as Package..."
msgstr "_Saglabāt kā pakotni..."
-#: filter/uiconfig/ui/xmlfiltersettings.ui:94
+#: filter/uiconfig/ui/xmlfiltersettings.ui:214
msgctxt "xmlfiltersettings|open"
msgid "_Open Package..."
msgstr "Atvērt pak_otni..."
-#: filter/uiconfig/ui/xmlfiltersettings.ui:151
-msgctxt "xmlfiltersettings|filterlist-atkobject"
-msgid "XML Filter List"
-msgstr "XML filtru saraksts"
-
#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:22
msgctxt "xmlfiltertabpagegeneral|label2"
msgid "_Filter name:"
diff --git a/source/lv/filter/source/config/fragments/filters.po b/source/lv/filter/source/config/fragments/filters.po
index ee40bc00e90..5fd63c19c2f 100644
--- a/source/lv/filter/source/config/fragments/filters.po
+++ b/source/lv/filter/source/config/fragments/filters.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-07-02 00:14+0200\n"
-"PO-Revision-Date: 2018-09-07 16:23+0000\n"
+"POT-Creation-Date: 2019-01-12 13:17+0100\n"
+"PO-Revision-Date: 2019-03-19 19:07+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
"Language: lv\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1536337425.000000\n"
+"X-POOTLE-MTIME: 1553022471.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -68,7 +68,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "BMP - Windows Bitmap"
-msgstr "BMP - Windows Bitmap"
+msgstr "BMP - Windows bitkarte"
#: BroadBand_eBook.xcu
msgctxt ""
@@ -194,7 +194,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "EMF - Enhanced Metafile"
-msgstr "EMF - Enhanced metadatne"
+msgstr "EMF - paplašinātā metadatne"
#: EPS___Encapsulated_PostScript.xcu
msgctxt ""
@@ -428,7 +428,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 97–2003 AutoPlay"
-msgstr ""
+msgstr "PowerPoint 97–2003 automātiskā atskaņošana"
#: MS_PowerPoint_97_Vorlage.xcu
msgctxt ""
@@ -734,7 +734,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PBM - Portable Bitmap"
-msgstr "PBM - Portable Bitmap"
+msgstr "PBM - pārnesama bitkarte"
#: PCT___Mac_Pict.xcu
msgctxt ""
@@ -896,7 +896,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - mērogojama vektoru grafika"
+msgstr "SVG - mērogojamā vektorgrafika"
#: SVG___Scalable_Vector_Graphics_Draw.xcu
msgctxt ""
@@ -905,7 +905,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "SVG - Scalable Vector Graphics Draw"
-msgstr "SVG - mērogojamās vektoru grafikas zīmējums"
+msgstr "SVG - mērogojamās vektorgrafikas zīmējums"
#: SVM___StarView_Metafile.xcu
msgctxt ""
@@ -1220,7 +1220,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "XBM - X Bitmap"
-msgstr "XBM - X Bitmap"
+msgstr "XBM - X bitkarte"
#: XPM.xcu
msgctxt ""
@@ -1229,7 +1229,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "XPM - X PixMap"
-msgstr "XPM - X PixMap"
+msgstr "XPM - X pikseļkarte"
#: ZMFDocument.xcu
msgctxt ""
@@ -1292,7 +1292,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 2007–2019 (macro-enabled)"
-msgstr ""
+msgstr "Excel 2007–2019 (ar makrokomandām)"
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
@@ -1366,6 +1366,15 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr "PNG - pārvietojama tīkla grafika"
+#: calc_svg_Export.xcu
+msgctxt ""
+"calc_svg_Export.xcu\n"
+"calc_svg_Export\n"
+"UIName\n"
+"value.text"
+msgid "SVG - Scalable Vector Graphics"
+msgstr "SVG - mērogojamā vektorgrafika"
+
#: chart8.xcu
msgctxt ""
"chart8.xcu\n"
@@ -1445,7 +1454,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "BMP - Windows Bitmap"
-msgstr "BMP - Windows Bitmap"
+msgstr "BMP - Windows bitkarte"
#: draw_emf_Export.xcu
msgctxt ""
@@ -1454,7 +1463,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "EMF - Enhanced Metafile"
-msgstr "EMF - Enhanced metadatne"
+msgstr "EMF - paplašinātā metadatne"
#: draw_eps_Export.xcu
msgctxt ""
@@ -1526,7 +1535,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - mērogojama vektoru grafika"
+msgstr "SVG - mērogojamā vektorgrafika"
#: draw_tif_Export.xcu
msgctxt ""
@@ -1589,7 +1598,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–2019 AutoPlay"
-msgstr ""
+msgstr "PowerPoint 2007–2019 automātiskā atskaņošana"
#: impress_MS_PowerPoint_2007_XML_Template.xcu
msgctxt ""
@@ -1625,7 +1634,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Office Open XML Presentation AutoPlay"
-msgstr "Office Open XML prezentācijas AutoPlay"
+msgstr "Office Open XML prezentācijas automātiskā atskaņošana"
#: impress_OOXML_Template.xcu
msgctxt ""
@@ -1661,7 +1670,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "BMP - Windows Bitmap"
-msgstr "BMP - Windows Bitmap"
+msgstr "BMP - Windows bitkarte"
#: impress_emf_Export.xcu
msgctxt ""
@@ -1670,7 +1679,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "EMF - Enhanced Metafile"
-msgstr "EMF - Enhanced metadatne"
+msgstr "EMF - paplašinātā metadatne"
#: impress_eps_Export.xcu
msgctxt ""
@@ -1742,7 +1751,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - mērogojama vektoru grafika"
+msgstr "SVG - mērogojamā vektorgrafika"
#: impress_tif_Export.xcu
msgctxt ""
@@ -1888,6 +1897,15 @@ msgctxt ""
msgid "PNG - Portable Network Graphic"
msgstr "PNG - pārvietojama tīkla grafika"
+#: writer_svg_Export.xcu
+msgctxt ""
+"writer_svg_Export.xcu\n"
+"writer_svg_Export\n"
+"UIName\n"
+"value.text"
+msgid "SVG - Scalable Vector Graphics"
+msgstr "SVG - mērogojamā vektorgrafika"
+
#: writer_web_HTML_help.xcu
msgctxt ""
"writer_web_HTML_help.xcu\n"
diff --git a/source/lv/filter/source/config/fragments/internalgraphicfilters.po b/source/lv/filter/source/config/fragments/internalgraphicfilters.po
index 9f1ab289ab6..bab2190002a 100644
--- a/source/lv/filter/source/config/fragments/internalgraphicfilters.po
+++ b/source/lv/filter/source/config/fragments/internalgraphicfilters.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2018-09-08 09:29+0000\n"
+"PO-Revision-Date: 2019-02-25 12:27+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
"Language: lv\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1536398953.000000\n"
+"X-POOTLE-MTIME: 1551097635.000000\n"
#: bmp_Export.xcu
msgctxt ""
@@ -23,7 +23,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "BMP - Windows Bitmap"
-msgstr "BMP - Windows Bitmap"
+msgstr "BMP - Windows bitkarte"
#: bmp_Import.xcu
msgctxt ""
@@ -32,7 +32,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "BMP - Windows Bitmap"
-msgstr "BMP - Windows Bitmap"
+msgstr "BMP - Windows bitkarte"
#: dxf_Import.xcu
msgctxt ""
@@ -50,7 +50,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "EMF - Enhanced Metafile"
-msgstr "EMF - Enhanced Metafile"
+msgstr "EMF - paplašinātā metadatne"
#: emf_Import.xcu
msgctxt ""
@@ -59,7 +59,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "EMF - Enhanced Metafile"
-msgstr "EMF - Enhanced Metafile"
+msgstr "EMF - paplašinātā metadatne"
#: eps_Export.xcu
msgctxt ""
@@ -140,7 +140,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PBM - Portable Bitmap"
-msgstr "PBM - Portable Bitmap"
+msgstr "PBM - pārnesama bitkarte"
#: pcd_Import_Base.xcu
msgctxt ""
@@ -266,7 +266,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - Scalable Vector Graphics"
+msgstr "SVG - mērogojamā vektorgrafika"
#: svg_Import.xcu
msgctxt ""
@@ -275,7 +275,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr "SVG - Scalable Vector Graphics"
+msgstr "SVG - mērogojamā vektorgrafika"
#: svm_Export.xcu
msgctxt ""
@@ -329,7 +329,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "WMF - Windows Metafile"
-msgstr "WMF - Windows Metafile"
+msgstr "WMF - Windows metadatne"
#: wmf_Import.xcu
msgctxt ""
@@ -338,7 +338,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "WMF - Windows Metafile"
-msgstr "WMF - Windows Metafile"
+msgstr "WMF - Windows metadatne"
#: xbm_Import.xcu
msgctxt ""
@@ -347,7 +347,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "XBM - X Bitmap"
-msgstr "XBM - X Bitmap"
+msgstr "XBM - X bitkarte"
#: xpm_Import.xcu
msgctxt ""
@@ -356,4 +356,4 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "XPM - X PixMap"
-msgstr "XPM - X PixMap"
+msgstr "XPM - X pikseļkarte"
diff --git a/source/lv/filter/source/config/fragments/types.po b/source/lv/filter/source/config/fragments/types.po
index 775371b836f..2cd2876e36d 100644
--- a/source/lv/filter/source/config/fragments/types.po
+++ b/source/lv/filter/source/config/fragments/types.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-06-04 15:43+0200\n"
-"PO-Revision-Date: 2018-08-31 07:50+0000\n"
+"PO-Revision-Date: 2019-03-03 19:41+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
"Language: lv\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1535701803.000000\n"
+"X-POOTLE-MTIME: 1551642090.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -257,7 +257,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Office Open XML Presentation AutoPlay"
-msgstr "Office Open XML prezentācijas AutoPlay"
+msgstr "Office Open XML prezentācijas automātiskā atskaņošana"
#: math8.xcu
msgctxt ""
diff --git a/source/lv/forms/messages.po b/source/lv/forms/messages.po
index e51fee78cd1..c3c45ca37b9 100644
--- a/source/lv/forms/messages.po
+++ b/source/lv/forms/messages.po
@@ -4,14 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-02-27 13:56+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2019-02-01 13:15+0000\n"
+"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: lv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1549026929.000000\n"
#: forms/inc/strings.hrc:25
msgctxt "RID_BASELISTBOX_ERROR_FILLLIST"
@@ -175,7 +178,7 @@ msgstr "Nepieciešama vērtība."
#: forms/inc/strings.hrc:57
msgctxt "RID_STR_XFORMS_INVALID_CONSTRAINT"
msgid "The constraint '$1' not validated."
-msgstr "Ierobežojums '$1' nav derīgs."
+msgstr "Ierobežojums '$1' nav pārbaudīts."
#: forms/inc/strings.hrc:58
msgctxt "RID_STR_XFORMS_VALUE_IS_NOT_A"
diff --git a/source/lv/formula/messages.po b/source/lv/formula/messages.po
index da5e9032d60..930df040c0a 100644
--- a/source/lv/formula/messages.po
+++ b/source/lv/formula/messages.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-11-05 17:38+0100\n"
-"PO-Revision-Date: 2017-10-21 08:18+0000\n"
-"Last-Translator: nitalynx <nitalynx@gmail.com>\n"
+"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"PO-Revision-Date: 2019-04-17 09:27+0000\n"
+"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lv\n"
"MIME-Version: 1.0\n"
@@ -13,2070 +13,2075 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1508573915.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1555493273.000000\n"
-#: formula/inc/core_resource.hrc:2263
+#: formula/inc/core_resource.hrc:2268
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "IF"
msgstr "IF"
-#: formula/inc/core_resource.hrc:2264
+#: formula/inc/core_resource.hrc:2269
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "IFERROR"
msgstr "IFERROR"
-#: formula/inc/core_resource.hrc:2265
+#: formula/inc/core_resource.hrc:2270
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "IFNA"
msgstr "IFNA"
-#: formula/inc/core_resource.hrc:2266
+#: formula/inc/core_resource.hrc:2271
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHOOSE"
msgstr "CHOOSE"
-#: formula/inc/core_resource.hrc:2267
+#: formula/inc/core_resource.hrc:2272
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#All"
msgstr "#Visi"
-#: formula/inc/core_resource.hrc:2268
+#: formula/inc/core_resource.hrc:2273
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#Headers"
msgstr "#Galvenes"
-#: formula/inc/core_resource.hrc:2269
+#: formula/inc/core_resource.hrc:2274
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#Data"
msgstr "#Dati"
-#: formula/inc/core_resource.hrc:2270
+#: formula/inc/core_resource.hrc:2275
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#Totals"
msgstr "#Kopsummas"
-#: formula/inc/core_resource.hrc:2271
+#: formula/inc/core_resource.hrc:2276
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#This Row"
msgstr "#Šī rinda"
-#: formula/inc/core_resource.hrc:2272
+#: formula/inc/core_resource.hrc:2277
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "AND"
msgstr "AND"
-#: formula/inc/core_resource.hrc:2273
+#: formula/inc/core_resource.hrc:2278
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "OR"
msgstr "OR"
-#: formula/inc/core_resource.hrc:2274
+#: formula/inc/core_resource.hrc:2279
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "XOR"
msgstr "XOR"
-#: formula/inc/core_resource.hrc:2275
+#: formula/inc/core_resource.hrc:2280
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NOT"
msgstr "NOT"
-#: formula/inc/core_resource.hrc:2276
+#: formula/inc/core_resource.hrc:2281
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NEG"
msgstr "NEG"
-#: formula/inc/core_resource.hrc:2277
+#: formula/inc/core_resource.hrc:2282
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PI"
msgstr "PI"
#. ???
-#: formula/inc/core_resource.hrc:2278
+#: formula/inc/core_resource.hrc:2283
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RAND"
msgstr "RAND"
-#: formula/inc/core_resource.hrc:2279
+#: formula/inc/core_resource.hrc:2284
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TRUE"
msgstr "TRUE"
-#: formula/inc/core_resource.hrc:2280
+#: formula/inc/core_resource.hrc:2285
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FALSE"
msgstr "FALSE"
-#: formula/inc/core_resource.hrc:2281
+#: formula/inc/core_resource.hrc:2286
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TODAY"
msgstr "TODAY"
-#: formula/inc/core_resource.hrc:2282
+#: formula/inc/core_resource.hrc:2287
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NOW"
msgstr "NOW"
-#: formula/inc/core_resource.hrc:2283
+#: formula/inc/core_resource.hrc:2288
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NA"
msgstr "NA"
-#: formula/inc/core_resource.hrc:2284
+#: formula/inc/core_resource.hrc:2289
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CURRENT"
msgstr "CURRENT"
-#: formula/inc/core_resource.hrc:2285
+#: formula/inc/core_resource.hrc:2290
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DEGREES"
msgstr "DEGREES"
-#: formula/inc/core_resource.hrc:2286
+#: formula/inc/core_resource.hrc:2291
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RADIANS"
msgstr "RADIANS"
-#: formula/inc/core_resource.hrc:2287
+#: formula/inc/core_resource.hrc:2292
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SIN"
msgstr "SIN"
-#: formula/inc/core_resource.hrc:2288
+#: formula/inc/core_resource.hrc:2293
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COS"
msgstr "COS"
-#: formula/inc/core_resource.hrc:2289
+#: formula/inc/core_resource.hrc:2294
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TAN"
msgstr "TAN"
-#: formula/inc/core_resource.hrc:2290
+#: formula/inc/core_resource.hrc:2295
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COT"
msgstr "COT"
-#: formula/inc/core_resource.hrc:2291
+#: formula/inc/core_resource.hrc:2296
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ASIN"
msgstr "ASIN"
-#: formula/inc/core_resource.hrc:2292
+#: formula/inc/core_resource.hrc:2297
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ACOS"
msgstr "ACOS"
-#: formula/inc/core_resource.hrc:2293
+#: formula/inc/core_resource.hrc:2298
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ATAN"
msgstr "ATAN"
-#: formula/inc/core_resource.hrc:2294
+#: formula/inc/core_resource.hrc:2299
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ACOT"
msgstr "ACOT"
-#: formula/inc/core_resource.hrc:2295
+#: formula/inc/core_resource.hrc:2300
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SINH"
msgstr "SINH"
-#: formula/inc/core_resource.hrc:2296
+#: formula/inc/core_resource.hrc:2301
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COSH"
msgstr "COSH"
-#: formula/inc/core_resource.hrc:2297
+#: formula/inc/core_resource.hrc:2302
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TANH"
msgstr "TANH"
-#: formula/inc/core_resource.hrc:2298
+#: formula/inc/core_resource.hrc:2303
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COTH"
msgstr "COTH"
-#: formula/inc/core_resource.hrc:2299
+#: formula/inc/core_resource.hrc:2304
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ASINH"
msgstr "ASINH"
-#: formula/inc/core_resource.hrc:2300
+#: formula/inc/core_resource.hrc:2305
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ACOSH"
msgstr "ACOSH"
-#: formula/inc/core_resource.hrc:2301
+#: formula/inc/core_resource.hrc:2306
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ATANH"
msgstr "ATANH"
-#: formula/inc/core_resource.hrc:2302
+#: formula/inc/core_resource.hrc:2307
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ACOTH"
msgstr "ACOTH"
-#: formula/inc/core_resource.hrc:2303
+#: formula/inc/core_resource.hrc:2308
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CSC"
msgstr "CSC"
-#: formula/inc/core_resource.hrc:2304
+#: formula/inc/core_resource.hrc:2309
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SEC"
msgstr "SEC"
-#: formula/inc/core_resource.hrc:2305
+#: formula/inc/core_resource.hrc:2310
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CSCH"
msgstr "CSCH"
-#: formula/inc/core_resource.hrc:2306
+#: formula/inc/core_resource.hrc:2311
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SECH"
msgstr "SECH"
-#: formula/inc/core_resource.hrc:2307
+#: formula/inc/core_resource.hrc:2312
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "EXP"
msgstr "EXP"
-#: formula/inc/core_resource.hrc:2308
+#: formula/inc/core_resource.hrc:2313
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LN"
msgstr "LN"
-#: formula/inc/core_resource.hrc:2309
+#: formula/inc/core_resource.hrc:2314
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SQRT"
msgstr "SQRT"
-#: formula/inc/core_resource.hrc:2310
+#: formula/inc/core_resource.hrc:2315
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FACT"
msgstr "FACT"
-#: formula/inc/core_resource.hrc:2311
+#: formula/inc/core_resource.hrc:2316
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "YEAR"
msgstr "YEAR"
-#: formula/inc/core_resource.hrc:2312
+#: formula/inc/core_resource.hrc:2317
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MONTH"
msgstr "MONTH"
-#: formula/inc/core_resource.hrc:2313
+#: formula/inc/core_resource.hrc:2318
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DAY"
msgstr "DAY"
-#: formula/inc/core_resource.hrc:2314
+#: formula/inc/core_resource.hrc:2319
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "HOUR"
msgstr "HOUR"
-#: formula/inc/core_resource.hrc:2315
+#: formula/inc/core_resource.hrc:2320
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MINUTE"
msgstr "MINUTE"
-#: formula/inc/core_resource.hrc:2316
+#: formula/inc/core_resource.hrc:2321
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SECOND"
msgstr "SECOND"
-#: formula/inc/core_resource.hrc:2317
+#: formula/inc/core_resource.hrc:2322
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SIGN"
msgstr "SIGN"
-#: formula/inc/core_resource.hrc:2318
+#: formula/inc/core_resource.hrc:2323
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ABS"
msgstr "ABS"
-#: formula/inc/core_resource.hrc:2319
+#: formula/inc/core_resource.hrc:2324
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "INT"
msgstr "INT"
-#: formula/inc/core_resource.hrc:2320
+#: formula/inc/core_resource.hrc:2325
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PHI"
msgstr "PHI"
-#: formula/inc/core_resource.hrc:2321
+#: formula/inc/core_resource.hrc:2326
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GAUSS"
msgstr "GAUSS"
-#: formula/inc/core_resource.hrc:2322
+#: formula/inc/core_resource.hrc:2327
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISBLANK"
msgstr "ISBLANK"
-#: formula/inc/core_resource.hrc:2323
+#: formula/inc/core_resource.hrc:2328
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISTEXT"
msgstr "ISTEXT"
-#: formula/inc/core_resource.hrc:2324
+#: formula/inc/core_resource.hrc:2329
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISNONTEXT"
msgstr "ISNONTEXT"
-#: formula/inc/core_resource.hrc:2325
+#: formula/inc/core_resource.hrc:2330
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISLOGICAL"
msgstr "ISLOGICAL"
-#: formula/inc/core_resource.hrc:2326
+#: formula/inc/core_resource.hrc:2331
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TYPE"
msgstr "TYPE"
-#: formula/inc/core_resource.hrc:2327
+#: formula/inc/core_resource.hrc:2332
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CELL"
msgstr "CELL"
-#: formula/inc/core_resource.hrc:2328
+#: formula/inc/core_resource.hrc:2333
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISREF"
msgstr "ISREF"
-#: formula/inc/core_resource.hrc:2329
+#: formula/inc/core_resource.hrc:2334
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISNUMBER"
msgstr "ISNUMBER"
-#: formula/inc/core_resource.hrc:2330
+#: formula/inc/core_resource.hrc:2335
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISFORMULA"
msgstr "ISFORMULA"
-#: formula/inc/core_resource.hrc:2331
+#: formula/inc/core_resource.hrc:2336
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISNA"
msgstr "ISNA"
-#: formula/inc/core_resource.hrc:2332
+#: formula/inc/core_resource.hrc:2337
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISERR"
msgstr "ISERR"
-#: formula/inc/core_resource.hrc:2333
+#: formula/inc/core_resource.hrc:2338
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISERROR"
msgstr "ISERROR"
-#: formula/inc/core_resource.hrc:2334
+#: formula/inc/core_resource.hrc:2339
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISEVEN"
msgstr "ISEVEN"
-#: formula/inc/core_resource.hrc:2335
+#: formula/inc/core_resource.hrc:2340
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISODD"
msgstr "ISODD"
-#: formula/inc/core_resource.hrc:2336
+#: formula/inc/core_resource.hrc:2341
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "N"
msgstr "N"
-#: formula/inc/core_resource.hrc:2337
+#: formula/inc/core_resource.hrc:2342
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DATEVALUE"
msgstr "DATEVALUE"
-#: formula/inc/core_resource.hrc:2338
+#: formula/inc/core_resource.hrc:2343
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TIMEVALUE"
msgstr "TIMEVALUE"
-#: formula/inc/core_resource.hrc:2339
+#: formula/inc/core_resource.hrc:2344
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CODE"
msgstr "CODE"
-#: formula/inc/core_resource.hrc:2340
+#: formula/inc/core_resource.hrc:2345
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TRIM"
msgstr "TRIM"
-#: formula/inc/core_resource.hrc:2341
+#: formula/inc/core_resource.hrc:2346
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "UPPER"
msgstr "UPPER"
-#: formula/inc/core_resource.hrc:2342
+#: formula/inc/core_resource.hrc:2347
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PROPER"
msgstr "PROPER"
-#: formula/inc/core_resource.hrc:2343
+#: formula/inc/core_resource.hrc:2348
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOWER"
msgstr "LOWER"
-#: formula/inc/core_resource.hrc:2344
+#: formula/inc/core_resource.hrc:2349
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LEN"
msgstr "LEN"
-#: formula/inc/core_resource.hrc:2345
+#: formula/inc/core_resource.hrc:2350
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "T"
msgstr "T"
-#: formula/inc/core_resource.hrc:2346
+#: formula/inc/core_resource.hrc:2351
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VALUE"
msgstr "VALUE"
-#: formula/inc/core_resource.hrc:2347
+#: formula/inc/core_resource.hrc:2352
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CLEAN"
msgstr "CLEAN"
-#: formula/inc/core_resource.hrc:2348
+#: formula/inc/core_resource.hrc:2353
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHAR"
msgstr "CHAR"
-#: formula/inc/core_resource.hrc:2349
+#: formula/inc/core_resource.hrc:2354
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "JIS"
msgstr "JIS"
-#: formula/inc/core_resource.hrc:2350
+#: formula/inc/core_resource.hrc:2355
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ASC"
msgstr "ASC"
-#: formula/inc/core_resource.hrc:2351
+#: formula/inc/core_resource.hrc:2356
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "UNICODE"
msgstr "UNICODE"
-#: formula/inc/core_resource.hrc:2352
+#: formula/inc/core_resource.hrc:2357
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "UNICHAR"
msgstr "UNICHAR"
-#: formula/inc/core_resource.hrc:2353
+#: formula/inc/core_resource.hrc:2358
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOG10"
msgstr "LOG10"
-#: formula/inc/core_resource.hrc:2354
+#: formula/inc/core_resource.hrc:2359
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "EVEN"
msgstr "EVEN"
-#: formula/inc/core_resource.hrc:2355
+#: formula/inc/core_resource.hrc:2360
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ODD"
msgstr "ODD"
-#: formula/inc/core_resource.hrc:2356
+#: formula/inc/core_resource.hrc:2361
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORMSDIST"
msgstr "NORMSDIST"
-#: formula/inc/core_resource.hrc:2357
+#: formula/inc/core_resource.hrc:2362
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORM.S.DIST"
msgstr "NORM.S.DIST"
-#: formula/inc/core_resource.hrc:2358
+#: formula/inc/core_resource.hrc:2363
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FISHER"
msgstr "FISHER"
-#: formula/inc/core_resource.hrc:2359
+#: formula/inc/core_resource.hrc:2364
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FISHERINV"
msgstr "FISHERINV"
-#: formula/inc/core_resource.hrc:2360
+#: formula/inc/core_resource.hrc:2365
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORMSINV"
msgstr "NORMSINV"
-#: formula/inc/core_resource.hrc:2361
+#: formula/inc/core_resource.hrc:2366
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORM.S.INV"
msgstr "NORM.S.INV"
-#: formula/inc/core_resource.hrc:2362
+#: formula/inc/core_resource.hrc:2367
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GAMMALN"
msgstr "GAMMALN"
-#: formula/inc/core_resource.hrc:2363
+#: formula/inc/core_resource.hrc:2368
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GAMMALN.PRECISE"
msgstr "GAMMALN.PRECISE"
-#: formula/inc/core_resource.hrc:2364
+#: formula/inc/core_resource.hrc:2369
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ERRORTYPE"
msgstr "ERRORTYPE"
-#: formula/inc/core_resource.hrc:2365
+#: formula/inc/core_resource.hrc:2370
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ERROR.TYPE"
msgstr "ERROR.TYPE"
-#: formula/inc/core_resource.hrc:2366
+#: formula/inc/core_resource.hrc:2371
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORMULA"
msgstr "FORMULA"
-#: formula/inc/core_resource.hrc:2367
+#: formula/inc/core_resource.hrc:2372
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ARABIC"
msgstr "ARABIC"
-#: formula/inc/core_resource.hrc:2368
+#: formula/inc/core_resource.hrc:2373
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ATAN2"
msgstr "ATAN2"
-#: formula/inc/core_resource.hrc:2369
+#: formula/inc/core_resource.hrc:2374
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CEILING.MATH"
msgstr "CEILING.MATH"
-#: formula/inc/core_resource.hrc:2370
+#: formula/inc/core_resource.hrc:2375
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CEILING"
msgstr "CEILING"
-#: formula/inc/core_resource.hrc:2371
+#: formula/inc/core_resource.hrc:2376
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CEILING.XCL"
msgstr "CEILING.XCL"
-#: formula/inc/core_resource.hrc:2372
+#: formula/inc/core_resource.hrc:2377
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CEILING.PRECISE"
msgstr "CEILING.PRECISE"
-#: formula/inc/core_resource.hrc:2373
+#: formula/inc/core_resource.hrc:2378
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISO.CEILING"
msgstr "ISO.CEILING"
-#: formula/inc/core_resource.hrc:2374
+#: formula/inc/core_resource.hrc:2379
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FLOOR"
msgstr "FLOOR"
-#: formula/inc/core_resource.hrc:2375
+#: formula/inc/core_resource.hrc:2380
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FLOOR.XCL"
msgstr "FLOOR.XCL"
-#: formula/inc/core_resource.hrc:2376
+#: formula/inc/core_resource.hrc:2381
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FLOOR.MATH"
msgstr "FLOOR.MATH"
-#: formula/inc/core_resource.hrc:2377
+#: formula/inc/core_resource.hrc:2382
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FLOOR.PRECISE"
msgstr "FLOOR.PRECISE"
-#: formula/inc/core_resource.hrc:2378
+#: formula/inc/core_resource.hrc:2383
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ROUND"
msgstr "ROUND"
-#: formula/inc/core_resource.hrc:2379
+#: formula/inc/core_resource.hrc:2384
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ROUNDUP"
msgstr "ROUNDUP"
-#: formula/inc/core_resource.hrc:2380
+#: formula/inc/core_resource.hrc:2385
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ROUNDDOWN"
msgstr "ROUNDDOWN"
-#: formula/inc/core_resource.hrc:2381
+#: formula/inc/core_resource.hrc:2386
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TRUNC"
msgstr "TRUNC"
-#: formula/inc/core_resource.hrc:2382
+#: formula/inc/core_resource.hrc:2387
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOG"
msgstr "LOG"
-#: formula/inc/core_resource.hrc:2383
+#: formula/inc/core_resource.hrc:2388
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "POWER"
msgstr "POWER"
-#: formula/inc/core_resource.hrc:2384
+#: formula/inc/core_resource.hrc:2389
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GCD"
msgstr "GCD"
-#: formula/inc/core_resource.hrc:2385
+#: formula/inc/core_resource.hrc:2390
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LCM"
msgstr "LCM"
-#: formula/inc/core_resource.hrc:2386
+#: formula/inc/core_resource.hrc:2391
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MOD"
msgstr "MOD"
-#: formula/inc/core_resource.hrc:2387
+#: formula/inc/core_resource.hrc:2392
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUMPRODUCT"
msgstr "SUMPRODUCT"
-#: formula/inc/core_resource.hrc:2388
+#: formula/inc/core_resource.hrc:2393
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUMSQ"
msgstr "SUMSQ"
-#: formula/inc/core_resource.hrc:2389
+#: formula/inc/core_resource.hrc:2394
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUMX2MY2"
msgstr "SUMX2MY2"
-#: formula/inc/core_resource.hrc:2390
+#: formula/inc/core_resource.hrc:2395
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUMX2PY2"
msgstr "SUMX2PY2"
-#: formula/inc/core_resource.hrc:2391
+#: formula/inc/core_resource.hrc:2396
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUMXMY2"
msgstr "SUMXMY2"
-#: formula/inc/core_resource.hrc:2392
+#: formula/inc/core_resource.hrc:2397
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DATE"
msgstr "DATE"
-#: formula/inc/core_resource.hrc:2393
+#: formula/inc/core_resource.hrc:2398
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TIME"
msgstr "TIME"
-#: formula/inc/core_resource.hrc:2394
+#: formula/inc/core_resource.hrc:2399
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DAYS"
msgstr "DAYS"
-#: formula/inc/core_resource.hrc:2395
+#: formula/inc/core_resource.hrc:2400
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DAYS360"
msgstr "DAYS360"
-#: formula/inc/core_resource.hrc:2396
+#: formula/inc/core_resource.hrc:2401
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DATEDIF"
msgstr "DATEDIF"
-#: formula/inc/core_resource.hrc:2397
+#: formula/inc/core_resource.hrc:2402
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MIN"
msgstr "MIN"
-#: formula/inc/core_resource.hrc:2398
+#: formula/inc/core_resource.hrc:2403
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MINA"
msgstr "MINA"
-#: formula/inc/core_resource.hrc:2399
+#: formula/inc/core_resource.hrc:2404
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MAX"
msgstr "MAX"
-#: formula/inc/core_resource.hrc:2400
+#: formula/inc/core_resource.hrc:2405
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MAXA"
msgstr "MAXA"
-#: formula/inc/core_resource.hrc:2401
+#: formula/inc/core_resource.hrc:2406
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUM"
msgstr "SUM"
-#: formula/inc/core_resource.hrc:2402
+#: formula/inc/core_resource.hrc:2407
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PRODUCT"
msgstr "PRODUCT"
-#: formula/inc/core_resource.hrc:2403
+#: formula/inc/core_resource.hrc:2408
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "AVERAGE"
msgstr "AVERAGE"
-#: formula/inc/core_resource.hrc:2404
+#: formula/inc/core_resource.hrc:2409
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "AVERAGEA"
msgstr "AVERAGEA"
-#: formula/inc/core_resource.hrc:2405
+#: formula/inc/core_resource.hrc:2410
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COUNT"
msgstr "COUNT"
-#: formula/inc/core_resource.hrc:2406
+#: formula/inc/core_resource.hrc:2411
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COUNTA"
msgstr "COUNTA"
-#: formula/inc/core_resource.hrc:2407
+#: formula/inc/core_resource.hrc:2412
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NPV"
msgstr "NPV"
-#: formula/inc/core_resource.hrc:2408
+#: formula/inc/core_resource.hrc:2413
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "IRR"
msgstr "IRR"
-#: formula/inc/core_resource.hrc:2409
+#: formula/inc/core_resource.hrc:2414
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MIRR"
msgstr "MIRR"
-#: formula/inc/core_resource.hrc:2410
+#: formula/inc/core_resource.hrc:2415
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISPMT"
msgstr "ISPMT"
-#: formula/inc/core_resource.hrc:2411
+#: formula/inc/core_resource.hrc:2416
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VAR"
msgstr "VAR"
-#: formula/inc/core_resource.hrc:2412
+#: formula/inc/core_resource.hrc:2417
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VARA"
msgstr "VARA"
-#: formula/inc/core_resource.hrc:2413
+#: formula/inc/core_resource.hrc:2418
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VARP"
msgstr "VARP"
-#: formula/inc/core_resource.hrc:2414
+#: formula/inc/core_resource.hrc:2419
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VARPA"
msgstr "VARPA"
-#: formula/inc/core_resource.hrc:2415
+#: formula/inc/core_resource.hrc:2420
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VAR.P"
msgstr "VAR.P"
-#: formula/inc/core_resource.hrc:2416
+#: formula/inc/core_resource.hrc:2421
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VAR.S"
msgstr "VAR.S"
-#: formula/inc/core_resource.hrc:2417
+#: formula/inc/core_resource.hrc:2422
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STDEV"
msgstr "STDEV"
-#: formula/inc/core_resource.hrc:2418
+#: formula/inc/core_resource.hrc:2423
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STDEVA"
msgstr "STDEVA"
-#: formula/inc/core_resource.hrc:2419
+#: formula/inc/core_resource.hrc:2424
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STDEVP"
msgstr "STDEVP"
-#: formula/inc/core_resource.hrc:2420
+#: formula/inc/core_resource.hrc:2425
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STDEVPA"
msgstr "STDEVPA"
-#: formula/inc/core_resource.hrc:2421
+#: formula/inc/core_resource.hrc:2426
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STDEV.P"
msgstr "STDEV.P"
-#: formula/inc/core_resource.hrc:2422
+#: formula/inc/core_resource.hrc:2427
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STDEV.S"
msgstr "STDEV.S"
-#: formula/inc/core_resource.hrc:2423
+#: formula/inc/core_resource.hrc:2428
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "B"
msgstr "B"
-#: formula/inc/core_resource.hrc:2424
+#: formula/inc/core_resource.hrc:2429
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORMDIST"
msgstr "NORMDIST"
-#: formula/inc/core_resource.hrc:2425
+#: formula/inc/core_resource.hrc:2430
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORM.DIST"
msgstr "NORM.DIST"
-#: formula/inc/core_resource.hrc:2426
+#: formula/inc/core_resource.hrc:2431
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "EXPONDIST"
msgstr "EXPONDIST"
-#: formula/inc/core_resource.hrc:2427
+#: formula/inc/core_resource.hrc:2432
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "EXPON.DIST"
msgstr "EXPON.DIST"
-#: formula/inc/core_resource.hrc:2428
+#: formula/inc/core_resource.hrc:2433
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BINOMDIST"
msgstr "BINOMDIST"
-#: formula/inc/core_resource.hrc:2429
+#: formula/inc/core_resource.hrc:2434
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BINOM.DIST"
msgstr "BINOM.DIST"
-#: formula/inc/core_resource.hrc:2430
+#: formula/inc/core_resource.hrc:2435
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "POISSON"
msgstr "POISSON"
-#: formula/inc/core_resource.hrc:2431
+#: formula/inc/core_resource.hrc:2436
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "POISSON.DIST"
msgstr "POISSON.DIST"
-#: formula/inc/core_resource.hrc:2432
+#: formula/inc/core_resource.hrc:2437
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COMBIN"
msgstr "COMBIN"
-#: formula/inc/core_resource.hrc:2433
+#: formula/inc/core_resource.hrc:2438
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COMBINA"
msgstr "COMBINA"
-#: formula/inc/core_resource.hrc:2434
+#: formula/inc/core_resource.hrc:2439
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PERMUT"
msgstr "PERMUT"
-#: formula/inc/core_resource.hrc:2435
+#: formula/inc/core_resource.hrc:2440
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PERMUTATIONA"
msgstr "PERMUTATIONA"
-#: formula/inc/core_resource.hrc:2436
+#: formula/inc/core_resource.hrc:2441
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PV"
msgstr "PV"
-#: formula/inc/core_resource.hrc:2437
+#: formula/inc/core_resource.hrc:2442
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SYD"
msgstr "SYD"
-#: formula/inc/core_resource.hrc:2438
+#: formula/inc/core_resource.hrc:2443
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DDB"
msgstr "DDB"
-#: formula/inc/core_resource.hrc:2439
+#: formula/inc/core_resource.hrc:2444
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DB"
msgstr "DB"
-#: formula/inc/core_resource.hrc:2440
+#: formula/inc/core_resource.hrc:2445
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VDB"
msgstr "VDB"
-#: formula/inc/core_resource.hrc:2441
+#: formula/inc/core_resource.hrc:2446
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PDURATION"
msgstr "PDURATION"
-#: formula/inc/core_resource.hrc:2442
+#: formula/inc/core_resource.hrc:2447
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SLN"
msgstr "SLN"
-#: formula/inc/core_resource.hrc:2443
+#: formula/inc/core_resource.hrc:2448
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PMT"
msgstr "PMT"
-#: formula/inc/core_resource.hrc:2444
+#: formula/inc/core_resource.hrc:2449
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COLUMNS"
msgstr "COLUMNS"
-#: formula/inc/core_resource.hrc:2445
+#: formula/inc/core_resource.hrc:2450
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ROWS"
msgstr "ROWS"
-#: formula/inc/core_resource.hrc:2446
+#: formula/inc/core_resource.hrc:2451
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SHEETS"
msgstr "SHEETS"
-#: formula/inc/core_resource.hrc:2447
+#: formula/inc/core_resource.hrc:2452
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COLUMN"
msgstr "COLUMN"
-#: formula/inc/core_resource.hrc:2448
+#: formula/inc/core_resource.hrc:2453
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ROW"
msgstr "ROW"
-#: formula/inc/core_resource.hrc:2449
+#: formula/inc/core_resource.hrc:2454
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SHEET"
msgstr "SHEET"
-#: formula/inc/core_resource.hrc:2450
+#: formula/inc/core_resource.hrc:2455
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RRI"
msgstr "RRI"
-#: formula/inc/core_resource.hrc:2451
+#: formula/inc/core_resource.hrc:2456
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FV"
msgstr "FV"
-#: formula/inc/core_resource.hrc:2452
+#: formula/inc/core_resource.hrc:2457
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NPER"
msgstr "NPER"
-#: formula/inc/core_resource.hrc:2453
+#: formula/inc/core_resource.hrc:2458
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RATE"
msgstr "RATE"
-#: formula/inc/core_resource.hrc:2454
+#: formula/inc/core_resource.hrc:2459
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "IPMT"
msgstr "IPMT"
-#: formula/inc/core_resource.hrc:2455
+#: formula/inc/core_resource.hrc:2460
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PPMT"
msgstr "PPMT"
-#: formula/inc/core_resource.hrc:2456
+#: formula/inc/core_resource.hrc:2461
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CUMIPMT"
msgstr "CUMIPMT"
-#: formula/inc/core_resource.hrc:2457
+#: formula/inc/core_resource.hrc:2462
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CUMPRINC"
msgstr "CUMPRINC"
-#: formula/inc/core_resource.hrc:2458
+#: formula/inc/core_resource.hrc:2463
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "EFFECT"
msgstr "EFFECT"
-#: formula/inc/core_resource.hrc:2459
+#: formula/inc/core_resource.hrc:2464
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NOMINAL"
msgstr "NOMINAL"
-#: formula/inc/core_resource.hrc:2460
+#: formula/inc/core_resource.hrc:2465
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUBTOTAL"
msgstr "SUBTOTAL"
-#: formula/inc/core_resource.hrc:2461
+#: formula/inc/core_resource.hrc:2466
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DSUM"
msgstr "DSUM"
-#: formula/inc/core_resource.hrc:2462
+#: formula/inc/core_resource.hrc:2467
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DCOUNT"
msgstr "DCOUNT"
-#: formula/inc/core_resource.hrc:2463
+#: formula/inc/core_resource.hrc:2468
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DCOUNTA"
msgstr "DCOUNTA"
-#: formula/inc/core_resource.hrc:2464
+#: formula/inc/core_resource.hrc:2469
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DAVERAGE"
msgstr "DAVERAGE"
-#: formula/inc/core_resource.hrc:2465
+#: formula/inc/core_resource.hrc:2470
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DGET"
msgstr "DGET"
-#: formula/inc/core_resource.hrc:2466
+#: formula/inc/core_resource.hrc:2471
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DMAX"
msgstr "DMAX"
-#: formula/inc/core_resource.hrc:2467
+#: formula/inc/core_resource.hrc:2472
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DMIN"
msgstr "DMIN"
-#: formula/inc/core_resource.hrc:2468
+#: formula/inc/core_resource.hrc:2473
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DPRODUCT"
msgstr "DPRODUCT"
-#: formula/inc/core_resource.hrc:2469
+#: formula/inc/core_resource.hrc:2474
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DSTDEV"
msgstr "DSTDEV"
-#: formula/inc/core_resource.hrc:2470
+#: formula/inc/core_resource.hrc:2475
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DSTDEVP"
msgstr "DSTDEVP"
-#: formula/inc/core_resource.hrc:2471
+#: formula/inc/core_resource.hrc:2476
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DVAR"
msgstr "DVAR"
-#: formula/inc/core_resource.hrc:2472
+#: formula/inc/core_resource.hrc:2477
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DVARP"
msgstr "DVARP"
-#: formula/inc/core_resource.hrc:2473
+#: formula/inc/core_resource.hrc:2478
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "INDIRECT"
msgstr "INDIRECT"
-#: formula/inc/core_resource.hrc:2474
+#: formula/inc/core_resource.hrc:2479
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ADDRESS"
msgstr "ADDRESS"
-#: formula/inc/core_resource.hrc:2475
+#: formula/inc/core_resource.hrc:2480
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MATCH"
msgstr "MATCH"
-#: formula/inc/core_resource.hrc:2476
+#: formula/inc/core_resource.hrc:2481
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COUNTBLANK"
msgstr "COUNTBLANK"
-#: formula/inc/core_resource.hrc:2477
+#: formula/inc/core_resource.hrc:2482
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COUNTIF"
msgstr "COUNTIF"
-#: formula/inc/core_resource.hrc:2478
+#: formula/inc/core_resource.hrc:2483
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUMIF"
msgstr "SUMIF"
-#: formula/inc/core_resource.hrc:2479
+#: formula/inc/core_resource.hrc:2484
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "AVERAGEIF"
msgstr "AVERAGEIF"
-#: formula/inc/core_resource.hrc:2480
+#: formula/inc/core_resource.hrc:2485
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUMIFS"
msgstr "SUMIFS"
-#: formula/inc/core_resource.hrc:2481
+#: formula/inc/core_resource.hrc:2486
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "AVERAGEIFS"
msgstr "AVERAGEIFS"
-#: formula/inc/core_resource.hrc:2482
+#: formula/inc/core_resource.hrc:2487
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COUNTIFS"
msgstr "COUNTIFS"
-#: formula/inc/core_resource.hrc:2483
+#: formula/inc/core_resource.hrc:2488
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOOKUP"
msgstr "LOOKUP"
-#: formula/inc/core_resource.hrc:2484
+#: formula/inc/core_resource.hrc:2489
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VLOOKUP"
msgstr "VLOOKUP"
-#: formula/inc/core_resource.hrc:2485
+#: formula/inc/core_resource.hrc:2490
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "HLOOKUP"
msgstr "HLOOKUP"
-#: formula/inc/core_resource.hrc:2486
+#: formula/inc/core_resource.hrc:2491
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MULTIRANGE"
msgstr "MULTIRANGE"
#. legacy for range list (union)
-#: formula/inc/core_resource.hrc:2487
+#: formula/inc/core_resource.hrc:2492
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "OFFSET"
msgstr "OFFSET"
-#: formula/inc/core_resource.hrc:2488
+#: formula/inc/core_resource.hrc:2493
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "INDEX"
msgstr "INDEX"
#. ?? first character = I ??
-#: formula/inc/core_resource.hrc:2489
+#: formula/inc/core_resource.hrc:2494
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "AREAS"
msgstr "AREAS"
-#: formula/inc/core_resource.hrc:2490
+#: formula/inc/core_resource.hrc:2495
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DOLLAR"
msgstr "DOLLAR"
-#: formula/inc/core_resource.hrc:2491
+#: formula/inc/core_resource.hrc:2496
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "REPLACE"
msgstr "REPLACE"
-#: formula/inc/core_resource.hrc:2492
+#: formula/inc/core_resource.hrc:2497
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FIXED"
msgstr "FIXED"
-#: formula/inc/core_resource.hrc:2493
+#: formula/inc/core_resource.hrc:2498
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FIND"
msgstr "FIND"
-#: formula/inc/core_resource.hrc:2494
+#: formula/inc/core_resource.hrc:2499
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "EXACT"
msgstr "EXACT"
-#: formula/inc/core_resource.hrc:2495
+#: formula/inc/core_resource.hrc:2500
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LEFT"
msgstr "LEFT"
-#: formula/inc/core_resource.hrc:2496
+#: formula/inc/core_resource.hrc:2501
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RIGHT"
msgstr "RIGHT"
-#: formula/inc/core_resource.hrc:2497
+#: formula/inc/core_resource.hrc:2502
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SEARCH"
msgstr "SEARCH"
-#: formula/inc/core_resource.hrc:2498
+#: formula/inc/core_resource.hrc:2503
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MID"
msgstr "MID"
-#: formula/inc/core_resource.hrc:2499
+#: formula/inc/core_resource.hrc:2504
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LENB"
msgstr "LENB"
-#: formula/inc/core_resource.hrc:2500
+#: formula/inc/core_resource.hrc:2505
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RIGHTB"
msgstr "RIGHTB"
-#: formula/inc/core_resource.hrc:2501
+#: formula/inc/core_resource.hrc:2506
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LEFTB"
msgstr "LEFTB"
-#: formula/inc/core_resource.hrc:2502
+#: formula/inc/core_resource.hrc:2507
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "REPLACEB"
msgstr "REPLACEB"
-#: formula/inc/core_resource.hrc:2503
+#: formula/inc/core_resource.hrc:2508
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MIDB"
msgstr "MIDB"
-#: formula/inc/core_resource.hrc:2504
+#: formula/inc/core_resource.hrc:2509
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TEXT"
msgstr "TEXT"
-#: formula/inc/core_resource.hrc:2505
+#: formula/inc/core_resource.hrc:2510
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SUBSTITUTE"
msgstr "SUBSTITUTE"
-#: formula/inc/core_resource.hrc:2506
+#: formula/inc/core_resource.hrc:2511
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "REPT"
msgstr "REPT"
-#: formula/inc/core_resource.hrc:2507
+#: formula/inc/core_resource.hrc:2512
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CONCATENATE"
msgstr "CONCATENATE"
-#: formula/inc/core_resource.hrc:2508
+#: formula/inc/core_resource.hrc:2513
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CONCAT"
msgstr "CONCAT"
-#: formula/inc/core_resource.hrc:2509
+#: formula/inc/core_resource.hrc:2514
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TEXTJOIN"
msgstr "TEXTJOIN"
-#: formula/inc/core_resource.hrc:2510
+#: formula/inc/core_resource.hrc:2515
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "IFS"
msgstr "IFS"
-#: formula/inc/core_resource.hrc:2511
+#: formula/inc/core_resource.hrc:2516
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SWITCH"
msgstr "SWITCH"
-#: formula/inc/core_resource.hrc:2512
+#: formula/inc/core_resource.hrc:2517
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MINIFS"
msgstr "MINIFS"
-#: formula/inc/core_resource.hrc:2513
+#: formula/inc/core_resource.hrc:2518
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MAXIFS"
msgstr "MAXIFS"
-#: formula/inc/core_resource.hrc:2514
+#: formula/inc/core_resource.hrc:2519
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MVALUE"
msgstr "MVALUE"
-#: formula/inc/core_resource.hrc:2515
+#: formula/inc/core_resource.hrc:2520
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MDETERM"
msgstr "MDETERM"
-#: formula/inc/core_resource.hrc:2516
+#: formula/inc/core_resource.hrc:2521
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MINVERSE"
msgstr "MINVERSE"
-#: formula/inc/core_resource.hrc:2517
+#: formula/inc/core_resource.hrc:2522
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MMULT"
msgstr "MMULT"
-#: formula/inc/core_resource.hrc:2518
+#: formula/inc/core_resource.hrc:2523
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TRANSPOSE"
msgstr "TRANSPOSE"
-#: formula/inc/core_resource.hrc:2519
+#: formula/inc/core_resource.hrc:2524
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MUNIT"
msgstr "MUNIT"
-#: formula/inc/core_resource.hrc:2520
+#: formula/inc/core_resource.hrc:2525
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GOALSEEK"
msgstr "GOALSEEK"
-#: formula/inc/core_resource.hrc:2521
+#: formula/inc/core_resource.hrc:2526
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "HYPGEOMDIST"
msgstr "HYPGEOMDIST"
-#: formula/inc/core_resource.hrc:2522
+#: formula/inc/core_resource.hrc:2527
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "HYPGEOM.DIST"
msgstr "HYPGEOM.DIST"
-#: formula/inc/core_resource.hrc:2523
+#: formula/inc/core_resource.hrc:2528
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOGNORMDIST"
msgstr "LOGNORMDIST"
-#: formula/inc/core_resource.hrc:2524
+#: formula/inc/core_resource.hrc:2529
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOGNORM.DIST"
msgstr "LOGNORM.DIST"
-#: formula/inc/core_resource.hrc:2525
+#: formula/inc/core_resource.hrc:2530
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TDIST"
msgstr "TDIST"
-#: formula/inc/core_resource.hrc:2526
+#: formula/inc/core_resource.hrc:2531
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "T.DIST.2T"
msgstr "T.DIST.2T"
-#: formula/inc/core_resource.hrc:2527
+#: formula/inc/core_resource.hrc:2532
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "T.DIST"
msgstr "T.DIST"
-#: formula/inc/core_resource.hrc:2528
+#: formula/inc/core_resource.hrc:2533
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "T.DIST.RT"
msgstr "T.DIST.RT"
-#: formula/inc/core_resource.hrc:2529
+#: formula/inc/core_resource.hrc:2534
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FDIST"
msgstr "FDIST"
-#: formula/inc/core_resource.hrc:2530
+#: formula/inc/core_resource.hrc:2535
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "F.DIST"
msgstr "F.DIST"
-#: formula/inc/core_resource.hrc:2531
+#: formula/inc/core_resource.hrc:2536
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "F.DIST.RT"
msgstr "F.DIST.RT"
-#: formula/inc/core_resource.hrc:2532
+#: formula/inc/core_resource.hrc:2537
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHIDIST"
msgstr "CHIDIST"
-#: formula/inc/core_resource.hrc:2533
+#: formula/inc/core_resource.hrc:2538
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHISQ.DIST.RT"
msgstr "CHISQ.DIST.RT"
-#: formula/inc/core_resource.hrc:2534
+#: formula/inc/core_resource.hrc:2539
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "WEIBULL"
msgstr "WEIBULL"
-#: formula/inc/core_resource.hrc:2535
+#: formula/inc/core_resource.hrc:2540
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "WEIBULL.DIST"
msgstr "WEIBULL.DIST"
-#: formula/inc/core_resource.hrc:2536
+#: formula/inc/core_resource.hrc:2541
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NEGBINOMDIST"
msgstr "NEGBINOMDIST"
-#: formula/inc/core_resource.hrc:2537
+#: formula/inc/core_resource.hrc:2542
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NEGBINOM.DIST"
msgstr "NEGBINOM.DIST"
-#: formula/inc/core_resource.hrc:2538
+#: formula/inc/core_resource.hrc:2543
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CRITBINOM"
msgstr "CRITBINOM"
-#: formula/inc/core_resource.hrc:2539
+#: formula/inc/core_resource.hrc:2544
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BINOM.INV"
msgstr "BINOM.INV"
-#: formula/inc/core_resource.hrc:2540
+#: formula/inc/core_resource.hrc:2545
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "KURT"
msgstr "KURT"
-#: formula/inc/core_resource.hrc:2541
+#: formula/inc/core_resource.hrc:2546
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "HARMEAN"
msgstr "HARMEAN"
-#: formula/inc/core_resource.hrc:2542
+#: formula/inc/core_resource.hrc:2547
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GEOMEAN"
msgstr "GEOMEAN"
-#: formula/inc/core_resource.hrc:2543
+#: formula/inc/core_resource.hrc:2548
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STANDARDIZE"
msgstr "STANDARDIZE"
-#: formula/inc/core_resource.hrc:2544
+#: formula/inc/core_resource.hrc:2549
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "AVEDEV"
msgstr "AVEDEV"
-#: formula/inc/core_resource.hrc:2545
+#: formula/inc/core_resource.hrc:2550
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SKEW"
msgstr "SKEW"
-#: formula/inc/core_resource.hrc:2546
+#: formula/inc/core_resource.hrc:2551
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SKEWP"
msgstr "SKEWP"
-#: formula/inc/core_resource.hrc:2547
+#: formula/inc/core_resource.hrc:2552
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DEVSQ"
msgstr "DEVSQ"
-#: formula/inc/core_resource.hrc:2548
+#: formula/inc/core_resource.hrc:2553
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MEDIAN"
msgstr "MEDIAN"
-#: formula/inc/core_resource.hrc:2549
+#: formula/inc/core_resource.hrc:2554
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MODE"
msgstr "MODE"
-#: formula/inc/core_resource.hrc:2550
+#: formula/inc/core_resource.hrc:2555
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MODE.SNGL"
msgstr "MODE.SNGL"
-#: formula/inc/core_resource.hrc:2551
+#: formula/inc/core_resource.hrc:2556
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MODE.MULT"
msgstr "MODE.MULT"
-#: formula/inc/core_resource.hrc:2552
+#: formula/inc/core_resource.hrc:2557
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ZTEST"
msgstr "ZTEST"
-#: formula/inc/core_resource.hrc:2553
+#: formula/inc/core_resource.hrc:2558
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "Z.TEST"
msgstr "Z.TEST"
-#: formula/inc/core_resource.hrc:2554
+#: formula/inc/core_resource.hrc:2559
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "AGGREGATE"
msgstr "AGGREGATE"
-#: formula/inc/core_resource.hrc:2555
+#: formula/inc/core_resource.hrc:2560
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TTEST"
msgstr "TTEST"
-#: formula/inc/core_resource.hrc:2556
+#: formula/inc/core_resource.hrc:2561
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "T.TEST"
msgstr "T.TEST"
-#: formula/inc/core_resource.hrc:2557
+#: formula/inc/core_resource.hrc:2562
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RANK"
msgstr "RANK"
-#: formula/inc/core_resource.hrc:2558
+#: formula/inc/core_resource.hrc:2563
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PERCENTILE"
msgstr "PERCENTILE"
-#: formula/inc/core_resource.hrc:2559
+#: formula/inc/core_resource.hrc:2564
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PERCENTRANK"
msgstr "PERCENTRANK"
-#: formula/inc/core_resource.hrc:2560
+#: formula/inc/core_resource.hrc:2565
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PERCENTILE.INC"
msgstr "PERCENTILE.INC"
-#: formula/inc/core_resource.hrc:2561
+#: formula/inc/core_resource.hrc:2566
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PERCENTRANK.INC"
msgstr "PERCENTRANK.INC"
-#: formula/inc/core_resource.hrc:2562
+#: formula/inc/core_resource.hrc:2567
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "QUARTILE.INC"
msgstr "QUARTILE.INC"
-#: formula/inc/core_resource.hrc:2563
+#: formula/inc/core_resource.hrc:2568
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RANK.EQ"
msgstr "RANK.EQ"
-#: formula/inc/core_resource.hrc:2564
+#: formula/inc/core_resource.hrc:2569
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PERCENTILE.EXC"
msgstr "PERCENTILE.EXC"
-#: formula/inc/core_resource.hrc:2565
+#: formula/inc/core_resource.hrc:2570
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PERCENTRANK.EXC"
msgstr "PERCENTRANK.EXC"
-#: formula/inc/core_resource.hrc:2566
+#: formula/inc/core_resource.hrc:2571
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "QUARTILE.EXC"
msgstr "QUARTILE.EXC"
-#: formula/inc/core_resource.hrc:2567
+#: formula/inc/core_resource.hrc:2572
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RANK.AVG"
msgstr "RANK.AVG"
-#: formula/inc/core_resource.hrc:2568
+#: formula/inc/core_resource.hrc:2573
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LARGE"
msgstr "LARGE"
-#: formula/inc/core_resource.hrc:2569
+#: formula/inc/core_resource.hrc:2574
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SMALL"
msgstr "SMALL"
-#: formula/inc/core_resource.hrc:2570
+#: formula/inc/core_resource.hrc:2575
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FREQUENCY"
msgstr "FREQUENCY"
-#: formula/inc/core_resource.hrc:2571
+#: formula/inc/core_resource.hrc:2576
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "QUARTILE"
msgstr "QUARTILE"
-#: formula/inc/core_resource.hrc:2572
+#: formula/inc/core_resource.hrc:2577
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORMINV"
msgstr "NORMINV"
-#: formula/inc/core_resource.hrc:2573
+#: formula/inc/core_resource.hrc:2578
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORM.INV"
msgstr "NORM.INV"
-#: formula/inc/core_resource.hrc:2574
+#: formula/inc/core_resource.hrc:2579
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CONFIDENCE"
msgstr "CONFIDENCE"
-#: formula/inc/core_resource.hrc:2575
+#: formula/inc/core_resource.hrc:2580
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CONFIDENCE.NORM"
msgstr "CONFIDENCE.NORM"
-#: formula/inc/core_resource.hrc:2576
+#: formula/inc/core_resource.hrc:2581
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CONFIDENCE.T"
msgstr "CONFIDENCE.T"
-#: formula/inc/core_resource.hrc:2577
+#: formula/inc/core_resource.hrc:2582
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FTEST"
msgstr "FTEST"
-#: formula/inc/core_resource.hrc:2578
+#: formula/inc/core_resource.hrc:2583
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "F.TEST"
msgstr "F.TEST"
-#: formula/inc/core_resource.hrc:2579
+#: formula/inc/core_resource.hrc:2584
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TRIMMEAN"
msgstr "TRIMMEAN"
-#: formula/inc/core_resource.hrc:2580
+#: formula/inc/core_resource.hrc:2585
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PROB"
msgstr "PROB"
-#: formula/inc/core_resource.hrc:2581
+#: formula/inc/core_resource.hrc:2586
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CORREL"
msgstr "CORREL"
-#: formula/inc/core_resource.hrc:2582
+#: formula/inc/core_resource.hrc:2587
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COVAR"
msgstr "COVAR"
-#: formula/inc/core_resource.hrc:2583
+#: formula/inc/core_resource.hrc:2588
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COVARIANCE.P"
msgstr "COVARIANCE.P"
-#: formula/inc/core_resource.hrc:2584
+#: formula/inc/core_resource.hrc:2589
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COVARIANCE.S"
msgstr "COVARIANCE.S"
-#: formula/inc/core_resource.hrc:2585
+#: formula/inc/core_resource.hrc:2590
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PEARSON"
msgstr "PEARSON"
-#: formula/inc/core_resource.hrc:2586
+#: formula/inc/core_resource.hrc:2591
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RSQ"
msgstr "RSQ"
-#: formula/inc/core_resource.hrc:2587
+#: formula/inc/core_resource.hrc:2592
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STEYX"
msgstr "STEYX"
-#: formula/inc/core_resource.hrc:2588
+#: formula/inc/core_resource.hrc:2593
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SLOPE"
msgstr "SLOPE"
-#: formula/inc/core_resource.hrc:2589
+#: formula/inc/core_resource.hrc:2594
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "INTERCEPT"
msgstr "INTERCEPT"
-#: formula/inc/core_resource.hrc:2590
+#: formula/inc/core_resource.hrc:2595
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TREND"
msgstr "TREND"
-#: formula/inc/core_resource.hrc:2591
+#: formula/inc/core_resource.hrc:2596
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GROWTH"
msgstr "GROWTH"
-#: formula/inc/core_resource.hrc:2592
+#: formula/inc/core_resource.hrc:2597
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LINEST"
msgstr "LINEST"
-#: formula/inc/core_resource.hrc:2593
+#: formula/inc/core_resource.hrc:2598
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOGEST"
msgstr "LOGEST"
-#: formula/inc/core_resource.hrc:2594
+#: formula/inc/core_resource.hrc:2599
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST"
msgstr "FORECAST"
-#: formula/inc/core_resource.hrc:2595
+#: formula/inc/core_resource.hrc:2600
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST.ETS.ADD"
msgstr "FORECAST.ETS.ADD"
-#: formula/inc/core_resource.hrc:2596
+#: formula/inc/core_resource.hrc:2601
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST.ETS.SEASONALITY"
msgstr "FORECAST.ETS.SEASONALITY"
-#: formula/inc/core_resource.hrc:2597
+#: formula/inc/core_resource.hrc:2602
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST.ETS.MULT"
msgstr "FORECAST.ETS.MULT"
-#: formula/inc/core_resource.hrc:2598
+#: formula/inc/core_resource.hrc:2603
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST.ETS.PI.ADD"
msgstr "FORECAST.ETS.PI.ADD"
-#: formula/inc/core_resource.hrc:2599
+#: formula/inc/core_resource.hrc:2604
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST.ETS.PI.MULT"
msgstr "FORECAST.ETS.PI.MULT"
-#: formula/inc/core_resource.hrc:2600
+#: formula/inc/core_resource.hrc:2605
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST.ETS.STAT.ADD"
msgstr "FORECAST.ETS.STAT.ADD"
-#: formula/inc/core_resource.hrc:2601
+#: formula/inc/core_resource.hrc:2606
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST.ETS.STAT.MULT"
msgstr "FORECAST.ETS.STAT.MULT"
-#: formula/inc/core_resource.hrc:2602
+#: formula/inc/core_resource.hrc:2607
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FORECAST.LINEAR"
msgstr "FORECAST.LINEAR"
-#: formula/inc/core_resource.hrc:2603
+#: formula/inc/core_resource.hrc:2608
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHIINV"
msgstr "CHIINV"
-#: formula/inc/core_resource.hrc:2604
+#: formula/inc/core_resource.hrc:2609
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHISQ.INV.RT"
msgstr "CHISQ.INV.RT"
-#: formula/inc/core_resource.hrc:2605
+#: formula/inc/core_resource.hrc:2610
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GAMMADIST"
msgstr "GAMMADIST"
-#: formula/inc/core_resource.hrc:2606
+#: formula/inc/core_resource.hrc:2611
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GAMMA.DIST"
msgstr "GAMMA.DIST"
-#: formula/inc/core_resource.hrc:2607
+#: formula/inc/core_resource.hrc:2612
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GAMMAINV"
msgstr "GAMMAINV"
-#: formula/inc/core_resource.hrc:2608
+#: formula/inc/core_resource.hrc:2613
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GAMMA.INV"
msgstr "GAMMA.INV"
-#: formula/inc/core_resource.hrc:2609
+#: formula/inc/core_resource.hrc:2614
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "TINV"
msgstr "TINV"
-#: formula/inc/core_resource.hrc:2610
+#: formula/inc/core_resource.hrc:2615
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "T.INV.2T"
msgstr "T.INV.2T"
-#: formula/inc/core_resource.hrc:2611
+#: formula/inc/core_resource.hrc:2616
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "T.INV"
msgstr "T.INV"
-#: formula/inc/core_resource.hrc:2612
+#: formula/inc/core_resource.hrc:2617
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FINV"
msgstr "FINV"
-#: formula/inc/core_resource.hrc:2613
+#: formula/inc/core_resource.hrc:2618
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "F.INV"
msgstr "F.INV"
-#: formula/inc/core_resource.hrc:2614
+#: formula/inc/core_resource.hrc:2619
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "F.INV.RT"
msgstr "F.INV.RT"
-#: formula/inc/core_resource.hrc:2615
+#: formula/inc/core_resource.hrc:2620
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHITEST"
msgstr "CHITEST"
-#: formula/inc/core_resource.hrc:2616
+#: formula/inc/core_resource.hrc:2621
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHISQ.TEST"
msgstr "CHISQ.TEST"
-#: formula/inc/core_resource.hrc:2617
+#: formula/inc/core_resource.hrc:2622
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOGINV"
msgstr "LOGINV"
-#: formula/inc/core_resource.hrc:2618
+#: formula/inc/core_resource.hrc:2623
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LOGNORM.INV"
msgstr "LOGNORM.INV"
-#: formula/inc/core_resource.hrc:2619
+#: formula/inc/core_resource.hrc:2624
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "MULTIPLE.OPERATIONS"
msgstr "MULTIPLE.OPERATIONS"
-#: formula/inc/core_resource.hrc:2620
+#: formula/inc/core_resource.hrc:2625
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BETADIST"
msgstr "BETADIST"
-#: formula/inc/core_resource.hrc:2621
+#: formula/inc/core_resource.hrc:2626
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BETAINV"
msgstr "BETAINV"
-#: formula/inc/core_resource.hrc:2622
+#: formula/inc/core_resource.hrc:2627
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BETA.DIST"
msgstr "BETA.DIST"
-#: formula/inc/core_resource.hrc:2623
+#: formula/inc/core_resource.hrc:2628
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BETA.INV"
msgstr "BETA.INV"
-#: formula/inc/core_resource.hrc:2624
+#: formula/inc/core_resource.hrc:2629
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "WEEKNUM"
msgstr "WEEKNUM"
-#: formula/inc/core_resource.hrc:2625
+#: formula/inc/core_resource.hrc:2630
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISOWEEKNUM"
msgstr "ISOWEEKNUM"
-#: formula/inc/core_resource.hrc:2626
+#: formula/inc/core_resource.hrc:2631
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "WEEKNUM_OOO"
msgstr "WEEKNUM_OOO"
-#: formula/inc/core_resource.hrc:2627
+#: formula/inc/core_resource.hrc:2632
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "EASTERSUNDAY"
msgstr "EASTERSUNDAY"
-#: formula/inc/core_resource.hrc:2628
+#: formula/inc/core_resource.hrc:2633
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "WEEKDAY"
msgstr "WEEKDAY"
-#: formula/inc/core_resource.hrc:2629
+#: formula/inc/core_resource.hrc:2634
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NETWORKDAYS"
msgstr "NETWORKDAYS"
-#: formula/inc/core_resource.hrc:2630
+#: formula/inc/core_resource.hrc:2635
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NETWORKDAYS.INTL"
msgstr "NETWORKDAYS.INTL"
-#: formula/inc/core_resource.hrc:2631
+#: formula/inc/core_resource.hrc:2636
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "WORKDAY.INTL"
msgstr "WORKDAY.INTL"
-#: formula/inc/core_resource.hrc:2632
+#: formula/inc/core_resource.hrc:2637
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#NAME!"
msgstr "#NAME!"
-#: formula/inc/core_resource.hrc:2633
+#: formula/inc/core_resource.hrc:2638
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STYLE"
msgstr "STYLE"
-#: formula/inc/core_resource.hrc:2634
+#: formula/inc/core_resource.hrc:2639
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DDE"
msgstr "DDE"
-#: formula/inc/core_resource.hrc:2635
+#: formula/inc/core_resource.hrc:2640
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BASE"
msgstr "BASE"
-#: formula/inc/core_resource.hrc:2636
+#: formula/inc/core_resource.hrc:2641
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "DECIMAL"
msgstr "DECIMAL"
-#: formula/inc/core_resource.hrc:2637
+#: formula/inc/core_resource.hrc:2642
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CONVERT_OOO"
msgstr "CONVERT_OOO"
-#: formula/inc/core_resource.hrc:2638
+#: formula/inc/core_resource.hrc:2643
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ROMAN"
msgstr "ROMAN"
-#: formula/inc/core_resource.hrc:2639
+#: formula/inc/core_resource.hrc:2644
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "HYPERLINK"
msgstr "HYPERLINK"
-#: formula/inc/core_resource.hrc:2640
+#: formula/inc/core_resource.hrc:2645
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "INFO"
msgstr "INFO"
-#: formula/inc/core_resource.hrc:2641
+#: formula/inc/core_resource.hrc:2646
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BAHTTEXT"
msgstr "BAHTTEXT"
-#: formula/inc/core_resource.hrc:2642
+#: formula/inc/core_resource.hrc:2647
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GETPIVOTDATA"
msgstr "GETPIVOTDATA"
-#: formula/inc/core_resource.hrc:2643
+#: formula/inc/core_resource.hrc:2648
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "EUROCONVERT"
msgstr "EUROCONVERT"
-#: formula/inc/core_resource.hrc:2644
+#: formula/inc/core_resource.hrc:2649
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NUMBERVALUE"
msgstr "NUMBERVALUE"
-#: formula/inc/core_resource.hrc:2645
+#: formula/inc/core_resource.hrc:2650
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GAMMA"
msgstr "GAMMA"
-#: formula/inc/core_resource.hrc:2646
+#: formula/inc/core_resource.hrc:2651
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHISQDIST"
msgstr "CHISQDIST"
-#: formula/inc/core_resource.hrc:2647
+#: formula/inc/core_resource.hrc:2652
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHISQ.DIST"
msgstr "CHISQ.DIST"
-#: formula/inc/core_resource.hrc:2648
+#: formula/inc/core_resource.hrc:2653
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHISQINV"
msgstr "CHISQINV"
-#: formula/inc/core_resource.hrc:2649
+#: formula/inc/core_resource.hrc:2654
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CHISQ.INV"
msgstr "CHISQ.INV"
-#: formula/inc/core_resource.hrc:2650
+#: formula/inc/core_resource.hrc:2655
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BITAND"
msgstr "BITAND"
-#: formula/inc/core_resource.hrc:2651
+#: formula/inc/core_resource.hrc:2656
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BITOR"
msgstr "BITOR"
-#: formula/inc/core_resource.hrc:2652
+#: formula/inc/core_resource.hrc:2657
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BITXOR"
msgstr "BITXOR"
-#: formula/inc/core_resource.hrc:2653
+#: formula/inc/core_resource.hrc:2658
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BITRSHIFT"
msgstr "BITRSHIFT"
-#: formula/inc/core_resource.hrc:2654
+#: formula/inc/core_resource.hrc:2659
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "BITLSHIFT"
msgstr "BITLSHIFT"
#. BEGIN defined ERROR.TYPE() values.
#. ERROR.TYPE( #NULL! ) == 1
-#: formula/inc/core_resource.hrc:2657
+#: formula/inc/core_resource.hrc:2662
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#NULL!"
msgstr "#NULL!"
#. ERROR.TYPE( #DIV/0! ) == 2
-#: formula/inc/core_resource.hrc:2659
+#: formula/inc/core_resource.hrc:2664
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#DIV/0!"
msgstr "#DIV/0!"
#. ERROR.TYPE( #VALUE! ) == 3
-#: formula/inc/core_resource.hrc:2661
+#: formula/inc/core_resource.hrc:2666
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#VALUE!"
msgstr "#VALUE!"
#. ERROR.TYPE( #REF! ) == 4
-#: formula/inc/core_resource.hrc:2663
+#: formula/inc/core_resource.hrc:2668
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#REF!"
msgstr "#REF!"
#. ERROR.TYPE( #NAME! ) == 5
-#: formula/inc/core_resource.hrc:2665
+#: formula/inc/core_resource.hrc:2670
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#NAME?"
msgstr "#NAME?"
#. ERROR.TYPE( #NUM! ) == 6
-#: formula/inc/core_resource.hrc:2667
+#: formula/inc/core_resource.hrc:2672
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#NUM!"
msgstr "#NUM!"
#. ERROR.TYPE( #N/A ) == 7
-#: formula/inc/core_resource.hrc:2669
+#: formula/inc/core_resource.hrc:2674
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#N/A"
msgstr "#N/A"
#. END defined ERROR.TYPE() values.
-#: formula/inc/core_resource.hrc:2672
+#: formula/inc/core_resource.hrc:2677
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FILTERXML"
msgstr "FILTERXML"
-#: formula/inc/core_resource.hrc:2673
+#: formula/inc/core_resource.hrc:2678
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "COLOR"
msgstr "COLOR"
-#: formula/inc/core_resource.hrc:2674
+#: formula/inc/core_resource.hrc:2679
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "WEBSERVICE"
msgstr "WEBSERVICE"
-#: formula/inc/core_resource.hrc:2675
+#: formula/inc/core_resource.hrc:2680
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ERF.PRECISE"
msgstr "ERF.PRECISE"
-#: formula/inc/core_resource.hrc:2676
+#: formula/inc/core_resource.hrc:2681
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ERFC.PRECISE"
msgstr "ERFC.PRECISE"
-#: formula/inc/core_resource.hrc:2677
+#: formula/inc/core_resource.hrc:2682
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ENCODEURL"
msgstr "ENCODEURL"
-#: formula/inc/core_resource.hrc:2678
+#: formula/inc/core_resource.hrc:2683
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RAWSUBTRACT"
msgstr "RAWSUBTRACT"
-#: formula/inc/core_resource.hrc:2679
+#: formula/inc/core_resource.hrc:2684
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ROUNDSIG"
msgstr "ROUNDSIG"
-#: formula/inc/core_resource.hrc:2680
+#: formula/inc/core_resource.hrc:2685
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FINDB"
msgstr "FINDB"
-#: formula/inc/core_resource.hrc:2681
+#: formula/inc/core_resource.hrc:2686
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SEARCHB"
msgstr "SEARCHB"
-#: formula/inc/core_resource.hrc:2682
+#: formula/inc/core_resource.hrc:2687
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "REGEX"
-msgstr ""
+msgstr "REGEX"
+
+#: formula/inc/core_resource.hrc:2688
+msgctxt "RID_STRLIST_FUNCTION_NAMES"
+msgid "FOURIER"
+msgstr "FOURIER"
#: formula/inc/strings.hrc:25
msgctxt "STR_OPTIONAL"
diff --git a/source/lv/fpicker/messages.po b/source/lv/fpicker/messages.po
index 3b84410f2a5..7dea8aa4011 100644
--- a/source/lv/fpicker/messages.po
+++ b/source/lv/fpicker/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-11-05 17:38+0100\n"
-"PO-Revision-Date: 2018-08-21 20:06+0000\n"
+"PO-Revision-Date: 2019-04-19 08:41+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lv\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1534882008.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1555663281.000000\n"
#: fpicker/inc/strings.hrc:25
msgctxt "STR_EXPLORERFILE_OPEN"
@@ -67,8 +67,8 @@ msgid ""
"The file $name$ does not exist.\n"
"Make sure you have entered the correct file name."
msgstr ""
-"Datne $name$ neeksistē.\n"
-"Pārliecinieties, vai esat ievadījuši pareizu datnes nosaukumu."
+"Datne $name$ nepastāv.\n"
+"Pārliecinieties, vai ir ievadīts pareizs datnes nosaukums."
#: fpicker/inc/strings.hrc:35
msgctxt "STR_SVT_NEW_FOLDER"
@@ -278,7 +278,7 @@ msgstr "E~nkurs:"
#: include/fpicker/strings.hrc:27
msgctxt "STR_SVT_FILEPICKER_SELECTION"
msgid "~Selection"
-msgstr "~Izvēle"
+msgstr "Izvēlētai~s"
#: include/fpicker/strings.hrc:28
msgctxt "STR_SVT_FILEPICKER_FILTER_TITLE"
@@ -302,7 +302,7 @@ msgid ""
"\n"
"Do you want to replace it?"
msgstr ""
-"Datne \"$filename$\" jau eksistē.\n"
+"Datne ar nosaukumu \"$filename$\" jau pastāv.\n"
"\n"
"Vai vēlaties to aizstāt?"
diff --git a/source/lv/helpcontent2/source/auxiliary.po b/source/lv/helpcontent2/source/auxiliary.po
index d5a0490938f..efd2fcf6e60 100644
--- a/source/lv/helpcontent2/source/auxiliary.po
+++ b/source/lv/helpcontent2/source/auxiliary.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: 2018-07-19 13:30+0200\n"
-"PO-Revision-Date: 2018-09-17 12:41+0000\n"
+"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"PO-Revision-Date: 2019-02-27 13:28+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lv\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1537188065.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1551274106.000000\n"
#: sbasic.tree
msgctxt ""
@@ -22,28 +22,36 @@ msgctxt ""
"07\n"
"help_section.text"
msgid "Macros and Scripting"
-msgstr ""
+msgstr "Makrokomandas un skriptēšana"
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
"0701\n"
"node.text"
+msgid "%PRODUCTNAME BASIC"
+msgstr "%PRODUCTNAME BASIC"
+
+#: sbasic.tree
+msgctxt ""
+"sbasic.tree\n"
+"070101\n"
+"node.text"
msgid "General Information and User Interface Usage"
msgstr "Vispārēja informācija un lietotāja saskarnes lietošana"
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
-"0702\n"
+"070102\n"
"node.text"
msgid "Command Reference"
-msgstr "Komandu atsauces"
+msgstr ""
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
-"070202\n"
+"07010202\n"
"node.text"
msgid "Functions, Statements, and Operators"
msgstr ""
@@ -51,15 +59,15 @@ msgstr ""
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
-"070201\n"
+"07010201\n"
"node.text"
msgid "Alphabetic List of Functions, Statements, and Operators"
-msgstr "Funkciju, priekšrakstu un operatoru alfabētiskais saraksts"
+msgstr ""
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
-"070205\n"
+"07010205\n"
"node.text"
msgid "Advanced Basic Libraries"
msgstr ""
@@ -67,10 +75,34 @@ msgstr ""
#: sbasic.tree
msgctxt ""
"sbasic.tree\n"
-"0703\n"
+"070103\n"
"node.text"
msgid "Guides"
-msgstr "Gidi"
+msgstr ""
+
+#: sbasic.tree
+msgctxt ""
+"sbasic.tree\n"
+"0702\n"
+"node.text"
+msgid "Python Scripts Help"
+msgstr ""
+
+#: sbasic.tree
+msgctxt ""
+"sbasic.tree\n"
+"070201\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr "Vispārēja informācija un lietotāja saskarnes lietošana"
+
+#: sbasic.tree
+msgctxt ""
+"sbasic.tree\n"
+"070202\n"
+"node.text"
+msgid "Programming with Python"
+msgstr ""
#: scalc.tree
msgctxt ""
@@ -78,7 +110,7 @@ msgctxt ""
"08\n"
"help_section.text"
msgid "Spreadsheets (Calc)"
-msgstr ""
+msgstr "Izklājlapas (Calc)"
#: scalc.tree
msgctxt ""
@@ -174,7 +206,7 @@ msgctxt ""
"08091\n"
"node.text"
msgid "Pivot Chart"
-msgstr ""
+msgstr "Pivot diagramma"
#: scalc.tree
msgctxt ""
@@ -606,7 +638,7 @@ msgctxt ""
"0411\n"
"node.text"
msgid "Slide Shows"
-msgstr ""
+msgstr "Slīdrādes"
#: smath.tree
msgctxt ""
@@ -614,7 +646,7 @@ msgctxt ""
"03\n"
"help_section.text"
msgid "Formulas (Math)"
-msgstr ""
+msgstr "Formulas (Math)"
#: smath.tree
msgctxt ""
@@ -627,6 +659,14 @@ msgstr "Vispārēja informācija un lietotāja saskarnes lietošana"
#: smath.tree
msgctxt ""
"smath.tree\n"
+"030101\n"
+"node.text"
+msgid "%PRODUCTNAME Formula Elements"
+msgstr ""
+
+#: smath.tree
+msgctxt ""
+"smath.tree\n"
"0302\n"
"node.text"
msgid "Command and Menu Reference"
@@ -646,7 +686,7 @@ msgctxt ""
"02\n"
"help_section.text"
msgid "Text Documents (Writer)"
-msgstr ""
+msgstr "Teksta dokumenti (Writer)"
#: swriter.tree
msgctxt ""
@@ -854,4 +894,4 @@ msgctxt ""
"06\n"
"help_section.text"
msgid "HTML Documents (Writer Web)"
-msgstr ""
+msgstr "HTML dokumenti (Writer Web)"
diff --git a/source/lv/helpcontent2/source/text/sbasic/guide.po b/source/lv/helpcontent2/source/text/sbasic/guide.po
index 5b0f70e667a..0c92c090c1d 100644
--- a/source/lv/helpcontent2/source/text/sbasic/guide.po
+++ b/source/lv/helpcontent2/source/text/sbasic/guide.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: 2018-04-25 13:24+0200\n"
-"PO-Revision-Date: 2016-05-16 11:16+0000\n"
+"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"PO-Revision-Date: 2019-02-27 12:06+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lv\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1463397372.000000\n"
+"X-POOTLE-MTIME: 1551269200.000000\n"
#: access2base.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"hd_idA2B003\n"
"help.text"
msgid "What is Access2Base?"
-msgstr ""
+msgstr "Kas ir Access2Base?"
#: access2base.xhp
msgctxt ""
@@ -166,7 +166,7 @@ msgctxt ""
"hd_idA2B018\n"
"help.text"
msgid "Compare Access2Base with Microsoft Access VBA"
-msgstr ""
+msgstr "Salīdzināt Access2Base ar Microsoft Access VBA"
#: control_properties.xhp
msgctxt ""
@@ -349,8 +349,8 @@ msgctxt ""
"sample_code.xhp\n"
"hd_id3155338\n"
"help.text"
-msgid "<variable id=\"sample_code\"><link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Programming Examples for Controls in the Dialog Editor\">Programming Examples for Controls in the Dialog Editor</link></variable>"
-msgstr "<variable id=\"sample_code\"><link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Programmēšanas piemēri vadīklām dialogu redaktorā\">Programmēšanas piemēri vadīklām dialogu redaktorā</link></variable>"
+msgid "<variable id=\"sample_code\"><link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Programming Examples for Controls in the Dialog Editor\">Programming Examples for Controls in the Dialog Editor</link> </variable>"
+msgstr ""
#: sample_code.xhp
msgctxt ""
diff --git a/source/lv/helpcontent2/source/text/sbasic/python.po b/source/lv/helpcontent2/source/text/sbasic/python.po
new file mode 100644
index 00000000000..1998f3e9ded
--- /dev/null
+++ b/source/lv/helpcontent2/source/text/sbasic/python.po
@@ -0,0 +1,1953 @@
+#. extracted from helpcontent2/source/text/sbasic/python
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"PO-Revision-Date: 2019-02-27 15:23+0000\n"
+"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: lv\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1551281008.000000\n"
+
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Python Scripts"
+msgstr "Python skripti"
+
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"bm_id491543348147708\n"
+"help.text"
+msgid "<bookmark_value>macros;Python scripts</bookmark_value> <bookmark_value>Python;macros</bookmark_value> <bookmark_value>scripts;Python</bookmark_value>"
+msgstr ""
+
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"hd_id3154232\n"
+"help.text"
+msgid "<variable id=\"pythonscriptshelp\"><link href=\"text/sbasic/python/main0000.xhp\" name=\"mainpython\">%PRODUCTNAME Python Scripts Help</link></variable>"
+msgstr ""
+
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id3153894\n"
+"help.text"
+msgid "%PRODUCTNAME provides an Application Programming Interface (API) that allows controlling the $[officename] components with different programming languages by using the $[officename] Software Development Kit (SDK). For more information about the $[officename] API and the Software Development Kit, visit <link href=\"https://api.libreoffice.org/\" name=\"api.libreoffice.org\">https://api.libreoffice.org</link>"
+msgstr ""
+
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"par_id3147226\n"
+"help.text"
+msgid "This help section explains the most common Python script functions for %PRODUCTNAME. For more in-depth information please refer to the <link href=\"https://wiki.documentfoundation.org/Macros/Python_Design_Guide\" name=\"wiki.documentfoundation.org PYTHON Guide\">Designing & Developing Python Applications</link> on the Wiki."
+msgstr ""
+
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"hd_id3146957\n"
+"help.text"
+msgid "Working with Python Scripts in %PRODUCTNAME"
+msgstr ""
+
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"N0102\n"
+"help.text"
+msgid "You can execute Python scripts choosing <menuitem>Tools - Macros - Run Macro</menuitem>. Editing scripts can be done with your preferred text editor. Python scripts are present in various locations detailed hereafter. You can refer to Programming examples for macros illustrating how to run the Python interactive console from %PRODUCTNAME."
+msgstr ""
+
+#: python_dialogs.xhp
+msgctxt ""
+"python_dialogs.xhp\n"
+"tit\n"
+"help.text"
+msgid "Python: Opening a Dialog"
+msgstr ""
+
+#: python_dialogs.xhp
+msgctxt ""
+"python_dialogs.xhp\n"
+"N0334\n"
+"help.text"
+msgid "<bookmark_value>Python;dialogs</bookmark_value> <bookmark_value>dialog box;Python</bookmark_value> <bookmark_value>dialogs;Python</bookmark_value>"
+msgstr ""
+
+#: python_dialogs.xhp
+msgctxt ""
+"python_dialogs.xhp\n"
+"N0336\n"
+"help.text"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgstr ""
+
+#: python_dialogs.xhp
+msgctxt ""
+"python_dialogs.xhp\n"
+"N0337\n"
+"help.text"
+msgid "%PRODUCTNAME static dialogs are created with the <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"dialog editor\">Dialog editor</link> and are stored in varying places according to their personal (My Macros), shared (%PRODUCTNAME Macros) or document-embedded nature. In reverse, dynamic dialogs are constructed at runtime, from Basic or Python scripts, or using any other <link href=\"text/shared/guide/scripting.xhp\">%PRODUCTNAME supported language</link> for that matter. Opening static dialogs with Python is illustrated herewith. Exception handling and internationalization are omitted for clarity."
+msgstr ""
+
+#: python_dialogs.xhp
+msgctxt ""
+"python_dialogs.xhp\n"
+"N0338\n"
+"help.text"
+msgid "My Macros or %PRODUCTNAME Macros dialogs"
+msgstr ""
+
+#: python_dialogs.xhp
+msgctxt ""
+"python_dialogs.xhp\n"
+"N0339\n"
+"help.text"
+msgid "The examples below open <literal>Access2Base Trace</literal> console or the imported <literal>TutorialsDialog</literal> dialog with <menuitem>Tools – Macros – Run Macro...</menuitem> menu:"
+msgstr ""
+
+#: python_dialogs.xhp
+msgctxt ""
+"python_dialogs.xhp\n"
+"N0364\n"
+"help.text"
+msgid "Document embedded dialogs"
+msgstr ""
+
+#: python_dialogs.xhp
+msgctxt ""
+"python_dialogs.xhp\n"
+"N0365\n"
+"help.text"
+msgid "The example below opens a newly edited <literal>Dialog1</literal> dialog from a document with <menuitem>Tools – Macros – Run Macro...</menuitem> menu:"
+msgstr ""
+
+#: python_dialogs.xhp
+msgctxt ""
+"python_dialogs.xhp\n"
+"N0370\n"
+"help.text"
+msgid "\"\"\" Display a doc-based dialog \"\"\""
+msgstr ""
+
+#: python_dialogs.xhp
+msgctxt ""
+"python_dialogs.xhp\n"
+"N0381\n"
+"help.text"
+msgid "Refer to <literal>msgbox.py</literal> in <literal>{installation}/program/</literal> directory for Python dynamic dialog examples."
+msgstr ""
+
+#: python_examples.xhp
+msgctxt ""
+"python_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Python examples"
+msgstr "Python piemēri"
+
+#: python_examples.xhp
+msgctxt ""
+"python_examples.xhp\n"
+"bm_id20191031405\n"
+"help.text"
+msgid "<bookmark_value>Python;examples</bookmark_value> <bookmark_value>Python;shell</bookmark_value> <bookmark_value>Python;platform</bookmark_value> <bookmark_value>Python;session</bookmark_value> <bookmark_value>Python;screen input/output</bookmark_value>"
+msgstr ""
+
+#: python_examples.xhp
+msgctxt ""
+"python_examples.xhp\n"
+"hd_id201901031407\n"
+"help.text"
+msgid "<variable id=\"pythonexamples2\"><link href=\"text/sbasic/python/python_examples.xhp\" name=\"python examples\">Python programming examples</link></variable>"
+msgstr ""
+
+#: python_ide.xhp
+msgctxt ""
+"python_ide.xhp\n"
+"tit\n"
+"help.text"
+msgid "IDE for Python"
+msgstr ""
+
+#: python_ide.xhp
+msgctxt ""
+"python_ide.xhp\n"
+"bm_id761543349138561\n"
+"help.text"
+msgid "<bookmark_value>APSO</bookmark_value> <bookmark_value>Alternative Python Scripts Organizer</bookmark_value> <bookmark_value>python;IDE - integrated development environment</bookmark_value> <bookmark_value>python;editor</bookmark_value>"
+msgstr ""
+
+#: python_ide.xhp
+msgctxt ""
+"python_ide.xhp\n"
+"hd_id151543348965464\n"
+"help.text"
+msgid "<variable id=\"pythonideh1\"><link href=\"text/sbasic/python/python_ide.xhp\" name=\"Python IDE Setup\">Setting up an Integrated Development Environment (IDE) for Python</link></variable>"
+msgstr ""
+
+#: python_ide.xhp
+msgctxt ""
+"python_ide.xhp\n"
+"par_id541543348965465\n"
+"help.text"
+msgid "Writing Python macros requires extra configuration steps to set an IDE of choice."
+msgstr ""
+
+#: python_ide.xhp
+msgctxt ""
+"python_ide.xhp\n"
+"N0106\n"
+"help.text"
+msgid "Unlike Basic language macros development in %PRODUCTNAME, developing Python scripts for %PRODUCTNAME requires to configure an external Integrated Development Environment (IDE). Multiple IDEs are available that range from beginners to advanced Python coders. While using a Python IDE programmers benefit from numerous features such as syntax highlighting, code folding, class browsing, code completion, coding standard enforcement, test driven development, debugging, version control and many more. You can refer to <link href=\"https://wiki.documentfoundation.org/Macros/Python_Design_Guide\" name=\"Designing & Developing Python Applications\">Designing & Developing Python Applications</link> on the Wiki for more in-depth information about the setup of a bridge between your IDE and a running instance %PRODUCTNAME."
+msgstr ""
+
+#: python_ide.xhp
+msgctxt ""
+"python_ide.xhp\n"
+"hd_id761544698669786\n"
+"help.text"
+msgid "The APSO Extension"
+msgstr ""
+
+#: python_ide.xhp
+msgctxt ""
+"python_ide.xhp\n"
+"N0104\n"
+"help.text"
+msgid "The <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-python\" name=\"Alternative Python Script Organizer (APSO)\">Alternative Python Script Organizer (APSO)</link> extension eases the edition of Python scripts, in particular when embedded in a document. Using APSO you can configure your preferred source code editor, start the integrated Python shell and debug Python scripts. Extensions exist that help inspect arbitrary UNO objects, refer to <link href=\"https://wiki.documentfoundation.org/Macros/Python_Design_Guide\" name=\"eDesigning & Developing Python Applications\">Designing & Developing Python Applications</link> for additional details on such extensions."
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"tit\n"
+"help.text"
+msgid "Python : Importing Modules"
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0461\n"
+"help.text"
+msgid "<bookmark_value>Python;import</bookmark_value> <bookmark_value>Python;Modules</bookmark_value> <bookmark_value>Python;pythonpath</bookmark_value> <bookmark_value>PythonLibraries</bookmark_value>"
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0462\n"
+"help.text"
+msgid "<variable id=\"pythonimporth1\"><link href=\"text/sbasic/python/python_import.xhp\" name=\"python imports\">Importing Python Modules</link></variable>"
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0463\n"
+"help.text"
+msgid "%PRODUCTNAME Python scripts come in three distinct flavors, they can be personal, shared or embedded in documents. They are stored in varying places described in <link href=\"text/sbasic/python/python_locations.xhp\">Python Scripts Organization and Location</link>. In order to import Python modules, their locations must be known from Python at run time."
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0464\n"
+"help.text"
+msgid "This mechanism is illustrated for file system based modules and document based modules. Exception handling is omitted for clarity. The terms library or directory, scripts or modules are used interchangeably. A Python macro refers to a function inside a module."
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0465\n"
+"help.text"
+msgid "Note that <literal><User Profile>/Scripts/python/pythonpath</literal> local directory is always explored when running a Python macro from <literal><User Profile>/Scripts/python</literal>."
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0466\n"
+"help.text"
+msgid "File System module import"
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0467\n"
+"help.text"
+msgid "User or Shared Modules"
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0468\n"
+"help.text"
+msgid "Personal & shared Python scripts can be imported once their directories are included in Python run time path. Refer to <link href=\"text/sbasic/python/python_session.xhp\">Getting session information</link> page for more details regarding omitted Session Class."
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0473\n"
+"help.text"
+msgid "user_lib = Session().UserPythonScripts # User scripts location"
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0475\n"
+"help.text"
+msgid "sys.path.insert(0, user_lib) # Add to search path"
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0476\n"
+"help.text"
+msgid "import screen_io as ui # 'screen_io.py' module resides in user_lib directory"
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0477\n"
+"help.text"
+msgid "# Your code follows here"
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0478\n"
+"help.text"
+msgid "This Python example exposes a local XSCRIPTCONTEXT variable to an imported module:"
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0483\n"
+"help.text"
+msgid "share_lib = Session.SharedPythonScripts() # Shared scripts location"
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0485\n"
+"help.text"
+msgid "sys.path.insert(0, share_lib) # Add to search path"
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0486\n"
+"help.text"
+msgid "from IDE_utils import ScriptContext # 'IDE_utils.py' sits with shared Python scripts."
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0488\n"
+"help.text"
+msgid "# Your code follows here"
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0489\n"
+"help.text"
+msgid "Installation Modules for Applications"
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0490\n"
+"help.text"
+msgid "Unlike personal and shared scripts, %PRODUCTNAME installation scripts can be imported any time. Next to <literal>uno</literal> & <literal>unohelper</literal> %PRODUCTNAME Python modules, other scripts present in <literal><installation_path>/program</literal> directory can be imported directly, such as the <literal>msgbox</literal> module."
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0491\n"
+"help.text"
+msgid "With Python shell:"
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0534\n"
+"help.text"
+msgid "Document Module Import"
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0535\n"
+"help.text"
+msgid "Importing a Python document embedded module is illustrated below. Error handling is not detailed. Python run time path is updated when document has been opened and before closure. Refer to <link href=\"text/sbasic/shared/01040000.xhp\">Event-Driven Macros</link> to learn how to associate Python macros to document events."
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0541\n"
+"help.text"
+msgid "\"\"\" Prepare Python modules import when doc. loaded \"\"\""
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0542\n"
+"help.text"
+msgid "PythonLibraries.loadLibrary('lib/subdir') # Add directory to search path"
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0543\n"
+"help.text"
+msgid "PythonLibraries.loadLibrary('my_gui', 'screen_io') # Add dir. & import screen_io"
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0546\n"
+"help.text"
+msgid "\"\"\" Cleanup PYTHON_PATH when doc. Gets closed \"\"\""
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0547\n"
+"help.text"
+msgid "PythonLibraries.unloadLibrary('my_gui') # Python runtime path cleanup"
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0548\n"
+"help.text"
+msgid "# Note: imported modules remain loaded in this example.."
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0553\n"
+"help.text"
+msgid "\"\"\" Python library loader and module importer"
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0555\n"
+"help.text"
+msgid "adapted from 'Bibliothèque de fonctions' by Hubert Lambert"
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0556\n"
+"help.text"
+msgid "at https://forum.openoffice.org/fr/forum/viewtopic.php?p=286213 \"\"\""
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0558\n"
+"help.text"
+msgid "\"\"\" Check run time module list \"\"\""
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0561\n"
+"help.text"
+msgid "\"\"\" Check PYTHON_PATH content \"\"\""
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0564\n"
+"help.text"
+msgid "\"\"\" add directory to PYTHON_PATH, import named module \"\"\""
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0573\n"
+"help.text"
+msgid "\"\"\" remove directory from PYTHON_PATH \"\"\""
+msgstr ""
+
+#: python_import.xhp
+msgctxt ""
+"python_import.xhp\n"
+"N0580\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/python/python_listener.xhp\">Creating a Python Listener</link> for examples of event-driven macros."
+msgstr ""
+
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"tit\n"
+"help.text"
+msgid "Python Listeners : Creating Event Listeners"
+msgstr ""
+
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0385\n"
+"help.text"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value>"
+msgstr ""
+
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0386\n"
+"help.text"
+msgid "<variable id=\"pythonlistener\"><link href=\"text/sbasic/python/python_listener.xhp\" name=\"python listeners\">Creating Event Listeners</link></variable>"
+msgstr ""
+
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0387\n"
+"help.text"
+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 ""
+
+#: 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 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 ""
+
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0389\n"
+"help.text"
+msgid "Creating an event listener"
+msgstr ""
+
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0390\n"
+"help.text"
+msgid "Listeners get attached to controls held in dialogs, as well as to document or form events. Listeners are also used when creating runtime dialogs or when adding controls to a dialog on the fly."
+msgstr ""
+
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0391\n"
+"help.text"
+msgid "This example creates a listener for <literal>Button1</literal> control of <literal>Dialog1</literal> dialog in <literal>Standard</literal> library."
+msgstr ""
+
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0392\n"
+"help.text"
+msgid "With Python"
+msgstr ""
+
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0405\n"
+"help.text"
+msgid "_MY_LABEL = 'Python listens..'"
+msgstr ""
+
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0417\n"
+"help.text"
+msgid "MsgBox(\"The user acknowledged the dialog.\")"
+msgstr ""
+
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0419\n"
+"help.text"
+msgid "MsgBox(\"The user canceled the dialog.\")"
+msgstr ""
+
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0424\n"
+"help.text"
+msgid "\"\"\" Create a Dialog from its location \"\"\""
+msgstr ""
+
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0437\n"
+"help.text"
+msgid "\"\"\" Listen to & count button clicks \"\"\""
+msgstr ""
+
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0448\n"
+"help.text"
+msgid "def disposing(self, evt: EventObject): # mandatory routine"
+msgstr ""
+
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0457\n"
+"help.text"
+msgid "<emph>msgbox.py</emph> in <emph>{installation}/program/</emph> directory has some examples of button listeners."
+msgstr ""
+
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0458\n"
+"help.text"
+msgid "With %PRODUCTNAME Basic"
+msgstr ""
+
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0459d\n"
+"help.text"
+msgid "Const MY_LABEL = \"Basic listens..\""
+msgstr ""
+
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0478\n"
+"help.text"
+msgid "Case rc.OK : MsgBox \"The user acknowledged the dialog.\",, \"Basic\""
+msgstr ""
+
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0479\n"
+"help.text"
+msgid "Case rc.CANCEL : MsgBox \"The user canceled the dialog.\",, \"Basic\""
+msgstr ""
+
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0486\n"
+"help.text"
+msgid "''' Listen to & count button clicks '''"
+msgstr ""
+
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0496\n"
+"help.text"
+msgid "' your code goes here"
+msgstr ""
+
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0498\n"
+"help.text"
+msgid "Other Event Listeners"
+msgstr ""
+
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0499\n"
+"help.text"
+msgid "Listeners are usually coded along with <link href=\"text/sbasic/python/python_dialog.xhp\" name=\"dialog opening\">dialog opening</link>. Numerous listener approaches are possible such as event handlers for dialogs or event monitors for documents or forms."
+msgstr ""
+
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0505\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03132000.xhp\" name=\"CreateUnoListener Function\">CreateUnoListener Function</link>"
+msgstr ""
+
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0506\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05060700.xhp\" name=\"Events mapping to objects\">Events mapping to objects</link>"
+msgstr ""
+
+#: python_listener.xhp
+msgctxt ""
+"python_listener.xhp\n"
+"N0509\n"
+"help.text"
+msgid "See also <link href=\"text/sbasic/shared/01040000.xhp\" name=\"Document events\">Document events</link>, <link href=\"text/shared/02/01170202.xhp\" name=\"Form events\">Form events</link>."
+msgstr ""
+
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"tit\n"
+"help.text"
+msgid "Python Scripts Organization"
+msgstr ""
+
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"hd_id391543358231021\n"
+"help.text"
+msgid "<variable id=\"pythonlocations1\"><link href=\"text/sbasic/python/python_locations.xhp\" name=\"command_name\">Python Scripts Organization and Location</link></variable>"
+msgstr ""
+
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id771543358231022\n"
+"help.text"
+msgid "The Python script files are stored in the filesystem, in folders controlled by %PRODUCTNAME. The macros can be started at installation, user or file level."
+msgstr ""
+
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"hd_id911544049584458\n"
+"help.text"
+msgid "Python Script Locations"
+msgstr "Python skriptu atrašanās vietas"
+
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id121551089455774\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/python/python_session.xhp\" name=\"Getting Session Information\">Getting Session Information</link> in order to get programmatic access to Python script locations."
+msgstr ""
+
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"hd_id591544049572647\n"
+"help.text"
+msgid "%PRODUCTNAME Macros container"
+msgstr ""
+
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id261544049064421\n"
+"help.text"
+msgid "Existing macros in this location (container) were copied by the installation program and are available to every computer user, and any open document can access macros stored the container. You need administrative rights to store or edit macros here."
+msgstr ""
+
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id861544210028670\n"
+"help.text"
+msgid "The %PRODUCTNAME Macros container location in the file system depends on the operating system:"
+msgstr ""
+
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id191544210072242\n"
+"help.text"
+msgid "For <emph>Windows</emph>: <literal>{Installation}\\share\\Scripts\\python</literal>."
+msgstr ""
+
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id61544210078654\n"
+"help.text"
+msgid "For <emph>Linux</emph> and <emph>macOS</emph>: <literal>{Installation}/share/Scripts/python</literal>."
+msgstr ""
+
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"hd_id861544049692222\n"
+"help.text"
+msgid "My Macros"
+msgstr ""
+
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id981544049055996\n"
+"help.text"
+msgid "This container is accessible only by the %PRODUCTNAME user. Any open document can access macros stored the container. Macros in this location are stored in the %PRODUCTNAME user profile."
+msgstr ""
+
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id341544210187846\n"
+"help.text"
+msgid "The My Macros container location is in the user space and depends on the operating system:"
+msgstr ""
+
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id381544210213190\n"
+"help.text"
+msgid "For <emph>Windows</emph>,<br/><literal>%APPDATA%\\LibreOffice\\4\\user\\Scripts\\python</literal>."
+msgstr ""
+
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id691544210219850\n"
+"help.text"
+msgid "For <emph>Linux</emph> and <emph>macOS</emph>,<br/><literal>$HOME/.config/libreoffice/4/user/Scripts/python</literal>."
+msgstr ""
+
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"hd_id101544049707712\n"
+"help.text"
+msgid "Document macros"
+msgstr ""
+
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id31544049046497\n"
+"help.text"
+msgid "Document macros are embedded in the document and are accessible only when the document is open."
+msgstr ""
+
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"hd_id171544049715310\n"
+"help.text"
+msgid "Libraries, Modules and Macros"
+msgstr "Bibliotēkas, moduļi un makrokomandas"
+
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id181544209916707\n"
+"help.text"
+msgid "Like BASIC macros, Python macros can be organized in libraries, modules and macros."
+msgstr ""
+
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"hd_id21544209865082\n"
+"help.text"
+msgid "Creating a Python Library"
+msgstr "Python bibliotēkas izveidošana"
+
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id191544209928221\n"
+"help.text"
+msgid "Libraries are folders in the container tree. To create a library, add a folder in the target container. The library name is the folder name."
+msgstr ""
+
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"hd_id31544209872869\n"
+"help.text"
+msgid "Creating a Python Module."
+msgstr "Python moduļa izveidošana"
+
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id161544209936743\n"
+"help.text"
+msgid "A module is a python file in the library or the container. Create a module adding a file in the container."
+msgstr ""
+
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"hd_id151544209895574\n"
+"help.text"
+msgid "Python macros"
+msgstr "Python makrokomandas"
+
+#: python_locations.xhp
+msgctxt ""
+"python_locations.xhp\n"
+"par_id61544209944591\n"
+"help.text"
+msgid "A macro is a python object in the module."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"tit\n"
+"help.text"
+msgid "Python : Platform class"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0508\n"
+"help.text"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0509\n"
+"help.text"
+msgid "<variable id=\"pythonplatform\"><link href=\"text/sbasic/python/python_platform.xhp\" name=\"platform01\">Identifying the operating system</link></variable>"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0510\n"
+"help.text"
+msgid "Identifying the operating system can be performed with Python or Basic language."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0511\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0512\n"
+"help.text"
+msgid "Using a Python class:"
+msgstr "Python klases lietošana:"
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0529\n"
+"help.text"
+msgid "Using a Basic classmodule:"
+msgstr "Basic klases moduļa lietošana:"
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0564\n"
+"help.text"
+msgid "Examples:"
+msgstr "Piemēri:"
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0565\n"
+"help.text"
+msgid "With Python"
+msgstr "Ar Python"
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0567\n"
+"help.text"
+msgid "<literal>>>> print(Platform().isMacOSX) # object property</literal>"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0569\n"
+"help.text"
+msgid "<literal>>>> input(Platform().OSName) # object property</literal>"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0571\n"
+"help.text"
+msgid "From <menuitem>Tools – Macros - Run Macro...</menuitem> menu."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0576\n"
+"help.text"
+msgid "With %PRODUCTNAME Basic"
+msgstr "Ar %PRODUCTNAME Basic"
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0578\n"
+"help.text"
+msgid "Dim p As New Platform ' instance of Platform class"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0579\n"
+"help.text"
+msgid "MsgBox p.isLinux ' object property"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0580\n"
+"help.text"
+msgid "Print p.isWindows, p.OSName ' object properties"
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"tit\n"
+"help.text"
+msgid "Python : Programming with Python"
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0218\n"
+"help.text"
+msgid "<bookmark_value>Python;Programming</bookmark_value> <bookmark_value>XSCRIPTCONTEXT;Python</bookmark_value> <bookmark_value>uno.py</bookmark_value>"
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"hd_id691546462755220\n"
+"help.text"
+msgid "<variable id=\"pythonprogrammingheading\"><link href=\"text/sbasic/python/python_programming.xhp\" name=\"python programming\">Programming with Python Scripts</link></variable>"
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0220\n"
+"help.text"
+msgid "A Python macro is a function within a .py file, identified as a module. Unlike %PRODUCTNAME Basic and its dozen of <link href=\"text/sbasic/shared/uno_objects.xhp\" name=\"UNO objects functions or services\">UNO objects functions or services</link>, Python macros use the <literal>XSCRIPTCONTEXT</literal> UNO single object, shared with JavaScript and BeanShell. The <literal>g_exportedScripts</literal> global tuple explicitly lists selectable macros from a module. Python modules hold autonomous code logic, and are independent from one another."
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0221\n"
+"help.text"
+msgid "XSCRIPTCONTEXT Global Variable"
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0222\n"
+"help.text"
+msgid "Genuine Basic UNO facilities can be inferred from <literal>XSCRIPTCONTEXT</literal> global variable. Refer to %PRODUCTNAME API for a complete <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1script_1_1provider_1_1XScriptContext.html\" name=\"description of XSCRIPTCONTEXT\">description of XSCRIPTCONTEXT</link>. <literal>XSCRIPTCONTEXT</literal> methods summarize as:"
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0224\n"
+"help.text"
+msgid "Methods"
+msgstr "Metodes"
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0225\n"
+"help.text"
+msgid "Description"
+msgstr "Apraksts"
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0226\n"
+"help.text"
+msgid "Mapped in Basic as"
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0228\n"
+"help.text"
+msgid "The document reference on which the script can operate."
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0231\n"
+"help.text"
+msgid "The desktop reference on which the script can operate."
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0234\n"
+"help.text"
+msgid "The component context which the script can use to create other uno components."
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0237\n"
+"help.text"
+msgid "<emph>HelloWorld</emph> and <emph>Capitalise</emph> installation shared scripts illustrate UNO-related macros making use of <literal>XSCRIPTCONTEXT</literal> global variable."
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0238\n"
+"help.text"
+msgid "Python standard output file is not available when running Python macros from <menuitem>Tools - Macros - Run Macro</menuitem> menu. Refer to <emph>Input/Output to Screen</emph> for more information."
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0239\n"
+"help.text"
+msgid "Module import"
+msgstr "Moduļu imports"
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0240\n"
+"help.text"
+msgid "<literal>XSCRIPTCONTEXT</literal> is not provided to imported modules."
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0241\n"
+"help.text"
+msgid "%PRODUCTNAME Basic libraries contain classes, routines and variables, Python modules contain classes, functions and variables. Common pieces of reusable Python or UNO features must be stored in <link href=\"text/sbasic/python/python_locations.xhp\" name=\"My macros\">My macros</link> within <literal><User Profile>/Scripts/python/pythonpath</literal>. Python libraries help organize modules in order to prevent module name collisions. Import <literal>uno.py</literal> inside shared modules."
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0242\n"
+"help.text"
+msgid "Genuine BASIC UNO facilities can be inferred using <literal>uno.py</literal> module. Use <link href=\"text/sbasic/python/python_shell.xhp\" name=\"Python interactive shell\">Python interactive shell</link> to get a complete module description using <literal>dir()</literal> and <literal>help()</literal> Python commands."
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0244\n"
+"help.text"
+msgid "Functions"
+msgstr "Funkcijas"
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0245\n"
+"help.text"
+msgid "Description"
+msgstr "Apraksts"
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0246\n"
+"help.text"
+msgid "Mapped in Basic as"
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0248\n"
+"help.text"
+msgid "Returns an absolute file url from the given urls."
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0251\n"
+"help.text"
+msgid "Creates a UNO struct or exception given by typeName."
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0254\n"
+"help.text"
+msgid "Returns a system path."
+msgstr "Atgriež sistēmas ceļu."
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0257\n"
+"help.text"
+msgid "Returns the class of a concrete UNO exception, struct, or interface."
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0260\n"
+"help.text"
+msgid "Returns the UNO component context used to initialize the Python runtime."
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0264\n"
+"help.text"
+msgid "Looks up the value of an IDL constant by giving its explicit name."
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0265\n"
+"help.text"
+msgid "See API constant groups"
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0267\n"
+"help.text"
+msgid "Returns True, when obj is a class of a UNO interface."
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0270\n"
+"help.text"
+msgid "Returns a file URL for the given system path."
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0272\n"
+"help.text"
+msgid "<emph>LibreLogo</emph> and <emph>TableSample</emph> installation shared scripts use <literal>uno.py</literal> module."
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0273\n"
+"help.text"
+msgid "More Python-Basic samples"
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0275\n"
+"help.text"
+msgid "Python UNO"
+msgstr "Python UNO"
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0276\n"
+"help.text"
+msgid "Basic UNO features"
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0284\n"
+"help.text"
+msgid "See <link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"Opening a Dialog\">Opening a Dialog</link>"
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0286\n"
+"help.text"
+msgid "See <link href=\"text/sbasic/python/python_listener.xhp\" name=\"Creating a Listener\">Creating a Listener</link>"
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0288\n"
+"help.text"
+msgid "See UNO data types"
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0297\n"
+"help.text"
+msgid "Importing an embedded Module"
+msgstr "Iegulta moduļa importēšana"
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0298\n"
+"help.text"
+msgid "Similarly to %PRODUCTNAME Basic that supports browsing and dynamic loading of libraries, Python libraries can be explored and imported on demand. For more information on library containers, visit <link href=\"https://api.libreoffice.org/\" name=\"API Documentation site\">%PRODUCTNAME Application Programming Interface</link> (API) or download <link href=\"https://www.libreoffice.org/download/download/\" name=\"SDK download page\">%PRODUCTNAME Software Development Kit</link> (SDK)."
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0299\n"
+"help.text"
+msgid "Importing a Python document embedded module is illustrated below, exception handling is not detailed:"
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0303\n"
+"help.text"
+msgid "\"\"\" load library and import module"
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0305\n"
+"help.text"
+msgid "Adapted from 'Bibliothèque de fonctions' by Hubert Lambert"
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0306\n"
+"help.text"
+msgid "at https://forum.openoffice.org/fr/forum/viewtopic.php?p=286213\"\"\""
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0307\n"
+"help.text"
+msgid "doc = XSCRIPTCONTEXT.getDocument() # current document"
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0310\n"
+"help.text"
+msgid "if not url in sys.path: # add path if necessary"
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0311\n"
+"help.text"
+msgid "sys.path.insert(0, url) # doclib takes precedence"
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0312\n"
+"help.text"
+msgid "if module_name: # import if requested"
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0316\n"
+"help.text"
+msgid "ui = load_library(\"my_gui\",'screen_io') # add <lib> path + import <module>"
+msgstr ""
+
+#: python_programming.xhp
+msgctxt ""
+"python_programming.xhp\n"
+"N0321\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/uno_objects.xhp\" name=\"UNO objects page\">Basic UNO Objects, Functions and Services</link>"
+msgstr ""
+
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"tit\n"
+"help.text"
+msgid "Python : Screen Input/Output"
+msgstr "Python : Ekrāna ievade/izvade"
+
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"N0433\n"
+"help.text"
+msgid "<bookmark_value>Python;InputBox</bookmark_value> <bookmark_value>Python;MsgBox</bookmark_value> <bookmark_value>Python;Print</bookmark_value>"
+msgstr ""
+
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"N0434\n"
+"help.text"
+msgid "<variable id=\"ioscreen\"><link href=\"text/sbasic/python/python_screen.xhp\" name=\"IO to screen\">Input/Output to Screen</link></variable>"
+msgstr ""
+
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"N0435\n"
+"help.text"
+msgid "Python standard output file is not available when running Python macros from <menuitem>Tools – Macros - Run Macro</menuitem>... menu. Presenting the output of a module requires the Python interactive console. Features such as <literal>input()</literal>, <literal>print()</literal>, <literal>repr()</literal> and <literal>str()</literal> are available from the Python shell."
+msgstr ""
+
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"N0436\n"
+"help.text"
+msgid "The <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-python\" name=\"apso\">Alternative Python Script Organizer</link> (APSO) extension offers a msgbox() function out of its <literal>apso_utils</literal> module."
+msgstr ""
+
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"N0437\n"
+"help.text"
+msgid "%PRODUCTNAME Basic proposes <literal>InputBox()</literal>, <literal>Msgbox()</literal> and <literal>Print()</literal> screen I/O functions. Python alternatives exist relying either on %PRODUCTNAME API Abstract Windowing Toolkit, either on Python to Basic function calls. The latter proposes a syntax that is intentionally close to that of Basic, and uses a Python module next to a Basic module. The API Scripting Framework is used to perform Basic, BeanShell, JavaScript and Python inter-languages function calls."
+msgstr ""
+
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"N0438\n"
+"help.text"
+msgid "Python syntax:"
+msgstr "Python sintakse:"
+
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"N0442\n"
+"help.text"
+msgid "Examples:"
+msgstr "Piemēri:"
+
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"N0449\n"
+"help.text"
+msgid "Installation:"
+msgstr ""
+
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"N0450\n"
+"help.text"
+msgid "Copy <literal>screen_io</literal> Python module in <link href=\"text/sbasic/python/python_locations.xhp\" name=\"User macros\">My macros</link> within <UserProfile>/Scripts/python/pythonpath,"
+msgstr ""
+
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"N0451\n"
+"help.text"
+msgid "Copy <literal>uiScripts</literal> Basic module in <link href=\"text/sbasic/python/python_locations.xhp\" name=\"User macros\">My macros</link> Standard Basic library,"
+msgstr ""
+
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"N0452\n"
+"help.text"
+msgid "Restart %PRODUCTNAME."
+msgstr "Pārstartēt %PRODUCTNAME."
+
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"N0453\n"
+"help.text"
+msgid "<literal>screen_io</literal> Python module"
+msgstr ""
+
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"N0467\n"
+"help.text"
+msgid "\"\"\" Displays a dialog box containing a message and returns a value.\"\"\""
+msgstr ""
+
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"N0473\n"
+"help.text"
+msgid "\"\"\" Displays a prompt in a dialog box at which the user can enter text.\"\"\""
+msgstr ""
+
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"N0479\n"
+"help.text"
+msgid "\"\"\"Outputs the specified strings or numeric expressions in a dialog box.\"\"\""
+msgstr ""
+
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"N0492\n"
+"help.text"
+msgid "<literal>uiScripts</literal> Basic module"
+msgstr ""
+
+#: python_screen.xhp
+msgctxt ""
+"python_screen.xhp\n"
+"N0505\n"
+"help.text"
+msgid "<link href=\"text/sbasic/python/python_2_basic.xhp\" name=\"Calling Basic macros from Python\">Calling Basic macros from Python</link>"
+msgstr ""
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"tit\n"
+"help.text"
+msgid "Python_Session : Session class"
+msgstr ""
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0339\n"
+"help.text"
+msgid "<bookmark_value>Session;ComputerName</bookmark_value> <bookmark_value>Session;SharedScripts</bookmark_value> <bookmark_value>Session;SharedPythonScripts</bookmark_value> <bookmark_value>Session;UserProfile</bookmark_value> <bookmark_value>Session;UserScripts</bookmark_value> <bookmark_value>Session;UserPythonScripts</bookmark_value>"
+msgstr ""
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0340\n"
+"help.text"
+msgid "<variable id=\"pythonsession\"><link href=\"text/sbasic/python/python_session.xhp\" name=\"session01\">Getting Session Information</link></variable>"
+msgstr ""
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0341\n"
+"help.text"
+msgid "Computing %PRODUCTNAME user profile and shared modules system file paths can be performed with Python or with Basic languages. BeanShell, Java, JavaScript and Python scripts locations can be derived from this information."
+msgstr ""
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0343\n"
+"help.text"
+msgid "Examples:"
+msgstr "Piemēri:"
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0344\n"
+"help.text"
+msgid "With Python shell."
+msgstr "Ar Python čaulu."
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0346\n"
+"help.text"
+msgid "<literal>>>> print(Session.SharedPythonScripts()) # static method</literal>"
+msgstr ""
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0347\n"
+"help.text"
+msgid "<literal>>>> print(Session().UserName) # object property</literal>"
+msgstr ""
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0348\n"
+"help.text"
+msgid "<literal>>>> input(Session().UserProfile) # object property</literal>"
+msgstr ""
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0349\n"
+"help.text"
+msgid "From <menuitem>Tools – Macros - Run Macro</menuitem>... menu."
+msgstr ""
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0354\n"
+"help.text"
+msgid "ui.MsgBox(Session.Share(),title='Installation Share') # static method"
+msgstr ""
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0355\n"
+"help.text"
+msgid "ui.Print(Session.SharedPythonScripts()) # static method"
+msgstr ""
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0356\n"
+"help.text"
+msgid "s = Session() # instance creation"
+msgstr ""
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0357\n"
+"help.text"
+msgid "ui.MsgBox(s.UserName,title='Hello') # object property"
+msgstr ""
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0358\n"
+"help.text"
+msgid "ui.Print(s.UserPythonScripts) # object property"
+msgstr ""
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0360\n"
+"help.text"
+msgid "g_exportedScripts = (demo_session,) # public macros"
+msgstr ""
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0361\n"
+"help.text"
+msgid "With %PRODUCTNAME Basic."
+msgstr "Ar %PRODUCTNAME Basic."
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0364\n"
+"help.text"
+msgid "Print \"Shared scripts location:\", s.SharedScripts"
+msgstr ""
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0365\n"
+"help.text"
+msgid "MsgBox s.UserName,,\"Hello\""
+msgstr ""
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0368\n"
+"help.text"
+msgid "Using COM/OLE and Visual Basic Scripting language."
+msgstr ""
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0369\n"
+"help.text"
+msgid "' The service manager is always the entry point"
+msgstr ""
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0370\n"
+"help.text"
+msgid "' If there is no office running then an office is started up"
+msgstr ""
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0372\n"
+"help.text"
+msgid "' PathSubstitution service exhibits information to infer"
+msgstr ""
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0373\n"
+"help.text"
+msgid "' <UserProfile|Share>/Scripts/python locations from"
+msgstr ""
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0381\n"
+"help.text"
+msgid "Python Session class:"
+msgstr ""
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0401\n"
+"help.text"
+msgid "@property # alternative to '$(username)' variable"
+msgstr ""
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0342\n"
+"help.text"
+msgid "Unlike Basic, pathname normalization is performed with Python inside Session class."
+msgstr ""
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0412\n"
+"help.text"
+msgid "%PRODUCTNAME Basic Session class:"
+msgstr ""
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0417\n"
+"help.text"
+msgid "Private _ps As Object ' Private member"
+msgstr ""
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0422\n"
+"help.text"
+msgid "End Sub ' Constructor"
+msgstr ""
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0426\n"
+"help.text"
+msgid "End Sub ' Destructor"
+msgstr ""
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0439\n"
+"help.text"
+msgid "Public Property Get UserName() As String ' User account name"
+msgstr ""
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0443\n"
+"help.text"
+msgid "Public Property Get UserProfile() As String ' User profile system path"
+msgstr ""
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0447\n"
+"help.text"
+msgid "Public Property Get UserScripts() As String ' User scripts system path"
+msgstr ""
+
+#: python_session.xhp
+msgctxt ""
+"python_session.xhp\n"
+"N0451\n"
+"help.text"
+msgid "Public Property Get UserPythonScripts() As String ' User Python scripts system path"
+msgstr ""
+
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"tit\n"
+"help.text"
+msgid "Python Interactive Shell"
+msgstr ""
+
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"N0117\n"
+"help.text"
+msgid "<bookmark_value>Python console</bookmark_value> <bookmark_value>Python Interactive Shell</bookmark_value>"
+msgstr ""
+
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"N0118\n"
+"help.text"
+msgid "<variable id=\"pythonshell1\"><link href=\"text/sbasic/python/python_shell.xhp\" name=\"python shell\">Running Python Interactive Console</link></variable>"
+msgstr ""
+
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"N0119\n"
+"help.text"
+msgid "The Python interactive console, also known as Python interpreter or Python shell, provides programmers with a quick way to execute commands and try out and test code without creating a file. UNO objects introspection as well as %PRODUCTNAME Python modules documentation can be obtained from the terminal."
+msgstr ""
+
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"N0121\n"
+"help.text"
+msgid "Using a Basic macro:"
+msgstr "Basic makrokomandas lietošana:"
+
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"N0127\n"
+"help.text"
+msgid "Using a Python macro:"
+msgstr "Python makrokomandas lietošana:"
+
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"N0141\n"
+"help.text"
+msgid "Usage:"
+msgstr "Lietojums:"
+
+#: python_shell.xhp
+msgctxt ""
+"python_shell.xhp\n"
+"N0142\n"
+"help.text"
+msgid "<image src=\"media/helpimg/python/python_shell.png\" id=\"N0143\"><alt id=\"N0144\">Python Interactive Console</alt></image>"
+msgstr ""
diff --git a/source/lv/helpcontent2/source/text/sbasic/shared.po b/source/lv/helpcontent2/source/text/sbasic/shared.po
index b8a29f02e24..ef9d0b700f2 100644
--- a/source/lv/helpcontent2/source/text/sbasic/shared.po
+++ b/source/lv/helpcontent2/source/text/sbasic/shared.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-11-16 22:41+0100\n"
-"PO-Revision-Date: 2018-10-21 20:25+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"PO-Revision-Date: 2019-03-09 15:18+0000\n"
+"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lv\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1540153547.000000\n"
+"X-POOTLE-MTIME: 1552144722.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -493,7 +493,15 @@ msgctxt ""
"00000003.xhp\n"
"par_id051920171018124524\n"
"help.text"
-msgid "This function or constant is enabled with the statement <item type=\"literal\">Option VBASupport 1</item> placed before the executable program code in a module."
+msgid "This function or constant is enabled with the statement <link href=\"text/sbasic/shared/03103350.xhp\" name=\"optionvbasupport\"><literal>Option VBASupport 1</literal></link> placed before the executable program code in a module."
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3145172\n"
+"help.text"
+msgid "This statement must be added before the executable program code in a module."
msgstr ""
#: 00000003.xhp
@@ -2669,7 +2677,7 @@ msgctxt ""
"01020300.xhp\n"
"par_id7906125\n"
"help.text"
-msgid "' (or rises error for Option Explicit)"
+msgid "' (or raises error for Option Explicit)"
msgstr ""
#: 01020300.xhp
@@ -5598,7 +5606,7 @@ msgctxt ""
"hd_id3159213\n"
"help.text"
msgid "Prefix symbol"
-msgstr "Prefiksa simbols"
+msgstr "Priedēkļa simbols"
#: 01170101.xhp
msgctxt ""
@@ -6533,8 +6541,8 @@ msgctxt ""
"03010000.xhp\n"
"hd_id3156280\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010000.xhp\" name=\"Screen I/O Functions\">Screen I/O Functions</link>"
-msgstr "<link href=\"text/sbasic/shared/03010000.xhp\" name=\"Ekrāna ievades/izvades funkcijas\">Ekrāna ievades/izvades funkcijas</link>"
+msgid "<variable id=\"BasicScreenIO\"><link href=\"text/sbasic/shared/03010000.xhp\" name=\"Screen I/O Functions\">Screen I/O Functions</link></variable>"
+msgstr ""
#: 03010000.xhp
msgctxt ""
@@ -7181,8 +7189,8 @@ msgctxt ""
"03010103.xhp\n"
"bm_id3147230\n"
"help.text"
-msgid "<bookmark_value>Print statement</bookmark_value>"
-msgstr "<bookmark_value>Print priekšraksts</bookmark_value>"
+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 ""
#: 03010103.xhp
msgctxt ""
@@ -7285,7 +7293,7 @@ msgctxt ""
"03010103.xhp\n"
"par_id3146969\n"
"help.text"
-msgid "You can insert the Tab function, enclosed by semicolons, between arguments to indent the output to a specific position, or you can use the <emph>Spc</emph> function to insert a specified number of spaces."
+msgid "You can insert the <emph>Tab</emph> function, enclosed by semicolons, between arguments to indent the output to a specific position, or you can use the <emph>Spc</emph> function to insert a specified number of spaces."
msgstr ""
#: 03010103.xhp
@@ -7867,6 +7875,14 @@ msgstr ""
#: 03010304.xhp
msgctxt ""
"03010304.xhp\n"
+"bm_id201546205404067\n"
+"help.text"
+msgid "<bookmark_value>QBColor function</bookmark_value>"
+msgstr ""
+
+#: 03010304.xhp
+msgctxt ""
+"03010304.xhp\n"
"hd_id3149670\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03010304.xhp\" name=\"QBColor Function\">QBColor Function</link>"
@@ -15093,7 +15109,7 @@ msgctxt ""
"03040000.xhp\n"
"bm_id051720170831387233\n"
"help.text"
-msgid "<bookmark_value>Pi;Basic constant</bookmark_value> <bookmark_value>Null;Basic constant</bookmark_value> <bookmark_value>Empty;Basic constant</bookmark_value> <bookmark_value>Nothing;Basic constant</bookmark_value> <bookmark_value>Basic constant;Nothing</bookmark_value> <bookmark_value>Basic constant;Null</bookmark_value> <bookmark_value>Basic constant;Empty</bookmark_value> <bookmark_value>Basic constant;Pi</bookmark_value> <bookmark_value>Basic constant;False</bookmark_value> <bookmark_value>Basic constant;True</bookmark_value> <bookmark_value>VBA Exclusive constants</bookmark_value>"
+msgid "<bookmark_value>Basic constants</bookmark_value>"
msgstr ""
#: 03040000.xhp
@@ -15115,6 +15131,14 @@ msgstr ""
#: 03040000.xhp
msgctxt ""
"03040000.xhp\n"
+"bm_id871554200620243\n"
+"help.text"
+msgid "<bookmark_value>Boolean Basic constants</bookmark_value><bookmark_value>Basic constant;False</bookmark_value><bookmark_value>Basic constant;True</bookmark_value>"
+msgstr ""
+
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
"par_id051620171022382581\n"
"help.text"
msgid "Boolean constants"
@@ -15147,6 +15171,14 @@ msgstr ""
#: 03040000.xhp
msgctxt ""
"03040000.xhp\n"
+"bm_id131554200364170\n"
+"help.text"
+msgid "<bookmark_value>Basic Mathematical constants</bookmark_value><bookmark_value>Pi;Basic constant</bookmark_value><bookmark_value>Basic constant;Pi</bookmark_value>"
+msgstr ""
+
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
"hd_id051620171114573549\n"
"help.text"
msgid "Mathematical constant"
@@ -15179,6 +15211,14 @@ msgstr ""
#: 03040000.xhp
msgctxt ""
"03040000.xhp\n"
+"bm_id261554201061695\n"
+"help.text"
+msgid "<bookmark_value>Basic Object constants</bookmark_value><bookmark_value>Empty;Basic constant</bookmark_value><bookmark_value>Null;Basic constant</bookmark_value><bookmark_value>Nothing;Basic constant</bookmark_value><bookmark_value>Basic constant;Nothing</bookmark_value><bookmark_value>Basic constant;Null</bookmark_value><bookmark_value>Basic constant;Empty</bookmark_value>"
+msgstr ""
+
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
"hd_id051620171114576454\n"
"help.text"
msgid "Object Constants"
@@ -15206,7 +15246,7 @@ msgctxt ""
"par_id051720170824099845\n"
"help.text"
msgid "Usage"
-msgstr ""
+msgstr "Lietojums:"
#: 03040000.xhp
msgctxt ""
@@ -15235,6 +15275,14 @@ msgstr ""
#: 03040000.xhp
msgctxt ""
"03040000.xhp\n"
+"bm_id101554201127393\n"
+"help.text"
+msgid "<bookmark_value>Visual Basic constants</bookmark_value><bookmark_value>VBA Exclusive constants</bookmark_value>"
+msgstr ""
+
+#: 03040000.xhp
+msgctxt ""
+"03040000.xhp\n"
"hd_id661512312593832\n"
"help.text"
msgid "Additional VBA constants"
@@ -17323,14 +17371,6 @@ msgstr ""
#: 03080101.xhp
msgctxt ""
"03080101.xhp\n"
-"hd_id3149669\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintakse:"
-
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
"par_id3148947\n"
"help.text"
msgid "Atn (Number)"
@@ -17339,14 +17379,6 @@ msgstr "Atn (Skaitlis)"
#: 03080101.xhp
msgctxt ""
"03080101.xhp\n"
-"hd_id3148664\n"
-"help.text"
-msgid "Return value:"
-msgstr "Atgrieztā vērtība:"
-
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
"par_id3150359\n"
"help.text"
msgid "Double"
@@ -17355,14 +17387,6 @@ msgstr "Dubulta"
#: 03080101.xhp
msgctxt ""
"03080101.xhp\n"
-"hd_id3148798\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
-
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
"par_id3156212\n"
"help.text"
msgid "<emph>Number:</emph> Any numerical expression that represents the ratio of two sides of a right triangle. The Atn function returns the corresponding angle in radians (arctangent)."
@@ -17397,20 +17421,12 @@ msgctxt ""
"03080101.xhp\n"
"par_id3159252\n"
"help.text"
-msgid "Pi is here the fixed circle constant with the rounded value 3.14159."
+msgid "Pi is here the fixed circle constant with the rounded value 3.14159. Pi is a <link href=\"text/sbasic/shared/03040000.xhp#mathconstants\" name=\"pi\">Basic mathematical constant</link>."
msgstr ""
#: 03080101.xhp
msgctxt ""
"03080101.xhp\n"
-"hd_id3153142\n"
-"help.text"
-msgid "Example:"
-msgstr "Piemērs:"
-
-#: 03080101.xhp
-msgctxt ""
-"03080101.xhp\n"
"par_id3146985\n"
"help.text"
msgid "' The following example calculates for a right-angled triangle"
@@ -18637,15 +18653,15 @@ msgctxt ""
"03080500.xhp\n"
"hd_id3153345\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080500.xhp\" name=\"Integers\">Integers</link>"
-msgstr "<link href=\"text/sbasic/shared/03080500.xhp\" name=\"Veselie skaitļi\">Veselie skaitļi</link>"
+msgid "<link href=\"text/sbasic/shared/03080500.xhp\" name=\"Integers\">Integers and Fractional</link>"
+msgstr ""
#: 03080500.xhp
msgctxt ""
"03080500.xhp\n"
"par_id3156152\n"
"help.text"
-msgid "The following functions round values to integers."
+msgid "Functions to round values to integers, and to take the fractional part of a value."
msgstr ""
#: 03080501.xhp
@@ -18683,14 +18699,6 @@ msgstr ""
#: 03080501.xhp
msgctxt ""
"03080501.xhp\n"
-"hd_id3155419\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintakse:"
-
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
"par_id3156152\n"
"help.text"
msgid "Fix (Expression)"
@@ -18699,14 +18707,6 @@ msgstr "Fix (Izteiksme)"
#: 03080501.xhp
msgctxt ""
"03080501.xhp\n"
-"hd_id3154923\n"
-"help.text"
-msgid "Return value:"
-msgstr "Atgrieztā vērtība:"
-
-#: 03080501.xhp
-msgctxt ""
-"03080501.xhp\n"
"par_id3148947\n"
"help.text"
msgid "Double"
@@ -18715,49 +18715,49 @@ msgstr "Dubulta"
#: 03080501.xhp
msgctxt ""
"03080501.xhp\n"
-"hd_id3154760\n"
+"par_id3149457\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
+msgid "<emph>Expression:</emph> Numeric expression that you want to return the integer value for."
+msgstr ""
#: 03080501.xhp
msgctxt ""
"03080501.xhp\n"
-"par_id3149457\n"
+"par_id3156214\n"
"help.text"
-msgid "<emph>Expression:</emph> Numeric expression that you want to return the integer value for."
+msgid "Print Fix(3.14159) ' returns 3."
msgstr ""
#: 03080501.xhp
msgctxt ""
"03080501.xhp\n"
-"hd_id3150447\n"
+"par_id3154217\n"
"help.text"
-msgid "Example:"
-msgstr "Piemērs:"
+msgid "Print Fix(0) ' returns 0."
+msgstr "Print Fix(0) ' atgriež 0."
#: 03080501.xhp
msgctxt ""
"03080501.xhp\n"
-"par_id3156214\n"
+"par_id3145786\n"
"help.text"
-msgid "Print Fix(3.14159) ' returns 3."
+msgid "Print Fix(-3.14159) ' returns -3."
msgstr ""
#: 03080501.xhp
msgctxt ""
"03080501.xhp\n"
-"par_id3154217\n"
+"par_id391546195157714\n"
"help.text"
-msgid "Print Fix(0) ' returns 0."
-msgstr "Print Fix(0) ' atgriež 0."
+msgid "<link href=\"text/sbasic/shared/03080502.xhp\" name=\"Int Function\">Int Function</link>"
+msgstr ""
#: 03080501.xhp
msgctxt ""
"03080501.xhp\n"
-"par_id3145786\n"
+"par_id51546195168056\n"
"help.text"
-msgid "Print Fix(-3.14159) ' returns -3."
+msgid "<link href=\"text/sbasic/shared/03080503.xhp\" name=\"Frac Function\">Frac Function</link>"
msgstr ""
#: 03080502.xhp
@@ -18795,81 +18795,161 @@ msgstr ""
#: 03080502.xhp
msgctxt ""
"03080502.xhp\n"
-"hd_id3147559\n"
+"par_id3146795\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintakse:"
+msgid "Int (Number)"
+msgstr "Int (Skaitlis)"
#: 03080502.xhp
msgctxt ""
"03080502.xhp\n"
-"par_id3146795\n"
+"par_id3150400\n"
"help.text"
-msgid "Int (Number)"
-msgstr "Int (Skaitlis)"
+msgid "Double"
+msgstr "Dubulta"
#: 03080502.xhp
msgctxt ""
"03080502.xhp\n"
-"hd_id3149670\n"
+"par_id3148797\n"
"help.text"
-msgid "Return value:"
-msgstr "Atgrieztā vērtība:"
+msgid "<emph>Number:</emph> Any valid numeric expression."
+msgstr "<emph>Skaitlis:</emph> jebkura derīga skaitliska izteiksme."
#: 03080502.xhp
msgctxt ""
"03080502.xhp\n"
-"par_id3150400\n"
+"par_id3125864\n"
"help.text"
-msgid "Double"
-msgstr "Dubulta"
+msgid "Print Int(3.99) ' returns the value 3"
+msgstr ""
#: 03080502.xhp
msgctxt ""
"03080502.xhp\n"
-"hd_id3149656\n"
+"par_id3145787\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
+msgid "Print Int(0) ' returns the value 0"
+msgstr ""
#: 03080502.xhp
msgctxt ""
"03080502.xhp\n"
-"par_id3148797\n"
+"par_id3153143\n"
"help.text"
-msgid "<emph>Number:</emph> Any valid numeric expression."
-msgstr "<emph>Skaitlis:</emph> jebkura derīga skaitliska izteiksme."
+msgid "Print Int(-3.14159) ' returns the value -4"
+msgstr ""
#: 03080502.xhp
msgctxt ""
"03080502.xhp\n"
-"hd_id3148672\n"
+"par_id461546195246946\n"
"help.text"
-msgid "Example:"
-msgstr "Piemērs:"
+msgid "<link href=\"text/sbasic/shared/03080501.xhp\" name=\"Fix Function\">Fix Function</link>"
+msgstr ""
#: 03080502.xhp
msgctxt ""
"03080502.xhp\n"
+"par_id51546195168056\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03080503.xhp\" name=\"Frac Function\">Frac Function</link>"
+msgstr ""
+
+#: 03080503.xhp
+msgctxt ""
+"03080503.xhp\n"
+"tit\n"
+"help.text"
+msgid "Frac Function"
+msgstr ""
+
+#: 03080503.xhp
+msgctxt ""
+"03080503.xhp\n"
+"bm_id3153345\n"
+"help.text"
+msgid "<bookmark_value>Frac function</bookmark_value>"
+msgstr ""
+
+#: 03080503.xhp
+msgctxt ""
+"03080503.xhp\n"
+"hd_id3153345\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03080503.xhp\" name=\"Frac Function\">Frac Function</link>"
+msgstr ""
+
+#: 03080503.xhp
+msgctxt ""
+"03080503.xhp\n"
+"par_id3155420\n"
+"help.text"
+msgid "Returns the fractional portion of a number."
+msgstr ""
+
+#: 03080503.xhp
+msgctxt ""
+"03080503.xhp\n"
+"par_id3146795\n"
+"help.text"
+msgid "Frac (Number)"
+msgstr ""
+
+#: 03080503.xhp
+msgctxt ""
+"03080503.xhp\n"
+"par_id3150400\n"
+"help.text"
+msgid "Double"
+msgstr ""
+
+#: 03080503.xhp
+msgctxt ""
+"03080503.xhp\n"
+"par_id3148797\n"
+"help.text"
+msgid "<emph>Number:</emph> Any valid numeric expression."
+msgstr ""
+
+#: 03080503.xhp
+msgctxt ""
+"03080503.xhp\n"
"par_id3125864\n"
"help.text"
-msgid "Print Int(3.99) ' returns the value 3"
+msgid "Print Frac(3.99) ' returns the value 0.99"
msgstr ""
-#: 03080502.xhp
+#: 03080503.xhp
msgctxt ""
-"03080502.xhp\n"
+"03080503.xhp\n"
"par_id3145787\n"
"help.text"
-msgid "Print Int(0) ' returns the value 0"
+msgid "Print Frac(0) ' returns the value 0"
msgstr ""
-#: 03080502.xhp
+#: 03080503.xhp
msgctxt ""
-"03080502.xhp\n"
+"03080503.xhp\n"
"par_id3153143\n"
"help.text"
-msgid "Print Int(-3.14159) ' returns the value -4"
+msgid "Print Frac(-3.14159) ' returns the value -0.14159"
+msgstr ""
+
+#: 03080503.xhp
+msgctxt ""
+"03080503.xhp\n"
+"par_id461546195246946\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03080501.xhp\" name=\"Fix Function\">Fix Function</link>"
+msgstr ""
+
+#: 03080503.xhp
+msgctxt ""
+"03080503.xhp\n"
+"par_id391546195157714\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03080502.xhp\" name=\"Int Function\">Int Function</link>"
msgstr ""
#: 03080600.xhp
@@ -21579,6 +21659,14 @@ msgstr ""
#: 03090404.xhp
msgctxt ""
"03090404.xhp\n"
+"par_id371543799561260\n"
+"help.text"
+msgid "End Enum: Ends an Enum VBA statement"
+msgstr ""
+
+#: 03090404.xhp
+msgctxt ""
+"03090404.xhp\n"
"par_id3145171\n"
"help.text"
msgid "End Function: Ends a <emph>Function</emph> statement."
@@ -21611,6 +21699,14 @@ msgstr ""
#: 03090404.xhp
msgctxt ""
"03090404.xhp\n"
+"par_id811543799601628\n"
+"help.text"
+msgid "End With: Ends a With statement"
+msgstr ""
+
+#: 03090404.xhp
+msgctxt ""
+"03090404.xhp\n"
"hd_id3146120\n"
"help.text"
msgid "Example:"
@@ -21925,7 +22021,7 @@ msgctxt ""
"03090407.xhp\n"
"hd_id3154347\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090407.xhp\" name=\"Rem Statement\">Rem Statement</link>"
+msgid "<variable id=\"remstatement\"><link href=\"text/sbasic/shared/03090407.xhp\" name=\"Rem Statement\">Rem Statement</link></variable>"
msgstr ""
#: 03090407.xhp
@@ -21939,14 +22035,6 @@ msgstr ""
#: 03090407.xhp
msgctxt ""
"03090407.xhp\n"
-"hd_id3153360\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintakse:"
-
-#: 03090407.xhp
-msgctxt ""
-"03090407.xhp\n"
"par_id3154141\n"
"help.text"
msgid "Rem Text"
@@ -21955,14 +22043,6 @@ msgstr "Rem Teksts"
#: 03090407.xhp
msgctxt ""
"03090407.xhp\n"
-"hd_id3151042\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
-
-#: 03090407.xhp
-msgctxt ""
-"03090407.xhp\n"
"par_id3150869\n"
"help.text"
msgid "<emph>Text:</emph> Any text that serves as a comment."
@@ -21987,14 +22067,6 @@ msgstr ""
#: 03090407.xhp
msgctxt ""
"03090407.xhp\n"
-"hd_id3150012\n"
-"help.text"
-msgid "Example:"
-msgstr "Piemērs:"
-
-#: 03090407.xhp
-msgctxt ""
-"03090407.xhp\n"
"par_id3153140\n"
"help.text"
msgid "' Nothing occurs here"
@@ -23117,7 +23189,7 @@ msgctxt ""
"03100300.xhp\n"
"par_id3125864\n"
"help.text"
-msgid "When you convert a string expression, the date and time must be entered either in one of the date acceptance patterns defined for your locale setting (see <item type=\"menuitem\">Tools - Options - Language Settings - Languages</item>) or in ISO date format (momentarily, only the ISO format with hyphens, e.g. \"2012-12-31\" is accepted). In numeric expressions, values to the left of the decimal represent the date, beginning from December 31, 1899. Values to the right of the decimal represent the time."
+msgid "When you convert a string expression, the date and time must be entered either in one of the date acceptance patterns defined for your locale setting (see <item type=\"menuitem\">Tools - Options - Language Settings - Languages</item>) or in ISO date format (momentarily, only the ISO format with hyphens, e.g. \"2012-12-31\" is accepted). In numeric expressions, values to the left of the decimal represent the date, beginning from December 31, 1899. Values to the right of the decimal represent the time."
msgstr ""
#: 03100300.xhp
@@ -23870,7 +23942,7 @@ msgctxt ""
"par_id3156152\n"
"help.text"
msgid "' Prefix definition for variable types:"
-msgstr ""
+msgstr "' Priedēkļa definīcija mainīgo tipiem:"
#: 03101100.xhp
msgctxt ""
@@ -24406,7 +24478,7 @@ msgctxt ""
"par_id3156214\n"
"help.text"
msgid "' Prefix definitions for variable types:"
-msgstr ""
+msgstr "' Priedēkļu definīcijas mainīgo tipiem:"
#: 03102000.xhp
msgctxt ""
@@ -25981,7 +26053,7 @@ msgctxt ""
"03103200.xhp\n"
"hd_id3155805\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103200.xhp\" name=\"Option Base Statement\">Option Base Statement</link>"
+msgid "<variable id=\"optionbasestatement\"><link href=\"text/sbasic/shared/03103200.xhp\" name=\"Option Base Statement\">Option Base Statement</link></variable>"
msgstr ""
#: 03103200.xhp
@@ -25995,35 +26067,11 @@ msgstr ""
#: 03103200.xhp
msgctxt ""
"03103200.xhp\n"
-"hd_id3150771\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintakse:"
-
-#: 03103200.xhp
-msgctxt ""
-"03103200.xhp\n"
-"hd_id3145315\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
-
-#: 03103200.xhp
-msgctxt ""
-"03103200.xhp\n"
"par_id3147229\n"
"help.text"
msgid "This statement must be added before the executable program code in a module."
msgstr ""
-#: 03103200.xhp
-msgctxt ""
-"03103200.xhp\n"
-"hd_id3150870\n"
-"help.text"
-msgid "Example:"
-msgstr "Piemērs:"
-
#: 03103300.xhp
msgctxt ""
"03103300.xhp\n"
@@ -26045,7 +26093,7 @@ msgctxt ""
"03103300.xhp\n"
"hd_id3145090\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement\">Option Explicit Statement</link>"
+msgid "<variable id=\"explicitstatement\"><link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement\">Option Explicit Statement</link></variable>"
msgstr ""
#: 03103300.xhp
@@ -26059,38 +26107,6 @@ msgstr ""
#: 03103300.xhp
msgctxt ""
"03103300.xhp\n"
-"hd_id3149763\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintakse:"
-
-#: 03103300.xhp
-msgctxt ""
-"03103300.xhp\n"
-"hd_id3145315\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
-
-#: 03103300.xhp
-msgctxt ""
-"03103300.xhp\n"
-"par_id3145172\n"
-"help.text"
-msgid "This statement must be added before the executable program code in a module."
-msgstr ""
-
-#: 03103300.xhp
-msgctxt ""
-"03103300.xhp\n"
-"hd_id3125864\n"
-"help.text"
-msgid "Example:"
-msgstr "Piemērs:"
-
-#: 03103300.xhp
-msgctxt ""
-"03103300.xhp\n"
"par_id3145787\n"
"help.text"
msgid "For i% = 1 To 10 ' This results in a run-time error"
@@ -26117,7 +26133,7 @@ msgctxt ""
"03103350.xhp\n"
"hd_id3145090\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option VBASupport Statement\">Option VBASupport Statement</link>"
+msgid "<variable id=\"vbasupportstatement\"><link href=\"text/sbasic/shared/03103350.xhp\" name=\"Option VBASupport Statement\">Option VBASupport Statement</link></variable>"
msgstr ""
#: 03103350.xhp
@@ -26139,25 +26155,9 @@ msgstr ""
#: 03103350.xhp
msgctxt ""
"03103350.xhp\n"
-"hd_id3149763\n"
+"par_id941552915528262\n"
"help.text"
-msgid "Syntax:"
-msgstr ""
-
-#: 03103350.xhp
-msgctxt ""
-"03103350.xhp\n"
-"hd_id3145315\n"
-"help.text"
-msgid "Parameters:"
-msgstr ""
-
-#: 03103350.xhp
-msgctxt ""
-"03103350.xhp\n"
-"par_id3145172\n"
-"help.text"
-msgid "This statement must be added before the executable program code in a module."
+msgid "When VBA support is enabled, %PRODUCTNAME Basic functions arguments and return values are the same as their VBA functions counterparts. When the support is disabled, %PRODUCTNAME Basic functions may accept arguments and return values different of their VBA counterparts."
msgstr ""
#: 03103350.xhp
@@ -26179,14 +26179,6 @@ msgstr ""
#: 03103350.xhp
msgctxt ""
"03103350.xhp\n"
-"hd_id3125864\n"
-"help.text"
-msgid "Example:"
-msgstr ""
-
-#: 03103350.xhp
-msgctxt ""
-"03103350.xhp\n"
"par_id051720171119254111\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01130100.xhp\">VBA Properties</link>"
@@ -28011,14 +28003,6 @@ msgstr ""
#: 03120102.xhp
msgctxt ""
"03120102.xhp\n"
-"hd_id3149514\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintakse:"
-
-#: 03120102.xhp
-msgctxt ""
-"03120102.xhp\n"
"par_id3150669\n"
"help.text"
msgid "Chr(Expression As Integer)"
@@ -28027,14 +28011,6 @@ msgstr ""
#: 03120102.xhp
msgctxt ""
"03120102.xhp\n"
-"hd_id3143228\n"
-"help.text"
-msgid "Return value:"
-msgstr "Atgrieztā vērtība:"
-
-#: 03120102.xhp
-msgctxt ""
-"03120102.xhp\n"
"par_id3153824\n"
"help.text"
msgid "String"
@@ -28043,17 +28019,17 @@ msgstr "Virkne"
#: 03120102.xhp
msgctxt ""
"03120102.xhp\n"
-"hd_id3148944\n"
+"par_id3149295\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
+msgid "<emph>Expression:</emph> a numeric expression that represent a valid 8 bit ASCII value (0-255) or a 16 bit Unicode value."
+msgstr ""
#: 03120102.xhp
msgctxt ""
"03120102.xhp\n"
-"par_id3149295\n"
+"par_id991552913928635\n"
"help.text"
-msgid "<emph>Expression:</emph> Numeric variables that represent a valid 8 bit ASCII value (0-255) or a 16 bit Unicode value."
+msgid "When VBA compatibility mode is enabled (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>OPTION VBASUPPORT 1</literal></link>), <emph>Expression</emph> is a numeric expression that represent a valid 8 bit ASCII value (0-255) only."
msgstr ""
#: 03120102.xhp
@@ -28067,10 +28043,10 @@ msgstr ""
#: 03120102.xhp
msgctxt ""
"03120102.xhp\n"
-"hd_id3154366\n"
+"par_id111552916434071\n"
"help.text"
-msgid "Example:"
-msgstr "Piemērs:"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#err6\"/>, when VBA compatibility mode is enabled and expression is greater than 255."
+msgstr ""
#: 03120102.xhp
msgctxt ""
@@ -28613,7 +28589,7 @@ msgctxt ""
"03120201.xhp\n"
"tit\n"
"help.text"
-msgid "Space Function"
+msgid "Space and Spc Function"
msgstr ""
#: 03120201.xhp
@@ -28621,15 +28597,15 @@ msgctxt ""
"03120201.xhp\n"
"bm_id3150499\n"
"help.text"
-msgid "<bookmark_value>Space function</bookmark_value>"
-msgstr "<bookmark_value>Space funkcija</bookmark_value>"
+msgid "<bookmark_value>Space function</bookmark_value> <bookmark_value>Spc function</bookmark_value>"
+msgstr ""
#: 03120201.xhp
msgctxt ""
"03120201.xhp\n"
"hd_id3150499\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120201.xhp\" name=\"Space Function\">Space Function</link>"
+msgid "<link href=\"text/sbasic/shared/03120201.xhp\" name=\"Space Function\">Space and Spc Functions</link>"
msgstr ""
#: 03120201.xhp
@@ -28643,18 +28619,10 @@ msgstr ""
#: 03120201.xhp
msgctxt ""
"03120201.xhp\n"
-"hd_id3153394\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintakse:"
-
-#: 03120201.xhp
-msgctxt ""
-"03120201.xhp\n"
-"hd_id3147242\n"
+"par_id681546202842979\n"
"help.text"
-msgid "Return value:"
-msgstr "Atgrieztā vērtība:"
+msgid "The Spc function works the same as the Space function."
+msgstr ""
#: 03120201.xhp
msgctxt ""
@@ -28667,30 +28635,14 @@ msgstr "Virkne"
#: 03120201.xhp
msgctxt ""
"03120201.xhp\n"
-"hd_id3156152\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
-
-#: 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 n is 65535."
+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 ""
#: 03120201.xhp
msgctxt ""
"03120201.xhp\n"
-"hd_id3154760\n"
-"help.text"
-msgid "Example:"
-msgstr "Piemērs:"
-
-#: 03120201.xhp
-msgctxt ""
-"03120201.xhp\n"
"par_id3154216\n"
"help.text"
msgid "MsgBox sOut,0,\"Info:\""
@@ -29227,14 +29179,6 @@ msgstr "Skatiet arī: Funkcija <link href=\"text/sbasic/shared/03120310.xhp\" na
#: 03120302.xhp
msgctxt ""
"03120302.xhp\n"
-"hd_id3149456\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintakse:"
-
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
"par_id3150791\n"
"help.text"
msgid "LCase (Text As String)"
@@ -29243,14 +29187,6 @@ msgstr "LCase (Teksts As String)"
#: 03120302.xhp
msgctxt ""
"03120302.xhp\n"
-"hd_id3154940\n"
-"help.text"
-msgid "Return value:"
-msgstr "Atgrieztā vērtība:"
-
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
"par_id3144760\n"
"help.text"
msgid "String"
@@ -29259,14 +29195,6 @@ msgstr "Virkne"
#: 03120302.xhp
msgctxt ""
"03120302.xhp\n"
-"hd_id3151043\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
-
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
"par_id3153193\n"
"help.text"
msgid "<emph>Text:</emph> Any string expression that you want to convert."
@@ -29275,14 +29203,6 @@ msgstr "<emph>Teksts:</emph> jebkura virknes izteiksme, kuru jūs vēlaties pār
#: 03120302.xhp
msgctxt ""
"03120302.xhp\n"
-"hd_id3148451\n"
-"help.text"
-msgid "Example:"
-msgstr "Piemērs:"
-
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
"par_id3146121\n"
"help.text"
msgid "Print LCase(sVar) ' Returns \"las vegas\""
@@ -30171,14 +30091,6 @@ msgstr "Skatiet arī: <link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCas
#: 03120310.xhp
msgctxt ""
"03120310.xhp\n"
-"par_id3149233\n"
-"help.text"
-msgid "<emph>Syntax</emph>:"
-msgstr "<emph>Sintakse</emph>:"
-
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
"par_id3153061\n"
"help.text"
msgid "UCase (Text As String)"
@@ -30187,14 +30099,6 @@ msgstr "UCase (Teksts As String)"
#: 03120310.xhp
msgctxt ""
"03120310.xhp\n"
-"par_id3159414\n"
-"help.text"
-msgid "<emph>Return value</emph>:"
-msgstr "<emph>Atgrieztā vērtība</emph>:"
-
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
"par_id3146795\n"
"help.text"
msgid "String"
@@ -30203,14 +30107,6 @@ msgstr "Virkne"
#: 03120310.xhp
msgctxt ""
"03120310.xhp\n"
-"hd_id3149457\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
-
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
"par_id3150791\n"
"help.text"
msgid "<emph>Text:</emph> Any string expression that you want to convert."
@@ -30219,14 +30115,6 @@ msgstr "<emph>Teksts:</emph> jebkura virknes izteiksme, kuru jūs vēlaties pār
#: 03120310.xhp
msgctxt ""
"03120310.xhp\n"
-"hd_id3154125\n"
-"help.text"
-msgid "Example:"
-msgstr "Piemērs:"
-
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
"par_id3149204\n"
"help.text"
msgid "Print LCase(sVar) ' returns \"las vegas\""
@@ -31595,49 +31483,105 @@ msgstr ""
#: 03130600.xhp
msgctxt ""
"03130600.xhp\n"
-"hd_id3143229\n"
+"par_id3150669\n"
"help.text"
-msgid "Syntax:"
-msgstr "Sintakse:"
+msgid "Wait millisec"
+msgstr ""
#: 03130600.xhp
msgctxt ""
"03130600.xhp\n"
-"par_id3150669\n"
+"par_id3154924\n"
"help.text"
-msgid "Wait millisec"
+msgid "<emph>millisec:</emph> Numeric expression that contains the amount of time (in milliseconds) to wait before the program is executed."
msgstr ""
#: 03130600.xhp
msgctxt ""
"03130600.xhp\n"
-"hd_id3148943\n"
+"par_id3156214\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametri:"
+msgid "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
+msgstr ""
#: 03130600.xhp
msgctxt ""
"03130600.xhp\n"
+"par_id251546102545124\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03130610.xhp\" name=\"WaitUntil statement\">WaitUntil statement</link>"
+msgstr ""
+
+#: 03130610.xhp
+msgctxt ""
+"03130610.xhp\n"
+"tit\n"
+"help.text"
+msgid "WaitUntil Statement"
+msgstr ""
+
+#: 03130610.xhp
+msgctxt ""
+"03130610.xhp\n"
+"bm_id3154136\n"
+"help.text"
+msgid "<bookmark_value>WaitUntil statement</bookmark_value>"
+msgstr ""
+
+#: 03130610.xhp
+msgctxt ""
+"03130610.xhp\n"
+"hd_id3154136\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03130610.xhp\" name=\"WaitUntil Statement\">WaitUntil Statement</link>"
+msgstr ""
+
+#: 03130610.xhp
+msgctxt ""
+"03130610.xhp\n"
+"par_id3149236\n"
+"help.text"
+msgid "Interrupts the program execution until the time specified."
+msgstr ""
+
+#: 03130610.xhp
+msgctxt ""
+"03130610.xhp\n"
+"par_id3150669\n"
+"help.text"
+msgid "WaitUntil Time"
+msgstr ""
+
+#: 03130610.xhp
+msgctxt ""
+"03130610.xhp\n"
"par_id3154924\n"
"help.text"
-msgid "<emph>millisec:</emph> Numeric expression that contains the amount of time (in milliseconds) to wait before the program is executed."
+msgid "<emph>Time</emph>: A Date and Time expression that contains the date and time to wait before the program is executed."
msgstr ""
-#: 03130600.xhp
+#: 03130610.xhp
msgctxt ""
-"03130600.xhp\n"
-"hd_id3150541\n"
+"03130610.xhp\n"
+"par_id161546104675066\n"
"help.text"
-msgid "Example:"
-msgstr "Piemērs:"
+msgid "REM Wait until 6:00 PM then call MyMacro."
+msgstr ""
-#: 03130600.xhp
+#: 03130610.xhp
msgctxt ""
-"03130600.xhp\n"
-"par_id3156214\n"
+"03130610.xhp\n"
+"par_id1001546104650052\n"
"help.text"
-msgid "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
+msgid "REM If after 6:00 PM, exit."
+msgstr ""
+
+#: 03130610.xhp
+msgctxt ""
+"03130610.xhp\n"
+"par_id251546102545124\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03130600.xhp\" name=\"Wait statement\">Wait statement</link>"
msgstr ""
#: 03130700.xhp
@@ -32797,7 +32741,7 @@ msgctxt ""
"03132100.xhp\n"
"hd_id3155310\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03132100.xhp\" name=\"GetGuiType Function\">GetGuiType Function</link>"
+msgid "<variable id=\"getguitype2\"><link href=\"text/sbasic/shared/03132100.xhp\" name=\"GetGuiType Function\">GetGuiType Function</link></variable>"
msgstr ""
#: 03132100.xhp
@@ -35013,7 +34957,7 @@ msgctxt ""
"03170010.xhp\n"
"par_id631542195798758\n"
"help.text"
-msgid "<emph>numDigitsAfterDecimal</emph>: Optional. A numeric value specifying the number of digits that should be displayed after the decimal. If omitted, it defaults to the value -1, meaning that the default settings for user interface locale should be used."
+msgid "<emph>numDigitsAfterDecimal</emph>: Optional. A numeric value specifying the number of digits that should be displayed after the decimal. If omitted, it defaults to the value -1, meaning that the default settings for user interface locale should be used."
msgstr ""
#: 03170010.xhp
@@ -35053,7 +34997,7 @@ msgctxt ""
"03170010.xhp\n"
"par_id311542201637647\n"
"help.text"
-msgid "<emph>useParensForNegativeNumbers</emph>: Optional. A <link href=\"text/sbasic/shared/03040000.xhp#addvbaconstants\" name=\"vbtristate\">vbTriState</link> enumeration value specifying whether negative numbers should be encased in parenthesis."
+msgid "<emph>useParensForNegativeNumbers</emph>: Optional. A <link href=\"text/sbasic/shared/03040000.xhp#addvbaconstants\" name=\"vbtristate\">vbTriState</link> enumeration value specifying whether negative numbers should be encased in parenthesis."
msgstr ""
#: 03170010.xhp
@@ -35085,7 +35029,7 @@ msgctxt ""
"03170010.xhp\n"
"par_id531542201968815\n"
"help.text"
-msgid "<emph>groupDigits</emph>: Optional. A <link href=\"text/sbasic/shared/03040000.xhp#addvbaconstants\" name=\"vbtristate\">vbTriState</link> enumeration value specifying the number should be grouped (into thousands, etc.), using the group delimiter that is specified on the system's regional settings."
+msgid "<emph>groupDigits</emph>: Optional. A <link href=\"text/sbasic/shared/03040000.xhp#addvbaconstants\" name=\"vbtristate\">vbTriState</link> enumeration value specifying the number should be grouped (into thousands, etc.), using the group delimiter that is specified on the system's regional settings."
msgstr ""
#: 03170010.xhp
@@ -35544,6 +35488,206 @@ msgctxt ""
msgid "<ahelp hid=\"SFX2_LISTBOX_RID_SFX_TP_MACROASSIGN_LB_SCRIPTTYPE\">Select the macro that you want to assign.</ahelp>"
msgstr ""
+#: GetPathSeparator.xhp
+msgctxt ""
+"GetPathSeparator.xhp\n"
+"tit\n"
+"help.text"
+msgid "GetPathSeparator function"
+msgstr ""
+
+#: GetPathSeparator.xhp
+msgctxt ""
+"GetPathSeparator.xhp\n"
+"N0001\n"
+"help.text"
+msgid "<bookmark_value>GetPathSeparator function</bookmark_value>"
+msgstr ""
+
+#: GetPathSeparator.xhp
+msgctxt ""
+"GetPathSeparator.xhp\n"
+"N0002\n"
+"help.text"
+msgid "<variable id=\"getpathseparator01\"><link href=\"text/sbasic/shared/GetPathSeparator.xhp\" name=\"GetPathSeparator\">GetPathSeparator Function</link></variable>"
+msgstr ""
+
+#: GetPathSeparator.xhp
+msgctxt ""
+"GetPathSeparator.xhp\n"
+"N0003\n"
+"help.text"
+msgid "Returns the operating system-dependent directory separator used to specify file paths."
+msgstr ""
+
+#: GetPathSeparator.xhp
+msgctxt ""
+"GetPathSeparator.xhp\n"
+"N0008\n"
+"help.text"
+msgid "\"/\" UNIX, including MacOS"
+msgstr ""
+
+#: GetPathSeparator.xhp
+msgctxt ""
+"GetPathSeparator.xhp\n"
+"N0010\n"
+"help.text"
+msgid "None."
+msgstr ""
+
+#: GetPathSeparator.xhp
+msgctxt ""
+"GetPathSeparator.xhp\n"
+"N0017\n"
+"help.text"
+msgid "It is recommended to use:"
+msgstr ""
+
+#: GetPathSeparator.xhp
+msgctxt ""
+"GetPathSeparator.xhp\n"
+"N0018\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03120313.xhp\" name=\"external\">ConvertFromURL</link> function to convert a file URL to a system file name."
+msgstr ""
+
+#: GetPathSeparator.xhp
+msgctxt ""
+"GetPathSeparator.xhp\n"
+"N0019\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03120312.xhp\" name=\"external\">ConvertToURL</link> function to convert a system file name to a file URL."
+msgstr ""
+
+#: GetPathSeparator.xhp
+msgctxt ""
+"GetPathSeparator.xhp\n"
+"N0020\n"
+"help.text"
+msgid "See also <link href=\"text/sbasic/shared/00000002.xhp\" name=\"external\">URL Notation</link>"
+msgstr ""
+
+#: classmodule.xhp
+msgctxt ""
+"classmodule.xhp\n"
+"tit\n"
+"help.text"
+msgid "Option ClassModule"
+msgstr ""
+
+#: classmodule.xhp
+msgctxt ""
+"classmodule.xhp\n"
+"N0082\n"
+"help.text"
+msgid "<bookmark_value>Option ClassModule</bookmark_value>"
+msgstr ""
+
+#: classmodule.xhp
+msgctxt ""
+"classmodule.xhp\n"
+"N0083\n"
+"help.text"
+msgid "<variable id=\"classmodulestatement\"><link href=\"text/sbasic/shared/classmodule.xhp\" name=\"option classmodule\">Option ClassModule Statement</link></variable>"
+msgstr ""
+
+#: classmodule.xhp
+msgctxt ""
+"classmodule.xhp\n"
+"N0084\n"
+"help.text"
+msgid "Specifies that the module is a class module that contains members, properties, procedures and functions."
+msgstr ""
+
+#: classmodule.xhp
+msgctxt ""
+"classmodule.xhp\n"
+"N0089\n"
+"help.text"
+msgid "This statement must be used jointly with <literal>Option Compatible</literal> statement or <literal>Option VBASupport 1</literal>, the former is enabling VBA compatibility mode, while the latter is enforcing VBA support on top of compatibility."
+msgstr ""
+
+#: classmodule.xhp
+msgctxt ""
+"classmodule.xhp\n"
+"N0086\n"
+"help.text"
+msgid "Option ClassModule"
+msgstr ""
+
+#: classmodule.xhp
+msgctxt ""
+"classmodule.xhp\n"
+"N0095\n"
+"help.text"
+msgid "' Optional members go here"
+msgstr ""
+
+#: classmodule.xhp
+msgctxt ""
+"classmodule.xhp\n"
+"N0098\n"
+"help.text"
+msgid "' Optional construction code goes here"
+msgstr ""
+
+#: classmodule.xhp
+msgctxt ""
+"classmodule.xhp\n"
+"N0099\n"
+"help.text"
+msgid "End Sub ' Constructor"
+msgstr ""
+
+#: classmodule.xhp
+msgctxt ""
+"classmodule.xhp\n"
+"N0101\n"
+"help.text"
+msgid "' Optional destruction code goes here"
+msgstr ""
+
+#: classmodule.xhp
+msgctxt ""
+"classmodule.xhp\n"
+"N0102\n"
+"help.text"
+msgid "End Sub ' Destructor"
+msgstr ""
+
+#: classmodule.xhp
+msgctxt ""
+"classmodule.xhp\n"
+"N0104\n"
+"help.text"
+msgid "' Properties go here."
+msgstr ""
+
+#: classmodule.xhp
+msgctxt ""
+"classmodule.xhp\n"
+"N0106\n"
+"help.text"
+msgid "' Procedures & functions go here."
+msgstr ""
+
+#: classmodule.xhp
+msgctxt ""
+"classmodule.xhp\n"
+"N0108\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/python/python_platform.xhp\">Identifying the Operating System</link> and <link href=\"text/sbasic/python/python_session.xhp\">Getting Session Information</link> for class module simple examples."
+msgstr ""
+
+#: classmodule.xhp
+msgctxt ""
+"classmodule.xhp\n"
+"N0109\n"
+"help.text"
+msgid "Multiple thorough class examples are available from <link href=\"text/sbasic/guide/access2base.xhp\">Access2Base shared Basic library</link>."
+msgstr ""
+
#: code-stubs.xhp
msgctxt ""
"code-stubs.xhp\n"
@@ -35552,6 +35696,294 @@ msgctxt ""
msgid "BasicCodeStubs"
msgstr ""
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"tit\n"
+"help.text"
+msgid "Option Compatible"
+msgstr ""
+
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0103\n"
+"help.text"
+msgid "<bookmark_value>Option Compatible</bookmark_value> <bookmark_value>CompatibilityMode</bookmark_value> <bookmark_value>VBA compatibility</bookmark_value>"
+msgstr ""
+
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0104\n"
+"help.text"
+msgid "<variable id=\"compatiblestatement\"><link href=\"text/sbasic/shared/compatible.xhp\" name=\"compatible\">Option Compatible Statement</link></variable>"
+msgstr ""
+
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0106\n"
+"help.text"
+msgid "<literal>Option Compatible</literal> turns on the VBA-compatible Basic compiler mode at the module level. The function <literal>CompatibilityMode()</literal> controls runtime mode and affects all code executed after setting or resetting the mode."
+msgstr ""
+
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0107\n"
+"help.text"
+msgid "This option may affect or assist in the following situations:"
+msgstr ""
+
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0108\n"
+"help.text"
+msgid "Allow special characters as identifiers."
+msgstr ""
+
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0109\n"
+"help.text"
+msgid "Create constants including non-printable characters."
+msgstr ""
+
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0110\n"
+"help.text"
+msgid "Support <literal>Private</literal>/<literal>Public</literal> keywords for procedures."
+msgstr ""
+
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0111\n"
+"help.text"
+msgid "Compulsory <literal>Set</literal> statement for objects."
+msgstr ""
+
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0112\n"
+"help.text"
+msgid "Default values for optional parameters in procedures."
+msgstr ""
+
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0113\n"
+"help.text"
+msgid "Named arguments when multiple optional parameters exist."
+msgstr ""
+
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0114\n"
+"help.text"
+msgid "Preload of %PRODUCTNAME Basic libraries"
+msgstr ""
+
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0115\n"
+"help.text"
+msgid "<literal>Option Compatible</literal> is required when coding class modules."
+msgstr ""
+
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0118\n"
+"help.text"
+msgid "<variable id=\"compatibilitymodestatement\"><link href=\"text/sbasic/shared/compatible.xhp\" name=\"CompatibilityMode\">CompatibilityMode() Function</link></variable>"
+msgstr ""
+
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0120\n"
+"help.text"
+msgid "<literal>CompatibilityMode()</literal> function is controlling runtime mode and affects all code executed after setting or resetting the mode. <literal>Option Compatible</literal> turns on VBA compatibility at module level for the %PRODUCTNAME Basic compiler."
+msgstr ""
+
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0119\n"
+"help.text"
+msgid "Use this feature with caution, limit it to document conversion situations for example."
+msgstr ""
+
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0121\n"
+"help.text"
+msgid "This function may affect or help in the following situations:"
+msgstr ""
+
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0122\n"
+"help.text"
+msgid "Creating enumerations with Enum statement"
+msgstr ""
+
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0123\n"
+"help.text"
+msgid "Updating Dir execution conditions"
+msgstr ""
+
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0124\n"
+"help.text"
+msgid "Running RmDir command in VBA mode"
+msgstr ""
+
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0125\n"
+"help.text"
+msgid "Changing behaviour of Basic Dir command"
+msgstr ""
+
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0126\n"
+"help.text"
+msgid "<literal>CompatibilityMode()</literal> function may be necessary when resorting to <literal>Option Compatible</literal> or <literal>Option VBASupport</literal> compiler modes."
+msgstr ""
+
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0129\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/python/python_platform.xhp\">Identifying the Operating System</link> and <link href=\"text/sbasic/python/python_session.xhp\">Getting Session Information</link> for <literal>Option Compatible</literal> simple examples, or <link href=\"text/sbasic/guide/access2base.xhp\">Access2Base shared Basic library</link> for other class examples making use of <literal>Option Compatible</literal> compiler mode."
+msgstr ""
+
+#: compatible.xhp
+msgctxt ""
+"compatible.xhp\n"
+"N0131\n"
+"help.text"
+msgid "Variables scope modification in <link href=\"text/sbasic/shared/01020300.xhp\">Using Procedures and Functions</link> with <literal>CompatibilityMode()</literal> function."
+msgstr ""
+
+#: enum.xhp
+msgctxt ""
+"enum.xhp\n"
+"tit\n"
+"help.text"
+msgid "Enum Statement"
+msgstr ""
+
+#: enum.xhp
+msgctxt ""
+"enum.xhp\n"
+"N0001\n"
+"help.text"
+msgid "<bookmark_value>Enum statement</bookmark_value> <bookmark_value>constant groups</bookmark_value> <bookmark_value>enumerations</bookmark_value>"
+msgstr ""
+
+#: enum.xhp
+msgctxt ""
+"enum.xhp\n"
+"hd_id221543446540070\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/enum.xhp\" name=\"command_name\">Enum Statement [VBA]</link>"
+msgstr ""
+
+#: enum.xhp
+msgctxt ""
+"enum.xhp\n"
+"N0003\n"
+"help.text"
+msgid "Define enumerations or non UNO constant groups. An enumeration is a value list that facilitates programming and eases code logic review."
+msgstr ""
+
+#: enum.xhp
+msgctxt ""
+"enum.xhp\n"
+"N0006\n"
+"help.text"
+msgid "Parameters:"
+msgstr ""
+
+#: enum.xhp
+msgctxt ""
+"enum.xhp\n"
+"N0007\n"
+"help.text"
+msgid "Within a given enumeration, fit together values that logically relate to one another."
+msgstr ""
+
+#: enum.xhp
+msgctxt ""
+"enum.xhp\n"
+"N0030\n"
+"help.text"
+msgid "Enumerated values are rendered to <emph>Long</emph> datatype. Basic functions are public accessors to enumerations. Enumeration names and value names must be unique within a library and across modules."
+msgstr ""
+
+#: enum.xhp
+msgctxt ""
+"enum.xhp\n"
+"N0036\n"
+"help.text"
+msgid "Usage:"
+msgstr "Lietojums:"
+
+#: enum.xhp
+msgctxt ""
+"enum.xhp\n"
+"N0037\n"
+"help.text"
+msgid "Display WindowManager grouped constant values:"
+msgstr ""
+
+#: enum.xhp
+msgctxt ""
+"enum.xhp\n"
+"N0051\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03100700.xhp\" name=\"const\">Const</link> statement, <link href=\"text/sbasic/shared/01020100.xhp\" name=\"external\">constants</link>"
+msgstr ""
+
+#: enum.xhp
+msgctxt ""
+"enum.xhp\n"
+"N0053\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03103350.xhp\" name=\"Option VBASupport\">Option VBASupport</link> statement"
+msgstr ""
+
+#: enum.xhp
+msgctxt ""
+"enum.xhp\n"
+"N0061\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With\">With</link> statement"
+msgstr ""
+
#: keys.xhp
msgctxt ""
"keys.xhp\n"
@@ -35803,6 +36235,14 @@ msgstr ""
#: main0601.xhp
msgctxt ""
"main0601.xhp\n"
+"hd_id191548155077269\n"
+"help.text"
+msgid "Working with Macros in Python"
+msgstr ""
+
+#: main0601.xhp
+msgctxt ""
+"main0601.xhp\n"
"hd_id51528998827009\n"
"help.text"
msgid "%PRODUCTNAME internal Basic macro libraries"
@@ -35816,6 +36256,246 @@ msgctxt ""
msgid "%PRODUCTNAME installs a set of Basic macro libraries that can be accessed from your Basic macros."
msgstr ""
+#: partition.xhp
+msgctxt ""
+"partition.xhp\n"
+"tit\n"
+"help.text"
+msgid "Partition Function"
+msgstr ""
+
+#: partition.xhp
+msgctxt ""
+"partition.xhp\n"
+"bm_id31548421805896\n"
+"help.text"
+msgid "<bookmark_value>Partition Function</bookmark_value>"
+msgstr ""
+
+#: partition.xhp
+msgctxt ""
+"partition.xhp\n"
+"hd_id171548419512929\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/partition.xhp\" name=\"Partition function\">Partition Function [VBA]</link>"
+msgstr ""
+
+#: partition.xhp
+msgctxt ""
+"partition.xhp\n"
+"par_id461548419700445\n"
+"help.text"
+msgid "Returns a string indicating where a number occurs within a calculated series of ranges."
+msgstr ""
+
+#: partition.xhp
+msgctxt ""
+"partition.xhp\n"
+"par_id111548419647867\n"
+"help.text"
+msgid "Partition( Number, Start, End, Interval)"
+msgstr ""
+
+#: partition.xhp
+msgctxt ""
+"partition.xhp\n"
+"par_id481548420000538\n"
+"help.text"
+msgid "<emph>Number</emph>: Required. The number to determine the partition."
+msgstr ""
+
+#: partition.xhp
+msgctxt ""
+"partition.xhp\n"
+"par_id841548420006137\n"
+"help.text"
+msgid "<emph>Start</emph>: Required. An integer number defining the lower value of the range of numbers."
+msgstr ""
+
+#: partition.xhp
+msgctxt ""
+"partition.xhp\n"
+"par_id781548420012105\n"
+"help.text"
+msgid "<emph>End</emph>: Required. An integer number defining the highest value of the range."
+msgstr ""
+
+#: partition.xhp
+msgctxt ""
+"partition.xhp\n"
+"par_id371548420017250\n"
+"help.text"
+msgid "<emph>Interval</emph>: Required. An integer number that specifies the size of the partitions within the range of numbers (between Start and End)."
+msgstr ""
+
+#: partition.xhp
+msgctxt ""
+"partition.xhp\n"
+"par_id561548420541509\n"
+"help.text"
+msgid "print \"20:24 the number 20 occurs in the range: \" & retStr"
+msgstr ""
+
+#: partition.xhp
+msgctxt ""
+"partition.xhp\n"
+"par_id161548420558523\n"
+"help.text"
+msgid "print \" 20: 20 the number 20 occurs in the range: \" & retStr"
+msgstr ""
+
+#: partition.xhp
+msgctxt ""
+"partition.xhp\n"
+"par_id561548420579525\n"
+"help.text"
+msgid "print \"100: the number 120 occurs in the range: \" & retStr"
+msgstr ""
+
+#: partition.xhp
+msgctxt ""
+"partition.xhp\n"
+"par_id921548420596118\n"
+"help.text"
+msgid "print \" : -1 the number -5 occurs in the range: \" & retStr"
+msgstr ""
+
+#: partition.xhp
+msgctxt ""
+"partition.xhp\n"
+"par_id861548420616153\n"
+"help.text"
+msgid "print \" 2: 3 the number 2 occurs in the range: \" & retStr"
+msgstr ""
+
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"tit\n"
+"help.text"
+msgid "Replace Function"
+msgstr ""
+
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"bm_id721552551162491\n"
+"help.text"
+msgid "<bookmark_value>Replace function</bookmark_value>"
+msgstr ""
+
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"hd_id781552551013521\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/replace.xhp\" name=\"Replace Function\">Replace Function</link>"
+msgstr ""
+
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"par_id291552551013522\n"
+"help.text"
+msgid "Replaces some string by another."
+msgstr ""
+
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"par_id931552552227310\n"
+"help.text"
+msgid "Replace (Text As String, SearchStr As String, ReplStr As String [, Start As Long [, Count as long [, Compare As Boolean]]]"
+msgstr ""
+
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"par_id911552552252024\n"
+"help.text"
+msgid "String"
+msgstr ""
+
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"par_id721552552263062\n"
+"help.text"
+msgid "<emph>Text:</emph> Any string expression that you want to modify."
+msgstr ""
+
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"par_id901552552269836\n"
+"help.text"
+msgid "<emph>SearchStr:</emph> Any string expression that shall be searched for."
+msgstr ""
+
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"par_id791552552275383\n"
+"help.text"
+msgid "<emph>ReplStr:</emph> Any string expression that shall replace the found search string."
+msgstr ""
+
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"par_id111552552283060\n"
+"help.text"
+msgid "<emph>Start:</emph> Numeric expression that indicates the character position within the string where the search shall begin. The maximum allowed value is 65535."
+msgstr ""
+
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"par_id921552552289833\n"
+"help.text"
+msgid "<emph>Count:</emph> The maximal number of times the replace shall be performed."
+msgstr ""
+
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"par_id891552552302894\n"
+"help.text"
+msgid "<emph>Compare:</emph> Optional boolean expression that defines the type of comparison. The value of this parameter can be TRUE or FALSE. The default value of TRUE specifies a text comparison that is not case-sensitive. The value of FALSE specifies a binary comparison that is case-sensitive. You can as well use 0 instead of FALSE or 1 instead of TRUE."
+msgstr ""
+
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"par_id991552552420717\n"
+"help.text"
+msgid "msgbox replace (\"aBbcnnbnn\", \"b\", \"$\", 1, 1, FALSE)'returns \"aB$cnnbnn\""
+msgstr ""
+
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"par_id321552552440672\n"
+"help.text"
+msgid "REM meaning: \"b\" should be replaced, but"
+msgstr ""
+
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"par_id571552552467647\n"
+"help.text"
+msgid "REM * only when lowercase (parameter 6), hence second occurrence of \"b\""
+msgstr ""
+
+#: replace.xhp
+msgctxt ""
+"replace.xhp\n"
+"par_id71552552474769\n"
+"help.text"
+msgid "REM * only first (respecting case) occurrence (parameter 5)"
+msgstr ""
+
#: special_vba_func.xhp
msgctxt ""
"special_vba_func.xhp\n"
@@ -35837,7 +36517,7 @@ msgctxt ""
"special_vba_func.xhp\n"
"hd_id051820170313205718\n"
"help.text"
-msgid "<variable id=\"exclusivevba\"><link href=\"text/sbasic/shared/special_vba_func.xhp\">Exclusive VBA functions</link></variable>"
+msgid "<variable id=\"exclusivevba\"><link href=\"text/sbasic/shared/special_vba_func.xhp\">Exclusive VBA Functions and Statements</link></variable>"
msgstr ""
#: special_vba_func.xhp
@@ -35845,7 +36525,7 @@ msgctxt ""
"special_vba_func.xhp\n"
"par_id051820170314436068\n"
"help.text"
-msgid "<ahelp hid=\".\">%PRODUCTNAME Basic adds this set of functions when VBA support is enabled</ahelp>"
+msgid "<ahelp hid=\".\">%PRODUCTNAME Basic adds this set of functions when VBA support is enabled.</ahelp>"
msgstr ""
#: special_vba_func.xhp
@@ -35859,6 +36539,22 @@ msgstr ""
#: special_vba_func.xhp
msgctxt ""
"special_vba_func.xhp\n"
+"bm_id71543455697570\n"
+"help.text"
+msgid "<bookmark_value>VBA Statements</bookmark_value>"
+msgstr ""
+
+#: special_vba_func.xhp
+msgctxt ""
+"special_vba_func.xhp\n"
+"hd_id31543446449360\n"
+"help.text"
+msgid "VBA Statements"
+msgstr ""
+
+#: special_vba_func.xhp
+msgctxt ""
+"special_vba_func.xhp\n"
"bm_id05192017035621676\n"
"help.text"
msgid "<bookmark_value>VBA Functions;Text Functions</bookmark_value>"
@@ -35893,7 +36589,7 @@ msgctxt ""
"special_vba_func.xhp\n"
"bm_id051920170358102074\n"
"help.text"
-msgid "<bookmark_value>VBA Functions;Date and Time Functions</bookmark_value>"
+msgid "<bookmark_value>VBA Functions;Date and Time Functions</bookmark_value>"
msgstr ""
#: special_vba_func.xhp
@@ -35925,7 +36621,7 @@ msgctxt ""
"special_vba_func.xhp\n"
"bm_id051920170358346963\n"
"help.text"
-msgid "<bookmark_value>VBA Functions;Mathematical Functions</bookmark_value> <bookmark_value>VBA Functions;formatting numbers</bookmark_value>"
+msgid "<bookmark_value>VBA Functions;Mathematical Functions</bookmark_value> <bookmark_value>VBA Functions;formatting numbers</bookmark_value> <bookmark_value>VBA Functions;partitioning numbers</bookmark_value>"
msgstr ""
#: special_vba_func.xhp
@@ -35952,6 +36648,78 @@ msgctxt ""
msgid "Object Functions"
msgstr ""
+#: stardesktop.xhp
+msgctxt ""
+"stardesktop.xhp\n"
+"tit\n"
+"help.text"
+msgid "StarDesktop"
+msgstr ""
+
+#: stardesktop.xhp
+msgctxt ""
+"stardesktop.xhp\n"
+"N0089\n"
+"help.text"
+msgid "<bookmark_value>StarDesktop</bookmark_value>"
+msgstr ""
+
+#: stardesktop.xhp
+msgctxt ""
+"stardesktop.xhp\n"
+"hd_id401544551916353\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/stardesktop.xhp\" name=\"StarDesktop\">StarDesktop</link>"
+msgstr ""
+
+#: stardesktop.xhp
+msgctxt ""
+"stardesktop.xhp\n"
+"N0091\n"
+"help.text"
+msgid "The StarDesktop object represents %PRODUCTNAME application. Some routines or user interface objects such as current window can be used via StarDesktop."
+msgstr ""
+
+#: stardesktop.xhp
+msgctxt ""
+"stardesktop.xhp\n"
+"N0092\n"
+"help.text"
+msgid "Example:"
+msgstr ""
+
+#: uno_objects.xhp
+msgctxt ""
+"uno_objects.xhp\n"
+"tit\n"
+"help.text"
+msgid "UNO Objects"
+msgstr ""
+
+#: uno_objects.xhp
+msgctxt ""
+"uno_objects.xhp\n"
+"bm_id171544787218331\n"
+"help.text"
+msgid "<bookmark_value>programming;UNO objects</bookmark_value> <bookmark_value>UNO objects</bookmark_value> <bookmark_value>UNO functions</bookmark_value>"
+msgstr ""
+
+#: uno_objects.xhp
+msgctxt ""
+"uno_objects.xhp\n"
+"hd_id3156027\n"
+"help.text"
+msgid "UNO Objects, Functions and Services"
+msgstr ""
+
+#: uno_objects.xhp
+msgctxt ""
+"uno_objects.xhp\n"
+"par_id3153312\n"
+"help.text"
+msgid "Functions, objects and services of Unified Network Objects (UNO)."
+msgstr ""
+
#: vbasupport.xhp
msgctxt ""
"vbasupport.xhp\n"
diff --git a/source/lv/helpcontent2/source/text/sbasic/shared/02.po b/source/lv/helpcontent2/source/text/sbasic/shared/02.po
index ddcda0dfa43..0846621807e 100644
--- a/source/lv/helpcontent2/source/text/sbasic/shared/02.po
+++ b/source/lv/helpcontent2/source/text/sbasic/shared/02.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-12 14:35+0200\n"
-"PO-Revision-Date: 2016-06-19 11:59+0000\n"
-"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
+"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"PO-Revision-Date: 2017-05-12 15:43+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lv\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1466337599.000000\n"
+"X-POOTLE-MTIME: 1494603804.000000\n"
#: 11010000.xhp
msgctxt ""
@@ -1599,3 +1599,51 @@ msgctxt ""
"help.text"
msgid "<ahelp hid=\".\">Adds a tree control that can show a hierarchical list. You can populate the list by your program, using API calls (XtreeControl).</ahelp>"
msgstr ""
+
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"hd_id11904\n"
+"help.text"
+msgid "Table Control"
+msgstr ""
+
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id7511524\n"
+"help.text"
+msgid "<image id=\"Graphic3\" src=\"cmd/sc_insertgridcontrol.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_\">Table control icon</alt></image>"
+msgstr ""
+
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id9961854\n"
+"help.text"
+msgid "<ahelp hid=\".\">Adds a table control that can show a table data. You can populate the data by your program, using API calls.</ahelp>"
+msgstr ""
+
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"hd_id11905\n"
+"help.text"
+msgid "Hyperlink Control"
+msgstr ""
+
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id7511525\n"
+"help.text"
+msgid "<image id=\"Graphic3\" src=\"cmd/sc_inserthyperlinkcontrol.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_\">Insert hyperlink control icon</alt></image>"
+msgstr ""
+
+#: 20000000.xhp
+msgctxt ""
+"20000000.xhp\n"
+"par_id9961856\n"
+"help.text"
+msgid "<ahelp hid=\".\">Adds a hyperlink control that can open an address in web browser.</ahelp>"
+msgstr ""
diff --git a/source/lv/helpcontent2/source/text/sbasic/shared/03.po b/source/lv/helpcontent2/source/text/sbasic/shared/03.po
index 79de894f0c7..ccaaf858f7d 100644
--- a/source/lv/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/lv/helpcontent2/source/text/sbasic/shared/03.po
@@ -3,15 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-07-12 15:02+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"PO-Revision-Date: 2018-07-12 14:33+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: lv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1531405994.000000\n"
#: lib_depot.xhp
msgctxt ""
@@ -242,7 +245,7 @@ msgctxt ""
"lib_tools.xhp\n"
"hd_id371529000826947\n"
"help.text"
-msgid "<item type=\"literal\">Debug</item> Module"
+msgid "<item type=\"literal\">Debug</item> Module"
msgstr ""
#: lib_tools.xhp
@@ -250,7 +253,7 @@ msgctxt ""
"lib_tools.xhp\n"
"par_id441529064369519\n"
"help.text"
-msgid "Functions and subroutines for debugging Basic macros"
+msgid "Functions and subroutines for debugging Basic macros."
msgstr ""
#: lib_tools.xhp
@@ -282,7 +285,7 @@ msgctxt ""
"lib_tools.xhp\n"
"hd_id11529005753099\n"
"help.text"
-msgid "<item type=\"literal\">ListBox</item> Module"
+msgid "<item type=\"literal\">ListBox</item> Module"
msgstr ""
#: lib_tools.xhp
@@ -306,7 +309,7 @@ msgctxt ""
"lib_tools.xhp\n"
"hd_id341529005758494\n"
"help.text"
-msgid "<item type=\"literal\">Misc</item> Module"
+msgid "<item type=\"literal\">Misc</item> Module"
msgstr ""
#: lib_tools.xhp
@@ -330,7 +333,7 @@ msgctxt ""
"lib_tools.xhp\n"
"hd_id451529005764422\n"
"help.text"
-msgid "<item type=\"literal\">ModuleControls</item> Module"
+msgid "<item type=\"literal\">ModuleControls</item> Module"
msgstr ""
#: lib_tools.xhp
diff --git a/source/lv/helpcontent2/source/text/scalc/00.po b/source/lv/helpcontent2/source/text/scalc/00.po
index eb29380091b..273fd4bceb3 100644
--- a/source/lv/helpcontent2/source/text/scalc/00.po
+++ b/source/lv/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: 2018-12-17 16:28+0100\n"
+"POT-Creation-Date: 2019-04-08 14:23+0200\n"
"PO-Revision-Date: 2018-11-14 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -269,7 +269,7 @@ msgctxt ""
"00000404.xhp\n"
"par_id3149784\n"
"help.text"
-msgid "Choose <emph>Insert - Cells</emph>."
+msgid "Choose <emph>Sheet - Insert Cells</emph>."
msgstr ""
#: 00000404.xhp
@@ -277,7 +277,7 @@ msgctxt ""
"00000404.xhp\n"
"par_id3154514\n"
"help.text"
-msgid "Open <emph>Insert Cells</emph> toolbar from <emph>Tools</emph> bar:"
+msgid "Choose <emph>View - Toolbars</emph> and select <emph>Insert Cells</emph> toolbar:"
msgstr ""
#: 00000404.xhp
@@ -525,7 +525,7 @@ msgctxt ""
"00000404.xhp\n"
"par_id3153250\n"
"help.text"
-msgid "<variable id=\"einamen\">Choose <emph>Insert - Named Ranges and Expressions</emph>.</variable>"
+msgid "<variable id=\"einamen\">Choose <emph>Insert - Named Range or Expression</emph>.</variable>"
msgstr ""
#: 00000404.xhp
@@ -805,7 +805,7 @@ msgctxt ""
"00000405.xhp\n"
"par_id3154618\n"
"help.text"
-msgid "<variable id=\"bedingte\">Choose <emph>Format - Conditional Formatting</emph>.</variable>"
+msgid "<variable id=\"bedingte\">Choose <emph>Format - Conditional</emph>.</variable>"
msgstr ""
#: 00000406.xhp
@@ -1003,6 +1003,14 @@ msgstr "F9"
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
+"par_id3146919a\n"
+"help.text"
+msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Formula</emph>."
+msgstr ""
+
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
"par_id3150941\n"
"help.text"
msgid "<variable id=\"exatmb\">Choose <emph>Data - Calculate - AutoCalculate</emph>.</variable>"
@@ -1157,7 +1165,7 @@ msgctxt ""
"00000412.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"dnftr\">Choose <emph>Data - Filter</emph>.</variable>"
+msgid "<variable id=\"dnftr\">Choose <emph>Data - More Filters</emph>.</variable>"
msgstr ""
#: 00000412.xhp
@@ -1528,6 +1536,22 @@ msgctxt ""
msgid "<variable id=\"grouping\">Choose <emph>Data - Group and Outline - Group</emph>.</variable>"
msgstr ""
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"tit\n"
+"help.text"
+msgid "Available since release"
+msgstr ""
+
+#: avail_release.xhp
+msgctxt ""
+"avail_release.xhp\n"
+"par_id631551701603518\n"
+"help.text"
+msgid "<variable id=\"release\">This function is available since %PRODUCTNAME </variable>"
+msgstr ""
+
#: sheet_menu.xhp
msgctxt ""
"sheet_menu.xhp\n"
diff --git a/source/lv/helpcontent2/source/text/scalc/01.po b/source/lv/helpcontent2/source/text/scalc/01.po
index f4c99994f60..1aa3cf43596 100644
--- a/source/lv/helpcontent2/source/text/scalc/01.po
+++ b/source/lv/helpcontent2/source/text/scalc/01.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-12-17 16:28+0100\n"
-"PO-Revision-Date: 2018-11-12 13:52+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"PO-Revision-Date: 2019-02-27 15:24+0000\n"
+"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lv\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1542030748.000000\n"
+"X-POOTLE-MTIME: 1551281057.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -3429,7 +3429,7 @@ msgctxt ""
"04060000.xhp\n"
"par_id8007446\n"
"help.text"
-msgid "You can download the complete ODFF (OpenDocument Format Formula) specification from the <link href=\"http://www.oasis-open.org/committees/documents.php?wg_abbrev=office-formula\">OASIS</link> web site."
+msgid "You can download the complete ODFF (OpenDocument Format Formula) specification from the <link href=\"https://docs.oasis-open.org/office/v1.2/OpenDocument-v1.2-part2.odt\"><emph>OASIS</emph></link> web site."
msgstr ""
#: 04060000.xhp
@@ -3485,7 +3485,7 @@ msgctxt ""
"04060000.xhp\n"
"par_id3149378\n"
"help.text"
-msgid "You can browse the full <link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">List of Categories and Functions</link>"
+msgid "You can browse the full <link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\"><emph>List of Categories and Functions</emph></link>."
msgstr ""
#: 04060000.xhp
@@ -3517,7 +3517,7 @@ msgctxt ""
"04060000.xhp\n"
"par_id3149566\n"
"help.text"
-msgid "<ahelp hid=\"formula/ui/formuladialog/array\">Specifies that the selected function is inserted into the selected cell range as an array formula. </ahelp> Array formulas operate on multiple cells. Each cell in the array contains the formula, not as a copy but as a common formula shared by all matrix cells."
+msgid "<ahelp hid=\"formula/ui/formuladialog/array\">Specifies that the selected function is inserted into the selected cell range as an array formula.</ahelp> Array formulas operate on multiple cells. Each cell in the array contains the formula, not as a copy but as a common formula shared by all matrix cells."
msgstr ""
#: 04060000.xhp
@@ -3525,7 +3525,7 @@ msgctxt ""
"04060000.xhp\n"
"par_id3155959\n"
"help.text"
-msgid "The <emph>Array</emph> option is identical to the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter command, which is used to enter and confirm formulas in the sheet. The formula is inserted as a matrix formula indicated by two braces { }."
+msgid "The <emph>Array</emph> option is identical to the <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline><emph>+Shift+Enter</emph> command, which is used to enter and confirm formulas in the sheet. The formula is inserted as a matrix formula indicated by two braces: <emph>{ }</emph>."
msgstr ""
#: 04060000.xhp
@@ -3549,7 +3549,7 @@ msgctxt ""
"04060000.xhp\n"
"par_id3145587\n"
"help.text"
-msgid "When you double-click a function, the argument input field(s) appear on the right side of the dialog. To select a cell reference as an argument, click directly into the cell, or drag across the required range on the sheet while holding down the mouse button. You can also enter numerical and other values or references directly into the corresponding fields in the dialog. When using <link href=\"text/scalc/01/04060102.xhp\" name=\"date entries\">date entries</link>, make sure you use the correct format. Click OK to insert the result into the spreadsheet."
+msgid "When you double-click a function, the argument input field(s) appear on the right side of the dialog. To select a cell reference as an argument, click directly into the cell, or drag across the required range on the sheet while holding down the mouse button. You can also enter numerical and other values or references directly into the corresponding fields in the dialog. When using <link href=\"text/scalc/01/04060102.xhp\" name=\"date entries\"><emph>date entries</emph></link>, make sure you use the correct format. Click <emph>OK</emph> to insert the result into the spreadsheet."
msgstr ""
#: 04060000.xhp
@@ -3565,7 +3565,7 @@ msgctxt ""
"04060000.xhp\n"
"par_id3155809\n"
"help.text"
-msgid "As soon you enter arguments in the function, the result is calculated. This preview informs you if the calculation can be carried out with the arguments given. If the arguments result in an error, the corresponding <link href=\"text/scalc/05/02140000.xhp\" name=\"error code\">error code</link> is displayed."
+msgid "As soon you enter arguments in the function, the result is calculated. This preview informs you if the calculation can be carried out with the arguments given. If the arguments result in an error, the corresponding <link href=\"text/scalc/05/02140000.xhp\" name=\"error code\"><emph>error code</emph></link> is displayed."
msgstr ""
#: 04060000.xhp
@@ -3677,7 +3677,7 @@ msgctxt ""
"04060000.xhp\n"
"par_id3149316\n"
"help.text"
-msgid "<ahelp hid=\"formula/ui/formuladialog/next\">Moves forward through the formula components in the formula window.</ahelp> This button can also be used to assign functions to the formula. If you select a function and click the <emph>Next </emph>button, the selection appears in the formula window."
+msgid "<ahelp hid=\"formula/ui/formuladialog/next\">Moves forward through the formula components in the formula window.</ahelp> This button can also be used to assign functions to the formula. If you select a function and click the <emph>Next</emph> button, the selection appears in the formula window."
msgstr ""
#: 04060000.xhp
@@ -5091,6 +5091,14 @@ msgstr ""
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
+"par_id651547654187646\n"
+"help.text"
+msgid "Time zone information is not used in Date and Time functions and cells."
+msgstr ""
+
+#: 04060102.xhp
+msgctxt ""
+"04060102.xhp\n"
"par_idN1067A\n"
"help.text"
msgid "Functions"
@@ -6349,7 +6357,7 @@ msgctxt ""
"04060103.xhp\n"
"bm_id3159147\n"
"help.text"
-msgid "<bookmark_value>annual net interest rates</bookmark_value> <bookmark_value>calculating; annual net interest rates</bookmark_value> <bookmark_value>net annual interest rates</bookmark_value> <bookmark_value>EFFECTIVE function</bookmark_value>"
+msgid "<bookmark_value>annual net interest rates</bookmark_value> <bookmark_value>calculating; annual net interest rates</bookmark_value> <bookmark_value>net annual interest rates</bookmark_value> <bookmark_value>EFFECT function</bookmark_value>"
msgstr ""
#: 04060103.xhp
@@ -6357,8 +6365,8 @@ msgctxt ""
"04060103.xhp\n"
"hd_id3159147\n"
"help.text"
-msgid "EFFECTIVE"
-msgstr "EFFECTIVE"
+msgid "EFFECT"
+msgstr ""
#: 04060103.xhp
msgctxt ""
@@ -6381,7 +6389,7 @@ msgctxt ""
"04060103.xhp\n"
"par_id3148805\n"
"help.text"
-msgid "EFFECTIVE(Nom; P)"
+msgid "EFFECT(Nom; P)"
msgstr ""
#: 04060103.xhp
@@ -6413,7 +6421,7 @@ msgctxt ""
"04060103.xhp\n"
"par_id3150772\n"
"help.text"
-msgid "<item type=\"input\">=EFFECTIVE(9.75%;4)</item> = 10.11% The annual effective rate is therefore 10.11%."
+msgid "<item type=\"input\">=EFFECT(9.75%;4)</item> = 10.11% The annual effective rate is therefore 10.11%."
msgstr ""
#: 04060103.xhp
@@ -9885,7 +9893,7 @@ msgctxt ""
"04060106.xhp\n"
"par_id3154297\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARCTAN2\">Returns the inverse trigonometric tangent of the specified x and y coordinates.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_ARCTAN2\">Returns the angle (in radians) between the x-axis and a line from the origin to the point (NumberX|NumberY).</ahelp>"
msgstr ""
#: 04060106.xhp
@@ -9899,10 +9907,10 @@ msgstr "ATAN2(SkaitlisX; SkaitlisY)"
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
-"par_id3151168\n"
+"par_id3001800\n"
"help.text"
msgid "<emph>NumberX</emph> is the value of the x coordinate."
-msgstr "<emph>SkaitlisX</emph> ir x koordinātas vērtība."
+msgstr ""
#: 04060106.xhp
msgctxt ""
@@ -9915,17 +9923,17 @@ msgstr "<emph>SkaitlisY</emph> ir y koordinātas vērtība."
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
-"par_id5036164\n"
+"par_id5036168\n"
"help.text"
-msgid "ATAN2 returns the inverse trigonometric tangent, that is, the angle (in radians) between the x-axis and a line from point NumberX, NumberY to the origin. The angle returned is between -PI and PI."
+msgid "Programming languages have usually the opposite order of arguments for their atan2() function."
msgstr ""
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
-"par_id3001800\n"
+"par_id5036165\n"
"help.text"
-msgid "To return the angle in degrees, use the DEGREES function."
+msgid "ATAN2 returns the angle (in radians) between the x-axis and a line from the origin to the point (NumberX|NumberY)"
msgstr ""
#: 04060106.xhp
@@ -9933,7 +9941,15 @@ msgctxt ""
"04060106.xhp\n"
"par_id3154692\n"
"help.text"
-msgid "<item type=\"input\">=ATAN2(20;20)</item> returns 0.785398163397448 (PI/4 radians)."
+msgid "<item type=\"input\">=ATAN2(-5;9)</item> returns 2.07789 radians."
+msgstr ""
+
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id5036166\n"
+"help.text"
+msgid "To get the angle in degrees apply the DEGREES function to the result."
msgstr ""
#: 04060106.xhp
@@ -9941,7 +9957,39 @@ msgctxt ""
"04060106.xhp\n"
"par_id1477095\n"
"help.text"
-msgid "<item type=\"input\">=DEGREES(ATAN2(12.3;12.3))</item> returns 45. The tangent of 45 degrees is 1."
+msgid "<input>=DEGREES(ATAN2(12.3;12.3))</input> returns 45. The tangent of 45 degrees is 1."
+msgstr ""
+
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id5036167\n"
+"help.text"
+msgid "%PRODUCTNAME results 0 for ATAN2(0;0)."
+msgstr ""
+
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id5036169\n"
+"help.text"
+msgid "The function can be used in converting cartesian coordinates to polar coordinates."
+msgstr ""
+
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id5036170\n"
+"help.text"
+msgid "=DEGREES(ATAN2(-8;5)) returns φ = 147.9 degrees"
+msgstr ""
+
+#: 04060106.xhp
+msgctxt ""
+"04060106.xhp\n"
+"par_id5036171\n"
+"help.text"
+msgid "<image id=\"img_id3150758\" src=\"media/helpimg/scalc/coordinates-to-polar-01.svg\" width=\"2.5inch\" height=\"1.5inch\"><alt id=\"alt_id3150758\">Cartesian coordinates to polar coordinates example</alt></image>"
msgstr ""
#: 04060106.xhp
@@ -17917,7 +17965,7 @@ msgctxt ""
"04060109.xhp\n"
"par_id3153884\n"
"help.text"
-msgid "<emph>Array</emph> is the reference, which is to comprise at least two columns."
+msgid "<emph>Array</emph> is the reference, which is to comprise at least as many columns as the number passed in Index argument."
msgstr ""
#: 04060109.xhp
@@ -27197,7 +27245,7 @@ msgctxt ""
"04060118.xhp\n"
"par_id3150525\n"
"help.text"
-msgid "Calculation of the net present value for the above-mentioned five payments for a notional internal rate of return of 6%."
+msgid "Calculation of the net present value for the above-mentioned five payments for a national internal rate of return of 6%."
msgstr ""
#: 04060118.xhp
@@ -41285,8 +41333,8 @@ msgctxt ""
"05030300.xhp\n"
"par_id3148645\n"
"help.text"
-msgid "Select the rows or columns that you want to hide, and then choose <emph>Format - Row - Hide </emph>or<emph> Format - Column - Hide</emph>."
-msgstr "Atlasiet rindas vai kolonnas, kuras jūs vēlaties paslēpt, un tad izvēlieties <emph>Formatēt - Rinda - Slēpt </emph>vai <emph> Formatēt - Kolonna - Slēpt</emph>."
+msgid "Select the rows or columns that you want to hide, and then choose <emph>Format - Rows - Hide </emph>or<emph> Format - Columns - Hide</emph>."
+msgstr ""
#: 05030300.xhp
msgctxt ""
@@ -41325,8 +41373,8 @@ msgctxt ""
"05030300.xhp\n"
"par_id5532090\n"
"help.text"
-msgid "Choose <link href=\"text/scalc/01/05030400.xhp\" name=\"Format - Row/Column - Show\">Format - Row/Column - Show</link> or <link href=\"text/scalc/01/05050300.xhp\" name=\"Format - Sheet - Show\">Format - Sheet - Show</link>."
-msgstr "Izvēlieties <link href=\"text/scalc/01/05030400.xhp\" name=\"Formatēt - Rinda/Kolonna - Rādīt\">Formatēt - Rinda/Kolonna - Rādīt</link> vai <link href=\"text/scalc/01/05050300.xhp\" name=\"Formatēt - Loksne - Rādīt\">Formatēt - Loksne - Rādīt</link>."
+msgid "Choose <link href=\"text/scalc/01/05030400.xhp\" name=\"Format - Rows/Columns - Show\">Format - Rows/Columns - Show</link> or <link href=\"text/scalc/01/05050300.xhp\" name=\"Format - Sheet - Show\">Format - Sheet - Show</link>."
+msgstr ""
#: 05030400.xhp
msgctxt ""
@@ -41365,7 +41413,7 @@ msgctxt ""
"05030400.xhp\n"
"par_id3155131\n"
"help.text"
-msgid "To show a column or row, select the range of rows or columns containing the hidden elements, then choose <emph>Format - Row - Show</emph> or <emph>Format - Column - Show</emph>."
+msgid "To show a column or row, select the range of rows or columns containing the hidden elements, then choose <emph>Format - Rows - Show</emph> or <emph>Format - Columns - Show</emph>."
msgstr ""
#: 05030400.xhp
@@ -41373,7 +41421,7 @@ msgctxt ""
"05030400.xhp\n"
"par_id3155132\n"
"help.text"
-msgid "For example, to show the column B, click on the header of the column A, expand the selection to the column C, then chose <emph>Format - Column - Show</emph>. To show the column A previously hidden, click on the header of the column B, keep the mouse button pressed and drag on the left. The selected range displayed in the name area changes from B1:B1048576 to A1:B1048576. Choose <emph>Format - Column - Show</emph>. Proceed the same way with rows."
+msgid "For example, to show the column B, click on the header of the column A, expand the selection to the column C, then chose <emph>Format - Columns - Show</emph>. To show the column A previously hidden, click on the header of the column B, keep the mouse button pressed and drag on the left. The selected range displayed in the name area changes from B1:B1048576 to A1:B1048576. Choose <emph>Format - Columns - Show</emph>. Proceed the same way with rows."
msgstr ""
#: 05030400.xhp
@@ -41485,7 +41533,7 @@ msgctxt ""
"05040200.xhp\n"
"par_id3146120\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/optimalcolwidthdialog/default\">Defines the optimal column width in order to display the entire contents of the column.</ahelp> The additional spacing for the optimal column width is preset to 0.1 in."
+msgid "<ahelp hid=\"modules/scalc/ui/optimalcolwidthdialog/default\">Defines the optimal column width in order to display the entire contents of the column.</ahelp> The additional spacing for the optimal column width is preset to 2 mm."
msgstr ""
#: 05050000.xhp
@@ -43085,7 +43133,7 @@ msgctxt ""
"05120000.xhp\n"
"par_id31494133\n"
"help.text"
-msgid "If you select <emph>All cells</emph>, see Color Scale, Data Bar or Icon Set explanations below, depending on which visual representation the conditional formatting should be represented."
+msgid "If you select <emph>All cells</emph>, see Color Scale, Data Bar or Icon Set explanations below, depending on which visual representation the conditional formatting should be represented."
msgstr ""
#: 05120000.xhp
@@ -43133,7 +43181,7 @@ msgctxt ""
"05120000.xhp\n"
"par_id31494139\n"
"help.text"
-msgid "If you select <emph>Formula is</emph> as a reference, enter a cell reference. If the cell reference is a value other than zero, the condition matches."
+msgid "If you select <emph>Formula is</emph> as a reference, enter a cell reference. If the cell reference is a value other than zero, the condition matches."
msgstr ""
#: 05120000.xhp
@@ -43341,8 +43389,8 @@ msgctxt ""
"05120000.xhp\n"
"par_id31546818\n"
"help.text"
-msgid "Choose <emph>Format - Conditional Formatting - Manage</emph>"
-msgstr "Izvēlieties <emph>Formatēt - Formatēšana ar nosacījumu - Pārvaldīt</emph>"
+msgid "Choose <emph>Format - Conditional Formatting - Manage</emph>."
+msgstr ""
#: 05120000.xhp
msgctxt ""
@@ -44413,7 +44461,7 @@ msgctxt ""
"06070000.xhp\n"
"bm_id3145673\n"
"help.text"
-msgid "<bookmark_value>calculating; auto calculating sheets</bookmark_value><bookmark_value>recalculating;auto calculating sheets</bookmark_value><bookmark_value>AutoCalculate function in sheets</bookmark_value><bookmark_value>correcting sheets automatically</bookmark_value><bookmark_value>formulas;AutoCalculate function</bookmark_value><bookmark_value>cell contents;AutoCalculate function</bookmark_value>"
+msgid "<bookmark_value>calculating; auto calculating sheets</bookmark_value><bookmark_value>recalculate;auto calculating sheets</bookmark_value><bookmark_value>recalculating;auto calculating sheets</bookmark_value><bookmark_value>AutoCalculate function in sheets</bookmark_value><bookmark_value>correcting sheets automatically</bookmark_value><bookmark_value>formulas;AutoCalculate function</bookmark_value><bookmark_value>cell contents;AutoCalculate function</bookmark_value>"
msgstr ""
#: 06070000.xhp
@@ -44453,7 +44501,7 @@ msgctxt ""
"06080000.xhp\n"
"bm_id3157909\n"
"help.text"
-msgid "<bookmark_value>recalculating;all formulas in sheets</bookmark_value><bookmark_value>formulas; recalculating manually</bookmark_value><bookmark_value>cell contents; recalculating</bookmark_value>"
+msgid "<bookmark_value>recalculating;all formulas in sheets</bookmark_value><bookmark_value>recalculate;all formulas in sheets</bookmark_value><bookmark_value>formulas; recalculating manually</bookmark_value><bookmark_value>cell contents; recalculating</bookmark_value>"
msgstr ""
#: 06080000.xhp
@@ -44469,7 +44517,23 @@ msgctxt ""
"06080000.xhp\n"
"par_id3154758\n"
"help.text"
-msgid "<ahelp hid=\".uno:Calculate\">Recalculates all changed formulas. If AutoCalculate is enabled, the Recalculate command applies only to formulas like RAND or NOW.</ahelp>"
+msgid "<ahelp hid=\".uno:Calculate\">If AutoCalculate is disabled, the Recalculate command recalculates all (so-called dirty) formula cells that depend on changed cell content and their dependents, and formula cells containing volatile functions such as RAND() or NOW() and formula cells that depend on them.</ahelp>"
+msgstr ""
+
+#: 06080000.xhp
+msgctxt ""
+"06080000.xhp\n"
+"par_id3154759\n"
+"help.text"
+msgid "<ahelp hid=\".uno:Calculate\">If AutoCalculate is enabled, the Recalculate command applies only to formula cells containing volatile functions like RAND() or NOW() and formula cells that depend on them.</ahelp>"
+msgstr ""
+
+#: 06080000.xhp
+msgctxt ""
+"06080000.xhp\n"
+"par_id3154753\n"
+"help.text"
+msgid "<ahelp hid=\".uno:Calculate\">In either mode, with formula cell(s) selected pressing F9 recalculates the currently selected cells and formula cells that depend on them. This can be useful after reading documents with recalculation disabled and individual cells need recalculation.</ahelp>"
msgstr ""
#: 06080000.xhp
@@ -44485,7 +44549,15 @@ msgctxt ""
"06080000.xhp\n"
"par_id3150793\n"
"help.text"
-msgid "After the document has been recalculated, the display is refreshed. All charts are also refreshed."
+msgid "Recalculation options are, Recalculation on File Load, with values:"
+msgstr ""
+
+#: 06080000.xhp
+msgctxt ""
+"06080000.xhp\n"
+"par_id3150795\n"
+"help.text"
+msgid "Always recalculate, Never recalculate (default option), Prompt user."
msgstr ""
#: 06080000.xhp
@@ -44493,7 +44565,15 @@ msgctxt ""
"06080000.xhp\n"
"par_id315475855\n"
"help.text"
-msgid "Volatile (delivering different results on each call) Add-In functions currently cannot respond to the Recalculate command or F9. Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 to recalculate all formulas, including the Add-In functions."
+msgid "Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 to recalculate all formulas in the document, including Add-In functions. The hard recalculation correctly recalculates all formula cells."
+msgstr ""
+
+#: 06080000.xhp
+msgctxt ""
+"06080000.xhp\n"
+"par_id3150799\n"
+"help.text"
+msgid "After the document has been recalculated, the display is refreshed. All charts are also refreshed."
msgstr ""
#: 06130000.xhp
@@ -44789,7 +44869,7 @@ msgctxt ""
"12010100.xhp\n"
"par_id3154684\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/InsertOrDeleteCells\" visibility=\"visible\">Automatically inserts new rows and columns into the database range in your document when new records are added to the database.</ahelp> To manually update the database range, choose <emph>Data - Refresh</emph> <emph>Range</emph>."
+msgid "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/InsertOrDeleteCells\" visibility=\"visible\">Automatically inserts new rows and columns into the database range in your document when new records are added to the database.</ahelp> To manually update the database range, choose <emph>Data - Refresh Range</emph>."
msgstr ""
#: 12010100.xhp
@@ -49331,9 +49411,9 @@ msgstr ""
#: 12120300.xhp
msgctxt ""
"12120300.xhp\n"
-"par_id3150752\n"
+"hd_id881545240342781\n"
"help.text"
-msgid "<emph>Sample macro:</emph>"
+msgid "Sample macro:"
msgstr ""
#: ODFF.xhp
@@ -52133,7 +52213,7 @@ msgctxt ""
"func_days.xhp\n"
"par_id3159101\n"
"help.text"
-msgid "<item type=\"input\">=DAYS(\"2010-01-01\"; NOW())</item> returns the number of days from today until January 1, 2010."
+msgid "<item type=\"input\">=DAYS(NOW();\"2010-01-01\"))</item> returns the number of days from January 1, 2010 until today."
msgstr ""
#: func_days.xhp
@@ -54238,7 +54318,7 @@ msgctxt ""
"hd_id193452436229521\n"
"help.text"
msgid "Simple usage"
-msgstr ""
+msgstr "Vienkārša lietošana"
#: func_maxifs.xhp
msgctxt ""
@@ -54398,7 +54478,7 @@ msgctxt ""
"hd_id193452436229521\n"
"help.text"
msgid "Simple usage"
-msgstr ""
+msgstr "Vienkārša lietošana"
#: func_minifs.xhp
msgctxt ""
@@ -58219,6 +58299,14 @@ msgstr "P-vērtība"
#: statistics.xhp
msgctxt ""
"statistics.xhp\n"
+"par_id841554943563747\n"
+"help.text"
+msgid "F-critical"
+msgstr ""
+
+#: statistics.xhp
+msgctxt ""
+"statistics.xhp\n"
"par_id1001610\n"
"help.text"
msgid "Between Groups"
@@ -58227,6 +58315,14 @@ msgstr "Starp grupām"
#: statistics.xhp
msgctxt ""
"statistics.xhp\n"
+"par_id411554944014360\n"
+"help.text"
+msgid "3.340385558"
+msgstr ""
+
+#: statistics.xhp
+msgctxt ""
+"statistics.xhp\n"
"par_id1001670\n"
"help.text"
msgid "Within Groups"
diff --git a/source/lv/helpcontent2/source/text/scalc/02.po b/source/lv/helpcontent2/source/text/scalc/02.po
index 130d24c4ea7..bdb91a415ef 100644
--- a/source/lv/helpcontent2/source/text/scalc/02.po
+++ b/source/lv/helpcontent2/source/text/scalc/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-11-14 12:22+0100\n"
+"POT-Creation-Date: 2019-01-12 13:18+0100\n"
"PO-Revision-Date: 2018-11-14 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542197090.000000\n"
#: 02130000.xhp
@@ -149,7 +149,7 @@ msgctxt ""
"02140000.xhp\n"
"par_id3159153\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Format - Cell - Numbers</link>"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>"
msgstr ""
#: 02150000.xhp
@@ -197,7 +197,7 @@ msgctxt ""
"02150000.xhp\n"
"par_id3154908\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Format - Cell - Numbers</link>."
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>."
msgstr ""
#: 02160000.xhp
diff --git a/source/lv/helpcontent2/source/text/scalc/04.po b/source/lv/helpcontent2/source/text/scalc/04.po
index 01acea69c8c..d132c1db21d 100644
--- a/source/lv/helpcontent2/source/text/scalc/04.po
+++ b/source/lv/helpcontent2/source/text/scalc/04.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-10-04 11:48+0200\n"
-"PO-Revision-Date: 2016-12-21 17:49+0000\n"
-"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
+"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"PO-Revision-Date: 2017-10-04 11:29+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lv\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482342572.000000\n"
+"X-POOTLE-MTIME: 1507116573.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -243,6 +243,54 @@ msgstr ""
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
+"hd_id451550311052582\n"
+"help.text"
+msgid "Shift+Space"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id971550311052582\n"
+"help.text"
+msgid "Selects the current row or extends the existing selection to all respective rows."
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id281550311052582\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Space"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id261550311052582\n"
+"help.text"
+msgid "Selects the current column or extends the existing selection to all respective columns."
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id311550311052582\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Space"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id851550311052582\n"
+"help.text"
+msgid "Selects all cells in the sheet."
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
"hd_id3143220\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Left Arrow"
diff --git a/source/lv/helpcontent2/source/text/scalc/05.po b/source/lv/helpcontent2/source/text/scalc/05.po
index 8afc8fde468..074ea8121c7 100644
--- a/source/lv/helpcontent2/source/text/scalc/05.po
+++ b/source/lv/helpcontent2/source/text/scalc/05.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-09-07 12:46+0200\n"
-"PO-Revision-Date: 2016-06-21 20:57+0000\n"
-"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
+"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"PO-Revision-Date: 2018-09-03 13:12+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lv\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1466542622.000000\n"
+"X-POOTLE-MTIME: 1535980357.000000\n"
#: 02140000.xhp
msgctxt ""
@@ -696,6 +696,102 @@ msgctxt ""
msgid "Division operator / if the denominator is 0<br/>Some more functions return this error, for example:<br/>VARP with less than 1 argument<br/>STDEVP with less than 1 argument<br/>VAR with less than 2 arguments<br/>STDEV with less than 2 arguments<br/>STANDARDIZE with stdev=0<br/>NORMDIST with stdev=0"
msgstr ""
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id231549820000708\n"
+"help.text"
+msgid "533"
+msgstr ""
+
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id951549820044260\n"
+"help.text"
+msgid "Nested arrays are not supported"
+msgstr ""
+
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id781549820065619\n"
+"help.text"
+msgid "For example, ={1;{2}}"
+msgstr ""
+
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id961549825716936\n"
+"help.text"
+msgid "538"
+msgstr ""
+
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id521549825734781\n"
+"help.text"
+msgid "Error: Array or matrix size"
+msgstr ""
+
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id601549825744677\n"
+"help.text"
+msgid "-"
+msgstr ""
+
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id41549825806618\n"
+"help.text"
+msgid "539"
+msgstr ""
+
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id931549825818729\n"
+"help.text"
+msgid "Unsupported inline array content"
+msgstr ""
+
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id551549825825905\n"
+"help.text"
+msgid "For example, ={1+2}"
+msgstr ""
+
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id441549825884434\n"
+"help.text"
+msgid "540"
+msgstr ""
+
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id131549825893410\n"
+"help.text"
+msgid "External content disabled"
+msgstr ""
+
+#: 02140000.xhp
+msgctxt ""
+"02140000.xhp\n"
+"par_id881549825900965\n"
+"help.text"
+msgid "Happens if a function that requires (re)loading of external sources is encountered and the user hasn't confirmed reloading of external sources yet"
+msgstr ""
+
#: empty_cells.xhp
msgctxt ""
"empty_cells.xhp\n"
diff --git a/source/lv/helpcontent2/source/text/scalc/guide.po b/source/lv/helpcontent2/source/text/scalc/guide.po
index c0a528d1363..83019f88f98 100644
--- a/source/lv/helpcontent2/source/text/scalc/guide.po
+++ b/source/lv/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: 2018-12-17 16:28+0100\n"
+"POT-Creation-Date: 2019-01-12 13:18+0100\n"
"PO-Revision-Date: 2018-11-14 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5229,7 +5229,7 @@ msgctxt ""
"format_table.xhp\n"
"par_id3154733\n"
"help.text"
-msgid "You can assign a format to any group of cells by first selecting the cells (for multiple selection, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key when clicking), and then activating the <emph>Format Cells</emph> dialog in <item type=\"menuitem\">Format - Cell</item>. In this dialog, you can select attributes such as shadows and backgrounds."
+msgid "You can assign a format to any group of cells by first selecting the cells (for multiple selection, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key when clicking), and then activating the <emph>Format Cells</emph> dialog in <item type=\"menuitem\">Format - Cells</item>. In this dialog, you can select attributes such as shadows and backgrounds."
msgstr ""
#: format_table.xhp
@@ -10053,7 +10053,7 @@ msgctxt ""
"specialfilter.xhp\n"
"par_id3153726\n"
"help.text"
-msgid "Then click OK, and you will see that only the rows from the original sheet whose contents have met the search criteria are still visible. All other rows are temporarily hidden and can be made to reappear with the <emph>Format - Row - Show </emph>command."
+msgid "Then click OK, and you will see that only the rows from the original sheet whose contents have met the search criteria are still visible. All other rows are temporarily hidden and can be made to reappear with the <emph>Format - Rows - Show </emph>command."
msgstr ""
#: specialfilter.xhp
@@ -10925,7 +10925,7 @@ msgctxt ""
"text_wrap.xhp\n"
"par_id3145799\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Format - Cell\">Format - Cell</link>"
+msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Format - Cells\">Format - Cells</link>"
msgstr ""
#: userdefined_function.xhp
@@ -11317,7 +11317,7 @@ msgctxt ""
"validity.xhp\n"
"par_id3149011\n"
"help.text"
-msgid "To display the error message, select <emph>Show error message when invalid values are entered</emph>."
+msgid "To display the error message, select <link href=\"text/scalc/01/12120300.xhp\" name=\"erroralert\">Show error message when invalid values are entered</link>."
msgstr ""
#: validity.xhp
diff --git a/source/lv/helpcontent2/source/text/schart/00.po b/source/lv/helpcontent2/source/text/schart/00.po
index 5b6b3fc81f1..fb81e7a3f6f 100644
--- a/source/lv/helpcontent2/source/text/schart/00.po
+++ b/source/lv/helpcontent2/source/text/schart/00.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2016-10-11 20:50+0000\n"
-"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
+"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"PO-Revision-Date: 2018-05-08 16:26+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lv\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1476219049.000000\n"
+"X-POOTLE-MTIME: 1525796760.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -77,8 +77,8 @@ msgctxt ""
"00000004.xhp\n"
"par_id3149121\n"
"help.text"
-msgid "Choose <emph>Insert - Legend </emph>(Charts)"
-msgstr "Izvēlieties <emph>Ievietot - Leģenda</emph>(Diagrammas)"
+msgid "Choose <emph>Insert - Legend</emph> (Charts)"
+msgstr ""
#: 00000004.xhp
msgctxt ""
@@ -93,8 +93,8 @@ msgctxt ""
"00000004.xhp\n"
"par_id3156385\n"
"help.text"
-msgid "Choose <emph>Insert - Data Labels </emph>(Charts)"
-msgstr "Izvēlieties <emph>Ievietot - Datu etiķetes </emph>(Diagrammas)"
+msgid "Choose <emph>Insert - Data Labels</emph> (Charts)"
+msgstr ""
#: 00000004.xhp
msgctxt ""
@@ -109,16 +109,16 @@ msgctxt ""
"00000004.xhp\n"
"par_id3149565\n"
"help.text"
-msgid "<variable id=\"efgaug\">Choose <emph>Insert - Axes </emph>(Charts)</variable>"
-msgstr "<variable id=\"efgaug\">Izvēlieties <emph>Ievietot - Asis </emph>(Diagrammas)</variable>"
+msgid "<variable id=\"efgaug\">Choose <emph>Insert - Axes</emph> (Charts)</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id3150297\n"
"help.text"
-msgid "Choose <emph>Insert - Grids </emph>(Charts)"
-msgstr "Izvēlieties <emph>Ievietot - Režģi</emph>(Diagrammas)"
+msgid "Choose <emph>Insert - Grids</emph> (Charts)"
+msgstr ""
#: 00000004.xhp
msgctxt ""
@@ -165,8 +165,8 @@ msgctxt ""
"00000004.xhp\n"
"par_id3148869\n"
"help.text"
-msgid "<variable id=\"efgsta\">Choose <emph>Insert - X Error Bars </emph> or <emph>Insert - Y Error Bars </emph>(Charts)</variable>"
-msgstr "<variable id=\"efgsta\">Izvēlieties <emph>Ievietot - X kļūdu joslas</emph> vai <emph>Ievietot - Y kļūdu joslas</emph>(Diagrammas)</variable>"
+msgid "<variable id=\"efgsta\">Choose <emph>Insert - X Error Bars</emph>, or <emph>Insert - Y Error Bars</emph> (Charts)</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
@@ -181,16 +181,16 @@ msgctxt ""
"00000004.xhp\n"
"par_id3154532\n"
"help.text"
-msgid "<variable id=\"sonderz\">Choose <emph>Insert - Special Character </emph>(Charts)</variable>"
-msgstr "<variable id=\"sonderz\">Izvēlieties <emph>Ievietot - Īpašā rakstzīme </emph>(Diagrammas)</variable>"
+msgid "<variable id=\"sonderz\">Choose <emph>Insert - Special Character</emph> (Charts)</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id3153246\n"
"help.text"
-msgid "<variable id=\"frtoes\">Choose <emph>Format - Format Selection </emph>(Charts)</variable>"
-msgstr "<variable id=\"frtoes\">Izvēlieties <emph>Formatēt - Formatēt izvēlēto </emph>(Diagrammas)</variable>"
+msgid "<variable id=\"frtoes\">Choose <emph>Format - Format Selection</emph> (Charts)</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
@@ -221,8 +221,8 @@ msgctxt ""
"00000004.xhp\n"
"par_id3154707\n"
"help.text"
-msgid "<variable id=\"frtttl\">Choose <emph>Format - Title </emph>(Charts)</variable>"
-msgstr "<variable id=\"frtttl\">Izvēlieties <emph>Formatēt - Virsraksts</emph>(Diagrammas)</variable>"
+msgid "<variable id=\"frtttl\">Choose <emph>Format - Title</emph> (Charts)</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
@@ -245,40 +245,40 @@ msgctxt ""
"00000004.xhp\n"
"par_id3149048\n"
"help.text"
-msgid "<variable id=\"frttya\">Choose <emph>Format - Title </emph>(Charts)</variable>"
-msgstr "<variable id=\"frttya\">Izvēlieties <emph>Formatēt - Virsraksts</emph>(Diagrammas)</variable>"
+msgid "<variable id=\"frttya\">Choose <emph>Format - Title</emph> (Charts)</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id3147402\n"
"help.text"
-msgid "<variable id=\"frttyab\">Choose <emph>Format - Axis </emph>(Charts)</variable>"
-msgstr "<variable id=\"frttyab\">Izvēlieties <emph>Formatēt - Asis </emph>(Diagrammas)</variable>"
+msgid "<variable id=\"frttyab\">Choose <emph>Format - Axis</emph> (Charts)</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id3147297\n"
"help.text"
-msgid "<variable id=\"frtlgd\">Choose <emph>Format - Legend, or Format - Format Selection</emph> - <emph>Legend </emph>(Charts)</variable>"
-msgstr "<variable id=\"frtlgd\">Izvēlieties <emph>Formatēt - Leģenda vai Formatēt - Formatēt izvēlēto</emph> - <emph>Leģenda </emph>(Diagrammas)</variable>"
+msgid "<variable id=\"frtlgd\">Choose <emph>Format - Legend</emph>, or <emph>Format - Format Selection - Legend</emph> (Charts)</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id3157876\n"
"help.text"
-msgid "<variable id=\"frtaa\">Choose <emph>Format - Axis - X Axis/Secondary X Axis/Z Axis/All Axes </emph>(Charts)</variable>"
-msgstr "<variable id=\"frtaa\">Izvēlieties <emph>Formatēt - Asis - X ass/Sekundārā X ass/Z ass/Visas asis </emph>(Diagrammas)</variable>"
+msgid "<variable id=\"frtaa\">Choose <emph>Format - Axis - X Axis/Secondary X Axis/Z Axis/All Axes</emph> (Charts)</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id3146883\n"
"help.text"
-msgid "<variable id=\"frtyas\">Choose <emph>Format - Axis - Y Axis/Secondary Y Axis </emph>(Charts)</variable>"
-msgstr "<variable id=\"frtyas\">Izvēlieties <emph>Formatēt - Asis - Y ass/Sekundārā Y ass </emph>(Diagrammas)</variable>"
+msgid "<variable id=\"frtyas\">Choose <emph>Format - Axis - Y Axis/Secondary Y Axis</emph> (Charts)</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
@@ -309,16 +309,16 @@ msgctxt ""
"00000004.xhp\n"
"par_id3150477\n"
"help.text"
-msgid "<variable id=\"frtgt\">Choose <emph>Format - Grid </emph>(Charts)</variable>"
-msgstr "<variable id=\"frtgt\">Izvēlieties <emph>Formatēt - Režģis </emph>(Diagrammas)</variable>"
+msgid "<variable id=\"frtgt\">Choose <emph>Format - Grid</emph> (Charts)</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id3150746\n"
"help.text"
-msgid "<variable id=\"frtgtr\">Choose <emph>Format - Grid - X, Y, Z Axis Major Grid/ X, Y, Z Minor Grid/ All Axis Grids </emph>(Charts)</variable>"
-msgstr "<variable id=\"frtgtr\">Izvēlieties <emph>Formatēt - Režģis - X, Y, Z ass lielais režģis/ X, Y, Z mazais režģis/ Visu asu režģi </emph>(Diagrammas)</variable>"
+msgid "<variable id=\"frtgtr\">Choose <emph>Format - Grid - X, Y, Z Axis Major Grid/ X, Y, Z Minor Grid/ All Axis Grids</emph> (Charts)</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
@@ -333,24 +333,24 @@ msgctxt ""
"00000004.xhp\n"
"par_id3153039\n"
"help.text"
-msgid "<variable id=\"frtdgb\">Choose <emph>Format - Chart Floor</emph>(Charts)</variable>"
-msgstr "<variable id=\"frtdgb\">Izvēlieties <emph>Formatēt - Diagrammas grīda</emph>(Diagrammas)</variable>"
+msgid "<variable id=\"frtdgb\">Choose <emph>Format - Chart Floor</emph> (Charts)</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id3150141\n"
"help.text"
-msgid "<variable id=\"frtdgf\">Choose <emph>Format - Chart Area</emph>(Charts)</variable>"
-msgstr "<variable id=\"frtdgf\">Izvēlieties <emph>Formatēt - Diagrammas laukums</emph>(Diagrammas)</variable>"
+msgid "<variable id=\"frtdgf\">Choose <emph>Format - Chart Area</emph> (Charts)</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id3155830\n"
"help.text"
-msgid "Choose <emph>Format - Chart Type </emph>(Charts)"
-msgstr "Izvēlieties <emph>Formatēt - Diagrammas tips </emph>(Diagrammas)"
+msgid "Choose <emph>Format - Chart Type</emph> (Charts)"
+msgstr ""
#: 00000004.xhp
msgctxt ""
@@ -381,24 +381,24 @@ msgctxt ""
"00000004.xhp\n"
"par_id3155621\n"
"help.text"
-msgid "<variable id=\"frtdda\">Choose <emph>Format - 3D View</emph>(Charts)</variable>"
-msgstr "<variable id=\"frtdda\">Izvēlieties <emph>Formatēt - 3D skats</emph>(Diagrammas)</variable>"
+msgid "<variable id=\"frtdda\">Choose <emph>Format - 3D View</emph> (Charts)</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id3150661\n"
"help.text"
-msgid "Choose <emph>Format - Arrangement </emph>(Charts)"
-msgstr "Izvēlieties <emph>Formatēt - Izvietojums </emph>(Diagrammas)"
+msgid "Choose <emph>Format - Arrangement</emph> (Charts)"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id3153046\n"
"help.text"
-msgid "Open context menu - choose <emph>Arrangement </emph>(Charts)"
-msgstr "Atveriet konteksta izvēlni - izvēlieties <emph>Izvietojums </emph>(Diagrammas)"
+msgid "Open context menu - choose <emph>Arrangement</emph> (Charts)"
+msgstr ""
#: 00000004.xhp
msgctxt ""
diff --git a/source/lv/helpcontent2/source/text/schart/01.po b/source/lv/helpcontent2/source/text/schart/01.po
index 7e90de31f3b..11ee75ce49b 100644
--- a/source/lv/helpcontent2/source/text/schart/01.po
+++ b/source/lv/helpcontent2/source/text/schart/01.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-02-27 13:56+0100\n"
-"PO-Revision-Date: 2017-01-29 12:28+0000\n"
-"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
+"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"PO-Revision-Date: 2018-02-27 18:21+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lv\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1485692911.000000\n"
+"X-POOTLE-MTIME: 1519755706.000000\n"
#: 03010000.xhp
msgctxt ""
@@ -5717,8 +5717,8 @@ msgctxt ""
"type_stock.xhp\n"
"par_id3516953\n"
"help.text"
-msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
-msgstr "Pirmajā <link href=\"text/schart/01/wiz_chart_type.xhp\">Diagrammu vedņa</link> lappusē jūs varat izvēlēties diagrammas tipu."
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\"><emph>Chart Wizard</emph></link> you can choose a chart type."
+msgstr ""
#: type_stock.xhp
msgctxt ""
@@ -6149,7 +6149,7 @@ msgctxt ""
"type_stock.xhp\n"
"par_id6138492\n"
"help.text"
-msgid "Choose the <emph>Stock</emph> chart type on the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart wizard</link>. Then select one of the four variants."
+msgid "Choose the <emph>Stock</emph> chart type on the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\"><emph>Chart Wizard</emph></link>. Then select one of the four variants."
msgstr ""
#: type_stock.xhp
@@ -6165,7 +6165,7 @@ msgctxt ""
"type_stock.xhp\n"
"par_id291451\n"
"help.text"
-msgid "Based on<emph> low</emph> <emph>and high </emph>column the Type 1 shows the distance between bottom price (low) and top price (high) by a vertical line."
+msgid "Based on <emph>low</emph> and <emph>high</emph> column the Type 1 shows the distance between bottom price (low) and top price (high) by a vertical line."
msgstr ""
#: type_stock.xhp
@@ -6173,7 +6173,7 @@ msgctxt ""
"type_stock.xhp\n"
"par_id3341776\n"
"help.text"
-msgid "Based on<emph> low, high,</emph> and <emph>close</emph> column Type 1 shows an additional horizontal mark <emph>for</emph> the closing price."
+msgid "Based on <emph>low, high,</emph> and <emph>close</emph> column Type 1 shows an additional horizontal mark <emph>for</emph> the closing price."
msgstr ""
#: type_stock.xhp
@@ -6253,7 +6253,7 @@ msgctxt ""
"type_stock.xhp\n"
"par_id5298318\n"
"help.text"
-msgid "To change the data series of a chart having its own data, choose <link href=\"text/schart/01/03010000.xhp\">Chart Data Table</link> from the View menu or from the context menu of the chart in edit mode."
+msgid "To change the data series of a chart having its own data, choose <link href=\"text/schart/01/03010000.xhp\"><emph>Chart Data Table</emph></link> from the <emph>View</emph> menu or from the context menu of the chart in edit mode."
msgstr ""
#: type_stock.xhp
@@ -6269,7 +6269,7 @@ msgctxt ""
"type_stock.xhp\n"
"par_id95828\n"
"help.text"
-msgid "For a new stock chart first use a column chart. Add the columns you need and enter your data in the order which is shown in the example, omitting any columns not required for the desired variant. Use Move Series Right to change the column order. Close the chart data table. Now use the Chart Type dialog to change to the stock chart variant."
+msgid "For a new stock chart first use a column chart. Add the columns you need and enter your data in the order which is shown in the example, omitting any columns not required for the desired variant. Use <emph>Move Series Right</emph> to change the column order. Close the chart data table. Now use the <emph>Chart Type</emph> dialog to change to the stock chart variant."
msgstr ""
#: type_stock.xhp
@@ -6309,7 +6309,7 @@ msgctxt ""
"type_stock.xhp\n"
"par_id3394573\n"
"help.text"
-msgid "You can choose or alter a data range on the second page of the Chart wizard or in the <link href=\"text/schart/01/wiz_data_range.xhp\">Data Range</link> dialog. For fine tuning use the <link href=\"text/schart/01/wiz_data_series.xhp\">Data Series</link> dialog."
+msgid "You can choose or alter a data range on the second page of the <emph>Chart Wizard</emph> or in the <link href=\"text/schart/01/wiz_data_range.xhp\"><emph>Data Range</emph></link> dialog. For fine tuning use the <link href=\"text/schart/01/wiz_data_series.xhp\"><emph>Data Series</emph></link> dialog."
msgstr ""
#: type_stock.xhp
@@ -6349,7 +6349,7 @@ msgctxt ""
"type_stock.xhp\n"
"par_id1589098\n"
"help.text"
-msgid "In Calc, click <emph>Select data range</emph> to minimize the dialog, then drag to select the data range. When you release the mouse, the data are entered. Click <emph>Select </emph> <emph>data range</emph> again to add a data range. In the input field of the minimized dialog, click after the entry and type a semicolon. Then drag to select the next range."
+msgid "In Calc, click <emph>Select data range</emph> to minimize the dialog, then drag to select the data range. When you release the mouse, the data are entered. Click <emph>Select data range</emph> again to add a data range. In the input field of the minimized dialog, click after the entry and type a semicolon. Then drag to select the next range."
msgstr ""
#: type_stock.xhp
@@ -6381,7 +6381,7 @@ msgctxt ""
"type_stock.xhp\n"
"par_id3486434\n"
"help.text"
-msgid "You can organize data series and edit the source for parts of single data series on the third page of the Chart wizard or on the page Data Series in the Data Range dialog."
+msgid "You can organize data series and edit the source for parts of single data series on the third page of the <emph>Chart Wizard</emph> or on the page <emph>Data Series</emph> in the <emph>Data Range</emph> dialog."
msgstr ""
#: type_stock.xhp
diff --git a/source/lv/helpcontent2/source/text/sdraw/guide.po b/source/lv/helpcontent2/source/text/sdraw/guide.po
index 0ca375df393..2baf80fae99 100644
--- a/source/lv/helpcontent2/source/text/sdraw/guide.po
+++ b/source/lv/helpcontent2/source/text/sdraw/guide.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-10-02 17:56+0200\n"
-"PO-Revision-Date: 2016-09-17 10:33+0000\n"
-"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
+"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"PO-Revision-Date: 2018-04-17 15:37+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lv\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1474108414.000000\n"
+"X-POOTLE-MTIME: 1523979445.000000\n"
#: align_arrange.xhp
msgctxt ""
@@ -69,7 +69,7 @@ msgctxt ""
"align_arrange.xhp\n"
"par_id3150327\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Modify - Arrange</item> to bring up the context menu and choose one of the arrange options:"
+msgid "Choose <item type=\"menuitem\">Shape - Arrange</item> to bring up the context menu and choose one of the arrange options:"
msgstr ""
#: align_arrange.xhp
@@ -133,7 +133,7 @@ msgctxt ""
"align_arrange.xhp\n"
"par_id3154253\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Modify - Arrange</item> to open the context menu and choose <emph>Behind Object</emph>. The mouse pointer changes to a hand."
+msgid "Choose <item type=\"menuitem\">Shape - Arrange</item> to open the context menu and choose <emph>Behind Object</emph>. The mouse pointer changes to a hand."
msgstr ""
#: align_arrange.xhp
@@ -165,7 +165,7 @@ msgctxt ""
"align_arrange.xhp\n"
"par_id3155114\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Modify - Arrange</item> to open the context menu and choose <emph>Reverse</emph>."
+msgid "Choose <item type=\"menuitem\">Shape - Arrange</item> to open the context menu and choose <emph>Reverse</emph>."
msgstr ""
#: align_arrange.xhp
@@ -197,7 +197,7 @@ msgctxt ""
"align_arrange.xhp\n"
"par_idN108A7\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Modify - Alignment</item> and select one of the alignment options."
+msgid "Choose <item type=\"menuitem\">Shape - Align</item> and select one of the alignment options."
msgstr ""
#: align_arrange.xhp
@@ -229,7 +229,7 @@ msgctxt ""
"align_arrange.xhp\n"
"par_idN108D2\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Modify - Distribution</item>."
+msgid "Choose <item type=\"menuitem\">Shape - Distribution</item>."
msgstr ""
#: align_arrange.xhp
@@ -413,7 +413,7 @@ msgctxt ""
"combine_etc.xhp\n"
"par_id3145587\n"
"help.text"
-msgid "Choose <emph>Modify - Combine</emph>."
+msgid "Choose <emph>Shape - Combine</emph>."
msgstr ""
#: combine_etc.xhp
@@ -501,7 +501,7 @@ msgctxt ""
"combine_etc.xhp\n"
"par_id3150650\n"
"help.text"
-msgid "Choose <emph>Modify - Shapes</emph> and one of the following:"
+msgid "Choose <emph>Shape</emph> and one of the following:"
msgstr ""
#: combine_etc.xhp
@@ -1413,7 +1413,7 @@ msgctxt ""
"groups.xhp\n"
"par_id3147346\n"
"help.text"
-msgid "Select the objects you want to group and choose <emph>Modify - Group</emph>."
+msgid "Select the objects you want to group and choose <emph>Shape - Group - Group</emph>."
msgstr ""
#: groups.xhp
@@ -1525,7 +1525,7 @@ msgctxt ""
"join_objects.xhp\n"
"par_id3156383\n"
"help.text"
-msgid "Right-click and choose <emph>Modify - Connect</emph>."
+msgid "Right-click and choose <emph>Shape - Connect</emph>."
msgstr ""
#: join_objects.xhp
diff --git a/source/lv/helpcontent2/source/text/shared.po b/source/lv/helpcontent2/source/text/shared.po
index 44b79a20db8..ef42af35797 100644
--- a/source/lv/helpcontent2/source/text/shared.po
+++ b/source/lv/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: 2018-11-14 12:22+0100\n"
+"POT-Creation-Date: 2019-01-07 11:14+0100\n"
"PO-Revision-Date: 2018-11-14 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542197091.000000\n"
#: 3dsettings_toolbar.xhp
@@ -509,7 +509,7 @@ msgctxt ""
"main0108.xhp\n"
"par_id230120170827196850\n"
"help.text"
-msgid "<ahelp hid=\".uno:QuestionAnswers\">Opens the community support page in the web browser.</ahelp> Use this page to ask questions on using %PRODUCTNAME. For professional support with service level agreement, refer to the <link href=\"http://www.documentfoundation.org/gethelp/support/\">page of professional %PRODUCTNAME support</link>."
+msgid "<ahelp hid=\".uno:QuestionAnswers\">Opens the community support page in the web browser.</ahelp> Use this page to ask questions on using %PRODUCTNAME. For professional support with service level agreement, refer to the <link href=\"https://www.documentfoundation.org/gethelp/support/\"><emph>page of professional %PRODUCTNAME support</emph></link>."
msgstr ""
#: main0108.xhp
@@ -557,7 +557,7 @@ msgctxt ""
"main0108.xhp\n"
"par_id4144510\n"
"help.text"
-msgid "<ahelp hid=\".uno:ShowLicense\">Displays the Licensing and Legal information dialog.</ahelp>"
+msgid "<ahelp hid=\".uno:ShowLicense\">Displays the <emph>Licensing and Legal information</emph> dialog.</ahelp>"
msgstr ""
#: main0108.xhp
@@ -573,7 +573,7 @@ msgctxt ""
"main0108.xhp\n"
"par_id5144510\n"
"help.text"
-msgid "<ahelp hid=\".uno:ShowLicense\">Displays the CREDITS.odt document which lists the names of individuals who have contributed to OpenOffice.org source code (and whose contributions were imported into LibreOffice) or LibreOffice since 2010-09-28.</ahelp>"
+msgid "<ahelp hid=\".uno:ShowLicense\">Displays the <emph>CREDITS.odt</emph> document which lists the names of individuals who have contributed to OpenOffice.org source code (and whose contributions were imported into LibreOffice) or LibreOffice since 2010-09-28.</ahelp>"
msgstr ""
#: main0108.xhp
@@ -589,7 +589,7 @@ msgctxt ""
"main0108.xhp\n"
"par_id2783898\n"
"help.text"
-msgid "<ahelp hid=\".\">Enable an Internet connection for %PRODUCTNAME. If you need a Proxy, check the %PRODUCTNAME Proxy settings in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Internet. Then choose Check for Updates to check for the availability of a newer version of your office suite.</ahelp>"
+msgid "<ahelp hid=\".\">Enable an Internet connection for %PRODUCTNAME. If you need a Proxy, check the %PRODUCTNAME Proxy settings in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Internet</emph>. Then choose <emph>Check for Updates</emph> to check for the availability of a newer version of your office suite.</ahelp>"
msgstr ""
#: main0108.xhp
diff --git a/source/lv/helpcontent2/source/text/shared/00.po b/source/lv/helpcontent2/source/text/shared/00.po
index 367c7cf32b1..5b2da96ecb3 100644
--- a/source/lv/helpcontent2/source/text/shared/00.po
+++ b/source/lv/helpcontent2/source/text/shared/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: 2018-11-14 12:22+0100\n"
+"POT-Creation-Date: 2019-04-08 14:23+0200\n"
"PO-Revision-Date: 2018-11-14 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542197092.000000\n"
#: 00000001.xhp
@@ -421,31 +421,7 @@ msgctxt ""
"00000001.xhp\n"
"par_id3149651\n"
"help.text"
-msgid "<ahelp hid=\"HID_TABDLG_RESET_BTN\">Resets changes made to the current tab to those applicable when this dialog was opened. A confirmation query does not appear when you close the dialog.</ahelp>"
-msgstr ""
-
-#: 00000001.xhp
-msgctxt ""
-"00000001.xhp\n"
-"hd_id3143278\n"
-"help.text"
-msgid "Reset"
-msgstr "Atstatīt"
-
-#: 00000001.xhp
-msgctxt ""
-"00000001.xhp\n"
-"par_id3150791\n"
-"help.text"
-msgid "<ahelp hid=\"HID_TABDLG_RESET_BTN\">Resets modified values back to the default values.</ahelp>"
-msgstr ""
-
-#: 00000001.xhp
-msgctxt ""
-"00000001.xhp\n"
-"par_id3154331\n"
-"help.text"
-msgid "A confirmation query does not appear. If you confirm the dialog with <emph>OK</emph> all settings in this dialog are reset."
+msgid "<ahelp hid=\".\">Resets changes made to the current tab to those applicable when this dialog was opened. A confirmation query does not appear when you close the dialog.</ahelp>"
msgstr ""
#: 00000001.xhp
@@ -461,7 +437,7 @@ msgctxt ""
"00000001.xhp\n"
"par_id3154153\n"
"help.text"
-msgid "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">Resets the values visible in the dialog back to the default installation values.</ahelp>"
+msgid "<ahelp hid=\".\">Resets the values visible in the dialog back to the default installation values.</ahelp>"
msgstr ""
#: 00000001.xhp
@@ -485,13 +461,13 @@ msgctxt ""
"00000001.xhp\n"
"par_id3150439\n"
"help.text"
-msgid "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">View the selections in the dialog made in the previous step. The current settings remain unchanged.</ahelp> This button can only be activated from page two on."
+msgid "<ahelp hid=\".\">View the selections in the dialog made in the previous step. The current settings remain unchanged.</ahelp> This button can only be activated from page two on."
msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
-"hd_id3147352\n"
+"hd_id3147353\n"
"help.text"
msgid "Options"
msgstr ""
@@ -501,7 +477,7 @@ msgctxt ""
"00000001.xhp\n"
"par_id3155314\n"
"help.text"
-msgid "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">Click the <emph>Options</emph> label to expand the dialog to show further options. Click again to restore the dialog.</ahelp>"
+msgid "<ahelp hid=\".\">Click the <emph>Options</emph> label to expand the dialog to show further options. Click again to restore the dialog.</ahelp>"
msgstr ""
#: 00000001.xhp
@@ -3821,7 +3797,7 @@ msgctxt ""
"00000021.xhp\n"
"par_id3154068\n"
"help.text"
-msgid "By default, <emph>content.xml</emph> is stored without formatting elements like indentation or line breaks to minimize the time for saving and opening the document. The use of indentations and line breaks can be activated in the <link href=\"text/shared/optionen/expertconfig.xhp\">Expert configuration</link> by setting the property <emph>/org.openoffice.Office.Common/Save/Document PrettyPrinting</emph> to <emph>true</emph>."
+msgid "By default, <emph>content.xml</emph> is stored without formatting elements like indentation or line breaks to minimize the time for saving and opening the document. The use of indentations and line breaks can be activated in the <link href=\"text/shared/optionen/expertconfig.xhp\"><emph>Expert configuration</emph></link> by setting the property <emph>/org.openoffice.Office.Common/Save/Document PrettyPrinting</emph> to <emph>true</emph>."
msgstr ""
#: 00000021.xhp
@@ -3853,7 +3829,7 @@ msgctxt ""
"00000021.xhp\n"
"par_id3150447\n"
"help.text"
-msgid "In <emph>styles.xml,</emph> you find the styles applied to the document that can be seen in the Styles window."
+msgid "In <emph>styles.xml,</emph> you find the styles applied to the document that can be seen in the <emph>Styles</emph> window."
msgstr ""
#: 00000021.xhp
@@ -3885,7 +3861,7 @@ msgctxt ""
"00000021.xhp\n"
"par_idN10AAD\n"
"help.text"
-msgid "The schema for the OpenDocument formats can be found on the <link href=\"http://www.oasis-open.org\">www.oasis-open.org</link> web site."
+msgid "The schema for the OpenDocument formats can be found on the <link href=\"https://www.oasis-open.org/standards#opendocumentv1.2\"><emph>www.oasis-open.org</emph></link> web site."
msgstr ""
#: 00000021.xhp
@@ -5453,7 +5429,7 @@ msgctxt ""
"00000401.xhp\n"
"par_id3152824\n"
"help.text"
-msgid "<variable id=\"viskartinhalt\">Choose <emph>File - New - Business Cards - Business cards</emph> tab.</variable>"
+msgid "<variable id=\"viskartinhalt\">Choose <emph>File - New - Business Cards - Business Cards</emph> tab.</variable>"
msgstr ""
#: 00000401.xhp
@@ -5661,7 +5637,7 @@ msgctxt ""
"00000401.xhp\n"
"par_id3146906\n"
"help.text"
-msgid "<variable id=\"autopilotagenda2\">Choose <emph>File - Wizards - Agenda - General Attributes</emph>.</variable>"
+msgid "<variable id=\"autopilotagenda2\">Choose <emph>File - Wizards - Agenda - General information</emph>.</variable>"
msgstr ""
#: 00000401.xhp
@@ -5669,7 +5645,7 @@ msgctxt ""
"00000401.xhp\n"
"par_id3152578\n"
"help.text"
-msgid "<variable id=\"autopilotagenda3\">Choose <emph>File - Wizards - Agenda - Headings</emph>.</variable>"
+msgid "<variable id=\"autopilotagenda3\">Choose <emph>File - Wizards - Agenda - Headings to include</emph>.</variable>"
msgstr ""
#: 00000401.xhp
@@ -5685,7 +5661,7 @@ msgctxt ""
"00000401.xhp\n"
"par_id3146923\n"
"help.text"
-msgid "<variable id=\"autopilotagenda5\">Choose <emph>File - Wizards - Agenda - Topics</emph>.</variable>"
+msgid "<variable id=\"autopilotagenda5\">Choose <emph>File - Wizards - Agenda - Agenda items</emph>.</variable>"
msgstr ""
#: 00000401.xhp
@@ -5693,55 +5669,7 @@ msgctxt ""
"00000401.xhp\n"
"par_id3149066\n"
"help.text"
-msgid "<variable id=\"autopilotagenda6\">Choose <emph>File - Wizards - Agenda - Title and Location</emph>.</variable>"
-msgstr ""
-
-#: 00000401.xhp
-msgctxt ""
-"00000401.xhp\n"
-"par_id3149288\n"
-"help.text"
-msgid "<variable id=\"dtapt\">Choose <emph>File - Wizards - Presentation</emph>.</variable>"
-msgstr ""
-
-#: 00000401.xhp
-msgctxt ""
-"00000401.xhp\n"
-"par_id3146986\n"
-"help.text"
-msgid "<variable id=\"dtapse\">Choose <emph>File - Wizards - Presentation - Page 1</emph>.</variable>"
-msgstr ""
-
-#: 00000401.xhp
-msgctxt ""
-"00000401.xhp\n"
-"par_id3154919\n"
-"help.text"
-msgid "<variable id=\"dtapsz\">Choose <emph>File - Wizards - Presentation - Page 2</emph>.</variable>"
-msgstr ""
-
-#: 00000401.xhp
-msgctxt ""
-"00000401.xhp\n"
-"par_id3151351\n"
-"help.text"
-msgid "<variable id=\"dtapsd\">Choose <emph>File - Wizards - Presentation - Page 3</emph>.</variable>"
-msgstr ""
-
-#: 00000401.xhp
-msgctxt ""
-"00000401.xhp\n"
-"par_id3147317\n"
-"help.text"
-msgid "<variable id=\"dtapsv\">Choose <emph>File - Wizards - Presentation - Page 4</emph>.</variable>"
-msgstr ""
-
-#: 00000401.xhp
-msgctxt ""
-"00000401.xhp\n"
-"par_id3145592\n"
-"help.text"
-msgid "<variable id=\"dtapsf\">Choose <emph>File - Wizards - Presentation - Page 5</emph>.</variable>"
+msgid "<variable id=\"autopilotagenda6\">Choose <emph>File - Wizards - Agenda - Name and Location</emph>.</variable>"
msgstr ""
#: 00000401.xhp
@@ -5853,23 +5781,23 @@ msgctxt ""
"00000401.xhp\n"
"par_id3145206\n"
"help.text"
-msgid "<variable id=\"addressimport2\"><emph>Address Data Source Wizards</emph> - <emph>Additional settings</emph></variable>"
-msgstr "<variable id=\"addressimport2\"><emph>Adrešu datu avotu vedņi</emph> - <emph>Papildu iestatījumi</emph></variable>"
+msgid "<variable id=\"addressimport2\"><emph>Address Data Source Wizards - Additional settings</emph></variable>"
+msgstr ""
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
"par_id3154756\n"
"help.text"
-msgid "<variable id=\"addressimport3\"><emph>Address Data Source Wizards</emph> - <emph>Select table</emph></variable>"
-msgstr "<variable id=\"addressimport3\"><emph>Adrešu datu avotu vedņi</emph> - <emph>Izvēlēties tabulu</emph></variable>"
+msgid "<variable id=\"addressimport3\"><emph>Address Data Source Wizards - Table selection</emph></variable>"
+msgstr ""
#: 00000401.xhp
msgctxt ""
"00000401.xhp\n"
"par_id3153924\n"
"help.text"
-msgid "<variable id=\"addressimport4\"><emph>Address Data Source Wizards</emph> - <emph>Data source title</emph></variable>"
+msgid "<variable id=\"addressimport4\"><emph>Address Data Source Wizards - Data source title</emph></variable>"
msgstr ""
#: 00000401.xhp
@@ -5877,8 +5805,8 @@ msgctxt ""
"00000401.xhp\n"
"par_id3148995\n"
"help.text"
-msgid "<variable id=\"addressimport5\"><emph>Address Data Source Wizards</emph> - <emph>Field assignment</emph></variable>"
-msgstr "<variable id=\"addressimport5\"><emph>Adrešu datu avotu vedņi</emph> - <emph>Lauka piesaiste</emph></variable>"
+msgid "<variable id=\"addressimport5\"><emph>Address Data Source Wizards - Field assignment</emph></variable>"
+msgstr ""
#: 00000401.xhp
msgctxt ""
@@ -6085,7 +6013,7 @@ msgctxt ""
"00000401.xhp\n"
"par_idN1117E\n"
"help.text"
-msgid "Double-click the <emph>Signature</emph> field on the <emph>Status</emph> bar."
+msgid "Double-click or right-click the <emph>Signature</emph> field on the <emph>Status</emph> bar."
msgstr ""
#: 00000401.xhp
@@ -6093,7 +6021,7 @@ msgctxt ""
"00000401.xhp\n"
"par_idN11173\n"
"help.text"
-msgid "<variable id=\"digitalsigsel\">Choose <emph>File - Properties - General</emph> tab, click <emph>Digital Signatures</emph> button, then click <emph>Add</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 ""
#: 00000401.xhp
@@ -6133,7 +6061,7 @@ msgctxt ""
"00000401.xhp\n"
"par_id3149570\n"
"help.text"
-msgid "<variable id=\"info6\">Choose <emph>File - Properties - Internet</emph> tab.</variable>"
+msgid "<variable id=\"info6\">Choose <emph>File - Properties - CMIS Properties</emph> tab.</variable>"
msgstr ""
#: 00000401.xhp
@@ -7709,7 +7637,7 @@ msgctxt ""
"00000406.xhp\n"
"par_id3146957\n"
"help.text"
-msgid "<variable id=\"galleryregisterdateien\">Choose <emph>Tools - Gallery</emph>or click the <emph>Gallery</emph> icon on the <emph>Standard</emph> bar -<br/><emph>New Theme</emph> button - <emph>Files</emph> tab.</variable>"
+msgid "<variable id=\"galleryregisterdateien\">Choose <emph>Tools - Gallery</emph> or click the <emph>Gallery</emph> icon on the <emph>Standard</emph> bar -<br/><emph>New Theme</emph> button - <emph>Files</emph> tab.</variable>"
msgstr ""
#: 00000406.xhp
@@ -7835,6 +7763,30 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
+"par_id511543350796749\n"
+"help.text"
+msgid "<variable id=\"beanshell\">Choose <emph>Tools - Macros - Organize Macros - BeanShell</emph>.</variable>"
+msgstr ""
+
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id661543350803067\n"
+"help.text"
+msgid "<variable id=\"javascript\">Choose <emph>Tools - Macros - Organize Macros - JavaScript</emph>.</variable>"
+msgstr ""
+
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id441543350811395\n"
+"help.text"
+msgid "<variable id=\"python\">Choose <emph>Tools - Macros - Organize Macros - Python</emph>.</variable>"
+msgstr ""
+
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
"par_id3149456\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Record Macro</emph>."
@@ -8173,7 +8125,7 @@ msgctxt ""
"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
-msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Open CL</emph>.</variable>"
+msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
msgstr ""
#: 00000406.xhp
@@ -8733,7 +8685,7 @@ msgctxt ""
"00000409.xhp\n"
"par_id3156053\n"
"help.text"
-msgid "Choose <emph>Data - Filter - Standard Filter</emph>."
+msgid "Choose <emph>Data - More Filters - Standard Filter</emph>."
msgstr ""
#: 00000409.xhp
@@ -9189,7 +9141,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3154749\n"
"help.text"
-msgid "Choose <emph>Format - Cell - Font</emph> tab (spreadsheets)."
+msgid "Choose <emph>Format - Cells - Font</emph> tab (spreadsheets)."
msgstr ""
#: 00040500.xhp
@@ -9277,7 +9229,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3154366\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cell - Asian Typography</emph> tab.</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Asian Typography</emph> tab.</caseinline></switchinline>"
msgstr ""
#: 00040500.xhp
@@ -9621,7 +9573,7 @@ msgctxt ""
"00040500.xhp\n"
"par_id3148405\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu of an entry and choose <emph>Modify/New - Header</emph> tab."
+msgid "Choose <emph>View - Styles</emph> - open context menu of a page style entry and choose <emph>Modify/New - Header</emph> tab."
msgstr ""
#: 00040500.xhp
@@ -10381,7 +10333,7 @@ msgctxt ""
"00040501.xhp\n"
"par_id3154023\n"
"help.text"
-msgid "Choose <emph>Modify - Arrange</emph> ($[officename] Draw)."
+msgid "Choose <emph>Shape - Arrange</emph> ($[officename] Draw)."
msgstr ""
#: 00040501.xhp
@@ -10413,7 +10365,7 @@ msgctxt ""
"00040501.xhp\n"
"par_id3148425\n"
"help.text"
-msgid "Choose <emph>Modify - Arrange - Bring to Front</emph> ($[officename] Draw)."
+msgid "Choose <emph>Shape - Arrange - Bring to Front</emph> ($[officename] Draw)."
msgstr ""
#: 00040501.xhp
@@ -10461,7 +10413,7 @@ msgctxt ""
"00040501.xhp\n"
"par_id3148396\n"
"help.text"
-msgid "Choose <emph>Modify - Arrange - Bring Forward</emph> ($[officename] Draw)."
+msgid "Choose <emph>Shape - Arrange - Bring Forward</emph> ($[officename] Draw)."
msgstr ""
#: 00040501.xhp
@@ -10509,7 +10461,7 @@ msgctxt ""
"00040501.xhp\n"
"par_id3150428\n"
"help.text"
-msgid "Choose <emph>Modify - Arrange - Send Backward</emph> ($[officename] Draw)."
+msgid "Choose <emph>Shape - Arrange - Send Backward</emph> ($[officename] Draw)."
msgstr ""
#: 00040501.xhp
@@ -10557,7 +10509,7 @@ msgctxt ""
"00040501.xhp\n"
"par_id3148595\n"
"help.text"
-msgid "Choose <emph>Modify - Arrange - Send to Back</emph> ($[officename] Draw)."
+msgid "Choose <emph>Shape - Arrange - Send to Back</emph> ($[officename] Draw)."
msgstr ""
#: 00040501.xhp
@@ -10645,7 +10597,7 @@ msgctxt ""
"00040501.xhp\n"
"par_id3146854\n"
"help.text"
-msgid "Choose <emph>Format - Alignment</emph> ($[officename] Writer, $[officename] Calc)."
+msgid "Choose <emph>Format - Align</emph> ($[officename] Writer, $[officename] Calc)."
msgstr ""
#: 00040501.xhp
@@ -10653,7 +10605,7 @@ msgctxt ""
"00040501.xhp\n"
"par_id3153914\n"
"help.text"
-msgid "Choose <emph>Modify - Alignment</emph> (objects selected) ($[officename] Draw)."
+msgid "Choose <emph>Shape - Align</emph> (objects selected) ($[officename] Draw)."
msgstr ""
#: 00040501.xhp
@@ -10661,7 +10613,7 @@ msgctxt ""
"00040501.xhp\n"
"par_id3153185\n"
"help.text"
-msgid "Open context menu - choose <emph>Alignment</emph> (objects selected) ($[officename] Impress, $[officename] Draw)."
+msgid "Open context menu - choose <emph>Align</emph> (objects selected) ($[officename] Impress, $[officename] Draw)."
msgstr ""
#: 00040501.xhp
@@ -10669,7 +10621,7 @@ msgctxt ""
"00040501.xhp\n"
"par_id3168611\n"
"help.text"
-msgid "Choose <emph>Format - Alignment - Left</emph> ($[officename] Writer, $[officename] Calc)."
+msgid "Choose <emph>Format - Align - Left</emph> ($[officename] Writer, $[officename] Calc)."
msgstr ""
#: 00040501.xhp
@@ -10677,7 +10629,7 @@ msgctxt ""
"00040501.xhp\n"
"par_id3083450\n"
"help.text"
-msgid "Choose <emph>Modify - Alignment - Left</emph> (selected objects) ($[officename] Draw)."
+msgid "Choose <emph>Shape - Align - Left</emph> (selected objects) ($[officename] Draw)."
msgstr ""
#: 00040501.xhp
@@ -10685,7 +10637,7 @@ msgctxt ""
"00040501.xhp\n"
"par_id3150257\n"
"help.text"
-msgid "Open context menu - choose <emph>Alignment - Left</emph> (objects selected) ($[officename] Impress, $[officename] Draw)."
+msgid "Open context menu - choose <emph>Align - Left</emph> (objects selected) ($[officename] Impress, $[officename] Draw)."
msgstr ""
#: 00040501.xhp
@@ -10717,7 +10669,7 @@ msgctxt ""
"00040501.xhp\n"
"par_id3150268\n"
"help.text"
-msgid "Choose <emph>Format - Alignment - Centered</emph> ($[officename] Writer, $[officename] Calc)."
+msgid "Choose <emph>Format - Align - Centered</emph> ($[officename] Writer, $[officename] Calc)."
msgstr ""
#: 00040501.xhp
@@ -10725,7 +10677,7 @@ msgctxt ""
"00040501.xhp\n"
"par_id3157978\n"
"help.text"
-msgid "Choose <emph>Modify - Alignment - Centered</emph> (objects selected) ($[officename] Draw)."
+msgid "Choose <emph>Shape - Align - Centered</emph> (objects selected) ($[officename] Draw)."
msgstr ""
#: 00040501.xhp
@@ -10757,7 +10709,7 @@ msgctxt ""
"00040501.xhp\n"
"par_id3156546\n"
"help.text"
-msgid "Choose <emph>Format - Alignment - Right</emph>."
+msgid "Choose <emph>Format - Align - Right</emph>."
msgstr ""
#: 00040501.xhp
@@ -10765,7 +10717,7 @@ msgctxt ""
"00040501.xhp\n"
"par_id3145073\n"
"help.text"
-msgid "Choose <emph>Modify - Alignment - Right</emph> (objects selected) ($[officename] Draw)."
+msgid "Choose <emph>Shape - Align - Right</emph> (objects selected) ($[officename] Draw)."
msgstr ""
#: 00040501.xhp
@@ -10797,7 +10749,7 @@ msgctxt ""
"00040501.xhp\n"
"par_id3153109\n"
"help.text"
-msgid "Choose <emph>Format - Alignment - Top</emph> ($[officename] Writer, $[officename] Calc)."
+msgid "Choose <emph>Format - Align - Top</emph> ($[officename] Writer, $[officename] Calc)."
msgstr ""
#: 00040501.xhp
@@ -10805,7 +10757,7 @@ msgctxt ""
"00040501.xhp\n"
"par_id3150213\n"
"help.text"
-msgid "Choose <emph>Modify - Alignment - Top</emph> (objects selected) ($[officename] Draw)."
+msgid "Choose <emph>Shape - Align - Top</emph> (objects selected) ($[officename] Draw)."
msgstr ""
#: 00040501.xhp
@@ -10813,7 +10765,7 @@ msgctxt ""
"00040501.xhp\n"
"par_id3155093\n"
"help.text"
-msgid "Open context menu - choose <emph>Alignment - Top</emph> (objects selected) ($[officename] Impress, $[officename] Draw)."
+msgid "Open context menu - choose <emph>Align - Top</emph> (objects selected) ($[officename] Impress, $[officename] Draw)."
msgstr ""
#: 00040501.xhp
@@ -10845,7 +10797,7 @@ msgctxt ""
"00040501.xhp\n"
"par_id3153976\n"
"help.text"
-msgid "Choose <emph>Format - Alignment - Centered</emph> ($[officename] Writer, $[officename] Calc)."
+msgid "Choose <emph>Format - Align - Centered</emph> ($[officename] Writer, $[officename] Calc)."
msgstr ""
#: 00040501.xhp
@@ -10853,7 +10805,7 @@ msgctxt ""
"00040501.xhp\n"
"par_id3153246\n"
"help.text"
-msgid "Choose <emph>Modify - Alignment - Centered</emph> (objects selected) ($[officename] Draw)."
+msgid "Choose <emph>Shape - Align - Centered</emph> (objects selected) ($[officename] Draw)."
msgstr ""
#: 00040501.xhp
@@ -10861,7 +10813,7 @@ msgctxt ""
"00040501.xhp\n"
"par_id3154614\n"
"help.text"
-msgid "Open context menu - choose <emph>Alignment - Centered</emph> (objects selected) ($[officename] Impress, $[officename] Draw)."
+msgid "Open context menu - choose <emph>Align - Centered</emph> (objects selected) ($[officename] Impress, $[officename] Draw)."
msgstr ""
#: 00040501.xhp
@@ -10893,7 +10845,7 @@ msgctxt ""
"00040501.xhp\n"
"par_id3149896\n"
"help.text"
-msgid "Choose <emph>Format - Alignment - Bottom</emph> ($[officename] Writer, $[officename] Calc)."
+msgid "Choose <emph>Format - Align - Bottom</emph> ($[officename] Writer, $[officename] Calc)."
msgstr ""
#: 00040501.xhp
@@ -10901,7 +10853,7 @@ msgctxt ""
"00040501.xhp\n"
"par_id3156049\n"
"help.text"
-msgid "Choose <emph>Modify - Alignment - Bottom</emph> (objects selected) ($[officename] Draw)."
+msgid "Choose <emph>Shape - Align - Bottom</emph> (objects selected) ($[officename] Draw)."
msgstr ""
#: 00040501.xhp
@@ -11149,7 +11101,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab.</variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab.</variable>"
msgstr ""
#: 00040502.xhp
@@ -11157,7 +11109,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab.</variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab.</variable>"
msgstr ""
#: 00040502.xhp
@@ -11165,7 +11117,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156082\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area</emph>."
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area</emph>."
msgstr ""
#: 00040502.xhp
@@ -11197,7 +11149,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11381,7 +11333,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab.</variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab.</variable>"
msgstr ""
#: 00040502.xhp
@@ -11389,7 +11341,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab.</variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab.</variable>"
msgstr ""
#: 00040502.xhp
@@ -11397,7 +11349,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab.</variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab.</variable>"
msgstr ""
#: 00040502.xhp
@@ -11405,7 +11357,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab.</variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab.</variable>"
msgstr ""
#: 00040502.xhp
@@ -11413,7 +11365,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145251\n"
"help.text"
-msgid "<variable id=\"formattext\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - Text Attributes</emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - Define Text Attributes</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline>.</variable>"
+msgid "<variable id=\"formattext\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - Text Attributes</emph> </caseinline><caseinline select=\"CALC\"><emph>Object - Text - </emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline>.</variable>"
msgstr ""
#: 00040502.xhp
@@ -11421,7 +11373,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152810\n"
"help.text"
-msgid "<variable id=\"text\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - Text Attributes</emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - Define Text Attributes</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Text</emph> tab.</variable>"
+msgid "<variable id=\"text\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - Text Attributes</emph> </caseinline><caseinline select=\"CALC\"><emph>Object - Text</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Text</emph> tab.</variable>"
msgstr ""
#: 00040502.xhp
@@ -11429,7 +11381,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151060\n"
"help.text"
-msgid "<variable id=\"laufext\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - Text Attributes</emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - Define Text Attributes</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Text Animation</emph> tab.</variable>"
+msgid "<variable id=\"laufext\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - Text Attributes </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - Text</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Text Animation</emph> tab.</variable>"
msgstr ""
#: 00040502.xhp
@@ -11437,7 +11389,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149911\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size</emph>."
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Position and Size</emph>."
msgstr ""
#: 00040502.xhp
@@ -11485,7 +11437,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab.</variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab.</variable>"
msgstr ""
#: 00040502.xhp
@@ -11493,7 +11445,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152973\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Rotation</emph> tab."
+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 ""
#: 00040502.xhp
@@ -11517,7 +11469,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab.</variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab.</variable>"
msgstr ""
#: 00040502.xhp
@@ -11525,7 +11477,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab. This is only available for textbox callouts, not for custom shapes callouts.</variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab. This is only available for textbox callouts, not for custom shapes callouts.</variable>"
msgstr ""
#: 00040502.xhp
@@ -11541,7 +11493,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145642\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Open context menu - choose <emph>Edit Points</emph>.</caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open context menu - choose <emph>Edit Points</emph>.</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Open context menu - choose <emph>Edit Points</emph>. </caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open context menu - choose <emph>Edit Points</emph>.</caseinline></switchinline>"
msgstr ""
#: 00040502.xhp
@@ -11749,7 +11701,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3146978\n"
"help.text"
-msgid "Choose <emph>Format - Alignment - Left</emph> (drawing functions)."
+msgid "Choose <emph>Format - Align - Left</emph> (drawing functions)."
msgstr ""
#: 00040502.xhp
@@ -11757,7 +11709,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153009\n"
"help.text"
-msgid "Open context menu - choose <emph>Alignment - Left</emph>."
+msgid "Open context menu - choose <emph>Align - Left</emph>."
msgstr ""
#: 00040502.xhp
@@ -11781,7 +11733,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3155823\n"
"help.text"
-msgid "Choose <emph>Format - Alignment - Right</emph> (drawing functions)."
+msgid "Choose <emph>Format - Align - Right</emph> (drawing functions)."
msgstr ""
#: 00040502.xhp
@@ -11789,7 +11741,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3155762\n"
"help.text"
-msgid "Open context menu - choose <emph>Alignment - Right</emph>."
+msgid "Open context menu - choose <emph>Align - Right</emph>."
msgstr ""
#: 00040502.xhp
@@ -11813,7 +11765,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149189\n"
"help.text"
-msgid "Choose <emph>Format - Alignment - Centered</emph> (drawing functions)."
+msgid "Choose <emph>Format - Align - Centered</emph> (drawing functions)."
msgstr ""
#: 00040502.xhp
@@ -11821,7 +11773,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154624\n"
"help.text"
-msgid "Open context menu - choose <emph>Alignment - Center</emph>."
+msgid "Open context menu - choose <emph>Align - Center</emph>."
msgstr ""
#: 00040502.xhp
@@ -11845,7 +11797,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3146151\n"
"help.text"
-msgid "Choose <emph>Format - Alignment - Justified</emph> (drawing functions)."
+msgid "Choose <emph>Format - Align - Justified</emph> (drawing functions)."
msgstr ""
#: 00040502.xhp
@@ -11853,7 +11805,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3168612\n"
"help.text"
-msgid "Open context menu - choose <emph>Alignment - Justified</emph>."
+msgid "Open context menu - choose <emph>Align - Justified</emph>."
msgstr ""
#: 00040502.xhp
@@ -11909,7 +11861,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3157980\n"
"help.text"
-msgid "Choose <emph>Modify - Group</emph> (drawing documents)."
+msgid "Choose <emph>Shape - Group - Group</emph> (drawing documents)."
msgstr ""
#: 00040502.xhp
@@ -11949,7 +11901,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3163378\n"
"help.text"
-msgid "Choose <emph>Modify - Ungroup</emph> (drawing documents)."
+msgid "Choose <emph>Shape - Group - Ungroup</emph> (drawing documents)."
msgstr ""
#: 00040502.xhp
@@ -11989,7 +11941,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145678\n"
"help.text"
-msgid "Choose <emph>Modify - Exit Group</emph> (drawing documents)."
+msgid "Choose <emph>Shape - Group - Exit Group</emph> (drawing documents)."
msgstr ""
#: 00040502.xhp
@@ -12029,7 +11981,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145354\n"
"help.text"
-msgid "Choose <emph>Modify - Enter Group</emph> (drawing documents)."
+msgid "Choose <emph>Shape - Group - Enter Group</emph> (drawing documents)."
msgstr ""
#: 00040502.xhp
@@ -12077,7 +12029,7 @@ msgctxt ""
"00040503.xhp\n"
"par_id3147294\n"
"help.text"
-msgid "Choose <emph>Format - Row - Height</emph>."
+msgid "Choose <emph>Format - Rows - Height</emph>."
msgstr ""
#: 00040503.xhp
@@ -12093,7 +12045,7 @@ msgctxt ""
"00040503.xhp\n"
"par_id3153136\n"
"help.text"
-msgid "Choose <emph>Format - Column - Width</emph>."
+msgid "Choose <emph>Format - Columns - Width</emph>."
msgstr ""
#: 00040503.xhp
@@ -12189,7 +12141,7 @@ msgctxt ""
"00040503.xhp\n"
"par_id3150495\n"
"help.text"
-msgid "Choose <emph>Modify - Flip</emph> ($[officename] Draw)."
+msgid "Choose <emph>Shape - Flip</emph> ($[officename] Draw)."
msgstr ""
#: 00040503.xhp
@@ -12213,7 +12165,7 @@ msgctxt ""
"00040503.xhp\n"
"par_id3150290\n"
"help.text"
-msgid "Choose <emph>Modify - Flip - Vertically</emph> ($[officename] Draw)."
+msgid "Choose <emph>Shape - Flip - Vertically</emph> ($[officename] Draw)."
msgstr ""
#: 00040503.xhp
@@ -12237,7 +12189,7 @@ msgctxt ""
"00040503.xhp\n"
"par_id3153369\n"
"help.text"
-msgid "Choose <emph>Modify - Flip - Horizontally</emph> ($[officename] Draw)."
+msgid "Choose <emph>Shape - Flip - Horizontally</emph> ($[officename] Draw)."
msgstr ""
#: 00040503.xhp
@@ -12269,7 +12221,7 @@ msgctxt ""
"00040503.xhp\n"
"par_id3147318\n"
"help.text"
-msgid "Choose <emph>Modify - Distribution</emph> ($[officename] Draw)."
+msgid "Choose <emph>Shape - Distribution</emph> ($[officename] Draw)."
msgstr ""
#: 00040503.xhp
diff --git a/source/lv/helpcontent2/source/text/shared/01.po b/source/lv/helpcontent2/source/text/shared/01.po
index 0ac230941f4..b5d8034fa95 100644
--- a/source/lv/helpcontent2/source/text/shared/01.po
+++ b/source/lv/helpcontent2/source/text/shared/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: 2018-12-17 16:28+0100\n"
+"POT-Creation-Date: 2019-04-08 14:23+0200\n"
"PO-Revision-Date: 2018-11-14 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1701,7 +1701,7 @@ msgctxt ""
"01020000.xhp\n"
"bm_id3145211\n"
"help.text"
-msgid "<bookmark_value>directories; creating new</bookmark_value> <bookmark_value>folder creation</bookmark_value> <bookmark_value>My Documents folder; opening</bookmark_value> <bookmark_value>multiple documents; opening</bookmark_value> <bookmark_value>opening; several files</bookmark_value> <bookmark_value>selecting; several files</bookmark_value> <bookmark_value>opening; files, with placeholders</bookmark_value> <bookmark_value>placeholders;on opening files</bookmark_value> <bookmark_value>documents; opening with templates</bookmark_value> <bookmark_value>templates; opening documents with</bookmark_value> <bookmark_value>documents; styles changed</bookmark_value> <bookmark_value>styles; changed message</bookmark_value>"
+msgid "<bookmark_value>directories; creating new</bookmark_value> <bookmark_value>folder creation</bookmark_value> <bookmark_value>My Documents folder; opening</bookmark_value> <bookmark_value>multiple documents; opening</bookmark_value> <bookmark_value>opening; several files</bookmark_value> <bookmark_value>selecting; several files</bookmark_value> <bookmark_value>opening; files, with placeholders</bookmark_value> <bookmark_value>placeholders;on opening files</bookmark_value> <bookmark_value>documents; opening with templates</bookmark_value> <bookmark_value>templates; opening documents with</bookmark_value> <bookmark_value>documents; styles changed</bookmark_value> <bookmark_value>styles; changed message</bookmark_value>"
msgstr ""
#: 01020000.xhp
@@ -1723,9 +1723,9 @@ msgstr ""
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
-"par_id3149877\n"
+"par_id931547247005236\n"
"help.text"
-msgid "The following sections describe the <item type=\"productname\">%PRODUCTNAME</item> <emph>Open</emph> dialog box. To activate the <item type=\"productname\">%PRODUCTNAME</item> <emph>Open</emph> and <emph>Save</emph> dialog boxes, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\"><emph>%PRODUCTNAME- General</emph></link>, and then select the <emph>Use %PRODUCTNAME dialogs</emph> in the <emph>Open/Save dialogs</emph> area."
+msgid "%PRODUCTNAME uses the native file picker dialog of the window manager of your operating system for the <menuitem>Open</menuitem> command."
msgstr ""
#: 01020000.xhp
@@ -1739,38 +1739,6 @@ msgstr ""
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
-"hd_id3147250\n"
-"help.text"
-msgid "Up One Level"
-msgstr ""
-
-#: 01020000.xhp
-msgctxt ""
-"01020000.xhp\n"
-"par_id3147226\n"
-"help.text"
-msgid "<ahelp hid=\"SVT_HID_FILEOPEN_LEVELUP\">Move up one folder in the folder hierarchy. Long-click to see the higher level folders.</ahelp>"
-msgstr ""
-
-#: 01020000.xhp
-msgctxt ""
-"01020000.xhp\n"
-"hd_id3145211\n"
-"help.text"
-msgid "Create New Folder"
-msgstr ""
-
-#: 01020000.xhp
-msgctxt ""
-"01020000.xhp\n"
-"par_id3153681\n"
-"help.text"
-msgid "<ahelp hid=\"fpicker/ui/explorerfiledialog/new_folder\">Creates a new folder.</ahelp>"
-msgstr ""
-
-#: 01020000.xhp
-msgctxt ""
-"01020000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "Display area"
@@ -1795,25 +1763,9 @@ msgstr ""
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
-"par_id3154514\n"
-"help.text"
-msgid "Click a column header to sort the files. Click again to reverse the sort order."
-msgstr ""
-
-#: 01020000.xhp
-msgctxt ""
-"01020000.xhp\n"
-"par_id3149514\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FILEVIEW_MENU_DELETE\">To delete a file, right-click the file, and then choose <emph>Delete</emph>.</ahelp>"
-msgstr ""
-
-#: 01020000.xhp
-msgctxt ""
-"01020000.xhp\n"
-"par_id3147618\n"
+"par_id341547247820173\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILEVIEW_MENU_RENAME\">To rename a file, right-click the file, and then choose <emph>Rename</emph>.</ahelp>"
+msgid "Modern system file dialogs present many features for file handling. Most allows you to rename, delete, create files, sort list of files, display files and folders in icons, tree or list views, traverse the file system folder tree and much more. Use the mouse right button to get a list of commands on the selected files in the display area."
msgstr ""
#: 01020000.xhp
@@ -1853,23 +1805,15 @@ msgctxt ""
"01020000.xhp\n"
"par_id3161656\n"
"help.text"
-msgid "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_name\">Enter a file name or a path for the file. You can also enter an <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\"><emph>URL</emph></link> that starts with the protocol name <emph>ftp</emph>, <emph>http</emph>, or <emph>https</emph>.</ahelp>"
-msgstr ""
-
-#: 01020000.xhp
-msgctxt ""
-"01020000.xhp\n"
-"par_id3150541\n"
-"help.text"
-msgid "If you want, you can use wildcards in the <emph>File name</emph> box to filter the list of files that is displayed."
+msgid "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_name\">Enter a file name or a path for the file.</ahelp>"
msgstr ""
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
-"par_id3153779\n"
+"par_id61547286521877\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"/><defaultinline>For example, to list all of the text files in a folder, enter the asterisk wildcard with the text file extension (<emph>*.txt</emph>), and then click <emph>Open</emph>. Use the question mark (<emph>?</emph>) wildcard to represent any character, as in <emph>??3*.txt</emph>, which only displays text files with a '<emph>3</emph>' as the third character in the file name.</defaultinline></switchinline>"
+msgid "The following features are available in the dialog:"
msgstr ""
#: 01020000.xhp
@@ -1981,7 +1925,7 @@ msgctxt ""
"01020000.xhp\n"
"par_id3145367\n"
"help.text"
-msgid "<item type=\"productname\">%PRODUCTNAME</item> recognizes templates that are located in any folder from the following list:"
+msgid "%PRODUCTNAME recognizes templates that are located in any folder from the following list:"
msgstr ""
#: 01020000.xhp
@@ -1997,7 +1941,7 @@ msgctxt ""
"01020000.xhp\n"
"par_id3144442\n"
"help.text"
-msgid "- the <emph>user template</emph> folder, <switchinline select=\"sys\"><caseinline select=\"UNIX\">- the <emph>home directory</emph> folder, </caseinline> <defaultinline> - the <emph>Documents and Settings</emph> folder </defaultinline> </switchinline>"
+msgid "- the <emph>user template</emph> folder,<switchinline select=\"sys\"><caseinline select=\"UNIX\">- the <emph>home directory</emph> folder,</caseinline><defaultinline> - the <emph>Documents and Settings</emph> folder</defaultinline></switchinline>"
msgstr ""
#: 01020000.xhp
@@ -2133,7 +2077,7 @@ msgctxt ""
"01020001.xhp\n"
"par_id431513629862558\n"
"help.text"
-msgid "Long-click on the <emph>Open</emph> icon and select <emph>Open Remote Files...</emph> ."
+msgid "Long-click on the <emph>Open</emph> icon and select <emph>Open Remote File...</emph> ."
msgstr ""
#: 01020001.xhp
@@ -2437,7 +2381,7 @@ msgctxt ""
"01060001.xhp\n"
"par_id431513629862558\n"
"help.text"
-msgid "Long-click on the <emph>Save</emph> icon and select <emph>Save Remote Files...</emph> ."
+msgid "Long-click on the <emph>Save</emph> icon and select <emph>Save Remote File...</emph> ."
msgstr ""
#: 01060001.xhp
@@ -2563,9 +2507,9 @@ msgstr ""
#: 01070000.xhp
msgctxt ""
"01070000.xhp\n"
-"par_id3155934\n"
+"par_id251543697768103\n"
"help.text"
-msgid "The following sections describe the <item type=\"productname\">%PRODUCTNAME</item> <emph>Save as</emph> dialog. To activate the <item type=\"productname\">%PRODUCTNAME</item> <emph>Open</emph> and <emph>Save</emph> dialog boxes, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\"><emph>%PRODUCTNAME- General</emph></link>, and then select the <emph>Use %PRODUCTNAME dialogs</emph> in the <emph>Open/Save dialogs</emph> area."
+msgid "%PRODUCTNAME uses the native file picker dialog of the window manager of your operating system for the <menuitem>Save as</menuitem> command."
msgstr ""
#: 01070000.xhp
@@ -2579,86 +2523,6 @@ msgstr ""
#: 01070000.xhp
msgctxt ""
"01070000.xhp\n"
-"hd_id3146774\n"
-"help.text"
-msgid "Connect To Server"
-msgstr "Savienoties ar serveri"
-
-#: 01070000.xhp
-msgctxt ""
-"01070000.xhp\n"
-"par_id3153820\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens a dialog where you can set up connection to various types of servers, including WebDAV, FTP, SSH, Windows Share and CMIS.</ahelp>"
-msgstr ""
-
-#: 01070000.xhp
-msgctxt ""
-"01070000.xhp\n"
-"hd_id3146775\n"
-"help.text"
-msgid "Up One Level"
-msgstr "Vienu līmeni augšup"
-
-#: 01070000.xhp
-msgctxt ""
-"01070000.xhp\n"
-"par_id3153821\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_LEVELUP\">Move up one folder in the folder hierarchy. Long-click to see the higher level folders.</ahelp>"
-msgstr ""
-
-#: 01070000.xhp
-msgctxt ""
-"01070000.xhp\n"
-"hd_id3159157\n"
-"help.text"
-msgid "Create New Folder"
-msgstr "Izveidot jaunu mapi"
-
-#: 01070000.xhp
-msgctxt ""
-"01070000.xhp\n"
-"par_id3155583\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_CREATEDIRECTORY\">Creates a new folder.</ahelp>"
-msgstr "<ahelp hid=\"HID_FILESAVE_CREATEDIRECTORY\">Izveido jaunu mapi.</ahelp>"
-
-#: 01070000.xhp
-msgctxt ""
-"01070000.xhp\n"
-"hd_id3155627\n"
-"help.text"
-msgid "Places area"
-msgstr ""
-
-#: 01070000.xhp
-msgctxt ""
-"01070000.xhp\n"
-"par_id3149901\n"
-"help.text"
-msgid "<ahelp hid=\".\">Displays \"favourite\" places, i.e. shortcuts to local or remote locations.</ahelp>"
-msgstr ""
-
-#: 01070000.xhp
-msgctxt ""
-"01070000.xhp\n"
-"hd_id3155628\n"
-"help.text"
-msgid "Display area"
-msgstr "Displeja laukums"
-
-#: 01070000.xhp
-msgctxt ""
-"01070000.xhp\n"
-"par_id3149902\n"
-"help.text"
-msgid "<ahelp hid=\".\">Displays the files and folders in the folder that you are in.</ahelp>"
-msgstr ""
-
-#: 01070000.xhp
-msgctxt ""
-"01070000.xhp\n"
"hd_id3154810\n"
"help.text"
msgid "File name"
@@ -2739,6 +2603,22 @@ msgstr ""
#: 01070000.xhp
msgctxt ""
"01070000.xhp\n"
+"hd_id41543592332834\n"
+"help.text"
+msgid "Encrypt with GPG key"
+msgstr ""
+
+#: 01070000.xhp
+msgctxt ""
+"01070000.xhp\n"
+"par_id71543592343227\n"
+"help.text"
+msgid "Use OpenPGP public keys to encrypt documents."
+msgstr ""
+
+#: 01070000.xhp
+msgctxt ""
+"01070000.xhp\n"
"hd_id3147502\n"
"help.text"
msgid "Edit filter settings"
@@ -9093,7 +8973,7 @@ msgctxt ""
"02210101.xhp\n"
"par_id3149511\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/insertfloatingframe/edname\">Enter a name for the floating frame. The name <emph>cannot</emph> contain spaces, special characters, or begin with an underscore ( _ ).</ahelp>"
+msgid "<ahelp hid=\"cui/ui/insertfloatingframe/edname\">Enter a name for the floating frame. The name <emph>cannot</emph> contain spaces, special characters, or begin with an underscore (<emph>_</emph>).</ahelp>"
msgstr ""
#: 02210101.xhp
@@ -9117,15 +8997,15 @@ msgctxt ""
"02210101.xhp\n"
"par_id3147399\n"
"help.text"
-msgid "http://www.example.com"
-msgstr "http://www.piemers.lv"
+msgid "https://www.example.com"
+msgstr ""
#: 02210101.xhp
msgctxt ""
"02210101.xhp\n"
"par_id3153683\n"
"help.text"
-msgid "file:///c|/Readme.txt"
+msgid "file:///C:/Documents/Readme.txt"
msgstr ""
#: 02210101.xhp
@@ -9861,7 +9741,7 @@ msgctxt ""
"02220000.xhp\n"
"par_id3157969\n"
"help.text"
-msgid "<ahelp hid=\"svx/ui/imapdialog/url\">Enter the URL for the file that you want to open when you click the selected hotspot.</ahelp> If you want to jump to an anchor within the document, the address should be of the form \"file:///C/document_name#anchor_name\"."
+msgid "<ahelp hid=\"svx/ui/imapdialog/url\">Enter the URL for the file that you want to open when you click the selected hotspot.</ahelp> If you want to jump to an anchor within the document, the address should be of the form \"file:///C:/Documents/document_name#anchor_name\"."
msgstr ""
#: 02220000.xhp
@@ -9989,7 +9869,7 @@ msgctxt ""
"02220100.xhp\n"
"par_id3155831\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/cuiimapdlg/urlentry\">Enter the URL for the file that you want to open when you click the selected hotspot.</ahelp> If you want to jump to a named anchor within the current document, the address should be of the form \"file:///C/[current_document_name]#anchor_name\"."
+msgid "<ahelp hid=\"cui/ui/cuiimapdlg/urlentry\">Enter the URL for the file that you want to open when you click the selected hotspot.</ahelp> If you want to jump to a named anchor within the current document, the address should be of the form \"file:///C:/Documents/[current_document_name]#anchor_name\"."
msgstr ""
#: 02220100.xhp
@@ -13245,7 +13125,7 @@ msgctxt ""
"05020200.xhp\n"
"par_id3150037\n"
"help.text"
-msgid "The text color is ignored when printing, if the <emph>Print black</emph> check box is selected in <link href=\"text/shared/optionen/01040400.xhp\" name=\"Writer - Print\"><emph>%PRODUCTNAME Writer - Print</emph></link> in the <emph>Options</emph> dialog box."
+msgid "The text color is ignored when printing, if the <emph>Print text in black</emph> check box is selected in <link href=\"text/shared/optionen/01040400.xhp\" name=\"Writer - Print\"><emph>%PRODUCTNAME Writer - Print</emph></link> in the <emph>Options</emph> dialog box."
msgstr ""
#: 05020200.xhp
@@ -26709,7 +26589,7 @@ msgctxt ""
"05290300.xhp\n"
"par_id3157991\n"
"help.text"
-msgid "To select an individual object in a group, hold down <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline>, and then click the object."
+msgid "To select an individual object in a group, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>, and then click the object."
msgstr ""
#: 05290300.xhp
@@ -33971,14 +33851,6 @@ msgstr ""
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
-"par_idN109BB\n"
-"help.text"
-msgid "To open the BeanShell Macros dialog box, choose Tools - Macros - Organize Macros - BeanShell. To open the JavaScript dialog box, choose Tools - Macros - Organize Macros - JavaScript."
-msgstr ""
-
-#: 06130000.xhp
-msgctxt ""
-"06130000.xhp\n"
"hd_id6963408\n"
"help.text"
msgid "Export"
@@ -34136,6 +34008,46 @@ msgctxt ""
msgid "Click a script, and then click a command button."
msgstr ""
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id381543352048115\n"
+"help.text"
+msgid "Python"
+msgstr ""
+
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_idN109as\n"
+"help.text"
+msgid "Macros"
+msgstr ""
+
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_idN134C2\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/scriptorganizer/ScriptOrganizerDialog\">Select a macro or script from \"user\", \"share\", or an open document.</ahelp>"
+msgstr ""
+
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id641543351777423\n"
+"help.text"
+msgid "Run"
+msgstr ""
+
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id31543351781865\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/scriptorganizer/run\">To run a script, select a script in the list, and then click Run.</ahelp>"
+msgstr ""
+
#: 06130001.xhp
msgctxt ""
"06130001.xhp\n"
@@ -37979,14 +37891,6 @@ msgstr ""
#: font_features.xhp
msgctxt ""
"font_features.xhp\n"
-"par_id531541778397964\n"
-"help.text"
-msgid "OpenType fonts can include an expanded character set and layout features, providing broader linguistic support and more precise typographic control."
-msgstr ""
-
-#: font_features.xhp
-msgctxt ""
-"font_features.xhp\n"
"par_id31541774826256\n"
"help.text"
msgid "The features displayed in the Font Features dialog depends on the selected font."
@@ -38701,7 +38605,7 @@ msgctxt ""
"image_compression.xhp\n"
"par_id611534528851319\n"
"help.text"
-msgid "Select the image, <switchinline select=\"appl\"> <caseinline select=\"CALC\">open the context menu and choose <item type=\"menuitem\">Image - Compress...</item></caseinline> <defaultinline>open the context menu and choose <item type=\"menuitem\">Compress...</item></defaultinline></switchinline>"
+msgid "Select the image, open the context menu and choose <item type=\"menuitem\">Compress...</item>"
msgstr ""
#: image_compression.xhp
@@ -38725,7 +38629,7 @@ msgctxt ""
"image_compression.xhp\n"
"par_id81534716413899\n"
"help.text"
-msgid "Use the slider to adjust the level of quality of he JPEG compression, from 0 to 100. A value of 100 means no quality loss and a value of 0 may result in a very poor image. The default value of 90 produces very good results and significant image data size reduction."
+msgid "Use the slider to adjust the level of quality of the JPEG compression, from 0 to 100. A value of 100 means no quality loss and a value of 0 may result in a very poor image. The default value of 90 produces very good results and significant image data size reduction."
msgstr ""
#: image_compression.xhp
@@ -39405,7 +39309,7 @@ msgctxt ""
"notebook_bar.xhp\n"
"par_id190920161744067918\n"
"help.text"
-msgid "The notebook bar is available in Writer, Calc and Impress. The user interface has now several available layouts. Two entries in the <item type=\"menuitem\">View</item> menu controls the notebook bar: <item type=\"menuitem\">Toolbar Layout</item> and <item type=\"menuitem\">Notebook bar</item>."
+msgid "The notebook bar is available in Writer, Calc and Impress. The user interface has now several available layouts. To change the layout, choose <item type=\"menuitem\">View - User Interface</item> and from the submenu select the layout which you want."
msgstr ""
#: notebook_bar.xhp
@@ -39413,7 +39317,7 @@ msgctxt ""
"notebook_bar.xhp\n"
"par_id190920161744066306\n"
"help.text"
-msgid "Choose menu <item type=\"menuitem\">View - Toolbar layout - Notebook bar</item>"
+msgid "Choose menu <item type=\"menuitem\">View - User Interface</item>"
msgstr ""
#: notebook_bar.xhp
@@ -39429,7 +39333,7 @@ msgctxt ""
"notebook_bar.xhp\n"
"par_id190920161744068946\n"
"help.text"
-msgid "The Toolbar Layout entry defines which user interface elements are visible. The available layouts are:"
+msgid "The <emph>User Interface</emph> entry defines which user interface elements are visible. The following three layouts are not of notebook bar type:"
msgstr ""
#: notebook_bar.xhp
@@ -39437,7 +39341,7 @@ msgctxt ""
"notebook_bar.xhp\n"
"par_id190920161744068819\n"
"help.text"
-msgid "<emph>Default</emph> – classic mode with two visible toolbars – standard and formatting. The sidebar is partially collapsed and shows only tabs."
+msgid "<emph>Standard toolbar</emph> – classic mode with two visible toolbars – standard and formatting. The sidebar is partially collapsed and shows only tabs."
msgstr ""
#: notebook_bar.xhp
@@ -39459,25 +39363,25 @@ msgstr ""
#: notebook_bar.xhp
msgctxt ""
"notebook_bar.xhp\n"
-"par_id190920161744063875\n"
+"par_id190920161744063797\n"
"help.text"
-msgid "<emph>Notebook bar</emph> – all toolbar and sidebar are hidden and the notebook bar is placed on the top. The menu entry: <item type=\"menuitem\">View </item><item type=\"menuitem\">-</item><item type=\"menuitem\"> Notebook bar</item> is active only in this mode and user can then choose the notebook bar layout."
+msgid "When user activates additional toolbars, they will be saved in the user profile. Therefore, on returning from the notebook bar mode, all toolbars set visible before will show again."
msgstr ""
#: notebook_bar.xhp
msgctxt ""
"notebook_bar.xhp\n"
-"par_id190920161744063797\n"
+"hd_id190920161744069618\n"
"help.text"
-msgid "When user activates additional toolbars, they will be saved in the user profile. Therefore, on returning to the notebook bar mode, all toolbars set visible before will show again."
+msgid "Available Notebook bar modes"
msgstr ""
#: notebook_bar.xhp
msgctxt ""
"notebook_bar.xhp\n"
-"hd_id190920161744069618\n"
+"par_id190920161744063875\n"
"help.text"
-msgid "Available Notebook bar modes"
+msgid "In a notebook bar mode, all toolbar and sidebar are hidden and the notebook bar is placed on the top."
msgstr ""
#: notebook_bar.xhp
@@ -39493,7 +39397,7 @@ msgctxt ""
"notebook_bar.xhp\n"
"par_id190920161744064039\n"
"help.text"
-msgid "In the tabbed mode the menu bar is hidden by default. To display the menu bar, select the “≡” icon at the top-left position of the window and choose <item type=\"menuitem\">Menu bar</item>."
+msgid "In the tabbed mode the menu bar is hidden by default. To display the menu bar, select the <emph>Menubar</emph> icon at the top-left position of the window."
msgstr ""
#: notebook_bar.xhp
@@ -39501,7 +39405,7 @@ msgctxt ""
"notebook_bar.xhp\n"
"par_id190920161744067802\n"
"help.text"
-msgid "<emph>Contextual groups</emph> – The notebook bar is divided into 4 groups. The File, Clipboard and Format groups are fixed. The Insert group contents are replaced with commands that depends on the nature of the selected object in the document, as for a table, an image or an OLE object."
+msgid "<emph>Contextual groups</emph> – The notebook bar is divided into 4 groups. The File, Clipboard and Text groups are fixed. The Insert group contents are replaced with commands that depends on the nature of the selected object in the document, as for a table, an image or an OLE object."
msgstr ""
#: notebook_bar.xhp
@@ -39509,7 +39413,23 @@ msgctxt ""
"notebook_bar.xhp\n"
"par_id190920161744063712\n"
"help.text"
-msgid "<emph>Contextual single toolbar</emph> – Displays a single centered toolbar with context-dependent contents."
+msgid "<emph>Contextual single</emph> – Displays a single centered toolbar with context-dependent contents."
+msgstr ""
+
+#: notebook_bar.xhp
+msgctxt ""
+"notebook_bar.xhp\n"
+"par_id190920161744063446\n"
+"help.text"
+msgid "<emph>Groupedbar</emph> – The bar is divided into groups that contain commands organized as icon sets and menus."
+msgstr ""
+
+#: notebook_bar.xhp
+msgctxt ""
+"notebook_bar.xhp\n"
+"par_id190920161744074224\n"
+"help.text"
+msgid "The Tabbed and Groupedbar modes are also available as compact variants."
msgstr ""
#: notebook_bar.xhp
@@ -39517,7 +39437,7 @@ msgctxt ""
"notebook_bar.xhp\n"
"par_id190920161744076273\n"
"help.text"
-msgid "The notebook bar icon size is adjustable in <item type=\"menuitem\">Tools - Options - LibreOffice - View - Notebook bar </item>listbox."
+msgid "The notebook bar icon size is adjustable in <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME - View - Notebookbar icon size</item> listbox."
msgstr ""
#: notebook_bar.xhp
@@ -40653,7 +40573,7 @@ msgctxt ""
"prop_font_embed.xhp\n"
"bm_id3149955\n"
"help.text"
-msgid "<bookmark_value>embedding fonts in document file</bookmark_value> <bookmark_value>documents; embedding fonts</bookmark_value> <bookmark_value>font embedding; in documents</bookmark_value> <bookmark_value>fonts; embedding</bookmark_value> <bookmark_value>embedding; fonts</bookmark_value>"
+msgid "<bookmark_value>embedding fonts in document file</bookmark_value> <bookmark_value>documents; embedding fonts</bookmark_value> <bookmark_value>font embedding; in documents</bookmark_value> <bookmark_value>fonts; embedding</bookmark_value> <bookmark_value>embedding; fonts</bookmark_value>"
msgstr ""
#: prop_font_embed.xhp
@@ -40669,7 +40589,7 @@ msgctxt ""
"prop_font_embed.xhp\n"
"par_id3154863\n"
"help.text"
-msgid "<ahelp hid=\"sfx/ui/documentfontspage/DocumentFontsPage\">Embed document fonts in the current file.</ahelp>"
+msgid "<ahelp hid=\"sfx/ui/documentfontspage/DocumentFontsPage\">Embed document fonts in the current file.</ahelp>"
msgstr ""
#: prop_font_embed.xhp
@@ -40837,7 +40757,7 @@ msgctxt ""
"ref_epub_export.xhp\n"
"par_id3154233\n"
"help.text"
-msgid "Enter the full path of the custom cover image file. If the entry is empty, the exporter takes the cover image in the media directory (see below) when the name is one of the following: <item type=\"literal\">cover.gif</item>, <item type=\"literal\">cover.jpg</item>, <item type=\"literal\">cover.png</item> or <item type=\"literal\">cover.svg</item>."
+msgid "Enter the full path of the custom cover image file. If the entry is empty, the exporter takes the cover image in the media directory (see below) when the name is one of the following: <item type=\"literal\">cover.gif</item>, <item type=\"literal\">cover.jpg</item>, <item type=\"literal\">cover.png</item> or <item type=\"literal\">cover.svg</item>."
msgstr ""
#: ref_epub_export.xhp
@@ -41285,16 +41205,16 @@ msgctxt ""
"ref_pdf_export.xhp\n"
"par_idN107BE\n"
"help.text"
-msgid "Export comments"
-msgstr "Eksportēt komentārus"
+msgid "Comments as PDF annotations"
+msgstr ""
#: ref_pdf_export.xhp
msgctxt ""
"ref_pdf_export.xhp\n"
"par_idN107C2\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to export comments of Writer and Calc documents as PDF notes.</ahelp>"
-msgstr "<ahelp hid=\".\">Atlasiet, lai eksportētu Writer un Calc dokumentu komentārus kā PDF piezīmes.</ahelp>"
+msgid "<ahelp hid=\".\">Select to export comments of Writer and Calc documents as PDF annotations.</ahelp>"
+msgstr ""
#: ref_pdf_export.xhp
msgctxt ""
@@ -43541,7 +43461,7 @@ msgctxt ""
"xformsdatatab.xhp\n"
"par_id1161534\n"
"help.text"
-msgid "The Data tab page of the Properties dialog for an XML Form document offers some XML forms settings."
+msgid "The <emph>Data</emph> tab page of the <emph>Properties</emph> dialog for an XML Form document offers some XML forms settings."
msgstr ""
#: xformsdatatab.xhp
@@ -43597,7 +43517,7 @@ msgctxt ""
"xformsdatatab.xhp\n"
"par_id636921\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter the DOM node to bind the control model to. Click the ... button for a dialog to enter the XPath expression.</ahelp>"
+msgid "<ahelp hid=\".\">Enter the DOM node to bind the control model to. Click the <emph>...</emph> button for a dialog to enter the XPath expression.</ahelp>"
msgstr ""
#: xformsdatatab.xhp
@@ -43749,7 +43669,7 @@ msgctxt ""
"xformsdatatab.xhp\n"
"par_id4331797\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies how whitespaces are to be handled when a string of the current data type is being processed. Possible values are Preserve, Replace, and Collapse. The semantics follow the definition at http://www.w3.org/TR/xmlschema-2/#rf-whiteSpace.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies how whitespaces are to be handled when a string of the current data type is being processed. Possible values are \"Preserve\", \"Replace\", and \"Collapse\". The semantics follow the definition at <link href=\"https://www.w3.org/TR/xmlschema-2/#rf-whiteSpace\"><emph>https://www.w3.org/TR/xmlschema-2/#rf-whiteSpace</emph></link>.</ahelp>"
msgstr ""
#: xformsdatatab.xhp
@@ -43765,7 +43685,7 @@ msgctxt ""
"xformsdatatab.xhp\n"
"par_id2318796\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies a regular expression pattern. Strings validated against the data type must conform to this pattern to be valid. The XSD data type syntax for regular expressions is different from the regular expression syntax used elsewhere in %PRODUCTNAME, for example in the Find & Replace dialog.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies a regular expression pattern. Strings validated against the data type must conform to this pattern to be valid. The XSD data type syntax for regular expressions is different from the regular expression syntax used elsewhere in %PRODUCTNAME, for example in the <emph>Find & Replace</emph> dialog.</ahelp>"
msgstr ""
#: xformsdatatab.xhp
diff --git a/source/lv/helpcontent2/source/text/shared/02.po b/source/lv/helpcontent2/source/text/shared/02.po
index 46bed708f30..a221d12a7ef 100644
--- a/source/lv/helpcontent2/source/text/shared/02.po
+++ b/source/lv/helpcontent2/source/text/shared/02.po