summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2023-07-14 08:28:32 +0200
committerMiklos Vajna <vmiklos@collabora.com>2023-07-14 11:00:30 +0200
commit8bd30999098567b3bdb84a6ca65c071952192932 (patch)
treea50f28fd9ab4cb4a37ffb3de3b8e3d4fdd91770b /sw
parent46d7119b8be03968017e59d882e5671350304e15 (diff)
tdf#120262 sw floattable: don't wrap text around fly when no content would fit
The document has 2 pages with 2 floating tables, but instead Writer had a single page with 2 overlapping floating tables. What happened is that most of the horizontal space on page 1 was used by the floating table, but out of the 10466 twips body width, 11 remained (after accounting for the floating table and its margin. Considering that the empty paragraph needs no space, the paragraph marker was shifted up, next to the floating table, leading to losing page 2 and overlapping floating tables. Fix the problem by checking if the remaining space has some minimal size: if it has no space to host any actual content, then shift the paragraph marker down (in compat mode), similar to what Word >= 2013 does. Note this only fixes the "DOCX, Word >= 2013" version, the original bug DOC file still needs more work. Change-Id: I00864d9b3ae662cdf19fa63e004da1ee1cc7be7c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154409 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'sw')
-rw-r--r--sw/CppunitTest_sw_core_text.mk1
-rw-r--r--sw/qa/core/text/data/floattable-wrap-empty-para.docxbin0 -> 16195 bytes
-rw-r--r--sw/qa/core/text/itrform2.cxx59
-rw-r--r--sw/source/core/text/itrform2.cxx13
4 files changed, 70 insertions, 3 deletions
diff --git a/sw/CppunitTest_sw_core_text.mk b/sw/CppunitTest_sw_core_text.mk
index a04824e08e07..477e25b91612 100644
--- a/sw/CppunitTest_sw_core_text.mk
+++ b/sw/CppunitTest_sw_core_text.mk
@@ -16,6 +16,7 @@ $(eval $(call gb_CppunitTest_use_common_precompiled_header,sw_core_text))
$(eval $(call gb_CppunitTest_add_exception_objects,sw_core_text, \
sw/qa/core/text/frmform \
sw/qa/core/text/itratr \
+ sw/qa/core/text/itrform2 \
sw/qa/core/text/text \
))
diff --git a/sw/qa/core/text/data/floattable-wrap-empty-para.docx b/sw/qa/core/text/data/floattable-wrap-empty-para.docx
new file mode 100644
index 000000000000..91e8a141c15a
--- /dev/null
+++ b/sw/qa/core/text/data/floattable-wrap-empty-para.docx
Binary files differ
diff --git a/sw/qa/core/text/itrform2.cxx b/sw/qa/core/text/itrform2.cxx
new file mode 100644
index 000000000000..066a8fb331a6
--- /dev/null
+++ b/sw/qa/core/text/itrform2.cxx
@@ -0,0 +1,59 @@
+/* -*- 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/.
+ */
+
+#include <swmodeltestbase.hxx>
+
+#include <memory>
+
+#include <IDocumentLayoutAccess.hxx>
+#include <rootfrm.hxx>
+#include <sortedobjs.hxx>
+#include <pagefrm.hxx>
+
+namespace
+{
+/// Covers sw/source/core/text/itrform2.cxx fixes.
+class Test : public SwModelTestBase
+{
+public:
+ Test()
+ : SwModelTestBase("/sw/qa/core/text/data/")
+ {
+ }
+};
+
+CPPUNIT_TEST_FIXTURE(Test, testFloattableWrapEmptyParagraph)
+{
+ // Given a document with 2 pages, a floating table on both pages:
+ createSwDoc("floattable-wrap-empty-para.docx");
+
+ // When calculating the layout:
+ calcLayout();
+
+ // Then make sure that each page has exactly 1 floating table:
+ SwDoc* pDoc = getSwDoc();
+ SwRootFrame* pLayout = pDoc->getIDocumentLayoutAccess().GetCurrentLayout();
+ auto pPage = dynamic_cast<SwPageFrame*>(pLayout->Lower());
+ CPPUNIT_ASSERT(pPage);
+ CPPUNIT_ASSERT(pPage->GetSortedObjs());
+ const SwSortedObjs& rPageObjs = *pPage->GetSortedObjs();
+ // Without the accompanying fix in place, this test would have failed with:
+ // - Expected: 1
+ // - Actual : 2
+ // i.e. both tables were on page 1, leading to an overlap.
+ CPPUNIT_ASSERT_EQUAL(static_cast<size_t>(1), rPageObjs.size());
+ auto pPage2 = dynamic_cast<SwPageFrame*>(pPage->GetNext());
+ CPPUNIT_ASSERT(pPage2);
+ CPPUNIT_ASSERT(pPage2->GetSortedObjs());
+ const SwSortedObjs& rPageObjs2 = *pPage2->GetSortedObjs();
+ CPPUNIT_ASSERT_EQUAL(static_cast<size_t>(1), rPageObjs2.size());
+}
+}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sw/source/core/text/itrform2.cxx b/sw/source/core/text/itrform2.cxx
index 51c3a49f2062..5895825bf668 100644
--- a/sw/source/core/text/itrform2.cxx
+++ b/sw/source/core/text/itrform2.cxx
@@ -2714,11 +2714,11 @@ void SwTextFormatter::CalcFlyWidth( SwTextFormatInfo &rInf )
SwRect aLine( rInf.X() + nLeftMin, nTop, rInf.RealWidth() - rInf.X()
+ nLeftMar - nLeftMin , nHeight );
+ bool bWordFlyWrap = GetTextFrame()->GetDoc().getIDocumentSettingAccess().get(DocumentSettingId::ADD_VERTICAL_FLY_OFFSETS);
// tdf#116486: consider also the upper margin from getFramePrintArea because intersections
// with this additional space should lead to repositioning of paragraphs
// For compatibility we grab a related compat flag:
- if (GetTextFrame()->GetDoc().getIDocumentSettingAccess().get(DocumentSettingId::ADD_VERTICAL_FLY_OFFSETS)
- && IsFirstTextLine())
+ if (bWordFlyWrap && IsFirstTextLine())
{
tools::Long nUpper = m_pFrame->getFramePrintArea().Top();
// Make sure that increase only happens in case the upper spacing comes from the upper
@@ -2800,8 +2800,15 @@ void SwTextFormatter::CalcFlyWidth( SwTextFormatInfo &rInf )
if( !aInter.HasArea() )
return;
- const bool bFullLine = aLine.Left() == aInter.Left() &&
+ bool bFullLine = aLine.Left() == aInter.Left() &&
aLine.Right() == aInter.Right();
+ if (!bFullLine && bWordFlyWrap)
+ {
+ // Word >= 2013 style: if there is minimal space remaining, then handle that similar to a
+ // full line and put the actual empty paragraph below the fly.
+ bFullLine = std::abs(aLine.Left() - aInter.Left()) < MINLAY
+ && std::abs(aLine.Right() - aInter.Right()) < MINLAY;
+ }
// Although no text is left, we need to format another line,
// because also empty lines need to avoid a Fly with no wrapping.
po?h=co-6.0-35&id=b3a5620ad5ed08bdb77738d8cb2b8e08495606c7'>source/ast/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/ast/helpcontent2/source/text/smath.po66
-rw-r--r--source/ast/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/ast/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/ast/sd/messages.po370
-rw-r--r--source/ast/sfx2/messages.po335
-rw-r--r--source/ast/sw/messages.po71
-rw-r--r--source/az/cui/messages.po121
-rw-r--r--source/az/extras/source/autocorr/emoji.po3870
-rw-r--r--source/az/officecfg/registry/data/org/openoffice/Office/UI.po235
-rw-r--r--source/az/sd/messages.po362
-rw-r--r--source/az/sfx2/messages.po315
-rw-r--r--source/az/sw/messages.po55
-rw-r--r--source/be/cui/messages.po133
-rw-r--r--source/be/dictionaries/cs_CZ.po12
-rw-r--r--source/be/dictionaries/gd_GB.po11
-rw-r--r--source/be/dictionaries/gug.po11
-rw-r--r--source/be/extensions/messages.po44
-rw-r--r--source/be/extras/source/autocorr/emoji.po4054
-rw-r--r--source/be/formula/messages.po52
-rw-r--r--source/be/librelogo/source/pythonpath.po62
-rw-r--r--source/be/officecfg/registry/data/org/openoffice/Office.po158
-rw-r--r--source/be/officecfg/registry/data/org/openoffice/Office/UI.po332
-rw-r--r--source/be/reportdesign/messages.po9
-rw-r--r--source/be/sc/messages.po14
-rw-r--r--source/be/scaddins/messages.po36
-rw-r--r--source/be/sccomp/messages.po13
-rw-r--r--source/be/sd/messages.po1213
-rw-r--r--source/be/sfx2/messages.po340
-rw-r--r--source/be/svtools/messages.po115
-rw-r--r--source/be/svx/messages.po146
-rw-r--r--source/be/sw/messages.po74
-rw-r--r--source/be/uui/messages.po19
-rw-r--r--source/bg/cui/messages.po125
-rw-r--r--source/bg/extras/source/autocorr/emoji.po3948
-rw-r--r--source/bg/helpcontent2/source/auxiliary.po6
-rw-r--r--source/bg/helpcontent2/source/text/sbasic/guide.po6
-rw-r--r--source/bg/helpcontent2/source/text/sbasic/shared.po100
-rw-r--r--source/bg/helpcontent2/source/text/scalc/01.po68
-rw-r--r--source/bg/helpcontent2/source/text/sdraw.po64
-rw-r--r--source/bg/helpcontent2/source/text/shared.po68
-rw-r--r--source/bg/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/bg/helpcontent2/source/text/shared/01.po430
-rw-r--r--source/bg/helpcontent2/source/text/shared/02.po44
-rw-r--r--source/bg/helpcontent2/source/text/shared/05.po8
-rw-r--r--source/bg/helpcontent2/source/text/shared/autopi.po96
-rw-r--r--source/bg/helpcontent2/source/text/shared/explorer/database.po10
-rw-r--r--source/bg/helpcontent2/source/text/shared/guide.po36
-rw-r--r--source/bg/helpcontent2/source/text/shared/optionen.po38
-rw-r--r--source/bg/helpcontent2/source/text/simpress.po308
-rw-r--r--source/bg/helpcontent2/source/text/simpress/04.po310
-rw-r--r--source/bg/helpcontent2/source/text/simpress/guide.po286
-rw-r--r--source/bg/helpcontent2/source/text/smath.po68
-rw-r--r--source/bg/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/bg/helpcontent2/source/text/swriter/guide.po20
-rw-r--r--source/bg/officecfg/registry/data/org/openoffice/Office/UI.po273
-rw-r--r--source/bg/sd/messages.po374
-rw-r--r--source/bg/sfx2/messages.po327
-rw-r--r--source/bg/svx/messages.po24
-rw-r--r--source/bg/sw/messages.po72
-rw-r--r--source/bg/wizards/source/resources.po29
-rw-r--r--source/bn-IN/cui/messages.po124
-rw-r--r--source/bn-IN/extras/source/autocorr/emoji.po3855
-rw-r--r--source/bn-IN/helpcontent2/source/text/sbasic/shared.po82
-rw-r--r--source/bn-IN/helpcontent2/source/text/scalc/01.po40
-rw-r--r--source/bn-IN/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared.po66
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/01.po414
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/02.po40
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/autopi.po94
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/optionen.po38
-rw-r--r--source/bn-IN/helpcontent2/source/text/simpress.po306
-rw-r--r--source/bn-IN/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/bn-IN/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/bn-IN/helpcontent2/source/text/smath.po66
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/bn-IN/sd/messages.po370
-rw-r--r--source/bn-IN/sfx2/messages.po335
-rw-r--r--source/bn-IN/sw/messages.po68
-rw-r--r--source/bn/cui/messages.po121
-rw-r--r--source/bn/extras/source/autocorr/emoji.po3852
-rw-r--r--source/bn/helpcontent2/source/text/sbasic/shared.po82
-rw-r--r--source/bn/helpcontent2/source/text/scalc/01.po40
-rw-r--r--source/bn/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/bn/helpcontent2/source/text/shared.po66
-rw-r--r--source/bn/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/bn/helpcontent2/source/text/shared/01.po414
-rw-r--r--source/bn/helpcontent2/source/text/shared/02.po40
-rw-r--r--source/bn/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/bn/helpcontent2/source/text/shared/autopi.po94
-rw-r--r--source/bn/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/bn/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/bn/helpcontent2/source/text/shared/optionen.po38
-rw-r--r--source/bn/helpcontent2/source/text/simpress.po306
-rw-r--r--source/bn/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/bn/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/bn/helpcontent2/source/text/smath.po66
-rw-r--r--source/bn/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/bn/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/bn/sd/messages.po368
-rw-r--r--source/bn/sfx2/messages.po320
-rw-r--r--source/bn/sw/messages.po65
-rw-r--r--source/bo/cui/messages.po121
-rw-r--r--source/bo/extras/source/autocorr/emoji.po3852
-rw-r--r--source/bo/helpcontent2/source/text/sbasic/shared.po82
-rw-r--r--source/bo/helpcontent2/source/text/scalc/01.po40
-rw-r--r--source/bo/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/bo/helpcontent2/source/text/shared.po66
-rw-r--r--source/bo/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/bo/helpcontent2/source/text/shared/01.po414
-rw-r--r--source/bo/helpcontent2/source/text/shared/02.po40
-rw-r--r--source/bo/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/bo/helpcontent2/source/text/shared/autopi.po94
-rw-r--r--source/bo/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/bo/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/bo/helpcontent2/source/text/shared/optionen.po38
-rw-r--r--source/bo/helpcontent2/source/text/simpress.po306
-rw-r--r--source/bo/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/bo/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/bo/helpcontent2/source/text/smath.po66
-rw-r--r--source/bo/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/bo/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/bo/sd/messages.po368
-rw-r--r--source/bo/sfx2/messages.po320
-rw-r--r--source/bo/sw/messages.po65
-rw-r--r--source/br/cui/messages.po124
-rw-r--r--source/br/extras/source/autocorr/emoji.po3948
-rw-r--r--source/br/officecfg/registry/data/org/openoffice/Office/UI.po252
-rw-r--r--source/br/sd/messages.po372
-rw-r--r--source/br/sfx2/messages.po335
-rw-r--r--source/br/sw/messages.po71
-rw-r--r--source/brx/cui/messages.po121
-rw-r--r--source/brx/extras/source/autocorr/emoji.po3852
-rw-r--r--source/brx/officecfg/registry/data/org/openoffice/Office/UI.po253
-rw-r--r--source/brx/sd/messages.po368
-rw-r--r--source/brx/sfx2/messages.po320
-rw-r--r--source/brx/sw/messages.po65
-rw-r--r--source/bs/cui/messages.po124
-rw-r--r--source/bs/extras/source/autocorr/emoji.po3861
-rw-r--r--source/bs/helpcontent2/source/text/sbasic/shared.po78
-rw-r--r--source/bs/helpcontent2/source/text/scalc/01.po40
-rw-r--r--source/bs/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/bs/helpcontent2/source/text/shared.po66
-rw-r--r--source/bs/helpcontent2/source/text/shared/00.po4
-rw-r--r--source/bs/helpcontent2/source/text/shared/01.po428
-rw-r--r--source/bs/helpcontent2/source/text/shared/02.po28
-rw-r--r--source/bs/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/bs/helpcontent2/source/text/shared/autopi.po48
-rw-r--r--source/bs/helpcontent2/source/text/shared/explorer/database.po4
-rw-r--r--source/bs/helpcontent2/source/text/shared/guide.po30
-rw-r--r--source/bs/helpcontent2/source/text/shared/optionen.po36
-rw-r--r--source/bs/helpcontent2/source/text/simpress.po306
-rw-r--r--source/bs/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/bs/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/bs/helpcontent2/source/text/smath.po66
-rw-r--r--source/bs/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/bs/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/bs/sd/messages.po370
-rw-r--r--source/bs/sfx2/messages.po335
-rw-r--r--source/bs/sw/messages.po71
-rw-r--r--source/ca-valencia/cui/messages.po124
-rw-r--r--source/ca-valencia/extras/source/autocorr/emoji.po3932
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sbasic/shared.po82
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc/01.po40
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared.po66
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/01.po434
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/02.po42
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/autopi.po94
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/optionen.po38
-rw-r--r--source/ca-valencia/helpcontent2/source/text/simpress.po306
-rw-r--r--source/ca-valencia/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/ca-valencia/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/ca-valencia/helpcontent2/source/text/smath.po66
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/ca-valencia/sd/messages.po370
-rw-r--r--source/ca-valencia/sfx2/messages.po335
-rw-r--r--source/ca-valencia/sw/messages.po71
-rw-r--r--source/ca/cui/messages.po123
-rw-r--r--source/ca/extras/source/autocorr/emoji.po3948
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/shared.po84
-rw-r--r--source/ca/helpcontent2/source/text/scalc/01.po54
-rw-r--r--source/ca/helpcontent2/source/text/sdraw.po60
-rw-r--r--source/ca/helpcontent2/source/text/shared.po68
-rw-r--r--source/ca/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/ca/helpcontent2/source/text/shared/01.po434
-rw-r--r--source/ca/helpcontent2/source/text/shared/02.po42
-rw-r--r--source/ca/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/ca/helpcontent2/source/text/shared/autopi.po94
-rw-r--r--source/ca/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/ca/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/ca/helpcontent2/source/text/shared/optionen.po40
-rw-r--r--source/ca/helpcontent2/source/text/simpress.po308
-rw-r--r--source/ca/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/ca/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/ca/helpcontent2/source/text/smath.po66
-rw-r--r--source/ca/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/ca/officecfg/registry/data/org/openoffice/Office/UI.po259
-rw-r--r--source/ca/sc/messages.po222
-rw-r--r--source/ca/sd/messages.po376
-rw-r--r--source/ca/sfx2/messages.po337
-rw-r--r--source/ca/sw/messages.po73
-rw-r--r--source/ca/wizards/source/resources.po37
-rw-r--r--source/cs/cui/messages.po125
-rw-r--r--source/cs/extras/source/autocorr/emoji.po3954
-rw-r--r--source/cs/helpcontent2/source/text/sbasic/shared.po82
-rw-r--r--source/cs/helpcontent2/source/text/scalc/01.po60
-rw-r--r--source/cs/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/cs/helpcontent2/source/text/shared.po66
-rw-r--r--source/cs/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/cs/helpcontent2/source/text/shared/01.po434
-rw-r--r--source/cs/helpcontent2/source/text/shared/02.po42
-rw-r--r--source/cs/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/cs/helpcontent2/source/text/shared/autopi.po94
-rw-r--r--source/cs/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/cs/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/cs/helpcontent2/source/text/shared/optionen.po40
-rw-r--r--source/cs/helpcontent2/source/text/simpress.po306
-rw-r--r--source/cs/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/cs/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/cs/helpcontent2/source/text/smath.po66
-rw-r--r--source/cs/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/cs/officecfg/registry/data/org/openoffice/Office/UI.po259
-rw-r--r--source/cs/sd/messages.po378
-rw-r--r--source/cs/sfx2/messages.po337
-rw-r--r--source/cs/sw/messages.po66
-rw-r--r--source/cy/cui/messages.po123
-rw-r--r--source/cy/extras/source/autocorr/emoji.po3948
-rw-r--r--source/cy/officecfg/registry/data/org/openoffice/Office/UI.po259
-rw-r--r--source/cy/sd/messages.po371
-rw-r--r--source/cy/sfx2/messages.po335
-rw-r--r--source/cy/sw/messages.po66
-rw-r--r--source/da/cui/messages.po125
-rw-r--r--source/da/extras/source/autocorr/emoji.po3954
-rw-r--r--source/da/helpcontent2/source/text/sbasic/shared.po90
-rw-r--r--source/da/helpcontent2/source/text/scalc/01.po68
-rw-r--r--source/da/helpcontent2/source/text/sdraw.po60
-rw-r--r--source/da/helpcontent2/source/text/shared.po68
-rw-r--r--source/da/helpcontent2/source/text/shared/00.po8
-rw-r--r--source/da/helpcontent2/source/text/shared/01.po436
-rw-r--r--source/da/helpcontent2/source/text/shared/02.po44
-rw-r--r--source/da/helpcontent2/source/text/shared/05.po16
-rw-r--r--source/da/helpcontent2/source/text/shared/autopi.po96
-rw-r--r--source/da/helpcontent2/source/text/shared/explorer/database.po8
-rw-r--r--source/da/helpcontent2/source/text/shared/guide.po36
-rw-r--r--source/da/helpcontent2/source/text/shared/optionen.po42
-rw-r--r--source/da/helpcontent2/source/text/simpress.po308
-rw-r--r--source/da/helpcontent2/source/text/simpress/04.po308
-rw-r--r--source/da/helpcontent2/source/text/simpress/guide.po284
-rw-r--r--source/da/helpcontent2/source/text/smath.po66
-rw-r--r--source/da/helpcontent2/source/text/swriter/guide.po16
-rw-r--r--source/da/officecfg/registry/data/org/openoffice/Office/UI.po261
-rw-r--r--source/da/sd/messages.po372
-rw-r--r--source/da/sfx2/messages.po337
-rw-r--r--source/da/sw/messages.po68
-rw-r--r--source/de/cui/messages.po125
-rw-r--r--source/de/extras/source/autocorr/emoji.po3872
-rw-r--r--source/de/helpcontent2/source/text/sbasic/guide.po8
-rw-r--r--source/de/helpcontent2/source/text/sbasic/shared.po104
-rw-r--r--source/de/helpcontent2/source/text/scalc/01.po138
-rw-r--r--source/de/helpcontent2/source/text/scalc/05.po10
-rw-r--r--source/de/helpcontent2/source/text/scalc/guide.po26
-rw-r--r--source/de/helpcontent2/source/text/schart/01.po34
-rw-r--r--source/de/helpcontent2/source/text/sdraw.po68
-rw-r--r--source/de/helpcontent2/source/text/shared.po76
-rw-r--r--source/de/helpcontent2/source/text/shared/00.po44
-rw-r--r--source/de/helpcontent2/source/text/shared/01.po514
-rw-r--r--source/de/helpcontent2/source/text/shared/02.po46
-rw-r--r--source/de/helpcontent2/source/text/shared/05.po8
-rw-r--r--source/de/helpcontent2/source/text/shared/autopi.po98
-rw-r--r--source/de/helpcontent2/source/text/shared/explorer/database.po12
-rw-r--r--source/de/helpcontent2/source/text/shared/guide.po36
-rw-r--r--source/de/helpcontent2/source/text/shared/optionen.po40
-rw-r--r--source/de/helpcontent2/source/text/simpress.po308
-rw-r--r--source/de/helpcontent2/source/text/simpress/01.po6
-rw-r--r--source/de/helpcontent2/source/text/simpress/04.po310
-rw-r--r--source/de/helpcontent2/source/text/simpress/guide.po286
-rw-r--r--source/de/helpcontent2/source/text/smath.po68
-rw-r--r--source/de/helpcontent2/source/text/swriter/guide.po20
-rw-r--r--source/de/helpcontent2/source/text/swriter/librelogo.po6
-rw-r--r--source/de/officecfg/registry/data/org/openoffice/Office/UI.po265
-rw-r--r--source/de/sd/messages.po374
-rw-r--r--source/de/sfx2/messages.po325
-rw-r--r--source/de/sw/messages.po74
-rw-r--r--source/dgo/cui/messages.po121
-rw-r--r--source/dgo/extras/source/autocorr/emoji.po3858
-rw-r--r--source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/dgo/sd/messages.po371
-rw-r--r--source/dgo/sfx2/messages.po320
-rw-r--r--source/dgo/sw/messages.po71
-rw-r--r--source/dz/cui/messages.po121
-rw-r--r--source/dz/extras/source/autocorr/emoji.po3849
-rw-r--r--source/dz/helpcontent2/source/text/sbasic/shared.po82
-rw-r--r--source/dz/helpcontent2/source/text/scalc/01.po40
-rw-r--r--source/dz/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/dz/helpcontent2/source/text/shared.po66
-rw-r--r--source/dz/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/dz/helpcontent2/source/text/shared/01.po430
-rw-r--r--source/dz/helpcontent2/source/text/shared/02.po40
-rw-r--r--source/dz/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/dz/helpcontent2/source/text/shared/autopi.po94
-rw-r--r--source/dz/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/dz/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/dz/helpcontent2/source/text/shared/optionen.po38
-rw-r--r--source/dz/helpcontent2/source/text/simpress.po306
-rw-r--r--source/dz/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/dz/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/dz/helpcontent2/source/text/smath.po66
-rw-r--r--source/dz/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/dz/officecfg/registry/data/org/openoffice/Office/UI.po255
-rw-r--r--source/dz/sd/messages.po368
-rw-r--r--source/dz/sfx2/messages.po320
-rw-r--r--source/dz/sw/messages.po65
-rw-r--r--source/el/cui/messages.po123
-rw-r--r--source/el/extras/source/autocorr/emoji.po3952
-rw-r--r--source/el/helpcontent2/source/text/sbasic/shared.po92
-rw-r--r--source/el/helpcontent2/source/text/scalc/01.po68
-rw-r--r--source/el/helpcontent2/source/text/sdraw.po60
-rw-r--r--source/el/helpcontent2/source/text/shared.po68
-rw-r--r--source/el/helpcontent2/source/text/shared/00.po8
-rw-r--r--source/el/helpcontent2/source/text/shared/01.po436
-rw-r--r--source/el/helpcontent2/source/text/shared/02.po44
-rw-r--r--source/el/helpcontent2/source/text/shared/05.po8
-rw-r--r--source/el/helpcontent2/source/text/shared/autopi.po96
-rw-r--r--source/el/helpcontent2/source/text/shared/explorer/database.po8
-rw-r--r--source/el/helpcontent2/source/text/shared/guide.po36
-rw-r--r--source/el/helpcontent2/source/text/shared/optionen.po48
-rw-r--r--source/el/helpcontent2/source/text/simpress.po308
-rw-r--r--source/el/helpcontent2/source/text/simpress/04.po308
-rw-r--r--source/el/helpcontent2/source/text/simpress/guide.po284
-rw-r--r--source/el/helpcontent2/source/text/smath.po66
-rw-r--r--source/el/helpcontent2/source/text/swriter/guide.po16
-rw-r--r--source/el/officecfg/registry/data/org/openoffice/Office/UI.po263
-rw-r--r--source/el/sd/messages.po376
-rw-r--r--source/el/sfx2/messages.po331
-rw-r--r--source/el/sw/messages.po68
-rw-r--r--source/en-GB/cui/messages.po125
-rw-r--r--source/en-GB/extras/source/autocorr/emoji.po3952
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/shared.po234
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/01.po114
-rw-r--r--source/en-GB/helpcontent2/source/text/sdraw.po60
-rw-r--r--source/en-GB/helpcontent2/source/text/shared.po68
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/00.po8
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/01.po444
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/02.po44
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/05.po8
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/autopi.po96
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/explorer/database.po8
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/guide.po36
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/optionen.po42
-rw-r--r--source/en-GB/helpcontent2/source/text/simpress.po308
-rw-r--r--source/en-GB/helpcontent2/source/text/simpress/04.po316
-rw-r--r--source/en-GB/helpcontent2/source/text/simpress/guide.po284
-rw-r--r--source/en-GB/helpcontent2/source/text/smath.po66
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/00.po8
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/01.po8
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/guide.po20
-rw-r--r--source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po263
-rw-r--r--source/en-GB/sd/messages.po374
-rw-r--r--source/en-GB/sfx2/messages.po325
-rw-r--r--source/en-GB/sw/messages.po72
-rw-r--r--source/en-ZA/cui/messages.po121
-rw-r--r--source/en-ZA/extras/source/autocorr/emoji.po3852
-rw-r--r--source/en-ZA/helpcontent2/source/text/sbasic/shared.po82
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/01.po40
-rw-r--r--source/en-ZA/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared.po66
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/01.po434
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/02.po40
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/autopi.po94
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/optionen.po38
-rw-r--r--source/en-ZA/helpcontent2/source/text/simpress.po306
-rw-r--r--source/en-ZA/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/en-ZA/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/en-ZA/helpcontent2/source/text/smath.po66
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/en-ZA/sd/messages.po368
-rw-r--r--source/en-ZA/sfx2/messages.po320
-rw-r--r--source/en-ZA/sw/messages.po65
-rw-r--r--source/eo/cui/messages.po123
-rw-r--r--source/eo/extras/source/autocorr/emoji.po3952
-rw-r--r--source/eo/helpcontent2/source/text/sbasic/shared.po82
-rw-r--r--source/eo/helpcontent2/source/text/scalc/01.po40
-rw-r--r--source/eo/helpcontent2/source/text/sdraw.po60
-rw-r--r--source/eo/helpcontent2/source/text/shared.po68
-rw-r--r--source/eo/helpcontent2/source/text/shared/00.po12
-rw-r--r--source/eo/helpcontent2/source/text/shared/01.po424
-rw-r--r--source/eo/helpcontent2/source/text/shared/02.po32
-rw-r--r--source/eo/helpcontent2/source/text/shared/05.po8
-rw-r--r--source/eo/helpcontent2/source/text/shared/autopi.po48
-rw-r--r--source/eo/helpcontent2/source/text/shared/explorer/database.po4
-rw-r--r--source/eo/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/eo/helpcontent2/source/text/shared/optionen.po32
-rw-r--r--source/eo/helpcontent2/source/text/simpress.po308
-rw-r--r--source/eo/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/eo/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/eo/helpcontent2/source/text/smath.po66
-rw-r--r--source/eo/helpcontent2/source/text/swriter/guide.po16
-rw-r--r--source/eo/officecfg/registry/data/org/openoffice/Office/UI.po259
-rw-r--r--source/eo/sd/messages.po372
-rw-r--r--source/eo/sfx2/messages.po337
-rw-r--r--source/eo/sw/messages.po68
-rw-r--r--source/es/cui/messages.po125
-rw-r--r--source/es/extras/source/autocorr/emoji.po3952
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared.po76
-rw-r--r--source/es/helpcontent2/source/text/scalc/01.po64
-rw-r--r--source/es/helpcontent2/source/text/sdraw.po64
-rw-r--r--source/es/helpcontent2/source/text/shared.po76
-rw-r--r--source/es/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/es/helpcontent2/source/text/shared/01.po452
-rw-r--r--source/es/helpcontent2/source/text/shared/02.po46
-rw-r--r--source/es/helpcontent2/source/text/shared/05.po8
-rw-r--r--source/es/helpcontent2/source/text/shared/autopi.po98
-rw-r--r--source/es/helpcontent2/source/text/shared/explorer/database.po8
-rw-r--r--source/es/helpcontent2/source/text/shared/guide.po36
-rw-r--r--source/es/helpcontent2/source/text/shared/optionen.po42
-rw-r--r--source/es/helpcontent2/source/text/simpress.po308
-rw-r--r--source/es/helpcontent2/source/text/simpress/04.po308
-rw-r--r--source/es/helpcontent2/source/text/simpress/guide.po284
-rw-r--r--source/es/helpcontent2/source/text/smath.po68
-rw-r--r--source/es/helpcontent2/source/text/swriter/guide.po24
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office/UI.po261
-rw-r--r--source/es/sc/messages.po9
-rw-r--r--source/es/sd/messages.po382
-rw-r--r--source/es/sfx2/messages.po331
-rw-r--r--source/es/svx/messages.po28
-rw-r--r--source/es/sw/messages.po70
-rw-r--r--source/es/wizards/source/resources.po23
-rw-r--r--source/et/cui/messages.po330
-rw-r--r--source/et/extras/source/autocorr/emoji.po3952
-rw-r--r--source/et/helpcontent2/source/text/sbasic/shared.po82
-rw-r--r--source/et/helpcontent2/source/text/scalc/01.po54
-rw-r--r--source/et/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/et/helpcontent2/source/text/shared.po66
-rw-r--r--source/et/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/et/helpcontent2/source/text/shared/01.po434
-rw-r--r--source/et/helpcontent2/source/text/shared/02.po42
-rw-r--r--source/et/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/et/helpcontent2/source/text/shared/autopi.po68
-rw-r--r--source/et/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/et/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/et/helpcontent2/source/text/shared/optionen.po40
-rw-r--r--source/et/helpcontent2/source/text/simpress.po306
-rw-r--r--source/et/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/et/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/et/helpcontent2/source/text/smath.po68
-rw-r--r--source/et/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/et/officecfg/registry/data/org/openoffice/Office/UI.po331
-rw-r--r--source/et/sd/messages.po380
-rw-r--r--source/et/sfx2/messages.po337
-rw-r--r--source/et/sw/messages.po134
-rw-r--r--source/eu/cui/messages.po125
-rw-r--r--source/eu/extras/source/autocorr/emoji.po3952
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/shared.po86
-rw-r--r--source/eu/helpcontent2/source/text/scalc/01.po66
-rw-r--r--source/eu/helpcontent2/source/text/sdraw.po64
-rw-r--r--source/eu/helpcontent2/source/text/shared.po68
-rw-r--r--source/eu/helpcontent2/source/text/shared/00.po8
-rw-r--r--source/eu/helpcontent2/source/text/shared/01.po438
-rw-r--r--source/eu/helpcontent2/source/text/shared/02.po48
-rw-r--r--source/eu/helpcontent2/source/text/shared/05.po8
-rw-r--r--source/eu/helpcontent2/source/text/shared/autopi.po98
-rw-r--r--source/eu/helpcontent2/source/text/shared/explorer/database.po8
-rw-r--r--source/eu/helpcontent2/source/text/shared/guide.po36
-rw-r--r--source/eu/helpcontent2/source/text/shared/optionen.po42
-rw-r--r--source/eu/helpcontent2/source/text/simpress.po308
-rw-r--r--source/eu/helpcontent2/source/text/simpress/04.po310
-rw-r--r--source/eu/helpcontent2/source/text/simpress/guide.po286
-rw-r--r--source/eu/helpcontent2/source/text/smath.po66
-rw-r--r--source/eu/helpcontent2/source/text/swriter/guide.po16
-rw-r--r--source/eu/officecfg/registry/data/org/openoffice/Office/UI.po265
-rw-r--r--source/eu/sd/messages.po372
-rw-r--r--source/eu/sfx2/messages.po329
-rw-r--r--source/eu/sw/messages.po74
-rw-r--r--source/fa/cui/messages.po121
-rw-r--r--source/fa/extras/source/autocorr/emoji.po3852
-rw-r--r--source/fa/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/fa/sd/messages.po368
-rw-r--r--source/fa/sfx2/messages.po320
-rw-r--r--source/fa/sw/messages.po65
-rw-r--r--source/fi/cui/messages.po124
-rw-r--r--source/fi/extras/source/autocorr/emoji.po3948
-rw-r--r--source/fi/helpcontent2/source/text/sbasic/shared.po82
-rw-r--r--source/fi/helpcontent2/source/text/scalc/01.po38
-rw-r--r--source/fi/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/fi/helpcontent2/source/text/shared.po66
-rw-r--r--source/fi/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/fi/helpcontent2/source/text/shared/01.po434
-rw-r--r--source/fi/helpcontent2/source/text/shared/02.po42
-rw-r--r--source/fi/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/fi/helpcontent2/source/text/shared/autopi.po94
-rw-r--r--source/fi/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/fi/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/fi/helpcontent2/source/text/shared/optionen.po40
-rw-r--r--source/fi/helpcontent2/source/text/simpress.po306
-rw-r--r--source/fi/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/fi/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/fi/helpcontent2/source/text/smath.po66
-rw-r--r--source/fi/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/fi/officecfg/registry/data/org/openoffice/Office/UI.po259
-rw-r--r--source/fi/sd/messages.po371
-rw-r--r--source/fi/sfx2/messages.po335
-rw-r--r--source/fi/sw/messages.po66
-rw-r--r--source/fr/cui/messages.po125
-rw-r--r--source/fr/extras/source/autocorr/emoji.po3952
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/shared.po92
-rw-r--r--source/fr/helpcontent2/source/text/scalc/01.po68
-rw-r--r--source/fr/helpcontent2/source/text/sdraw.po66
-rw-r--r--source/fr/helpcontent2/source/text/shared.po68
-rw-r--r--source/fr/helpcontent2/source/text/shared/00.po8
-rw-r--r--source/fr/helpcontent2/source/text/shared/01.po436
-rw-r--r--source/fr/helpcontent2/source/text/shared/02.po44
-rw-r--r--source/fr/helpcontent2/source/text/shared/05.po8
-rw-r--r--source/fr/helpcontent2/source/text/shared/autopi.po96
-rw-r--r--source/fr/helpcontent2/source/text/shared/explorer/database.po10
-rw-r--r--source/fr/helpcontent2/source/text/shared/guide.po36
-rw-r--r--source/fr/helpcontent2/source/text/shared/optionen.po46
-rw-r--r--source/fr/helpcontent2/source/text/simpress.po308
-rw-r--r--source/fr/helpcontent2/source/text/simpress/04.po308
-rw-r--r--source/fr/helpcontent2/source/text/simpress/guide.po284
-rw-r--r--source/fr/helpcontent2/source/text/smath.po66
-rw-r--r--source/fr/helpcontent2/source/text/swriter/guide.po20
-rw-r--r--source/fr/officecfg/registry/data/org/openoffice/Office/UI.po265
-rw-r--r--source/fr/sd/messages.po376
-rw-r--r--source/fr/sfx2/messages.po333
-rw-r--r--source/fr/svx/messages.po10
-rw-r--r--source/fr/sw/messages.po72
-rw-r--r--source/ga/cui/messages.po125
-rw-r--r--source/ga/extras/source/autocorr/emoji.po3948
-rw-r--r--source/ga/officecfg/registry/data/org/openoffice/Office/UI.po263
-rw-r--r--source/ga/sd/messages.po372
-rw-r--r--source/ga/sfx2/messages.po325
-rw-r--r--source/ga/sw/messages.po72
-rw-r--r--source/gd/cui/messages.po123
-rw-r--r--source/gd/extras/source/autocorr/emoji.po3948
-rw-r--r--source/gd/officecfg/registry/data/org/openoffice/Office/UI.po261
-rw-r--r--source/gd/sd/messages.po370
-rw-r--r--source/gd/sfx2/messages.po335
-rw-r--r--source/gd/sw/messages.po68
-rw-r--r--source/gl/cui/messages.po123
-rw-r--r--source/gl/extras/source/autocorr/emoji.po3946
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/shared.po74
-rw-r--r--source/gl/helpcontent2/source/text/scalc/01.po40
-rw-r--r--source/gl/helpcontent2/source/text/sdraw.po60
-rw-r--r--source/gl/helpcontent2/source/text/shared.po66
-rw-r--r--source/gl/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/gl/helpcontent2/source/text/shared/01.po432
-rw-r--r--source/gl/helpcontent2/source/text/shared/02.po40
-rw-r--r--source/gl/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/gl/helpcontent2/source/text/shared/autopi.po92
-rw-r--r--source/gl/helpcontent2/source/text/shared/explorer/database.po8
-rw-r--r--source/gl/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/gl/helpcontent2/source/text/shared/optionen.po38
-rw-r--r--source/gl/helpcontent2/source/text/simpress.po306
-rw-r--r--source/gl/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/gl/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/gl/helpcontent2/source/text/smath.po68
-rw-r--r--source/gl/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/gl/officecfg/registry/data/org/openoffice/Office/UI.po259
-rw-r--r--source/gl/sd/messages.po372
-rw-r--r--source/gl/sfx2/messages.po337
-rw-r--r--source/gl/sw/messages.po68
-rw-r--r--source/gu/cui/messages.po124
-rw-r--r--source/gu/extras/source/autocorr/emoji.po3855
-rw-r--r--source/gu/helpcontent2/source/text/sbasic/shared.po82
-rw-r--r--source/gu/helpcontent2/source/text/scalc/01.po40
-rw-r--r--source/gu/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/gu/helpcontent2/source/text/shared.po66
-rw-r--r--source/gu/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/gu/helpcontent2/source/text/shared/01.po430
-rw-r--r--source/gu/helpcontent2/source/text/shared/02.po36
-rw-r--r--source/gu/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/gu/helpcontent2/source/text/shared/autopi.po90
-rw-r--r--source/gu/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/gu/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/gu/helpcontent2/source/text/shared/optionen.po38
-rw-r--r--source/gu/helpcontent2/source/text/simpress.po306
-rw-r--r--source/gu/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/gu/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/gu/helpcontent2/source/text/smath.po66
-rw-r--r--source/gu/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/gu/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/gu/sd/messages.po370
-rw-r--r--source/gu/sfx2/messages.po335
-rw-r--r--source/gu/sw/messages.po71
-rw-r--r--source/gug/cui/messages.po124
-rw-r--r--source/gug/extras/source/autocorr/emoji.po3901
-rw-r--r--source/gug/officecfg/registry/data/org/openoffice/Office/UI.po255
-rw-r--r--source/gug/sd/messages.po371
-rw-r--r--source/gug/sfx2/messages.po332
-rw-r--r--source/gug/sw/messages.po66
-rw-r--r--source/he/cui/messages.po124
-rw-r--r--source/he/extras/source/autocorr/emoji.po3914
-rw-r--r--source/he/helpcontent2/source/text/sbasic/shared.po64
-rw-r--r--source/he/helpcontent2/source/text/scalc/01.po38
-rw-r--r--source/he/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/he/helpcontent2/source/text/shared.po66
-rw-r--r--source/he/helpcontent2/source/text/shared/00.po4
-rw-r--r--source/he/helpcontent2/source/text/shared/01.po424
-rw-r--r--source/he/helpcontent2/source/text/shared/02.po34
-rw-r--r--source/he/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/he/helpcontent2/source/text/shared/autopi.po48
-rw-r--r--source/he/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/he/helpcontent2/source/text/shared/guide.po32
-rw-r--r--source/he/helpcontent2/source/text/shared/optionen.po30
-rw-r--r--source/he/helpcontent2/source/text/simpress.po306
-rw-r--r--source/he/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/he/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/he/helpcontent2/source/text/smath.po66
-rw-r--r--source/he/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/he/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/he/sd/messages.po367
-rw-r--r--source/he/sfx2/messages.po335
-rw-r--r--source/he/sw/messages.po65
-rw-r--r--source/hi/cui/messages.po124
-rw-r--r--source/hi/extras/source/autocorr/emoji.po3855
-rw-r--r--source/hi/helpcontent2/source/text/sbasic/shared.po64
-rw-r--r--source/hi/helpcontent2/source/text/scalc/01.po38
-rw-r--r--source/hi/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/hi/helpcontent2/source/text/shared.po66
-rw-r--r--source/hi/helpcontent2/source/text/shared/00.po4
-rw-r--r--source/hi/helpcontent2/source/text/shared/01.po420
-rw-r--r--source/hi/helpcontent2/source/text/shared/02.po28
-rw-r--r--source/hi/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/hi/helpcontent2/source/text/shared/autopi.po48
-rw-r--r--source/hi/helpcontent2/source/text/shared/explorer/database.po4
-rw-r--r--source/hi/helpcontent2/source/text/shared/guide.po30
-rw-r--r--source/hi/helpcontent2/source/text/shared/optionen.po30
-rw-r--r--source/hi/helpcontent2/source/text/simpress.po306
-rw-r--r--source/hi/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/hi/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/hi/helpcontent2/source/text/smath.po66
-rw-r--r--source/hi/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/hi/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/hi/sd/messages.po371
-rw-r--r--source/hi/sfx2/messages.po335
-rw-r--r--source/hi/sw/messages.po71
-rw-r--r--source/hr/cui/messages.po125
-rw-r--r--source/hr/extras/source/autocorr/emoji.po3948
-rw-r--r--source/hr/helpcontent2/source/text/sbasic/shared.po64
-rw-r--r--source/hr/helpcontent2/source/text/scalc/01.po38
-rw-r--r--source/hr/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/hr/helpcontent2/source/text/shared.po66
-rw-r--r--source/hr/helpcontent2/source/text/shared/00.po4
-rw-r--r--source/hr/helpcontent2/source/text/shared/01.po420
-rw-r--r--source/hr/helpcontent2/source/text/shared/02.po32
-rw-r--r--source/hr/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/hr/helpcontent2/source/text/shared/autopi.po48
-rw-r--r--source/hr/helpcontent2/source/text/shared/explorer/database.po4
-rw-r--r--source/hr/helpcontent2/source/text/shared/guide.po30
-rw-r--r--source/hr/helpcontent2/source/text/shared/optionen.po30
-rw-r--r--source/hr/helpcontent2/source/text/simpress.po306
-rw-r--r--source/hr/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/hr/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/hr/helpcontent2/source/text/smath.po66
-rw-r--r--source/hr/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/hr/officecfg/registry/data/org/openoffice/Office/UI.po261
-rw-r--r--source/hr/sd/messages.po370
-rw-r--r--source/hr/sfx2/messages.po337
-rw-r--r--source/hr/sw/messages.po70
-rw-r--r--source/hsb/cui/messages.po124
-rw-r--r--source/hsb/extras/source/autocorr/emoji.po3948
-rw-r--r--source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po259
-rw-r--r--source/hsb/sd/messages.po371
-rw-r--r--source/hsb/sfx2/messages.po335
-rw-r--r--source/hsb/sw/messages.po66
-rw-r--r--source/hu/cui/messages.po124
-rw-r--r--source/hu/extras/source/autocorr/emoji.po3954
-rw-r--r--source/hu/helpcontent2/source/text/sbasic/shared.po82
-rw-r--r--source/hu/helpcontent2/source/text/scalc/01.po60
-rw-r--r--source/hu/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/hu/helpcontent2/source/text/shared.po66
-rw-r--r--source/hu/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/hu/helpcontent2/source/text/shared/01.po434
-rw-r--r--source/hu/helpcontent2/source/text/shared/02.po42
-rw-r--r--source/hu/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/hu/helpcontent2/source/text/shared/autopi.po94
-rw-r--r--source/hu/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/hu/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/hu/helpcontent2/source/text/shared/optionen.po42
-rw-r--r--source/hu/helpcontent2/source/text/simpress.po306
-rw-r--r--source/hu/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/hu/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/hu/helpcontent2/source/text/smath.po66
-rw-r--r--source/hu/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/hu/officecfg/registry/data/org/openoffice/Office/UI.po259
-rw-r--r--source/hu/sd/messages.po371
-rw-r--r--source/hu/sfx2/messages.po337
-rw-r--r--source/hu/sw/messages.po66
-rw-r--r--source/id/cui/messages.po141
-rw-r--r--source/id/extras/source/autocorr/emoji.po3930
-rw-r--r--source/id/helpcontent2/source/text/sbasic/shared.po78
-rw-r--r--source/id/helpcontent2/source/text/scalc/01.po40
-rw-r--r--source/id/helpcontent2/source/text/sdraw.po60
-rw-r--r--source/id/helpcontent2/source/text/shared.po68
-rw-r--r--source/id/helpcontent2/source/text/shared/00.po4
-rw-r--r--source/id/helpcontent2/source/text/shared/01.po424
-rw-r--r--source/id/helpcontent2/source/text/shared/02.po28
-rw-r--r--source/id/helpcontent2/source/text/shared/05.po8
-rw-r--r--source/id/helpcontent2/source/text/shared/autopi.po48
-rw-r--r--source/id/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/id/helpcontent2/source/text/shared/guide.po32
-rw-r--r--source/id/helpcontent2/source/text/shared/optionen.po34
-rw-r--r--source/id/helpcontent2/source/text/simpress.po308
-rw-r--r--source/id/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/id/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/id/helpcontent2/source/text/smath.po68
-rw-r--r--source/id/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/id/officecfg/registry/data/org/openoffice/Office/UI.po285
-rw-r--r--source/id/sd/messages.po371
-rw-r--r--source/id/sfx2/messages.po335
-rw-r--r--source/id/sw/messages.po68
-rw-r--r--source/is/cui/messages.po137
-rw-r--r--source/is/extensions/messages.po8
-rw-r--r--source/is/extras/source/autocorr/emoji.po3952
-rw-r--r--source/is/helpcontent2/source/text/sbasic/shared.po79
-rw-r--r--source/is/helpcontent2/source/text/scalc/01.po40
-rw-r--r--source/is/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/is/helpcontent2/source/text/shared.po66
-rw-r--r--source/is/helpcontent2/source/text/shared/00.po4
-rw-r--r--source/is/helpcontent2/source/text/shared/01.po426
-rw-r--r--source/is/helpcontent2/source/text/shared/02.po36
-rw-r--r--source/is/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/is/helpcontent2/source/text/shared/autopi.po48
-rw-r--r--source/is/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/is/helpcontent2/source/text/shared/guide.po30
-rw-r--r--source/is/helpcontent2/source/text/shared/optionen.po32
-rw-r--r--source/is/helpcontent2/source/text/simpress.po306
-rw-r--r--source/is/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/is/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/is/helpcontent2/source/text/smath.po68
-rw-r--r--source/is/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/is/officecfg/registry/data/org/openoffice/Office.po12
-rw-r--r--source/is/officecfg/registry/data/org/openoffice/Office/UI.po319
-rw-r--r--source/is/sc/messages.po31
-rw-r--r--source/is/scaddins/messages.po30
-rw-r--r--source/is/sd/messages.po478
-rw-r--r--source/is/sfx2/messages.po337
-rw-r--r--source/is/svx/messages.po156
-rw-r--r--source/is/sw/messages.po121
-rw-r--r--source/it/cui/messages.po123
-rw-r--r--source/it/extras/source/autocorr/emoji.po3952
-rw-r--r--source/it/formula/messages.po12
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared.po84
-rw-r--r--source/it/helpcontent2/source/text/scalc/01.po60
-rw-r--r--source/it/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/it/helpcontent2/source/text/shared.po66
-rw-r--r--source/it/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/it/helpcontent2/source/text/shared/01.po434
-rw-r--r--source/it/helpcontent2/source/text/shared/02.po42
-rw-r--r--source/it/helpcontent2/source/text/shared/05.po6
-rw-r--r--source/it/helpcontent2/source/text/shared/autopi.po94
-rw-r--r--source/it/helpcontent2/source/text/shared/explorer/database.po16
-rw-r--r--source/it/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/it/helpcontent2/source/text/shared/optionen.po40
-rw-r--r--source/it/helpcontent2/source/text/simpress.po306
-rw-r--r--source/it/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/it/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/it/helpcontent2/source/text/smath.po66
-rw-r--r--source/it/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/it/officecfg/registry/data/org/openoffice/Office/UI.po259
-rw-r--r--source/it/sc/messages.po135
-rw-r--r--source/it/sd/messages.po480
-rw-r--r--source/it/sfx2/messages.po387
-rw-r--r--source/it/svtools/messages.po10
-rw-r--r--source/it/sw/messages.po66
-rw-r--r--source/it/wizards/source/resources.po125
-rw-r--r--source/ja/cui/messages.po124
-rw-r--r--source/ja/extras/source/autocorr/emoji.po3950
-rw-r--r--source/ja/formula/messages.po24
-rw-r--r--source/ja/helpcontent2/source/text/sbasic/shared.po82
-rw-r--r--source/ja/helpcontent2/source/text/scalc/01.po52
-rw-r--r--source/ja/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/ja/helpcontent2/source/text/shared.po66
-rw-r--r--source/ja/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/ja/helpcontent2/source/text/shared/01.po434
-rw-r--r--source/ja/helpcontent2/source/text/shared/02.po40
-rw-r--r--source/ja/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/ja/helpcontent2/source/text/shared/autopi.po94
-rw-r--r--source/ja/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/ja/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/ja/helpcontent2/source/text/shared/optionen.po38
-rw-r--r--source/ja/helpcontent2/source/text/simpress.po306
-rw-r--r--source/ja/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/ja/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/ja/helpcontent2/source/text/smath.po66
-rw-r--r--source/ja/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/ja/officecfg/registry/data/org/openoffice/Office/UI.po252
-rw-r--r--source/ja/sd/messages.po371
-rw-r--r--source/ja/sfx2/messages.po335
-rw-r--r--source/ja/svx/messages.po22
-rw-r--r--source/ja/sw/messages.po73
-rw-r--r--source/jv/cui/messages.po145
-rw-r--r--source/jv/dbaccess/messages.po12
-rw-r--r--source/jv/desktop/messages.po11
-rw-r--r--source/jv/extensions/messages.po11
-rw-r--r--source/jv/extras/source/autocorr/emoji.po3843
-rw-r--r--source/jv/officecfg/registry/data/org/openoffice/Office/UI.po235
-rw-r--r--source/jv/sd/messages.po362
-rw-r--r--source/jv/sfx2/messages.po315
-rw-r--r--source/jv/sw/messages.po55
-rw-r--r--source/ka/cui/messages.po121
-rw-r--r--source/ka/extras/source/autocorr/emoji.po3855
-rw-r--r--source/ka/helpcontent2/source/text/sbasic/shared.po70
-rw-r--r--source/ka/helpcontent2/source/text/scalc/01.po40
-rw-r--r--source/ka/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/ka/helpcontent2/source/text/shared.po66
-rw-r--r--source/ka/helpcontent2/source/text/shared/00.po4
-rw-r--r--source/ka/helpcontent2/source/text/shared/01.po418
-rw-r--r--source/ka/helpcontent2/source/text/shared/02.po28
-rw-r--r--source/ka/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/ka/helpcontent2/source/text/shared/autopi.po48
-rw-r--r--source/ka/helpcontent2/source/text/shared/explorer/database.po4
-rw-r--r--source/ka/helpcontent2/source/text/shared/guide.po30
-rw-r--r--source/ka/helpcontent2/source/text/shared/optionen.po34
-rw-r--r--source/ka/helpcontent2/source/text/simpress.po306
-rw-r--r--source/ka/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/ka/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/ka/helpcontent2/source/text/smath.po66
-rw-r--r--source/ka/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/ka/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/ka/sd/messages.po368
-rw-r--r--source/ka/sfx2/messages.po319
-rw-r--r--source/ka/sw/messages.po65
-rw-r--r--source/kk/cui/messages.po124
-rw-r--r--source/kk/dictionaries/sq_AL.po12
-rw-r--r--source/kk/extras/source/autocorr/emoji.po3948
-rw-r--r--source/kk/filter/source/config/fragments/filters.po16
-rw-r--r--source/kk/fpicker/messages.po9
-rw-r--r--source/kk/officecfg/registry/data/org/openoffice/Office/UI.po259
-rw-r--r--source/kk/sccomp/messages.po13
-rw-r--r--source/kk/scp2/source/ooo.po10
-rw-r--r--source/kk/sd/messages.po370
-rw-r--r--source/kk/sfx2/messages.po343
-rw-r--r--source/kk/svtools/messages.po18
-rw-r--r--source/kk/svx/messages.po22
-rw-r--r--source/kk/sw/messages.po68
-rw-r--r--source/kk/vcl/messages.po8
-rw-r--r--source/kl/cui/messages.po121
-rw-r--r--source/kl/extras/source/autocorr/emoji.po3834
-rw-r--r--source/kl/officecfg/registry/data/org/openoffice/Office/UI.po235
-rw-r--r--source/kl/sd/messages.po362
-rw-r--r--source/kl/sfx2/messages.po315
-rw-r--r--source/kl/sw/messages.po55
-rw-r--r--source/km/cui/messages.po124
-rw-r--r--source/km/extras/source/autocorr/emoji.po3855
-rw-r--r--source/km/helpcontent2/source/text/sbasic/shared.po82
-rw-r--r--source/km/helpcontent2/source/text/scalc/01.po40
-rw-r--r--source/km/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/km/helpcontent2/source/text/shared.po66
-rw-r--r--source/km/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/km/helpcontent2/source/text/shared/01.po434
-rw-r--r--source/km/helpcontent2/source/text/shared/02.po42
-rw-r--r--source/km/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/km/helpcontent2/source/text/shared/autopi.po94
-rw-r--r--source/km/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/km/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/km/helpcontent2/source/text/shared/optionen.po40
-rw-r--r--source/km/helpcontent2/source/text/simpress.po306
-rw-r--r--source/km/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/km/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/km/helpcontent2/source/text/smath.po66
-rw-r--r--source/km/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/km/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/km/sd/messages.po370
-rw-r--r--source/km/sfx2/messages.po335
-rw-r--r--source/km/sw/messages.po71
-rw-r--r--source/kmr-Latn/cui/messages.po121
-rw-r--r--source/kmr-Latn/extras/source/autocorr/emoji.po3849
-rw-r--r--source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/kmr-Latn/sd/messages.po368
-rw-r--r--source/kmr-Latn/sfx2/messages.po320
-rw-r--r--source/kmr-Latn/sw/messages.po65
-rw-r--r--source/kn/cui/messages.po124
-rw-r--r--source/kn/extras/source/autocorr/emoji.po3855
-rw-r--r--source/kn/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/kn/sd/messages.po370
-rw-r--r--source/kn/sfx2/messages.po335
-rw-r--r--source/kn/sw/messages.po68
-rw-r--r--source/ko/cui/messages.po124
-rw-r--r--source/ko/extras/source/autocorr/emoji.po3855
-rw-r--r--source/ko/helpcontent2/source/text/sbasic/shared.po82
-rw-r--r--source/ko/helpcontent2/source/text/scalc/01.po40
-rw-r--r--source/ko/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/ko/helpcontent2/source/text/shared.po66
-rw-r--r--source/ko/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/ko/helpcontent2/source/text/shared/01.po434
-rw-r--r--source/ko/helpcontent2/source/text/shared/02.po40
-rw-r--r--source/ko/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/ko/helpcontent2/source/text/shared/autopi.po94
-rw-r--r--source/ko/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/ko/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/ko/helpcontent2/source/text/shared/optionen.po38
-rw-r--r--source/ko/helpcontent2/source/text/simpress.po306
-rw-r--r--source/ko/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/ko/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/ko/helpcontent2/source/text/smath.po66
-rw-r--r--source/ko/helpcontent2/source/text/smath/00.po10
-rw-r--r--source/ko/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/ko/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/ko/sd/messages.po370
-rw-r--r--source/ko/sfx2/messages.po335
-rw-r--r--source/ko/sw/messages.po71
-rw-r--r--source/kok/cui/messages.po121
-rw-r--r--source/kok/extras/source/autocorr/emoji.po3852
-rw-r--r--source/kok/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/kok/sd/messages.po368
-rw-r--r--source/kok/sfx2/messages.po320
-rw-r--r--source/kok/sw/messages.po65
-rw-r--r--source/ks/cui/messages.po121
-rw-r--r--source/ks/extras/source/autocorr/emoji.po3852
-rw-r--r--source/ks/officecfg/registry/data/org/openoffice/Office/UI.po253
-rw-r--r--source/ks/sd/messages.po368
-rw-r--r--source/ks/sfx2/messages.po320
-rw-r--r--source/ks/sw/messages.po65
-rw-r--r--source/ky/cui/messages.po121
-rw-r--r--source/ky/extras/source/autocorr/emoji.po3828
-rw-r--r--source/ky/officecfg/registry/data/org/openoffice/Office/UI.po235
-rw-r--r--source/ky/sd/messages.po362
-rw-r--r--source/ky/sfx2/messages.po315
-rw-r--r--source/ky/sw/messages.po40
-rw-r--r--source/lb/cui/messages.po124
-rw-r--r--source/lb/extras/source/autocorr/emoji.po3843
-rw-r--r--source/lb/officecfg/registry/data/org/openoffice/Office/UI.po242
-rw-r--r--source/lb/sd/messages.po362
-rw-r--r--source/lb/sfx2/messages.po318
-rw-r--r--source/lb/sw/messages.po55
-rw-r--r--source/lo/cui/messages.po121
-rw-r--r--source/lo/extras/source/autocorr/emoji.po3849
-rw-r--r--source/lo/helpcontent2/source/text/sbasic/shared.po54
-rw-r--r--source/lo/helpcontent2/source/text/scalc/01.po38
-rw-r--r--source/lo/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/lo/helpcontent2/source/text/shared.po66
-rw-r--r--source/lo/helpcontent2/source/text/shared/00.po4
-rw-r--r--source/lo/helpcontent2/source/text/shared/01.po414
-rw-r--r--source/lo/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/lo/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/lo/helpcontent2/source/text/shared/autopi.po48
-rw-r--r--source/lo/helpcontent2/source/text/shared/explorer/database.po4
-rw-r--r--source/lo/helpcontent2/source/text/shared/guide.po30
-rw-r--r--source/lo/helpcontent2/source/text/shared/optionen.po30
-rw-r--r--source/lo/helpcontent2/source/text/simpress.po306
-rw-r--r--source/lo/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/lo/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/lo/helpcontent2/source/text/smath.po66
-rw-r--r--source/lo/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/lo/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/lo/sd/messages.po365
-rw-r--r--source/lo/sfx2/messages.po317
-rw-r--r--source/lo/sw/messages.po65
-rw-r--r--source/lt/cui/messages.po207
-rw-r--r--source/lt/dbaccess/messages.po19
-rw-r--r--source/lt/dictionaries/sq_AL.po12
-rw-r--r--source/lt/editeng/messages.po11
-rw-r--r--source/lt/extensions/messages.po60
-rw-r--r--source/lt/extras/source/autocorr/emoji.po3948
-rw-r--r--source/lt/formula/messages.po15
-rw-r--r--source/lt/fpicker/messages.po12
-rw-r--r--source/lt/helpcontent2/source/text/sbasic/shared.po54
-rw-r--r--source/lt/helpcontent2/source/text/scalc/01.po38
-rw-r--r--source/lt/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/lt/helpcontent2/source/text/shared.po66
-rw-r--r--source/lt/helpcontent2/source/text/shared/00.po4
-rw-r--r--source/lt/helpcontent2/source/text/shared/01.po414
-rw-r--r--source/lt/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/lt/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/lt/helpcontent2/source/text/shared/autopi.po48
-rw-r--r--source/lt/helpcontent2/source/text/shared/explorer/database.po4
-rw-r--r--source/lt/helpcontent2/source/text/shared/guide.po30
-rw-r--r--source/lt/helpcontent2/source/text/shared/optionen.po30
-rw-r--r--source/lt/helpcontent2/source/text/simpress.po306
-rw-r--r--source/lt/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/lt/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/lt/helpcontent2/source/text/smath.po66
-rw-r--r--source/lt/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/lt/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/lt/officecfg/registry/data/org/openoffice/Office/UI.po337
-rw-r--r--source/lt/reportdesign/messages.po28
-rw-r--r--source/lt/sc/messages.po117
-rw-r--r--source/lt/sd/messages.po371
-rw-r--r--source/lt/sfx2/messages.po342
-rw-r--r--source/lt/sw/messages.po73
-rw-r--r--source/lt/wizards/source/resources.po34
-rw-r--r--source/lv/cui/messages.po124
-rw-r--r--source/lv/extras/source/autocorr/emoji.po3948
-rw-r--r--source/lv/helpcontent2/source/text/sbasic/shared.po80
-rw-r--r--source/lv/helpcontent2/source/text/scalc/01.po44
-rw-r--r--source/lv/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/lv/helpcontent2/source/text/shared.po66
-rw-r--r--source/lv/helpcontent2/source/text/shared/00.po4
-rw-r--r--source/lv/helpcontent2/source/text/shared/01.po416
-rw-r--r--source/lv/helpcontent2/source/text/shared/02.po36
-rw-r--r--source/lv/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/lv/helpcontent2/source/text/shared/autopi.po48
-rw-r--r--source/lv/helpcontent2/source/text/shared/explorer/database.po4
-rw-r--r--source/lv/helpcontent2/source/text/shared/guide.po32
-rw-r--r--source/lv/helpcontent2/source/text/shared/optionen.po32
-rw-r--r--source/lv/helpcontent2/source/text/simpress.po306
-rw-r--r--source/lv/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/lv/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/lv/helpcontent2/source/text/smath.po66
-rw-r--r--source/lv/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/lv/officecfg/registry/data/org/openoffice/Office/UI.po260
-rw-r--r--source/lv/sd/messages.po371
-rw-r--r--source/lv/sfx2/messages.po335
-rw-r--r--source/lv/sw/messages.po66
-rw-r--r--source/mai/cui/messages.po121
-rw-r--r--source/mai/extras/source/autocorr/emoji.po3852
-rw-r--r--source/mai/officecfg/registry/data/org/openoffice/Office/UI.po253
-rw-r--r--source/mai/sd/messages.po368
-rw-r--r--source/mai/sfx2/messages.po320
-rw-r--r--source/mai/sw/messages.po65
-rw-r--r--source/mk/cui/messages.po121
-rw-r--r--source/mk/extras/source/autocorr/emoji.po3852
-rw-r--r--source/mk/helpcontent2/source/text/sbasic/shared.po82
-rw-r--r--source/mk/helpcontent2/source/text/scalc/01.po40
-rw-r--r--source/mk/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/mk/helpcontent2/source/text/shared.po66
-rw-r--r--source/mk/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/mk/helpcontent2/source/text/shared/01.po430
-rw-r--r--source/mk/helpcontent2/source/text/shared/02.po40
-rw-r--r--source/mk/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/mk/helpcontent2/source/text/shared/autopi.po94
-rw-r--r--source/mk/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/mk/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/mk/helpcontent2/source/text/shared/optionen.po38
-rw-r--r--source/mk/helpcontent2/source/text/simpress.po306
-rw-r--r--source/mk/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/mk/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/mk/helpcontent2/source/text/smath.po66
-rw-r--r--source/mk/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/mk/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/mk/sd/messages.po368
-rw-r--r--source/mk/sfx2/messages.po320
-rw-r--r--source/mk/sw/messages.po65
-rw-r--r--source/ml/cui/messages.po124
-rw-r--r--source/ml/extras/source/autocorr/emoji.po3860
-rw-r--r--source/ml/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/ml/sd/messages.po368
-rw-r--r--source/ml/sfx2/messages.po335
-rw-r--r--source/ml/sw/messages.po65
-rw-r--r--source/mn/cui/messages.po124
-rw-r--r--source/mn/extras/source/autocorr/emoji.po3855
-rw-r--r--source/mn/officecfg/registry/data/org/openoffice/Office/UI.po255
-rw-r--r--source/mn/sd/messages.po368
-rw-r--r--source/mn/sfx2/messages.po320
-rw-r--r--source/mn/sw/messages.po65
-rw-r--r--source/mni/cui/messages.po121
-rw-r--r--source/mni/extras/source/autocorr/emoji.po3852
-rw-r--r--source/mni/officecfg/registry/data/org/openoffice/Office/UI.po253
-rw-r--r--source/mni/sd/messages.po368
-rw-r--r--source/mni/sfx2/messages.po320
-rw-r--r--source/mni/sw/messages.po65
-rw-r--r--source/mr/cui/messages.po124
-rw-r--r--source/mr/extras/source/autocorr/emoji.po3855
-rw-r--r--source/mr/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/mr/sd/messages.po370
-rw-r--r--source/mr/sfx2/messages.po335
-rw-r--r--source/mr/sw/messages.po71
-rw-r--r--source/my/cui/messages.po121
-rw-r--r--source/my/extras/source/autocorr/emoji.po3855
-rw-r--r--source/my/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/my/sd/messages.po368
-rw-r--r--source/my/sfx2/messages.po319
-rw-r--r--source/my/sw/messages.po65
-rw-r--r--source/nb/cui/messages.po124
-rw-r--r--source/nb/extras/source/autocorr/emoji.po3948
-rw-r--r--source/nb/helpcontent2/source/text/sbasic/shared.po54
-rw-r--r--source/nb/helpcontent2/source/text/scalc/01.po40
-rw-r--r--source/nb/helpcontent2/source/text/sdraw.po60
-rw-r--r--source/nb/helpcontent2/source/text/shared.po66
-rw-r--r--source/nb/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/nb/helpcontent2/source/text/shared/01.po434
-rw-r--r--source/nb/helpcontent2/source/text/shared/02.po42
-rw-r--r--source/nb/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/nb/helpcontent2/source/text/shared/autopi.po94
-rw-r--r--source/nb/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/nb/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/nb/helpcontent2/source/text/shared/optionen.po40
-rw-r--r--source/nb/helpcontent2/source/text/simpress.po308
-rw-r--r--source/nb/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/nb/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/nb/helpcontent2/source/text/smath.po66
-rw-r--r--source/nb/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/nb/officecfg/registry/data/org/openoffice/Office/UI.po259
-rw-r--r--source/nb/sd/messages.po370
-rw-r--r--source/nb/sfx2/messages.po335
-rw-r--r--source/nb/sw/messages.po68
-rw-r--r--source/ne/cui/messages.po124
-rw-r--r--source/ne/extras/source/autocorr/emoji.po3855
-rw-r--r--source/ne/helpcontent2/source/text/sbasic/shared.po82
-rw-r--r--source/ne/helpcontent2/source/text/scalc/01.po40
-rw-r--r--source/ne/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/ne/helpcontent2/source/text/shared.po66
-rw-r--r--source/ne/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/ne/helpcontent2/source/text/shared/01.po430
-rw-r--r--source/ne/helpcontent2/source/text/shared/02.po40
-rw-r--r--source/ne/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/ne/helpcontent2/source/text/shared/autopi.po94
-rw-r--r--source/ne/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/ne/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/ne/helpcontent2/source/text/shared/optionen.po38
-rw-r--r--source/ne/helpcontent2/source/text/simpress.po306
-rw-r--r--source/ne/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/ne/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/ne/helpcontent2/source/text/smath.po66
-rw-r--r--source/ne/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/ne/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/ne/sd/messages.po368
-rw-r--r--source/ne/sfx2/messages.po319
-rw-r--r--source/ne/sw/messages.po65
-rw-r--r--source/nl/cui/messages.po125
-rw-r--r--source/nl/extras/source/autocorr/emoji.po3948
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/shared.po86
-rw-r--r--source/nl/helpcontent2/source/text/scalc/01.po60
-rw-r--r--source/nl/helpcontent2/source/text/sdraw.po68
-rw-r--r--source/nl/helpcontent2/source/text/shared.po66
-rw-r--r--source/nl/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/nl/helpcontent2/source/text/shared/01.po434
-rw-r--r--source/nl/helpcontent2/source/text/shared/02.po42
-rw-r--r--source/nl/helpcontent2/source/text/shared/05.po6
-rw-r--r--source/nl/helpcontent2/source/text/shared/autopi.po94
-rw-r--r--source/nl/helpcontent2/source/text/shared/explorer/database.po8
-rw-r--r--source/nl/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/nl/helpcontent2/source/text/shared/optionen.po40
-rw-r--r--source/nl/helpcontent2/source/text/simpress.po308
-rw-r--r--source/nl/helpcontent2/source/text/simpress/04.po308
-rw-r--r--source/nl/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/nl/helpcontent2/source/text/smath.po68
-rw-r--r--source/nl/helpcontent2/source/text/swriter/guide.po16
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office/UI.po259
-rw-r--r--source/nl/sd/messages.po370
-rw-r--r--source/nl/sfx2/messages.po337
-rw-r--r--source/nl/sw/messages.po70
-rw-r--r--source/nn/cui/messages.po125
-rw-r--r--source/nn/extras/source/autocorr/emoji.po3948
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared.po92
-rw-r--r--source/nn/helpcontent2/source/text/scalc/01.po68
-rw-r--r--source/nn/helpcontent2/source/text/sdraw.po60
-rw-r--r--source/nn/helpcontent2/source/text/shared.po68
-rw-r--r--source/nn/helpcontent2/source/text/shared/00.po8
-rw-r--r--source/nn/helpcontent2/source/text/shared/01.po436
-rw-r--r--source/nn/helpcontent2/source/text/shared/02.po44
-rw-r--r--source/nn/helpcontent2/source/text/shared/05.po8
-rw-r--r--source/nn/helpcontent2/source/text/shared/autopi.po96
-rw-r--r--source/nn/helpcontent2/source/text/shared/explorer/database.po8
-rw-r--r--source/nn/helpcontent2/source/text/shared/guide.po36
-rw-r--r--source/nn/helpcontent2/source/text/shared/optionen.po42
-rw-r--r--source/nn/helpcontent2/source/text/simpress.po308
-rw-r--r--source/nn/helpcontent2/source/text/simpress/04.po308
-rw-r--r--source/nn/helpcontent2/source/text/simpress/guide.po284
-rw-r--r--source/nn/helpcontent2/source/text/smath.po66
-rw-r--r--source/nn/helpcontent2/source/text/swriter/guide.po16
-rw-r--r--source/nn/officecfg/registry/data/org/openoffice/Office/UI.po259
-rw-r--r--source/nn/sd/messages.po372
-rw-r--r--source/nn/sfx2/messages.po337
-rw-r--r--source/nn/sw/messages.po70
-rw-r--r--source/nr/cui/messages.po121
-rw-r--r--source/nr/extras/source/autocorr/emoji.po3852
-rw-r--r--source/nr/officecfg/registry/data/org/openoffice/Office/UI.po249
-rw-r--r--source/nr/sd/messages.po368
-rw-r--r--source/nr/sfx2/messages.po321
-rw-r--r--source/nr/sw/messages.po69
-rw-r--r--source/nso/cui/messages.po121
-rw-r--r--source/nso/extras/source/autocorr/emoji.po3852
-rw-r--r--source/nso/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/nso/sd/messages.po368
-rw-r--r--source/nso/sfx2/messages.po320
-rw-r--r--source/nso/sw/messages.po65
-rw-r--r--source/oc/cui/messages.po124
-rw-r--r--source/oc/extras/source/autocorr/emoji.po3948
-rw-r--r--source/oc/officecfg/registry/data/org/openoffice/Office/UI.po259
-rw-r--r--source/oc/sd/messages.po514
-rw-r--r--source/oc/sfx2/messages.po378
-rw-r--r--source/oc/starmath/messages.po47
-rw-r--r--source/oc/svx/messages.po266
-rw-r--r--source/oc/sw/messages.po69
-rw-r--r--source/om/cui/messages.po121
-rw-r--r--source/om/extras/source/autocorr/emoji.po3852
-rw-r--r--source/om/helpcontent2/source/text/sbasic/shared.po82
-rw-r--r--source/om/helpcontent2/source/text/scalc/01.po40
-rw-r--r--source/om/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/om/helpcontent2/source/text/shared.po66
-rw-r--r--source/om/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/om/helpcontent2/source/text/shared/01.po434
-rw-r--r--source/om/helpcontent2/source/text/shared/02.po40
-rw-r--r--source/om/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/om/helpcontent2/source/text/shared/autopi.po94
-rw-r--r--source/om/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/om/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/om/helpcontent2/source/text/shared/optionen.po38
-rw-r--r--source/om/helpcontent2/source/text/simpress.po306
-rw-r--r--source/om/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/om/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/om/helpcontent2/source/text/smath.po66
-rw-r--r--source/om/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/om/officecfg/registry/data/org/openoffice/Office/UI.po255
-rw-r--r--source/om/sd/messages.po368
-rw-r--r--source/om/sfx2/messages.po320
-rw-r--r--source/om/sw/messages.po65
-rw-r--r--source/or/cui/messages.po124
-rw-r--r--source/or/extras/source/autocorr/emoji.po3855
-rw-r--r--source/or/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/or/sd/messages.po371
-rw-r--r--source/or/sfx2/messages.po335
-rw-r--r--source/or/sw/messages.po71
-rw-r--r--source/pa-IN/cui/messages.po124
-rw-r--r--source/pa-IN/extras/source/autocorr/emoji.po3858
-rw-r--r--source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/pa-IN/sd/messages.po368
-rw-r--r--source/pa-IN/sfx2/messages.po335
-rw-r--r--source/pa-IN/sw/messages.po64
-rw-r--r--source/pl/cui/messages.po124
-rw-r--r--source/pl/extras/source/autocorr/emoji.po3946
-rw-r--r--source/pl/helpcontent2/source/text/sbasic/shared.po82
-rw-r--r--source/pl/helpcontent2/source/text/scalc/01.po60
-rw-r--r--source/pl/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/pl/helpcontent2/source/text/shared.po66
-rw-r--r--source/pl/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/pl/helpcontent2/source/text/shared/01.po434
-rw-r--r--source/pl/helpcontent2/source/text/shared/02.po42
-rw-r--r--source/pl/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/pl/helpcontent2/source/text/shared/autopi.po94
-rw-r--r--source/pl/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/pl/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/pl/helpcontent2/source/text/shared/optionen.po40
-rw-r--r--source/pl/helpcontent2/source/text/simpress.po306
-rw-r--r--source/pl/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/pl/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/pl/helpcontent2/source/text/smath.po66
-rw-r--r--source/pl/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/pl/officecfg/registry/data/org/openoffice/Office/UI.po255
-rw-r--r--source/pl/sd/messages.po371
-rw-r--r--source/pl/sfx2/messages.po335
-rw-r--r--source/pl/sw/messages.po66
-rw-r--r--source/pt-BR/cui/messages.po125
-rw-r--r--source/pt-BR/extras/source/autocorr/emoji.po3948
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/shared.po62
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/01.po56
-rw-r--r--source/pt-BR/helpcontent2/source/text/sdraw.po66
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared.po68
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/00.po12
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/01.po440
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/02.po46
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/05.po10
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/autopi.po98
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/explorer/database.po12
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/guide.po38
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/optionen.po44
-rw-r--r--source/pt-BR/helpcontent2/source/text/simpress.po308
-rw-r--r--source/pt-BR/helpcontent2/source/text/simpress/02.po6
-rw-r--r--source/pt-BR/helpcontent2/source/text/simpress/04.po312
-rw-r--r--source/pt-BR/helpcontent2/source/text/simpress/guide.po292
-rw-r--r--source/pt-BR/helpcontent2/source/text/smath.po66
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/guide.po18
-rw-r--r--source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po263
-rw-r--r--source/pt-BR/sd/messages.po372
-rw-r--r--source/pt-BR/sfx2/messages.po329
-rw-r--r--source/pt-BR/sw/messages.po72
-rw-r--r--source/pt/cui/messages.po123
-rw-r--r--source/pt/extras/source/autocorr/emoji.po3948
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/shared.po90
-rw-r--r--source/pt/helpcontent2/source/text/scalc/01.po60
-rw-r--r--source/pt/helpcontent2/source/text/sdraw.po60
-rw-r--r--source/pt/helpcontent2/source/text/shared.po68
-rw-r--r--source/pt/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/pt/helpcontent2/source/text/shared/01.po434
-rw-r--r--source/pt/helpcontent2/source/text/shared/02.po44
-rw-r--r--source/pt/helpcontent2/source/text/shared/05.po8
-rw-r--r--source/pt/helpcontent2/source/text/shared/autopi.po96
-rw-r--r--source/pt/helpcontent2/source/text/shared/explorer/database.po8
-rw-r--r--source/pt/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/pt/helpcontent2/source/text/shared/optionen.po40
-rw-r--r--source/pt/helpcontent2/source/text/simpress.po308
-rw-r--r--source/pt/helpcontent2/source/text/simpress/04.po308
-rw-r--r--source/pt/helpcontent2/source/text/simpress/guide.po284
-rw-r--r--source/pt/helpcontent2/source/text/smath.po66
-rw-r--r--source/pt/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/pt/officecfg/registry/data/org/openoffice/Office/UI.po259
-rw-r--r--source/pt/sd/messages.po372
-rw-r--r--source/pt/sfx2/messages.po337
-rw-r--r--source/pt/sw/messages.po68
-rw-r--r--source/ro/cui/messages.po124
-rw-r--r--source/ro/extras/source/autocorr/emoji.po3948
-rw-r--r--source/ro/helpcontent2/source/text/sbasic/shared.po54
-rw-r--r--source/ro/helpcontent2/source/text/scalc/01.po38
-rw-r--r--source/ro/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/ro/helpcontent2/source/text/shared.po66
-rw-r--r--source/ro/helpcontent2/source/text/shared/00.po4
-rw-r--r--source/ro/helpcontent2/source/text/shared/01.po414
-rw-r--r--source/ro/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/ro/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/ro/helpcontent2/source/text/shared/autopi.po48
-rw-r--r--source/ro/helpcontent2/source/text/shared/explorer/database.po4
-rw-r--r--source/ro/helpcontent2/source/text/shared/guide.po30
-rw-r--r--source/ro/helpcontent2/source/text/shared/optionen.po30
-rw-r--r--source/ro/helpcontent2/source/text/simpress.po306
-rw-r--r--source/ro/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/ro/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/ro/helpcontent2/source/text/smath.po66
-rw-r--r--source/ro/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/ro/officecfg/registry/data/org/openoffice/Office/UI.po252
-rw-r--r--source/ro/sd/messages.po371
-rw-r--r--source/ro/sfx2/messages.po335
-rw-r--r--source/ro/sw/messages.po66
-rw-r--r--source/ru/cui/messages.po123
-rw-r--r--source/ru/extras/source/autocorr/emoji.po3948
-rw-r--r--source/ru/helpcontent2/source/text/sbasic/shared.po82
-rw-r--r--source/ru/helpcontent2/source/text/scalc/01.po40
-rw-r--r--source/ru/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/ru/helpcontent2/source/text/shared.po66
-rw-r--r--source/ru/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/ru/helpcontent2/source/text/shared/01.po434
-rw-r--r--source/ru/helpcontent2/source/text/shared/02.po40
-rw-r--r--source/ru/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/ru/helpcontent2/source/text/shared/autopi.po94
-rw-r--r--source/ru/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/ru/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/ru/helpcontent2/source/text/shared/optionen.po38
-rw-r--r--source/ru/helpcontent2/source/text/simpress.po306
-rw-r--r--source/ru/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/ru/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/ru/helpcontent2/source/text/smath.po66
-rw-r--r--source/ru/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/ru/officecfg/registry/data/org/openoffice/Office/UI.po265
-rw-r--r--source/ru/sc/messages.po8
-rw-r--r--source/ru/sd/messages.po380
-rw-r--r--source/ru/sfx2/messages.po333
-rw-r--r--source/ru/sw/messages.po76
-rw-r--r--source/rw/cui/messages.po121
-rw-r--r--source/rw/extras/source/autocorr/emoji.po3852
-rw-r--r--source/rw/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/rw/sd/messages.po368
-rw-r--r--source/rw/sfx2/messages.po320
-rw-r--r--source/rw/sw/messages.po65
-rw-r--r--source/sa-IN/cui/messages.po121
-rw-r--r--source/sa-IN/extras/source/autocorr/emoji.po3852
-rw-r--r--source/sa-IN/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/sa-IN/sd/messages.po371
-rw-r--r--source/sa-IN/sfx2/messages.po320
-rw-r--r--source/sa-IN/sw/messages.po71
-rw-r--r--source/sah/cui/messages.po121
-rw-r--r--source/sah/extras/source/autocorr/emoji.po3830
-rw-r--r--source/sah/officecfg/registry/data/org/openoffice/Office/UI.po235
-rw-r--r--source/sah/sd/messages.po362
-rw-r--r--source/sah/sfx2/messages.po315
-rw-r--r--source/sah/sw/messages.po40
-rw-r--r--source/sat/cui/messages.po121
-rw-r--r--source/sat/extras/source/autocorr/emoji.po3852
-rw-r--r--source/sat/officecfg/registry/data/org/openoffice/Office/UI.po256
-rw-r--r--source/sat/sd/messages.po371
-rw-r--r--source/sat/sfx2/messages.po320
-rw-r--r--source/sat/sw/messages.po71
-rw-r--r--source/sd/cui/messages.po121
-rw-r--r--source/sd/extras/source/autocorr/emoji.po3852
-rw-r--r--source/sd/officecfg/registry/data/org/openoffice/Office/UI.po255
-rw-r--r--source/sd/sd/messages.po371
-rw-r--r--source/sd/sfx2/messages.po320
-rw-r--r--source/sd/sw/messages.po71
-rw-r--r--source/si/cui/messages.po121
-rw-r--r--source/si/extras/source/autocorr/emoji.po3855
-rw-r--r--source/si/helpcontent2/source/text/sbasic/shared.po80
-rw-r--r--source/si/helpcontent2/source/text/scalc/01.po40
-rw-r--r--source/si/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/si/helpcontent2/source/text/shared.po66
-rw-r--r--source/si/helpcontent2/source/text/shared/00.po4
-rw-r--r--source/si/helpcontent2/source/text/shared/01.po424
-rw-r--r--source/si/helpcontent2/source/text/shared/02.po32
-rw-r--r--source/si/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/si/helpcontent2/source/text/shared/autopi.po48
-rw-r--r--source/si/helpcontent2/source/text/shared/explorer/database.po4
-rw-r--r--source/si/helpcontent2/source/text/shared/guide.po30
-rw-r--r--source/si/helpcontent2/source/text/shared/optionen.po34
-rw-r--r--source/si/helpcontent2/source/text/simpress.po306
-rw-r--r--source/si/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/si/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/si/helpcontent2/source/text/smath.po66
-rw-r--r--source/si/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/si/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/si/sd/messages.po368
-rw-r--r--source/si/sfx2/messages.po319
-rw-r--r--source/si/sw/messages.po65
-rw-r--r--source/sid/cui/messages.po124
-rw-r--r--source/sid/extras/source/autocorr/emoji.po3855
-rw-r--r--source/sid/helpcontent2/source/text/sbasic/shared.po82
-rw-r--r--source/sid/helpcontent2/source/text/scalc/01.po40
-rw-r--r--source/sid/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/sid/helpcontent2/source/text/shared.po66
-rw-r--r--source/sid/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/sid/helpcontent2/source/text/shared/01.po414
-rw-r--r--source/sid/helpcontent2/source/text/shared/02.po42
-rw-r--r--source/sid/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/sid/helpcontent2/source/text/shared/autopi.po94
-rw-r--r--source/sid/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/sid/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/sid/helpcontent2/source/text/shared/optionen.po38
-rw-r--r--source/sid/helpcontent2/source/text/simpress.po306
-rw-r--r--source/sid/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/sid/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/sid/helpcontent2/source/text/smath.po66
-rw-r--r--source/sid/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/sid/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/sid/sd/messages.po368
-rw-r--r--source/sid/sfx2/messages.po335
-rw-r--r--source/sid/sw/messages.po65
-rw-r--r--source/sk/cui/messages.po124
-rw-r--r--source/sk/extras/source/autocorr/emoji.po3948
-rw-r--r--source/sk/helpcontent2/source/text/sbasic/shared.po80
-rw-r--r--source/sk/helpcontent2/source/text/scalc/01.po44
-rw-r--r--source/sk/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/sk/helpcontent2/source/text/shared.po66
-rw-r--r--source/sk/helpcontent2/source/text/shared/00.po4
-rw-r--r--source/sk/helpcontent2/source/text/shared/01.po428
-rw-r--r--source/sk/helpcontent2/source/text/shared/02.po34
-rw-r--r--source/sk/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/sk/helpcontent2/source/text/shared/autopi.po94
-rw-r--r--source/sk/helpcontent2/source/text/shared/explorer/database.po4
-rw-r--r--source/sk/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/sk/helpcontent2/source/text/shared/optionen.po32
-rw-r--r--source/sk/helpcontent2/source/text/simpress.po306
-rw-r--r--source/sk/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/sk/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/sk/helpcontent2/source/text/smath.po66
-rw-r--r--source/sk/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/sk/officecfg/registry/data/org/openoffice/Office/UI.po257
-rw-r--r--source/sk/sc/messages.po9
-rw-r--r--source/sk/sd/messages.po370
-rw-r--r--source/sk/sfx2/messages.po335
-rw-r--r--source/sk/svtools/messages.po20
-rw-r--r--source/sk/sw/messages.po73
-rw-r--r--source/sk/wizards/source/resources.po14
-rw-r--r--source/sq/basic/messages.po58
-rw-r--r--source/sq/chart2/messages.po52
-rw-r--r--source/sq/cui/messages.po126
-rw-r--r--source/sq/desktop/messages.po26
-rw-r--r--source/sq/dictionaries/bo.po11
-rw-r--r--source/sq/extras/source/autocorr/emoji.po3919
-rw-r--r--source/sq/forms/messages.po21
-rw-r--r--source/sq/helpcontent2/source/text/sbasic/shared.po54
-rw-r--r--source/sq/helpcontent2/source/text/scalc/01.po38
-rw-r--r--source/sq/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/sq/helpcontent2/source/text/shared.po66
-rw-r--r--source/sq/helpcontent2/source/text/shared/00.po4
-rw-r--r--source/sq/helpcontent2/source/text/shared/01.po420
-rw-r--r--source/sq/helpcontent2/source/text/shared/02.po30
-rw-r--r--source/sq/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/sq/helpcontent2/source/text/shared/autopi.po48
-rw-r--r--source/sq/helpcontent2/source/text/shared/explorer/database.po4
-rw-r--r--source/sq/helpcontent2/source/text/shared/guide.po30
-rw-r--r--source/sq/helpcontent2/source/text/shared/optionen.po30
-rw-r--r--source/sq/helpcontent2/source/text/simpress.po306
-rw-r--r--source/sq/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/sq/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/sq/helpcontent2/source/text/smath.po66
-rw-r--r--source/sq/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/sq/officecfg/registry/data/org/openoffice/Office/UI.po252
-rw-r--r--source/sq/sd/messages.po371
-rw-r--r--source/sq/sfx2/messages.po335
-rw-r--r--source/sq/sw/messages.po73
-rw-r--r--source/ss/cui/messages.po121
-rw-r--r--source/ss/extras/source/autocorr/emoji.po3852
-rw-r--r--source/ss/officecfg/registry/data/org/openoffice/Office/UI.po249
-rw-r--r--source/ss/sd/messages.po368
-rw-r--r--source/ss/sfx2/messages.po321
-rw-r--r--source/ss/sw/messages.po65
-rw-r--r--source/st/cui/messages.po121
-rw-r--r--source/st/extras/source/autocorr/emoji.po3852
-rw-r--r--source/st/officecfg/registry/data/org/openoffice/Office/UI.po249
-rw-r--r--source/st/sd/messages.po368
-rw-r--r--source/st/sfx2/messages.po321
-rw-r--r--source/st/sw/messages.po65
-rw-r--r--source/sv/cui/messages.po124
-rw-r--r--source/sv/extras/source/autocorr/emoji.po3948
-rw-r--r--source/sv/helpcontent2/source/text/sbasic/shared.po82
-rw-r--r--source/sv/helpcontent2/source/text/scalc/01.po44
-rw-r--r--source/sv/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/sv/helpcontent2/source/text/shared.po66
-rw-r--r--source/sv/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/sv/helpcontent2/source/text/shared/01.po434
-rw-r--r--source/sv/helpcontent2/source/text/shared/02.po42
-rw-r--r--source/sv/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/sv/helpcontent2/source/text/shared/autopi.po94
-rw-r--r--source/sv/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/sv/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/sv/helpcontent2/source/text/shared/optionen.po40
-rw-r--r--source/sv/helpcontent2/source/text/simpress.po306
-rw-r--r--source/sv/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/sv/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/sv/helpcontent2/source/text/smath.po66
-rw-r--r--source/sv/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/sv/officecfg/registry/data/org/openoffice/Office/UI.po252
-rw-r--r--source/sv/sd/messages.po372
-rw-r--r--source/sv/sfx2/messages.po335
-rw-r--r--source/sv/sw/messages.po66
-rw-r--r--source/sw-TZ/cui/messages.po121
-rw-r--r--source/sw-TZ/extras/source/autocorr/emoji.po3852
-rw-r--r--source/sw-TZ/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/sw-TZ/sd/messages.po368
-rw-r--r--source/sw-TZ/sfx2/messages.po320
-rw-r--r--source/sw-TZ/sw/messages.po65
-rw-r--r--source/szl/cui/messages.po121
-rw-r--r--source/szl/extras/source/autocorr/emoji.po3830
-rw-r--r--source/szl/officecfg/registry/data/org/openoffice/Office/UI.po235
-rw-r--r--source/szl/sd/messages.po362
-rw-r--r--source/szl/sfx2/messages.po315
-rw-r--r--source/szl/sw/messages.po40
-rw-r--r--source/ta/cui/messages.po124
-rw-r--r--source/ta/extras/source/autocorr/emoji.po3952
-rw-r--r--source/ta/helpcontent2/source/text/sbasic/shared.po54
-rw-r--r--source/ta/helpcontent2/source/text/scalc/01.po42
-rw-r--r--source/ta/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/ta/helpcontent2/source/text/shared.po68
-rw-r--r--source/ta/helpcontent2/source/text/shared/00.po4
-rw-r--r--source/ta/helpcontent2/source/text/shared/01.po418
-rw-r--r--source/ta/helpcontent2/source/text/shared/02.po28
-rw-r--r--source/ta/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/ta/helpcontent2/source/text/shared/autopi.po48
-rw-r--r--source/ta/helpcontent2/source/text/shared/explorer/database.po4
-rw-r--r--source/ta/helpcontent2/source/text/shared/guide.po32
-rw-r--r--source/ta/helpcontent2/source/text/shared/optionen.po36
-rw-r--r--source/ta/helpcontent2/source/text/simpress.po306
-rw-r--r--source/ta/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/ta/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/ta/helpcontent2/source/text/smath.po66
-rw-r--r--source/ta/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/ta/officecfg/registry/data/org/openoffice/Office/UI.po252
-rw-r--r--source/ta/sd/messages.po370
-rw-r--r--source/ta/sfx2/messages.po335
-rw-r--r--source/ta/sw/messages.po71
-rw-r--r--source/te/cui/messages.po124
-rw-r--r--source/te/extras/source/autocorr/emoji.po3855
-rw-r--r--source/te/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/te/sd/messages.po368
-rw-r--r--source/te/sfx2/messages.po335
-rw-r--r--source/te/sw/messages.po65
-rw-r--r--source/tg/cui/messages.po121
-rw-r--r--source/tg/extras/source/autocorr/emoji.po3852
-rw-r--r--source/tg/helpcontent2/source/text/sbasic/shared.po54
-rw-r--r--source/tg/helpcontent2/source/text/scalc/01.po40
-rw-r--r--source/tg/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/tg/helpcontent2/source/text/shared.po66
-rw-r--r--source/tg/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/tg/helpcontent2/source/text/shared/01.po420
-rw-r--r--source/tg/helpcontent2/source/text/shared/02.po32
-rw-r--r--source/tg/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/tg/helpcontent2/source/text/shared/autopi.po94
-rw-r--r--source/tg/helpcontent2/source/text/shared/explorer/database.po4
-rw-r--r--source/tg/helpcontent2/source/text/shared/guide.po30
-rw-r--r--source/tg/helpcontent2/source/text/shared/optionen.po38
-rw-r--r--source/tg/helpcontent2/source/text/simpress.po306
-rw-r--r--source/tg/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/tg/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/tg/helpcontent2/source/text/smath.po66
-rw-r--r--source/tg/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/tg/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/tg/sd/messages.po368
-rw-r--r--source/tg/sfx2/messages.po320
-rw-r--r--source/tg/sw/messages.po65
-rw-r--r--source/th/cui/messages.po121
-rw-r--r--source/th/extras/source/autocorr/emoji.po3855
-rw-r--r--source/th/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/th/sd/messages.po368
-rw-r--r--source/th/sfx2/messages.po324
-rw-r--r--source/th/sw/messages.po65
-rw-r--r--source/ti/cui/messages.po121
-rw-r--r--source/ti/extras/source/autocorr/emoji.po3828
-rw-r--r--source/ti/officecfg/registry/data/org/openoffice/Office/UI.po235
-rw-r--r--source/ti/sd/messages.po362
-rw-r--r--source/ti/sfx2/messages.po315
-rw-r--r--source/ti/sw/messages.po55
-rw-r--r--source/tn/cui/messages.po121
-rw-r--r--source/tn/extras/source/autocorr/emoji.po3849
-rw-r--r--source/tn/officecfg/registry/data/org/openoffice/Office/UI.po247
-rw-r--r--source/tn/sd/messages.po368
-rw-r--r--source/tn/sfx2/messages.po321
-rw-r--r--source/tn/sw/messages.po70
-rw-r--r--source/tr/cui/messages.po125
-rw-r--r--source/tr/extras/source/autocorr/emoji.po3948
-rw-r--r--source/tr/helpcontent2/source/text/sbasic/shared.po92
-rw-r--r--source/tr/helpcontent2/source/text/scalc/01.po58
-rw-r--r--source/tr/helpcontent2/source/text/sdraw.po60
-rw-r--r--source/tr/helpcontent2/source/text/shared.po68
-rw-r--r--source/tr/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/tr/helpcontent2/source/text/shared/01.po434
-rw-r--r--source/tr/helpcontent2/source/text/shared/02.po42
-rw-r--r--source/tr/helpcontent2/source/text/shared/05.po6
-rw-r--r--source/tr/helpcontent2/source/text/shared/autopi.po94
-rw-r--r--source/tr/helpcontent2/source/text/shared/explorer/database.po8
-rw-r--r--source/tr/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/tr/helpcontent2/source/text/shared/optionen.po40
-rw-r--r--source/tr/helpcontent2/source/text/simpress.po308
-rw-r--r--source/tr/helpcontent2/source/text/simpress/04.po308
-rw-r--r--source/tr/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/tr/helpcontent2/source/text/smath.po66
-rw-r--r--source/tr/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/tr/officecfg/registry/data/org/openoffice/Office/UI.po265
-rw-r--r--source/tr/sd/messages.po374
-rw-r--r--source/tr/sfx2/messages.po327
-rw-r--r--source/tr/sw/messages.po72
-rw-r--r--source/ts/cui/messages.po121
-rw-r--r--source/ts/extras/source/autocorr/emoji.po3852
-rw-r--r--source/ts/officecfg/registry/data/org/openoffice/Office/UI.po249
-rw-r--r--source/ts/sd/messages.po368
-rw-r--r--source/ts/sfx2/messages.po321
-rw-r--r--source/ts/sw/messages.po70
-rw-r--r--source/tt/cui/messages.po124
-rw-r--r--source/tt/extras/source/autocorr/emoji.po3843
-rw-r--r--source/tt/officecfg/registry/data/org/openoffice/Office/UI.po243
-rw-r--r--source/tt/sd/messages.po365
-rw-r--r--source/tt/sfx2/messages.po325
-rw-r--r--source/tt/sw/messages.po70
-rw-r--r--source/ug/cui/messages.po124
-rw-r--r--source/ug/extras/source/autocorr/emoji.po3858
-rw-r--r--source/ug/helpcontent2/source/text/sbasic/shared.po54
-rw-r--r--source/ug/helpcontent2/source/text/scalc/01.po40
-rw-r--r--source/ug/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/ug/helpcontent2/source/text/shared.po66
-rw-r--r--source/ug/helpcontent2/source/text/shared/00.po4
-rw-r--r--source/ug/helpcontent2/source/text/shared/01.po424
-rw-r--r--source/ug/helpcontent2/source/text/shared/02.po32
-rw-r--r--source/ug/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/ug/helpcontent2/source/text/shared/autopi.po48
-rw-r--r--source/ug/helpcontent2/source/text/shared/explorer/database.po4
-rw-r--r--source/ug/helpcontent2/source/text/shared/guide.po30
-rw-r--r--source/ug/helpcontent2/source/text/shared/optionen.po30
-rw-r--r--source/ug/helpcontent2/source/text/simpress.po306
-rw-r--r--source/ug/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/ug/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/ug/helpcontent2/source/text/smath.po66
-rw-r--r--source/ug/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/ug/officecfg/registry/data/org/openoffice/Office/UI.po252
-rw-r--r--source/ug/sd/messages.po368
-rw-r--r--source/ug/sfx2/messages.po335
-rw-r--r--source/ug/sw/messages.po65
-rw-r--r--source/uk/cui/messages.po123
-rw-r--r--source/uk/extras/source/autocorr/emoji.po3948
-rw-r--r--source/uk/helpcontent2/source/text/sbasic/shared.po84
-rw-r--r--source/uk/helpcontent2/source/text/scalc/01.po40
-rw-r--r--source/uk/helpcontent2/source/text/sdraw.po60
-rw-r--r--source/uk/helpcontent2/source/text/shared.po68
-rw-r--r--source/uk/helpcontent2/source/text/shared/00.po8
-rw-r--r--source/uk/helpcontent2/source/text/shared/01.po428
-rw-r--r--source/uk/helpcontent2/source/text/shared/02.po28
-rw-r--r--source/uk/helpcontent2/source/text/shared/05.po6
-rw-r--r--source/uk/helpcontent2/source/text/shared/autopi.po48
-rw-r--r--source/uk/helpcontent2/source/text/shared/explorer/database.po8
-rw-r--r--source/uk/helpcontent2/source/text/shared/guide.po32
-rw-r--r--source/uk/helpcontent2/source/text/shared/optionen.po38
-rw-r--r--source/uk/helpcontent2/source/text/simpress.po308
-rw-r--r--source/uk/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/uk/helpcontent2/source/text/simpress/guide.po284
-rw-r--r--source/uk/helpcontent2/source/text/smath.po66
-rw-r--r--source/uk/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/uk/officecfg/registry/data/org/openoffice/Office/UI.po286
-rw-r--r--source/uk/sc/messages.po9
-rw-r--r--source/uk/sccomp/messages.po15
-rw-r--r--source/uk/scp2/source/extensions.po8
-rw-r--r--source/uk/sd/messages.po541
-rw-r--r--source/uk/sfx2/messages.po343
-rw-r--r--source/uk/svtools/messages.po15
-rw-r--r--source/uk/sw/messages.po68
-rw-r--r--source/uk/wizards/source/resources.po37
-rw-r--r--source/ur/cui/messages.po121
-rw-r--r--source/ur/extras/source/autocorr/emoji.po3828
-rw-r--r--source/ur/officecfg/registry/data/org/openoffice/Office/UI.po235
-rw-r--r--source/ur/sd/messages.po362
-rw-r--r--source/ur/sfx2/messages.po315
-rw-r--r--source/ur/sw/messages.po55
-rw-r--r--source/uz/cui/messages.po121
-rw-r--r--source/uz/extras/source/autocorr/emoji.po3852
-rw-r--r--source/uz/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/uz/sd/messages.po368
-rw-r--r--source/uz/sfx2/messages.po320
-rw-r--r--source/uz/sw/messages.po65
-rw-r--r--source/ve/cui/messages.po121
-rw-r--r--source/ve/extras/source/autocorr/emoji.po3852
-rw-r--r--source/ve/officecfg/registry/data/org/openoffice/Office/UI.po249
-rw-r--r--source/ve/sd/messages.po368
-rw-r--r--source/ve/sfx2/messages.po321
-rw-r--r--source/ve/sw/messages.po65
-rw-r--r--source/vec/cui/messages.po124
-rw-r--r--source/vec/extras/source/autocorr/emoji.po3948
-rw-r--r--source/vec/officecfg/registry/data/org/openoffice/Office/UI.po259
-rw-r--r--source/vec/sd/messages.po371
-rw-r--r--source/vec/sfx2/messages.po335
-rw-r--r--source/vec/sw/messages.po66
-rw-r--r--source/vi/cui/messages.po124
-rw-r--r--source/vi/extras/source/autocorr/emoji.po3855
-rw-r--r--source/vi/helpcontent2/source/text/sbasic/shared.po82
-rw-r--r--source/vi/helpcontent2/source/text/scalc/01.po40
-rw-r--r--source/vi/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/vi/helpcontent2/source/text/shared.po66
-rw-r--r--source/vi/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/vi/helpcontent2/source/text/shared/01.po434
-rw-r--r--source/vi/helpcontent2/source/text/shared/02.po40
-rw-r--r--source/vi/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/vi/helpcontent2/source/text/shared/autopi.po94
-rw-r--r--source/vi/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/vi/helpcontent2/source/text/shared/guide.po30
-rw-r--r--source/vi/helpcontent2/source/text/shared/optionen.po38
-rw-r--r--source/vi/helpcontent2/source/text/simpress.po306
-rw-r--r--source/vi/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/vi/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/vi/helpcontent2/source/text/smath.po66
-rw-r--r--source/vi/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/vi/officecfg/registry/data/org/openoffice/Office/UI.po254
-rw-r--r--source/vi/sd/messages.po368
-rw-r--r--source/vi/sfx2/messages.po319
-rw-r--r--source/vi/sw/messages.po65
-rw-r--r--source/xh/cui/messages.po121
-rw-r--r--source/xh/extras/source/autocorr/emoji.po3852
-rw-r--r--source/xh/officecfg/registry/data/org/openoffice/Office/UI.po249
-rw-r--r--source/xh/sd/messages.po368
-rw-r--r--source/xh/sfx2/messages.po321
-rw-r--r--source/xh/sw/messages.po70
-rw-r--r--source/zh-CN/cui/messages.po124
-rw-r--r--source/zh-CN/extras/source/autocorr/emoji.po3948
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/shared.po82
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/01.po40
-rw-r--r--source/zh-CN/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared.po68
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/01.po434
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/02.po42
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/autopi.po94
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/guide.po36
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/optionen.po38
-rw-r--r--source/zh-CN/helpcontent2/source/text/simpress.po306
-rw-r--r--source/zh-CN/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/zh-CN/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/zh-CN/helpcontent2/source/text/smath.po66
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po259
-rw-r--r--source/zh-CN/sd/messages.po370
-rw-r--r--source/zh-CN/sfx2/messages.po335
-rw-r--r--source/zh-CN/sw/messages.po66
-rw-r--r--source/zh-TW/cui/messages.po131
-rw-r--r--source/zh-TW/extras/source/autocorr/emoji.po3948
-rw-r--r--source/zh-TW/helpcontent2/source/text/sbasic/shared.po82
-rw-r--r--source/zh-TW/helpcontent2/source/text/scalc/01.po40
-rw-r--r--source/zh-TW/helpcontent2/source/text/sdraw.po58
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared.po66
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/01.po434
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/02.po40
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/05.po4
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/autopi.po94
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/optionen.po38
-rw-r--r--source/zh-TW/helpcontent2/source/text/simpress.po306
-rw-r--r--source/zh-TW/helpcontent2/source/text/simpress/04.po306
-rw-r--r--source/zh-TW/helpcontent2/source/text/simpress/guide.po282
-rw-r--r--source/zh-TW/helpcontent2/source/text/smath.po66
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/zh-TW/officecfg/registry/data/org/openoffice/Office/UI.po263
-rw-r--r--source/zh-TW/sd/messages.po376
-rw-r--r--source/zh-TW/sfx2/messages.po325
-rw-r--r--source/zh-TW/sw/messages.po74
-rw-r--r--source/zu/cui/messages.po121
-rw-r--r--source/zu/extras/source/autocorr/emoji.po3852
-rw-r--r--source/zu/officecfg/registry/data/org/openoffice/Office/UI.po249
-rw-r--r--source/zu/sd/messages.po368
-rw-r--r--source/zu/sfx2/messages.po321
-rw-r--r--source/zu/sw/messages.po70
1875 files changed, 604955 insertions, 117341 deletions
diff --git a/source/ab/cui/messages.po b/source/ab/cui/messages.po
index ba089fe61fb..206390f1f47 100644
--- a/source/ab/cui/messages.po
+++ b/source/ab/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2017-12-12 10:56+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8035,76 +8035,76 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Аилыркаага"
-#: optgeneralpage.ui:77
+#: optgeneralpage.ui:76
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME адиалогқәа"
-#: optgeneralpage.ui:111
+#: optgeneralpage.ui:110
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Аартра/Аиқәырхара рдиалогқәа"
-#: optgeneralpage.ui:137
+#: optgeneralpage.ui:136
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME адиалогқәа"
-#: optgeneralpage.ui:152
+#: optgeneralpage.ui:151
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Акьыҧхьра адиалогқәа"
-#: optgeneralpage.ui:178
+#: optgeneralpage.ui:177
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: optgeneralpage.ui:193
+#: optgeneralpage.ui:192
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr ""
-#: optgeneralpage.ui:226
+#: optgeneralpage.ui:225
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: optgeneralpage.ui:252
+#: optgeneralpage.ui:251
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "и"
-#: optgeneralpage.ui:267
+#: optgeneralpage.ui:266
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: optgeneralpage.ui:293
+#: optgeneralpage.ui:292
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: optgeneralpage.ui:308
+#: optgeneralpage.ui:307
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: optgeneralpage.ui:339
+#: optgeneralpage.ui:338
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr ""
-#: optgeneralpage.ui:353
+#: optgeneralpage.ui:352
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
-#: optgeneralpage.ui:373
+#: optgeneralpage.ui:372
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -8920,232 +8920,237 @@ msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr ""
-#: optuserpage.ui:34
+#: optuserpage.ui:12
+msgctxt "optuserpage|liststore1"
+msgid "No key"
+msgstr ""
+
+#: optuserpage.ui:45
#, fuzzy
msgctxt "optuserpage|companyft"
msgid "_Company:"
msgstr "Аиҿкаара"
-#: optuserpage.ui:48
+#: optuserpage.ui:59
#, fuzzy
msgctxt "optuserpage|nameft"
msgid "First/last _name/initials:"
msgstr "Ажәла/Ахьӡ/Аинициалқәа:"
-#: optuserpage.ui:62
+#: optuserpage.ui:73
msgctxt "optuserpage|streetft"
msgid "_Street:"
msgstr "Амҩа ахьӡ:"
-#: optuserpage.ui:76
+#: optuserpage.ui:87
msgctxt "optuserpage|cityft"
msgid "City/state/_zip:"
msgstr ""
-#: optuserpage.ui:90
+#: optuserpage.ui:101
msgctxt "optuserpage|countryft"
msgid "Country/re_gion:"
msgstr ""
-#: optuserpage.ui:104
+#: optuserpage.ui:115
msgctxt "optuserpage|titleft"
msgid "_Title/position:"
msgstr ""
-#: optuserpage.ui:118
+#: optuserpage.ui:129
msgctxt "optuserpage|phoneft"
msgid "Telephone (home/_work):"
msgstr ""
-#: optuserpage.ui:123
+#: optuserpage.ui:134
msgctxt "phoneft-atkobject"
msgid "Home telephone number"
msgstr ""
-#: optuserpage.ui:137
+#: optuserpage.ui:148
msgctxt "optuserpage|faxft"
msgid "Fa_x/e-mail:"
msgstr ""
-#: optuserpage.ui:160
+#: optuserpage.ui:171
#, fuzzy
msgctxt "optuserpage|firstname-atkobject"
msgid "First name"
msgstr "Ахьӡ"
-#: optuserpage.ui:178
+#: optuserpage.ui:189
#, fuzzy
msgctxt "lastname-atkobject"
msgid "Last name"
msgstr "Ажәла"
-#: optuserpage.ui:196
+#: optuserpage.ui:207
#, fuzzy
msgctxt "shortname-atkobject"
msgid "Initials"
msgstr "Аинициалқәа"
-#: optuserpage.ui:225
+#: optuserpage.ui:236
#, fuzzy
msgctxt "city-atkobject"
msgid "City"
msgstr "Ақалақь"
-#: optuserpage.ui:243
+#: optuserpage.ui:254
msgctxt "state-atkobject"
msgid "State"
msgstr ""
-#: optuserpage.ui:261
+#: optuserpage.ui:272
msgctxt "zip-atkobject"
msgid "Zip code"
msgstr ""
-#: optuserpage.ui:291
+#: optuserpage.ui:302
#, fuzzy
msgctxt "title-atkobject"
msgid "Title"
msgstr "Ахы"
-#: optuserpage.ui:309
+#: optuserpage.ui:320
#, fuzzy
msgctxt "position-atkobject"
msgid "Position"
msgstr "Аҭыҧ"
-#: optuserpage.ui:338
+#: optuserpage.ui:349
msgctxt "home-atkobject"
msgid "Home telephone number"
msgstr ""
-#: optuserpage.ui:356
+#: optuserpage.ui:367
msgctxt "work-atkobject"
msgid "Work telephone number"
msgstr ""
-#: optuserpage.ui:386
+#: optuserpage.ui:397
#, fuzzy
msgctxt "fax-atkobject"
msgid "FAX number"
msgstr "Афакс аномер"
-#: optuserpage.ui:404
+#: optuserpage.ui:415
msgctxt "email-atkobject"
msgid "email address"
msgstr ""
-#: optuserpage.ui:421
+#: optuserpage.ui:432
msgctxt "optuserpage|usefordocprop"
msgid "Use data for document properties"
msgstr ""
-#: optuserpage.ui:438
+#: optuserpage.ui:449
msgctxt "optuserpage|rusnameft"
msgid "Last name/first _name/father’s name/initials:"
msgstr ""
-#: optuserpage.ui:461
+#: optuserpage.ui:472
#, fuzzy
msgctxt "ruslastname-atkobject"
msgid "Last name"
msgstr "Ажәла"
-#: optuserpage.ui:479
+#: optuserpage.ui:490
#, fuzzy
msgctxt "rusfathersname-atkobject"
msgid "Father's name"
msgstr "Абхьӡ"
-#: optuserpage.ui:497
+#: optuserpage.ui:508
#, fuzzy
msgctxt "russhortname-atkobject"
msgid "Initials"
msgstr "Аинициалқәа"
-#: optuserpage.ui:515
+#: optuserpage.ui:526
#, fuzzy
msgctxt "rusfirstname-atkobject"
msgid "First name"
msgstr "Ахьӡ"
-#: optuserpage.ui:535
+#: optuserpage.ui:546
msgctxt "optuserpage|eastnameft"
msgid "Last/first _name/initials:"
msgstr "Ажәла/Ахьӡ/Аинициалқәа:"
-#: optuserpage.ui:558
+#: optuserpage.ui:569
#, fuzzy
msgctxt "eastlastname-atkobject"
msgid "Last name"
msgstr "Ажәла"
-#: optuserpage.ui:576
+#: optuserpage.ui:587
#, fuzzy
msgctxt "eastfirstname-atkobject"
msgid "First name"
msgstr "Ахьӡ"
-#: optuserpage.ui:594
+#: optuserpage.ui:605
#, fuzzy
msgctxt "eastshortname-atkobject"
msgid "Initials"
msgstr "Аинициалқәа"
-#: optuserpage.ui:614
+#: optuserpage.ui:625
msgctxt "optuserpage|russtreetft"
msgid "_Street/apartment number:"
msgstr "Амҩа, аҩны/ауаҭах:"
-#: optuserpage.ui:637
+#: optuserpage.ui:648
#, fuzzy
msgctxt "russtreet-atkobject"
msgid "Street"
msgstr "Амҩа ахьӡ"
-#: optuserpage.ui:655
+#: optuserpage.ui:666
#, fuzzy
msgctxt "ruslastname-atkobject"
msgid "Apartment number"
msgstr "Аҩны аномер"
-#: optuserpage.ui:675
+#: optuserpage.ui:686
msgctxt "optuserpage|icityft"
msgid "_Zip/city:"
msgstr ""
-#: optuserpage.ui:698
+#: optuserpage.ui:709
#, fuzzy
msgctxt "icity-atkobject"
msgid "City"
msgstr "Ақалақь"
-#: optuserpage.ui:716
+#: optuserpage.ui:727
msgctxt "izip-atkobject"
msgid "Zip code"
msgstr ""
-#: optuserpage.ui:814
+#: optuserpage.ui:825
msgctxt "optuserpage|label1"
msgid "Address"
msgstr "Аҭыӡҭыҧ"
-#: optuserpage.ui:847
+#: optuserpage.ui:861
msgctxt "optuserpage|signingkeylabel"
msgid "OpenPGP signing key:"
msgstr ""
-#: optuserpage.ui:860
+#: optuserpage.ui:875
msgctxt "optuserpage|encryptionkeylabel"
msgid "OpenPGP encryption key:"
msgstr ""
-#: optuserpage.ui:889
+#: optuserpage.ui:908
msgctxt "optuserpage|encrypttoself"
msgid "When encrypting documents, always encrypt to self"
msgstr ""
-#: optuserpage.ui:909
-msgctxt "optuserpage|label2"
+#: optuserpage.ui:930
+msgctxt "optuserpage|cryptographylabel"
msgid "Cryptography"
msgstr ""
diff --git a/source/ab/extras/source/autocorr/emoji.po b/source/ab/extras/source/autocorr/emoji.po
index a064992c215..cb59fbed84f 100644
--- a/source/ab/extras/source/autocorr/emoji.po
+++ b/source/ab/extras/source/autocorr/emoji.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: 2016-10-18 13:02+0200\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2017-12-12 10:57+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1779,13 +1779,12 @@ msgstr "аиаҵәа 2"
#. ☇ (U+02607), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"LIGHTNING\n"
"LngText.text"
-msgid "lighting"
-msgstr "амацәыс"
+msgid "lightning3"
+msgstr ""
#. ☈ (U+02608), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1793,7 +1792,7 @@ msgctxt ""
"emoji.ulf\n"
"THUNDERSTORM\n"
"LngText.text"
-msgid "storm"
+msgid "storm2"
msgstr ""
#. ☉ (U+02609), see http://wiki.documentfoundation.org/Emoji
@@ -2148,13 +2147,12 @@ msgstr "Амза 2"
#. ☿ (U+0263F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"MERCURY\n"
"LngText.text"
-msgid "Mercury"
-msgstr "Меркури"
+msgid "mercury"
+msgstr ""
#. ♀ (U+02640), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2168,13 +2166,12 @@ msgstr "аҧҳәыс"
#. ♁ (U+02641), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"EARTH\n"
"LngText.text"
-msgid "Earth"
-msgstr "Адгьыл"
+msgid "earth"
+msgstr ""
#. ♂ (U+02642), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2188,53 +2185,48 @@ msgstr "ахаҵа"
#. ♃ (U+02643), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"JUPITER\n"
"LngText.text"
-msgid "Jupiter"
-msgstr "Иупитер"
+msgid "jupiter"
+msgstr ""
#. ♄ (U+02644), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"SATURN\n"
"LngText.text"
-msgid "Saturn"
-msgstr "Сатурн"
+msgid "saturn"
+msgstr ""
#. ♅ (U+02645), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"URANUS\n"
"LngText.text"
-msgid "Uranus"
-msgstr "Уран"
+msgid "uranus"
+msgstr ""
#. ♆ (U+02646), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"NEPTUNE\n"
"LngText.text"
-msgid "Neptune"
-msgstr "Нептун"
+msgid "neptune"
+msgstr ""
#. ♇ (U+02647), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"PLUTO\n"
"LngText.text"
-msgid "Pluto"
-msgstr "Плутон"
+msgid "pluto"
+msgstr ""
#. ♈ (U+02648), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2242,7 +2234,7 @@ msgctxt ""
"emoji.ulf\n"
"ARIES\n"
"LngText.text"
-msgid "Aries"
+msgid "aries"
msgstr ""
#. ♉ (U+02649), see http://wiki.documentfoundation.org/Emoji
@@ -2251,7 +2243,7 @@ msgctxt ""
"emoji.ulf\n"
"TAURUS\n"
"LngText.text"
-msgid "Taurus"
+msgid "taurus"
msgstr ""
#. ♊ (U+0264A), see http://wiki.documentfoundation.org/Emoji
@@ -2260,28 +2252,26 @@ msgctxt ""
"emoji.ulf\n"
"GEMINI\n"
"LngText.text"
-msgid "Gemini"
+msgid "gemini"
msgstr ""
#. ♋ (U+0264B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CANCER\n"
"LngText.text"
-msgid "Cancer"
-msgstr "Иаҟәыхтәуп"
+msgid "cancer"
+msgstr ""
#. ♌ (U+0264C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"LEO\n"
"LngText.text"
-msgid "Leo"
-msgstr "Алым"
+msgid "leo"
+msgstr ""
#. ♍ (U+0264D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2289,28 +2279,26 @@ msgctxt ""
"emoji.ulf\n"
"VIRGO\n"
"LngText.text"
-msgid "Virgo"
+msgid "virgo"
msgstr ""
#. ♎ (U+0264E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"LIBRA\n"
"LngText.text"
-msgid "Libra"
-msgstr "Акапанга"
+msgid "libra"
+msgstr ""
#. ♏ (U+0264F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"SCORPIUS\n"
"LngText.text"
-msgid "Scorpius"
-msgstr "Амариал"
+msgid "scorpius"
+msgstr ""
#. ♐ (U+02650), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2318,7 +2306,7 @@ msgctxt ""
"emoji.ulf\n"
"SAGITTARIUS\n"
"LngText.text"
-msgid "Sagittarius"
+msgid "sagittarius"
msgstr ""
#. ♑ (U+02651), see http://wiki.documentfoundation.org/Emoji
@@ -2327,7 +2315,7 @@ msgctxt ""
"emoji.ulf\n"
"CAPRICORN\n"
"LngText.text"
-msgid "Capricorn"
+msgid "capricorn"
msgstr ""
#. ♒ (U+02652), see http://wiki.documentfoundation.org/Emoji
@@ -2336,18 +2324,17 @@ msgctxt ""
"emoji.ulf\n"
"AQUARIUS\n"
"LngText.text"
-msgid "Aquarius"
+msgid "aquarius"
msgstr ""
#. ♓ (U+02653), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"PISCES\n"
"LngText.text"
-msgid "Pisces"
-msgstr "Аҧсыӡ"
+msgid "pisces"
+msgstr ""
#. ♔ (U+02654), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2708,23 +2695,21 @@ msgstr ""
#. ⚐ (U+02690), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"WHITE_FLAG\n"
"LngText.text"
-msgid "flag"
-msgstr "абираҟқәа"
+msgid "flag4"
+msgstr ""
#. ⚑ (U+02691), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"BLACK_FLAG\n"
"LngText.text"
-msgid "flag2"
-msgstr "абираҟқәа 2"
+msgid "flag3"
+msgstr ""
#. ⚒ (U+02692), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3044,7 +3029,7 @@ msgctxt ""
"emoji.ulf\n"
"BLACK_CROSS_ON_SHIELD\n"
"LngText.text"
-msgid "shield"
+msgid "shield2"
msgstr ""
#. ⛪ (U+026EA), see http://wiki.documentfoundation.org/Emoji
@@ -3087,13 +3072,12 @@ msgstr ""
#. ⛳ (U+026F3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"FLAG_IN_HOLE\n"
"LngText.text"
-msgid "golf"
-msgstr "агольф"
+msgid "golf2"
+msgstr ""
#. ⛴ (U+026F4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3851,13 +3835,12 @@ msgstr ""
#. 🌁 (U+1F301), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"FOGGY\n"
"LngText.text"
-msgid "fog"
-msgstr "адаӷь"
+msgid "foggy"
+msgstr ""
#. 🌂 (U+1F302), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3955,13 +3938,12 @@ msgstr "авулкан"
#. 🌌 (U+1F30C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"MILKY_WAY\n"
"LngText.text"
-msgid "Milky way"
-msgstr "Асар рымҩа"
+msgid "milky way"
+msgstr ""
#. 🌍 (U+1F30D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4226,7 +4208,7 @@ msgctxt ""
"emoji.ulf\n"
"CHERRY_BLOSSOM\n"
"LngText.text"
-msgid "cherry blossom"
+msgid "blossom2"
msgstr ""
#. 🌹 (U+1F339), see http://wiki.documentfoundation.org/Emoji
@@ -4477,13 +4459,12 @@ msgstr "атама"
#. 🍒 (U+1F352), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CHERRIES\n"
"LngText.text"
-msgid "cherries"
-msgstr "аца"
+msgid "cherry"
+msgstr ""
#. 🍓 (U+1F353), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4783,13 +4764,12 @@ msgstr "афатә"
#. 🍳 (U+1F373), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"COOKING\n"
"LngText.text"
-msgid "egg"
-msgstr "акәтаӷь"
+msgid "cooking"
+msgstr ""
#. 🍴 (U+1F374), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4827,7 +4807,7 @@ msgctxt ""
"emoji.ulf\n"
"WINE_GLASS\n"
"LngText.text"
-msgid "wine glass"
+msgid "glass"
msgstr ""
#. 🍸 (U+1F378), see http://wiki.documentfoundation.org/Emoji
@@ -4845,7 +4825,7 @@ msgctxt ""
"emoji.ulf\n"
"TROPICAL_DRINK\n"
"LngText.text"
-msgid "tropical drink"
+msgid "drink2"
msgstr ""
#. 🍺 (U+1F37A), see http://wiki.documentfoundation.org/Emoji
@@ -4883,7 +4863,7 @@ msgctxt ""
"emoji.ulf\n"
"RIBBON\n"
"LngText.text"
-msgid "ribbon"
+msgid "ribbon2"
msgstr ""
#. 🎁 (U+1F381), see http://wiki.documentfoundation.org/Emoji
@@ -4912,7 +4892,7 @@ msgctxt ""
"emoji.ulf\n"
"JACK-O-LANTERN\n"
"LngText.text"
-msgid "Halloween"
+msgid "halloween"
msgstr ""
#. 🎄 (U+1F384), see http://wiki.documentfoundation.org/Emoji
@@ -4921,18 +4901,17 @@ msgctxt ""
"emoji.ulf\n"
"CHRISTMAS_TREE\n"
"LngText.text"
-msgid "Christmas"
+msgid "christmas"
msgstr ""
#. 🎅 (U+1F385), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"FATHER_CHRISTMAS\n"
"LngText.text"
-msgid "Santa"
-msgstr "Санта"
+msgid "santa"
+msgstr ""
#. 🎆 (U+1F386), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4976,7 +4955,7 @@ msgctxt ""
"emoji.ulf\n"
"CONFETTI_BALL\n"
"LngText.text"
-msgid "confetti ball"
+msgid "party2"
msgstr ""
#. 🎋 (U+1F38B), see http://wiki.documentfoundation.org/Emoji
@@ -5070,7 +5049,7 @@ msgctxt ""
"emoji.ulf\n"
"CAROUSEL_HORSE\n"
"LngText.text"
-msgid "carousel horse"
+msgid "fair2"
msgstr ""
#. 🎡 (U+1F3A1), see http://wiki.documentfoundation.org/Emoji
@@ -5079,7 +5058,7 @@ msgctxt ""
"emoji.ulf\n"
"FERRIS_WHEEL\n"
"LngText.text"
-msgid "ferris wheel"
+msgid "fair"
msgstr ""
#. 🎢 (U+1F3A2), see http://wiki.documentfoundation.org/Emoji
@@ -5163,7 +5142,7 @@ msgctxt ""
"emoji.ulf\n"
"CIRCUS_TENT\n"
"LngText.text"
-msgid "circus tent"
+msgid "circus"
msgstr ""
#. 🎫 (U+1F3AB), see http://wiki.documentfoundation.org/Emoji
@@ -5373,13 +5352,12 @@ msgstr "абеисбол"
#. 🏁 (U+1F3C1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CHEQUERED_FLAG\n"
"LngText.text"
-msgid "flag3"
-msgstr "абираҟ 3"
+msgid "race"
+msgstr ""
#. 🏂 (U+1F3C2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5423,7 +5401,7 @@ msgctxt ""
"emoji.ulf\n"
"HORSE_RACING\n"
"LngText.text"
-msgid "horse racing"
+msgid "horse3"
msgstr ""
#. 🏈 (U+1F3C8), see http://wiki.documentfoundation.org/Emoji
@@ -7218,13 +7196,12 @@ msgstr "100"
#. 💰 (U+1F4B0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"MONEY_BAG\n"
"LngText.text"
-msgid "moneybag"
-msgstr "аҧараз асакь"
+msgid "money2"
+msgstr ""
#. 💱 (U+1F4B1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7232,7 +7209,7 @@ msgctxt ""
"emoji.ulf\n"
"CURRENCY_EXCHANGE\n"
"LngText.text"
-msgid "currency exchange"
+msgid "exchange"
msgstr ""
#. 💲 (U+1F4B2), see http://wiki.documentfoundation.org/Emoji
@@ -7306,13 +7283,12 @@ msgstr "аҧара"
#. 💹 (U+1F4B9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CHART_WITH_UPWARDS_TREND_AND_YEN_SIGN\n"
"LngText.text"
-msgid "chart"
-msgstr "адиаграмма"
+msgid "chart4"
+msgstr ""
#. 💺 (U+1F4BA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7405,23 +7381,21 @@ msgstr "акаталог 2"
#. 📃 (U+1F4C3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"PAGE_WITH_CURL\n"
"LngText.text"
-msgid "page with curl"
-msgstr "аилаҳәара"
+msgid "page3"
+msgstr ""
#. 📄 (U+1F4C4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"PAGE_FACING_UP\n"
"LngText.text"
-msgid "page facing up"
-msgstr "адаҟьа"
+msgid "page"
+msgstr ""
#. 📅 (U+1F4C5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7454,13 +7428,12 @@ msgstr ""
#. 📈 (U+1F4C8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CHART_WITH_UPWARDS_TREND\n"
"LngText.text"
-msgid "char"
-msgstr "аграфик"
+msgid "chart"
+msgstr ""
#. 📉 (U+1F4C9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7574,23 +7547,21 @@ msgstr ""
#. 📕 (U+1F4D5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CLOSED_BOOK\n"
"LngText.text"
-msgid "book"
-msgstr "ашәҟәы"
+msgid "book2"
+msgstr ""
#. 📖 (U+1F4D6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"OPEN_BOOK\n"
"LngText.text"
-msgid "book2"
-msgstr "ашәҟәы 2"
+msgid "book3"
+msgstr ""
#. 📚 (U+1F4DA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7665,7 +7636,7 @@ msgctxt ""
"emoji.ulf\n"
"SATELLITE_ANTENNA\n"
"LngText.text"
-msgid "satellite"
+msgid "antenna"
msgstr ""
#. 📢 (U+1F4E2), see http://wiki.documentfoundation.org/Emoji
@@ -7730,7 +7701,7 @@ msgctxt ""
"emoji.ulf\n"
"INCOMING_ENVELOPE\n"
"LngText.text"
-msgid "envelope2"
+msgid "envelope7"
msgstr ""
#. 📩 (U+1F4E9), see http://wiki.documentfoundation.org/Emoji
@@ -7739,7 +7710,7 @@ msgctxt ""
"emoji.ulf\n"
"ENVELOPE_WITH_DOWNWARDS_ARROW_ABOVE\n"
"LngText.text"
-msgid "envelope3"
+msgid "envelope8"
msgstr ""
#. 📪 (U+1F4EA), see http://wiki.documentfoundation.org/Emoji
@@ -8566,7 +8537,7 @@ msgctxt ""
"emoji.ulf\n"
"SMILING_FACE_WITH_OPEN_MOUTH_AND_TIGHTLY-CLOSED_EYES\n"
"LngText.text"
-msgid "laughing"
+msgid "laugh"
msgstr ""
#. 😇 (U+1F607), see http://wiki.documentfoundation.org/Emoji
@@ -8639,7 +8610,7 @@ msgctxt ""
"emoji.ulf\n"
"SMILING_FACE_WITH_SUNGLASSES\n"
"LngText.text"
-msgid "sunglasses"
+msgid "sunglasses2"
msgstr ""
#. 😏 (U+1F60F), see http://wiki.documentfoundation.org/Emoji
@@ -9112,7 +9083,7 @@ msgctxt ""
"emoji.ulf\n"
"FACE_WITH_OK_GESTURE\n"
"LngText.text"
-msgid "ok2"
+msgid "ok3"
msgstr ""
#. 🙇 (U+1F647), see http://wiki.documentfoundation.org/Emoji
@@ -9121,7 +9092,7 @@ msgctxt ""
"emoji.ulf\n"
"PERSON_BOWING_DEEPLY\n"
"LngText.text"
-msgid "bow"
+msgid "prostration"
msgstr ""
#. 🙈 (U+1F648), see http://wiki.documentfoundation.org/Emoji
@@ -9220,7 +9191,7 @@ msgctxt ""
"emoji.ulf\n"
"STEAM_LOCOMOTIVE\n"
"LngText.text"
-msgid "steam locomotive"
+msgid "locomotive"
msgstr ""
#. 🚃 (U+1F683), see http://wiki.documentfoundation.org/Emoji
@@ -9710,7 +9681,7 @@ msgctxt ""
"emoji.ulf\n"
"CHILDREN_CROSSING\n"
"LngText.text"
-msgid "children crossing"
+msgid "crosswalk"
msgstr ""
#. 🚹 (U+1F6B9), see http://wiki.documentfoundation.org/Emoji
@@ -9830,6 +9801,3714 @@ msgctxt ""
msgid "left luggage"
msgstr ""
+#. 🕃 (U+1F543), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTCHED_LEFT_SEMICIRCLE_WITH_THREE_DOTS\n"
+"LngText.text"
+msgid "feast"
+msgstr ""
+
+#. 🙂 (U+1F642), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLIGHTLY_SMILING_FACE\n"
+"LngText.text"
+msgid "smiling3"
+msgstr ""
+
+#. 🙁 (U+1F641), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLIGHTLY_FROWNING_FACE\n"
+"LngText.text"
+msgid "frowning2"
+msgstr ""
+
+#. 🕵 (U+1F575), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLEUTH_OR_SPY\n"
+"LngText.text"
+msgid "detective"
+msgstr ""
+
+#. 🛌 (U+1F6CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLEEPING_ACCOMMODATION\n"
+"LngText.text"
+msgid "sleep"
+msgstr ""
+
+#. 🕴 (U+1F574), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_IN_BUSINESS_SUIT_LEVITATING\n"
+"LngText.text"
+msgid "suit"
+msgstr ""
+
+#. 🗣 (U+1F5E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPEAKING_HEAD_IN_SILHOUETTE\n"
+"LngText.text"
+msgid "head"
+msgstr ""
+
+#. 🏌 (U+1F3CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GOLFER\n"
+"LngText.text"
+msgid "golf"
+msgstr ""
+
+#. 🏋 (U+1F3CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WEIGHT_LIFTER\n"
+"LngText.text"
+msgid "weight lifter"
+msgstr ""
+
+#. 🏎 (U+1F3CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RACING_CAR\n"
+"LngText.text"
+msgid "car4"
+msgstr ""
+
+#. 🏍 (U+1F3CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RACING_MOTORCYCLE\n"
+"LngText.text"
+msgid "motorcycle"
+msgstr ""
+
+#. 🖕 (U+1F595), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_HAND_WITH_MIDDLE_FINGER_EXTENDED\n"
+"LngText.text"
+msgid "finger"
+msgstr ""
+
+#. 🖖 (U+1F596), Mr. Spock's Vulcan salute from Star Trek, see also http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_HAND_WITH_PART_BETWEEN_MIDDLE_AND_RING_FINGERS\n"
+"LngText.text"
+msgid "spock"
+msgstr ""
+
+#. 🖐 (U+1F590), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_HAND_WITH_FINGERS_SPLAYED\n"
+"LngText.text"
+msgid "hand2"
+msgstr ""
+
+#. 👁 (U+1F441), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EYE\n"
+"LngText.text"
+msgid "eye"
+msgstr ""
+
+#. 🗨 (U+1F5E8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_SPEECH_BUBBLE\n"
+"LngText.text"
+msgid "bubble"
+msgstr ""
+
+#. 🗯 (U+1F5EF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_ANGER_BUBBLE\n"
+"LngText.text"
+msgid "bubble4"
+msgstr ""
+
+#. 🕳 (U+1F573), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOLE\n"
+"LngText.text"
+msgid "hole"
+msgstr ""
+
+#. 🕶 (U+1F576), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DARK_SUNGLASSES\n"
+"LngText.text"
+msgid "sunglasses"
+msgstr ""
+
+#. 🛍 (U+1F6CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOPPING_BAGS\n"
+"LngText.text"
+msgid "shop"
+msgstr ""
+
+#. 🐿 (U+1F43F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHIPMUNK\n"
+"LngText.text"
+msgid "chipmunk"
+msgstr ""
+
+#. 🕊 (U+1F54A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOVE_OF_PEACE\n"
+"LngText.text"
+msgid "dove"
+msgstr ""
+
+#. 🕷 (U+1F577), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIDER\n"
+"LngText.text"
+msgid "spider"
+msgstr ""
+
+#. 🕸 (U+1F578), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIDER_WEB\n"
+"LngText.text"
+msgid "web"
+msgstr ""
+
+#. 🏵 (U+1F3F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROSETTE\n"
+"LngText.text"
+msgid "rosette"
+msgstr ""
+
+#. 🌶 (U+1F336), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOT_PEPPER\n"
+"LngText.text"
+msgid "pepper"
+msgstr ""
+
+#. 🍽 (U+1F37D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FORK_AND_KNIFE_WITH_PLATE\n"
+"LngText.text"
+msgid "plate"
+msgstr ""
+
+#. 🗺 (U+1F5FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WORLD_MAP\n"
+"LngText.text"
+msgid "map"
+msgstr ""
+
+#. 🏔 (U+1F3D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SNOW_CAPPED_MOUNTAIN\n"
+"LngText.text"
+msgid "mountain2"
+msgstr ""
+
+#. 🏕 (U+1F3D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CAMPING\n"
+"LngText.text"
+msgid "camping"
+msgstr ""
+
+#. 🏖 (U+1F3D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEACH_WITH_UMBRELLA\n"
+"LngText.text"
+msgid "beach"
+msgstr ""
+
+#. 🏜 (U+1F3DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESERT\n"
+"LngText.text"
+msgid "desert"
+msgstr ""
+
+#. 🏝 (U+1F3DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESERT_ISLAND\n"
+"LngText.text"
+msgid "island"
+msgstr ""
+
+#. 🏞 (U+1F3DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NATIONAL_PARK\n"
+"LngText.text"
+msgid "park"
+msgstr ""
+
+#. 🏟 (U+1F3DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STADIUM\n"
+"LngText.text"
+msgid "stadium"
+msgstr ""
+
+#. 🏛 (U+1F3DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLASSICAL_BUILDING\n"
+"LngText.text"
+msgid "museum"
+msgstr ""
+
+#. 🏗 (U+1F3D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BUILDING_CONSTRUCTION\n"
+"LngText.text"
+msgid "crane"
+msgstr ""
+
+#. 🏘 (U+1F3D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOUSE_BUILDINGS\n"
+"LngText.text"
+msgid "houses"
+msgstr ""
+
+#. 🏚 (U+1F3DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DERELICT_HOUSE_BUILDING\n"
+"LngText.text"
+msgid "house3"
+msgstr ""
+
+#. 🏙 (U+1F3D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CITYSCAPE\n"
+"LngText.text"
+msgid "city"
+msgstr ""
+
+#. 🛣 (U+1F6E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTORWAY\n"
+"LngText.text"
+msgid "motorway"
+msgstr ""
+
+#. 🛤 (U+1F6E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAILWAY_TRACK\n"
+"LngText.text"
+msgid "track"
+msgstr ""
+
+#. 🛢 (U+1F6E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OIL_DRUM\n"
+"LngText.text"
+msgid "drum"
+msgstr ""
+
+#. 🛳 (U+1F6F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PASSENGER_SHIP\n"
+"LngText.text"
+msgid "ship2"
+msgstr ""
+
+#. 🛥 (U+1F6E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTOR_BOAT\n"
+"LngText.text"
+msgid "motor boat"
+msgstr ""
+
+#. 🛩 (U+1F6E9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SMALL_AIRPLANE\n"
+"LngText.text"
+msgid "airplane2"
+msgstr ""
+
+#. 🛫 (U+1F6EB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AIRPLANE_DEPARTURE\n"
+"LngText.text"
+msgid "departure"
+msgstr ""
+
+#. 🛬 (U+1F6EC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AIRPLANE_ARRIVING\n"
+"LngText.text"
+msgid "arrival"
+msgstr ""
+
+#. 🛰 (U+1F6F0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SATELLITE\n"
+"LngText.text"
+msgid "satellite"
+msgstr ""
+
+#. 🛎 (U+1F6CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BELLHOP_BELL\n"
+"LngText.text"
+msgid "bell2"
+msgstr ""
+
+#. 🕰 (U+1F570), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MANTELPIECE_CLOCK\n"
+"LngText.text"
+msgid "clock"
+msgstr ""
+
+#. 🌡 (U+1F321), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THERMOMETER\n"
+"LngText.text"
+msgid "thermometer"
+msgstr ""
+
+#. 🌤 (U+1F324), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_WITH_SMALL_CLOUD\n"
+"LngText.text"
+msgid "cloudy"
+msgstr ""
+
+#. 🌥 (U+1F325), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_BEHIND_CLOUD\n"
+"LngText.text"
+msgid "cloudy2"
+msgstr ""
+
+#. 🌦 (U+1F326), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_BEHIND_CLOUD_WITH_RAIN\n"
+"LngText.text"
+msgid "rainy"
+msgstr ""
+
+#. 🌧 (U+1F327), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_RAIN\n"
+"LngText.text"
+msgid "storm"
+msgstr ""
+
+#. 🌨 (U+1F328), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_SNOW\n"
+"LngText.text"
+msgid "snow"
+msgstr ""
+
+#. 🌩 (U+1F329), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_LIGHTNING\n"
+"LngText.text"
+msgid "lightning"
+msgstr ""
+
+#. 🌪 (U+1F32A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_TORNADO\n"
+"LngText.text"
+msgid "tornado"
+msgstr ""
+
+#. 🌫 (U+1F32B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOG\n"
+"LngText.text"
+msgid "fog"
+msgstr ""
+
+#. 🌬 (U+1F32C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WIND_BLOWING_FACE\n"
+"LngText.text"
+msgid "wind"
+msgstr ""
+
+#. 🎗 (U+1F397), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REMINDER_RIBBON\n"
+"LngText.text"
+msgid "ribbon"
+msgstr ""
+
+#. 🎟 (U+1F39F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ADMISSION_TICKETS\n"
+"LngText.text"
+msgid "ticket2"
+msgstr ""
+
+#. 🎖 (U+1F396), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MILITARY_MEDAL\n"
+"LngText.text"
+msgid "medal2"
+msgstr ""
+
+#. 🏅 (U+1F3C5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPORTS_MEDAL\n"
+"LngText.text"
+msgid "medal"
+msgstr ""
+
+#. 🕹 (U+1F579), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"JOYSTICK\n"
+"LngText.text"
+msgid "joystick"
+msgstr ""
+
+#. 🖼 (U+1F5BC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_PICTURE\n"
+"LngText.text"
+msgid "picture"
+msgstr ""
+
+#. 🎙 (U+1F399), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STUDIO_MICROPHONE\n"
+"LngText.text"
+msgid "microphone2"
+msgstr ""
+
+#. 🎚 (U+1F39A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEVEL_SLIDER\n"
+"LngText.text"
+msgid "slider"
+msgstr ""
+
+#. 🎛 (U+1F39B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CONTROL_KNOBS\n"
+"LngText.text"
+msgid "control"
+msgstr ""
+
+#. 🖥 (U+1F5A5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESKTOP_COMPUTER\n"
+"LngText.text"
+msgid "computer2"
+msgstr ""
+
+#. 🖨 (U+1F5A8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINTER\n"
+"LngText.text"
+msgid "printer"
+msgstr ""
+
+#. 🖱 (U+1F5B1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse3"
+msgstr ""
+
+#. 🖲 (U+1F5B2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TRACKBALL\n"
+"LngText.text"
+msgid "trackball"
+msgstr ""
+
+#. 🎞 (U+1F39E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILM_FRAMES\n"
+"LngText.text"
+msgid "film"
+msgstr ""
+
+#. 📽 (U+1F4FD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILM_PROJECTOR\n"
+"LngText.text"
+msgid "projector"
+msgstr ""
+
+#. 📸 (U+1F4F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CAMERA_WITH_FLASH\n"
+"LngText.text"
+msgid "flash"
+msgstr ""
+
+#. 🕯 (U+1F56F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANDLE\n"
+"LngText.text"
+msgid "candle"
+msgstr ""
+
+#. 🗞 (U+1F5DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROLLED-UP_NEWSPAPER\n"
+"LngText.text"
+msgid "newspaper2"
+msgstr ""
+
+#. 🏷 (U+1F3F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LABEL\n"
+"LngText.text"
+msgid "label"
+msgstr ""
+
+#. 🗳 (U+1F5F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BALLOT\n"
+"LngText.text"
+msgid "ballot"
+msgstr ""
+
+#. 🖋 (U+1F58B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_FOUNTAIN_PEN\n"
+"LngText.text"
+msgid "pen2"
+msgstr ""
+
+#. 🖊 (U+1F58A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_BALLPOINT_PEN\n"
+"LngText.text"
+msgid "pen"
+msgstr ""
+
+#. 🖌 (U+1F58C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_PAINTBRUSH\n"
+"LngText.text"
+msgid "paintbrush"
+msgstr ""
+
+#. 🖍 (U+1F58D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_CRAYON\n"
+"LngText.text"
+msgid "crayon"
+msgstr ""
+
+#. 🗂 (U+1F5C2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARD_INDEX_DIVIDERS\n"
+"LngText.text"
+msgid "index"
+msgstr ""
+
+#. 🗒 (U+1F5D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIRAL_NOTE_PAD\n"
+"LngText.text"
+msgid "notepad"
+msgstr ""
+
+#. 🗓 (U+1F5D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIRAL_CALENDAR_PAD\n"
+"LngText.text"
+msgid "calendar3"
+msgstr ""
+
+#. 🖇 (U+1F587), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LINKED_PAPERCLIPS\n"
+"LngText.text"
+msgid "paperclip2"
+msgstr ""
+
+#. 🗃 (U+1F5C3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARD_FILE_BOX\n"
+"LngText.text"
+msgid "box"
+msgstr ""
+
+#. 🗄 (U+1F5C4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILE_CABINET\n"
+"LngText.text"
+msgid "cabinet"
+msgstr ""
+
+#. 🗑 (U+1F5D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WASTEBASKET\n"
+"LngText.text"
+msgid "wastebasket"
+msgstr ""
+
+#. 🗝 (U+1F5DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLD_KEY\n"
+"LngText.text"
+msgid "key2"
+msgstr ""
+
+#. 🛠 (U+1F6E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HAMMER_AND_WRENCH\n"
+"LngText.text"
+msgid "hammer and wrench"
+msgstr ""
+
+#. 🗡 (U+1F5E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DAGGER_KNIFE\n"
+"LngText.text"
+msgid "knife2"
+msgstr ""
+
+#. 🛡 (U+1F6E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHIELD\n"
+"LngText.text"
+msgid "shield"
+msgstr ""
+
+#. 🗜 (U+1F5DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COMPRESSION\n"
+"LngText.text"
+msgid "clamp"
+msgstr ""
+
+#. 🛏 (U+1F6CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BED\n"
+"LngText.text"
+msgid "bed"
+msgstr ""
+
+#. 🛋 (U+1F6CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COUCH_AND_LAMP\n"
+"LngText.text"
+msgid "couch"
+msgstr ""
+
+#. 🕉 (U+1F549), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OM_SYMBOL\n"
+"LngText.text"
+msgid "om"
+msgstr ""
+
+#. ⏸ (U+23F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOUBLE_VERTICAL_BAR\n"
+"LngText.text"
+msgid "pause"
+msgstr ""
+
+#. ⏹ (U+23F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_SQUARE_FOR_STOP\n"
+"LngText.text"
+msgid "stop2"
+msgstr ""
+
+#. ⏺ (U+23FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_CIRCLE_FOR_RECORD\n"
+"LngText.text"
+msgid "record"
+msgstr ""
+
+#. 🏴 (U+1F3F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WAVING_BLACK_FLAG\n"
+"LngText.text"
+msgid "flag"
+msgstr ""
+
+#. 🏳 (U+1F3F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WAVING_WHITE_FLAG\n"
+"LngText.text"
+msgid "flag2"
+msgstr ""
+
+#. 🗷 (U+1F5F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BOLD_SCRIPT_X\n"
+"LngText.text"
+msgid "checkbox4"
+msgstr ""
+
+#. 🛉 (U+1F6C9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOYS_SYMBOL\n"
+"LngText.text"
+msgid "boys"
+msgstr ""
+
+#. 🛈 (U+1F6C8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CIRCLED_INFORMATION_SOURCE\n"
+"LngText.text"
+msgid "information3"
+msgstr ""
+
+#. 🛊 (U+1F6CA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GIRLS_SYMBOL\n"
+"LngText.text"
+msgid "girls"
+msgstr ""
+
+#. 🛨 (U+1F6E8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_SMALL_AIRPLANE\n"
+"LngText.text"
+msgid "airplane4"
+msgstr ""
+
+#. 🛲 (U+1F6F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DIESEL_LOCOMOTIVE\n"
+"LngText.text"
+msgid "locomotive2"
+msgstr ""
+
+#. 🛧 (U+1F6E7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_AIRPLANE\n"
+"LngText.text"
+msgid "airplane3"
+msgstr ""
+
+#. 🛱 (U+1F6F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ONCOMING_FIRE_ENGINE\n"
+"LngText.text"
+msgid "fire engine2"
+msgstr ""
+
+#. 🛦 (U+1F6E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_MILITARY_AIRPLANE\n"
+"LngText.text"
+msgid "airplane5"
+msgstr ""
+
+#. 🛪 (U+1F6EA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NORTHEAST-POINTING_AIRPLANE\n"
+"LngText.text"
+msgid "airplane6"
+msgstr ""
+
+#. 🗭 (U+1F5ED), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_THOUGHT_BUBBLE\n"
+"LngText.text"
+msgid "bubble5"
+msgstr ""
+
+#. 🗱 (U+1F5F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHTNING_MOOD_BUBBLE\n"
+"LngText.text"
+msgid "bubble6"
+msgstr ""
+
+#. 🗬 (U+1F5EC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_THOUGHT_BUBBLE\n"
+"LngText.text"
+msgid "bubble7"
+msgstr ""
+
+#. 🗠 (U+1F5E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STOCK_CHART\n"
+"LngText.text"
+msgid "chart5"
+msgstr ""
+
+#. 🗟 (U+1F5DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGE_WITH_CIRCLED_TEXT\n"
+"LngText.text"
+msgid "page4"
+msgstr ""
+
+#. 🖎 (U+1F58E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_WRITING_HAND\n"
+"LngText.text"
+msgid "writing2"
+msgstr ""
+
+#. 🗦 (U+1F5E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_LEFT\n"
+"LngText.text"
+msgid "rays"
+msgstr ""
+
+#. 🎝 (U+1F39D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEAMED_DESCENDING_MUSICAL_NOTES\n"
+"LngText.text"
+msgid "notes3"
+msgstr ""
+
+#. 🔾 (U+1F53E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_RIGHT_SHADOWED_WHITE_CIRCLE\n"
+"LngText.text"
+msgid "circle3"
+msgstr ""
+
+#. 🎜 (U+1F39C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEAMED_ASCENDING_MUSICAL_NOTES\n"
+"LngText.text"
+msgid "notes4"
+msgstr ""
+
+#. 🕮 (U+1F56E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOOK\n"
+"LngText.text"
+msgid "book"
+msgstr ""
+
+#. 🗛 (U+1F5DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DECREASE_FONT_SIZE_SYMBOL\n"
+"LngText.text"
+msgid "font"
+msgstr ""
+
+#. 🔿 (U+1F53F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UPPER_RIGHT_SHADOWED_WHITE_CIRCLE\n"
+"LngText.text"
+msgid "circle4"
+msgstr ""
+
+#. 🕫 (U+1F56B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BULLHORN\n"
+"LngText.text"
+msgid "bullhorn"
+msgstr ""
+
+#. 🕬 (U+1F56C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BULLHORN_WITH_SOUND_WAVES\n"
+"LngText.text"
+msgid "bullhorn2"
+msgstr ""
+
+#. 🕻 (U+1F57B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_HAND_TELEPHONE_RECEIVER\n"
+"LngText.text"
+msgid "receiver2"
+msgstr ""
+
+#. 🕾 (U+1F57E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_TOUCHTONE_TELEPHONE\n"
+"LngText.text"
+msgid "phone3"
+msgstr ""
+
+#. 🕼 (U+1F57C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TELEPHONE_RECEIVER_WITH_PAGE\n"
+"LngText.text"
+msgid "receiver4"
+msgstr ""
+
+#. 🕽 (U+1F57D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_HAND_TELEPHONE_RECEIVER\n"
+"LngText.text"
+msgid "receiver3"
+msgstr ""
+
+#. 🕿 (U+1F57F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_TOUCHTONE_TELEPHONE\n"
+"LngText.text"
+msgid "phone4"
+msgstr ""
+
+#. 🖚 (U+1F59A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_LEFT_POINTING_INDEX\n"
+"LngText.text"
+msgid "left4"
+msgstr ""
+
+#. 🖏 (U+1F58F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TURNED_OK_HAND_SIGN\n"
+"LngText.text"
+msgid "ok2"
+msgstr ""
+
+#. 🖜 (U+1F59C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_LEFT_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "left5"
+msgstr ""
+
+#. 🗥 (U+1F5E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_BELOW\n"
+"LngText.text"
+msgid "rays2"
+msgstr ""
+
+#. 🖛 (U+1F59B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_RIGHT_POINTING_INDEX\n"
+"LngText.text"
+msgid "right4"
+msgstr ""
+
+#. 🖟 (U+1F59F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_DOWN_POINTING_INDEX\n"
+"LngText.text"
+msgid "down3"
+msgstr ""
+
+#. 🖞 (U+1F59E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_UP_POINTING_INDEX\n"
+"LngText.text"
+msgid "up3"
+msgstr ""
+
+#. 🌢 (U+1F322), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_DROPLET\n"
+"LngText.text"
+msgid "droplet2"
+msgstr ""
+
+#. 🎘 (U+1F398), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MUSICAL_KEYBOARD_WITH_JACKS\n"
+"LngText.text"
+msgid "synthesizer"
+msgstr ""
+
+#. 🎕 (U+1F395), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOUQUET_OF_FLOWERS\n"
+"LngText.text"
+msgid "bouquet2"
+msgstr ""
+
+#. 🎔 (U+1F394), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEART_WITH_TIP_ON_THE_LEFT\n"
+"LngText.text"
+msgid "heart2"
+msgstr ""
+
+#. 🕱 (U+1F571), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_SKULL_AND_CROSSBONES\n"
+"LngText.text"
+msgid "pirate"
+msgstr ""
+
+#. 🖀 (U+1F580), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TELEPHONE_ON_TOP_OF_MODEM\n"
+"LngText.text"
+msgid "modem"
+msgstr ""
+
+#. 🕲 (U+1F572), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NO_PIRACY\n"
+"LngText.text"
+msgid "no piracy"
+msgstr ""
+
+#. 🕅 (U+1F545), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SYMBOL_FOR_MARKS_CHAPTER\n"
+"LngText.text"
+msgid "marks chapter"
+msgstr ""
+
+#. 🕈 (U+1F548), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CELTIC_CROSS\n"
+"LngText.text"
+msgid "Celtic cross"
+msgstr ""
+
+#. 🖗 (U+1F597), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_DOWN_POINTING_LEFT_HAND_INDEX\n"
+"LngText.text"
+msgid "down4"
+msgstr ""
+
+#. 🖆 (U+1F586), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEN_OVER_STAMPED_ENVELOPE\n"
+"LngText.text"
+msgid "envelope4"
+msgstr ""
+
+#. 🖃 (U+1F583), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STAMPED_ENVELOPE\n"
+"LngText.text"
+msgid "envelope2"
+msgstr ""
+
+#. 🗤 (U+1F5E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_ABOVE\n"
+"LngText.text"
+msgid "rays3"
+msgstr ""
+
+#. 🖉 (U+1F589), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_PENCIL\n"
+"LngText.text"
+msgid "pencil4"
+msgstr ""
+
+#. 🖂 (U+1F582), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BACK_OF_ENVELOPE\n"
+"LngText.text"
+msgid "envelope3"
+msgstr ""
+
+#. 🖈 (U+1F588), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_PUSHPIN\n"
+"LngText.text"
+msgid "tack"
+msgstr ""
+
+#. 🖄 (U+1F584), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ENVELOPE_WITH_LIGHTNING\n"
+"LngText.text"
+msgid "envelope5"
+msgstr ""
+
+#. 🖁 (U+1F581), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLAMSHELL_MOBILE_PHONE\n"
+"LngText.text"
+msgid "mobile2"
+msgstr ""
+
+#. 🖅 (U+1F585), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FLYING_ENVELOPE\n"
+"LngText.text"
+msgid "envelope6"
+msgstr ""
+
+#. 🖘 (U+1F598), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_LEFT_POINTING_INDEX\n"
+"LngText.text"
+msgid "left6"
+msgstr ""
+
+#. 🖙 (U+1F599), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_RIGHT_POINTING_INDEX\n"
+"LngText.text"
+msgid "right5"
+msgstr ""
+
+#. 🗖 (U+1F5D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAXIMIZE\n"
+"LngText.text"
+msgid "maximize"
+msgstr ""
+
+#. 🗗 (U+1F5D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OVERLAP\n"
+"LngText.text"
+msgid "overlap"
+msgstr ""
+
+#. 🗏 (U+1F5CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGE\n"
+"LngText.text"
+msgid "page2"
+msgstr ""
+
+#. 🗐 (U+1F5D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGES\n"
+"LngText.text"
+msgid "pages"
+msgstr ""
+
+#. 🗘 (U+1F5D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOCKWISE_RIGHT_AND_LEFT_SEMICIRCLE_ARROWS\n"
+"LngText.text"
+msgid "arrows"
+msgstr ""
+
+#. 🗚 (U+1F5DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"INCREASE_FONT_SIZE_SYMBOL\n"
+"LngText.text"
+msgid "font2"
+msgstr ""
+
+#. 🗕 (U+1F5D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MINIMIZE\n"
+"LngText.text"
+msgid "minimize"
+msgstr ""
+
+#. 🗙 (U+1F5D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANCELLATION_X\n"
+"LngText.text"
+msgid "cancel"
+msgstr ""
+
+#. 🗔 (U+1F5D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESKTOP_WINDOW\n"
+"LngText.text"
+msgid "window"
+msgstr ""
+
+#. 🗌 (U+1F5CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_PAGE\n"
+"LngText.text"
+msgid "empty page"
+msgstr ""
+
+#. 🗋 (U+1F5CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_DOCUMENT\n"
+"LngText.text"
+msgid "empty document"
+msgstr ""
+
+#. 🗍 (U+1F5CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_PAGES\n"
+"LngText.text"
+msgid "empty pages"
+msgstr ""
+
+#. 🗎 (U+1F5CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT\n"
+"LngText.text"
+msgid "document"
+msgstr ""
+
+#. 🗆 (U+1F5C6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE_PAGE\n"
+"LngText.text"
+msgid "empty note page"
+msgstr ""
+
+#. 🗊 (U+1F5CA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE_PAD\n"
+"LngText.text"
+msgid "note pad"
+msgstr ""
+
+#. 🗈 (U+1F5C8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE\n"
+"LngText.text"
+msgid "note3"
+msgstr ""
+
+#. 🗇 (U+1F5C7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE_PAD\n"
+"LngText.text"
+msgid "empty note pad"
+msgstr ""
+
+#. 🗉 (U+1F5C9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE_PAGE\n"
+"LngText.text"
+msgid "note page"
+msgstr ""
+
+#. 🖸 (U+1F5B8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OPTICAL_DISC_ICON\n"
+"LngText.text"
+msgid "optical disc"
+msgstr ""
+
+#. 🗀 (U+1F5C0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOLDER\n"
+"LngText.text"
+msgid "folder3"
+msgstr ""
+
+#. 🖝 (U+1F59D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_RIGHT_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "right6"
+msgstr ""
+
+#. 🗁 (U+1F5C1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OPEN_FOLDER\n"
+"LngText.text"
+msgid "folder4"
+msgstr ""
+
+#. 🗅 (U+1F5C5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE\n"
+"LngText.text"
+msgid "empty note"
+msgstr ""
+
+#. 🖿 (U+1F5BF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_FOLDER\n"
+"LngText.text"
+msgid "folder5"
+msgstr ""
+
+#. 🖾 (U+1F5BE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_AN_X\n"
+"LngText.text"
+msgid "frame"
+msgstr ""
+
+#. 🖽 (U+1F5BD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_TILES\n"
+"LngText.text"
+msgid "frame2"
+msgstr ""
+
+#. 🖹 (U+1F5B9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_TEXT\n"
+"LngText.text"
+msgid "document2"
+msgstr ""
+
+#. 🖻 (U+1F5BB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_PICTURE\n"
+"LngText.text"
+msgid "document3"
+msgstr ""
+
+#. 🖺 (U+1F5BA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_TEXT_AND_PICTURE\n"
+"LngText.text"
+msgid "document4"
+msgstr ""
+
+#. 🖶 (U+1F5B6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINTER_ICON\n"
+"LngText.text"
+msgid "printer2"
+msgstr ""
+
+#. 🖷 (U+1F5B7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FAX_ICON\n"
+"LngText.text"
+msgid "fax2"
+msgstr ""
+
+#. 🖰 (U+1F5B0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TWO_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse4"
+msgstr ""
+
+#. 🖳 (U+1F5B3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLD_PERSONAL_COMPUTER\n"
+"LngText.text"
+msgid "pc"
+msgstr ""
+
+#. 🖵 (U+1F5B5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCREEN\n"
+"LngText.text"
+msgid "screen"
+msgstr ""
+
+#. 🖯 (U+1F5AF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ONE_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse5"
+msgstr ""
+
+#. 🖴 (U+1F5B4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HARD_DISK\n"
+"LngText.text"
+msgid "hard disk"
+msgstr ""
+
+#. 🖩 (U+1F5A9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POCKET_CALCULATOR\n"
+"LngText.text"
+msgid "calculator"
+msgstr ""
+
+#. 🖭 (U+1F5AD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TAPE_CARTRIDGE\n"
+"LngText.text"
+msgid "cartridge"
+msgstr ""
+
+#. 🖬 (U+1F5AC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SOFT_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy2"
+msgstr ""
+
+#. 🖫 (U+1F5AB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_HARD_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy3"
+msgstr ""
+
+#. 🖮 (U+1F5AE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WIRED_KEYBOARD\n"
+"LngText.text"
+msgid "keyboard2"
+msgstr ""
+
+#. 🖔 (U+1F594), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_VICTORY_HAND\n"
+"LngText.text"
+msgid "victory2"
+msgstr ""
+
+#. 🖧 (U+1F5A7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_NETWORKED_COMPUTERS\n"
+"LngText.text"
+msgid "network"
+msgstr ""
+
+#. 🖪 (U+1F5AA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_HARD_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy4"
+msgstr ""
+
+#. 🗢 (U+1F5E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIPS\n"
+"LngText.text"
+msgid "lips"
+msgstr ""
+
+#. 🖦 (U+1F5A6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KEYBOARD_AND_MOUSE\n"
+"LngText.text"
+msgid "keyboard3"
+msgstr ""
+
+#. 🖣 (U+1F5A3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_DOWN_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "down5"
+msgstr ""
+
+#. 🖡 (U+1F5A1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_DOWN_POINTING_INDEX\n"
+"LngText.text"
+msgid "down6"
+msgstr ""
+
+#. 📾 (U+1F4FE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PORTABLE_STEREO\n"
+"LngText.text"
+msgid "stereo"
+msgstr ""
+
+#. 🏶 (U+1F3F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_ROSETTE\n"
+"LngText.text"
+msgid "rosette2"
+msgstr ""
+
+#. 🏲 (U+1F3F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_PENNANT\n"
+"LngText.text"
+msgid "pennant"
+msgstr ""
+
+#. 🖠 (U+1F5A0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_UP_POINTING_INDEX\n"
+"LngText.text"
+msgid "up4"
+msgstr ""
+
+#. 🖢 (U+1F5A2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_UP_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "up5"
+msgstr ""
+
+#. 🏱 (U+1F3F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_PENNANT\n"
+"LngText.text"
+msgid "pennant2"
+msgstr ""
+
+#. 🕄 (U+1F544), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTCHED_RIGHT_SEMICIRCLE_WITH_THREE_DOTS\n"
+"LngText.text"
+msgid "feast2"
+msgstr ""
+
+#. 🖓 (U+1F593), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_THUMBS_DOWN_SIGN\n"
+"LngText.text"
+msgid "no2"
+msgstr ""
+
+#. 🖑 (U+1F591), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_RAISED_HAND_WITH_FINGERS_SPLAYED\n"
+"LngText.text"
+msgid "hand3"
+msgstr ""
+
+#. 🖒 (U+1F592), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_THUMBS_UP_SIGN\n"
+"LngText.text"
+msgid "yes2"
+msgstr ""
+
+#. 🕩 (U+1F569), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER_WITH_ONE_SOUND_WAVE\n"
+"LngText.text"
+msgid "speaker2"
+msgstr ""
+
+#. 🕆 (U+1F546), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_LATIN_CROSS\n"
+"LngText.text"
+msgid "Latin cross2"
+msgstr ""
+
+#. 🕇 (U+1F547), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEAVY_LATIN_CROSS\n"
+"LngText.text"
+msgid "Latin cross3"
+msgstr ""
+
+#. 🕨 (U+1F568), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER\n"
+"LngText.text"
+msgid "speaker3"
+msgstr ""
+
+#. 🕭 (U+1F56D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RINGING_BELL\n"
+"LngText.text"
+msgid "bell3"
+msgstr ""
+
+#. 🌣 (U+1F323), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN\n"
+"LngText.text"
+msgid "sun2"
+msgstr ""
+
+#. 🛇 (U+1F6C7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PROHIBITED_SIGN\n"
+"LngText.text"
+msgid "prohibited"
+msgstr ""
+
+#. 🛆 (U+1F6C6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TRIANGLE_WITH_ROUNDED_CORNERS\n"
+"LngText.text"
+msgid "triangle3"
+msgstr ""
+
+#. 🗫 (U+1F5EB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_SPEECH_BUBBLES\n"
+"LngText.text"
+msgid "bubble3"
+msgstr ""
+
+#. 🕪 (U+1F56A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER_WITH_THREE_SOUND_WAVES\n"
+"LngText.text"
+msgid "speaker4"
+msgstr ""
+
+#. 🗮 (U+1F5EE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_ANGER_BUBBLE\n"
+"LngText.text"
+msgid "bubble8"
+msgstr ""
+
+#. 🗧 (U+1F5E7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_RIGHT\n"
+"LngText.text"
+msgid "rays4"
+msgstr ""
+
+#. 🗲 (U+1F5F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHTNING_MOOD\n"
+"LngText.text"
+msgid "lightning2"
+msgstr ""
+
+#. 🗰 (U+1F5F0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOOD_BUBBLE\n"
+"LngText.text"
+msgid "bubble9"
+msgstr ""
+
+#. 🗹 (U+1F5F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BOLD_CHECK\n"
+"LngText.text"
+msgid "checkbox5"
+msgstr ""
+
+#. 🗴 (U+1F5F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_SCRIPT_X\n"
+"LngText.text"
+msgid "check mark4"
+msgstr ""
+
+#. 🗪 (U+1F5EA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TWO_SPEECH_BUBBLES\n"
+"LngText.text"
+msgid "bubble2"
+msgstr ""
+
+#. 🗶 (U+1F5F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOLD_SCRIPT_X\n"
+"LngText.text"
+msgid "x4"
+msgstr ""
+
+#. 🗩 (U+1F5E9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEECH_BUBBLE\n"
+"LngText.text"
+msgid "bubble10"
+msgstr ""
+
+#. 🗵 (U+1F5F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_SCRIPT_X\n"
+"LngText.text"
+msgid "checkbox6"
+msgstr ""
+
+#. 🗸 (U+1F5F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHT_CHECK_MARK\n"
+"LngText.text"
+msgid "check mark5"
+msgstr ""
+
+#. 🤗 (U+1F917), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HUGGING_FACE\n"
+"LngText.text"
+msgid "hugging"
+msgstr ""
+
+#. 🤔 (U+1F914), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THINKING_FACE\n"
+"LngText.text"
+msgid "thinking"
+msgstr ""
+
+#. 🙄 (U+1F644), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_ROLLING_EYES\n"
+"LngText.text"
+msgid "eye roll"
+msgstr ""
+
+#. 🤐 (U+1F910), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZIPPER-MOUTH_FACE\n"
+"LngText.text"
+msgid "zipper"
+msgstr ""
+
+#. 🙃 (U+1F643), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UPSIDE-DOWN_FACE\n"
+"LngText.text"
+msgid "upside-down"
+msgstr ""
+
+#. 🤑 (U+1F911), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MONEY-MOUTH_FACE\n"
+"LngText.text"
+msgid "money3"
+msgstr ""
+
+#. 🤒 (U+1F912), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_THERMOMETER\n"
+"LngText.text"
+msgid "thermometer2"
+msgstr ""
+
+#. 🤕 (U+1F915), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_HEAD-BANDAGE\n"
+"LngText.text"
+msgid "bandage"
+msgstr ""
+
+#. 🤓 (U+1F913), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NERD_FACE\n"
+"LngText.text"
+msgid "nerd"
+msgstr ""
+
+#. 🤖 (U+1F916), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROBOT_FACE\n"
+"LngText.text"
+msgid "robot"
+msgstr ""
+
+#. 🏻 (U+1F3FB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-1-2\n"
+"LngText.text"
+msgid "skin1"
+msgstr ""
+
+#. 🏼 (U+1F3FC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-3\n"
+"LngText.text"
+msgid "skin2"
+msgstr ""
+
+#. 🏽 (U+1F3FD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-4\n"
+"LngText.text"
+msgid "skin3"
+msgstr ""
+
+#. 🏾 (U+1F3FE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-5\n"
+"LngText.text"
+msgid "skin4"
+msgstr ""
+
+#. 🏿 (U+1F3FF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-6\n"
+"LngText.text"
+msgid "skin5"
+msgstr ""
+
+#. 🤘 (U+1F918), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIGN_OF_THE_HORNS\n"
+"LngText.text"
+msgid "horns"
+msgstr ""
+
+#. 📿 (U+1F4FF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRAYER_BEADS\n"
+"LngText.text"
+msgid "beads"
+msgstr ""
+
+#. 🦁 (U+1F981), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LION_FACE\n"
+"LngText.text"
+msgid "lion"
+msgstr ""
+
+#. 🦄 (U+1F984), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UNICORN_FACE\n"
+"LngText.text"
+msgid "unicorn"
+msgstr ""
+
+#. 🦃 (U+1F983), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TURKEY\n"
+"LngText.text"
+msgid "turkey"
+msgstr ""
+
+#. 🦀 (U+1F980), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRAB\n"
+"LngText.text"
+msgid "crab"
+msgstr ""
+
+#. 🦂 (U+1F982), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCORPION\n"
+"LngText.text"
+msgid "scorpion"
+msgstr ""
+
+#. 🧀 (U+1F9C0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHEESE_WEDGE\n"
+"LngText.text"
+msgid "cheese"
+msgstr ""
+
+#. 🌭 (U+1F32D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOT_DOG\n"
+"LngText.text"
+msgid "hot dog"
+msgstr ""
+
+#. 🌮 (U+1F32E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TACO\n"
+"LngText.text"
+msgid "taco"
+msgstr ""
+
+#. 🌯 (U+1F32F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BURRITO\n"
+"LngText.text"
+msgid "burrito"
+msgstr ""
+
+#. 🍿 (U+1F37F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POPCORN\n"
+"LngText.text"
+msgid "popcorn"
+msgstr ""
+
+#. 🍾 (U+1F37E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOTTLE_WITH_POPPING_CORK\n"
+"LngText.text"
+msgid "party4"
+msgstr ""
+
+#. 🏺 (U+1F3FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AMPHORA\n"
+"LngText.text"
+msgid "amphora"
+msgstr ""
+
+#. 🕌 (U+1F54C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOSQUE\n"
+"LngText.text"
+msgid "mosque"
+msgstr ""
+
+#. 🕍 (U+1F54D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SYNAGOGUE\n"
+"LngText.text"
+msgid "synagogue"
+msgstr ""
+
+#. 🕋 (U+1F54B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KAABA\n"
+"LngText.text"
+msgid "Kaaba"
+msgstr ""
+
+#. 🏐 (U+1F3D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"VOLLEYBALL\n"
+"LngText.text"
+msgid "volleyball"
+msgstr ""
+
+#. 🏏 (U+1F3CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRICKET_BAT_AND_BALL\n"
+"LngText.text"
+msgid "cricket"
+msgstr ""
+
+#. 🏑 (U+1F3D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FIELD_HOCKEY_STICK_AND_BALL\n"
+"LngText.text"
+msgid "hockey2"
+msgstr ""
+
+#. 🏒 (U+1F3D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ICE_HOCKEY_STICK_AND_PUCK\n"
+"LngText.text"
+msgid "hockey"
+msgstr ""
+
+#. 🏓 (U+1F3D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TABLE_TENNIS_PADDLE_AND_BALL\n"
+"LngText.text"
+msgid "ping pong"
+msgstr ""
+
+#. 🏸 (U+1F3F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BADMINTON_RACQUET_AND_SHUTTLECOCK\n"
+"LngText.text"
+msgid "badminton"
+msgstr ""
+
+#. 🏹 (U+1F3F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOW_AND_ARROW\n"
+"LngText.text"
+msgid "bow"
+msgstr ""
+
+#. 🛐 (U+1F6D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PLACE_OF_WORSHIP\n"
+"LngText.text"
+msgid "worship"
+msgstr ""
+
+#. 🕎 (U+1F54E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MENORAH_WITH_NINE_BRANCHES\n"
+"LngText.text"
+msgid "menorah"
+msgstr ""
+
+#. 🤣 (U+1F923), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROLLING_ON_THE_FLOOR_LAUGHING\n"
+"LngText.text"
+msgid "lol"
+msgstr ""
+
+#. 🤤 (U+1F924), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DROOLING_FACE\n"
+"LngText.text"
+msgid "drool"
+msgstr ""
+
+#. 🤢 (U+1F922), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NAUSEATED_FACE\n"
+"LngText.text"
+msgid "nausea"
+msgstr ""
+
+#. 🤧 (U+1F927), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SNEEZING_FACE\n"
+"LngText.text"
+msgid "sneeze"
+msgstr ""
+
+#. 🤠 (U+1F920), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COWBOY_HAT_FACE\n"
+"LngText.text"
+msgid "cowboy"
+msgstr ""
+
+#. 🤡 (U+1F921), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOWN_FACE\n"
+"LngText.text"
+msgid "clown"
+msgstr ""
+
+#. 🤥 (U+1F925), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LYING_FACE\n"
+"LngText.text"
+msgid "liar"
+msgstr ""
+
+#. 🤴 (U+1F934), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINCE\n"
+"LngText.text"
+msgid "prince"
+msgstr ""
+
+#. 🤵 (U+1F935), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_IN_TUXEDO\n"
+"LngText.text"
+msgid "groom"
+msgstr ""
+
+#. 🤰 (U+1F930), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PREGNANT_WOMAN\n"
+"LngText.text"
+msgid "pregnant"
+msgstr ""
+
+#. 🤶 (U+1F936), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MRS._CLAUS\n"
+"LngText.text"
+msgid "mrs. claus"
+msgstr ""
+
+#. 🤦 (U+1F926), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_FACEPALMING\n"
+"LngText.text"
+msgid "facepalm"
+msgstr ""
+
+#. 🤷 (U+1F937), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_SHRUGGING\n"
+"LngText.text"
+msgid "shrugging"
+msgstr ""
+
+#. 🕺 (U+1F57A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_DANCING\n"
+"LngText.text"
+msgid "dancer2"
+msgstr ""
+
+#. 🤺 (U+1F93A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_FENCING\n"
+"LngText.text"
+msgid "fencer"
+msgstr ""
+
+#. 🤸 (U+1F938), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_CARTWHEELING\n"
+"LngText.text"
+msgid "gymnast"
+msgstr ""
+
+#. 🤼 (U+1F93C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEOPLE_WRESTLING\n"
+"LngText.text"
+msgid "wrestling"
+msgstr ""
+
+#. 🤽 (U+1F93D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_PLAYING_WATER_POLO\n"
+"LngText.text"
+msgid "water polo"
+msgstr ""
+
+#. 🤾 (U+1F93E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_PLAYING_HANDBALL\n"
+"LngText.text"
+msgid "handball"
+msgstr ""
+
+#. 🤹 (U+1F939), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_JUGGLING\n"
+"LngText.text"
+msgid "juggling"
+msgstr ""
+
+#. 🤳 (U+1F933), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SELFIE\n"
+"LngText.text"
+msgid "selfie"
+msgstr ""
+
+#. 🤞 (U+1F91E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CROSSED_FINGERS\n"
+"LngText.text"
+msgid "good luck"
+msgstr ""
+
+#. 🤙 (U+1F919), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CALL_ME_HAND\n"
+"LngText.text"
+msgid "call"
+msgstr ""
+
+#. 🤛 (U+1F91B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT-FACING_FIST\n"
+"LngText.text"
+msgid "fist3"
+msgstr ""
+
+#. 🤜 (U+1F91C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT-FACING_FIST\n"
+"LngText.text"
+msgid "fist4"
+msgstr ""
+
+#. 🤚 (U+1F91A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_BACK_OF_HAND\n"
+"LngText.text"
+msgid "hand4"
+msgstr ""
+
+#. 🤝 (U+1F91D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HANDSHAKE\n"
+"LngText.text"
+msgid "handshake"
+msgstr ""
+
+#. 🖤 (U+1F5A4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_HEART\n"
+"LngText.text"
+msgid "black heart"
+msgstr ""
+
+#. 🦍 (U+1F98D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GORILLA\n"
+"LngText.text"
+msgid "gorilla"
+msgstr ""
+
+#. 🦊 (U+1F98A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOX_FACE\n"
+"LngText.text"
+msgid "fox"
+msgstr ""
+
+#. 🦌 (U+1F98C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DEER\n"
+"LngText.text"
+msgid "deer"
+msgstr ""
+
+#. 🦏 (U+1F98F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RHINOCEROS\n"
+"LngText.text"
+msgid "rhinoceros"
+msgstr ""
+
+#. 🦇 (U+1F987), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BAT\n"
+"LngText.text"
+msgid "bat"
+msgstr ""
+
+#. 🦅 (U+1F985), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EAGLE\n"
+"LngText.text"
+msgid "eagle"
+msgstr ""
+
+#. 🦆 (U+1F986), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DUCK\n"
+"LngText.text"
+msgid "duck"
+msgstr ""
+
+#. 🦉 (U+1F989), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OWL\n"
+"LngText.text"
+msgid "owl"
+msgstr ""
+
+#. 🦎 (U+1F98E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIZARD\n"
+"LngText.text"
+msgid "lizard"
+msgstr ""
+
+#. 🦈 (U+1F988), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHARK\n"
+"LngText.text"
+msgid "shark"
+msgstr ""
+
+#. 🦐 (U+1F990), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHRIMP\n"
+"LngText.text"
+msgid "shrimp"
+msgstr ""
+
+#. 🦑 (U+1F991), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SQUID\n"
+"LngText.text"
+msgid "squid"
+msgstr ""
+
+#. 🦋 (U+1F98B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BUTTERFLY\n"
+"LngText.text"
+msgid "butterfly"
+msgstr ""
+
+#. 🥀 (U+1F940), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WILTED_FLOWER\n"
+"LngText.text"
+msgid "flower2"
+msgstr ""
+
+#. 🥝 (U+1F95D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KIWI_FRUIT\n"
+"LngText.text"
+msgid "kiwi"
+msgstr ""
+
+#. 🥑 (U+1F951), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AVOCADO\n"
+"LngText.text"
+msgid "avocado"
+msgstr ""
+
+#. 🥔 (U+1F954), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POTATO\n"
+"LngText.text"
+msgid "potato"
+msgstr ""
+
+#. 🥕 (U+1F955), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARROT\n"
+"LngText.text"
+msgid "carrot"
+msgstr ""
+
+#. 🥒 (U+1F952), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUCUMBER\n"
+"LngText.text"
+msgid "cucumber"
+msgstr ""
+
+#. 🥜 (U+1F95C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEANUTS\n"
+"LngText.text"
+msgid "peanuts"
+msgstr ""
+
+#. 🥐 (U+1F950), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CROISSANT\n"
+"LngText.text"
+msgid "croissant"
+msgstr ""
+
+#. 🥖 (U+1F956), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BAGUETTE_BREAD\n"
+"LngText.text"
+msgid "bread2"
+msgstr ""
+
+#. 🥞 (U+1F95E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PANCAKES\n"
+"LngText.text"
+msgid "pancakes"
+msgstr ""
+
+#. 🥓 (U+1F953), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BACON\n"
+"LngText.text"
+msgid "bacon"
+msgstr ""
+
+#. 🥙 (U+1F959), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STUFFED_FLATBREAD\n"
+"LngText.text"
+msgid "flatbread"
+msgstr ""
+
+#. 🥚 (U+1F95A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EGG\n"
+"LngText.text"
+msgid "egg"
+msgstr ""
+
+#. 🥘 (U+1F958), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHALLOW_PAN_OF_FOOD\n"
+"LngText.text"
+msgid "food"
+msgstr ""
+
+#. 🥗 (U+1F957), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GREEN_SALAD\n"
+"LngText.text"
+msgid "salad"
+msgstr ""
+
+#. 🥛 (U+1F95B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GLASS_OF_MILK\n"
+"LngText.text"
+msgid "milk"
+msgstr ""
+
+#. 🥂 (U+1F942), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLINKING_GLASSES\n"
+"LngText.text"
+msgid "party3"
+msgstr ""
+
+#. 🥃 (U+1F943), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TUMBLER_GLASS\n"
+"LngText.text"
+msgid "glass3"
+msgstr ""
+
+#. 🥄 (U+1F944), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPOON\n"
+"LngText.text"
+msgid "spoon"
+msgstr ""
+
+#. 🛴 (U+1F6F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCOOTER\n"
+"LngText.text"
+msgid "scooter"
+msgstr ""
+
+#. 🛵 (U+1F6F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTOR_SCOOTER\n"
+"LngText.text"
+msgid "scooter2"
+msgstr ""
+
+#. 🛑 (U+1F6D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OCTAGONAL_SIGN\n"
+"LngText.text"
+msgid "stop"
+msgstr ""
+
+#. 🛶 (U+1F6F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANOE\n"
+"LngText.text"
+msgid "canoe"
+msgstr ""
+
+#. 🥇 (U+1F947), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"1ST_PLACE_MEDAL\n"
+"LngText.text"
+msgid "gold"
+msgstr ""
+
+#. 🥈 (U+1F948), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"2ND_PLACE_MEDAL\n"
+"LngText.text"
+msgid "silver"
+msgstr ""
+
+#. 🥉 (U+1F949), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"3RD_PLACE_MEDAL\n"
+"LngText.text"
+msgid "bronze"
+msgstr ""
+
+#. 🥊 (U+1F94A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOXING_GLOVE\n"
+"LngText.text"
+msgid "boxing"
+msgstr ""
+
+#. 🥋 (U+1F94B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MARTIAL_ARTS_UNIFORM\n"
+"LngText.text"
+msgid "judo"
+msgstr ""
+
+#. 🥅 (U+1F945), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GOAL_NET\n"
+"LngText.text"
+msgid "soccer2"
+msgstr ""
+
+#. 🥁 (U+1F941), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DRUM_WITH_DRUMSTICKS\n"
+"LngText.text"
+msgid "drum2"
+msgstr ""
+
+#. 🛒 (U+1F6D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOPPING_TROLLEY\n"
+"LngText.text"
+msgid "cart"
+msgstr ""
+
+#. 🤩 (U+1F929), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GRINNING_FACE_WITH_STAR_EYES\n"
+"LngText.text"
+msgid "excited"
+msgstr ""
+
+#. 🤨 (U+1F928), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_ONE_EYEBROW_RAISED\n"
+"LngText.text"
+msgid "eyebrow"
+msgstr ""
+
+#. 🤯 (U+1F92F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOCKED_FACE_WITH_EXPLODING_HEAD\n"
+"LngText.text"
+msgid "shocked"
+msgstr ""
+
+#. 🤪 (U+1F92A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GRINNING_FACE_WITH_ONE_LARGE_AND_ONE_SMALL_EYE\n"
+"LngText.text"
+msgid "zany"
+msgstr ""
+
+#. 🤬 (U+1F92C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SERIOUS_FACE_WITH_SYMBOLS_COVERING_MOUTH\n"
+"LngText.text"
+msgid "cursing"
+msgstr ""
+
+#. 🤮 (U+1F92E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_OPEN_MOUTH_VOMITING\n"
+"LngText.text"
+msgid "vomit"
+msgstr ""
+
+#. 🤫 (U+1F92B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_FINGER_COVERING_CLOSED_LIPS\n"
+"LngText.text"
+msgid "hush"
+msgstr ""
+
+#. 🤭 (U+1F92D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SMILING_FACE_WITH_SMILING_EYES_AND_HAND_COVERING_MOUTH\n"
+"LngText.text"
+msgid "smiling4"
+msgstr ""
+
+#. 🧐 (U+1F9D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_MONOCLE\n"
+"LngText.text"
+msgid "monocle"
+msgstr ""
+
+#. 🧒 (U+1F9D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHILD\n"
+"LngText.text"
+msgid "child"
+msgstr ""
+
+#. 🧑 (U+1F9D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ADULT\n"
+"LngText.text"
+msgid "adult"
+msgstr ""
+
+#. 🧓 (U+1F9D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLDER_ADULT\n"
+"LngText.text"
+msgid "old"
+msgstr ""
+
+#. 🧕 (U+1F9D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_WITH_HEADSCARF\n"
+"LngText.text"
+msgid "headscarf"
+msgstr ""
+
+#. 🧔 (U+1F9D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEARDED_PERSON\n"
+"LngText.text"
+msgid "beard"
+msgstr ""
+
+#. 🤱 (U+1F931), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BREAST-FEEDING\n"
+"LngText.text"
+msgid "baby3"
+msgstr ""
+
+#. 🧙 (U+1F9D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAGE\n"
+"LngText.text"
+msgid "mage"
+msgstr ""
+
+#. 🧚 (U+1F9DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FAIRY\n"
+"LngText.text"
+msgid "fairy"
+msgstr ""
+
+#. 🧛 (U+1F9DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"VAMPIRE\n"
+"LngText.text"
+msgid "vampire"
+msgstr ""
+
+#. 🧜 (U+1F9DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MERPERSON\n"
+"LngText.text"
+msgid "merperson"
+msgstr ""
+
+#. 🧝 (U+1F9DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ELF\n"
+"LngText.text"
+msgid "elf"
+msgstr ""
+
+#. 🧞 (U+1F9DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GENIE\n"
+"LngText.text"
+msgid "genie"
+msgstr ""
+
+#. 🧟 (U+1F9DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZOMBIE\n"
+"LngText.text"
+msgid "zombie"
+msgstr ""
+
+#. 🧖 (U+1F9D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_IN_STEAMY_ROOM\n"
+"LngText.text"
+msgid "sauna"
+msgstr ""
+
+#. 🧗 (U+1F9D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_CLIMBING\n"
+"LngText.text"
+msgid "climber"
+msgstr ""
+
+#. 🧘 (U+1F9D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_IN_LOTUS_POSITION\n"
+"LngText.text"
+msgid "yoga"
+msgstr ""
+
+#. 🤟 (U+1F91F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"I_LOVE_YOU_HAND_SIGN\n"
+"LngText.text"
+msgid "love2"
+msgstr ""
+
+#. 🤲 (U+1F932), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PALMS_UP_TOGETHER\n"
+"LngText.text"
+msgid "palm2"
+msgstr ""
+
+#. 🧠 (U+1F9E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BRAIN\n"
+"LngText.text"
+msgid "brain"
+msgstr ""
+
+#. 🧡 (U+1F9E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ORANGE_HEART\n"
+"LngText.text"
+msgid "orange heart"
+msgstr ""
+
+#. 🧣 (U+1F9E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCARF\n"
+"LngText.text"
+msgid "scarf"
+msgstr ""
+
+#. 🧤 (U+1F9E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GLOVES\n"
+"LngText.text"
+msgid "gloves"
+msgstr ""
+
+#. 🧥 (U+1F9E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COAT\n"
+"LngText.text"
+msgid "coat"
+msgstr ""
+
+#. 🧦 (U+1F9E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SOCKS\n"
+"LngText.text"
+msgid "socks"
+msgstr ""
+
+#. 🧢 (U+1F9E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BILLED_CAP\n"
+"LngText.text"
+msgid "cap"
+msgstr ""
+
+#. 🦓 (U+1F993), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZEBRA\n"
+"LngText.text"
+msgid "zebra"
+msgstr ""
+
+#. 🦒 (U+1F992), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GIRAFFE\n"
+"LngText.text"
+msgid "giraffe"
+msgstr ""
+
+#. 🦔 (U+1F994), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEDGEHOG\n"
+"LngText.text"
+msgid "hedgehog"
+msgstr ""
+
+#. 🦕 (U+1F995), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SAUROPOD\n"
+"LngText.text"
+msgid "dinosaur"
+msgstr ""
+
+#. 🦖 (U+1F996), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"T-REX\n"
+"LngText.text"
+msgid "dinosaur2"
+msgstr ""
+
+#. 🦗 (U+1F997), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRICKET\n"
+"LngText.text"
+msgid "cricket2"
+msgstr ""
+
+#. 🥥 (U+1F965), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COCONUT\n"
+"LngText.text"
+msgid "coconut"
+msgstr ""
+
+#. 🥦 (U+1F966), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BROCCOLI\n"
+"LngText.text"
+msgid "broccoli"
+msgstr ""
+
+#. 🥨 (U+1F968), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRETZEL\n"
+"LngText.text"
+msgid "pretzel"
+msgstr ""
+
+#. 🥩 (U+1F969), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUT_OF_MEAT\n"
+"LngText.text"
+msgid "steak"
+msgstr ""
+
+#. 🥪 (U+1F96A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SANDWICH\n"
+"LngText.text"
+msgid "sandwich"
+msgstr ""
+
+#. 🥣 (U+1F963), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOWL_WITH_SPOON\n"
+"LngText.text"
+msgid "bowl"
+msgstr ""
+
+#. 🥫 (U+1F96B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANNED_FOOD\n"
+"LngText.text"
+msgid "can"
+msgstr ""
+
+#. 🥟 (U+1F95F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DUMPLING\n"
+"LngText.text"
+msgid "dumpling"
+msgstr ""
+
+#. 🥠 (U+1F960), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FORTUNE_COOKIE\n"
+"LngText.text"
+msgid "cookie2"
+msgstr ""
+
+#. 🥡 (U+1F961), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TAKEOUT_BOX\n"
+"LngText.text"
+msgid "takeout"
+msgstr ""
+
+#. 🥧 (U+1F967), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PIE\n"
+"LngText.text"
+msgid "pie"
+msgstr ""
+
+#. 🥤 (U+1F964), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUP_WITH_STRAW\n"
+"LngText.text"
+msgid "drink"
+msgstr ""
+
+#. 🥢 (U+1F962), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHOPSTICKS\n"
+"LngText.text"
+msgid "chopsticks"
+msgstr ""
+
+#. 🛸 (U+1F6F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FLYING_SAUCER\n"
+"LngText.text"
+msgid "ufo"
+msgstr ""
+
+#. 🛷 (U+1F6F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLED\n"
+"LngText.text"
+msgid "sled"
+msgstr ""
+
+#. 🥌 (U+1F94C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CURLING_STONE\n"
+"LngText.text"
+msgid "curling"
+msgstr ""
+
+#. ₿ (U+20BF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BITCOIN_SIGN\n"
+"LngText.text"
+msgid "bitcoin"
+msgstr ""
+
#. ½ (U+000BD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
msgctxt ""
diff --git a/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po
index 98dcb6d27ea..33356b747cc 100644
--- a/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ab/officecfg/registry/data/org/openoffice/Office/UI.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: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2017-12-12 11:09+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2851,14 +2851,13 @@ msgid "S~how Columns"
msgstr ""
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:Hide\n"
"Label\n"
"value.text"
-msgid "~Hide Sheets"
-msgstr "Иҵәахтәуп абӷьыцқәа"
+msgid "~Hide Sheet"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -3624,22 +3623,12 @@ msgid "Delete Decimal Place"
msgstr ""
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:EditLinks\n"
"Label\n"
"value.text"
-msgid "Edit Lin~ks..."
-msgstr "Иҧсахтәуп азхьарҧшқәа..."
-
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:EditLinks\n"
-"ContextLabel\n"
-"value.text"
-msgid "Lin~ks..."
+msgid "Lin~ks to External Files..."
msgstr ""
#: CalcCommands.xcu
@@ -7084,15 +7073,6 @@ msgid "S~lide"
msgstr ""
#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Commands..uno:SlideNavigateMenu\n"
-"Label\n"
-"value.text"
-msgid "Navigate"
-msgstr ""
-
-#: DrawImpressCommands.xcu
#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
@@ -7701,6 +7681,15 @@ msgid "~Page Number"
msgstr "Адаҟьа аномер"
#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlideField\n"
+"Label\n"
+"value.text"
+msgid "~Slide Number"
+msgstr ""
+
+#: DrawImpressCommands.xcu
#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
@@ -7711,6 +7700,15 @@ msgid "Page Tit~le"
msgstr "Адаҟьа ахы"
#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlideTitleField\n"
+"Label\n"
+"value.text"
+msgid "Slide Tit~le"
+msgstr ""
+
+#: DrawImpressCommands.xcu
#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
@@ -7723,6 +7721,15 @@ msgstr "Адаҟьақәа рхыҧхьаӡара"
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlidesField\n"
+"Label\n"
+"value.text"
+msgid "Slide ~Count"
+msgstr ""
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:ModifyField\n"
"Label\n"
"value.text"
@@ -7954,7 +7961,7 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:ManageLinks\n"
"Label\n"
"value.text"
-msgid "Lin~ks..."
+msgid "Lin~ks to External Files..."
msgstr ""
#: DrawImpressCommands.xcu
@@ -8047,7 +8054,7 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:ImportSlideFromFile\n"
"Label\n"
"value.text"
-msgid "Import Slides..."
+msgid "Insert Slide from File..."
msgstr ""
#: DrawImpressCommands.xcu
@@ -9278,6 +9285,15 @@ msgid "P~age Number..."
msgstr "Адаҟьақәа рномерқәа..."
#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Popups..uno:InsertSlideNumber\n"
+"Label\n"
+"value.text"
+msgid "S~lide Number..."
+msgstr ""
+
+#: DrawImpressCommands.xcu
#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
@@ -17921,7 +17937,7 @@ msgctxt ""
"..GenericCommands.UserInterface.Commands..uno:InsertDoc\n"
"Label\n"
"value.text"
-msgid "Doc~ument..."
+msgid "Text from File..."
msgstr ""
#: GenericCommands.xcu
@@ -18104,6 +18120,15 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ViewSidebarStyles\n"
+"Label\n"
+"value.text"
+msgid "Styles"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:OutlineRight\n"
"Label\n"
"value.text"
@@ -19767,25 +19792,6 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
-"Label\n"
-"value.text"
-msgid "Charmap"
-msgstr ""
-
-#: GenericCommands.xcu
-#, fuzzy
-msgctxt ""
-"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
-"TooltipLabel\n"
-"value.text"
-msgid "Insert Special Characters"
-msgstr "Ибжьаргылатәуп асимвол"
-
-#: GenericCommands.xcu
-msgctxt ""
-"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:TransformRotationX\n"
"Label\n"
"value.text"
@@ -20966,6 +20972,34 @@ msgid "Insert Special Character"
msgstr "Ибжьаргылатәуп асимвол"
#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"Label\n"
+"value.text"
+msgid "Symbol"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"ContextLabel\n"
+"value.text"
+msgid "S~pecial Character..."
+msgstr ""
+
+#: GenericCommands.xcu
+#, fuzzy
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Insert Special Characters"
+msgstr "Ибжьаргылатәуп асимвол"
+
+#: GenericCommands.xcu
#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
@@ -21014,6 +21048,15 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ExportAsMenu\n"
+"Label\n"
+"value.text"
+msgid "~Export As"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportToPDF\n"
"Label\n"
"value.text"
@@ -21079,14 +21122,13 @@ msgid "EPUB"
msgstr ""
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportToEPUB\n"
"ContextLabel\n"
"value.text"
-msgid "~Export as EPUB..."
-msgstr "PDF ахь аекспорт..."
+msgid "Export as E~PUB..."
+msgstr ""
#: GenericCommands.xcu
#, fuzzy
@@ -23523,6 +23565,15 @@ msgctxt ""
msgid "~Restart in Safe Mode..."
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:NavigateMenu\n"
+"Label\n"
+"value.text"
+msgid "Navigate"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -26213,14 +26264,13 @@ msgid "Run AutoText Entry"
msgstr ""
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:ShowHiddenParagraphs\n"
"Label\n"
"value.text"
-msgid "~Hidden Paragraphs"
-msgstr "Иҵәаху абзацқәа"
+msgid "Field ~Hidden Paragraphs"
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
@@ -28264,7 +28314,7 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:LinkDialog\n"
"Label\n"
"value.text"
-msgid "Lin~ks..."
+msgid "Lin~ks to External Files..."
msgstr ""
#: WriterCommands.xcu
@@ -31050,7 +31100,7 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 1&amp;FamilyName:string=NumberingStyles\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 123&amp;FamilyName:string=NumberingStyles\n"
"Label\n"
"value.text"
msgid "Number List"
@@ -31077,10 +31127,64 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 4&amp;FamilyName:string=NumberingStyles\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering ABC&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Uppercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaListStyle\n"
"Label\n"
"value.text"
-msgid "Roman List"
+msgid "Alphabet Uppercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Alphabet Uppercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering abc&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaLowListStyle\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaLowListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Alphabet Lowercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering IVX&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Roman Uppercase List"
msgstr ""
#: WriterCommands.xcu
@@ -31089,7 +31193,7 @@ msgctxt ""
"..WriterCommands.UserInterface.Popups..uno:RomanListStyle\n"
"Label\n"
"value.text"
-msgid "Roman List"
+msgid "Roman Uppercase List"
msgstr ""
#: WriterCommands.xcu
@@ -31098,7 +31202,34 @@ msgctxt ""
"..WriterCommands.UserInterface.Popups..uno:RomanListStyle\n"
"TooltipLabel\n"
"value.text"
-msgid "Roman List Style"
+msgid "Roman Uppercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering ivx&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Roman Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:RomanLowListStyle\n"
+"Label\n"
+"value.text"
+msgid "Roman Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:RomanLowListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Roman Lowercase List Style"
msgstr ""
#: WriterCommands.xcu
diff --git a/source/ab/sd/messages.po b/source/ab/sd/messages.po
index 5c9b1b35690..c87e1b58494 100644
--- a/source/ab/sd/messages.po
+++ b/source/ab/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 15:29+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: 2017-12-12 11:14+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1631,916 +1631,926 @@ msgid "Master Slide"
msgstr ""
#: strings.hrc:287
+msgctxt "STR_MASTERSLIDE_LABEL"
+msgid "Master Slide:"
+msgstr ""
+
+#: strings.hrc:288
msgctxt "STR_MASTERPAGE_NAME"
msgid "Master Page"
msgstr ""
-#: strings.hrc:288
+#: strings.hrc:289
+msgctxt "STR_MASTERPAGE_LABEL"
+msgid "Master Page:"
+msgstr ""
+
+#: strings.hrc:290
msgctxt "STR_NOTES"
msgid "(Notes)"
msgstr ""
-#: strings.hrc:289
+#: strings.hrc:291
msgctxt "STR_HANDOUT"
msgid "Handouts"
msgstr ""
-#: strings.hrc:290
+#: strings.hrc:292
msgctxt "STR_PRESOBJ_MPTITLE"
msgid "Click to edit the title text format"
msgstr ""
-#: strings.hrc:291
+#: strings.hrc:293
msgctxt "STR_PRESOBJ_MPOUTLINE"
msgid "Click to edit the outline text format"
msgstr ""
-#: strings.hrc:292
+#: strings.hrc:294
msgctxt "STR_PRESOBJ_MPOUTLLAYER2"
msgid "Second Outline Level"
msgstr ""
-#: strings.hrc:293
+#: strings.hrc:295
msgctxt "STR_PRESOBJ_MPOUTLLAYER3"
msgid "Third Outline Level"
msgstr ""
-#: strings.hrc:294
+#: strings.hrc:296
msgctxt "STR_PRESOBJ_MPOUTLLAYER4"
msgid "Fourth Outline Level"
msgstr ""
-#: strings.hrc:295
+#: strings.hrc:297
msgctxt "STR_PRESOBJ_MPOUTLLAYER5"
msgid "Fifth Outline Level"
msgstr ""
-#: strings.hrc:296
+#: strings.hrc:298
msgctxt "STR_PRESOBJ_MPOUTLLAYER6"
msgid "Sixth Outline Level"
msgstr ""
-#: strings.hrc:297
+#: strings.hrc:299
msgctxt "STR_PRESOBJ_MPOUTLLAYER7"
msgid "Seventh Outline Level"
msgstr ""
-#: strings.hrc:298
+#: strings.hrc:300
msgctxt "STR_PRESOBJ_MPNOTESTITLE"
msgid "Click to move the slide"
msgstr ""
-#: strings.hrc:299
+#: strings.hrc:301
msgctxt "STR_PRESOBJ_MPNOTESTEXT"
msgid "Click to edit the notes format"
msgstr ""
-#: strings.hrc:300
+#: strings.hrc:302
msgctxt "STR_PRESOBJ_TITLE"
msgid "Click to add Title"
msgstr ""
-#: strings.hrc:301
+#: strings.hrc:303
msgctxt "STR_PRESOBJ_OUTLINE"
msgid "Click to add Text"
msgstr ""
-#: strings.hrc:302
+#: strings.hrc:304
msgctxt "STR_PRESOBJ_TEXT"
msgid "Click to add Text"
msgstr ""
-#: strings.hrc:303
+#: strings.hrc:305
msgctxt "STR_PRESOBJ_NOTESTEXT"
msgid "Click to add Notes"
msgstr ""
-#: strings.hrc:304
+#: strings.hrc:306
msgctxt "STR_PRESOBJ_GRAPHIC"
msgid "Double-click to add an Image"
msgstr ""
-#: strings.hrc:305
+#: strings.hrc:307
msgctxt "STR_PRESOBJ_OBJECT"
msgid "Double-click to add an Object"
msgstr ""
-#: strings.hrc:306
+#: strings.hrc:308
msgctxt "STR_PRESOBJ_CHART"
msgid "Double-click to add a Chart"
msgstr ""
-#: strings.hrc:307
+#: strings.hrc:309
msgctxt "STR_PRESOBJ_ORGCHART"
msgid "Double-click to add an Organization Chart"
msgstr ""
-#: strings.hrc:308
+#: strings.hrc:310
msgctxt "STR_PRESOBJ_TABLE"
msgid "Double-click to add a Spreadsheet"
msgstr ""
-#: strings.hrc:309
+#: strings.hrc:311
#, fuzzy
msgctxt "STR_LAYOUT_DEFAULT_NAME"
msgid "Default"
msgstr "Астандарт"
-#: strings.hrc:310
+#: strings.hrc:312
#, fuzzy
msgctxt "STR_LAYOUT_DEFAULT_TITLE_NAME"
msgid "Title"
msgstr "Ахы"
-#: strings.hrc:311
+#: strings.hrc:313
#, fuzzy
msgctxt "STR_STANDARD_STYLESHEET_NAME"
msgid "Default"
msgstr "Астандарт"
-#: strings.hrc:312
+#: strings.hrc:314
msgctxt "STR_UNDO_MOVEPAGES"
msgid "Move slides"
msgstr ""
-#: strings.hrc:313
+#: strings.hrc:315
msgctxt "STR_POOLSHEET_MEASURE"
msgid "Dimension Line"
msgstr ""
-#: strings.hrc:314
+#: strings.hrc:316
msgctxt "STR_POOLSHEET_OBJNOLINENOFILL"
msgid "Object with no fill and no line"
msgstr ""
-#: strings.hrc:315
+#: strings.hrc:317
msgctxt "STR_POOLSHEET_OBJWITHARROW"
msgid "Object with arrow"
msgstr ""
-#: strings.hrc:316
+#: strings.hrc:318
msgctxt "STR_POOLSHEET_OBJWITHSHADOW"
msgid "Object with shadow"
msgstr ""
-#: strings.hrc:317
+#: strings.hrc:319
msgctxt "STR_POOLSHEET_OBJWITHOUTFILL"
msgid "Object without fill"
msgstr ""
-#: strings.hrc:318
+#: strings.hrc:320
#, fuzzy
msgctxt "STR_POOLSHEET_TEXT"
msgid "Text"
msgstr "Атеқст"
-#: strings.hrc:319
+#: strings.hrc:321
msgctxt "STR_POOLSHEET_TEXTBODY"
msgid "Text body"
msgstr ""
-#: strings.hrc:320
+#: strings.hrc:322
msgctxt "STR_POOLSHEET_TEXTBODY_JUSTIFY"
msgid "Text body justified"
msgstr ""
-#: strings.hrc:321
+#: strings.hrc:323
msgctxt "STR_POOLSHEET_TEXTBODY_INDENT"
msgid "First line indent"
msgstr ""
-#: strings.hrc:322
+#: strings.hrc:324
#, fuzzy
msgctxt "STR_POOLSHEET_TITLE"
msgid "Title"
msgstr "Ахы"
-#: strings.hrc:323
+#: strings.hrc:325
#, fuzzy
msgctxt "STR_POOLSHEET_TITLE1"
msgid "Title1"
msgstr "Ахы"
-#: strings.hrc:324
+#: strings.hrc:326
#, fuzzy
msgctxt "STR_POOLSHEET_TITLE2"
msgid "Title2"
msgstr "Ахы"
-#: strings.hrc:325
+#: strings.hrc:327
#, fuzzy
msgctxt "STR_POOLSHEET_HEADLINE"
msgid "Heading"
msgstr "Ахқәа"
-#: strings.hrc:326
+#: strings.hrc:328
#, fuzzy
msgctxt "STR_POOLSHEET_HEADLINE1"
msgid "Heading1"
msgstr "Ахқәа"
-#: strings.hrc:327
+#: strings.hrc:329
#, fuzzy
msgctxt "STR_POOLSHEET_HEADLINE2"
msgid "Heading2"
msgstr "Ахқәа"
-#: strings.hrc:328
+#: strings.hrc:330
#, fuzzy
msgctxt "STR_PSEUDOSHEET_TITLE"
msgid "Title"
msgstr "Ахы"
-#: strings.hrc:329
+#: strings.hrc:331
msgctxt "STR_PSEUDOSHEET_SUBTITLE"
msgid "Subtitle"
msgstr ""
-#: strings.hrc:330
+#: strings.hrc:332
#, fuzzy
msgctxt "STR_PSEUDOSHEET_OUTLINE"
msgid "Outline"
msgstr "Аконтур"
-#: strings.hrc:331
+#: strings.hrc:333
msgctxt "STR_PSEUDOSHEET_BACKGROUNDOBJECTS"
msgid "Background objects"
msgstr ""
-#: strings.hrc:332
+#: strings.hrc:334
#, fuzzy
msgctxt "STR_PSEUDOSHEET_BACKGROUND"
msgid "Background"
msgstr "Аҿаҧшыра"
-#: strings.hrc:333
+#: strings.hrc:335
#, fuzzy
msgctxt "STR_PSEUDOSHEET_NOTES"
msgid "Notes"
msgstr "Азгәаҭақәа"
-#: strings.hrc:334
+#: strings.hrc:336
#, fuzzy
msgctxt "STR_POWERPOINT_IMPORT"
msgid "PowerPoint Import"
msgstr "PowerPoint Аимпорт"
-#: strings.hrc:335
+#: strings.hrc:337
#, fuzzy
msgctxt "STR_SAVE_DOC"
msgid "Save Document"
msgstr "Еиқәырхатәуп адокумент"
-#: strings.hrc:336
+#: strings.hrc:338
msgctxt "STR_POOLSHEET_BANDED_CELL"
msgid "Banding cell"
msgstr ""
-#: strings.hrc:337
+#: strings.hrc:339
msgctxt "STR_POOLSHEET_HEADER"
msgid "Header"
msgstr ""
-#: strings.hrc:338
+#: strings.hrc:340
msgctxt "STR_POOLSHEET_TOTAL"
msgid "Total line"
msgstr ""
-#: strings.hrc:339
+#: strings.hrc:341
msgctxt "STR_POOLSHEET_FIRST_COLUMN"
msgid "First column"
msgstr ""
-#: strings.hrc:340
+#: strings.hrc:342
msgctxt "STR_POOLSHEET_LAST_COLUMN"
msgid "Last column"
msgstr ""
-#: strings.hrc:341
+#: strings.hrc:343
msgctxt "STR_ENTER_PIN"
msgid "Enter PIN:"
msgstr ""
-#: strings.hrc:342
+#: strings.hrc:344
msgctxt "STR_DEAUTHORISE_CLIENT"
msgid "Remove client authorisation"
msgstr ""
-#: strings.hrc:343
+#: strings.hrc:345
msgctxt "STR_SHRINK_FONT_SIZE"
msgid "Shrink font size"
msgstr "Еиҵатәтәуп агегль"
-#: strings.hrc:344
+#: strings.hrc:346
msgctxt "STR_GROW_FONT_SIZE"
msgid "Grow font size"
msgstr "Еизырҳатәуп акегль"
#. Names and descriptions of the Draw/Impress accessibility views
#. ==============================================================
-#: strings.hrc:349
+#: strings.hrc:351
msgctxt "SID_SD_A11Y_D_DRAWVIEW_N"
msgid "Drawing View"
msgstr ""
-#: strings.hrc:350
+#: strings.hrc:352
msgctxt "SID_SD_A11Y_D_DRAWVIEW_D"
msgid "This is where you create and edit drawings."
msgstr ""
-#: strings.hrc:351
+#: strings.hrc:353
msgctxt "SID_SD_A11Y_I_DRAWVIEW_N"
msgid "Drawing View"
msgstr ""
-#: strings.hrc:352
+#: strings.hrc:354
msgctxt "SID_SD_A11Y_I_DRAWVIEW_D"
msgid "This is where you create and edit slides."
msgstr ""
-#: strings.hrc:353
+#: strings.hrc:355
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_N"
msgid "Outline View"
msgstr ""
-#: strings.hrc:354
+#: strings.hrc:356
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_D"
msgid "This is where you enter or edit text in list form."
msgstr ""
-#: strings.hrc:355
+#: strings.hrc:357
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_N"
msgid "Slides View"
msgstr ""
-#: strings.hrc:356
+#: strings.hrc:358
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_D"
msgid "This is where you sort slides."
msgstr ""
-#: strings.hrc:357
+#: strings.hrc:359
msgctxt "SID_SD_A11Y_I_NOTESVIEW_N"
msgid "Notes View"
msgstr ""
-#: strings.hrc:358
+#: strings.hrc:360
msgctxt "SID_SD_A11Y_I_NOTESVIEW_D"
msgid "This is where you enter and view notes."
msgstr ""
-#: strings.hrc:359
+#: strings.hrc:361
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_N"
msgid "Handout View"
msgstr ""
-#: strings.hrc:360
+#: strings.hrc:362
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_D"
msgid "This is where you decide on the layout for handouts."
msgstr ""
-#: strings.hrc:361
+#: strings.hrc:363
#, fuzzy
msgctxt "SID_SD_A11Y_P_TITLE_N"
msgid "PresentationTitle"
msgstr "Апрезентациақәа рстильқәа"
-#: strings.hrc:362
+#: strings.hrc:364
msgctxt "SID_SD_A11Y_P_OUTLINER_N"
msgid "PresentationOutliner"
msgstr ""
-#: strings.hrc:363
+#: strings.hrc:365
msgctxt "SID_SD_A11Y_P_SUBTITLE_N"
msgid "PresentationSubtitle"
msgstr ""
-#: strings.hrc:364
+#: strings.hrc:366
#, fuzzy
msgctxt "SID_SD_A11Y_P_PAGE_N"
msgid "PresentationPage"
msgstr "Апрезентациа"
-#: strings.hrc:365
+#: strings.hrc:367
#, fuzzy
msgctxt "SID_SD_A11Y_P_NOTES_N"
msgid "PresentationNotes"
msgstr "Апрезентациақәа рстильқәа"
-#: strings.hrc:366
+#: strings.hrc:368
msgctxt "SID_SD_A11Y_P_HANDOUT_N"
msgid "Handout"
msgstr ""
-#: strings.hrc:367
+#: strings.hrc:369
msgctxt "SID_SD_A11Y_P_UNKNOWN_N"
msgid "UnknownAccessiblePresentationShape"
msgstr ""
-#: strings.hrc:368
+#: strings.hrc:370
msgctxt "SID_SD_A11Y_P_TITLE_D"
msgid "PresentationTitleShape"
msgstr ""
-#: strings.hrc:369
+#: strings.hrc:371
msgctxt "SID_SD_A11Y_P_OUTLINER_D"
msgid "PresentationOutlinerShape"
msgstr ""
-#: strings.hrc:370
+#: strings.hrc:372
msgctxt "SID_SD_A11Y_P_SUBTITLE_D"
msgid "PresentationSubtitleShape"
msgstr ""
-#: strings.hrc:371
+#: strings.hrc:373
msgctxt "SID_SD_A11Y_P_PAGE_D"
msgid "PresentationPageShape"
msgstr ""
-#: strings.hrc:372
+#: strings.hrc:374
msgctxt "SID_SD_A11Y_P_NOTES_D"
msgid "PresentationNotesShape"
msgstr ""
-#: strings.hrc:373
+#: strings.hrc:375
msgctxt "SID_SD_A11Y_P_HANDOUT_D"
msgid "PresentationHandoutShape"
msgstr ""
-#: strings.hrc:374
+#: strings.hrc:376
msgctxt "SID_SD_A11Y_P_UNKNOWN_D"
msgid "Unknown accessible presentation shape"
msgstr ""
-#: strings.hrc:375
+#: strings.hrc:377
msgctxt "SID_SD_A11Y_P_FOOTER_N"
msgid "PresentationFooter"
msgstr ""
-#: strings.hrc:376
+#: strings.hrc:378
msgctxt "SID_SD_A11Y_P_FOOTER_D"
msgid "PresentationFooterShape"
msgstr ""
-#: strings.hrc:377
+#: strings.hrc:379
msgctxt "SID_SD_A11Y_P_HEADER_N"
msgid "PresentationHeader"
msgstr ""
-#: strings.hrc:378
+#: strings.hrc:380
msgctxt "SID_SD_A11Y_P_HEADER_D"
msgid "PresentationHeaderShape"
msgstr ""
-#: strings.hrc:379
+#: strings.hrc:381
msgctxt "SID_SD_A11Y_P_DATE_N"
msgid "PresentationDateAndTime"
msgstr ""
-#: strings.hrc:380
+#: strings.hrc:382
msgctxt "SID_SD_A11Y_P_DATE_D"
msgid "PresentationDateAndTimeShape"
msgstr ""
-#: strings.hrc:381
+#: strings.hrc:383
msgctxt "SID_SD_A11Y_P_NUMBER_N"
msgid "PresentationPageNumber"
msgstr ""
-#: strings.hrc:382
+#: strings.hrc:384
msgctxt "SID_SD_A11Y_P_NUMBER_D"
msgid "PresentationPageNumberShape"
msgstr ""
-#: strings.hrc:383
+#: strings.hrc:385
msgctxt "SID_SD_A11Y_D_PRESENTATION"
msgid "%PRODUCTNAME Presentation"
msgstr ""
-#: strings.hrc:384
+#: strings.hrc:386
#, fuzzy
msgctxt "SID_SD_A11Y_P_TITLE_N_STYLE"
msgid "Title"
msgstr "Ахы"
-#: strings.hrc:385
+#: strings.hrc:387
#, fuzzy
msgctxt "SID_SD_A11Y_P_OUTLINER_N_STYLE"
msgid "Outliner"
msgstr "Аконтур"
-#: strings.hrc:386
+#: strings.hrc:388
msgctxt "SID_SD_A11Y_P_SUBTITLE_N_STYLE"
msgid "Subtitle"
msgstr ""
-#: strings.hrc:387
+#: strings.hrc:389
#, fuzzy
msgctxt "SID_SD_A11Y_P_PAGE_N_STYLE"
msgid "Page"
msgstr "Адаҟьа"
-#: strings.hrc:388
+#: strings.hrc:390
#, fuzzy
msgctxt "SID_SD_A11Y_P_NOTES_N_STYLE"
msgid "Notes"
msgstr "Азгәаҭақәа"
-#: strings.hrc:389
+#: strings.hrc:391
msgctxt "SID_SD_A11Y_P_HANDOUT_N_STYLE"
msgid "Handout"
msgstr ""
-#: strings.hrc:390
+#: strings.hrc:392
msgctxt "SID_SD_A11Y_P_UNKNOWN_N_STYLE"
msgid "Unknown Accessible Presentation Shape"
msgstr ""
-#: strings.hrc:391
+#: strings.hrc:393
msgctxt "SID_SD_A11Y_P_FOOTER_N_STYLE"
msgid "Footer"
msgstr ""
-#: strings.hrc:392
+#: strings.hrc:394
msgctxt "SID_SD_A11Y_P_HEADER_N_STYLE"
msgid "Header"
msgstr ""
-#: strings.hrc:393
+#: strings.hrc:395
#, fuzzy
msgctxt "SID_SD_A11Y_P_DATE_N_STYLE"
msgid "Date"
msgstr "Арыцхә"
-#: strings.hrc:394
+#: strings.hrc:396
#, fuzzy
msgctxt "SID_SD_A11Y_P_NUMBER_N_STYLE"
msgid "Number"
msgstr "Ахыҧхьаӡаратә"
-#: strings.hrc:395
+#: strings.hrc:397
#, fuzzy
msgctxt "SID_SD_A11Y_D_PRESENTATION_READONLY"
msgid "(read-only)"
msgstr "(аԥхьара мацара)"
-#: strings.hrc:397
+#: strings.hrc:399
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_REPEAT_NONE"
msgid "none"
msgstr "мап"
-#: strings.hrc:398
+#: strings.hrc:400
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_NEXT_CLICK"
msgid "Until next click"
msgstr ""
-#: strings.hrc:399
+#: strings.hrc:401
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_END_OF_SLIDE"
msgid "Until end of slide"
msgstr ""
-#: strings.hrc:400
+#: strings.hrc:402
msgctxt "STR_CUSTOMANIMATION_DIRECTION_PROPERTY"
msgid "Direction:"
msgstr ""
-#: strings.hrc:401
+#: strings.hrc:403
msgctxt "STR_CUSTOMANIMATION_ZOOM_PROPERTY"
msgid "Zoom:"
msgstr "Амасштаб:"
-#: strings.hrc:402
+#: strings.hrc:404
msgctxt "STR_CUSTOMANIMATION_SPOKES_PROPERTY"
msgid "Spokes:"
msgstr ""
-#: strings.hrc:403
+#: strings.hrc:405
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY"
msgid "First color:"
msgstr "Ашрифт аҧштәы:"
-#: strings.hrc:404
+#: strings.hrc:406
msgctxt "STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY"
msgid "Second color:"
msgstr ""
-#: strings.hrc:405
+#: strings.hrc:407
msgctxt "STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY"
msgid "Fill color:"
msgstr ""
-#: strings.hrc:406
+#: strings.hrc:408
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_STYLE_PROPERTY"
msgid "Style:"
msgstr "Астиль:"
-#: strings.hrc:407
+#: strings.hrc:409
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_PROPERTY"
msgid "Font:"
msgstr "Агарнитура:"
-#: strings.hrc:408
+#: strings.hrc:410
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY"
msgid "Font color:"
msgstr "Ашрифт аҧштәы:"
-#: strings.hrc:409
+#: strings.hrc:411
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_SIZE_STYLE_PROPERTY"
msgid "Style:"
msgstr "Астиль:"
-#: strings.hrc:410
+#: strings.hrc:412
msgctxt "STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY"
msgid "Typeface:"
msgstr ""
-#: strings.hrc:411
+#: strings.hrc:413
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY"
msgid "Line color:"
msgstr "Аҵәаӷәа аҧштәы"
-#: strings.hrc:412
+#: strings.hrc:414
msgctxt "STR_CUSTOMANIMATION_SIZE_PROPERTY"
msgid "Font size:"
msgstr "Акегль:"
-#: strings.hrc:413
+#: strings.hrc:415
msgctxt "STR_CUSTOMANIMATION_SCALE_PROPERTY"
msgid "Size:"
msgstr "Ашәагаа:"
-#: strings.hrc:414
+#: strings.hrc:416
msgctxt "STR_CUSTOMANIMATION_AMOUNT_PROPERTY"
msgid "Amount:"
msgstr ""
-#: strings.hrc:415
+#: strings.hrc:417
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_COLOR_PROPERTY"
msgid "Color:"
msgstr "Аҧштәы"
-#: strings.hrc:416
+#: strings.hrc:418
msgctxt "STR_CUSTOMANIMATION_NO_SOUND"
msgid "(No sound)"
msgstr ""
-#: strings.hrc:417
+#: strings.hrc:419
msgctxt "STR_CUSTOMANIMATION_STOP_PREVIOUS_SOUND"
msgid "(Stop previous sound)"
msgstr ""
-#: strings.hrc:418
+#: strings.hrc:420
msgctxt "STR_CUSTOMANIMATION_BROWSE_SOUND"
msgid "Other sound..."
msgstr ""
-#: strings.hrc:419
+#: strings.hrc:421
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SAMPLE"
msgid "Sample"
msgstr "Амариа"
-#: strings.hrc:420
+#: strings.hrc:422
msgctxt "STR_CUSTOMANIMATION_TRIGGER"
msgid "Trigger"
msgstr ""
-#: strings.hrc:421
+#: strings.hrc:423
msgctxt "STR_CUSTOMANIMATION_LIST_HELPTEXT"
msgid "First select the slide element and then click 'Add...' to add an animation effect."
msgstr ""
-#: strings.hrc:422
+#: strings.hrc:424
msgctxt "STR_CUSTOMANIMATION_USERPATH"
msgid "User paths"
msgstr ""
-#: strings.hrc:423
+#: strings.hrc:425
msgctxt "STR_CUSTOMANIMATION_ENTRANCE"
msgid "Entrance: %1"
msgstr ""
-#: strings.hrc:424
+#: strings.hrc:426
msgctxt "STR_CUSTOMANIMATION_EMPHASIS"
msgid "Emphasis: %1"
msgstr ""
-#: strings.hrc:425
+#: strings.hrc:427
msgctxt "STR_CUSTOMANIMATION_EXIT"
msgid "Exit: %1"
msgstr ""
-#: strings.hrc:426
+#: strings.hrc:428
msgctxt "STR_CUSTOMANIMATION_MOTION_PATHS"
msgid "Motion Paths: %1"
msgstr ""
-#: strings.hrc:427
+#: strings.hrc:429
#, fuzzy
msgctxt "STR_SLIDETRANSITION_NONE"
msgid "None"
msgstr "Мап"
-#: strings.hrc:429
+#: strings.hrc:431
msgctxt "STR_ANNOTATION_TODAY"
msgid "Today,"
msgstr ""
-#: strings.hrc:430
+#: strings.hrc:432
#, fuzzy
msgctxt "STR_ANNOTATION_YESTERDAY"
msgid "Yesterday,"
msgstr "иацы"
-#: strings.hrc:431
+#: strings.hrc:433
#, fuzzy
msgctxt "STR_ANNOTATION_NOAUTHOR"
msgid "(no author)"
msgstr "(автор дамам)"
-#: strings.hrc:432
+#: strings.hrc:434
msgctxt "STR_ANNOTATION_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress reached the end of the presentation. Do you want to continue at the beginning?"
msgstr ""
-#: strings.hrc:433
+#: strings.hrc:435
msgctxt "STR_ANNOTATION_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress reached the beginning of the presentation. Do you want to continue at the end?"
msgstr ""
-#: strings.hrc:434
+#: strings.hrc:436
msgctxt "STR_ANNOTATION_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the end of the document. Do you want to continue at the beginning?"
msgstr ""
-#: strings.hrc:435
+#: strings.hrc:437
msgctxt "STR_ANNOTATION_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the beginning of the document. Do you want to continue at the end?"
msgstr ""
-#: strings.hrc:436
+#: strings.hrc:438
#, fuzzy
msgctxt "STR_ANNOTATION_UNDO_INSERT"
msgid "Insert Comment"
msgstr "Ибжьаргылатәуп акомментари"
-#: strings.hrc:437
+#: strings.hrc:439
#, fuzzy
msgctxt "STR_ANNOTATION_UNDO_DELETE"
msgid "Delete Comment(s)"
msgstr "Ианыхтәуп акомментари"
-#: strings.hrc:438
+#: strings.hrc:440
#, fuzzy
msgctxt "STR_ANNOTATION_UNDO_MOVE"
msgid "Move Comment"
msgstr "Иҵәахтәуп акомментари"
-#: strings.hrc:439
+#: strings.hrc:441
#, fuzzy
msgctxt "STR_ANNOTATION_UNDO_EDIT"
msgid "Edit Comment"
msgstr "Иҧсахтәуп акомментари"
-#: strings.hrc:440
+#: strings.hrc:442
#, fuzzy
msgctxt "STR_ANNOTATION_REPLY"
msgid "Reply to %1"
msgstr "Аҭак $1 аҟны"
-#: strings.hrc:442
+#: strings.hrc:444
#, fuzzy
msgctxt "RID_DRAW_MEDIA_TOOLBOX"
msgid "Media Playback"
msgstr "Амультимедиа"
-#: strings.hrc:443
+#: strings.hrc:445
msgctxt "RID_DRAW_TABLE_TOOLBOX"
msgid "Table"
msgstr "Атаблица"
-#: strings.hrc:445
+#: strings.hrc:447
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_GROUP_NAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME Base"
-#: strings.hrc:446
+#: strings.hrc:448
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PRINT_GROUP"
msgid "Print"
msgstr "Акьыҧхьра"
-#: strings.hrc:447
+#: strings.hrc:449
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT"
msgid "Document"
msgstr "Адокумент"
-#: strings.hrc:448
+#: strings.hrc:450
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE"
msgid "Slides per page"
msgstr ""
-#: strings.hrc:449
+#: strings.hrc:451
msgctxt "STR_IMPRESS_PRINT_UI_ORDER"
msgid "Order"
msgstr ""
-#: strings.hrc:450
+#: strings.hrc:452
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT"
msgid "~Contents"
msgstr "Иаҵанакуа"
-#: strings.hrc:451
+#: strings.hrc:453
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_NAME"
msgid "~Slide name"
msgstr ""
-#: strings.hrc:452
+#: strings.hrc:454
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_IS_PRINT_NAME"
msgid "P~age name"
msgstr "Аҭыҧ ахьӡ"
-#: strings.hrc:453
+#: strings.hrc:455
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_DATE"
msgid "~Date and time"
msgstr "Арыцхәи аамҭеи"
-#: strings.hrc:454
+#: strings.hrc:456
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_HIDDEN"
msgid "Hidden pages"
msgstr ""
-#: strings.hrc:455
+#: strings.hrc:457
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY"
msgid "Color"
msgstr "Аҧштәы"
-#: strings.hrc:456
+#: strings.hrc:458
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS"
msgid "~Size"
msgstr "Ашәагаа"
-#: strings.hrc:457
+#: strings.hrc:459
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE"
msgid "Brochure"
msgstr "Аброшиура"
-#: strings.hrc:458
+#: strings.hrc:460
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_SIDES"
msgid "Page sides"
msgstr ""
-#: strings.hrc:459
+#: strings.hrc:461
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE"
msgid "Include"
msgstr ""
-#: strings.hrc:460
+#: strings.hrc:462
msgctxt "STR_IMPRESS_PRINT_UI_PAPER_TRAY"
msgid "~Use only paper tray from printer preferences"
msgstr ""
-#: strings.hrc:461
+#: strings.hrc:463
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE"
msgid "Print range"
msgstr "Акьыҧхьра адиапазон"
-#: strings.hrc:463
+#: strings.hrc:465
msgctxt "STR_SAR_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress has searched to the end of the presentation. Do you want to continue at the beginning?"
msgstr ""
-#: strings.hrc:464
+#: strings.hrc:466
msgctxt "STR_SAR_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress has searched to the beginning of the presentation. Do you want to continue at the end?"
msgstr ""
-#: strings.hrc:465
+#: strings.hrc:467
msgctxt "STR_SAR_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the end of the document. Do you want to continue at the beginning?"
msgstr ""
-#: strings.hrc:466
+#: strings.hrc:468
msgctxt "STR_SAR_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the beginning of the document. Do you want to continue at the end?"
msgstr ""
-#: strings.hrc:468
+#: strings.hrc:470
#, fuzzy
msgctxt "STR_SD_NONE"
msgid "- None -"
@@ -4664,7 +4674,7 @@ msgstr ""
#: optimpressgeneralpage.ui:622
msgctxt "optimpressgeneralpage|cbCompatibility"
-msgid "Add _spacing between paragraphs and tables (in current document)"
+msgid "Add _spacing between paragraphs and tables"
msgstr ""
#: optimpressgeneralpage.ui:645
@@ -5454,14 +5464,13 @@ msgid "Master Background"
msgstr ""
#: sidebarslidebackground.ui:197
-#, fuzzy
msgctxt "sidebarslidebackground|label4"
-msgid "Orientation: "
-msgstr "Ахырхарҭа"
+msgid "Orientation:"
+msgstr ""
#: sidebarslidebackground.ui:212
msgctxt "sidebarslidebackground|masterslidebutton"
-msgid "Master Slide"
+msgid "Master View"
msgstr ""
#: sidebarslidebackground.ui:226
@@ -5509,10 +5518,9 @@ msgid "Wide"
msgstr "Иҵәахтәуп"
#: sidebarslidebackground.ui:267
-#, fuzzy
msgctxt "sidebarslidebackground|labelmargin"
-msgid "Margin: "
-msgstr "Аҭакыра"
+msgid "Margin:"
+msgstr ""
#: sidebarslidebackground.ui:277
#, fuzzy
diff --git a/source/ab/sfx2/messages.po b/source/ab/sfx2/messages.po
index 19e28811245..ff97f8232cd 100644
--- a/source/ab/sfx2/messages.po
+++ b/source/ab/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: 2017-11-27 08:53+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -839,157 +839,162 @@ msgctxt "RID_SVXSTR_INCORRECT_PASSWORD"
msgid "Incorrect password"
msgstr "Ииашам ажәамаӡа"
-#: strings.hrc:173
+#: strings.hrc:172
+msgctxt "RID_SVXSTR_GPG_ENCRYPT_FAILURE"
+msgid "OpenPGP key not trusted, damaged, or encryption failure. Please try again."
+msgstr ""
+
+#: strings.hrc:174
#, fuzzy
msgctxt "STR_PASSWD_MIN_LEN"
msgid "(Minimum $(MINLEN) characters)"
msgstr "(Асимволқәа рминимум: $(MINLEN))"
-#: strings.hrc:174
+#: strings.hrc:175
#, fuzzy
msgctxt "STR_PASSWD_MIN_LEN1"
msgid "(Minimum 1 character)"
msgstr "(Минимум 1 символк)"
-#: strings.hrc:175
+#: strings.hrc:176
msgctxt "STR_PASSWD_EMPTY"
msgid "(The password can be empty)"
msgstr ""
-#: strings.hrc:176
+#: strings.hrc:177
msgctxt "STR_MODULENOTINSTALLED"
msgid "The action could not be executed. The %PRODUCTNAME program module needed for this action is currently not installed."
msgstr ""
-#: strings.hrc:178
+#: strings.hrc:179
msgctxt "STR_FILTER_NOT_INSTALLED"
msgid ""
"The selected filter $(FILTER) has not been installed.\n"
"Would you like to do this now?"
msgstr ""
-#: strings.hrc:179
+#: strings.hrc:180
msgctxt "STR_FILTER_CONSULT_SERVICE"
msgid ""
"The selected filter $(FILTER) is not included in your edition.\n"
"You can find information about orders on our homepage."
msgstr ""
-#: strings.hrc:181
+#: strings.hrc:182
msgctxt "STR_WELCOME_LINE1"
msgid "Welcome to %PRODUCTNAME."
msgstr ""
-#: strings.hrc:182
+#: strings.hrc:183
msgctxt "STR_WELCOME_LINE2"
msgid "Drop a document here or pick an app from the left side to create one."
msgstr ""
-#: strings.hrc:184
+#: strings.hrc:185
msgctxt "STR_SFX_FILEDLG_ACTUALVERSION"
msgid "Current version"
msgstr ""
-#: strings.hrc:185
+#: strings.hrc:186
#, fuzzy
msgctxt "STR_SFX_EXPLORERFILE_EXPORT"
msgid "Export"
msgstr "Аекспорт"
-#: strings.hrc:186
+#: strings.hrc:187
#, fuzzy
msgctxt "STR_SFX_EXPLORERFILE_INSERT"
msgid "Insert"
msgstr "Ибжьаргылатәуп"
-#: strings.hrc:187
+#: strings.hrc:188
#, fuzzy
msgctxt "STR_SFX_EXPLORERFILE_BUTTONINSERT"
msgid "~Insert"
msgstr "Ибжьаргылатәуп"
-#: strings.hrc:188
+#: strings.hrc:189
#, fuzzy
msgctxt "STR_SFX_IMPORT_ALL"
msgid "<All formats>"
msgstr "Аформатқәа зегьы"
-#: strings.hrc:189
+#: strings.hrc:190
#, fuzzy
msgctxt "STR_PB_SAVEACOPY"
msgid "Save a Copy"
msgstr "Еиқәырхатәуп акопиа..."
-#: strings.hrc:190
+#: strings.hrc:191
msgctxt "STR_PB_COMPAREDOC"
msgid "Compare to"
msgstr ""
-#: strings.hrc:191
+#: strings.hrc:192
msgctxt "STR_PB_MERGEDOC"
msgid "Merge with"
msgstr ""
-#: strings.hrc:193
+#: strings.hrc:194
#, fuzzy
msgctxt "STR_SFX_NEWOFFICEDOC"
msgid "%PRODUCTNAME document"
msgstr "%PRODUCTNAME адокуменқәа"
-#: strings.hrc:194
+#: strings.hrc:195
msgctxt "SFX_ST_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
-#: strings.hrc:195
+#: strings.hrc:196
msgctxt "STR_SFX_REMOVE_PROPERTY"
msgid "Remove Property"
msgstr ""
-#: strings.hrc:196
+#: strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
"The value will be stored as text."
msgstr ""
-#: strings.hrc:198
+#: strings.hrc:199
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Ари афаил ыҟоуп. Ихҩылаатәума?"
-#: strings.hrc:200
+#: strings.hrc:201
#, fuzzy
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "Еиҭашьақәыргылатәуп"
-#: strings.hrc:201
+#: strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr ""
-#: strings.hrc:202
+#: strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr ""
-#: strings.hrc:203
+#: strings.hrc:204
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
"because it would result in a recursive reference."
msgstr ""
-#: strings.hrc:204
+#: strings.hrc:205
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
"Please choose another name."
msgstr ""
-#: strings.hrc:205
+#: strings.hrc:206
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -997,122 +1002,122 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: strings.hrc:206
+#: strings.hrc:207
#, fuzzy
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Ахархәара змоу астильқәа:"
-#: strings.hrc:207
+#: strings.hrc:208
#, fuzzy
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Анавигациа"
-#: strings.hrc:208
+#: strings.hrc:209
msgctxt "STR_SID_SIDEBAR"
msgid "Sidebar"
msgstr ""
-#: strings.hrc:209
+#: strings.hrc:210
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr ""
-#: strings.hrc:210
+#: strings.hrc:211
#, fuzzy
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Идәықәҵатәуп"
-#: strings.hrc:211
+#: strings.hrc:212
#, fuzzy
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Ашрифт"
-#: strings.hrc:212
+#: strings.hrc:213
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show Previews"
msgstr ""
-#: strings.hrc:214
+#: strings.hrc:215
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr ""
-#: strings.hrc:215
+#: strings.hrc:216
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: strings.hrc:217
+#: strings.hrc:218
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr ""
-#: strings.hrc:218
+#: strings.hrc:219
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr ""
-#: strings.hrc:219
+#: strings.hrc:220
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr ""
-#: strings.hrc:220
+#: strings.hrc:221
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Иаҧҵатәуп алкаараз астиль"
-#: strings.hrc:221
+#: strings.hrc:222
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Ирҿыцтәуп астиль"
-#: strings.hrc:223
+#: strings.hrc:224
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr ""
-#: strings.hrc:224
+#: strings.hrc:225
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Иаҟәыхтәуп аҭаҩра"
-#: strings.hrc:226
+#: strings.hrc:227
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr ""
-#: strings.hrc:228
+#: strings.hrc:229
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
"Please choose a printer and try again."
msgstr ""
-#: strings.hrc:229
+#: strings.hrc:230
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
"Please check your printer configuration."
msgstr ""
-#: strings.hrc:230
+#: strings.hrc:231
#, fuzzy
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Апринтер ҭацәым"
-#: strings.hrc:231
+#: strings.hrc:232
#, fuzzy
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (аҧхьара мацараз)"
-#: strings.hrc:232
+#: strings.hrc:233
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1120,7 +1125,7 @@ msgid ""
"active document?"
msgstr ""
-#: strings.hrc:233
+#: strings.hrc:234
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1128,7 +1133,7 @@ msgid ""
"in the active document?"
msgstr ""
-#: strings.hrc:234
+#: strings.hrc:235
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1136,228 +1141,330 @@ msgid ""
"active document?"
msgstr ""
-#: strings.hrc:235
+#: strings.hrc:236
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
" print job is being carried out."
msgstr ""
-#: strings.hrc:236
+#: strings.hrc:237
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
"Please check the %PRODUCTNAME settings or your e-mail program settings."
msgstr ""
-#: strings.hrc:237
+#: strings.hrc:238
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr ""
-#: strings.hrc:238
+#: strings.hrc:239
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr ""
-#: strings.hrc:239
+#: strings.hrc:240
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: strings.hrc:240
+#: strings.hrc:241
#, fuzzy
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Ари адокумент аартуп аҧхьара мацаразы."
-#: strings.hrc:241
+#: strings.hrc:242
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: strings.hrc:242
+#: strings.hrc:243
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: strings.hrc:243
+#: strings.hrc:244
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: strings.hrc:244
+#: strings.hrc:245
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: strings.hrc:245
+#: strings.hrc:246
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Intellectual Property:"
msgstr ""
-#: strings.hrc:246
+#: strings.hrc:247
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: strings.hrc:247
+#: strings.hrc:248
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: strings.hrc:248
+#: strings.hrc:249
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: strings.hrc:249
+#: strings.hrc:250
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Адокумент акьыҧхьра"
-#: strings.hrc:250
+#: strings.hrc:251
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Анапаҵаҩтәуп адокумент..."
-#: strings.hrc:251
+#: strings.hrc:252
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: strings.hrc:252
+#: strings.hrc:253
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: strings.hrc:253
+#: strings.hrc:254
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: strings.hrc:254
+#: strings.hrc:255
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: strings.hrc:255
+#: strings.hrc:256
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: strings.hrc:256
+#: strings.hrc:257
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: strings.hrc:258
+#: strings.hrc:259
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: strings.hrc:259
+#: strings.hrc:260
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr ""
-#: strings.hrc:260
+#: strings.hrc:261
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr ""
-#: strings.hrc:262
+#: strings.hrc:263
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Еиҭа апараметрқәа..."
-#: strings.hrc:263
+#: strings.hrc:264
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Иарктәуп аварахьтәи апанель"
-#: strings.hrc:264
+#: strings.hrc:265
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: strings.hrc:265
+#: strings.hrc:266
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr ""
-#: strings.hrc:266
+#: strings.hrc:267
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: strings.hrc:267
+#: strings.hrc:268
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Иарктәуп аварахьтәи апанель"
-#: strings.hrc:269
+#. Translators: default Impress template names
+#: strings.hrc:271
msgctxt "STR_TEMPLATE_NAME1"
-msgid "Abstract Green"
+msgid "Alizarin"
msgstr ""
-#: strings.hrc:270
+#: strings.hrc:272
msgctxt "STR_TEMPLATE_NAME2"
-msgid "Abstract Red"
+msgid "Beehive"
msgstr ""
-#: strings.hrc:271
+#: strings.hrc:273
msgctxt "STR_TEMPLATE_NAME3"
-msgid "Abstract Yellow"
+msgid "Blue Curve"
msgstr ""
-#: strings.hrc:272
+#: strings.hrc:274
msgctxt "STR_TEMPLATE_NAME4"
-msgid "Bright Blue"
+msgid "Blueprint Plans"
msgstr ""
-#: strings.hrc:273
+#: strings.hrc:275
msgctxt "STR_TEMPLATE_NAME5"
-msgid "DNA"
+msgid "Bright Blue"
msgstr ""
-#: strings.hrc:274
+#: strings.hrc:276
msgctxt "STR_TEMPLATE_NAME6"
-msgid "Inspiration"
+msgid "Classy Red"
msgstr ""
-#: strings.hrc:275
+#: strings.hrc:277
msgctxt "STR_TEMPLATE_NAME7"
-msgid "Lush Green"
+msgid "DNA"
msgstr ""
-#: strings.hrc:276
+#: strings.hrc:278
msgctxt "STR_TEMPLATE_NAME8"
-msgid "Metropolis"
+msgid "Focus"
msgstr ""
-#: strings.hrc:277
+#: strings.hrc:279
msgctxt "STR_TEMPLATE_NAME9"
-msgid "Sunset"
+msgid "Forestbird"
msgstr ""
-#: strings.hrc:278
+#: strings.hrc:280
msgctxt "STR_TEMPLATE_NAME10"
+msgid "Impress"
+msgstr ""
+
+#: strings.hrc:281
+msgctxt "STR_TEMPLATE_NAME11"
+msgid "Inspiration"
+msgstr ""
+
+#: strings.hrc:282
+msgctxt "STR_TEMPLATE_NAME12"
+msgid "Lights"
+msgstr ""
+
+#: strings.hrc:283
+msgctxt "STR_TEMPLATE_NAME13"
+msgid "Lush Green"
+msgstr ""
+
+#: strings.hrc:284
+msgctxt "STR_TEMPLATE_NAME14"
+msgid "Metropolis"
+msgstr ""
+
+#: strings.hrc:285
+msgctxt "STR_TEMPLATE_NAME15"
+msgid "Midnightblue"
+msgstr ""
+
+#: strings.hrc:286
+msgctxt "STR_TEMPLATE_NAME16"
+msgid "Nature Illustration"
+msgstr ""
+
+#: strings.hrc:287
+msgctxt "STR_TEMPLATE_NAME17"
+msgid "Pencil"
+msgstr ""
+
+#: strings.hrc:288
+msgctxt "STR_TEMPLATE_NAME18"
+msgid "Piano"
+msgstr ""
+
+#: strings.hrc:289
+msgctxt "STR_TEMPLATE_NAME19"
+msgid "Portfolio"
+msgstr ""
+
+#: strings.hrc:290
+msgctxt "STR_TEMPLATE_NAME20"
+msgid "Progress"
+msgstr ""
+
+#: strings.hrc:291
+msgctxt "STR_TEMPLATE_NAME21"
+msgid "Sunset"
+msgstr ""
+
+#: strings.hrc:292
+msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: strings.hrc:280
+#: strings.hrc:293
+msgctxt "STR_TEMPLATE_NAME23"
+msgid "Vivid"
+msgstr ""
+
+#. Translators: default Writer template names
+#: strings.hrc:295
+msgctxt "STR_TEMPLATE_NAME24"
+msgid "CV"
+msgstr ""
+
+#: strings.hrc:296
+msgctxt "STR_TEMPLATE_NAME25"
+msgid "Resume"
+msgstr ""
+
+#: strings.hrc:297
+msgctxt "STR_TEMPLATE_NAME26"
+msgid "Default"
+msgstr ""
+
+#: strings.hrc:298
+msgctxt "STR_TEMPLATE_NAME27"
+msgid "Modern"
+msgstr ""
+
+#: strings.hrc:299
+msgctxt "STR_TEMPLATE_NAME28"
+msgid "Modern business letter sans-serif"
+msgstr ""
+
+#: strings.hrc:300
+msgctxt "STR_TEMPLATE_NAME29"
+msgid "Modern business letter serif"
+msgstr ""
+
+#: strings.hrc:301
+msgctxt "STR_TEMPLATE_NAME30"
+msgid "Businesscard with logo"
+msgstr ""
+
+#: strings.hrc:303
#, fuzzy
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Ианыхтәуп"
-#: strings.hrc:281
+#: strings.hrc:304
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
diff --git a/source/ab/sw/messages.po b/source/ab/sw/messages.po
index 370516c1442..3af804b6594 100644
--- a/source/ab/sw/messages.po
+++ b/source/ab/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-20 08:17+0100\n"
"PO-Revision-Date: 2017-11-29 16:26+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -88,10 +88,9 @@ msgid "Conditional Styles"
msgstr "Аҭагылазаашьатә стильқәа"
#: app.hrc:47
-#, fuzzy
msgctxt "RID_CHARACTERSTYLEFAMILY"
-msgid "All"
-msgstr "Зегьы"
+msgid "All Styles"
+msgstr ""
#: app.hrc:48
#, fuzzy
@@ -112,10 +111,9 @@ msgid "Custom Styles"
msgstr "Ахархәаҩ истильқәа"
#: app.hrc:56
-#, fuzzy
msgctxt "RID_FRAMESTYLEFAMILY"
-msgid "All"
-msgstr "Зегьы"
+msgid "All Styles"
+msgstr ""
#: app.hrc:57
#, fuzzy
@@ -136,10 +134,9 @@ msgid "Custom Styles"
msgstr "Ахархәаҩ истильқәа"
#: app.hrc:65
-#, fuzzy
msgctxt "RID_PAGESTYLEFAMILY"
-msgid "All"
-msgstr "Зегьы"
+msgid "All Styles"
+msgstr ""
#: app.hrc:66
#, fuzzy
@@ -160,10 +157,9 @@ msgid "Custom Styles"
msgstr "Ахархәаҩ истильқәа"
#: app.hrc:74
-#, fuzzy
msgctxt "RID_LISTSTYLEFAMILY"
-msgid "All"
-msgstr "Зегьы"
+msgid "All Styles"
+msgstr ""
#: app.hrc:75
#, fuzzy
@@ -184,10 +180,9 @@ msgid "Custom Styles"
msgstr "Ахархәаҩ истильқәа"
#: app.hrc:83
-#, fuzzy
msgctxt "RID_TABLESTYLEFAMILY"
-msgid "All"
-msgstr "Зегьы"
+msgid "All Styles"
+msgstr ""
#: app.hrc:84
#, fuzzy
@@ -1395,34 +1390,29 @@ msgstr "Альбомтә"
#. Numbering rules
#: strings.hrc:199
-#, fuzzy
msgctxt "STR_POOLNUMRULE_NUM1"
-msgid "Numbering 1"
-msgstr "Аномерркра"
+msgid "Numbering 123"
+msgstr ""
#: strings.hrc:200
-#, fuzzy
msgctxt "STR_POOLNUMRULE_NUM2"
-msgid "Numbering 2"
-msgstr "Аномерркра"
+msgid "Numbering ABC"
+msgstr ""
#: strings.hrc:201
-#, fuzzy
msgctxt "STR_POOLNUMRULE_NUM3"
-msgid "Numbering 3"
-msgstr "Аномерркра"
+msgid "Numbering abc"
+msgstr ""
#: strings.hrc:202
-#, fuzzy
msgctxt "STR_POOLNUMRULE_NUM4"
-msgid "Numbering 4"
-msgstr "Аномерркра"
+msgid "Numbering IVX"
+msgstr ""
#: strings.hrc:203
-#, fuzzy
msgctxt "STR_POOLNUMRULE_NUM5"
-msgid "Numbering 5"
-msgstr "Аномерркра"
+msgid "Numbering ivx"
+msgstr ""
#: strings.hrc:204
msgctxt "STR_POOLNUMRULE_BUL1"
@@ -14675,12 +14665,12 @@ msgstr ""
#: optcompatpage.ui:57
msgctxt "optcompatpage|format"
-msgid "Add spacing between paragraphs and tables (in current document)"
+msgid "Add spacing between paragraphs and tables"
msgstr ""
#: optcompatpage.ui:58
msgctxt "optcompatpage|format"
-msgid "Add paragraph and table spacing at tops of pages (in current document)"
+msgid "Add paragraph and table spacing at tops of pages"
msgstr ""
#: optcompatpage.ui:59
@@ -14736,7 +14726,7 @@ msgstr ""
#: optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Tolerate white lines of PDF page backgrounds for compatibility with old documents (in current document)"
+msgid "Tolerate white lines of PDF page backgrounds for compatibility with old documents"
msgstr ""
#: optcompatpage.ui:70
@@ -14751,7 +14741,7 @@ msgstr ""
#: optcompatpage.ui:104
msgctxt "optcompatpage|label11"
-msgid "Compatibility options for %DOCNAME"
+msgid "Compatibility options for '%DOCNAME'"
msgstr ""
#: optfonttabpage.ui:103
@@ -18145,21 +18135,11 @@ msgctxt "textgridpage|labelFT_CHARSPERLINE"
msgid "Characters per line:"
msgstr "Асимволқәа ацәаҳәа аҟны:"
-#: textgridpage.ui:223
-msgctxt "textgridpage|labelFT_CHARRANGE"
-msgid "(1-45)"
-msgstr ""
-
#: textgridpage.ui:236
msgctxt "textgridpage|labelFT_LINESPERPAGE"
msgid "Lines per page:"
msgstr ""
-#: textgridpage.ui:265
-msgctxt "textgridpage|labelFT_LINERANGE"
-msgid "(1-48)"
-msgstr ""
-
#: textgridpage.ui:303
#, fuzzy
msgctxt "textgridpage|labelFT_CHARWIDTH"
diff --git a/source/af/cui/messages.po b/source/af/cui/messages.po
index ddc2149bd39..ea7d1e3800b 100644
--- a/source/af/cui/messages.po
+++ b/source/af/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8467,78 +8467,78 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Hulp"
-#: optgeneralpage.ui:77
+#: optgeneralpage.ui:76
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME-dialoë"
-#: optgeneralpage.ui:111
+#: optgeneralpage.ui:110
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: optgeneralpage.ui:137
+#: optgeneralpage.ui:136
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME-dialoë"
-#: optgeneralpage.ui:152
+#: optgeneralpage.ui:151
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: optgeneralpage.ui:178
+#: optgeneralpage.ui:177
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: optgeneralpage.ui:193
+#: optgeneralpage.ui:192
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumentnaam\tStatus"
-#: optgeneralpage.ui:226
+#: optgeneralpage.ui:225
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: optgeneralpage.ui:252
+#: optgeneralpage.ui:251
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "en"
-#: optgeneralpage.ui:267
+#: optgeneralpage.ui:266
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: optgeneralpage.ui:293
+#: optgeneralpage.ui:292
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: optgeneralpage.ui:308
+#: optgeneralpage.ui:307
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: optgeneralpage.ui:339
+#: optgeneralpage.ui:338
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Laai %PRODUCTNAME wanneer rekenaar aanskakel"
-#: optgeneralpage.ui:353
+#: optgeneralpage.ui:352
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Deaktiveer Snelbeginner in stelsellaai"
-#: optgeneralpage.ui:373
+#: optgeneralpage.ui:372
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -9381,235 +9381,240 @@ msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr ""
-#: optuserpage.ui:34
+#: optuserpage.ui:12
+msgctxt "optuserpage|liststore1"
+msgid "No key"
+msgstr ""
+
+#: optuserpage.ui:45
#, fuzzy
msgctxt "optuserpage|companyft"
msgid "_Company:"
msgstr "Maatskappy"
-#: optuserpage.ui:48
+#: optuserpage.ui:59
msgctxt "optuserpage|nameft"
msgid "First/last _name/initials:"
msgstr ""
-#: optuserpage.ui:62
+#: optuserpage.ui:73
#, fuzzy
msgctxt "optuserpage|streetft"
msgid "_Street:"
msgstr "Straat:"
-#: optuserpage.ui:76
+#: optuserpage.ui:87
msgctxt "optuserpage|cityft"
msgid "City/state/_zip:"
msgstr ""
-#: optuserpage.ui:90
+#: optuserpage.ui:101
#, fuzzy
msgctxt "optuserpage|countryft"
msgid "Country/re_gion:"
msgstr "LandOfStreek"
-#: optuserpage.ui:104
+#: optuserpage.ui:115
msgctxt "optuserpage|titleft"
msgid "_Title/position:"
msgstr ""
-#: optuserpage.ui:118
+#: optuserpage.ui:129
msgctxt "optuserpage|phoneft"
msgid "Telephone (home/_work):"
msgstr ""
-#: optuserpage.ui:123
+#: optuserpage.ui:134
msgctxt "phoneft-atkobject"
msgid "Home telephone number"
msgstr ""
-#: optuserpage.ui:137
+#: optuserpage.ui:148
msgctxt "optuserpage|faxft"
msgid "Fa_x/e-mail:"
msgstr ""
-#: optuserpage.ui:160
+#: optuserpage.ui:171
#, fuzzy
msgctxt "optuserpage|firstname-atkobject"
msgid "First name"
msgstr "Voornaam"
-#: optuserpage.ui:178
+#: optuserpage.ui:189
#, fuzzy
msgctxt "lastname-atkobject"
msgid "Last name"
msgstr "Van"
-#: optuserpage.ui:196
+#: optuserpage.ui:207
#, fuzzy
msgctxt "shortname-atkobject"
msgid "Initials"
msgstr "Voorletters"
-#: optuserpage.ui:225
+#: optuserpage.ui:236
#, fuzzy
msgctxt "city-atkobject"
msgid "City"
msgstr "Stad"
-#: optuserpage.ui:243
+#: optuserpage.ui:254
#, fuzzy
msgctxt "state-atkobject"
msgid "State"
msgstr "Provinsie"
-#: optuserpage.ui:261
+#: optuserpage.ui:272
#, fuzzy
msgctxt "zip-atkobject"
msgid "Zip code"
msgstr "Poskode"
-#: optuserpage.ui:291
+#: optuserpage.ui:302
#, fuzzy
msgctxt "title-atkobject"
msgid "Title"
msgstr "Titel"
-#: optuserpage.ui:309
+#: optuserpage.ui:320
#, fuzzy
msgctxt "position-atkobject"
msgid "Position"
msgstr "Posisie"
-#: optuserpage.ui:338
+#: optuserpage.ui:349
msgctxt "home-atkobject"
msgid "Home telephone number"
msgstr ""
-#: optuserpage.ui:356
+#: optuserpage.ui:367
msgctxt "work-atkobject"
msgid "Work telephone number"
msgstr ""
-#: optuserpage.ui:386
+#: optuserpage.ui:397
msgctxt "fax-atkobject"
msgid "FAX number"
msgstr ""
-#: optuserpage.ui:404
+#: optuserpage.ui:415
#, fuzzy
msgctxt "email-atkobject"
msgid "email address"
msgstr "E-posadres"
-#: optuserpage.ui:421
+#: optuserpage.ui:432
msgctxt "optuserpage|usefordocprop"
msgid "Use data for document properties"
msgstr ""
-#: optuserpage.ui:438
+#: optuserpage.ui:449
msgctxt "optuserpage|rusnameft"
msgid "Last name/first _name/father’s name/initials:"
msgstr ""
-#: optuserpage.ui:461
+#: optuserpage.ui:472
#, fuzzy
msgctxt "ruslastname-atkobject"
msgid "Last name"
msgstr "Van"
-#: optuserpage.ui:479
+#: optuserpage.ui:490
msgctxt "rusfathersname-atkobject"
msgid "Father's name"
msgstr ""
-#: optuserpage.ui:497
+#: optuserpage.ui:508
#, fuzzy
msgctxt "russhortname-atkobject"
msgid "Initials"
msgstr "Voorletters"
-#: optuserpage.ui:515
+#: optuserpage.ui:526
#, fuzzy
msgctxt "rusfirstname-atkobject"
msgid "First name"
msgstr "Voornaam"
-#: optuserpage.ui:535
+#: optuserpage.ui:546
msgctxt "optuserpage|eastnameft"
msgid "Last/first _name/initials:"
msgstr ""
-#: optuserpage.ui:558
+#: optuserpage.ui:569
#, fuzzy
msgctxt "eastlastname-atkobject"
msgid "Last name"
msgstr "Van"
-#: optuserpage.ui:576
+#: optuserpage.ui:587
#, fuzzy
msgctxt "eastfirstname-atkobject"
msgid "First name"
msgstr "Voornaam"
-#: optuserpage.ui:594
+#: optuserpage.ui:605
#, fuzzy
msgctxt "eastshortname-atkobject"
msgid "Initials"
msgstr "Voorletters"
-#: optuserpage.ui:614
+#: optuserpage.ui:625
msgctxt "optuserpage|russtreetft"
msgid "_Street/apartment number:"
msgstr ""
-#: optuserpage.ui:637
+#: optuserpage.ui:648
#, fuzzy
msgctxt "russtreet-atkobject"
msgid "Street"
msgstr "Straat"
-#: optuserpage.ui:655
+#: optuserpage.ui:666
msgctxt "ruslastname-atkobject"
msgid "Apartment number"
msgstr ""
-#: optuserpage.ui:675
+#: optuserpage.ui:686
msgctxt "optuserpage|icityft"
msgid "_Zip/city:"
msgstr ""
-#: optuserpage.ui:698
+#: optuserpage.ui:709
#, fuzzy
msgctxt "icity-atkobject"
msgid "City"
msgstr "Stad"
-#: optuserpage.ui:716
+#: optuserpage.ui:727
#, fuzzy
msgctxt "izip-atkobject"
msgid "Zip code"
msgstr "Poskode"
-#: optuserpage.ui:814
+#: optuserpage.ui:825
#, fuzzy
msgctxt "optuserpage|label1"
msgid "Address"
msgstr "Adres"
-#: optuserpage.ui:847
+#: optuserpage.ui:861
msgctxt "optuserpage|signingkeylabel"
msgid "OpenPGP signing key:"
msgstr ""
-#: optuserpage.ui:860
+#: optuserpage.ui:875
msgctxt "optuserpage|encryptionkeylabel"
msgid "OpenPGP encryption key:"
msgstr ""
-#: optuserpage.ui:889
+#: optuserpage.ui:908
msgctxt "optuserpage|encrypttoself"
msgid "When encrypting documents, always encrypt to self"
msgstr ""
-#: optuserpage.ui:909
-msgctxt "optuserpage|label2"
+#: optuserpage.ui:930
+msgctxt "optuserpage|cryptographylabel"
msgid "Cryptography"
msgstr ""
diff --git a/source/af/extras/source/autocorr/emoji.po b/source/af/extras/source/autocorr/emoji.po
index a91ca10e1cb..4ed661e33d3 100644
--- a/source/af/extras/source/autocorr/emoji.po
+++ b/source/af/extras/source/autocorr/emoji.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: 2016-10-18 13:02+0200\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2016-12-01 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1793,13 +1793,12 @@ msgstr "begin"
#. ☇ (U+02607), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"LIGHTNING\n"
"LngText.text"
-msgid "lighting"
-msgstr "Beligting"
+msgid "lightning3"
+msgstr ""
#. ☈ (U+02608), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1807,7 +1806,7 @@ msgctxt ""
"emoji.ulf\n"
"THUNDERSTORM\n"
"LngText.text"
-msgid "storm"
+msgid "storm2"
msgstr ""
#. ☉ (U+02609), see http://wiki.documentfoundation.org/Emoji
@@ -2156,13 +2155,12 @@ msgstr "Maan"
#. ☿ (U+0263F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"MERCURY\n"
"LngText.text"
-msgid "Mercury"
-msgstr "Kwik"
+msgid "mercury"
+msgstr ""
#. ♀ (U+02640), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2179,7 +2177,7 @@ msgctxt ""
"emoji.ulf\n"
"EARTH\n"
"LngText.text"
-msgid "Earth"
+msgid "earth"
msgstr ""
#. ♂ (U+02642), see http://wiki.documentfoundation.org/Emoji
@@ -2198,7 +2196,7 @@ msgctxt ""
"emoji.ulf\n"
"JUPITER\n"
"LngText.text"
-msgid "Jupiter"
+msgid "jupiter"
msgstr ""
#. ♄ (U+02644), see http://wiki.documentfoundation.org/Emoji
@@ -2207,7 +2205,7 @@ msgctxt ""
"emoji.ulf\n"
"SATURN\n"
"LngText.text"
-msgid "Saturn"
+msgid "saturn"
msgstr ""
#. ♅ (U+02645), see http://wiki.documentfoundation.org/Emoji
@@ -2216,7 +2214,7 @@ msgctxt ""
"emoji.ulf\n"
"URANUS\n"
"LngText.text"
-msgid "Uranus"
+msgid "uranus"
msgstr ""
#. ♆ (U+02646), see http://wiki.documentfoundation.org/Emoji
@@ -2225,7 +2223,7 @@ msgctxt ""
"emoji.ulf\n"
"NEPTUNE\n"
"LngText.text"
-msgid "Neptune"
+msgid "neptune"
msgstr ""
#. ♇ (U+02647), see http://wiki.documentfoundation.org/Emoji
@@ -2234,7 +2232,7 @@ msgctxt ""
"emoji.ulf\n"
"PLUTO\n"
"LngText.text"
-msgid "Pluto"
+msgid "pluto"
msgstr ""
#. ♈ (U+02648), see http://wiki.documentfoundation.org/Emoji
@@ -2243,7 +2241,7 @@ msgctxt ""
"emoji.ulf\n"
"ARIES\n"
"LngText.text"
-msgid "Aries"
+msgid "aries"
msgstr ""
#. ♉ (U+02649), see http://wiki.documentfoundation.org/Emoji
@@ -2252,7 +2250,7 @@ msgctxt ""
"emoji.ulf\n"
"TAURUS\n"
"LngText.text"
-msgid "Taurus"
+msgid "taurus"
msgstr ""
#. ♊ (U+0264A), see http://wiki.documentfoundation.org/Emoji
@@ -2261,18 +2259,17 @@ msgctxt ""
"emoji.ulf\n"
"GEMINI\n"
"LngText.text"
-msgid "Gemini"
+msgid "gemini"
msgstr ""
#. ♋ (U+0264B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CANCER\n"
"LngText.text"
-msgid "Cancer"
-msgstr "Kanselleer"
+msgid "cancer"
+msgstr ""
#. ♌ (U+0264C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2280,7 +2277,7 @@ msgctxt ""
"emoji.ulf\n"
"LEO\n"
"LngText.text"
-msgid "Leo"
+msgid "leo"
msgstr ""
#. ♍ (U+0264D), see http://wiki.documentfoundation.org/Emoji
@@ -2289,7 +2286,7 @@ msgctxt ""
"emoji.ulf\n"
"VIRGO\n"
"LngText.text"
-msgid "Virgo"
+msgid "virgo"
msgstr ""
#. ♎ (U+0264E), see http://wiki.documentfoundation.org/Emoji
@@ -2298,7 +2295,7 @@ msgctxt ""
"emoji.ulf\n"
"LIBRA\n"
"LngText.text"
-msgid "Libra"
+msgid "libra"
msgstr ""
#. ♏ (U+0264F), see http://wiki.documentfoundation.org/Emoji
@@ -2307,7 +2304,7 @@ msgctxt ""
"emoji.ulf\n"
"SCORPIUS\n"
"LngText.text"
-msgid "Scorpius"
+msgid "scorpius"
msgstr ""
#. ♐ (U+02650), see http://wiki.documentfoundation.org/Emoji
@@ -2316,7 +2313,7 @@ msgctxt ""
"emoji.ulf\n"
"SAGITTARIUS\n"
"LngText.text"
-msgid "Sagittarius"
+msgid "sagittarius"
msgstr ""
#. ♑ (U+02651), see http://wiki.documentfoundation.org/Emoji
@@ -2325,7 +2322,7 @@ msgctxt ""
"emoji.ulf\n"
"CAPRICORN\n"
"LngText.text"
-msgid "Capricorn"
+msgid "capricorn"
msgstr ""
#. ♒ (U+02652), see http://wiki.documentfoundation.org/Emoji
@@ -2334,7 +2331,7 @@ msgctxt ""
"emoji.ulf\n"
"AQUARIUS\n"
"LngText.text"
-msgid "Aquarius"
+msgid "aquarius"
msgstr ""
#. ♓ (U+02653), see http://wiki.documentfoundation.org/Emoji
@@ -2343,7 +2340,7 @@ msgctxt ""
"emoji.ulf\n"
"PISCES\n"
"LngText.text"
-msgid "Pisces"
+msgid "pisces"
msgstr ""
#. ♔ (U+02654), see http://wiki.documentfoundation.org/Emoji
@@ -2707,7 +2704,7 @@ msgctxt ""
"emoji.ulf\n"
"WHITE_FLAG\n"
"LngText.text"
-msgid "flag"
+msgid "flag4"
msgstr ""
#. ⚑ (U+02691), see http://wiki.documentfoundation.org/Emoji
@@ -2716,7 +2713,7 @@ msgctxt ""
"emoji.ulf\n"
"BLACK_FLAG\n"
"LngText.text"
-msgid "flag2"
+msgid "flag3"
msgstr ""
#. ⚒ (U+02692), see http://wiki.documentfoundation.org/Emoji
@@ -3026,7 +3023,7 @@ msgctxt ""
"emoji.ulf\n"
"BLACK_CROSS_ON_SHIELD\n"
"LngText.text"
-msgid "shield"
+msgid "shield2"
msgstr ""
#. ⛪ (U+026EA), see http://wiki.documentfoundation.org/Emoji
@@ -3071,7 +3068,7 @@ msgctxt ""
"emoji.ulf\n"
"FLAG_IN_HOLE\n"
"LngText.text"
-msgid "golf"
+msgid "golf2"
msgstr ""
#. ⛴ (U+026F4), see http://wiki.documentfoundation.org/Emoji
@@ -3815,7 +3812,7 @@ msgctxt ""
"emoji.ulf\n"
"FOGGY\n"
"LngText.text"
-msgid "fog"
+msgid "foggy"
msgstr ""
#. 🌂 (U+1F302), see http://wiki.documentfoundation.org/Emoji
@@ -3915,7 +3912,7 @@ msgctxt ""
"emoji.ulf\n"
"MILKY_WAY\n"
"LngText.text"
-msgid "Milky way"
+msgid "milky way"
msgstr ""
#. 🌍 (U+1F30D), see http://wiki.documentfoundation.org/Emoji
@@ -4173,7 +4170,7 @@ msgctxt ""
"emoji.ulf\n"
"CHERRY_BLOSSOM\n"
"LngText.text"
-msgid "cherry blossom"
+msgid "blossom2"
msgstr ""
#. 🌹 (U+1F339), see http://wiki.documentfoundation.org/Emoji
@@ -4409,7 +4406,7 @@ msgctxt ""
"emoji.ulf\n"
"CHERRIES\n"
"LngText.text"
-msgid "cherries"
+msgid "cherry"
msgstr ""
#. 🍓 (U+1F353), see http://wiki.documentfoundation.org/Emoji
@@ -4710,7 +4707,7 @@ msgctxt ""
"emoji.ulf\n"
"COOKING\n"
"LngText.text"
-msgid "egg"
+msgid "cooking"
msgstr ""
#. 🍴 (U+1F374), see http://wiki.documentfoundation.org/Emoji
@@ -4747,7 +4744,7 @@ msgctxt ""
"emoji.ulf\n"
"WINE_GLASS\n"
"LngText.text"
-msgid "wine glass"
+msgid "glass"
msgstr ""
#. 🍸 (U+1F378), see http://wiki.documentfoundation.org/Emoji
@@ -4765,7 +4762,7 @@ msgctxt ""
"emoji.ulf\n"
"TROPICAL_DRINK\n"
"LngText.text"
-msgid "tropical drink"
+msgid "drink2"
msgstr ""
#. 🍺 (U+1F37A), see http://wiki.documentfoundation.org/Emoji
@@ -4801,7 +4798,7 @@ msgctxt ""
"emoji.ulf\n"
"RIBBON\n"
"LngText.text"
-msgid "ribbon"
+msgid "ribbon2"
msgstr ""
#. 🎁 (U+1F381), see http://wiki.documentfoundation.org/Emoji
@@ -4828,7 +4825,7 @@ msgctxt ""
"emoji.ulf\n"
"JACK-O-LANTERN\n"
"LngText.text"
-msgid "Halloween"
+msgid "halloween"
msgstr ""
#. 🎄 (U+1F384), see http://wiki.documentfoundation.org/Emoji
@@ -4837,7 +4834,7 @@ msgctxt ""
"emoji.ulf\n"
"CHRISTMAS_TREE\n"
"LngText.text"
-msgid "Christmas"
+msgid "christmas"
msgstr ""
#. 🎅 (U+1F385), see http://wiki.documentfoundation.org/Emoji
@@ -4846,7 +4843,7 @@ msgctxt ""
"emoji.ulf\n"
"FATHER_CHRISTMAS\n"
"LngText.text"
-msgid "Santa"
+msgid "santa"
msgstr ""
#. 🎆 (U+1F386), see http://wiki.documentfoundation.org/Emoji
@@ -4892,7 +4889,7 @@ msgctxt ""
"emoji.ulf\n"
"CONFETTI_BALL\n"
"LngText.text"
-msgid "confetti ball"
+msgid "party2"
msgstr ""
#. 🎋 (U+1F38B), see http://wiki.documentfoundation.org/Emoji
@@ -4983,7 +4980,7 @@ msgctxt ""
"emoji.ulf\n"
"CAROUSEL_HORSE\n"
"LngText.text"
-msgid "carousel horse"
+msgid "fair2"
msgstr ""
#. 🎡 (U+1F3A1), see http://wiki.documentfoundation.org/Emoji
@@ -4992,7 +4989,7 @@ msgctxt ""
"emoji.ulf\n"
"FERRIS_WHEEL\n"
"LngText.text"
-msgid "ferris wheel"
+msgid "fair"
msgstr ""
#. 🎢 (U+1F3A2), see http://wiki.documentfoundation.org/Emoji
@@ -5073,7 +5070,7 @@ msgctxt ""
"emoji.ulf\n"
"CIRCUS_TENT\n"
"LngText.text"
-msgid "circus tent"
+msgid "circus"
msgstr ""
#. 🎫 (U+1F3AB), see http://wiki.documentfoundation.org/Emoji
@@ -5280,7 +5277,7 @@ msgctxt ""
"emoji.ulf\n"
"CHEQUERED_FLAG\n"
"LngText.text"
-msgid "flag3"
+msgid "race"
msgstr ""
#. 🏂 (U+1F3C2), see http://wiki.documentfoundation.org/Emoji
@@ -5325,7 +5322,7 @@ msgctxt ""
"emoji.ulf\n"
"HORSE_RACING\n"
"LngText.text"
-msgid "horse racing"
+msgid "horse3"
msgstr ""
#. 🏈 (U+1F3C8), see http://wiki.documentfoundation.org/Emoji
@@ -7072,7 +7069,7 @@ msgctxt ""
"emoji.ulf\n"
"MONEY_BAG\n"
"LngText.text"
-msgid "moneybag"
+msgid "money2"
msgstr ""
#. 💱 (U+1F4B1), see http://wiki.documentfoundation.org/Emoji
@@ -7081,7 +7078,7 @@ msgctxt ""
"emoji.ulf\n"
"CURRENCY_EXCHANGE\n"
"LngText.text"
-msgid "currency exchange"
+msgid "exchange"
msgstr ""
#. 💲 (U+1F4B2), see http://wiki.documentfoundation.org/Emoji
@@ -7149,13 +7146,12 @@ msgstr ""
#. 💹 (U+1F4B9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CHART_WITH_UPWARDS_TREND_AND_YEN_SIGN\n"
"LngText.text"
-msgid "chart"
-msgstr "grafiek"
+msgid "chart4"
+msgstr ""
#. 💺 (U+1F4BA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7246,7 +7242,7 @@ msgctxt ""
"emoji.ulf\n"
"PAGE_WITH_CURL\n"
"LngText.text"
-msgid "page with curl"
+msgid "page3"
msgstr ""
#. 📄 (U+1F4C4), see http://wiki.documentfoundation.org/Emoji
@@ -7255,7 +7251,7 @@ msgctxt ""
"emoji.ulf\n"
"PAGE_FACING_UP\n"
"LngText.text"
-msgid "page facing up"
+msgid "page"
msgstr ""
#. 📅 (U+1F4C5), see http://wiki.documentfoundation.org/Emoji
@@ -7289,13 +7285,12 @@ msgstr ""
#. 📈 (U+1F4C8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CHART_WITH_UPWARDS_TREND\n"
"LngText.text"
-msgid "char"
-msgstr "grafiek"
+msgid "chart"
+msgstr ""
#. 📉 (U+1F4C9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7412,13 +7407,12 @@ msgstr ""
#. 📕 (U+1F4D5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CLOSED_BOOK\n"
"LngText.text"
-msgid "book"
-msgstr "Boek"
+msgid "book2"
+msgstr ""
#. 📖 (U+1F4D6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7426,7 +7420,7 @@ msgctxt ""
"emoji.ulf\n"
"OPEN_BOOK\n"
"LngText.text"
-msgid "book2"
+msgid "book3"
msgstr ""
#. 📚 (U+1F4DA), see http://wiki.documentfoundation.org/Emoji
@@ -7500,7 +7494,7 @@ msgctxt ""
"emoji.ulf\n"
"SATELLITE_ANTENNA\n"
"LngText.text"
-msgid "satellite"
+msgid "antenna"
msgstr ""
#. 📢 (U+1F4E2), see http://wiki.documentfoundation.org/Emoji
@@ -7562,23 +7556,21 @@ msgstr "e-pos"
#. 📨 (U+1F4E8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"INCOMING_ENVELOPE\n"
"LngText.text"
-msgid "envelope2"
-msgstr "Koevert"
+msgid "envelope7"
+msgstr ""
#. 📩 (U+1F4E9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"ENVELOPE_WITH_DOWNWARDS_ARROW_ABOVE\n"
"LngText.text"
-msgid "envelope3"
-msgstr "Koevert"
+msgid "envelope8"
+msgstr ""
#. 📪 (U+1F4EA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8402,7 +8394,7 @@ msgctxt ""
"emoji.ulf\n"
"SMILING_FACE_WITH_OPEN_MOUTH_AND_TIGHTLY-CLOSED_EYES\n"
"LngText.text"
-msgid "laughing"
+msgid "laugh"
msgstr ""
#. 😇 (U+1F607), see http://wiki.documentfoundation.org/Emoji
@@ -8475,7 +8467,7 @@ msgctxt ""
"emoji.ulf\n"
"SMILING_FACE_WITH_SUNGLASSES\n"
"LngText.text"
-msgid "sunglasses"
+msgid "sunglasses2"
msgstr ""
#. 😏 (U+1F60F), see http://wiki.documentfoundation.org/Emoji
@@ -8944,7 +8936,7 @@ msgctxt ""
"emoji.ulf\n"
"FACE_WITH_OK_GESTURE\n"
"LngText.text"
-msgid "ok2"
+msgid "ok3"
msgstr ""
#. 🙇 (U+1F647), see http://wiki.documentfoundation.org/Emoji
@@ -8953,7 +8945,7 @@ msgctxt ""
"emoji.ulf\n"
"PERSON_BOWING_DEEPLY\n"
"LngText.text"
-msgid "bow"
+msgid "prostration"
msgstr ""
#. 🙈 (U+1F648), see http://wiki.documentfoundation.org/Emoji
@@ -9054,7 +9046,7 @@ msgctxt ""
"emoji.ulf\n"
"STEAM_LOCOMOTIVE\n"
"LngText.text"
-msgid "steam locomotive"
+msgid "locomotive"
msgstr ""
#. 🚃 (U+1F683), see http://wiki.documentfoundation.org/Emoji
@@ -9544,7 +9536,7 @@ msgctxt ""
"emoji.ulf\n"
"CHILDREN_CROSSING\n"
"LngText.text"
-msgid "children crossing"
+msgid "crosswalk"
msgstr ""
#. 🚹 (U+1F6B9), see http://wiki.documentfoundation.org/Emoji
@@ -9665,6 +9657,3714 @@ msgctxt ""
msgid "left luggage"
msgstr ""
+#. 🕃 (U+1F543), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTCHED_LEFT_SEMICIRCLE_WITH_THREE_DOTS\n"
+"LngText.text"
+msgid "feast"
+msgstr ""
+
+#. 🙂 (U+1F642), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLIGHTLY_SMILING_FACE\n"
+"LngText.text"
+msgid "smiling3"
+msgstr ""
+
+#. 🙁 (U+1F641), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLIGHTLY_FROWNING_FACE\n"
+"LngText.text"
+msgid "frowning2"
+msgstr ""
+
+#. 🕵 (U+1F575), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLEUTH_OR_SPY\n"
+"LngText.text"
+msgid "detective"
+msgstr ""
+
+#. 🛌 (U+1F6CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLEEPING_ACCOMMODATION\n"
+"LngText.text"
+msgid "sleep"
+msgstr ""
+
+#. 🕴 (U+1F574), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_IN_BUSINESS_SUIT_LEVITATING\n"
+"LngText.text"
+msgid "suit"
+msgstr ""
+
+#. 🗣 (U+1F5E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPEAKING_HEAD_IN_SILHOUETTE\n"
+"LngText.text"
+msgid "head"
+msgstr ""
+
+#. 🏌 (U+1F3CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GOLFER\n"
+"LngText.text"
+msgid "golf"
+msgstr ""
+
+#. 🏋 (U+1F3CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WEIGHT_LIFTER\n"
+"LngText.text"
+msgid "weight lifter"
+msgstr ""
+
+#. 🏎 (U+1F3CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RACING_CAR\n"
+"LngText.text"
+msgid "car4"
+msgstr ""
+
+#. 🏍 (U+1F3CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RACING_MOTORCYCLE\n"
+"LngText.text"
+msgid "motorcycle"
+msgstr ""
+
+#. 🖕 (U+1F595), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_HAND_WITH_MIDDLE_FINGER_EXTENDED\n"
+"LngText.text"
+msgid "finger"
+msgstr ""
+
+#. 🖖 (U+1F596), Mr. Spock's Vulcan salute from Star Trek, see also http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_HAND_WITH_PART_BETWEEN_MIDDLE_AND_RING_FINGERS\n"
+"LngText.text"
+msgid "spock"
+msgstr ""
+
+#. 🖐 (U+1F590), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_HAND_WITH_FINGERS_SPLAYED\n"
+"LngText.text"
+msgid "hand2"
+msgstr ""
+
+#. 👁 (U+1F441), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EYE\n"
+"LngText.text"
+msgid "eye"
+msgstr ""
+
+#. 🗨 (U+1F5E8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_SPEECH_BUBBLE\n"
+"LngText.text"
+msgid "bubble"
+msgstr ""
+
+#. 🗯 (U+1F5EF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_ANGER_BUBBLE\n"
+"LngText.text"
+msgid "bubble4"
+msgstr ""
+
+#. 🕳 (U+1F573), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOLE\n"
+"LngText.text"
+msgid "hole"
+msgstr ""
+
+#. 🕶 (U+1F576), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DARK_SUNGLASSES\n"
+"LngText.text"
+msgid "sunglasses"
+msgstr ""
+
+#. 🛍 (U+1F6CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOPPING_BAGS\n"
+"LngText.text"
+msgid "shop"
+msgstr ""
+
+#. 🐿 (U+1F43F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHIPMUNK\n"
+"LngText.text"
+msgid "chipmunk"
+msgstr ""
+
+#. 🕊 (U+1F54A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOVE_OF_PEACE\n"
+"LngText.text"
+msgid "dove"
+msgstr ""
+
+#. 🕷 (U+1F577), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIDER\n"
+"LngText.text"
+msgid "spider"
+msgstr ""
+
+#. 🕸 (U+1F578), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIDER_WEB\n"
+"LngText.text"
+msgid "web"
+msgstr ""
+
+#. 🏵 (U+1F3F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROSETTE\n"
+"LngText.text"
+msgid "rosette"
+msgstr ""
+
+#. 🌶 (U+1F336), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOT_PEPPER\n"
+"LngText.text"
+msgid "pepper"
+msgstr ""
+
+#. 🍽 (U+1F37D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FORK_AND_KNIFE_WITH_PLATE\n"
+"LngText.text"
+msgid "plate"
+msgstr ""
+
+#. 🗺 (U+1F5FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WORLD_MAP\n"
+"LngText.text"
+msgid "map"
+msgstr ""
+
+#. 🏔 (U+1F3D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SNOW_CAPPED_MOUNTAIN\n"
+"LngText.text"
+msgid "mountain2"
+msgstr ""
+
+#. 🏕 (U+1F3D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CAMPING\n"
+"LngText.text"
+msgid "camping"
+msgstr ""
+
+#. 🏖 (U+1F3D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEACH_WITH_UMBRELLA\n"
+"LngText.text"
+msgid "beach"
+msgstr ""
+
+#. 🏜 (U+1F3DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESERT\n"
+"LngText.text"
+msgid "desert"
+msgstr ""
+
+#. 🏝 (U+1F3DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESERT_ISLAND\n"
+"LngText.text"
+msgid "island"
+msgstr ""
+
+#. 🏞 (U+1F3DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NATIONAL_PARK\n"
+"LngText.text"
+msgid "park"
+msgstr ""
+
+#. 🏟 (U+1F3DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STADIUM\n"
+"LngText.text"
+msgid "stadium"
+msgstr ""
+
+#. 🏛 (U+1F3DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLASSICAL_BUILDING\n"
+"LngText.text"
+msgid "museum"
+msgstr ""
+
+#. 🏗 (U+1F3D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BUILDING_CONSTRUCTION\n"
+"LngText.text"
+msgid "crane"
+msgstr ""
+
+#. 🏘 (U+1F3D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOUSE_BUILDINGS\n"
+"LngText.text"
+msgid "houses"
+msgstr ""
+
+#. 🏚 (U+1F3DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DERELICT_HOUSE_BUILDING\n"
+"LngText.text"
+msgid "house3"
+msgstr ""
+
+#. 🏙 (U+1F3D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CITYSCAPE\n"
+"LngText.text"
+msgid "city"
+msgstr ""
+
+#. 🛣 (U+1F6E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTORWAY\n"
+"LngText.text"
+msgid "motorway"
+msgstr ""
+
+#. 🛤 (U+1F6E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAILWAY_TRACK\n"
+"LngText.text"
+msgid "track"
+msgstr ""
+
+#. 🛢 (U+1F6E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OIL_DRUM\n"
+"LngText.text"
+msgid "drum"
+msgstr ""
+
+#. 🛳 (U+1F6F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PASSENGER_SHIP\n"
+"LngText.text"
+msgid "ship2"
+msgstr ""
+
+#. 🛥 (U+1F6E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTOR_BOAT\n"
+"LngText.text"
+msgid "motor boat"
+msgstr ""
+
+#. 🛩 (U+1F6E9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SMALL_AIRPLANE\n"
+"LngText.text"
+msgid "airplane2"
+msgstr ""
+
+#. 🛫 (U+1F6EB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AIRPLANE_DEPARTURE\n"
+"LngText.text"
+msgid "departure"
+msgstr ""
+
+#. 🛬 (U+1F6EC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AIRPLANE_ARRIVING\n"
+"LngText.text"
+msgid "arrival"
+msgstr ""
+
+#. 🛰 (U+1F6F0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SATELLITE\n"
+"LngText.text"
+msgid "satellite"
+msgstr ""
+
+#. 🛎 (U+1F6CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BELLHOP_BELL\n"
+"LngText.text"
+msgid "bell2"
+msgstr ""
+
+#. 🕰 (U+1F570), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MANTELPIECE_CLOCK\n"
+"LngText.text"
+msgid "clock"
+msgstr ""
+
+#. 🌡 (U+1F321), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THERMOMETER\n"
+"LngText.text"
+msgid "thermometer"
+msgstr ""
+
+#. 🌤 (U+1F324), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_WITH_SMALL_CLOUD\n"
+"LngText.text"
+msgid "cloudy"
+msgstr ""
+
+#. 🌥 (U+1F325), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_BEHIND_CLOUD\n"
+"LngText.text"
+msgid "cloudy2"
+msgstr ""
+
+#. 🌦 (U+1F326), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_BEHIND_CLOUD_WITH_RAIN\n"
+"LngText.text"
+msgid "rainy"
+msgstr ""
+
+#. 🌧 (U+1F327), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_RAIN\n"
+"LngText.text"
+msgid "storm"
+msgstr ""
+
+#. 🌨 (U+1F328), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_SNOW\n"
+"LngText.text"
+msgid "snow"
+msgstr ""
+
+#. 🌩 (U+1F329), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_LIGHTNING\n"
+"LngText.text"
+msgid "lightning"
+msgstr ""
+
+#. 🌪 (U+1F32A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_TORNADO\n"
+"LngText.text"
+msgid "tornado"
+msgstr ""
+
+#. 🌫 (U+1F32B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOG\n"
+"LngText.text"
+msgid "fog"
+msgstr ""
+
+#. 🌬 (U+1F32C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WIND_BLOWING_FACE\n"
+"LngText.text"
+msgid "wind"
+msgstr ""
+
+#. 🎗 (U+1F397), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REMINDER_RIBBON\n"
+"LngText.text"
+msgid "ribbon"
+msgstr ""
+
+#. 🎟 (U+1F39F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ADMISSION_TICKETS\n"
+"LngText.text"
+msgid "ticket2"
+msgstr ""
+
+#. 🎖 (U+1F396), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MILITARY_MEDAL\n"
+"LngText.text"
+msgid "medal2"
+msgstr ""
+
+#. 🏅 (U+1F3C5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPORTS_MEDAL\n"
+"LngText.text"
+msgid "medal"
+msgstr ""
+
+#. 🕹 (U+1F579), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"JOYSTICK\n"
+"LngText.text"
+msgid "joystick"
+msgstr ""
+
+#. 🖼 (U+1F5BC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_PICTURE\n"
+"LngText.text"
+msgid "picture"
+msgstr ""
+
+#. 🎙 (U+1F399), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STUDIO_MICROPHONE\n"
+"LngText.text"
+msgid "microphone2"
+msgstr ""
+
+#. 🎚 (U+1F39A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEVEL_SLIDER\n"
+"LngText.text"
+msgid "slider"
+msgstr ""
+
+#. 🎛 (U+1F39B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CONTROL_KNOBS\n"
+"LngText.text"
+msgid "control"
+msgstr ""
+
+#. 🖥 (U+1F5A5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESKTOP_COMPUTER\n"
+"LngText.text"
+msgid "computer2"
+msgstr ""
+
+#. 🖨 (U+1F5A8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINTER\n"
+"LngText.text"
+msgid "printer"
+msgstr ""
+
+#. 🖱 (U+1F5B1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse3"
+msgstr ""
+
+#. 🖲 (U+1F5B2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TRACKBALL\n"
+"LngText.text"
+msgid "trackball"
+msgstr ""
+
+#. 🎞 (U+1F39E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILM_FRAMES\n"
+"LngText.text"
+msgid "film"
+msgstr ""
+
+#. 📽 (U+1F4FD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILM_PROJECTOR\n"
+"LngText.text"
+msgid "projector"
+msgstr ""
+
+#. 📸 (U+1F4F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CAMERA_WITH_FLASH\n"
+"LngText.text"
+msgid "flash"
+msgstr ""
+
+#. 🕯 (U+1F56F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANDLE\n"
+"LngText.text"
+msgid "candle"
+msgstr ""
+
+#. 🗞 (U+1F5DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROLLED-UP_NEWSPAPER\n"
+"LngText.text"
+msgid "newspaper2"
+msgstr ""
+
+#. 🏷 (U+1F3F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LABEL\n"
+"LngText.text"
+msgid "label"
+msgstr ""
+
+#. 🗳 (U+1F5F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BALLOT\n"
+"LngText.text"
+msgid "ballot"
+msgstr ""
+
+#. 🖋 (U+1F58B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_FOUNTAIN_PEN\n"
+"LngText.text"
+msgid "pen2"
+msgstr ""
+
+#. 🖊 (U+1F58A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_BALLPOINT_PEN\n"
+"LngText.text"
+msgid "pen"
+msgstr ""
+
+#. 🖌 (U+1F58C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_PAINTBRUSH\n"
+"LngText.text"
+msgid "paintbrush"
+msgstr ""
+
+#. 🖍 (U+1F58D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_CRAYON\n"
+"LngText.text"
+msgid "crayon"
+msgstr ""
+
+#. 🗂 (U+1F5C2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARD_INDEX_DIVIDERS\n"
+"LngText.text"
+msgid "index"
+msgstr ""
+
+#. 🗒 (U+1F5D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIRAL_NOTE_PAD\n"
+"LngText.text"
+msgid "notepad"
+msgstr ""
+
+#. 🗓 (U+1F5D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIRAL_CALENDAR_PAD\n"
+"LngText.text"
+msgid "calendar3"
+msgstr ""
+
+#. 🖇 (U+1F587), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LINKED_PAPERCLIPS\n"
+"LngText.text"
+msgid "paperclip2"
+msgstr ""
+
+#. 🗃 (U+1F5C3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARD_FILE_BOX\n"
+"LngText.text"
+msgid "box"
+msgstr ""
+
+#. 🗄 (U+1F5C4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILE_CABINET\n"
+"LngText.text"
+msgid "cabinet"
+msgstr ""
+
+#. 🗑 (U+1F5D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WASTEBASKET\n"
+"LngText.text"
+msgid "wastebasket"
+msgstr ""
+
+#. 🗝 (U+1F5DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLD_KEY\n"
+"LngText.text"
+msgid "key2"
+msgstr ""
+
+#. 🛠 (U+1F6E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HAMMER_AND_WRENCH\n"
+"LngText.text"
+msgid "hammer and wrench"
+msgstr ""
+
+#. 🗡 (U+1F5E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DAGGER_KNIFE\n"
+"LngText.text"
+msgid "knife2"
+msgstr ""
+
+#. 🛡 (U+1F6E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHIELD\n"
+"LngText.text"
+msgid "shield"
+msgstr ""
+
+#. 🗜 (U+1F5DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COMPRESSION\n"
+"LngText.text"
+msgid "clamp"
+msgstr ""
+
+#. 🛏 (U+1F6CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BED\n"
+"LngText.text"
+msgid "bed"
+msgstr ""
+
+#. 🛋 (U+1F6CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COUCH_AND_LAMP\n"
+"LngText.text"
+msgid "couch"
+msgstr ""
+
+#. 🕉 (U+1F549), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OM_SYMBOL\n"
+"LngText.text"
+msgid "om"
+msgstr ""
+
+#. ⏸ (U+23F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOUBLE_VERTICAL_BAR\n"
+"LngText.text"
+msgid "pause"
+msgstr ""
+
+#. ⏹ (U+23F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_SQUARE_FOR_STOP\n"
+"LngText.text"
+msgid "stop2"
+msgstr ""
+
+#. ⏺ (U+23FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_CIRCLE_FOR_RECORD\n"
+"LngText.text"
+msgid "record"
+msgstr ""
+
+#. 🏴 (U+1F3F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WAVING_BLACK_FLAG\n"
+"LngText.text"
+msgid "flag"
+msgstr ""
+
+#. 🏳 (U+1F3F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WAVING_WHITE_FLAG\n"
+"LngText.text"
+msgid "flag2"
+msgstr ""
+
+#. 🗷 (U+1F5F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BOLD_SCRIPT_X\n"
+"LngText.text"
+msgid "checkbox4"
+msgstr ""
+
+#. 🛉 (U+1F6C9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOYS_SYMBOL\n"
+"LngText.text"
+msgid "boys"
+msgstr ""
+
+#. 🛈 (U+1F6C8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CIRCLED_INFORMATION_SOURCE\n"
+"LngText.text"
+msgid "information3"
+msgstr ""
+
+#. 🛊 (U+1F6CA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GIRLS_SYMBOL\n"
+"LngText.text"
+msgid "girls"
+msgstr ""
+
+#. 🛨 (U+1F6E8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_SMALL_AIRPLANE\n"
+"LngText.text"
+msgid "airplane4"
+msgstr ""
+
+#. 🛲 (U+1F6F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DIESEL_LOCOMOTIVE\n"
+"LngText.text"
+msgid "locomotive2"
+msgstr ""
+
+#. 🛧 (U+1F6E7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_AIRPLANE\n"
+"LngText.text"
+msgid "airplane3"
+msgstr ""
+
+#. 🛱 (U+1F6F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ONCOMING_FIRE_ENGINE\n"
+"LngText.text"
+msgid "fire engine2"
+msgstr ""
+
+#. 🛦 (U+1F6E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_MILITARY_AIRPLANE\n"
+"LngText.text"
+msgid "airplane5"
+msgstr ""
+
+#. 🛪 (U+1F6EA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NORTHEAST-POINTING_AIRPLANE\n"
+"LngText.text"
+msgid "airplane6"
+msgstr ""
+
+#. 🗭 (U+1F5ED), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_THOUGHT_BUBBLE\n"
+"LngText.text"
+msgid "bubble5"
+msgstr ""
+
+#. 🗱 (U+1F5F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHTNING_MOOD_BUBBLE\n"
+"LngText.text"
+msgid "bubble6"
+msgstr ""
+
+#. 🗬 (U+1F5EC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_THOUGHT_BUBBLE\n"
+"LngText.text"
+msgid "bubble7"
+msgstr ""
+
+#. 🗠 (U+1F5E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STOCK_CHART\n"
+"LngText.text"
+msgid "chart5"
+msgstr ""
+
+#. 🗟 (U+1F5DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGE_WITH_CIRCLED_TEXT\n"
+"LngText.text"
+msgid "page4"
+msgstr ""
+
+#. 🖎 (U+1F58E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_WRITING_HAND\n"
+"LngText.text"
+msgid "writing2"
+msgstr ""
+
+#. 🗦 (U+1F5E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_LEFT\n"
+"LngText.text"
+msgid "rays"
+msgstr ""
+
+#. 🎝 (U+1F39D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEAMED_DESCENDING_MUSICAL_NOTES\n"
+"LngText.text"
+msgid "notes3"
+msgstr ""
+
+#. 🔾 (U+1F53E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_RIGHT_SHADOWED_WHITE_CIRCLE\n"
+"LngText.text"
+msgid "circle3"
+msgstr ""
+
+#. 🎜 (U+1F39C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEAMED_ASCENDING_MUSICAL_NOTES\n"
+"LngText.text"
+msgid "notes4"
+msgstr ""
+
+#. 🕮 (U+1F56E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOOK\n"
+"LngText.text"
+msgid "book"
+msgstr ""
+
+#. 🗛 (U+1F5DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DECREASE_FONT_SIZE_SYMBOL\n"
+"LngText.text"
+msgid "font"
+msgstr ""
+
+#. 🔿 (U+1F53F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UPPER_RIGHT_SHADOWED_WHITE_CIRCLE\n"
+"LngText.text"
+msgid "circle4"
+msgstr ""
+
+#. 🕫 (U+1F56B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BULLHORN\n"
+"LngText.text"
+msgid "bullhorn"
+msgstr ""
+
+#. 🕬 (U+1F56C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BULLHORN_WITH_SOUND_WAVES\n"
+"LngText.text"
+msgid "bullhorn2"
+msgstr ""
+
+#. 🕻 (U+1F57B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_HAND_TELEPHONE_RECEIVER\n"
+"LngText.text"
+msgid "receiver2"
+msgstr ""
+
+#. 🕾 (U+1F57E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_TOUCHTONE_TELEPHONE\n"
+"LngText.text"
+msgid "phone3"
+msgstr ""
+
+#. 🕼 (U+1F57C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TELEPHONE_RECEIVER_WITH_PAGE\n"
+"LngText.text"
+msgid "receiver4"
+msgstr ""
+
+#. 🕽 (U+1F57D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_HAND_TELEPHONE_RECEIVER\n"
+"LngText.text"
+msgid "receiver3"
+msgstr ""
+
+#. 🕿 (U+1F57F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_TOUCHTONE_TELEPHONE\n"
+"LngText.text"
+msgid "phone4"
+msgstr ""
+
+#. 🖚 (U+1F59A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_LEFT_POINTING_INDEX\n"
+"LngText.text"
+msgid "left4"
+msgstr ""
+
+#. 🖏 (U+1F58F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TURNED_OK_HAND_SIGN\n"
+"LngText.text"
+msgid "ok2"
+msgstr ""
+
+#. 🖜 (U+1F59C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_LEFT_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "left5"
+msgstr ""
+
+#. 🗥 (U+1F5E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_BELOW\n"
+"LngText.text"
+msgid "rays2"
+msgstr ""
+
+#. 🖛 (U+1F59B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_RIGHT_POINTING_INDEX\n"
+"LngText.text"
+msgid "right4"
+msgstr ""
+
+#. 🖟 (U+1F59F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_DOWN_POINTING_INDEX\n"
+"LngText.text"
+msgid "down3"
+msgstr ""
+
+#. 🖞 (U+1F59E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_UP_POINTING_INDEX\n"
+"LngText.text"
+msgid "up3"
+msgstr ""
+
+#. 🌢 (U+1F322), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_DROPLET\n"
+"LngText.text"
+msgid "droplet2"
+msgstr ""
+
+#. 🎘 (U+1F398), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MUSICAL_KEYBOARD_WITH_JACKS\n"
+"LngText.text"
+msgid "synthesizer"
+msgstr ""
+
+#. 🎕 (U+1F395), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOUQUET_OF_FLOWERS\n"
+"LngText.text"
+msgid "bouquet2"
+msgstr ""
+
+#. 🎔 (U+1F394), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEART_WITH_TIP_ON_THE_LEFT\n"
+"LngText.text"
+msgid "heart2"
+msgstr ""
+
+#. 🕱 (U+1F571), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_SKULL_AND_CROSSBONES\n"
+"LngText.text"
+msgid "pirate"
+msgstr ""
+
+#. 🖀 (U+1F580), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TELEPHONE_ON_TOP_OF_MODEM\n"
+"LngText.text"
+msgid "modem"
+msgstr ""
+
+#. 🕲 (U+1F572), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NO_PIRACY\n"
+"LngText.text"
+msgid "no piracy"
+msgstr ""
+
+#. 🕅 (U+1F545), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SYMBOL_FOR_MARKS_CHAPTER\n"
+"LngText.text"
+msgid "marks chapter"
+msgstr ""
+
+#. 🕈 (U+1F548), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CELTIC_CROSS\n"
+"LngText.text"
+msgid "Celtic cross"
+msgstr ""
+
+#. 🖗 (U+1F597), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_DOWN_POINTING_LEFT_HAND_INDEX\n"
+"LngText.text"
+msgid "down4"
+msgstr ""
+
+#. 🖆 (U+1F586), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEN_OVER_STAMPED_ENVELOPE\n"
+"LngText.text"
+msgid "envelope4"
+msgstr ""
+
+#. 🖃 (U+1F583), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STAMPED_ENVELOPE\n"
+"LngText.text"
+msgid "envelope2"
+msgstr ""
+
+#. 🗤 (U+1F5E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_ABOVE\n"
+"LngText.text"
+msgid "rays3"
+msgstr ""
+
+#. 🖉 (U+1F589), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_PENCIL\n"
+"LngText.text"
+msgid "pencil4"
+msgstr ""
+
+#. 🖂 (U+1F582), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BACK_OF_ENVELOPE\n"
+"LngText.text"
+msgid "envelope3"
+msgstr ""
+
+#. 🖈 (U+1F588), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_PUSHPIN\n"
+"LngText.text"
+msgid "tack"
+msgstr ""
+
+#. 🖄 (U+1F584), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ENVELOPE_WITH_LIGHTNING\n"
+"LngText.text"
+msgid "envelope5"
+msgstr ""
+
+#. 🖁 (U+1F581), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLAMSHELL_MOBILE_PHONE\n"
+"LngText.text"
+msgid "mobile2"
+msgstr ""
+
+#. 🖅 (U+1F585), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FLYING_ENVELOPE\n"
+"LngText.text"
+msgid "envelope6"
+msgstr ""
+
+#. 🖘 (U+1F598), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_LEFT_POINTING_INDEX\n"
+"LngText.text"
+msgid "left6"
+msgstr ""
+
+#. 🖙 (U+1F599), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_RIGHT_POINTING_INDEX\n"
+"LngText.text"
+msgid "right5"
+msgstr ""
+
+#. 🗖 (U+1F5D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAXIMIZE\n"
+"LngText.text"
+msgid "maximize"
+msgstr ""
+
+#. 🗗 (U+1F5D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OVERLAP\n"
+"LngText.text"
+msgid "overlap"
+msgstr ""
+
+#. 🗏 (U+1F5CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGE\n"
+"LngText.text"
+msgid "page2"
+msgstr ""
+
+#. 🗐 (U+1F5D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGES\n"
+"LngText.text"
+msgid "pages"
+msgstr ""
+
+#. 🗘 (U+1F5D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOCKWISE_RIGHT_AND_LEFT_SEMICIRCLE_ARROWS\n"
+"LngText.text"
+msgid "arrows"
+msgstr ""
+
+#. 🗚 (U+1F5DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"INCREASE_FONT_SIZE_SYMBOL\n"
+"LngText.text"
+msgid "font2"
+msgstr ""
+
+#. 🗕 (U+1F5D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MINIMIZE\n"
+"LngText.text"
+msgid "minimize"
+msgstr ""
+
+#. 🗙 (U+1F5D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANCELLATION_X\n"
+"LngText.text"
+msgid "cancel"
+msgstr ""
+
+#. 🗔 (U+1F5D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESKTOP_WINDOW\n"
+"LngText.text"
+msgid "window"
+msgstr ""
+
+#. 🗌 (U+1F5CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_PAGE\n"
+"LngText.text"
+msgid "empty page"
+msgstr ""
+
+#. 🗋 (U+1F5CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_DOCUMENT\n"
+"LngText.text"
+msgid "empty document"
+msgstr ""
+
+#. 🗍 (U+1F5CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_PAGES\n"
+"LngText.text"
+msgid "empty pages"
+msgstr ""
+
+#. 🗎 (U+1F5CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT\n"
+"LngText.text"
+msgid "document"
+msgstr ""
+
+#. 🗆 (U+1F5C6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE_PAGE\n"
+"LngText.text"
+msgid "empty note page"
+msgstr ""
+
+#. 🗊 (U+1F5CA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE_PAD\n"
+"LngText.text"
+msgid "note pad"
+msgstr ""
+
+#. 🗈 (U+1F5C8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE\n"
+"LngText.text"
+msgid "note3"
+msgstr ""
+
+#. 🗇 (U+1F5C7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE_PAD\n"
+"LngText.text"
+msgid "empty note pad"
+msgstr ""
+
+#. 🗉 (U+1F5C9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE_PAGE\n"
+"LngText.text"
+msgid "note page"
+msgstr ""
+
+#. 🖸 (U+1F5B8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OPTICAL_DISC_ICON\n"
+"LngText.text"
+msgid "optical disc"
+msgstr ""
+
+#. 🗀 (U+1F5C0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOLDER\n"
+"LngText.text"
+msgid "folder3"
+msgstr ""
+
+#. 🖝 (U+1F59D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_RIGHT_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "right6"
+msgstr ""
+
+#. 🗁 (U+1F5C1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OPEN_FOLDER\n"
+"LngText.text"
+msgid "folder4"
+msgstr ""
+
+#. 🗅 (U+1F5C5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE\n"
+"LngText.text"
+msgid "empty note"
+msgstr ""
+
+#. 🖿 (U+1F5BF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_FOLDER\n"
+"LngText.text"
+msgid "folder5"
+msgstr ""
+
+#. 🖾 (U+1F5BE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_AN_X\n"
+"LngText.text"
+msgid "frame"
+msgstr ""
+
+#. 🖽 (U+1F5BD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_TILES\n"
+"LngText.text"
+msgid "frame2"
+msgstr ""
+
+#. 🖹 (U+1F5B9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_TEXT\n"
+"LngText.text"
+msgid "document2"
+msgstr ""
+
+#. 🖻 (U+1F5BB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_PICTURE\n"
+"LngText.text"
+msgid "document3"
+msgstr ""
+
+#. 🖺 (U+1F5BA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_TEXT_AND_PICTURE\n"
+"LngText.text"
+msgid "document4"
+msgstr ""
+
+#. 🖶 (U+1F5B6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINTER_ICON\n"
+"LngText.text"
+msgid "printer2"
+msgstr ""
+
+#. 🖷 (U+1F5B7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FAX_ICON\n"
+"LngText.text"
+msgid "fax2"
+msgstr ""
+
+#. 🖰 (U+1F5B0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TWO_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse4"
+msgstr ""
+
+#. 🖳 (U+1F5B3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLD_PERSONAL_COMPUTER\n"
+"LngText.text"
+msgid "pc"
+msgstr ""
+
+#. 🖵 (U+1F5B5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCREEN\n"
+"LngText.text"
+msgid "screen"
+msgstr ""
+
+#. 🖯 (U+1F5AF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ONE_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse5"
+msgstr ""
+
+#. 🖴 (U+1F5B4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HARD_DISK\n"
+"LngText.text"
+msgid "hard disk"
+msgstr ""
+
+#. 🖩 (U+1F5A9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POCKET_CALCULATOR\n"
+"LngText.text"
+msgid "calculator"
+msgstr ""
+
+#. 🖭 (U+1F5AD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TAPE_CARTRIDGE\n"
+"LngText.text"
+msgid "cartridge"
+msgstr ""
+
+#. 🖬 (U+1F5AC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SOFT_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy2"
+msgstr ""
+
+#. 🖫 (U+1F5AB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_HARD_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy3"
+msgstr ""
+
+#. 🖮 (U+1F5AE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WIRED_KEYBOARD\n"
+"LngText.text"
+msgid "keyboard2"
+msgstr ""
+
+#. 🖔 (U+1F594), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_VICTORY_HAND\n"
+"LngText.text"
+msgid "victory2"
+msgstr ""
+
+#. 🖧 (U+1F5A7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_NETWORKED_COMPUTERS\n"
+"LngText.text"
+msgid "network"
+msgstr ""
+
+#. 🖪 (U+1F5AA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_HARD_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy4"
+msgstr ""
+
+#. 🗢 (U+1F5E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIPS\n"
+"LngText.text"
+msgid "lips"
+msgstr ""
+
+#. 🖦 (U+1F5A6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KEYBOARD_AND_MOUSE\n"
+"LngText.text"
+msgid "keyboard3"
+msgstr ""
+
+#. 🖣 (U+1F5A3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_DOWN_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "down5"
+msgstr ""
+
+#. 🖡 (U+1F5A1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_DOWN_POINTING_INDEX\n"
+"LngText.text"
+msgid "down6"
+msgstr ""
+
+#. 📾 (U+1F4FE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PORTABLE_STEREO\n"
+"LngText.text"
+msgid "stereo"
+msgstr ""
+
+#. 🏶 (U+1F3F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_ROSETTE\n"
+"LngText.text"
+msgid "rosette2"
+msgstr ""
+
+#. 🏲 (U+1F3F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_PENNANT\n"
+"LngText.text"
+msgid "pennant"
+msgstr ""
+
+#. 🖠 (U+1F5A0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_UP_POINTING_INDEX\n"
+"LngText.text"
+msgid "up4"
+msgstr ""
+
+#. 🖢 (U+1F5A2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_UP_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "up5"
+msgstr ""
+
+#. 🏱 (U+1F3F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_PENNANT\n"
+"LngText.text"
+msgid "pennant2"
+msgstr ""
+
+#. 🕄 (U+1F544), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTCHED_RIGHT_SEMICIRCLE_WITH_THREE_DOTS\n"
+"LngText.text"
+msgid "feast2"
+msgstr ""
+
+#. 🖓 (U+1F593), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_THUMBS_DOWN_SIGN\n"
+"LngText.text"
+msgid "no2"
+msgstr ""
+
+#. 🖑 (U+1F591), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_RAISED_HAND_WITH_FINGERS_SPLAYED\n"
+"LngText.text"
+msgid "hand3"
+msgstr ""
+
+#. 🖒 (U+1F592), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_THUMBS_UP_SIGN\n"
+"LngText.text"
+msgid "yes2"
+msgstr ""
+
+#. 🕩 (U+1F569), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER_WITH_ONE_SOUND_WAVE\n"
+"LngText.text"
+msgid "speaker2"
+msgstr ""
+
+#. 🕆 (U+1F546), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_LATIN_CROSS\n"
+"LngText.text"
+msgid "Latin cross2"
+msgstr ""
+
+#. 🕇 (U+1F547), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEAVY_LATIN_CROSS\n"
+"LngText.text"
+msgid "Latin cross3"
+msgstr ""
+
+#. 🕨 (U+1F568), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER\n"
+"LngText.text"
+msgid "speaker3"
+msgstr ""
+
+#. 🕭 (U+1F56D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RINGING_BELL\n"
+"LngText.text"
+msgid "bell3"
+msgstr ""
+
+#. 🌣 (U+1F323), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN\n"
+"LngText.text"
+msgid "sun2"
+msgstr ""
+
+#. 🛇 (U+1F6C7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PROHIBITED_SIGN\n"
+"LngText.text"
+msgid "prohibited"
+msgstr ""
+
+#. 🛆 (U+1F6C6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TRIANGLE_WITH_ROUNDED_CORNERS\n"
+"LngText.text"
+msgid "triangle3"
+msgstr ""
+
+#. 🗫 (U+1F5EB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_SPEECH_BUBBLES\n"
+"LngText.text"
+msgid "bubble3"
+msgstr ""
+
+#. 🕪 (U+1F56A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER_WITH_THREE_SOUND_WAVES\n"
+"LngText.text"
+msgid "speaker4"
+msgstr ""
+
+#. 🗮 (U+1F5EE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_ANGER_BUBBLE\n"
+"LngText.text"
+msgid "bubble8"
+msgstr ""
+
+#. 🗧 (U+1F5E7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_RIGHT\n"
+"LngText.text"
+msgid "rays4"
+msgstr ""
+
+#. 🗲 (U+1F5F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHTNING_MOOD\n"
+"LngText.text"
+msgid "lightning2"
+msgstr ""
+
+#. 🗰 (U+1F5F0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOOD_BUBBLE\n"
+"LngText.text"
+msgid "bubble9"
+msgstr ""
+
+#. 🗹 (U+1F5F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BOLD_CHECK\n"
+"LngText.text"
+msgid "checkbox5"
+msgstr ""
+
+#. 🗴 (U+1F5F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_SCRIPT_X\n"
+"LngText.text"
+msgid "check mark4"
+msgstr ""
+
+#. 🗪 (U+1F5EA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TWO_SPEECH_BUBBLES\n"
+"LngText.text"
+msgid "bubble2"
+msgstr ""
+
+#. 🗶 (U+1F5F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOLD_SCRIPT_X\n"
+"LngText.text"
+msgid "x4"
+msgstr ""
+
+#. 🗩 (U+1F5E9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEECH_BUBBLE\n"
+"LngText.text"
+msgid "bubble10"
+msgstr ""
+
+#. 🗵 (U+1F5F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_SCRIPT_X\n"
+"LngText.text"
+msgid "checkbox6"
+msgstr ""
+
+#. 🗸 (U+1F5F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHT_CHECK_MARK\n"
+"LngText.text"
+msgid "check mark5"
+msgstr ""
+
+#. 🤗 (U+1F917), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HUGGING_FACE\n"
+"LngText.text"
+msgid "hugging"
+msgstr ""
+
+#. 🤔 (U+1F914), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THINKING_FACE\n"
+"LngText.text"
+msgid "thinking"
+msgstr ""
+
+#. 🙄 (U+1F644), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_ROLLING_EYES\n"
+"LngText.text"
+msgid "eye roll"
+msgstr ""
+
+#. 🤐 (U+1F910), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZIPPER-MOUTH_FACE\n"
+"LngText.text"
+msgid "zipper"
+msgstr ""
+
+#. 🙃 (U+1F643), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UPSIDE-DOWN_FACE\n"
+"LngText.text"
+msgid "upside-down"
+msgstr ""
+
+#. 🤑 (U+1F911), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MONEY-MOUTH_FACE\n"
+"LngText.text"
+msgid "money3"
+msgstr ""
+
+#. 🤒 (U+1F912), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_THERMOMETER\n"
+"LngText.text"
+msgid "thermometer2"
+msgstr ""
+
+#. 🤕 (U+1F915), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_HEAD-BANDAGE\n"
+"LngText.text"
+msgid "bandage"
+msgstr ""
+
+#. 🤓 (U+1F913), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NERD_FACE\n"
+"LngText.text"
+msgid "nerd"
+msgstr ""
+
+#. 🤖 (U+1F916), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROBOT_FACE\n"
+"LngText.text"
+msgid "robot"
+msgstr ""
+
+#. 🏻 (U+1F3FB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-1-2\n"
+"LngText.text"
+msgid "skin1"
+msgstr ""
+
+#. 🏼 (U+1F3FC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-3\n"
+"LngText.text"
+msgid "skin2"
+msgstr ""
+
+#. 🏽 (U+1F3FD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-4\n"
+"LngText.text"
+msgid "skin3"
+msgstr ""
+
+#. 🏾 (U+1F3FE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-5\n"
+"LngText.text"
+msgid "skin4"
+msgstr ""
+
+#. 🏿 (U+1F3FF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-6\n"
+"LngText.text"
+msgid "skin5"
+msgstr ""
+
+#. 🤘 (U+1F918), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIGN_OF_THE_HORNS\n"
+"LngText.text"
+msgid "horns"
+msgstr ""
+
+#. 📿 (U+1F4FF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRAYER_BEADS\n"
+"LngText.text"
+msgid "beads"
+msgstr ""
+
+#. 🦁 (U+1F981), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LION_FACE\n"
+"LngText.text"
+msgid "lion"
+msgstr ""
+
+#. 🦄 (U+1F984), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UNICORN_FACE\n"
+"LngText.text"
+msgid "unicorn"
+msgstr ""
+
+#. 🦃 (U+1F983), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TURKEY\n"
+"LngText.text"
+msgid "turkey"
+msgstr ""
+
+#. 🦀 (U+1F980), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRAB\n"
+"LngText.text"
+msgid "crab"
+msgstr ""
+
+#. 🦂 (U+1F982), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCORPION\n"
+"LngText.text"
+msgid "scorpion"
+msgstr ""
+
+#. 🧀 (U+1F9C0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHEESE_WEDGE\n"
+"LngText.text"
+msgid "cheese"
+msgstr ""
+
+#. 🌭 (U+1F32D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOT_DOG\n"
+"LngText.text"
+msgid "hot dog"
+msgstr ""
+
+#. 🌮 (U+1F32E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TACO\n"
+"LngText.text"
+msgid "taco"
+msgstr ""
+
+#. 🌯 (U+1F32F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BURRITO\n"
+"LngText.text"
+msgid "burrito"
+msgstr ""
+
+#. 🍿 (U+1F37F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POPCORN\n"
+"LngText.text"
+msgid "popcorn"
+msgstr ""
+
+#. 🍾 (U+1F37E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOTTLE_WITH_POPPING_CORK\n"
+"LngText.text"
+msgid "party4"
+msgstr ""
+
+#. 🏺 (U+1F3FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AMPHORA\n"
+"LngText.text"
+msgid "amphora"
+msgstr ""
+
+#. 🕌 (U+1F54C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOSQUE\n"
+"LngText.text"
+msgid "mosque"
+msgstr ""
+
+#. 🕍 (U+1F54D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SYNAGOGUE\n"
+"LngText.text"
+msgid "synagogue"
+msgstr ""
+
+#. 🕋 (U+1F54B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KAABA\n"
+"LngText.text"
+msgid "Kaaba"
+msgstr ""
+
+#. 🏐 (U+1F3D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"VOLLEYBALL\n"
+"LngText.text"
+msgid "volleyball"
+msgstr ""
+
+#. 🏏 (U+1F3CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRICKET_BAT_AND_BALL\n"
+"LngText.text"
+msgid "cricket"
+msgstr ""
+
+#. 🏑 (U+1F3D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FIELD_HOCKEY_STICK_AND_BALL\n"
+"LngText.text"
+msgid "hockey2"
+msgstr ""
+
+#. 🏒 (U+1F3D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ICE_HOCKEY_STICK_AND_PUCK\n"
+"LngText.text"
+msgid "hockey"
+msgstr ""
+
+#. 🏓 (U+1F3D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TABLE_TENNIS_PADDLE_AND_BALL\n"
+"LngText.text"
+msgid "ping pong"
+msgstr ""
+
+#. 🏸 (U+1F3F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BADMINTON_RACQUET_AND_SHUTTLECOCK\n"
+"LngText.text"
+msgid "badminton"
+msgstr ""
+
+#. 🏹 (U+1F3F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOW_AND_ARROW\n"
+"LngText.text"
+msgid "bow"
+msgstr ""
+
+#. 🛐 (U+1F6D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PLACE_OF_WORSHIP\n"
+"LngText.text"
+msgid "worship"
+msgstr ""
+
+#. 🕎 (U+1F54E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MENORAH_WITH_NINE_BRANCHES\n"
+"LngText.text"
+msgid "menorah"
+msgstr ""
+
+#. 🤣 (U+1F923), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROLLING_ON_THE_FLOOR_LAUGHING\n"
+"LngText.text"
+msgid "lol"
+msgstr ""
+
+#. 🤤 (U+1F924), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DROOLING_FACE\n"
+"LngText.text"
+msgid "drool"
+msgstr ""
+
+#. 🤢 (U+1F922), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NAUSEATED_FACE\n"
+"LngText.text"
+msgid "nausea"
+msgstr ""
+
+#. 🤧 (U+1F927), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SNEEZING_FACE\n"
+"LngText.text"
+msgid "sneeze"
+msgstr ""
+
+#. 🤠 (U+1F920), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COWBOY_HAT_FACE\n"
+"LngText.text"
+msgid "cowboy"
+msgstr ""
+
+#. 🤡 (U+1F921), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOWN_FACE\n"
+"LngText.text"
+msgid "clown"
+msgstr ""
+
+#. 🤥 (U+1F925), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LYING_FACE\n"
+"LngText.text"
+msgid "liar"
+msgstr ""
+
+#. 🤴 (U+1F934), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINCE\n"
+"LngText.text"
+msgid "prince"
+msgstr ""
+
+#. 🤵 (U+1F935), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_IN_TUXEDO\n"
+"LngText.text"
+msgid "groom"
+msgstr ""
+
+#. 🤰 (U+1F930), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PREGNANT_WOMAN\n"
+"LngText.text"
+msgid "pregnant"
+msgstr ""
+
+#. 🤶 (U+1F936), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MRS._CLAUS\n"
+"LngText.text"
+msgid "mrs. claus"
+msgstr ""
+
+#. 🤦 (U+1F926), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_FACEPALMING\n"
+"LngText.text"
+msgid "facepalm"
+msgstr ""
+
+#. 🤷 (U+1F937), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_SHRUGGING\n"
+"LngText.text"
+msgid "shrugging"
+msgstr ""
+
+#. 🕺 (U+1F57A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_DANCING\n"
+"LngText.text"
+msgid "dancer2"
+msgstr ""
+
+#. 🤺 (U+1F93A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_FENCING\n"
+"LngText.text"
+msgid "fencer"
+msgstr ""
+
+#. 🤸 (U+1F938), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_CARTWHEELING\n"
+"LngText.text"
+msgid "gymnast"
+msgstr ""
+
+#. 🤼 (U+1F93C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEOPLE_WRESTLING\n"
+"LngText.text"
+msgid "wrestling"
+msgstr ""
+
+#. 🤽 (U+1F93D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_PLAYING_WATER_POLO\n"
+"LngText.text"
+msgid "water polo"
+msgstr ""
+
+#. 🤾 (U+1F93E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_PLAYING_HANDBALL\n"
+"LngText.text"
+msgid "handball"
+msgstr ""
+
+#. 🤹 (U+1F939), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_JUGGLING\n"
+"LngText.text"
+msgid "juggling"
+msgstr ""
+
+#. 🤳 (U+1F933), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SELFIE\n"
+"LngText.text"
+msgid "selfie"
+msgstr ""
+
+#. 🤞 (U+1F91E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CROSSED_FINGERS\n"
+"LngText.text"
+msgid "good luck"
+msgstr ""
+
+#. 🤙 (U+1F919), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CALL_ME_HAND\n"
+"LngText.text"
+msgid "call"
+msgstr ""
+
+#. 🤛 (U+1F91B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT-FACING_FIST\n"
+"LngText.text"
+msgid "fist3"
+msgstr ""
+
+#. 🤜 (U+1F91C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT-FACING_FIST\n"
+"LngText.text"
+msgid "fist4"
+msgstr ""
+
+#. 🤚 (U+1F91A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_BACK_OF_HAND\n"
+"LngText.text"
+msgid "hand4"
+msgstr ""
+
+#. 🤝 (U+1F91D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HANDSHAKE\n"
+"LngText.text"
+msgid "handshake"
+msgstr ""
+
+#. 🖤 (U+1F5A4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_HEART\n"
+"LngText.text"
+msgid "black heart"
+msgstr ""
+
+#. 🦍 (U+1F98D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GORILLA\n"
+"LngText.text"
+msgid "gorilla"
+msgstr ""
+
+#. 🦊 (U+1F98A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOX_FACE\n"
+"LngText.text"
+msgid "fox"
+msgstr ""
+
+#. 🦌 (U+1F98C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DEER\n"
+"LngText.text"
+msgid "deer"
+msgstr ""
+
+#. 🦏 (U+1F98F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RHINOCEROS\n"
+"LngText.text"
+msgid "rhinoceros"
+msgstr ""
+
+#. 🦇 (U+1F987), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BAT\n"
+"LngText.text"
+msgid "bat"
+msgstr ""
+
+#. 🦅 (U+1F985), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EAGLE\n"
+"LngText.text"
+msgid "eagle"
+msgstr ""
+
+#. 🦆 (U+1F986), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DUCK\n"
+"LngText.text"
+msgid "duck"
+msgstr ""
+
+#. 🦉 (U+1F989), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OWL\n"
+"LngText.text"
+msgid "owl"
+msgstr ""
+
+#. 🦎 (U+1F98E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIZARD\n"
+"LngText.text"
+msgid "lizard"
+msgstr ""
+
+#. 🦈 (U+1F988), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHARK\n"
+"LngText.text"
+msgid "shark"
+msgstr ""
+
+#. 🦐 (U+1F990), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHRIMP\n"
+"LngText.text"
+msgid "shrimp"
+msgstr ""
+
+#. 🦑 (U+1F991), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SQUID\n"
+"LngText.text"
+msgid "squid"
+msgstr ""
+
+#. 🦋 (U+1F98B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BUTTERFLY\n"
+"LngText.text"
+msgid "butterfly"
+msgstr ""
+
+#. 🥀 (U+1F940), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WILTED_FLOWER\n"
+"LngText.text"
+msgid "flower2"
+msgstr ""
+
+#. 🥝 (U+1F95D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KIWI_FRUIT\n"
+"LngText.text"
+msgid "kiwi"
+msgstr ""
+
+#. 🥑 (U+1F951), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AVOCADO\n"
+"LngText.text"
+msgid "avocado"
+msgstr ""
+
+#. 🥔 (U+1F954), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POTATO\n"
+"LngText.text"
+msgid "potato"
+msgstr ""
+
+#. 🥕 (U+1F955), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARROT\n"
+"LngText.text"
+msgid "carrot"
+msgstr ""
+
+#. 🥒 (U+1F952), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUCUMBER\n"
+"LngText.text"
+msgid "cucumber"
+msgstr ""
+
+#. 🥜 (U+1F95C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEANUTS\n"
+"LngText.text"
+msgid "peanuts"
+msgstr ""
+
+#. 🥐 (U+1F950), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CROISSANT\n"
+"LngText.text"
+msgid "croissant"
+msgstr ""
+
+#. 🥖 (U+1F956), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BAGUETTE_BREAD\n"
+"LngText.text"
+msgid "bread2"
+msgstr ""
+
+#. 🥞 (U+1F95E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PANCAKES\n"
+"LngText.text"
+msgid "pancakes"
+msgstr ""
+
+#. 🥓 (U+1F953), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BACON\n"
+"LngText.text"
+msgid "bacon"
+msgstr ""
+
+#. 🥙 (U+1F959), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STUFFED_FLATBREAD\n"
+"LngText.text"
+msgid "flatbread"
+msgstr ""
+
+#. 🥚 (U+1F95A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EGG\n"
+"LngText.text"
+msgid "egg"
+msgstr ""
+
+#. 🥘 (U+1F958), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHALLOW_PAN_OF_FOOD\n"
+"LngText.text"
+msgid "food"
+msgstr ""
+
+#. 🥗 (U+1F957), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GREEN_SALAD\n"
+"LngText.text"
+msgid "salad"
+msgstr ""
+
+#. 🥛 (U+1F95B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GLASS_OF_MILK\n"
+"LngText.text"
+msgid "milk"
+msgstr ""
+
+#. 🥂 (U+1F942), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLINKING_GLASSES\n"
+"LngText.text"
+msgid "party3"
+msgstr ""
+
+#. 🥃 (U+1F943), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TUMBLER_GLASS\n"
+"LngText.text"
+msgid "glass3"
+msgstr ""
+
+#. 🥄 (U+1F944), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPOON\n"
+"LngText.text"
+msgid "spoon"
+msgstr ""
+
+#. 🛴 (U+1F6F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCOOTER\n"
+"LngText.text"
+msgid "scooter"
+msgstr ""
+
+#. 🛵 (U+1F6F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTOR_SCOOTER\n"
+"LngText.text"
+msgid "scooter2"
+msgstr ""
+
+#. 🛑 (U+1F6D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OCTAGONAL_SIGN\n"
+"LngText.text"
+msgid "stop"
+msgstr ""
+
+#. 🛶 (U+1F6F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANOE\n"
+"LngText.text"
+msgid "canoe"
+msgstr ""
+
+#. 🥇 (U+1F947), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"1ST_PLACE_MEDAL\n"
+"LngText.text"
+msgid "gold"
+msgstr ""
+
+#. 🥈 (U+1F948), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"2ND_PLACE_MEDAL\n"
+"LngText.text"
+msgid "silver"
+msgstr ""
+
+#. 🥉 (U+1F949), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"3RD_PLACE_MEDAL\n"
+"LngText.text"
+msgid "bronze"
+msgstr ""
+
+#. 🥊 (U+1F94A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOXING_GLOVE\n"
+"LngText.text"
+msgid "boxing"
+msgstr ""
+
+#. 🥋 (U+1F94B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MARTIAL_ARTS_UNIFORM\n"
+"LngText.text"
+msgid "judo"
+msgstr ""
+
+#. 🥅 (U+1F945), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GOAL_NET\n"
+"LngText.text"
+msgid "soccer2"
+msgstr ""
+
+#. 🥁 (U+1F941), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DRUM_WITH_DRUMSTICKS\n"
+"LngText.text"
+msgid "drum2"
+msgstr ""
+
+#. 🛒 (U+1F6D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOPPING_TROLLEY\n"
+"LngText.text"
+msgid "cart"
+msgstr ""
+
+#. 🤩 (U+1F929), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GRINNING_FACE_WITH_STAR_EYES\n"
+"LngText.text"
+msgid "excited"
+msgstr ""
+
+#. 🤨 (U+1F928), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_ONE_EYEBROW_RAISED\n"
+"LngText.text"
+msgid "eyebrow"
+msgstr ""
+
+#. 🤯 (U+1F92F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOCKED_FACE_WITH_EXPLODING_HEAD\n"
+"LngText.text"
+msgid "shocked"
+msgstr ""
+
+#. 🤪 (U+1F92A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GRINNING_FACE_WITH_ONE_LARGE_AND_ONE_SMALL_EYE\n"
+"LngText.text"
+msgid "zany"
+msgstr ""
+
+#. 🤬 (U+1F92C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SERIOUS_FACE_WITH_SYMBOLS_COVERING_MOUTH\n"
+"LngText.text"
+msgid "cursing"
+msgstr ""
+
+#. 🤮 (U+1F92E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_OPEN_MOUTH_VOMITING\n"
+"LngText.text"
+msgid "vomit"
+msgstr ""
+
+#. 🤫 (U+1F92B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_FINGER_COVERING_CLOSED_LIPS\n"
+"LngText.text"
+msgid "hush"
+msgstr ""
+
+#. 🤭 (U+1F92D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SMILING_FACE_WITH_SMILING_EYES_AND_HAND_COVERING_MOUTH\n"
+"LngText.text"
+msgid "smiling4"
+msgstr ""
+
+#. 🧐 (U+1F9D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_MONOCLE\n"
+"LngText.text"
+msgid "monocle"
+msgstr ""
+
+#. 🧒 (U+1F9D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHILD\n"
+"LngText.text"
+msgid "child"
+msgstr ""
+
+#. 🧑 (U+1F9D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ADULT\n"
+"LngText.text"
+msgid "adult"
+msgstr ""
+
+#. 🧓 (U+1F9D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLDER_ADULT\n"
+"LngText.text"
+msgid "old"
+msgstr ""
+
+#. 🧕 (U+1F9D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_WITH_HEADSCARF\n"
+"LngText.text"
+msgid "headscarf"
+msgstr ""
+
+#. 🧔 (U+1F9D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEARDED_PERSON\n"
+"LngText.text"
+msgid "beard"
+msgstr ""
+
+#. 🤱 (U+1F931), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BREAST-FEEDING\n"
+"LngText.text"
+msgid "baby3"
+msgstr ""
+
+#. 🧙 (U+1F9D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAGE\n"
+"LngText.text"
+msgid "mage"
+msgstr ""
+
+#. 🧚 (U+1F9DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FAIRY\n"
+"LngText.text"
+msgid "fairy"
+msgstr ""
+
+#. 🧛 (U+1F9DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"VAMPIRE\n"
+"LngText.text"
+msgid "vampire"
+msgstr ""
+
+#. 🧜 (U+1F9DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MERPERSON\n"
+"LngText.text"
+msgid "merperson"
+msgstr ""
+
+#. 🧝 (U+1F9DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ELF\n"
+"LngText.text"
+msgid "elf"
+msgstr ""
+
+#. 🧞 (U+1F9DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GENIE\n"
+"LngText.text"
+msgid "genie"
+msgstr ""
+
+#. 🧟 (U+1F9DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZOMBIE\n"
+"LngText.text"
+msgid "zombie"
+msgstr ""
+
+#. 🧖 (U+1F9D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_IN_STEAMY_ROOM\n"
+"LngText.text"
+msgid "sauna"
+msgstr ""
+
+#. 🧗 (U+1F9D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_CLIMBING\n"
+"LngText.text"
+msgid "climber"
+msgstr ""
+
+#. 🧘 (U+1F9D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_IN_LOTUS_POSITION\n"
+"LngText.text"
+msgid "yoga"
+msgstr ""
+
+#. 🤟 (U+1F91F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"I_LOVE_YOU_HAND_SIGN\n"
+"LngText.text"
+msgid "love2"
+msgstr ""
+
+#. 🤲 (U+1F932), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PALMS_UP_TOGETHER\n"
+"LngText.text"
+msgid "palm2"
+msgstr ""
+
+#. 🧠 (U+1F9E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BRAIN\n"
+"LngText.text"
+msgid "brain"
+msgstr ""
+
+#. 🧡 (U+1F9E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ORANGE_HEART\n"
+"LngText.text"
+msgid "orange heart"
+msgstr ""
+
+#. 🧣 (U+1F9E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCARF\n"
+"LngText.text"
+msgid "scarf"
+msgstr ""
+
+#. 🧤 (U+1F9E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GLOVES\n"
+"LngText.text"
+msgid "gloves"
+msgstr ""
+
+#. 🧥 (U+1F9E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COAT\n"
+"LngText.text"
+msgid "coat"
+msgstr ""
+
+#. 🧦 (U+1F9E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SOCKS\n"
+"LngText.text"
+msgid "socks"
+msgstr ""
+
+#. 🧢 (U+1F9E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BILLED_CAP\n"
+"LngText.text"
+msgid "cap"
+msgstr ""
+
+#. 🦓 (U+1F993), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZEBRA\n"
+"LngText.text"
+msgid "zebra"
+msgstr ""
+
+#. 🦒 (U+1F992), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GIRAFFE\n"
+"LngText.text"
+msgid "giraffe"
+msgstr ""
+
+#. 🦔 (U+1F994), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEDGEHOG\n"
+"LngText.text"
+msgid "hedgehog"
+msgstr ""
+
+#. 🦕 (U+1F995), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SAUROPOD\n"
+"LngText.text"
+msgid "dinosaur"
+msgstr ""
+
+#. 🦖 (U+1F996), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"T-REX\n"
+"LngText.text"
+msgid "dinosaur2"
+msgstr ""
+
+#. 🦗 (U+1F997), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRICKET\n"
+"LngText.text"
+msgid "cricket2"
+msgstr ""
+
+#. 🥥 (U+1F965), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COCONUT\n"
+"LngText.text"
+msgid "coconut"
+msgstr ""
+
+#. 🥦 (U+1F966), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BROCCOLI\n"
+"LngText.text"
+msgid "broccoli"
+msgstr ""
+
+#. 🥨 (U+1F968), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRETZEL\n"
+"LngText.text"
+msgid "pretzel"
+msgstr ""
+
+#. 🥩 (U+1F969), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUT_OF_MEAT\n"
+"LngText.text"
+msgid "steak"
+msgstr ""
+
+#. 🥪 (U+1F96A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SANDWICH\n"
+"LngText.text"
+msgid "sandwich"
+msgstr ""
+
+#. 🥣 (U+1F963), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOWL_WITH_SPOON\n"
+"LngText.text"
+msgid "bowl"
+msgstr ""
+
+#. 🥫 (U+1F96B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANNED_FOOD\n"
+"LngText.text"
+msgid "can"
+msgstr ""
+
+#. 🥟 (U+1F95F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DUMPLING\n"
+"LngText.text"
+msgid "dumpling"
+msgstr ""
+
+#. 🥠 (U+1F960), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FORTUNE_COOKIE\n"
+"LngText.text"
+msgid "cookie2"
+msgstr ""
+
+#. 🥡 (U+1F961), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TAKEOUT_BOX\n"
+"LngText.text"
+msgid "takeout"
+msgstr ""
+
+#. 🥧 (U+1F967), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PIE\n"
+"LngText.text"
+msgid "pie"
+msgstr ""
+
+#. 🥤 (U+1F964), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUP_WITH_STRAW\n"
+"LngText.text"
+msgid "drink"
+msgstr ""
+
+#. 🥢 (U+1F962), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHOPSTICKS\n"
+"LngText.text"
+msgid "chopsticks"
+msgstr ""
+
+#. 🛸 (U+1F6F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FLYING_SAUCER\n"
+"LngText.text"
+msgid "ufo"
+msgstr ""
+
+#. 🛷 (U+1F6F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLED\n"
+"LngText.text"
+msgid "sled"
+msgstr ""
+
+#. 🥌 (U+1F94C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CURLING_STONE\n"
+"LngText.text"
+msgid "curling"
+msgstr ""
+
+#. ₿ (U+20BF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BITCOIN_SIGN\n"
+"LngText.text"
+msgid "bitcoin"
+msgstr ""
+
#. ½ (U+000BD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
msgctxt ""
diff --git a/source/af/officecfg/registry/data/org/openoffice/Office/UI.po b/source/af/officecfg/registry/data/org/openoffice/Office/UI.po
index d526244dbaa..b044488a2b2 100644
--- a/source/af/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/af/officecfg/registry/data/org/openoffice/Office/UI.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: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2016-12-01 17:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2841,8 +2841,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:Hide\n"
"Label\n"
"value.text"
-msgid "~Hide Sheets"
-msgstr "~Versteek velle"
+msgid "~Hide Sheet"
+msgstr ""
#: CalcCommands.xcu
#, fuzzy
@@ -3606,17 +3606,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:EditLinks\n"
"Label\n"
"value.text"
-msgid "Edit Lin~ks..."
-msgstr "~Redigeer skakels..."
-
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:EditLinks\n"
-"ContextLabel\n"
-"value.text"
-msgid "Lin~ks..."
-msgstr "Skak~els..."
+msgid "Lin~ks to External Files..."
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -7012,16 +7003,6 @@ msgstr "Skyfi~e"
#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Commands..uno:SlideNavigateMenu\n"
-"Label\n"
-"value.text"
-msgid "Navigate"
-msgstr "Navigeer"
-
-#: DrawImpressCommands.xcu
-#, fuzzy
-msgctxt ""
-"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:SlideMoveMenu\n"
"Label\n"
"value.text"
@@ -7633,6 +7614,15 @@ msgstr "~Bladsynommer"
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlideField\n"
+"Label\n"
+"value.text"
+msgid "~Slide Number"
+msgstr ""
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:InsertPageTitleField\n"
"Label\n"
"value.text"
@@ -7642,6 +7632,15 @@ msgstr ""
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlideTitleField\n"
+"Label\n"
+"value.text"
+msgid "Slide Tit~le"
+msgstr ""
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:InsertPagesField\n"
"Label\n"
"value.text"
@@ -7651,6 +7650,15 @@ msgstr "Bladsy~telling"
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlidesField\n"
+"Label\n"
+"value.text"
+msgid "Slide ~Count"
+msgstr ""
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:ModifyField\n"
"Label\n"
"value.text"
@@ -7873,8 +7881,8 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:ManageLinks\n"
"Label\n"
"value.text"
-msgid "Lin~ks..."
-msgstr "Skak~els..."
+msgid "Lin~ks to External Files..."
+msgstr ""
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7965,7 +7973,7 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:ImportSlideFromFile\n"
"Label\n"
"value.text"
-msgid "Import Slides..."
+msgid "Insert Slide from File..."
msgstr ""
#: DrawImpressCommands.xcu
@@ -9197,6 +9205,15 @@ msgstr "B~ladsynommer..."
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Popups..uno:InsertSlideNumber\n"
+"Label\n"
+"value.text"
+msgid "S~lide Number..."
+msgstr ""
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:InsertDateAndTime\n"
"Label\n"
"value.text"
@@ -17745,14 +17762,13 @@ msgid "H~alf-width"
msgstr "H~alfbreedte"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:InsertDoc\n"
"Label\n"
"value.text"
-msgid "Doc~ument..."
-msgstr "~Dokument..."
+msgid "Text from File..."
+msgstr ""
#: GenericCommands.xcu
msgctxt ""
@@ -17929,6 +17945,15 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ViewSidebarStyles\n"
+"Label\n"
+"value.text"
+msgid "Styles"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:OutlineRight\n"
"Label\n"
"value.text"
@@ -19578,25 +19603,6 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
-"Label\n"
-"value.text"
-msgid "Charmap"
-msgstr ""
-
-#: GenericCommands.xcu
-#, fuzzy
-msgctxt ""
-"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
-"TooltipLabel\n"
-"value.text"
-msgid "Insert Special Characters"
-msgstr "Voeg spesiale karakter in"
-
-#: GenericCommands.xcu
-msgctxt ""
-"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:TransformRotationX\n"
"Label\n"
"value.text"
@@ -20762,6 +20768,34 @@ msgstr "Voeg spesiale karakter in"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"Label\n"
+"value.text"
+msgid "Symbol"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"ContextLabel\n"
+"value.text"
+msgid "S~pecial Character..."
+msgstr ""
+
+#: GenericCommands.xcu
+#, fuzzy
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Insert Special Characters"
+msgstr "Voeg spesiale karakter in"
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ViewDataSourceBrowser\n"
"Label\n"
"value.text"
@@ -20807,6 +20841,15 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ExportAsMenu\n"
+"Label\n"
+"value.text"
+msgid "~Export As"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportToPDF\n"
"Label\n"
"value.text"
@@ -20872,14 +20915,13 @@ msgid "EPUB"
msgstr ""
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportToEPUB\n"
"ContextLabel\n"
"value.text"
-msgid "~Export as EPUB..."
-msgstr "Voer uit as P~DF..."
+msgid "Export as E~PUB..."
+msgstr ""
#: GenericCommands.xcu
#, fuzzy
@@ -23280,6 +23322,15 @@ msgctxt ""
msgid "~Restart in Safe Mode..."
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:NavigateMenu\n"
+"Label\n"
+"value.text"
+msgid "Navigate"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26004,8 +26055,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:ShowHiddenParagraphs\n"
"Label\n"
"value.text"
-msgid "~Hidden Paragraphs"
-msgstr "~Versteekde paragrawe"
+msgid "Field ~Hidden Paragraphs"
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
@@ -28012,8 +28063,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:LinkDialog\n"
"Label\n"
"value.text"
-msgid "Lin~ks..."
-msgstr "Skak~els..."
+msgid "Lin~ks to External Files..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
@@ -30773,7 +30824,7 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 1&amp;FamilyName:string=NumberingStyles\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 123&amp;FamilyName:string=NumberingStyles\n"
"Label\n"
"value.text"
msgid "Number List"
@@ -30800,10 +30851,64 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 4&amp;FamilyName:string=NumberingStyles\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering ABC&amp;FamilyName:string=NumberingStyles\n"
"Label\n"
"value.text"
-msgid "Roman List"
+msgid "Alphabet Uppercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaListStyle\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Uppercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Alphabet Uppercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering abc&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaLowListStyle\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaLowListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Alphabet Lowercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering IVX&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Roman Uppercase List"
msgstr ""
#: WriterCommands.xcu
@@ -30812,7 +30917,7 @@ msgctxt ""
"..WriterCommands.UserInterface.Popups..uno:RomanListStyle\n"
"Label\n"
"value.text"
-msgid "Roman List"
+msgid "Roman Uppercase List"
msgstr ""
#: WriterCommands.xcu
@@ -30821,7 +30926,34 @@ msgctxt ""
"..WriterCommands.UserInterface.Popups..uno:RomanListStyle\n"
"TooltipLabel\n"
"value.text"
-msgid "Roman List Style"
+msgid "Roman Uppercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering ivx&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Roman Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:RomanLowListStyle\n"
+"Label\n"
+"value.text"
+msgid "Roman Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:RomanLowListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Roman Lowercase List Style"
msgstr ""
#: WriterCommands.xcu
diff --git a/source/af/sd/messages.po b/source/af/sd/messages.po
index 631f7a5e645..ecbcf6f9a30 100644
--- a/source/af/sd/messages.po
+++ b/source/af/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 15:29+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1583,915 +1583,925 @@ msgid "Master Slide"
msgstr ""
#: strings.hrc:287
+msgctxt "STR_MASTERSLIDE_LABEL"
+msgid "Master Slide:"
+msgstr ""
+
+#: strings.hrc:288
#, fuzzy
msgctxt "STR_MASTERPAGE_NAME"
msgid "Master Page"
msgstr "Meesterbladsye"
-#: strings.hrc:288
+#: strings.hrc:289
+msgctxt "STR_MASTERPAGE_LABEL"
+msgid "Master Page:"
+msgstr ""
+
+#: strings.hrc:290
msgctxt "STR_NOTES"
msgid "(Notes)"
msgstr "(Notas)"
-#: strings.hrc:289
+#: strings.hrc:291
msgctxt "STR_HANDOUT"
msgid "Handouts"
msgstr "Uitdeelstukke"
-#: strings.hrc:290
+#: strings.hrc:292
msgctxt "STR_PRESOBJ_MPTITLE"
msgid "Click to edit the title text format"
msgstr "Kliek om die titelteksformaat te redigeer"
-#: strings.hrc:291
+#: strings.hrc:293
msgctxt "STR_PRESOBJ_MPOUTLINE"
msgid "Click to edit the outline text format"
msgstr "Kliek om die skemateksformaat te redigeer"
-#: strings.hrc:292
+#: strings.hrc:294
msgctxt "STR_PRESOBJ_MPOUTLLAYER2"
msgid "Second Outline Level"
msgstr "Tweede skemavlak"
-#: strings.hrc:293
+#: strings.hrc:295
msgctxt "STR_PRESOBJ_MPOUTLLAYER3"
msgid "Third Outline Level"
msgstr "Derde skemavlak"
-#: strings.hrc:294
+#: strings.hrc:296
msgctxt "STR_PRESOBJ_MPOUTLLAYER4"
msgid "Fourth Outline Level"
msgstr "Vierde skemavlak"
-#: strings.hrc:295
+#: strings.hrc:297
msgctxt "STR_PRESOBJ_MPOUTLLAYER5"
msgid "Fifth Outline Level"
msgstr "Vyfde skemavlak"
-#: strings.hrc:296
+#: strings.hrc:298
msgctxt "STR_PRESOBJ_MPOUTLLAYER6"
msgid "Sixth Outline Level"
msgstr "Sesde skemavlak"
-#: strings.hrc:297
+#: strings.hrc:299
msgctxt "STR_PRESOBJ_MPOUTLLAYER7"
msgid "Seventh Outline Level"
msgstr "Sewende skemavlak"
-#: strings.hrc:298
+#: strings.hrc:300
msgctxt "STR_PRESOBJ_MPNOTESTITLE"
msgid "Click to move the slide"
msgstr "Kliek om die skyfie te verplaas"
-#: strings.hrc:299
+#: strings.hrc:301
msgctxt "STR_PRESOBJ_MPNOTESTEXT"
msgid "Click to edit the notes format"
msgstr "Kliek om die notaformaat te redigeer"
-#: strings.hrc:300
+#: strings.hrc:302
msgctxt "STR_PRESOBJ_TITLE"
msgid "Click to add Title"
msgstr ""
-#: strings.hrc:301
+#: strings.hrc:303
msgctxt "STR_PRESOBJ_OUTLINE"
msgid "Click to add Text"
msgstr ""
-#: strings.hrc:302
+#: strings.hrc:304
msgctxt "STR_PRESOBJ_TEXT"
msgid "Click to add Text"
msgstr ""
-#: strings.hrc:303
+#: strings.hrc:305
msgctxt "STR_PRESOBJ_NOTESTEXT"
msgid "Click to add Notes"
msgstr ""
-#: strings.hrc:304
+#: strings.hrc:306
msgctxt "STR_PRESOBJ_GRAPHIC"
msgid "Double-click to add an Image"
msgstr ""
-#: strings.hrc:305
+#: strings.hrc:307
msgctxt "STR_PRESOBJ_OBJECT"
msgid "Double-click to add an Object"
msgstr ""
-#: strings.hrc:306
+#: strings.hrc:308
msgctxt "STR_PRESOBJ_CHART"
msgid "Double-click to add a Chart"
msgstr ""
-#: strings.hrc:307
+#: strings.hrc:309
msgctxt "STR_PRESOBJ_ORGCHART"
msgid "Double-click to add an Organization Chart"
msgstr ""
-#: strings.hrc:308
+#: strings.hrc:310
msgctxt "STR_PRESOBJ_TABLE"
msgid "Double-click to add a Spreadsheet"
msgstr ""
-#: strings.hrc:309
+#: strings.hrc:311
msgctxt "STR_LAYOUT_DEFAULT_NAME"
msgid "Default"
msgstr "Verstek"
-#: strings.hrc:310
+#: strings.hrc:312
msgctxt "STR_LAYOUT_DEFAULT_TITLE_NAME"
msgid "Title"
msgstr "Titel"
-#: strings.hrc:311
+#: strings.hrc:313
msgctxt "STR_STANDARD_STYLESHEET_NAME"
msgid "Default"
msgstr "Verstek"
-#: strings.hrc:312
+#: strings.hrc:314
msgctxt "STR_UNDO_MOVEPAGES"
msgid "Move slides"
msgstr "Verplaas skyfies"
-#: strings.hrc:313
+#: strings.hrc:315
msgctxt "STR_POOLSHEET_MEASURE"
msgid "Dimension Line"
msgstr "Dimensielyn"
-#: strings.hrc:314
+#: strings.hrc:316
msgctxt "STR_POOLSHEET_OBJNOLINENOFILL"
msgid "Object with no fill and no line"
msgstr ""
-#: strings.hrc:315
+#: strings.hrc:317
msgctxt "STR_POOLSHEET_OBJWITHARROW"
msgid "Object with arrow"
msgstr "Objek met pyltjie"
-#: strings.hrc:316
+#: strings.hrc:318
msgctxt "STR_POOLSHEET_OBJWITHSHADOW"
msgid "Object with shadow"
msgstr "Objek met skadu"
-#: strings.hrc:317
+#: strings.hrc:319
msgctxt "STR_POOLSHEET_OBJWITHOUTFILL"
msgid "Object without fill"
msgstr "Objek sonder agtergrond"
-#: strings.hrc:318
+#: strings.hrc:320
msgctxt "STR_POOLSHEET_TEXT"
msgid "Text"
msgstr "Teks"
-#: strings.hrc:319
+#: strings.hrc:321
msgctxt "STR_POOLSHEET_TEXTBODY"
msgid "Text body"
msgstr "Teksliggaam"
-#: strings.hrc:320
+#: strings.hrc:322
msgctxt "STR_POOLSHEET_TEXTBODY_JUSTIFY"
msgid "Text body justified"
msgstr "Teksliggaam-belyn"
-#: strings.hrc:321
+#: strings.hrc:323
msgctxt "STR_POOLSHEET_TEXTBODY_INDENT"
msgid "First line indent"
msgstr "Eerstereël-inkeep"
-#: strings.hrc:322
+#: strings.hrc:324
msgctxt "STR_POOLSHEET_TITLE"
msgid "Title"
msgstr "Titel"
-#: strings.hrc:323
+#: strings.hrc:325
msgctxt "STR_POOLSHEET_TITLE1"
msgid "Title1"
msgstr "Titel1"
-#: strings.hrc:324
+#: strings.hrc:326
msgctxt "STR_POOLSHEET_TITLE2"
msgid "Title2"
msgstr "Titel2"
-#: strings.hrc:325
+#: strings.hrc:327
msgctxt "STR_POOLSHEET_HEADLINE"
msgid "Heading"
msgstr "Opskrif"
-#: strings.hrc:326
+#: strings.hrc:328
msgctxt "STR_POOLSHEET_HEADLINE1"
msgid "Heading1"
msgstr "Opskrif1"
-#: strings.hrc:327
+#: strings.hrc:329
msgctxt "STR_POOLSHEET_HEADLINE2"
msgid "Heading2"
msgstr "Opskrif2"
-#: strings.hrc:328
+#: strings.hrc:330
msgctxt "STR_PSEUDOSHEET_TITLE"
msgid "Title"
msgstr "Titel"
-#: strings.hrc:329
+#: strings.hrc:331
msgctxt "STR_PSEUDOSHEET_SUBTITLE"
msgid "Subtitle"
msgstr "Subtitel"
-#: strings.hrc:330
+#: strings.hrc:332
msgctxt "STR_PSEUDOSHEET_OUTLINE"
msgid "Outline"
msgstr "Skema"
-#: strings.hrc:331
+#: strings.hrc:333
msgctxt "STR_PSEUDOSHEET_BACKGROUNDOBJECTS"
msgid "Background objects"
msgstr "Agtergrondobjekte"
-#: strings.hrc:332
+#: strings.hrc:334
msgctxt "STR_PSEUDOSHEET_BACKGROUND"
msgid "Background"
msgstr "Agtergrond"
-#: strings.hrc:333
+#: strings.hrc:335
msgctxt "STR_PSEUDOSHEET_NOTES"
msgid "Notes"
msgstr "Notas"
-#: strings.hrc:334
+#: strings.hrc:336
msgctxt "STR_POWERPOINT_IMPORT"
msgid "PowerPoint Import"
msgstr "PowerPoint-invoer"
-#: strings.hrc:335
+#: strings.hrc:337
msgctxt "STR_SAVE_DOC"
msgid "Save Document"
msgstr "Stoor dokument"
-#: strings.hrc:336
+#: strings.hrc:338
msgctxt "STR_POOLSHEET_BANDED_CELL"
msgid "Banding cell"
msgstr "Banding van sel"
-#: strings.hrc:337
+#: strings.hrc:339
msgctxt "STR_POOLSHEET_HEADER"
msgid "Header"
msgstr "Kop"
-#: strings.hrc:338
+#: strings.hrc:340
msgctxt "STR_POOLSHEET_TOTAL"
msgid "Total line"
msgstr "Totaalreël"
-#: strings.hrc:339
+#: strings.hrc:341
msgctxt "STR_POOLSHEET_FIRST_COLUMN"
msgid "First column"
msgstr "Eerste kolom"
-#: strings.hrc:340
+#: strings.hrc:342
msgctxt "STR_POOLSHEET_LAST_COLUMN"
msgid "Last column"
msgstr "Laaste kolom"
-#: strings.hrc:341
+#: strings.hrc:343
msgctxt "STR_ENTER_PIN"
msgid "Enter PIN:"
msgstr ""
-#: strings.hrc:342
+#: strings.hrc:344
msgctxt "STR_DEAUTHORISE_CLIENT"
msgid "Remove client authorisation"
msgstr ""
-#: strings.hrc:343
+#: strings.hrc:345
msgctxt "STR_SHRINK_FONT_SIZE"
msgid "Shrink font size"
msgstr ""
-#: strings.hrc:344
+#: strings.hrc:346
msgctxt "STR_GROW_FONT_SIZE"
msgid "Grow font size"
msgstr ""
#. Names and descriptions of the Draw/Impress accessibility views
#. ==============================================================
-#: strings.hrc:349
+#: strings.hrc:351
msgctxt "SID_SD_A11Y_D_DRAWVIEW_N"
msgid "Drawing View"
msgstr "Tekeningaansig"
-#: strings.hrc:350
+#: strings.hrc:352
msgctxt "SID_SD_A11Y_D_DRAWVIEW_D"
msgid "This is where you create and edit drawings."
msgstr "Dit is waar jy tekeninge skep en redigeer."
-#: strings.hrc:351
+#: strings.hrc:353
msgctxt "SID_SD_A11Y_I_DRAWVIEW_N"
msgid "Drawing View"
msgstr "Tekeningaansig"
-#: strings.hrc:352
+#: strings.hrc:354
msgctxt "SID_SD_A11Y_I_DRAWVIEW_D"
msgid "This is where you create and edit slides."
msgstr "Dit is waar jy skyfies skep en redigeer."
-#: strings.hrc:353
+#: strings.hrc:355
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_N"
msgid "Outline View"
msgstr "Skema-aansig"
-#: strings.hrc:354
+#: strings.hrc:356
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_D"
msgid "This is where you enter or edit text in list form."
msgstr "Dit is waar jy teks in lysvorm intik of redigeer."
-#: strings.hrc:355
+#: strings.hrc:357
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_N"
msgid "Slides View"
msgstr "Skyfiesaansig"
-#: strings.hrc:356
+#: strings.hrc:358
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_D"
msgid "This is where you sort slides."
msgstr "Dit is waar jy skyfies sorteer."
-#: strings.hrc:357
+#: strings.hrc:359
msgctxt "SID_SD_A11Y_I_NOTESVIEW_N"
msgid "Notes View"
msgstr "Nota-aansig"
-#: strings.hrc:358
+#: strings.hrc:360
msgctxt "SID_SD_A11Y_I_NOTESVIEW_D"
msgid "This is where you enter and view notes."
msgstr "Dit is waar jy aantekeninge intik en redigeer."
-#: strings.hrc:359
+#: strings.hrc:361
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_N"
msgid "Handout View"
msgstr "Uitdeelstuk-aansig"
-#: strings.hrc:360
+#: strings.hrc:362
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_D"
msgid "This is where you decide on the layout for handouts."
msgstr "Dit is waar jy besluit oor die uitleg van uitdeelstukke."
-#: strings.hrc:361
+#: strings.hrc:363
#, fuzzy
msgctxt "SID_SD_A11Y_P_TITLE_N"
msgid "PresentationTitle"
msgstr "Voorlegging"
-#: strings.hrc:362
+#: strings.hrc:364
msgctxt "SID_SD_A11Y_P_OUTLINER_N"
msgid "PresentationOutliner"
msgstr ""
-#: strings.hrc:363
+#: strings.hrc:365
msgctxt "SID_SD_A11Y_P_SUBTITLE_N"
msgid "PresentationSubtitle"
msgstr ""
-#: strings.hrc:364
+#: strings.hrc:366
#, fuzzy
msgctxt "SID_SD_A11Y_P_PAGE_N"
msgid "PresentationPage"
msgstr "Voorlegging"
-#: strings.hrc:365
+#: strings.hrc:367
#, fuzzy
msgctxt "SID_SD_A11Y_P_NOTES_N"
msgid "PresentationNotes"
msgstr "Voorlegging"
-#: strings.hrc:366
+#: strings.hrc:368
#, fuzzy
msgctxt "SID_SD_A11Y_P_HANDOUT_N"
msgid "Handout"
msgstr "Uitdeelstuk"
-#: strings.hrc:367
+#: strings.hrc:369
msgctxt "SID_SD_A11Y_P_UNKNOWN_N"
msgid "UnknownAccessiblePresentationShape"
msgstr ""
-#: strings.hrc:368
+#: strings.hrc:370
msgctxt "SID_SD_A11Y_P_TITLE_D"
msgid "PresentationTitleShape"
msgstr ""
-#: strings.hrc:369
+#: strings.hrc:371
msgctxt "SID_SD_A11Y_P_OUTLINER_D"
msgid "PresentationOutlinerShape"
msgstr ""
-#: strings.hrc:370
+#: strings.hrc:372
msgctxt "SID_SD_A11Y_P_SUBTITLE_D"
msgid "PresentationSubtitleShape"
msgstr ""
-#: strings.hrc:371
+#: strings.hrc:373
#, fuzzy
msgctxt "SID_SD_A11Y_P_PAGE_D"
msgid "PresentationPageShape"
msgstr "Voorlegging"
-#: strings.hrc:372
+#: strings.hrc:374
msgctxt "SID_SD_A11Y_P_NOTES_D"
msgid "PresentationNotesShape"
msgstr ""
-#: strings.hrc:373
+#: strings.hrc:375
msgctxt "SID_SD_A11Y_P_HANDOUT_D"
msgid "PresentationHandoutShape"
msgstr ""
-#: strings.hrc:374
+#: strings.hrc:376
msgctxt "SID_SD_A11Y_P_UNKNOWN_D"
msgid "Unknown accessible presentation shape"
msgstr ""
-#: strings.hrc:375
+#: strings.hrc:377
#, fuzzy
msgctxt "SID_SD_A11Y_P_FOOTER_N"
msgid "PresentationFooter"
msgstr "Voorleggingsmodus"
-#: strings.hrc:376
+#: strings.hrc:378
msgctxt "SID_SD_A11Y_P_FOOTER_D"
msgid "PresentationFooterShape"
msgstr ""
-#: strings.hrc:377
+#: strings.hrc:379
#, fuzzy
msgctxt "SID_SD_A11Y_P_HEADER_N"
msgid "PresentationHeader"
msgstr "Voorlegging"
-#: strings.hrc:378
+#: strings.hrc:380
msgctxt "SID_SD_A11Y_P_HEADER_D"
msgid "PresentationHeaderShape"
msgstr ""
-#: strings.hrc:379
+#: strings.hrc:381
msgctxt "SID_SD_A11Y_P_DATE_N"
msgid "PresentationDateAndTime"
msgstr ""
-#: strings.hrc:380
+#: strings.hrc:382
msgctxt "SID_SD_A11Y_P_DATE_D"
msgid "PresentationDateAndTimeShape"
msgstr ""
-#: strings.hrc:381
+#: strings.hrc:383
msgctxt "SID_SD_A11Y_P_NUMBER_N"
msgid "PresentationPageNumber"
msgstr ""
-#: strings.hrc:382
+#: strings.hrc:384
msgctxt "SID_SD_A11Y_P_NUMBER_D"
msgid "PresentationPageNumberShape"
msgstr ""
-#: strings.hrc:383
+#: strings.hrc:385
#, fuzzy
msgctxt "SID_SD_A11Y_D_PRESENTATION"
msgid "%PRODUCTNAME Presentation"
msgstr "%PRODUCTNAME-voorlegging"
-#: strings.hrc:384
+#: strings.hrc:386
#, fuzzy
msgctxt "SID_SD_A11Y_P_TITLE_N_STYLE"
msgid "Title"
msgstr "Titel"
-#: strings.hrc:385
+#: strings.hrc:387
#, fuzzy
msgctxt "SID_SD_A11Y_P_OUTLINER_N_STYLE"
msgid "Outliner"
msgstr "Skema"
-#: strings.hrc:386
+#: strings.hrc:388
#, fuzzy
msgctxt "SID_SD_A11Y_P_SUBTITLE_N_STYLE"
msgid "Subtitle"
msgstr "Subtitel"
-#: strings.hrc:387
+#: strings.hrc:389
#, fuzzy
msgctxt "SID_SD_A11Y_P_PAGE_N_STYLE"
msgid "Page"
msgstr "Bladsy"
-#: strings.hrc:388
+#: strings.hrc:390
#, fuzzy
msgctxt "SID_SD_A11Y_P_NOTES_N_STYLE"
msgid "Notes"
msgstr "Notas"
-#: strings.hrc:389
+#: strings.hrc:391
#, fuzzy
msgctxt "SID_SD_A11Y_P_HANDOUT_N_STYLE"
msgid "Handout"
msgstr "Uitdeelstuk"
-#: strings.hrc:390
+#: strings.hrc:392
msgctxt "SID_SD_A11Y_P_UNKNOWN_N_STYLE"
msgid "Unknown Accessible Presentation Shape"
msgstr ""
-#: strings.hrc:391
+#: strings.hrc:393
#, fuzzy
msgctxt "SID_SD_A11Y_P_FOOTER_N_STYLE"
msgid "Footer"
msgstr "Voet"
-#: strings.hrc:392
+#: strings.hrc:394
#, fuzzy
msgctxt "SID_SD_A11Y_P_HEADER_N_STYLE"
msgid "Header"
msgstr "Kop"
-#: strings.hrc:393
+#: strings.hrc:395
#, fuzzy
msgctxt "SID_SD_A11Y_P_DATE_N_STYLE"
msgid "Date"
msgstr "Datum"
-#: strings.hrc:394
+#: strings.hrc:396
#, fuzzy
msgctxt "SID_SD_A11Y_P_NUMBER_N_STYLE"
msgid "Number"
msgstr "Nommer"
-#: strings.hrc:395
+#: strings.hrc:397
#, fuzzy
msgctxt "SID_SD_A11Y_D_PRESENTATION_READONLY"
msgid "(read-only)"
msgstr "(leesalleen)"
-#: strings.hrc:397
+#: strings.hrc:399
msgctxt "STR_CUSTOMANIMATION_REPEAT_NONE"
msgid "none"
msgstr "geen"
-#: strings.hrc:398
+#: strings.hrc:400
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_NEXT_CLICK"
msgid "Until next click"
msgstr "Tot volgende kliek"
-#: strings.hrc:399
+#: strings.hrc:401
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_END_OF_SLIDE"
msgid "Until end of slide"
msgstr "Tot einde van skyfie"
-#: strings.hrc:400
+#: strings.hrc:402
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_DIRECTION_PROPERTY"
msgid "Direction:"
msgstr "Rigting"
-#: strings.hrc:401
+#: strings.hrc:403
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_ZOOM_PROPERTY"
msgid "Zoom:"
msgstr "Zoem"
-#: strings.hrc:402
+#: strings.hrc:404
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SPOKES_PROPERTY"
msgid "Spokes:"
msgstr "Speke"
-#: strings.hrc:403
+#: strings.hrc:405
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY"
msgid "First color:"
msgstr "Eerste kolom"
-#: strings.hrc:404
+#: strings.hrc:406
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY"
msgid "Second color:"
msgstr "Tweede kleur"
-#: strings.hrc:405
+#: strings.hrc:407
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY"
msgid "Fill color:"
msgstr "Eerste kolom"
-#: strings.hrc:406
+#: strings.hrc:408
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_STYLE_PROPERTY"
msgid "Style:"
msgstr "Styl:"
-#: strings.hrc:407
+#: strings.hrc:409
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_PROPERTY"
msgid "Font:"
msgstr "Font"
-#: strings.hrc:408
+#: strings.hrc:410
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY"
msgid "Font color:"
msgstr "Eerste kolom"
-#: strings.hrc:409
+#: strings.hrc:411
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_SIZE_STYLE_PROPERTY"
msgid "Style:"
msgstr "Styl:"
-#: strings.hrc:410
+#: strings.hrc:412
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY"
msgid "Typeface:"
msgstr "Lettertipe"
-#: strings.hrc:411
+#: strings.hrc:413
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY"
msgid "Line color:"
msgstr "Lynkleur"
-#: strings.hrc:412
+#: strings.hrc:414
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SIZE_PROPERTY"
msgid "Font size:"
msgstr "Fontgrootte"
-#: strings.hrc:413
+#: strings.hrc:415
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SCALE_PROPERTY"
msgid "Size:"
msgstr "Grootte"
-#: strings.hrc:414
+#: strings.hrc:416
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_AMOUNT_PROPERTY"
msgid "Amount:"
msgstr "Hoeveelheid"
-#: strings.hrc:415
+#: strings.hrc:417
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_COLOR_PROPERTY"
msgid "Color:"
msgstr "Kleur"
-#: strings.hrc:416
+#: strings.hrc:418
msgctxt "STR_CUSTOMANIMATION_NO_SOUND"
msgid "(No sound)"
msgstr "(Geen klank nie)"
-#: strings.hrc:417
+#: strings.hrc:419
msgctxt "STR_CUSTOMANIMATION_STOP_PREVIOUS_SOUND"
msgid "(Stop previous sound)"
msgstr "(Stop vorige klank)"
-#: strings.hrc:418
+#: strings.hrc:420
msgctxt "STR_CUSTOMANIMATION_BROWSE_SOUND"
msgid "Other sound..."
msgstr "Ander klank..."
-#: strings.hrc:419
+#: strings.hrc:421
msgctxt "STR_CUSTOMANIMATION_SAMPLE"
msgid "Sample"
msgstr "Monster"
-#: strings.hrc:420
+#: strings.hrc:422
msgctxt "STR_CUSTOMANIMATION_TRIGGER"
msgid "Trigger"
msgstr "Sneller"
-#: strings.hrc:421
+#: strings.hrc:423
msgctxt "STR_CUSTOMANIMATION_LIST_HELPTEXT"
msgid "First select the slide element and then click 'Add...' to add an animation effect."
msgstr "Selekteer eers die skyfie-element en kliek dan 'Byvoeg...' om 'n animasie-effek by te voeg."
-#: strings.hrc:422
+#: strings.hrc:424
msgctxt "STR_CUSTOMANIMATION_USERPATH"
msgid "User paths"
msgstr ""
-#: strings.hrc:423
+#: strings.hrc:425
msgctxt "STR_CUSTOMANIMATION_ENTRANCE"
msgid "Entrance: %1"
msgstr ""
-#: strings.hrc:424
+#: strings.hrc:426
msgctxt "STR_CUSTOMANIMATION_EMPHASIS"
msgid "Emphasis: %1"
msgstr ""
-#: strings.hrc:425
+#: strings.hrc:427
msgctxt "STR_CUSTOMANIMATION_EXIT"
msgid "Exit: %1"
msgstr ""
-#: strings.hrc:426
+#: strings.hrc:428
msgctxt "STR_CUSTOMANIMATION_MOTION_PATHS"
msgid "Motion Paths: %1"
msgstr ""
-#: strings.hrc:427
+#: strings.hrc:429
#, fuzzy
msgctxt "STR_SLIDETRANSITION_NONE"
msgid "None"
msgstr "geen"
-#: strings.hrc:429
+#: strings.hrc:431
msgctxt "STR_ANNOTATION_TODAY"
msgid "Today,"
msgstr "Vandag,"
-#: strings.hrc:430
+#: strings.hrc:432
msgctxt "STR_ANNOTATION_YESTERDAY"
msgid "Yesterday,"
msgstr "Gister,"
-#: strings.hrc:431
+#: strings.hrc:433
msgctxt "STR_ANNOTATION_NOAUTHOR"
msgid "(no author)"
msgstr "(geen outeur)"
-#: strings.hrc:432
+#: strings.hrc:434
msgctxt "STR_ANNOTATION_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress reached the end of the presentation. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Impress het die einde van die voorlegging bereik. Wil u verder aan die begin soek?"
-#: strings.hrc:433
+#: strings.hrc:435
msgctxt "STR_ANNOTATION_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress reached the beginning of the presentation. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Impress het die begin van die voorlegging bereik. Wil u verder aan die einde soek?"
-#: strings.hrc:434
+#: strings.hrc:436
msgctxt "STR_ANNOTATION_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the end of the document. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Draw het die einde van die dokument bereik. Wil u verder aan die begin soek?"
-#: strings.hrc:435
+#: strings.hrc:437
msgctxt "STR_ANNOTATION_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the beginning of the document. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Draw het tot aan die begin van die dokument gesoek. Wil u verder aan die einde soek?"
-#: strings.hrc:436
+#: strings.hrc:438
msgctxt "STR_ANNOTATION_UNDO_INSERT"
msgid "Insert Comment"
msgstr "Voeg opmerking in"
-#: strings.hrc:437
+#: strings.hrc:439
msgctxt "STR_ANNOTATION_UNDO_DELETE"
msgid "Delete Comment(s)"
msgstr "Skrap opmerking(s)"
-#: strings.hrc:438
+#: strings.hrc:440
msgctxt "STR_ANNOTATION_UNDO_MOVE"
msgid "Move Comment"
msgstr "Skuif opmerking"
-#: strings.hrc:439
+#: strings.hrc:441
msgctxt "STR_ANNOTATION_UNDO_EDIT"
msgid "Edit Comment"
msgstr "Redigeer opmerking"
-#: strings.hrc:440
+#: strings.hrc:442
msgctxt "STR_ANNOTATION_REPLY"
msgid "Reply to %1"
msgstr "Antwoord aan%1"
-#: strings.hrc:442
+#: strings.hrc:444
msgctxt "RID_DRAW_MEDIA_TOOLBOX"
msgid "Media Playback"
msgstr "Media-terugspeel"
-#: strings.hrc:443
+#: strings.hrc:445
msgctxt "RID_DRAW_TABLE_TOOLBOX"
msgid "Table"
msgstr "Tabel"
-#: strings.hrc:445
+#: strings.hrc:447
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_GROUP_NAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: strings.hrc:446
+#: strings.hrc:448
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PRINT_GROUP"
msgid "Print"
msgstr "Druk"
-#: strings.hrc:447
+#: strings.hrc:449
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT"
msgid "Document"
msgstr "Dokument"
-#: strings.hrc:448
+#: strings.hrc:450
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE"
msgid "Slides per page"
msgstr "Skyfies per bladsy"
-#: strings.hrc:449
+#: strings.hrc:451
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER"
msgid "Order"
msgstr "Volgorde"
-#: strings.hrc:450
+#: strings.hrc:452
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT"
msgid "~Contents"
msgstr "Inhoud"
-#: strings.hrc:451
+#: strings.hrc:453
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_NAME"
msgid "~Slide name"
msgstr "Skuifiepaneel"
-#: strings.hrc:452
+#: strings.hrc:454
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_IS_PRINT_NAME"
msgid "P~age name"
msgstr "~Bladsynaam"
-#: strings.hrc:453
+#: strings.hrc:455
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_DATE"
msgid "~Date and time"
msgstr "Datum en tyd"
-#: strings.hrc:454
+#: strings.hrc:456
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_HIDDEN"
msgid "Hidden pages"
msgstr "V~ersteekde bladsye"
-#: strings.hrc:455
+#: strings.hrc:457
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY"
msgid "Color"
msgstr "Kleur"
-#: strings.hrc:456
+#: strings.hrc:458
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS"
msgid "~Size"
msgstr "Grootte"
-#: strings.hrc:457
+#: strings.hrc:459
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE"
msgid "Brochure"
msgstr "Brosjures"
-#: strings.hrc:458
+#: strings.hrc:460
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_SIDES"
msgid "Page sides"
msgstr ""
-#: strings.hrc:459
+#: strings.hrc:461
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE"
msgid "Include"
msgstr "Sluit in"
-#: strings.hrc:460
+#: strings.hrc:462
msgctxt "STR_IMPRESS_PRINT_UI_PAPER_TRAY"
msgid "~Use only paper tray from printer preferences"
msgstr ""
-#: strings.hrc:461
+#: strings.hrc:463
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE"
msgid "Print range"
msgstr "Drukomvang"
-#: strings.hrc:463
+#: strings.hrc:465
msgctxt "STR_SAR_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress has searched to the end of the presentation. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Impress het tot aan die einde van die voorlegging gesoek. Wil u verder soek aan die begin?"
-#: strings.hrc:464
+#: strings.hrc:466
msgctxt "STR_SAR_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress has searched to the beginning of the presentation. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Impress het tot aan die begin van die voorlegging gesoek. Wil u verder soek aan die einde?"
-#: strings.hrc:465
+#: strings.hrc:467
msgctxt "STR_SAR_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the end of the document. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Draw het tot aan die einde van die dokument gesoek. Wil u aan die begin voortgaan?"
-#: strings.hrc:466
+#: strings.hrc:468
msgctxt "STR_SAR_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the beginning of the document. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Draw het tot aan die begin van die dokument gesoek. Wil u verder soek aan die einde?"
-#: strings.hrc:468
+#: strings.hrc:470
#, fuzzy
msgctxt "STR_SD_NONE"
msgid "- None -"
@@ -4731,7 +4741,7 @@ msgstr ""
#: optimpressgeneralpage.ui:622
msgctxt "optimpressgeneralpage|cbCompatibility"
-msgid "Add _spacing between paragraphs and tables (in current document)"
+msgid "Add _spacing between paragraphs and tables"
msgstr ""
#: optimpressgeneralpage.ui:645
@@ -5544,14 +5554,13 @@ msgid "Master Background"
msgstr ""
#: sidebarslidebackground.ui:197
-#, fuzzy
msgctxt "sidebarslidebackground|label4"
-msgid "Orientation: "
-msgstr "Oriëntasie"
+msgid "Orientation:"
+msgstr ""
#: sidebarslidebackground.ui:212
msgctxt "sidebarslidebackground|masterslidebutton"
-msgid "Master Slide"
+msgid "Master View"
msgstr ""
#: sidebarslidebackground.ui:226
@@ -5599,10 +5608,9 @@ msgid "Wide"
msgstr "Versteek"
#: sidebarslidebackground.ui:267
-#, fuzzy
msgctxt "sidebarslidebackground|labelmargin"
-msgid "Margin: "
-msgstr "Kantlyn"
+msgid "Margin:"
+msgstr ""
#: sidebarslidebackground.ui:277
#, fuzzy
diff --git a/source/af/sfx2/messages.po b/source/af/sfx2/messages.po
index 3f633662956..0ff843aeaf9 100644
--- a/source/af/sfx2/messages.po
+++ b/source/af/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -834,28 +834,33 @@ msgctxt "RID_SVXSTR_INCORRECT_PASSWORD"
msgid "Incorrect password"
msgstr "Verkeerde wagwoord"
-#: strings.hrc:173
+#: strings.hrc:172
+msgctxt "RID_SVXSTR_GPG_ENCRYPT_FAILURE"
+msgid "OpenPGP key not trusted, damaged, or encryption failure. Please try again."
+msgstr ""
+
+#: strings.hrc:174
msgctxt "STR_PASSWD_MIN_LEN"
msgid "(Minimum $(MINLEN) characters)"
msgstr ""
-#: strings.hrc:174
+#: strings.hrc:175
msgctxt "STR_PASSWD_MIN_LEN1"
msgid "(Minimum 1 character)"
msgstr ""
-#: strings.hrc:175
+#: strings.hrc:176
msgctxt "STR_PASSWD_EMPTY"
msgid "(The password can be empty)"
msgstr ""
-#: strings.hrc:176
+#: strings.hrc:177
#, fuzzy
msgctxt "STR_MODULENOTINSTALLED"
msgid "The action could not be executed. The %PRODUCTNAME program module needed for this action is currently not installed."
msgstr "Die aksie kon nie uitgevoer word nie. Die %PRODUCTNAME-programmodule wat vir hierdie aksie benodig word, is tans nie geïnstalleer nie."
-#: strings.hrc:178
+#: strings.hrc:179
msgctxt "STR_FILTER_NOT_INSTALLED"
msgid ""
"The selected filter $(FILTER) has not been installed.\n"
@@ -864,7 +869,7 @@ msgstr ""
"Die filter $(FILTER) wat u gekies het, is nie geïnstalleer nie.\n"
"Wil u dit nou installeer?"
-#: strings.hrc:179
+#: strings.hrc:180
msgctxt "STR_FILTER_CONSULT_SERVICE"
msgid ""
"The selected filter $(FILTER) is not included in your edition.\n"
@@ -873,73 +878,73 @@ msgstr ""
"Die filter $(FILTER) wat u gekies het is nie in u weergawe ingesluit nie.\n"
"U kan inligting oor bestellings op ons tuisblad kry."
-#: strings.hrc:181
+#: strings.hrc:182
msgctxt "STR_WELCOME_LINE1"
msgid "Welcome to %PRODUCTNAME."
msgstr ""
-#: strings.hrc:182
+#: strings.hrc:183
msgctxt "STR_WELCOME_LINE2"
msgid "Drop a document here or pick an app from the left side to create one."
msgstr ""
-#: strings.hrc:184
+#: strings.hrc:185
msgctxt "STR_SFX_FILEDLG_ACTUALVERSION"
msgid "Current version"
msgstr "Huidige weergawe"
-#: strings.hrc:185
+#: strings.hrc:186
msgctxt "STR_SFX_EXPLORERFILE_EXPORT"
msgid "Export"
msgstr "Uitvoer"
-#: strings.hrc:186
+#: strings.hrc:187
msgctxt "STR_SFX_EXPLORERFILE_INSERT"
msgid "Insert"
msgstr "Voeg in"
-#: strings.hrc:187
+#: strings.hrc:188
msgctxt "STR_SFX_EXPLORERFILE_BUTTONINSERT"
msgid "~Insert"
msgstr "~Voeg in"
-#: strings.hrc:188
+#: strings.hrc:189
msgctxt "STR_SFX_IMPORT_ALL"
msgid "<All formats>"
msgstr "<Alle formate>"
-#: strings.hrc:189
+#: strings.hrc:190
msgctxt "STR_PB_SAVEACOPY"
msgid "Save a Copy"
msgstr ""
-#: strings.hrc:190
+#: strings.hrc:191
#, fuzzy
msgctxt "STR_PB_COMPAREDOC"
msgid "Compare to"
msgstr "Vergelyk #"
-#: strings.hrc:191
+#: strings.hrc:192
msgctxt "STR_PB_MERGEDOC"
msgid "Merge with"
msgstr ""
-#: strings.hrc:193
+#: strings.hrc:194
msgctxt "STR_SFX_NEWOFFICEDOC"
msgid "%PRODUCTNAME document"
msgstr "%PRODUCTNAME-dokument"
-#: strings.hrc:194
+#: strings.hrc:195
msgctxt "SFX_ST_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
-#: strings.hrc:195
+#: strings.hrc:196
msgctxt "STR_SFX_REMOVE_PROPERTY"
msgid "Remove Property"
msgstr "Verwyder eienskap"
-#: strings.hrc:196
+#: strings.hrc:197
#, fuzzy
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
@@ -949,28 +954,28 @@ msgstr ""
"Die waarde stem nie met die gespesifiseerde tipe ooreen nie.\n"
"Die waarde sal as teks gestoor word."
-#: strings.hrc:198
+#: strings.hrc:199
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Die lêer bestaan reeds. Oorheenskryf?"
-#: strings.hrc:200
+#: strings.hrc:201
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Stel terug"
-#: strings.hrc:201
+#: strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Hierdie naam is reeds in gebruik."
-#: strings.hrc:202
+#: strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Hierdie styl bestaan nie."
-#: strings.hrc:203
+#: strings.hrc:204
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -980,7 +985,7 @@ msgstr ""
"Hierdie styl kan nie as basisstyl gebruik word nie\n"
"omdat dit tot 'n rekursiewe verwysing sou lei."
-#: strings.hrc:204
+#: strings.hrc:205
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -989,7 +994,7 @@ msgstr ""
"Naam bestaan reeds as 'n verstek styl.\n"
"Kies asseblief 'n ander naam."
-#: strings.hrc:205
+#: strings.hrc:206
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -997,99 +1002,99 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: strings.hrc:206
+#: strings.hrc:207
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: strings.hrc:207
+#: strings.hrc:208
#, fuzzy
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Navigator"
-#: strings.hrc:208
+#: strings.hrc:209
msgctxt "STR_SID_SIDEBAR"
msgid "Sidebar"
msgstr ""
-#: strings.hrc:209
+#: strings.hrc:210
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Foutiewe wagwoordbevestiging"
-#: strings.hrc:210
+#: strings.hrc:211
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Stuur"
-#: strings.hrc:211
+#: strings.hrc:212
#, fuzzy
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Font"
-#: strings.hrc:212
+#: strings.hrc:213
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show Previews"
msgstr ""
-#: strings.hrc:214
+#: strings.hrc:215
#, fuzzy
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Voeg weergaweopmerking in"
-#: strings.hrc:215
+#: strings.hrc:216
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: strings.hrc:217
+#: strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Style"
-#: strings.hrc:218
+#: strings.hrc:219
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Hiërargies"
-#: strings.hrc:219
+#: strings.hrc:220
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Invulformaat-modus"
-#: strings.hrc:220
+#: strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Nuwe styl uit seleksie"
-#: strings.hrc:221
+#: strings.hrc:222
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "~Werk style by"
-#: strings.hrc:223
+#: strings.hrc:224
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Wil u werklik die opname kanselleer? Alle stappe wat tot op hierdie stadium opgeneem is, sal verlore gaan."
-#: strings.hrc:224
+#: strings.hrc:225
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Kanselleer opname"
-#: strings.hrc:226
+#: strings.hrc:227
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Die sjablone word vir eerste gebruik geïnisialiseer."
-#: strings.hrc:228
+#: strings.hrc:229
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1098,7 +1103,7 @@ msgstr ""
"Geen verstek drukker gevind nie.\n"
"Kies asseblief 'n drukker en probeer weer."
-#: strings.hrc:229
+#: strings.hrc:230
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1107,17 +1112,17 @@ msgstr ""
"Kon nie drukker aansit nie.\n"
"Gaan asseblief u drukkeropstelling na."
-#: strings.hrc:230
+#: strings.hrc:231
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Drukker besig"
-#: strings.hrc:231
+#: strings.hrc:232
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (leesalleen)"
-#: strings.hrc:232
+#: strings.hrc:233
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1128,7 +1133,7 @@ msgstr ""
"Moet die nuwe instellings \n"
"in die aktiewe dokument gestoor word?"
-#: strings.hrc:233
+#: strings.hrc:234
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1139,7 +1144,7 @@ msgstr ""
"Moet die nuwe instellings in die \n"
"aktiewe dokument gestoor word?"
-#: strings.hrc:234
+#: strings.hrc:235
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1150,7 +1155,7 @@ msgstr ""
"Moet die nuwe instellings \n"
"in die aktiewe dokument gestoor word?"
-#: strings.hrc:235
+#: strings.hrc:236
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1160,7 +1165,7 @@ msgstr ""
"Die dokument kan nie toegemaak word nie omdat 'n\n"
" druktaak uitgevoer word."
-#: strings.hrc:236
+#: strings.hrc:237
#, fuzzy
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
@@ -1170,213 +1175,314 @@ msgstr ""
"'n Fout het tydens die versending van die boodskap voorgekom. Moontlike foute kan 'n ontbrekende gebruikersrekening wees of 'n foutiewe instellings.\n"
"Gaan asseblief die %PRODUCTNAME-instellings of jou e-posprograminstellings na."
-#: strings.hrc:237
+#: strings.hrc:238
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Hierdie dokument kan nie geredigeer word nie, moontlik omdat die toegangsregte ontbreek. Wil u 'n kopie van die dokument redigeer?"
-#: strings.hrc:238
+#: strings.hrc:239
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (herstelde dokument)"
-#: strings.hrc:239
+#: strings.hrc:240
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: strings.hrc:240
+#: strings.hrc:241
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: strings.hrc:241
+#: strings.hrc:242
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: strings.hrc:242
+#: strings.hrc:243
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: strings.hrc:243
+#: strings.hrc:244
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: strings.hrc:244
+#: strings.hrc:245
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: strings.hrc:245
+#: strings.hrc:246
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Intellectual Property:"
msgstr ""
-#: strings.hrc:246
+#: strings.hrc:247
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: strings.hrc:247
+#: strings.hrc:248
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: strings.hrc:248
+#: strings.hrc:249
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: strings.hrc:249
+#: strings.hrc:250
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Redigeer dokument"
-#: strings.hrc:250
+#: strings.hrc:251
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Liasseer dokument"
-#: strings.hrc:251
+#: strings.hrc:252
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: strings.hrc:252
+#: strings.hrc:253
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: strings.hrc:253
+#: strings.hrc:254
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: strings.hrc:254
+#: strings.hrc:255
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: strings.hrc:255
+#: strings.hrc:256
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: strings.hrc:256
+#: strings.hrc:257
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: strings.hrc:258
+#: strings.hrc:259
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: strings.hrc:259
+#: strings.hrc:260
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr ""
-#: strings.hrc:260
+#: strings.hrc:261
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr ""
-#: strings.hrc:262
+#: strings.hrc:263
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Meer ~opsies"
-#: strings.hrc:263
+#: strings.hrc:264
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: strings.hrc:264
+#: strings.hrc:265
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: strings.hrc:265
+#: strings.hrc:266
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr ""
-#: strings.hrc:266
+#: strings.hrc:267
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: strings.hrc:267
+#: strings.hrc:268
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
-#: strings.hrc:269
+#. Translators: default Impress template names
+#: strings.hrc:271
msgctxt "STR_TEMPLATE_NAME1"
-msgid "Abstract Green"
+msgid "Alizarin"
msgstr ""
-#: strings.hrc:270
+#: strings.hrc:272
msgctxt "STR_TEMPLATE_NAME2"
-msgid "Abstract Red"
+msgid "Beehive"
msgstr ""
-#: strings.hrc:271
+#: strings.hrc:273
msgctxt "STR_TEMPLATE_NAME3"
-msgid "Abstract Yellow"
+msgid "Blue Curve"
msgstr ""
-#: strings.hrc:272
+#: strings.hrc:274
msgctxt "STR_TEMPLATE_NAME4"
-msgid "Bright Blue"
-msgstr "Helderblou"
+msgid "Blueprint Plans"
+msgstr ""
-#: strings.hrc:273
+#: strings.hrc:275
msgctxt "STR_TEMPLATE_NAME5"
-msgid "DNA"
+msgid "Bright Blue"
msgstr ""
-#: strings.hrc:274
+#: strings.hrc:276
msgctxt "STR_TEMPLATE_NAME6"
-msgid "Inspiration"
+msgid "Classy Red"
msgstr ""
-#: strings.hrc:275
+#: strings.hrc:277
msgctxt "STR_TEMPLATE_NAME7"
-msgid "Lush Green"
+msgid "DNA"
msgstr ""
-#: strings.hrc:276
+#: strings.hrc:278
msgctxt "STR_TEMPLATE_NAME8"
-msgid "Metropolis"
+msgid "Focus"
msgstr ""
-#: strings.hrc:277
-#, fuzzy
+#: strings.hrc:279
msgctxt "STR_TEMPLATE_NAME9"
-msgid "Sunset"
-msgstr "Substel"
+msgid "Forestbird"
+msgstr ""
-#: strings.hrc:278
+#: strings.hrc:280
msgctxt "STR_TEMPLATE_NAME10"
+msgid "Impress"
+msgstr ""
+
+#: strings.hrc:281
+msgctxt "STR_TEMPLATE_NAME11"
+msgid "Inspiration"
+msgstr ""
+
+#: strings.hrc:282
+msgctxt "STR_TEMPLATE_NAME12"
+msgid "Lights"
+msgstr ""
+
+#: strings.hrc:283
+msgctxt "STR_TEMPLATE_NAME13"
+msgid "Lush Green"
+msgstr ""
+
+#: strings.hrc:284
+msgctxt "STR_TEMPLATE_NAME14"
+msgid "Metropolis"
+msgstr ""
+
+#: strings.hrc:285
+msgctxt "STR_TEMPLATE_NAME15"
+msgid "Midnightblue"
+msgstr ""
+
+#: strings.hrc:286
+msgctxt "STR_TEMPLATE_NAME16"
+msgid "Nature Illustration"
+msgstr ""
+
+#: strings.hrc:287
+msgctxt "STR_TEMPLATE_NAME17"
+msgid "Pencil"
+msgstr ""
+
+#: strings.hrc:288
+msgctxt "STR_TEMPLATE_NAME18"
+msgid "Piano"
+msgstr ""
+
+#: strings.hrc:289
+msgctxt "STR_TEMPLATE_NAME19"
+msgid "Portfolio"
+msgstr ""
+
+#: strings.hrc:290
+msgctxt "STR_TEMPLATE_NAME20"
+msgid "Progress"
+msgstr ""
+
+#: strings.hrc:291
+msgctxt "STR_TEMPLATE_NAME21"
+msgid "Sunset"
+msgstr ""
+
+#: strings.hrc:292
+msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: strings.hrc:280
+#: strings.hrc:293
+msgctxt "STR_TEMPLATE_NAME23"
+msgid "Vivid"
+msgstr ""
+
+#. Translators: default Writer template names
+#: strings.hrc:295
+msgctxt "STR_TEMPLATE_NAME24"
+msgid "CV"
+msgstr ""
+
+#: strings.hrc:296
+msgctxt "STR_TEMPLATE_NAME25"
+msgid "Resume"
+msgstr ""
+
+#: strings.hrc:297
+msgctxt "STR_TEMPLATE_NAME26"
+msgid "Default"
+msgstr ""
+
+#: strings.hrc:298
+msgctxt "STR_TEMPLATE_NAME27"
+msgid "Modern"
+msgstr ""
+
+#: strings.hrc:299
+msgctxt "STR_TEMPLATE_NAME28"
+msgid "Modern business letter sans-serif"
+msgstr ""
+
+#: strings.hrc:300
+msgctxt "STR_TEMPLATE_NAME29"
+msgid "Modern business letter serif"
+msgstr ""
+
+#: strings.hrc:301
+msgctxt "STR_TEMPLATE_NAME30"
+msgid "Businesscard with logo"
+msgstr ""
+
+#: strings.hrc:303
#, fuzzy
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Verwyder"
-#: strings.hrc:281
+#: strings.hrc:304
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
diff --git a/source/af/sw/messages.po b/source/af/sw/messages.po
index 69a82ce00cf..72a397b8547 100644
--- a/source/af/sw/messages.po
+++ b/source/af/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-20 08:17+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -85,10 +85,9 @@ msgid "Conditional Styles"
msgstr "Voorwaardelike style"
#: app.hrc:47
-#, fuzzy
msgctxt "RID_CHARACTERSTYLEFAMILY"
-msgid "All"
-msgstr "Almal"
+msgid "All Styles"
+msgstr ""
#: app.hrc:48
msgctxt "RID_CHARACTERSTYLEFAMILY"
@@ -108,10 +107,9 @@ msgid "Custom Styles"
msgstr "Doelgemaakte style"
#: app.hrc:56
-#, fuzzy
msgctxt "RID_FRAMESTYLEFAMILY"
-msgid "All"
-msgstr "Almal"
+msgid "All Styles"
+msgstr ""
#: app.hrc:57
msgctxt "RID_FRAMESTYLEFAMILY"
@@ -131,10 +129,9 @@ msgid "Custom Styles"
msgstr "Doelgemaakte style"
#: app.hrc:65
-#, fuzzy
msgctxt "RID_PAGESTYLEFAMILY"
-msgid "All"
-msgstr "Almal"
+msgid "All Styles"
+msgstr ""
#: app.hrc:66
msgctxt "RID_PAGESTYLEFAMILY"
@@ -154,10 +151,9 @@ msgid "Custom Styles"
msgstr "Doelgemaakte style"
#: app.hrc:74
-#, fuzzy
msgctxt "RID_LISTSTYLEFAMILY"
-msgid "All"
-msgstr "Almal"
+msgid "All Styles"
+msgstr ""
#: app.hrc:75
msgctxt "RID_LISTSTYLEFAMILY"
@@ -177,10 +173,9 @@ msgid "Custom Styles"
msgstr "Doelgemaakte style"
#: app.hrc:83
-#, fuzzy
msgctxt "RID_TABLESTYLEFAMILY"
-msgid "All"
-msgstr "Almal"
+msgid "All Styles"
+msgstr ""
#: app.hrc:84
msgctxt "RID_TABLESTYLEFAMILY"
@@ -1371,28 +1366,28 @@ msgstr "Landskap"
#. Numbering rules
#: strings.hrc:199
msgctxt "STR_POOLNUMRULE_NUM1"
-msgid "Numbering 1"
-msgstr "Nommering 1"
+msgid "Numbering 123"
+msgstr ""
#: strings.hrc:200
msgctxt "STR_POOLNUMRULE_NUM2"
-msgid "Numbering 2"
-msgstr "Nommering 2"
+msgid "Numbering ABC"
+msgstr ""
#: strings.hrc:201
msgctxt "STR_POOLNUMRULE_NUM3"
-msgid "Numbering 3"
-msgstr "Nommering 3"
+msgid "Numbering abc"
+msgstr ""
#: strings.hrc:202
msgctxt "STR_POOLNUMRULE_NUM4"
-msgid "Numbering 4"
-msgstr "Nommering 4"
+msgid "Numbering IVX"
+msgstr ""
#: strings.hrc:203
msgctxt "STR_POOLNUMRULE_NUM5"
-msgid "Numbering 5"
-msgstr "Nommering 5"
+msgid "Numbering ivx"
+msgstr ""
#: strings.hrc:204
msgctxt "STR_POOLNUMRULE_BUL1"
@@ -14804,12 +14799,12 @@ msgstr ""
#: optcompatpage.ui:57
msgctxt "optcompatpage|format"
-msgid "Add spacing between paragraphs and tables (in current document)"
+msgid "Add spacing between paragraphs and tables"
msgstr ""
#: optcompatpage.ui:58
msgctxt "optcompatpage|format"
-msgid "Add paragraph and table spacing at tops of pages (in current document)"
+msgid "Add paragraph and table spacing at tops of pages"
msgstr ""
#: optcompatpage.ui:59
@@ -14864,7 +14859,7 @@ msgstr ""
#: optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Tolerate white lines of PDF page backgrounds for compatibility with old documents (in current document)"
+msgid "Tolerate white lines of PDF page backgrounds for compatibility with old documents"
msgstr ""
#: optcompatpage.ui:70
@@ -14879,7 +14874,7 @@ msgstr ""
#: optcompatpage.ui:104
msgctxt "optcompatpage|label11"
-msgid "Compatibility options for %DOCNAME"
+msgid "Compatibility options for '%DOCNAME'"
msgstr ""
#: optfonttabpage.ui:103
@@ -18376,21 +18371,11 @@ msgctxt "textgridpage|labelFT_CHARSPERLINE"
msgid "Characters per line:"
msgstr ""
-#: textgridpage.ui:223
-msgctxt "textgridpage|labelFT_CHARRANGE"
-msgid "(1-45)"
-msgstr ""
-
#: textgridpage.ui:236
msgctxt "textgridpage|labelFT_LINESPERPAGE"
msgid "Lines per page:"
msgstr ""
-#: textgridpage.ui:265
-msgctxt "textgridpage|labelFT_LINERANGE"
-msgid "(1-48)"
-msgstr ""
-
#: textgridpage.ui:303
msgctxt "textgridpage|labelFT_CHARWIDTH"
msgid "Character _width:"
diff --git a/source/am/basctl/messages.po b/source/am/basctl/messages.po
index a4ac84df9b6..2e4bd1efe4b 100644
--- a/source/am/basctl/messages.po
+++ b/source/am/basctl/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: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2017-12-17 21:58+0000\n"
+"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: am\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1513547919.000000\n"
#: strings.hrc:25
msgctxt "RID_STR_FILTER_ALLFILES"
@@ -46,7 +49,7 @@ msgstr "የ መጻሕፍት ቤት ስም እስከ 30 ባህሪዎች ሊኖረ
#: strings.hrc:31
msgctxt "RID_STR_ERRORCHOOSEMACRO"
msgid "Macros from other documents are not accessible."
-msgstr "Macros ከ ሌሎች ሰነዶች ማግኘት አልተቻለም"
+msgstr "ማክሮስ ከ ሌሎች ሰነዶች ማግኘት አልተቻለም"
#: strings.hrc:32
msgctxt "RID_STR_LIBISREADONLY"
@@ -283,7 +286,7 @@ msgstr "ጥሪዎች: "
#: strings.hrc:78
msgctxt "RID_STR_USERMACROS"
msgid "My Macros"
-msgstr "የ እኔ macros"
+msgstr "የ እኔ ማክሮስ"
#: strings.hrc:79
msgctxt "RID_STR_USERDIALOGS"
@@ -293,7 +296,7 @@ msgstr "የ እኔ ንግግሮች"
#: strings.hrc:80
msgctxt "RID_STR_USERMACROSDIALOGS"
msgid "My Macros & Dialogs"
-msgstr "የ እኔ Macros & ንግግሮች"
+msgstr "የ እኔ ማክሮስ & ንግግሮች"
#: strings.hrc:81
msgctxt "RID_STR_SHAREMACROS"
@@ -308,7 +311,7 @@ msgstr "%PRODUCTNAME ንግግሮች"
#: strings.hrc:83
msgctxt "RID_STR_SHAREMACROSDIALOGS"
msgid "%PRODUCTNAME Macros & Dialogs"
-msgstr "%PRODUCTNAME Macros & ንግግሮች"
+msgstr "%PRODUCTNAME ማክሮስ & ንግግሮች"
#: strings.hrc:84
msgctxt "RID_STR_REMOVEWATCHTIP"
@@ -508,7 +511,7 @@ msgstr "ተጨማሪዎች"
#: basicmacrodialog.ui:9
msgctxt "basicmacrodialog|BasicMacroDialog"
msgid "%PRODUCTNAME Basic Macros"
-msgstr "%PRODUCTNAME መሰረታዊ Macros"
+msgstr "%PRODUCTNAME መሰረታዊ ማክሮስ"
#: basicmacrodialog.ui:25
msgctxt "basicmacrodialog|run"
@@ -518,7 +521,7 @@ msgstr "ማስኬጃ"
#: basicmacrodialog.ui:124
msgctxt "basicmacrodialog|existingmacrosft"
msgid "Existing Macros In:"
-msgstr "የ ነበረው Macros በ:"
+msgstr "የ ነበረው ማክሮስ በ:"
#: basicmacrodialog.ui:178
msgctxt "basicmacrodialog|macrofromft"
@@ -528,7 +531,7 @@ msgstr "Macro ከ"
#: basicmacrodialog.ui:194
msgctxt "basicmacrodialog|macrotoft"
msgid "Save Macro In"
-msgstr "Macros ማስቀመጫ በ"
+msgstr "ማክሮስ ማስቀመጫ በ"
#: basicmacrodialog.ui:243
msgctxt "basicmacrodialog|libraryft1"
diff --git a/source/am/cui/messages.po b/source/am/cui/messages.po
index 25b2e4d4e36..d11414d70ad 100644
--- a/source/am/cui/messages.po
+++ b/source/am/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: 2017-12-06 15:59+0100\n"
-"PO-Revision-Date: 2017-12-08 01:47+0000\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
+"PO-Revision-Date: 2017-12-17 22:11+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1512697678.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1513548691.000000\n"
#: personalization.hrc:31
msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
@@ -365,12 +365,12 @@ msgstr "ማክሮስ"
#: strings.hrc:93
msgctxt "RID_SVXSTR_MYMACROS"
msgid "My Macros"
-msgstr "የ እኔ Macros"
+msgstr "የ እኔ ማክሮስ"
#: strings.hrc:94
msgctxt "RID_SVXSTR_PRODMACROS"
msgid "%PRODUCTNAME Macros"
-msgstr "%PRODUCTNAME Macros"
+msgstr "%PRODUCTNAME ማክሮስ"
#: strings.hrc:95
msgctxt "RID_SVXSTR_NOMACRODESC"
@@ -466,7 +466,7 @@ msgstr "Hanja"
#: strings.hrc:114
msgctxt "RID_SVXSTR_BASICMACROS"
msgid "BASIC Macros"
-msgstr "መሰረታዊ Macros"
+msgstr "መሰረታዊ ማክሮስ"
#: strings.hrc:115
msgctxt "RID_SVXSTR_GROUP_STYLES"
@@ -4859,7 +4859,7 @@ msgstr "Macro መመደቢያ"
#: eventassignpage.ui:47
msgctxt "eventassignpage|existingmacrosft"
msgid "Existing Macros"
-msgstr "የ ነበረው Macros"
+msgstr "የ ነበረው ማክሮስ"
#: eventassignpage.ui:97
msgctxt "eventassignpage|macrotoft"
@@ -5944,7 +5944,7 @@ msgstr ""
#: insertfloatingframe.ui:13
msgctxt "insertfloatingframe|InsertFloatingFrameDialog"
msgid "Floating Frame Properties"
-msgstr "የማንሳፈፊያ ጠርዝ ባህሪዎች"
+msgstr "የ ማንሳፈፊያ ጠርዝ ባህሪዎች"
#: insertfloatingframe.ui:65
msgctxt "insertfloatingframe|label6"
@@ -7720,72 +7720,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "እርዳታ"
-#: optgeneralpage.ui:77
+#: optgeneralpage.ui:76
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_መጠቀሚያ %PRODUCTNAME ንግግሮች"
-#: optgeneralpage.ui:111
+#: optgeneralpage.ui:110
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "መክፈቻ/ማስቀመጫ ንግግሮች"
-#: optgeneralpage.ui:137
+#: optgeneralpage.ui:136
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "መጠቀሚያ %PRODUCTNAME _ንግግሮች"
-#: optgeneralpage.ui:152
+#: optgeneralpage.ui:151
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "የ ማተሚያ ንግግሮች"
-#: optgeneralpage.ui:178
+#: optgeneralpage.ui:177
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_ማተሚያ ማሰናጃ ለ \"ሰነድ ማሻሻያ\" ሁኔታ"
-#: optgeneralpage.ui:193
+#: optgeneralpage.ui:192
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "የሰነድ ሁኔታዎች"
-#: optgeneralpage.ui:226
+#: optgeneralpage.ui:225
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_መተርጓሚያ እንደ በ አመቶች መካከል "
-#: optgeneralpage.ui:252
+#: optgeneralpage.ui:251
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "እና "
-#: optgeneralpage.ui:267
+#: optgeneralpage.ui:266
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "አመት (ሁለት አሀዝ)"
-#: optgeneralpage.ui:293
+#: optgeneralpage.ui:292
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "የ አጠቃቀም ዳታ መስብሰቢያ እና ለ ሰነድ አዘጋጆቹ መላኪያ"
-#: optgeneralpage.ui:308
+#: optgeneralpage.ui:307
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "እንድናሻሻል ይርዱን %PRODUCTNAME"
-#: optgeneralpage.ui:339
+#: optgeneralpage.ui:338
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "መጫኛ %PRODUCTNAME ስርአቱ በሚጀምር-ጊዜ"
-#: optgeneralpage.ui:353
+#: optgeneralpage.ui:352
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "በ ስርአቱ ትሪ ላይ በፍጥነት ማስጀመሪያ ማስቻያ"
-#: optgeneralpage.ui:373
+#: optgeneralpage.ui:372
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME በፍጥነት ማስጀመሪያ"
@@ -8519,7 +8519,7 @@ msgstr "የምስክር ወረቀት መንገድ"
#: optsecuritypage.ui:186
msgctxt "optsecuritypage|label5"
msgid "Adjust the security level for executing macros and specify trusted macro developers."
-msgstr "የ ደህንነት ደረጃዎችን ማስተካከያ ለ macros ማስኬጃ እና መወሰኛ የሚታመኑ macro developers."
+msgstr "የ ደህንነት ደረጃዎችን ማስተካከያ ለ ማክሮስ ማስኬጃ እና መወሰኛ የሚታመኑ የ ማክሮስ አበልፃጊዎች"
#: optsecuritypage.ui:199
msgctxt "optsecuritypage|macro"
@@ -8587,215 +8587,220 @@ msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr "የ ደህንነት ምርጫዎች እና ማስጠንቀቂያዎች"
-#: optuserpage.ui:34
+#: optuserpage.ui:12
+msgctxt "optuserpage|liststore1"
+msgid "No key"
+msgstr ""
+
+#: optuserpage.ui:45
msgctxt "optuserpage|companyft"
msgid "_Company:"
msgstr "_ድርጅት:"
-#: optuserpage.ui:48
+#: optuserpage.ui:59
msgctxt "optuserpage|nameft"
msgid "First/last _name/initials:"
msgstr "ስም/የ አባት _ስም/መነሻዎች:"
-#: optuserpage.ui:62
+#: optuserpage.ui:73
msgctxt "optuserpage|streetft"
msgid "_Street:"
msgstr "_መንገድ:"
-#: optuserpage.ui:76
+#: optuserpage.ui:87
msgctxt "optuserpage|cityft"
msgid "City/state/_zip:"
msgstr "ከተማ/አገር/_ፖሳቁ:"
-#: optuserpage.ui:90
+#: optuserpage.ui:101
msgctxt "optuserpage|countryft"
msgid "Country/re_gion:"
msgstr "አገር/አካ_ባቢ:"
-#: optuserpage.ui:104
+#: optuserpage.ui:115
msgctxt "optuserpage|titleft"
msgid "_Title/position:"
msgstr "_አርእስት / ቦታ:"
-#: optuserpage.ui:118
+#: optuserpage.ui:129
msgctxt "optuserpage|phoneft"
msgid "Telephone (home/_work):"
msgstr "ስልክ የ (ቤት/_ስራ):"
-#: optuserpage.ui:123
+#: optuserpage.ui:134
msgctxt "phoneft-atkobject"
msgid "Home telephone number"
msgstr "የ ቤት ስልክ ቁጥር"
-#: optuserpage.ui:137
+#: optuserpage.ui:148
msgctxt "optuserpage|faxft"
msgid "Fa_x/e-mail:"
msgstr "ፋክ_ስ/ኢ-ሜይል:"
-#: optuserpage.ui:160
+#: optuserpage.ui:171
msgctxt "optuserpage|firstname-atkobject"
msgid "First name"
msgstr "የ መጀመሪያ ስም"
-#: optuserpage.ui:178
+#: optuserpage.ui:189
msgctxt "lastname-atkobject"
msgid "Last name"
msgstr "የ አባት ስም"
-#: optuserpage.ui:196
+#: optuserpage.ui:207
msgctxt "shortname-atkobject"
msgid "Initials"
msgstr "መነሻዎች"
-#: optuserpage.ui:225
+#: optuserpage.ui:236
msgctxt "city-atkobject"
msgid "City"
msgstr "ከተማ"
-#: optuserpage.ui:243
+#: optuserpage.ui:254
msgctxt "state-atkobject"
msgid "State"
msgstr "አገር"
-#: optuserpage.ui:261
+#: optuserpage.ui:272
msgctxt "zip-atkobject"
msgid "Zip code"
msgstr "ፖሳቁ"
-#: optuserpage.ui:291
+#: optuserpage.ui:302
msgctxt "title-atkobject"
msgid "Title"
msgstr "አርእስት"
-#: optuserpage.ui:309
+#: optuserpage.ui:320
msgctxt "position-atkobject"
msgid "Position"
msgstr "ቦታ"
-#: optuserpage.ui:338
+#: optuserpage.ui:349
msgctxt "home-atkobject"
msgid "Home telephone number"
msgstr "የ ቤት ስልክ ቁጥር"
-#: optuserpage.ui:356
+#: optuserpage.ui:367
msgctxt "work-atkobject"
msgid "Work telephone number"
msgstr "የ ስራ ስልክ ቁጥር"
-#: optuserpage.ui:386
+#: optuserpage.ui:397
msgctxt "fax-atkobject"
msgid "FAX number"
msgstr "የ ፋክስ ቁጥር"
-#: optuserpage.ui:404
+#: optuserpage.ui:415
msgctxt "email-atkobject"
msgid "email address"
msgstr "የ ኢሜይል አድራሻ"
-#: optuserpage.ui:421
+#: optuserpage.ui:432
msgctxt "optuserpage|usefordocprop"
msgid "Use data for document properties"
msgstr "ለሰነድ ባህሪዎች ዳታ መጠቀሚያ"
-#: optuserpage.ui:438
+#: optuserpage.ui:449
msgctxt "optuserpage|rusnameft"
msgid "Last name/first _name/father’s name/initials:"
msgstr "የ አባት ስም/ስ_ም/የ አባት ስም/መነሻዎች:"
-#: optuserpage.ui:461
+#: optuserpage.ui:472
msgctxt "ruslastname-atkobject"
msgid "Last name"
msgstr "የ አባት ስም"
-#: optuserpage.ui:479
+#: optuserpage.ui:490
msgctxt "rusfathersname-atkobject"
msgid "Father's name"
msgstr "የ አባት ስም"
-#: optuserpage.ui:497
+#: optuserpage.ui:508
msgctxt "russhortname-atkobject"
msgid "Initials"
msgstr "መነሻዎች"
-#: optuserpage.ui:515
+#: optuserpage.ui:526
msgctxt "rusfirstname-atkobject"
msgid "First name"
msgstr "ስም"
-#: optuserpage.ui:535
+#: optuserpage.ui:546
msgctxt "optuserpage|eastnameft"
msgid "Last/first _name/initials:"
msgstr "የ አባት ስም/ስ_ም/መነሻዎች:"
-#: optuserpage.ui:558
+#: optuserpage.ui:569
msgctxt "eastlastname-atkobject"
msgid "Last name"
msgstr "የ አባት ስም"
-#: optuserpage.ui:576
+#: optuserpage.ui:587
msgctxt "eastfirstname-atkobject"
msgid "First name"
msgstr "ስም"
-#: optuserpage.ui:594
+#: optuserpage.ui:605
msgctxt "eastshortname-atkobject"
msgid "Initials"
msgstr "መነሻዎች"
-#: optuserpage.ui:614
+#: optuserpage.ui:625
msgctxt "optuserpage|russtreetft"
msgid "_Street/apartment number:"
msgstr "_መንገድ/የ ቤት ቁጥር:"
-#: optuserpage.ui:637
+#: optuserpage.ui:648
msgctxt "russtreet-atkobject"
msgid "Street"
msgstr "መንገድ"
-#: optuserpage.ui:655
+#: optuserpage.ui:666
msgctxt "ruslastname-atkobject"
msgid "Apartment number"
msgstr "የ ቤት ቁጥር"
-#: optuserpage.ui:675
+#: optuserpage.ui:686
msgctxt "optuserpage|icityft"
msgid "_Zip/city:"
msgstr "_ፖሳቁ/ከተማ:"
-#: optuserpage.ui:698
+#: optuserpage.ui:709
msgctxt "icity-atkobject"
msgid "City"
msgstr "ከተማ"
-#: optuserpage.ui:716
+#: optuserpage.ui:727
msgctxt "izip-atkobject"
msgid "Zip code"
msgstr "ፖሳቁ"
-#: optuserpage.ui:814
+#: optuserpage.ui:825
msgctxt "optuserpage|label1"
msgid "Address"
msgstr "አድራሻ"
-#: optuserpage.ui:847
+#: optuserpage.ui:861
msgctxt "optuserpage|signingkeylabel"
msgid "OpenPGP signing key:"
msgstr "OpenPGP መፈረሚያ ቁልፍ:"
-#: optuserpage.ui:860
+#: optuserpage.ui:875
msgctxt "optuserpage|encryptionkeylabel"
msgid "OpenPGP encryption key:"
msgstr "OpenPGP መመስጠሪያ ቁልፍ:"
-#: optuserpage.ui:889
+#: optuserpage.ui:908
msgctxt "optuserpage|encrypttoself"
msgid "When encrypting documents, always encrypt to self"
msgstr "ሰነድ በሚመሰጥሩ ጊዜ: ሁል ጊዜ ወደ ራሱ ይመስጥሩ"
-#: optuserpage.ui:909
-msgctxt "optuserpage|label2"
+#: optuserpage.ui:930
+msgctxt "optuserpage|cryptographylabel"
msgid "Cryptography"
-msgstr "ኮድ መስጣሪ/ፈቺ"
+msgstr ""
#: optviewpage.ui:47
msgctxt "optviewpage|grid3|tooltip_text"
@@ -9907,7 +9912,7 @@ msgstr "ማስማሚያ"
#: posterdialog.ui:16
msgctxt "posterdialog|PosterDialog"
msgid "Posterize"
-msgstr "የፖስተር መጠን"
+msgstr "ቀለም መቀነሻ"
#: posterdialog.ui:136
msgctxt "posterdialog|label2"
diff --git a/source/am/dbaccess/messages.po b/source/am/dbaccess/messages.po
index bf983076b37..41effedc65e 100644
--- a/source/am/dbaccess/messages.po
+++ b/source/am/dbaccess/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: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-10-22 19:16+0000\n"
+"PO-Revision-Date: 2017-12-17 22:04+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1508699761.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1513548273.000000\n"
#: query.hrc:26
msgctxt "RSC_QUERY_OBJECT_TYPE"
@@ -980,7 +980,7 @@ msgstr "የፎ~ልደሩ ስም"
#: strings.hrc:220
msgctxt "STR_SUB_DOCS_WITH_SCRIPTS"
msgid "The document contains forms or reports with embedded macros."
-msgstr "ሰነዱ በውስጡ ፎርሞች እና መግለጫዎች እንዲሁም embedded macros ይዟል"
+msgstr "ሰነዱ በ ውስጡ ፎርሞች እና መግለጫዎች እንዲሁም የ ተጣበቁ ማክሮስ ይዟል"
#: 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 ""
-"Macros ራሱን embedded ማድረግ አለበት ወደ ዳታቤዝ ሰነድ \n"
+"ማክሮስ ራሱን ማክሮስ አለበት ወደ ዳታቤዝ ሰነድ ውስጥ\n"
"\n"
-"ሰነዶቹን እንደ በፊቱ መጠቀም ይችላሉ ነገር ግን የ እርስዎን macros እንዲያመጡ ይመከራሉ ከዝርዝር 'እቃዎች / Macros ማዘዋወሪያ...' ይህን ለማድረግ ይረዳዎታል \n"
+"ሰነዶቹን እንደ በፊቱ መጠቀም ይችላሉ ነገር ግን የ እርስዎን ማክሮስ እንዲያመጡ ይመከራሉ ከ ዝርዝር 'እቃዎች / ማክሮስ ማዘዋወሪያ...' ይህን ለማድረግ ይረዳዎታል \n"
"\n"
-"ያስታውሱ macros embed ማድረግ አይችሉም ወደ ዳታቤዝ ሰነዶች ፡ የ macros ማዘዋወሩ ሂደት እስከሚካሄድ ድረስ "
+"ያስታውሱ ማክሮስ ማክሮስ አይችሉም ወደ ዳታቤዝ ሰነዶች ውስጥ: የ ማክሮስ ማዘዋወሩ ሂደት እስከሚካሄድ ድረስ "
#: strings.hrc:226
msgctxt "RID_STR_EMBEDDED_DATABASE"
@@ -3382,11 +3382,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 ""
-"ይህ አዋቂ ይመራዎታል እንዴት አድርገው እንደሚያዘዋውሩ macros.\n"
+"ይህ አዋቂ ይመራዎታል እንዴት አድርገው እንደሚያዘዋውሩ ማክሮስ\n"
"\n"
-"ከጨረሱ በኋላ: ሁሉም macros ቀደም ሲል embedded የሆኑ ወደ ፎርሞች እና መግለጫዎች ወደ አሁኑ ዳታቤዝ ሰነዶች ወደ ራሱ ወደ ሰነዱ ይንቀሳቀሳሉ: በዚህ አቅጣጫ ውስጥ: ቤተ መጻህፍት እንደ አስፈላጊነቱ ይሰየማል \n"
+"ከጨረሱ በኋላ: ሁሉም ማክሮስ ቀደም ብለው የ ተጣበቁ ከሆነ ወደ ፎርሞች እና መግለጫዎች ወደ አሁኑ ዳታቤዝ ሰነዶች ወደ ራሱ ወደ ሰነዱ ይንቀሳቀሳሉ: በዚህ አቅጣጫ ውስጥ: ቤተ መጻህፍት እንደ አስፈላጊነቱ ይሰየማል \n"
"\n"
-"የ እርስዎ ፎርሞች እና መግለጫዎች ወደ macros ማመሳከሪያ ይዘው ከ ነበረ በተቻለው መጠን ይስተካከላሉ \n"
+"የ እርስዎ ፎርሞች እና መግለጫዎች ወደ ማክሮስ ማመሳከሪያ ይዘው ከ ነበረ በተቻለው መጠን ይስተካከላሉ \n"
"\n"
"ማዘዋወሩ ከ መጀምሩ በፊት ሁሉንም ፎርሞች: መግለጫዎች: ጥያቄዎች እና ሰንጠረዦች ለ ሰነዱ የሚገቡት መዘጋት አለባቸው: ይጫኑ 'ይቀጥሉ' ለመፈጸም"
diff --git a/source/am/editeng/messages.po b/source/am/editeng/messages.po
index c85b99259f3..adba22816c1 100644
--- a/source/am/editeng/messages.po
+++ b/source/am/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: 2017-10-04 11:48+0200\n"
-"PO-Revision-Date: 2017-10-09 15:48+0000\n"
+"PO-Revision-Date: 2017-12-17 21:35+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1507564102.000000\n"
+"X-POOTLE-MTIME: 1513546533.000000\n"
#: spellmenu.ui:12
msgctxt "spellmenu|ignore"
@@ -1083,7 +1083,7 @@ msgstr "የተመጠኑ ባህሪዎች የሉም"
#: editrids.hrc:254
msgctxt "RID_SVXITEMS_RELIEF_NONE"
msgid "No relief"
-msgstr "No relief"
+msgstr "ክፍተት የለም"
#: editrids.hrc:255
msgctxt "RID_SVXITEMS_RELIEF_EMBOSSED"
diff --git a/source/am/extras/source/autocorr/emoji.po b/source/am/extras/source/autocorr/emoji.po
index a24d5b5512f..f0cd061f2be 100644
--- a/source/am/extras/source/autocorr/emoji.po
+++ b/source/am/extras/source/autocorr/emoji.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: 2016-10-18 13:02+0200\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2017-11-25 16:57+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1705,8 +1705,8 @@ msgctxt ""
"emoji.ulf\n"
"LIGHTNING\n"
"LngText.text"
-msgid "lighting"
-msgstr "መብረቅ"
+msgid "lightning3"
+msgstr ""
#. ☈ (U+02608), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1714,8 +1714,8 @@ msgctxt ""
"emoji.ulf\n"
"THUNDERSTORM\n"
"LngText.text"
-msgid "storm"
-msgstr "ማእበል"
+msgid "storm2"
+msgstr ""
#. ☉ (U+02609), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2056,8 +2056,8 @@ msgctxt ""
"emoji.ulf\n"
"MERCURY\n"
"LngText.text"
-msgid "Mercury"
-msgstr "ሜርኩሪ"
+msgid "mercury"
+msgstr ""
#. ♀ (U+02640), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2074,8 +2074,8 @@ msgctxt ""
"emoji.ulf\n"
"EARTH\n"
"LngText.text"
-msgid "Earth"
-msgstr "መሬት"
+msgid "earth"
+msgstr ""
#. ♂ (U+02642), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2092,8 +2092,8 @@ msgctxt ""
"emoji.ulf\n"
"JUPITER\n"
"LngText.text"
-msgid "Jupiter"
-msgstr "ጁፒተር"
+msgid "jupiter"
+msgstr ""
#. ♄ (U+02644), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2101,8 +2101,8 @@ msgctxt ""
"emoji.ulf\n"
"SATURN\n"
"LngText.text"
-msgid "Saturn"
-msgstr "ሳተርን"
+msgid "saturn"
+msgstr ""
#. ♅ (U+02645), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2110,8 +2110,8 @@ msgctxt ""
"emoji.ulf\n"
"URANUS\n"
"LngText.text"
-msgid "Uranus"
-msgstr "ዩርአነስ"
+msgid "uranus"
+msgstr ""
#. ♆ (U+02646), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2119,8 +2119,8 @@ msgctxt ""
"emoji.ulf\n"
"NEPTUNE\n"
"LngText.text"
-msgid "Neptune"
-msgstr "ኔፒቲዩን"
+msgid "neptune"
+msgstr ""
#. ♇ (U+02647), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2128,8 +2128,8 @@ msgctxt ""
"emoji.ulf\n"
"PLUTO\n"
"LngText.text"
-msgid "Pluto"
-msgstr "ፕሉቶ"
+msgid "pluto"
+msgstr ""
#. ♈ (U+02648), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2137,8 +2137,8 @@ msgctxt ""
"emoji.ulf\n"
"ARIES\n"
"LngText.text"
-msgid "Aries"
-msgstr "ኤሪየስ"
+msgid "aries"
+msgstr ""
#. ♉ (U+02649), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2146,8 +2146,8 @@ msgctxt ""
"emoji.ulf\n"
"TAURUS\n"
"LngText.text"
-msgid "Taurus"
-msgstr "ታኡረስ"
+msgid "taurus"
+msgstr ""
#. ♊ (U+0264A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2155,8 +2155,8 @@ msgctxt ""
"emoji.ulf\n"
"GEMINI\n"
"LngText.text"
-msgid "Gemini"
-msgstr "ጄሚኒ"
+msgid "gemini"
+msgstr ""
#. ♋ (U+0264B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2164,8 +2164,8 @@ msgctxt ""
"emoji.ulf\n"
"CANCER\n"
"LngText.text"
-msgid "Cancer"
-msgstr "ካንሰር"
+msgid "cancer"
+msgstr ""
#. ♌ (U+0264C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2173,8 +2173,8 @@ msgctxt ""
"emoji.ulf\n"
"LEO\n"
"LngText.text"
-msgid "Leo"
-msgstr "ሌዮ"
+msgid "leo"
+msgstr ""
#. ♍ (U+0264D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2182,8 +2182,8 @@ msgctxt ""
"emoji.ulf\n"
"VIRGO\n"
"LngText.text"
-msgid "Virgo"
-msgstr "ቪርጎ"
+msgid "virgo"
+msgstr ""
#. ♎ (U+0264E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2191,8 +2191,8 @@ msgctxt ""
"emoji.ulf\n"
"LIBRA\n"
"LngText.text"
-msgid "Libra"
-msgstr "ሊብራ"
+msgid "libra"
+msgstr ""
#. ♏ (U+0264F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2200,8 +2200,8 @@ msgctxt ""
"emoji.ulf\n"
"SCORPIUS\n"
"LngText.text"
-msgid "Scorpius"
-msgstr "ስኮርፒየስ"
+msgid "scorpius"
+msgstr ""
#. ♐ (U+02650), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2209,8 +2209,8 @@ msgctxt ""
"emoji.ulf\n"
"SAGITTARIUS\n"
"LngText.text"
-msgid "Sagittarius"
-msgstr "ሳጂታረስ"
+msgid "sagittarius"
+msgstr ""
#. ♑ (U+02651), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2218,8 +2218,8 @@ msgctxt ""
"emoji.ulf\n"
"CAPRICORN\n"
"LngText.text"
-msgid "Capricorn"
-msgstr "ካፕሪኮርን"
+msgid "capricorn"
+msgstr ""
#. ♒ (U+02652), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2227,8 +2227,8 @@ msgctxt ""
"emoji.ulf\n"
"AQUARIUS\n"
"LngText.text"
-msgid "Aquarius"
-msgstr "አኳሪየስ"
+msgid "aquarius"
+msgstr ""
#. ♓ (U+02653), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2236,8 +2236,8 @@ msgctxt ""
"emoji.ulf\n"
"PISCES\n"
"LngText.text"
-msgid "Pisces"
-msgstr "ፔሼስ"
+msgid "pisces"
+msgstr ""
#. ♔ (U+02654), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2596,8 +2596,8 @@ msgctxt ""
"emoji.ulf\n"
"WHITE_FLAG\n"
"LngText.text"
-msgid "flag"
-msgstr "ባንዲራ"
+msgid "flag4"
+msgstr ""
#. ⚑ (U+02691), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2605,8 +2605,8 @@ msgctxt ""
"emoji.ulf\n"
"BLACK_FLAG\n"
"LngText.text"
-msgid "flag2"
-msgstr "ባንዲራ2"
+msgid "flag3"
+msgstr ""
#. ⚒ (U+02692), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2911,8 +2911,8 @@ msgctxt ""
"emoji.ulf\n"
"BLACK_CROSS_ON_SHIELD\n"
"LngText.text"
-msgid "shield"
-msgstr "ጋሻ"
+msgid "shield2"
+msgstr ""
#. ⛪ (U+026EA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2956,8 +2956,8 @@ msgctxt ""
"emoji.ulf\n"
"FLAG_IN_HOLE\n"
"LngText.text"
-msgid "golf"
-msgstr "ጎልፍ"
+msgid "golf2"
+msgstr ""
#. ⛴ (U+026F4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3685,8 +3685,8 @@ msgctxt ""
"emoji.ulf\n"
"FOGGY\n"
"LngText.text"
-msgid "fog"
-msgstr "ጭጋግ"
+msgid "foggy"
+msgstr ""
#. 🌂 (U+1F302), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3784,8 +3784,8 @@ msgctxt ""
"emoji.ulf\n"
"MILKY_WAY\n"
"LngText.text"
-msgid "Milky way"
-msgstr "ሚልኪ ዌይ"
+msgid "milky way"
+msgstr ""
#. 🌍 (U+1F30D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4036,7 +4036,7 @@ msgctxt ""
"emoji.ulf\n"
"CHERRY_BLOSSOM\n"
"LngText.text"
-msgid "cherry blossom"
+msgid "blossom2"
msgstr ""
#. 🌹 (U+1F339), see http://wiki.documentfoundation.org/Emoji
@@ -4271,8 +4271,8 @@ msgctxt ""
"emoji.ulf\n"
"CHERRIES\n"
"LngText.text"
-msgid "cherries"
-msgstr "ቼሪስ"
+msgid "cherry"
+msgstr ""
#. 🍓 (U+1F353), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4569,8 +4569,8 @@ msgctxt ""
"emoji.ulf\n"
"COOKING\n"
"LngText.text"
-msgid "egg"
-msgstr "እንቁላል"
+msgid "cooking"
+msgstr ""
#. 🍴 (U+1F374), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4605,8 +4605,8 @@ msgctxt ""
"emoji.ulf\n"
"WINE_GLASS\n"
"LngText.text"
-msgid "wine glass"
-msgstr "የ ወይን ብርጭቆ"
+msgid "glass"
+msgstr ""
#. 🍸 (U+1F378), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4623,8 +4623,8 @@ msgctxt ""
"emoji.ulf\n"
"TROPICAL_DRINK\n"
"LngText.text"
-msgid "tropical drink"
-msgstr "ቀዝቃዛ መጠጥ"
+msgid "drink2"
+msgstr ""
#. 🍺 (U+1F37A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4659,8 +4659,8 @@ msgctxt ""
"emoji.ulf\n"
"RIBBON\n"
"LngText.text"
-msgid "ribbon"
-msgstr "ሪቫን"
+msgid "ribbon2"
+msgstr ""
#. 🎁 (U+1F381), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4686,8 +4686,8 @@ msgctxt ""
"emoji.ulf\n"
"JACK-O-LANTERN\n"
"LngText.text"
-msgid "Halloween"
-msgstr "ሀሎዊን"
+msgid "halloween"
+msgstr ""
#. 🎄 (U+1F384), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4695,8 +4695,8 @@ msgctxt ""
"emoji.ulf\n"
"CHRISTMAS_TREE\n"
"LngText.text"
-msgid "Christmas"
-msgstr "ገና"
+msgid "christmas"
+msgstr ""
#. 🎅 (U+1F385), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4704,8 +4704,8 @@ msgctxt ""
"emoji.ulf\n"
"FATHER_CHRISTMAS\n"
"LngText.text"
-msgid "Santa"
-msgstr "የ ገና አባት"
+msgid "santa"
+msgstr ""
#. 🎆 (U+1F386), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4749,7 +4749,7 @@ msgctxt ""
"emoji.ulf\n"
"CONFETTI_BALL\n"
"LngText.text"
-msgid "confetti ball"
+msgid "party2"
msgstr ""
#. 🎋 (U+1F38B), see http://wiki.documentfoundation.org/Emoji
@@ -4839,8 +4839,8 @@ msgctxt ""
"emoji.ulf\n"
"CAROUSEL_HORSE\n"
"LngText.text"
-msgid "carousel horse"
-msgstr "ሰው ሰራሽ ፈረስ"
+msgid "fair2"
+msgstr ""
#. 🎡 (U+1F3A1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4848,7 +4848,7 @@ msgctxt ""
"emoji.ulf\n"
"FERRIS_WHEEL\n"
"LngText.text"
-msgid "ferris wheel"
+msgid "fair"
msgstr ""
#. 🎢 (U+1F3A2), see http://wiki.documentfoundation.org/Emoji
@@ -4929,8 +4929,8 @@ msgctxt ""
"emoji.ulf\n"
"CIRCUS_TENT\n"
"LngText.text"
-msgid "circus tent"
-msgstr "የ ሰርከስ ድንኳን"
+msgid "circus"
+msgstr ""
#. 🎫 (U+1F3AB), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5136,8 +5136,8 @@ msgctxt ""
"emoji.ulf\n"
"CHEQUERED_FLAG\n"
"LngText.text"
-msgid "flag3"
-msgstr "ባንዲራ3"
+msgid "race"
+msgstr ""
#. 🏂 (U+1F3C2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5181,8 +5181,8 @@ msgctxt ""
"emoji.ulf\n"
"HORSE_RACING\n"
"LngText.text"
-msgid "horse racing"
-msgstr "ፈረስ ግልቢያ"
+msgid "horse3"
+msgstr ""
#. 🏈 (U+1F3C8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6904,8 +6904,8 @@ msgctxt ""
"emoji.ulf\n"
"MONEY_BAG\n"
"LngText.text"
-msgid "moneybag"
-msgstr "የ ገንዘብ ቦርሳ"
+msgid "money2"
+msgstr ""
#. 💱 (U+1F4B1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6913,8 +6913,8 @@ msgctxt ""
"emoji.ulf\n"
"CURRENCY_EXCHANGE\n"
"LngText.text"
-msgid "currency exchange"
-msgstr "ገንዘብ መቀያየሪያ"
+msgid "exchange"
+msgstr ""
#. 💲 (U+1F4B2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6985,8 +6985,8 @@ msgctxt ""
"emoji.ulf\n"
"CHART_WITH_UPWARDS_TREND_AND_YEN_SIGN\n"
"LngText.text"
-msgid "chart"
-msgstr "ቻርት"
+msgid "chart4"
+msgstr ""
#. 💺 (U+1F4BA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7075,7 +7075,7 @@ msgctxt ""
"emoji.ulf\n"
"PAGE_WITH_CURL\n"
"LngText.text"
-msgid "page with curl"
+msgid "page3"
msgstr ""
#. 📄 (U+1F4C4), see http://wiki.documentfoundation.org/Emoji
@@ -7084,8 +7084,8 @@ msgctxt ""
"emoji.ulf\n"
"PAGE_FACING_UP\n"
"LngText.text"
-msgid "page facing up"
-msgstr "ገጽ ፊቱ ወደ ላይ የሆነ"
+msgid "page"
+msgstr ""
#. 📅 (U+1F4C5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7120,8 +7120,8 @@ msgctxt ""
"emoji.ulf\n"
"CHART_WITH_UPWARDS_TREND\n"
"LngText.text"
-msgid "char"
-msgstr "ከሰል"
+msgid "chart"
+msgstr ""
#. 📉 (U+1F4C9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7237,8 +7237,8 @@ msgctxt ""
"emoji.ulf\n"
"CLOSED_BOOK\n"
"LngText.text"
-msgid "book"
-msgstr "መጽሀፍ"
+msgid "book2"
+msgstr ""
#. 📖 (U+1F4D6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7246,8 +7246,8 @@ msgctxt ""
"emoji.ulf\n"
"OPEN_BOOK\n"
"LngText.text"
-msgid "book2"
-msgstr "መጽሀፍ2"
+msgid "book3"
+msgstr ""
#. 📚 (U+1F4DA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7318,8 +7318,8 @@ msgctxt ""
"emoji.ulf\n"
"SATELLITE_ANTENNA\n"
"LngText.text"
-msgid "satellite"
-msgstr "ሳተላይት"
+msgid "antenna"
+msgstr ""
#. 📢 (U+1F4E2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7381,8 +7381,8 @@ msgctxt ""
"emoji.ulf\n"
"INCOMING_ENVELOPE\n"
"LngText.text"
-msgid "envelope2"
-msgstr "ፖስታ2"
+msgid "envelope7"
+msgstr ""
#. 📩 (U+1F4E9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7390,8 +7390,8 @@ msgctxt ""
"emoji.ulf\n"
"ENVELOPE_WITH_DOWNWARDS_ARROW_ABOVE\n"
"LngText.text"
-msgid "envelope3"
-msgstr "ፖስታ3"
+msgid "envelope8"
+msgstr ""
#. 📪 (U+1F4EA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8201,8 +8201,8 @@ msgctxt ""
"emoji.ulf\n"
"SMILING_FACE_WITH_OPEN_MOUTH_AND_TIGHTLY-CLOSED_EYES\n"
"LngText.text"
-msgid "laughing"
-msgstr "ሳቅ"
+msgid "laugh"
+msgstr ""
#. 😇 (U+1F607), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8273,8 +8273,8 @@ msgctxt ""
"emoji.ulf\n"
"SMILING_FACE_WITH_SUNGLASSES\n"
"LngText.text"
-msgid "sunglasses"
-msgstr "የ ፀሐይ መነጽር"
+msgid "sunglasses2"
+msgstr ""
#. 😏 (U+1F60F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8743,8 +8743,8 @@ msgctxt ""
"emoji.ulf\n"
"FACE_WITH_OK_GESTURE\n"
"LngText.text"
-msgid "ok2"
-msgstr "እሺ 2"
+msgid "ok3"
+msgstr ""
#. 🙇 (U+1F647), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8752,7 +8752,7 @@ msgctxt ""
"emoji.ulf\n"
"PERSON_BOWING_DEEPLY\n"
"LngText.text"
-msgid "bow"
+msgid "prostration"
msgstr ""
#. 🙈 (U+1F648), see http://wiki.documentfoundation.org/Emoji
@@ -8851,8 +8851,8 @@ msgctxt ""
"emoji.ulf\n"
"STEAM_LOCOMOTIVE\n"
"LngText.text"
-msgid "steam locomotive"
-msgstr "የ እንፋሎት ባቡር"
+msgid "locomotive"
+msgstr ""
#. 🚃 (U+1F683), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9338,8 +9338,8 @@ msgctxt ""
"emoji.ulf\n"
"CHILDREN_CROSSING\n"
"LngText.text"
-msgid "children crossing"
-msgstr "ልጆች መንገድ በ ማቋረጥ ላይ"
+msgid "crosswalk"
+msgstr ""
#. 🚹 (U+1F6B9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9458,6 +9458,3714 @@ msgctxt ""
msgid "left luggage"
msgstr "በ ግራ ሻንጣ"
+#. 🕃 (U+1F543), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTCHED_LEFT_SEMICIRCLE_WITH_THREE_DOTS\n"
+"LngText.text"
+msgid "feast"
+msgstr ""
+
+#. 🙂 (U+1F642), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLIGHTLY_SMILING_FACE\n"
+"LngText.text"
+msgid "smiling3"
+msgstr ""
+
+#. 🙁 (U+1F641), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLIGHTLY_FROWNING_FACE\n"
+"LngText.text"
+msgid "frowning2"
+msgstr ""
+
+#. 🕵 (U+1F575), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLEUTH_OR_SPY\n"
+"LngText.text"
+msgid "detective"
+msgstr ""
+
+#. 🛌 (U+1F6CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLEEPING_ACCOMMODATION\n"
+"LngText.text"
+msgid "sleep"
+msgstr ""
+
+#. 🕴 (U+1F574), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_IN_BUSINESS_SUIT_LEVITATING\n"
+"LngText.text"
+msgid "suit"
+msgstr ""
+
+#. 🗣 (U+1F5E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPEAKING_HEAD_IN_SILHOUETTE\n"
+"LngText.text"
+msgid "head"
+msgstr ""
+
+#. 🏌 (U+1F3CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GOLFER\n"
+"LngText.text"
+msgid "golf"
+msgstr ""
+
+#. 🏋 (U+1F3CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WEIGHT_LIFTER\n"
+"LngText.text"
+msgid "weight lifter"
+msgstr ""
+
+#. 🏎 (U+1F3CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RACING_CAR\n"
+"LngText.text"
+msgid "car4"
+msgstr ""
+
+#. 🏍 (U+1F3CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RACING_MOTORCYCLE\n"
+"LngText.text"
+msgid "motorcycle"
+msgstr ""
+
+#. 🖕 (U+1F595), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_HAND_WITH_MIDDLE_FINGER_EXTENDED\n"
+"LngText.text"
+msgid "finger"
+msgstr ""
+
+#. 🖖 (U+1F596), Mr. Spock's Vulcan salute from Star Trek, see also http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_HAND_WITH_PART_BETWEEN_MIDDLE_AND_RING_FINGERS\n"
+"LngText.text"
+msgid "spock"
+msgstr ""
+
+#. 🖐 (U+1F590), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_HAND_WITH_FINGERS_SPLAYED\n"
+"LngText.text"
+msgid "hand2"
+msgstr ""
+
+#. 👁 (U+1F441), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EYE\n"
+"LngText.text"
+msgid "eye"
+msgstr ""
+
+#. 🗨 (U+1F5E8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_SPEECH_BUBBLE\n"
+"LngText.text"
+msgid "bubble"
+msgstr ""
+
+#. 🗯 (U+1F5EF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_ANGER_BUBBLE\n"
+"LngText.text"
+msgid "bubble4"
+msgstr ""
+
+#. 🕳 (U+1F573), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOLE\n"
+"LngText.text"
+msgid "hole"
+msgstr ""
+
+#. 🕶 (U+1F576), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DARK_SUNGLASSES\n"
+"LngText.text"
+msgid "sunglasses"
+msgstr ""
+
+#. 🛍 (U+1F6CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOPPING_BAGS\n"
+"LngText.text"
+msgid "shop"
+msgstr ""
+
+#. 🐿 (U+1F43F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHIPMUNK\n"
+"LngText.text"
+msgid "chipmunk"
+msgstr ""
+
+#. 🕊 (U+1F54A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOVE_OF_PEACE\n"
+"LngText.text"
+msgid "dove"
+msgstr ""
+
+#. 🕷 (U+1F577), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIDER\n"
+"LngText.text"
+msgid "spider"
+msgstr ""
+
+#. 🕸 (U+1F578), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIDER_WEB\n"
+"LngText.text"
+msgid "web"
+msgstr ""
+
+#. 🏵 (U+1F3F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROSETTE\n"
+"LngText.text"
+msgid "rosette"
+msgstr ""
+
+#. 🌶 (U+1F336), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOT_PEPPER\n"
+"LngText.text"
+msgid "pepper"
+msgstr ""
+
+#. 🍽 (U+1F37D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FORK_AND_KNIFE_WITH_PLATE\n"
+"LngText.text"
+msgid "plate"
+msgstr ""
+
+#. 🗺 (U+1F5FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WORLD_MAP\n"
+"LngText.text"
+msgid "map"
+msgstr ""
+
+#. 🏔 (U+1F3D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SNOW_CAPPED_MOUNTAIN\n"
+"LngText.text"
+msgid "mountain2"
+msgstr ""
+
+#. 🏕 (U+1F3D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CAMPING\n"
+"LngText.text"
+msgid "camping"
+msgstr ""
+
+#. 🏖 (U+1F3D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEACH_WITH_UMBRELLA\n"
+"LngText.text"
+msgid "beach"
+msgstr ""
+
+#. 🏜 (U+1F3DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESERT\n"
+"LngText.text"
+msgid "desert"
+msgstr ""
+
+#. 🏝 (U+1F3DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESERT_ISLAND\n"
+"LngText.text"
+msgid "island"
+msgstr ""
+
+#. 🏞 (U+1F3DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NATIONAL_PARK\n"
+"LngText.text"
+msgid "park"
+msgstr ""
+
+#. 🏟 (U+1F3DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STADIUM\n"
+"LngText.text"
+msgid "stadium"
+msgstr ""
+
+#. 🏛 (U+1F3DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLASSICAL_BUILDING\n"
+"LngText.text"
+msgid "museum"
+msgstr ""
+
+#. 🏗 (U+1F3D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BUILDING_CONSTRUCTION\n"
+"LngText.text"
+msgid "crane"
+msgstr ""
+
+#. 🏘 (U+1F3D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOUSE_BUILDINGS\n"
+"LngText.text"
+msgid "houses"
+msgstr ""
+
+#. 🏚 (U+1F3DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DERELICT_HOUSE_BUILDING\n"
+"LngText.text"
+msgid "house3"
+msgstr ""
+
+#. 🏙 (U+1F3D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CITYSCAPE\n"
+"LngText.text"
+msgid "city"
+msgstr ""
+
+#. 🛣 (U+1F6E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTORWAY\n"
+"LngText.text"
+msgid "motorway"
+msgstr ""
+
+#. 🛤 (U+1F6E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAILWAY_TRACK\n"
+"LngText.text"
+msgid "track"
+msgstr ""
+
+#. 🛢 (U+1F6E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OIL_DRUM\n"
+"LngText.text"
+msgid "drum"
+msgstr ""
+
+#. 🛳 (U+1F6F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PASSENGER_SHIP\n"
+"LngText.text"
+msgid "ship2"
+msgstr ""
+
+#. 🛥 (U+1F6E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTOR_BOAT\n"
+"LngText.text"
+msgid "motor boat"
+msgstr ""
+
+#. 🛩 (U+1F6E9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SMALL_AIRPLANE\n"
+"LngText.text"
+msgid "airplane2"
+msgstr ""
+
+#. 🛫 (U+1F6EB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AIRPLANE_DEPARTURE\n"
+"LngText.text"
+msgid "departure"
+msgstr ""
+
+#. 🛬 (U+1F6EC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AIRPLANE_ARRIVING\n"
+"LngText.text"
+msgid "arrival"
+msgstr ""
+
+#. 🛰 (U+1F6F0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SATELLITE\n"
+"LngText.text"
+msgid "satellite"
+msgstr ""
+
+#. 🛎 (U+1F6CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BELLHOP_BELL\n"
+"LngText.text"
+msgid "bell2"
+msgstr ""
+
+#. 🕰 (U+1F570), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MANTELPIECE_CLOCK\n"
+"LngText.text"
+msgid "clock"
+msgstr ""
+
+#. 🌡 (U+1F321), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THERMOMETER\n"
+"LngText.text"
+msgid "thermometer"
+msgstr ""
+
+#. 🌤 (U+1F324), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_WITH_SMALL_CLOUD\n"
+"LngText.text"
+msgid "cloudy"
+msgstr ""
+
+#. 🌥 (U+1F325), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_BEHIND_CLOUD\n"
+"LngText.text"
+msgid "cloudy2"
+msgstr ""
+
+#. 🌦 (U+1F326), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_BEHIND_CLOUD_WITH_RAIN\n"
+"LngText.text"
+msgid "rainy"
+msgstr ""
+
+#. 🌧 (U+1F327), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_RAIN\n"
+"LngText.text"
+msgid "storm"
+msgstr ""
+
+#. 🌨 (U+1F328), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_SNOW\n"
+"LngText.text"
+msgid "snow"
+msgstr ""
+
+#. 🌩 (U+1F329), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_LIGHTNING\n"
+"LngText.text"
+msgid "lightning"
+msgstr ""
+
+#. 🌪 (U+1F32A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_TORNADO\n"
+"LngText.text"
+msgid "tornado"
+msgstr ""
+
+#. 🌫 (U+1F32B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOG\n"
+"LngText.text"
+msgid "fog"
+msgstr ""
+
+#. 🌬 (U+1F32C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WIND_BLOWING_FACE\n"
+"LngText.text"
+msgid "wind"
+msgstr ""
+
+#. 🎗 (U+1F397), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REMINDER_RIBBON\n"
+"LngText.text"
+msgid "ribbon"
+msgstr ""
+
+#. 🎟 (U+1F39F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ADMISSION_TICKETS\n"
+"LngText.text"
+msgid "ticket2"
+msgstr ""
+
+#. 🎖 (U+1F396), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MILITARY_MEDAL\n"
+"LngText.text"
+msgid "medal2"
+msgstr ""
+
+#. 🏅 (U+1F3C5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPORTS_MEDAL\n"
+"LngText.text"
+msgid "medal"
+msgstr ""
+
+#. 🕹 (U+1F579), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"JOYSTICK\n"
+"LngText.text"
+msgid "joystick"
+msgstr ""
+
+#. 🖼 (U+1F5BC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_PICTURE\n"
+"LngText.text"
+msgid "picture"
+msgstr ""
+
+#. 🎙 (U+1F399), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STUDIO_MICROPHONE\n"
+"LngText.text"
+msgid "microphone2"
+msgstr ""
+
+#. 🎚 (U+1F39A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEVEL_SLIDER\n"
+"LngText.text"
+msgid "slider"
+msgstr ""
+
+#. 🎛 (U+1F39B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CONTROL_KNOBS\n"
+"LngText.text"
+msgid "control"
+msgstr ""
+
+#. 🖥 (U+1F5A5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESKTOP_COMPUTER\n"
+"LngText.text"
+msgid "computer2"
+msgstr ""
+
+#. 🖨 (U+1F5A8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINTER\n"
+"LngText.text"
+msgid "printer"
+msgstr ""
+
+#. 🖱 (U+1F5B1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse3"
+msgstr ""
+
+#. 🖲 (U+1F5B2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TRACKBALL\n"
+"LngText.text"
+msgid "trackball"
+msgstr ""
+
+#. 🎞 (U+1F39E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILM_FRAMES\n"
+"LngText.text"
+msgid "film"
+msgstr ""
+
+#. 📽 (U+1F4FD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILM_PROJECTOR\n"
+"LngText.text"
+msgid "projector"
+msgstr ""
+
+#. 📸 (U+1F4F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CAMERA_WITH_FLASH\n"
+"LngText.text"
+msgid "flash"
+msgstr ""
+
+#. 🕯 (U+1F56F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANDLE\n"
+"LngText.text"
+msgid "candle"
+msgstr ""
+
+#. 🗞 (U+1F5DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROLLED-UP_NEWSPAPER\n"
+"LngText.text"
+msgid "newspaper2"
+msgstr ""
+
+#. 🏷 (U+1F3F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LABEL\n"
+"LngText.text"
+msgid "label"
+msgstr ""
+
+#. 🗳 (U+1F5F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BALLOT\n"
+"LngText.text"
+msgid "ballot"
+msgstr ""
+
+#. 🖋 (U+1F58B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_FOUNTAIN_PEN\n"
+"LngText.text"
+msgid "pen2"
+msgstr ""
+
+#. 🖊 (U+1F58A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_BALLPOINT_PEN\n"
+"LngText.text"
+msgid "pen"
+msgstr ""
+
+#. 🖌 (U+1F58C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_PAINTBRUSH\n"
+"LngText.text"
+msgid "paintbrush"
+msgstr ""
+
+#. 🖍 (U+1F58D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_CRAYON\n"
+"LngText.text"
+msgid "crayon"
+msgstr ""
+
+#. 🗂 (U+1F5C2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARD_INDEX_DIVIDERS\n"
+"LngText.text"
+msgid "index"
+msgstr ""
+
+#. 🗒 (U+1F5D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIRAL_NOTE_PAD\n"
+"LngText.text"
+msgid "notepad"
+msgstr ""
+
+#. 🗓 (U+1F5D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIRAL_CALENDAR_PAD\n"
+"LngText.text"
+msgid "calendar3"
+msgstr ""
+
+#. 🖇 (U+1F587), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LINKED_PAPERCLIPS\n"
+"LngText.text"
+msgid "paperclip2"
+msgstr ""
+
+#. 🗃 (U+1F5C3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARD_FILE_BOX\n"
+"LngText.text"
+msgid "box"
+msgstr ""
+
+#. 🗄 (U+1F5C4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILE_CABINET\n"
+"LngText.text"
+msgid "cabinet"
+msgstr ""
+
+#. 🗑 (U+1F5D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WASTEBASKET\n"
+"LngText.text"
+msgid "wastebasket"
+msgstr ""
+
+#. 🗝 (U+1F5DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLD_KEY\n"
+"LngText.text"
+msgid "key2"
+msgstr ""
+
+#. 🛠 (U+1F6E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HAMMER_AND_WRENCH\n"
+"LngText.text"
+msgid "hammer and wrench"
+msgstr ""
+
+#. 🗡 (U+1F5E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DAGGER_KNIFE\n"
+"LngText.text"
+msgid "knife2"
+msgstr ""
+
+#. 🛡 (U+1F6E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHIELD\n"
+"LngText.text"
+msgid "shield"
+msgstr ""
+
+#. 🗜 (U+1F5DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COMPRESSION\n"
+"LngText.text"
+msgid "clamp"
+msgstr ""
+
+#. 🛏 (U+1F6CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BED\n"
+"LngText.text"
+msgid "bed"
+msgstr ""
+
+#. 🛋 (U+1F6CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COUCH_AND_LAMP\n"
+"LngText.text"
+msgid "couch"
+msgstr ""
+
+#. 🕉 (U+1F549), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OM_SYMBOL\n"
+"LngText.text"
+msgid "om"
+msgstr ""
+
+#. ⏸ (U+23F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOUBLE_VERTICAL_BAR\n"
+"LngText.text"
+msgid "pause"
+msgstr ""
+
+#. ⏹ (U+23F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_SQUARE_FOR_STOP\n"
+"LngText.text"
+msgid "stop2"
+msgstr ""
+
+#. ⏺ (U+23FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_CIRCLE_FOR_RECORD\n"
+"LngText.text"
+msgid "record"
+msgstr ""
+
+#. 🏴 (U+1F3F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WAVING_BLACK_FLAG\n"
+"LngText.text"
+msgid "flag"
+msgstr ""
+
+#. 🏳 (U+1F3F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WAVING_WHITE_FLAG\n"
+"LngText.text"
+msgid "flag2"
+msgstr ""
+
+#. 🗷 (U+1F5F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BOLD_SCRIPT_X\n"
+"LngText.text"
+msgid "checkbox4"
+msgstr ""
+
+#. 🛉 (U+1F6C9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOYS_SYMBOL\n"
+"LngText.text"
+msgid "boys"
+msgstr ""
+
+#. 🛈 (U+1F6C8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CIRCLED_INFORMATION_SOURCE\n"
+"LngText.text"
+msgid "information3"
+msgstr ""
+
+#. 🛊 (U+1F6CA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GIRLS_SYMBOL\n"
+"LngText.text"
+msgid "girls"
+msgstr ""
+
+#. 🛨 (U+1F6E8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_SMALL_AIRPLANE\n"
+"LngText.text"
+msgid "airplane4"
+msgstr ""
+
+#. 🛲 (U+1F6F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DIESEL_LOCOMOTIVE\n"
+"LngText.text"
+msgid "locomotive2"
+msgstr ""
+
+#. 🛧 (U+1F6E7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_AIRPLANE\n"
+"LngText.text"
+msgid "airplane3"
+msgstr ""
+
+#. 🛱 (U+1F6F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ONCOMING_FIRE_ENGINE\n"
+"LngText.text"
+msgid "fire engine2"
+msgstr ""
+
+#. 🛦 (U+1F6E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_MILITARY_AIRPLANE\n"
+"LngText.text"
+msgid "airplane5"
+msgstr ""
+
+#. 🛪 (U+1F6EA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NORTHEAST-POINTING_AIRPLANE\n"
+"LngText.text"
+msgid "airplane6"
+msgstr ""
+
+#. 🗭 (U+1F5ED), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_THOUGHT_BUBBLE\n"
+"LngText.text"
+msgid "bubble5"
+msgstr ""
+
+#. 🗱 (U+1F5F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHTNING_MOOD_BUBBLE\n"
+"LngText.text"
+msgid "bubble6"
+msgstr ""
+
+#. 🗬 (U+1F5EC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_THOUGHT_BUBBLE\n"
+"LngText.text"
+msgid "bubble7"
+msgstr ""
+
+#. 🗠 (U+1F5E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STOCK_CHART\n"
+"LngText.text"
+msgid "chart5"
+msgstr ""
+
+#. 🗟 (U+1F5DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGE_WITH_CIRCLED_TEXT\n"
+"LngText.text"
+msgid "page4"
+msgstr ""
+
+#. 🖎 (U+1F58E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_WRITING_HAND\n"
+"LngText.text"
+msgid "writing2"
+msgstr ""
+
+#. 🗦 (U+1F5E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_LEFT\n"
+"LngText.text"
+msgid "rays"
+msgstr ""
+
+#. 🎝 (U+1F39D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEAMED_DESCENDING_MUSICAL_NOTES\n"
+"LngText.text"
+msgid "notes3"
+msgstr ""
+
+#. 🔾 (U+1F53E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_RIGHT_SHADOWED_WHITE_CIRCLE\n"
+"LngText.text"
+msgid "circle3"
+msgstr ""
+
+#. 🎜 (U+1F39C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEAMED_ASCENDING_MUSICAL_NOTES\n"
+"LngText.text"
+msgid "notes4"
+msgstr ""
+
+#. 🕮 (U+1F56E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOOK\n"
+"LngText.text"
+msgid "book"
+msgstr ""
+
+#. 🗛 (U+1F5DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DECREASE_FONT_SIZE_SYMBOL\n"
+"LngText.text"
+msgid "font"
+msgstr ""
+
+#. 🔿 (U+1F53F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UPPER_RIGHT_SHADOWED_WHITE_CIRCLE\n"
+"LngText.text"
+msgid "circle4"
+msgstr ""
+
+#. 🕫 (U+1F56B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BULLHORN\n"
+"LngText.text"
+msgid "bullhorn"
+msgstr ""
+
+#. 🕬 (U+1F56C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BULLHORN_WITH_SOUND_WAVES\n"
+"LngText.text"
+msgid "bullhorn2"
+msgstr ""
+
+#. 🕻 (U+1F57B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_HAND_TELEPHONE_RECEIVER\n"
+"LngText.text"
+msgid "receiver2"
+msgstr ""
+
+#. 🕾 (U+1F57E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_TOUCHTONE_TELEPHONE\n"
+"LngText.text"
+msgid "phone3"
+msgstr ""
+
+#. 🕼 (U+1F57C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TELEPHONE_RECEIVER_WITH_PAGE\n"
+"LngText.text"
+msgid "receiver4"
+msgstr ""
+
+#. 🕽 (U+1F57D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_HAND_TELEPHONE_RECEIVER\n"
+"LngText.text"
+msgid "receiver3"
+msgstr ""
+
+#. 🕿 (U+1F57F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_TOUCHTONE_TELEPHONE\n"
+"LngText.text"
+msgid "phone4"
+msgstr ""
+
+#. 🖚 (U+1F59A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_LEFT_POINTING_INDEX\n"
+"LngText.text"
+msgid "left4"
+msgstr ""
+
+#. 🖏 (U+1F58F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TURNED_OK_HAND_SIGN\n"
+"LngText.text"
+msgid "ok2"
+msgstr ""
+
+#. 🖜 (U+1F59C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_LEFT_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "left5"
+msgstr ""
+
+#. 🗥 (U+1F5E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_BELOW\n"
+"LngText.text"
+msgid "rays2"
+msgstr ""
+
+#. 🖛 (U+1F59B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_RIGHT_POINTING_INDEX\n"
+"LngText.text"
+msgid "right4"
+msgstr ""
+
+#. 🖟 (U+1F59F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_DOWN_POINTING_INDEX\n"
+"LngText.text"
+msgid "down3"
+msgstr ""
+
+#. 🖞 (U+1F59E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_UP_POINTING_INDEX\n"
+"LngText.text"
+msgid "up3"
+msgstr ""
+
+#. 🌢 (U+1F322), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_DROPLET\n"
+"LngText.text"
+msgid "droplet2"
+msgstr ""
+
+#. 🎘 (U+1F398), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MUSICAL_KEYBOARD_WITH_JACKS\n"
+"LngText.text"
+msgid "synthesizer"
+msgstr ""
+
+#. 🎕 (U+1F395), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOUQUET_OF_FLOWERS\n"
+"LngText.text"
+msgid "bouquet2"
+msgstr ""
+
+#. 🎔 (U+1F394), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEART_WITH_TIP_ON_THE_LEFT\n"
+"LngText.text"
+msgid "heart2"
+msgstr ""
+
+#. 🕱 (U+1F571), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_SKULL_AND_CROSSBONES\n"
+"LngText.text"
+msgid "pirate"
+msgstr ""
+
+#. 🖀 (U+1F580), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TELEPHONE_ON_TOP_OF_MODEM\n"
+"LngText.text"
+msgid "modem"
+msgstr ""
+
+#. 🕲 (U+1F572), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NO_PIRACY\n"
+"LngText.text"
+msgid "no piracy"
+msgstr ""
+
+#. 🕅 (U+1F545), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SYMBOL_FOR_MARKS_CHAPTER\n"
+"LngText.text"
+msgid "marks chapter"
+msgstr ""
+
+#. 🕈 (U+1F548), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CELTIC_CROSS\n"
+"LngText.text"
+msgid "Celtic cross"
+msgstr ""
+
+#. 🖗 (U+1F597), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_DOWN_POINTING_LEFT_HAND_INDEX\n"
+"LngText.text"
+msgid "down4"
+msgstr ""
+
+#. 🖆 (U+1F586), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEN_OVER_STAMPED_ENVELOPE\n"
+"LngText.text"
+msgid "envelope4"
+msgstr ""
+
+#. 🖃 (U+1F583), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STAMPED_ENVELOPE\n"
+"LngText.text"
+msgid "envelope2"
+msgstr ""
+
+#. 🗤 (U+1F5E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_ABOVE\n"
+"LngText.text"
+msgid "rays3"
+msgstr ""
+
+#. 🖉 (U+1F589), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_PENCIL\n"
+"LngText.text"
+msgid "pencil4"
+msgstr ""
+
+#. 🖂 (U+1F582), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BACK_OF_ENVELOPE\n"
+"LngText.text"
+msgid "envelope3"
+msgstr ""
+
+#. 🖈 (U+1F588), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_PUSHPIN\n"
+"LngText.text"
+msgid "tack"
+msgstr ""
+
+#. 🖄 (U+1F584), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ENVELOPE_WITH_LIGHTNING\n"
+"LngText.text"
+msgid "envelope5"
+msgstr ""
+
+#. 🖁 (U+1F581), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLAMSHELL_MOBILE_PHONE\n"
+"LngText.text"
+msgid "mobile2"
+msgstr ""
+
+#. 🖅 (U+1F585), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FLYING_ENVELOPE\n"
+"LngText.text"
+msgid "envelope6"
+msgstr ""
+
+#. 🖘 (U+1F598), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_LEFT_POINTING_INDEX\n"
+"LngText.text"
+msgid "left6"
+msgstr ""
+
+#. 🖙 (U+1F599), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_RIGHT_POINTING_INDEX\n"
+"LngText.text"
+msgid "right5"
+msgstr ""
+
+#. 🗖 (U+1F5D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAXIMIZE\n"
+"LngText.text"
+msgid "maximize"
+msgstr ""
+
+#. 🗗 (U+1F5D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OVERLAP\n"
+"LngText.text"
+msgid "overlap"
+msgstr ""
+
+#. 🗏 (U+1F5CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGE\n"
+"LngText.text"
+msgid "page2"
+msgstr ""
+
+#. 🗐 (U+1F5D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGES\n"
+"LngText.text"
+msgid "pages"
+msgstr ""
+
+#. 🗘 (U+1F5D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOCKWISE_RIGHT_AND_LEFT_SEMICIRCLE_ARROWS\n"
+"LngText.text"
+msgid "arrows"
+msgstr ""
+
+#. 🗚 (U+1F5DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"INCREASE_FONT_SIZE_SYMBOL\n"
+"LngText.text"
+msgid "font2"
+msgstr ""
+
+#. 🗕 (U+1F5D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MINIMIZE\n"
+"LngText.text"
+msgid "minimize"
+msgstr ""
+
+#. 🗙 (U+1F5D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANCELLATION_X\n"
+"LngText.text"
+msgid "cancel"
+msgstr ""
+
+#. 🗔 (U+1F5D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESKTOP_WINDOW\n"
+"LngText.text"
+msgid "window"
+msgstr ""
+
+#. 🗌 (U+1F5CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_PAGE\n"
+"LngText.text"
+msgid "empty page"
+msgstr ""
+
+#. 🗋 (U+1F5CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_DOCUMENT\n"
+"LngText.text"
+msgid "empty document"
+msgstr ""
+
+#. 🗍 (U+1F5CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_PAGES\n"
+"LngText.text"
+msgid "empty pages"
+msgstr ""
+
+#. 🗎 (U+1F5CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT\n"
+"LngText.text"
+msgid "document"
+msgstr ""
+
+#. 🗆 (U+1F5C6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE_PAGE\n"
+"LngText.text"
+msgid "empty note page"
+msgstr ""
+
+#. 🗊 (U+1F5CA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE_PAD\n"
+"LngText.text"
+msgid "note pad"
+msgstr ""
+
+#. 🗈 (U+1F5C8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE\n"
+"LngText.text"
+msgid "note3"
+msgstr ""
+
+#. 🗇 (U+1F5C7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE_PAD\n"
+"LngText.text"
+msgid "empty note pad"
+msgstr ""
+
+#. 🗉 (U+1F5C9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE_PAGE\n"
+"LngText.text"
+msgid "note page"
+msgstr ""
+
+#. 🖸 (U+1F5B8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OPTICAL_DISC_ICON\n"
+"LngText.text"
+msgid "optical disc"
+msgstr ""
+
+#. 🗀 (U+1F5C0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOLDER\n"
+"LngText.text"
+msgid "folder3"
+msgstr ""
+
+#. 🖝 (U+1F59D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_RIGHT_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "right6"
+msgstr ""
+
+#. 🗁 (U+1F5C1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OPEN_FOLDER\n"
+"LngText.text"
+msgid "folder4"
+msgstr ""
+
+#. 🗅 (U+1F5C5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE\n"
+"LngText.text"
+msgid "empty note"
+msgstr ""
+
+#. 🖿 (U+1F5BF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_FOLDER\n"
+"LngText.text"
+msgid "folder5"
+msgstr ""
+
+#. 🖾 (U+1F5BE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_AN_X\n"
+"LngText.text"
+msgid "frame"
+msgstr ""
+
+#. 🖽 (U+1F5BD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_TILES\n"
+"LngText.text"
+msgid "frame2"
+msgstr ""
+
+#. 🖹 (U+1F5B9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_TEXT\n"
+"LngText.text"
+msgid "document2"
+msgstr ""
+
+#. 🖻 (U+1F5BB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_PICTURE\n"
+"LngText.text"
+msgid "document3"
+msgstr ""
+
+#. 🖺 (U+1F5BA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_TEXT_AND_PICTURE\n"
+"LngText.text"
+msgid "document4"
+msgstr ""
+
+#. 🖶 (U+1F5B6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINTER_ICON\n"
+"LngText.text"
+msgid "printer2"
+msgstr ""
+
+#. 🖷 (U+1F5B7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FAX_ICON\n"
+"LngText.text"
+msgid "fax2"
+msgstr ""
+
+#. 🖰 (U+1F5B0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TWO_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse4"
+msgstr ""
+
+#. 🖳 (U+1F5B3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLD_PERSONAL_COMPUTER\n"
+"LngText.text"
+msgid "pc"
+msgstr ""
+
+#. 🖵 (U+1F5B5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCREEN\n"
+"LngText.text"
+msgid "screen"
+msgstr ""
+
+#. 🖯 (U+1F5AF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ONE_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse5"
+msgstr ""
+
+#. 🖴 (U+1F5B4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HARD_DISK\n"
+"LngText.text"
+msgid "hard disk"
+msgstr ""
+
+#. 🖩 (U+1F5A9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POCKET_CALCULATOR\n"
+"LngText.text"
+msgid "calculator"
+msgstr ""
+
+#. 🖭 (U+1F5AD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TAPE_CARTRIDGE\n"
+"LngText.text"
+msgid "cartridge"
+msgstr ""
+
+#. 🖬 (U+1F5AC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SOFT_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy2"
+msgstr ""
+
+#. 🖫 (U+1F5AB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_HARD_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy3"
+msgstr ""
+
+#. 🖮 (U+1F5AE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WIRED_KEYBOARD\n"
+"LngText.text"
+msgid "keyboard2"
+msgstr ""
+
+#. 🖔 (U+1F594), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_VICTORY_HAND\n"
+"LngText.text"
+msgid "victory2"
+msgstr ""
+
+#. 🖧 (U+1F5A7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_NETWORKED_COMPUTERS\n"
+"LngText.text"
+msgid "network"
+msgstr ""
+
+#. 🖪 (U+1F5AA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_HARD_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy4"
+msgstr ""
+
+#. 🗢 (U+1F5E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIPS\n"
+"LngText.text"
+msgid "lips"
+msgstr ""
+
+#. 🖦 (U+1F5A6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KEYBOARD_AND_MOUSE\n"
+"LngText.text"
+msgid "keyboard3"
+msgstr ""
+
+#. 🖣 (U+1F5A3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_DOWN_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "down5"
+msgstr ""
+
+#. 🖡 (U+1F5A1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_DOWN_POINTING_INDEX\n"
+"LngText.text"
+msgid "down6"
+msgstr ""
+
+#. 📾 (U+1F4FE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PORTABLE_STEREO\n"
+"LngText.text"
+msgid "stereo"
+msgstr ""
+
+#. 🏶 (U+1F3F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_ROSETTE\n"
+"LngText.text"
+msgid "rosette2"
+msgstr ""
+
+#. 🏲 (U+1F3F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_PENNANT\n"
+"LngText.text"
+msgid "pennant"
+msgstr ""
+
+#. 🖠 (U+1F5A0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_UP_POINTING_INDEX\n"
+"LngText.text"
+msgid "up4"
+msgstr ""
+
+#. 🖢 (U+1F5A2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_UP_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "up5"
+msgstr ""
+
+#. 🏱 (U+1F3F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_PENNANT\n"
+"LngText.text"
+msgid "pennant2"
+msgstr ""
+
+#. 🕄 (U+1F544), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTCHED_RIGHT_SEMICIRCLE_WITH_THREE_DOTS\n"
+"LngText.text"
+msgid "feast2"
+msgstr ""
+
+#. 🖓 (U+1F593), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_THUMBS_DOWN_SIGN\n"
+"LngText.text"
+msgid "no2"
+msgstr ""
+
+#. 🖑 (U+1F591), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_RAISED_HAND_WITH_FINGERS_SPLAYED\n"
+"LngText.text"
+msgid "hand3"
+msgstr ""
+
+#. 🖒 (U+1F592), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_THUMBS_UP_SIGN\n"
+"LngText.text"
+msgid "yes2"
+msgstr ""
+
+#. 🕩 (U+1F569), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER_WITH_ONE_SOUND_WAVE\n"
+"LngText.text"
+msgid "speaker2"
+msgstr ""
+
+#. 🕆 (U+1F546), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_LATIN_CROSS\n"
+"LngText.text"
+msgid "Latin cross2"
+msgstr ""
+
+#. 🕇 (U+1F547), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEAVY_LATIN_CROSS\n"
+"LngText.text"
+msgid "Latin cross3"
+msgstr ""
+
+#. 🕨 (U+1F568), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER\n"
+"LngText.text"
+msgid "speaker3"
+msgstr ""
+
+#. 🕭 (U+1F56D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RINGING_BELL\n"
+"LngText.text"
+msgid "bell3"
+msgstr ""
+
+#. 🌣 (U+1F323), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN\n"
+"LngText.text"
+msgid "sun2"
+msgstr ""
+
+#. 🛇 (U+1F6C7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PROHIBITED_SIGN\n"
+"LngText.text"
+msgid "prohibited"
+msgstr ""
+
+#. 🛆 (U+1F6C6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TRIANGLE_WITH_ROUNDED_CORNERS\n"
+"LngText.text"
+msgid "triangle3"
+msgstr ""
+
+#. 🗫 (U+1F5EB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_SPEECH_BUBBLES\n"
+"LngText.text"
+msgid "bubble3"
+msgstr ""
+
+#. 🕪 (U+1F56A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER_WITH_THREE_SOUND_WAVES\n"
+"LngText.text"
+msgid "speaker4"
+msgstr ""
+
+#. 🗮 (U+1F5EE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_ANGER_BUBBLE\n"
+"LngText.text"
+msgid "bubble8"
+msgstr ""
+
+#. 🗧 (U+1F5E7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_RIGHT\n"
+"LngText.text"
+msgid "rays4"
+msgstr ""
+
+#. 🗲 (U+1F5F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHTNING_MOOD\n"
+"LngText.text"
+msgid "lightning2"
+msgstr ""
+
+#. 🗰 (U+1F5F0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOOD_BUBBLE\n"
+"LngText.text"
+msgid "bubble9"
+msgstr ""
+
+#. 🗹 (U+1F5F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BOLD_CHECK\n"
+"LngText.text"
+msgid "checkbox5"
+msgstr ""
+
+#. 🗴 (U+1F5F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_SCRIPT_X\n"
+"LngText.text"
+msgid "check mark4"
+msgstr ""
+
+#. 🗪 (U+1F5EA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TWO_SPEECH_BUBBLES\n"
+"LngText.text"
+msgid "bubble2"
+msgstr ""
+
+#. 🗶 (U+1F5F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOLD_SCRIPT_X\n"
+"LngText.text"
+msgid "x4"
+msgstr ""
+
+#. 🗩 (U+1F5E9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEECH_BUBBLE\n"
+"LngText.text"
+msgid "bubble10"
+msgstr ""
+
+#. 🗵 (U+1F5F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_SCRIPT_X\n"
+"LngText.text"
+msgid "checkbox6"
+msgstr ""
+
+#. 🗸 (U+1F5F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHT_CHECK_MARK\n"
+"LngText.text"
+msgid "check mark5"
+msgstr ""
+
+#. 🤗 (U+1F917), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HUGGING_FACE\n"
+"LngText.text"
+msgid "hugging"
+msgstr ""
+
+#. 🤔 (U+1F914), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THINKING_FACE\n"
+"LngText.text"
+msgid "thinking"
+msgstr ""
+
+#. 🙄 (U+1F644), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_ROLLING_EYES\n"
+"LngText.text"
+msgid "eye roll"
+msgstr ""
+
+#. 🤐 (U+1F910), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZIPPER-MOUTH_FACE\n"
+"LngText.text"
+msgid "zipper"
+msgstr ""
+
+#. 🙃 (U+1F643), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UPSIDE-DOWN_FACE\n"
+"LngText.text"
+msgid "upside-down"
+msgstr ""
+
+#. 🤑 (U+1F911), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MONEY-MOUTH_FACE\n"
+"LngText.text"
+msgid "money3"
+msgstr ""
+
+#. 🤒 (U+1F912), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_THERMOMETER\n"
+"LngText.text"
+msgid "thermometer2"
+msgstr ""
+
+#. 🤕 (U+1F915), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_HEAD-BANDAGE\n"
+"LngText.text"
+msgid "bandage"
+msgstr ""
+
+#. 🤓 (U+1F913), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NERD_FACE\n"
+"LngText.text"
+msgid "nerd"
+msgstr ""
+
+#. 🤖 (U+1F916), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROBOT_FACE\n"
+"LngText.text"
+msgid "robot"
+msgstr ""
+
+#. 🏻 (U+1F3FB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-1-2\n"
+"LngText.text"
+msgid "skin1"
+msgstr ""
+
+#. 🏼 (U+1F3FC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-3\n"
+"LngText.text"
+msgid "skin2"
+msgstr ""
+
+#. 🏽 (U+1F3FD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-4\n"
+"LngText.text"
+msgid "skin3"
+msgstr ""
+
+#. 🏾 (U+1F3FE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-5\n"
+"LngText.text"
+msgid "skin4"
+msgstr ""
+
+#. 🏿 (U+1F3FF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-6\n"
+"LngText.text"
+msgid "skin5"
+msgstr ""
+
+#. 🤘 (U+1F918), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIGN_OF_THE_HORNS\n"
+"LngText.text"
+msgid "horns"
+msgstr ""
+
+#. 📿 (U+1F4FF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRAYER_BEADS\n"
+"LngText.text"
+msgid "beads"
+msgstr ""
+
+#. 🦁 (U+1F981), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LION_FACE\n"
+"LngText.text"
+msgid "lion"
+msgstr ""
+
+#. 🦄 (U+1F984), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UNICORN_FACE\n"
+"LngText.text"
+msgid "unicorn"
+msgstr ""
+
+#. 🦃 (U+1F983), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TURKEY\n"
+"LngText.text"
+msgid "turkey"
+msgstr ""
+
+#. 🦀 (U+1F980), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRAB\n"
+"LngText.text"
+msgid "crab"
+msgstr ""
+
+#. 🦂 (U+1F982), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCORPION\n"
+"LngText.text"
+msgid "scorpion"
+msgstr ""
+
+#. 🧀 (U+1F9C0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHEESE_WEDGE\n"
+"LngText.text"
+msgid "cheese"
+msgstr ""
+
+#. 🌭 (U+1F32D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOT_DOG\n"
+"LngText.text"
+msgid "hot dog"
+msgstr ""
+
+#. 🌮 (U+1F32E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TACO\n"
+"LngText.text"
+msgid "taco"
+msgstr ""
+
+#. 🌯 (U+1F32F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BURRITO\n"
+"LngText.text"
+msgid "burrito"
+msgstr ""
+
+#. 🍿 (U+1F37F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POPCORN\n"
+"LngText.text"
+msgid "popcorn"
+msgstr ""
+
+#. 🍾 (U+1F37E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOTTLE_WITH_POPPING_CORK\n"
+"LngText.text"
+msgid "party4"
+msgstr ""
+
+#. 🏺 (U+1F3FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AMPHORA\n"
+"LngText.text"
+msgid "amphora"
+msgstr ""
+
+#. 🕌 (U+1F54C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOSQUE\n"
+"LngText.text"
+msgid "mosque"
+msgstr ""
+
+#. 🕍 (U+1F54D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SYNAGOGUE\n"
+"LngText.text"
+msgid "synagogue"
+msgstr ""
+
+#. 🕋 (U+1F54B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KAABA\n"
+"LngText.text"
+msgid "Kaaba"
+msgstr ""
+
+#. 🏐 (U+1F3D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"VOLLEYBALL\n"
+"LngText.text"
+msgid "volleyball"
+msgstr ""
+
+#. 🏏 (U+1F3CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRICKET_BAT_AND_BALL\n"
+"LngText.text"
+msgid "cricket"
+msgstr ""
+
+#. 🏑 (U+1F3D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FIELD_HOCKEY_STICK_AND_BALL\n"
+"LngText.text"
+msgid "hockey2"
+msgstr ""
+
+#. 🏒 (U+1F3D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ICE_HOCKEY_STICK_AND_PUCK\n"
+"LngText.text"
+msgid "hockey"
+msgstr ""
+
+#. 🏓 (U+1F3D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TABLE_TENNIS_PADDLE_AND_BALL\n"
+"LngText.text"
+msgid "ping pong"
+msgstr ""
+
+#. 🏸 (U+1F3F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BADMINTON_RACQUET_AND_SHUTTLECOCK\n"
+"LngText.text"
+msgid "badminton"
+msgstr ""
+
+#. 🏹 (U+1F3F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOW_AND_ARROW\n"
+"LngText.text"
+msgid "bow"
+msgstr ""
+
+#. 🛐 (U+1F6D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PLACE_OF_WORSHIP\n"
+"LngText.text"
+msgid "worship"
+msgstr ""
+
+#. 🕎 (U+1F54E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MENORAH_WITH_NINE_BRANCHES\n"
+"LngText.text"
+msgid "menorah"
+msgstr ""
+
+#. 🤣 (U+1F923), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROLLING_ON_THE_FLOOR_LAUGHING\n"
+"LngText.text"
+msgid "lol"
+msgstr ""
+
+#. 🤤 (U+1F924), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DROOLING_FACE\n"
+"LngText.text"
+msgid "drool"
+msgstr ""
+
+#. 🤢 (U+1F922), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NAUSEATED_FACE\n"
+"LngText.text"
+msgid "nausea"
+msgstr ""
+
+#. 🤧 (U+1F927), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SNEEZING_FACE\n"
+"LngText.text"
+msgid "sneeze"
+msgstr ""
+
+#. 🤠 (U+1F920), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COWBOY_HAT_FACE\n"
+"LngText.text"
+msgid "cowboy"
+msgstr ""
+
+#. 🤡 (U+1F921), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOWN_FACE\n"
+"LngText.text"
+msgid "clown"
+msgstr ""
+
+#. 🤥 (U+1F925), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LYING_FACE\n"
+"LngText.text"
+msgid "liar"
+msgstr ""
+
+#. 🤴 (U+1F934), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINCE\n"
+"LngText.text"
+msgid "prince"
+msgstr ""
+
+#. 🤵 (U+1F935), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_IN_TUXEDO\n"
+"LngText.text"
+msgid "groom"
+msgstr ""
+
+#. 🤰 (U+1F930), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PREGNANT_WOMAN\n"
+"LngText.text"
+msgid "pregnant"
+msgstr ""
+
+#. 🤶 (U+1F936), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MRS._CLAUS\n"
+"LngText.text"
+msgid "mrs. claus"
+msgstr ""
+
+#. 🤦 (U+1F926), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_FACEPALMING\n"
+"LngText.text"
+msgid "facepalm"
+msgstr ""
+
+#. 🤷 (U+1F937), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_SHRUGGING\n"
+"LngText.text"
+msgid "shrugging"
+msgstr ""
+
+#. 🕺 (U+1F57A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_DANCING\n"
+"LngText.text"
+msgid "dancer2"
+msgstr ""
+
+#. 🤺 (U+1F93A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_FENCING\n"
+"LngText.text"
+msgid "fencer"
+msgstr ""
+
+#. 🤸 (U+1F938), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_CARTWHEELING\n"
+"LngText.text"
+msgid "gymnast"
+msgstr ""
+
+#. 🤼 (U+1F93C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEOPLE_WRESTLING\n"
+"LngText.text"
+msgid "wrestling"
+msgstr ""
+
+#. 🤽 (U+1F93D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_PLAYING_WATER_POLO\n"
+"LngText.text"
+msgid "water polo"
+msgstr ""
+
+#. 🤾 (U+1F93E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_PLAYING_HANDBALL\n"
+"LngText.text"
+msgid "handball"
+msgstr ""
+
+#. 🤹 (U+1F939), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_JUGGLING\n"
+"LngText.text"
+msgid "juggling"
+msgstr ""
+
+#. 🤳 (U+1F933), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SELFIE\n"
+"LngText.text"
+msgid "selfie"
+msgstr ""
+
+#. 🤞 (U+1F91E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CROSSED_FINGERS\n"
+"LngText.text"
+msgid "good luck"
+msgstr ""
+
+#. 🤙 (U+1F919), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CALL_ME_HAND\n"
+"LngText.text"
+msgid "call"
+msgstr ""
+
+#. 🤛 (U+1F91B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT-FACING_FIST\n"
+"LngText.text"
+msgid "fist3"
+msgstr ""
+
+#. 🤜 (U+1F91C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT-FACING_FIST\n"
+"LngText.text"
+msgid "fist4"
+msgstr ""
+
+#. 🤚 (U+1F91A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_BACK_OF_HAND\n"
+"LngText.text"
+msgid "hand4"
+msgstr ""
+
+#. 🤝 (U+1F91D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HANDSHAKE\n"
+"LngText.text"
+msgid "handshake"
+msgstr ""
+
+#. 🖤 (U+1F5A4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_HEART\n"
+"LngText.text"
+msgid "black heart"
+msgstr ""
+
+#. 🦍 (U+1F98D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GORILLA\n"
+"LngText.text"
+msgid "gorilla"
+msgstr ""
+
+#. 🦊 (U+1F98A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOX_FACE\n"
+"LngText.text"
+msgid "fox"
+msgstr ""
+
+#. 🦌 (U+1F98C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DEER\n"
+"LngText.text"
+msgid "deer"
+msgstr ""
+
+#. 🦏 (U+1F98F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RHINOCEROS\n"
+"LngText.text"
+msgid "rhinoceros"
+msgstr ""
+
+#. 🦇 (U+1F987), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BAT\n"
+"LngText.text"
+msgid "bat"
+msgstr ""
+
+#. 🦅 (U+1F985), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EAGLE\n"
+"LngText.text"
+msgid "eagle"
+msgstr ""
+
+#. 🦆 (U+1F986), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DUCK\n"
+"LngText.text"
+msgid "duck"
+msgstr ""
+
+#. 🦉 (U+1F989), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OWL\n"
+"LngText.text"
+msgid "owl"
+msgstr ""
+
+#. 🦎 (U+1F98E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIZARD\n"
+"LngText.text"
+msgid "lizard"
+msgstr ""
+
+#. 🦈 (U+1F988), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHARK\n"
+"LngText.text"
+msgid "shark"
+msgstr ""
+
+#. 🦐 (U+1F990), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHRIMP\n"
+"LngText.text"
+msgid "shrimp"
+msgstr ""
+
+#. 🦑 (U+1F991), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SQUID\n"
+"LngText.text"
+msgid "squid"
+msgstr ""
+
+#. 🦋 (U+1F98B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BUTTERFLY\n"
+"LngText.text"
+msgid "butterfly"
+msgstr ""
+
+#. 🥀 (U+1F940), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WILTED_FLOWER\n"
+"LngText.text"
+msgid "flower2"
+msgstr ""
+
+#. 🥝 (U+1F95D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KIWI_FRUIT\n"
+"LngText.text"
+msgid "kiwi"
+msgstr ""
+
+#. 🥑 (U+1F951), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AVOCADO\n"
+"LngText.text"
+msgid "avocado"
+msgstr ""
+
+#. 🥔 (U+1F954), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POTATO\n"
+"LngText.text"
+msgid "potato"
+msgstr ""
+
+#. 🥕 (U+1F955), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARROT\n"
+"LngText.text"
+msgid "carrot"
+msgstr ""
+
+#. 🥒 (U+1F952), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUCUMBER\n"
+"LngText.text"
+msgid "cucumber"
+msgstr ""
+
+#. 🥜 (U+1F95C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEANUTS\n"
+"LngText.text"
+msgid "peanuts"
+msgstr ""
+
+#. 🥐 (U+1F950), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CROISSANT\n"
+"LngText.text"
+msgid "croissant"
+msgstr ""
+
+#. 🥖 (U+1F956), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BAGUETTE_BREAD\n"
+"LngText.text"
+msgid "bread2"
+msgstr ""
+
+#. 🥞 (U+1F95E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PANCAKES\n"
+"LngText.text"
+msgid "pancakes"
+msgstr ""
+
+#. 🥓 (U+1F953), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BACON\n"
+"LngText.text"
+msgid "bacon"
+msgstr ""
+
+#. 🥙 (U+1F959), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STUFFED_FLATBREAD\n"
+"LngText.text"
+msgid "flatbread"
+msgstr ""
+
+#. 🥚 (U+1F95A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EGG\n"
+"LngText.text"
+msgid "egg"
+msgstr ""
+
+#. 🥘 (U+1F958), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHALLOW_PAN_OF_FOOD\n"
+"LngText.text"
+msgid "food"
+msgstr ""
+
+#. 🥗 (U+1F957), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GREEN_SALAD\n"
+"LngText.text"
+msgid "salad"
+msgstr ""
+
+#. 🥛 (U+1F95B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GLASS_OF_MILK\n"
+"LngText.text"
+msgid "milk"
+msgstr ""
+
+#. 🥂 (U+1F942), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLINKING_GLASSES\n"
+"LngText.text"
+msgid "party3"
+msgstr ""
+
+#. 🥃 (U+1F943), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TUMBLER_GLASS\n"
+"LngText.text"
+msgid "glass3"
+msgstr ""
+
+#. 🥄 (U+1F944), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPOON\n"
+"LngText.text"
+msgid "spoon"
+msgstr ""
+
+#. 🛴 (U+1F6F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCOOTER\n"
+"LngText.text"
+msgid "scooter"
+msgstr ""
+
+#. 🛵 (U+1F6F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTOR_SCOOTER\n"
+"LngText.text"
+msgid "scooter2"
+msgstr ""
+
+#. 🛑 (U+1F6D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OCTAGONAL_SIGN\n"
+"LngText.text"
+msgid "stop"
+msgstr ""
+
+#. 🛶 (U+1F6F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANOE\n"
+"LngText.text"
+msgid "canoe"
+msgstr ""
+
+#. 🥇 (U+1F947), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"1ST_PLACE_MEDAL\n"
+"LngText.text"
+msgid "gold"
+msgstr ""
+
+#. 🥈 (U+1F948), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"2ND_PLACE_MEDAL\n"
+"LngText.text"
+msgid "silver"
+msgstr ""
+
+#. 🥉 (U+1F949), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"3RD_PLACE_MEDAL\n"
+"LngText.text"
+msgid "bronze"
+msgstr ""
+
+#. 🥊 (U+1F94A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOXING_GLOVE\n"
+"LngText.text"
+msgid "boxing"
+msgstr ""
+
+#. 🥋 (U+1F94B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MARTIAL_ARTS_UNIFORM\n"
+"LngText.text"
+msgid "judo"
+msgstr ""
+
+#. 🥅 (U+1F945), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GOAL_NET\n"
+"LngText.text"
+msgid "soccer2"
+msgstr ""
+
+#. 🥁 (U+1F941), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DRUM_WITH_DRUMSTICKS\n"
+"LngText.text"
+msgid "drum2"
+msgstr ""
+
+#. 🛒 (U+1F6D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOPPING_TROLLEY\n"
+"LngText.text"
+msgid "cart"
+msgstr ""
+
+#. 🤩 (U+1F929), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GRINNING_FACE_WITH_STAR_EYES\n"
+"LngText.text"
+msgid "excited"
+msgstr ""
+
+#. 🤨 (U+1F928), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_ONE_EYEBROW_RAISED\n"
+"LngText.text"
+msgid "eyebrow"
+msgstr ""
+
+#. 🤯 (U+1F92F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOCKED_FACE_WITH_EXPLODING_HEAD\n"
+"LngText.text"
+msgid "shocked"
+msgstr ""
+
+#. 🤪 (U+1F92A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GRINNING_FACE_WITH_ONE_LARGE_AND_ONE_SMALL_EYE\n"
+"LngText.text"
+msgid "zany"
+msgstr ""
+
+#. 🤬 (U+1F92C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SERIOUS_FACE_WITH_SYMBOLS_COVERING_MOUTH\n"
+"LngText.text"
+msgid "cursing"
+msgstr ""
+
+#. 🤮 (U+1F92E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_OPEN_MOUTH_VOMITING\n"
+"LngText.text"
+msgid "vomit"
+msgstr ""
+
+#. 🤫 (U+1F92B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_FINGER_COVERING_CLOSED_LIPS\n"
+"LngText.text"
+msgid "hush"
+msgstr ""
+
+#. 🤭 (U+1F92D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SMILING_FACE_WITH_SMILING_EYES_AND_HAND_COVERING_MOUTH\n"
+"LngText.text"
+msgid "smiling4"
+msgstr ""
+
+#. 🧐 (U+1F9D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_MONOCLE\n"
+"LngText.text"
+msgid "monocle"
+msgstr ""
+
+#. 🧒 (U+1F9D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHILD\n"
+"LngText.text"
+msgid "child"
+msgstr ""
+
+#. 🧑 (U+1F9D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ADULT\n"
+"LngText.text"
+msgid "adult"
+msgstr ""
+
+#. 🧓 (U+1F9D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLDER_ADULT\n"
+"LngText.text"
+msgid "old"
+msgstr ""
+
+#. 🧕 (U+1F9D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_WITH_HEADSCARF\n"
+"LngText.text"
+msgid "headscarf"
+msgstr ""
+
+#. 🧔 (U+1F9D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEARDED_PERSON\n"
+"LngText.text"
+msgid "beard"
+msgstr ""
+
+#. 🤱 (U+1F931), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BREAST-FEEDING\n"
+"LngText.text"
+msgid "baby3"
+msgstr ""
+
+#. 🧙 (U+1F9D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAGE\n"
+"LngText.text"
+msgid "mage"
+msgstr ""
+
+#. 🧚 (U+1F9DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FAIRY\n"
+"LngText.text"
+msgid "fairy"
+msgstr ""
+
+#. 🧛 (U+1F9DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"VAMPIRE\n"
+"LngText.text"
+msgid "vampire"
+msgstr ""
+
+#. 🧜 (U+1F9DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MERPERSON\n"
+"LngText.text"
+msgid "merperson"
+msgstr ""
+
+#. 🧝 (U+1F9DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ELF\n"
+"LngText.text"
+msgid "elf"
+msgstr ""
+
+#. 🧞 (U+1F9DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GENIE\n"
+"LngText.text"
+msgid "genie"
+msgstr ""
+
+#. 🧟 (U+1F9DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZOMBIE\n"
+"LngText.text"
+msgid "zombie"
+msgstr ""
+
+#. 🧖 (U+1F9D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_IN_STEAMY_ROOM\n"
+"LngText.text"
+msgid "sauna"
+msgstr ""
+
+#. 🧗 (U+1F9D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_CLIMBING\n"
+"LngText.text"
+msgid "climber"
+msgstr ""
+
+#. 🧘 (U+1F9D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_IN_LOTUS_POSITION\n"
+"LngText.text"
+msgid "yoga"
+msgstr ""
+
+#. 🤟 (U+1F91F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"I_LOVE_YOU_HAND_SIGN\n"
+"LngText.text"
+msgid "love2"
+msgstr ""
+
+#. 🤲 (U+1F932), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PALMS_UP_TOGETHER\n"
+"LngText.text"
+msgid "palm2"
+msgstr ""
+
+#. 🧠 (U+1F9E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BRAIN\n"
+"LngText.text"
+msgid "brain"
+msgstr ""
+
+#. 🧡 (U+1F9E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ORANGE_HEART\n"
+"LngText.text"
+msgid "orange heart"
+msgstr ""
+
+#. 🧣 (U+1F9E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCARF\n"
+"LngText.text"
+msgid "scarf"
+msgstr ""
+
+#. 🧤 (U+1F9E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GLOVES\n"
+"LngText.text"
+msgid "gloves"
+msgstr ""
+
+#. 🧥 (U+1F9E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COAT\n"
+"LngText.text"
+msgid "coat"
+msgstr ""
+
+#. 🧦 (U+1F9E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SOCKS\n"
+"LngText.text"
+msgid "socks"
+msgstr ""
+
+#. 🧢 (U+1F9E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BILLED_CAP\n"
+"LngText.text"
+msgid "cap"
+msgstr ""
+
+#. 🦓 (U+1F993), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZEBRA\n"
+"LngText.text"
+msgid "zebra"
+msgstr ""
+
+#. 🦒 (U+1F992), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GIRAFFE\n"
+"LngText.text"
+msgid "giraffe"
+msgstr ""
+
+#. 🦔 (U+1F994), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEDGEHOG\n"
+"LngText.text"
+msgid "hedgehog"
+msgstr ""
+
+#. 🦕 (U+1F995), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SAUROPOD\n"
+"LngText.text"
+msgid "dinosaur"
+msgstr ""
+
+#. 🦖 (U+1F996), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"T-REX\n"
+"LngText.text"
+msgid "dinosaur2"
+msgstr ""
+
+#. 🦗 (U+1F997), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRICKET\n"
+"LngText.text"
+msgid "cricket2"
+msgstr ""
+
+#. 🥥 (U+1F965), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COCONUT\n"
+"LngText.text"
+msgid "coconut"
+msgstr ""
+
+#. 🥦 (U+1F966), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BROCCOLI\n"
+"LngText.text"
+msgid "broccoli"
+msgstr ""
+
+#. 🥨 (U+1F968), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRETZEL\n"
+"LngText.text"
+msgid "pretzel"
+msgstr ""
+
+#. 🥩 (U+1F969), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUT_OF_MEAT\n"
+"LngText.text"
+msgid "steak"
+msgstr ""
+
+#. 🥪 (U+1F96A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SANDWICH\n"
+"LngText.text"
+msgid "sandwich"
+msgstr ""
+
+#. 🥣 (U+1F963), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOWL_WITH_SPOON\n"
+"LngText.text"
+msgid "bowl"
+msgstr ""
+
+#. 🥫 (U+1F96B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANNED_FOOD\n"
+"LngText.text"
+msgid "can"
+msgstr ""
+
+#. 🥟 (U+1F95F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DUMPLING\n"
+"LngText.text"
+msgid "dumpling"
+msgstr ""
+
+#. 🥠 (U+1F960), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FORTUNE_COOKIE\n"
+"LngText.text"
+msgid "cookie2"
+msgstr ""
+
+#. 🥡 (U+1F961), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TAKEOUT_BOX\n"
+"LngText.text"
+msgid "takeout"
+msgstr ""
+
+#. 🥧 (U+1F967), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PIE\n"
+"LngText.text"
+msgid "pie"
+msgstr ""
+
+#. 🥤 (U+1F964), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUP_WITH_STRAW\n"
+"LngText.text"
+msgid "drink"
+msgstr ""
+
+#. 🥢 (U+1F962), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHOPSTICKS\n"
+"LngText.text"
+msgid "chopsticks"
+msgstr ""
+
+#. 🛸 (U+1F6F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FLYING_SAUCER\n"
+"LngText.text"
+msgid "ufo"
+msgstr ""
+
+#. 🛷 (U+1F6F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLED\n"
+"LngText.text"
+msgid "sled"
+msgstr ""
+
+#. 🥌 (U+1F94C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CURLING_STONE\n"
+"LngText.text"
+msgid "curling"
+msgstr ""
+
+#. ₿ (U+20BF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BITCOIN_SIGN\n"
+"LngText.text"
+msgid "bitcoin"
+msgstr ""
+
#. ½ (U+000BD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sbasic/shared.po b/source/am/helpcontent2/source/text/sbasic/shared.po
index 6918482a548..df55770b2a2 100644
--- a/source/am/helpcontent2/source/text/sbasic/shared.po
+++ b/source/am/helpcontent2/source/text/sbasic/shared.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-12-06 15:59+0100\n"
-"PO-Revision-Date: 2017-12-10 22:23+0000\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
+"PO-Revision-Date: 2017-12-20 03:14+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1512944639.000000\n"
+"X-POOTLE-MTIME: 1513739643.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -15229,7 +15229,7 @@ msgctxt ""
"03040000.xhp\n"
"par_id111512312705893\n"
"help.text"
-msgid "The following constants are avalable when VBA compatibility mode is enabled"
+msgid "The following constants are available when VBA compatibility mode is enabled"
msgstr "የሚቀጥለው መደበኛ ዝግጁ ነው ለ VBA ተስማሚነት ዘዴ ካስቻሉ"
#: 03040000.xhp
@@ -15253,20 +15253,12 @@ msgctxt ""
"03040000.xhp\n"
"par_id991512312965968\n"
"help.text"
-msgid "Desccription"
+msgid "Description"
msgstr "መግለጫ"
#: 03040000.xhp
msgctxt ""
"03040000.xhp\n"
-"par_id241512313723033\n"
-"help.text"
-msgid "\\x0D (13)"
-msgstr "\\x0D (13)"
-
-#: 03040000.xhp
-msgctxt ""
-"03040000.xhp\n"
"par_id611512313731233\n"
"help.text"
msgid "CR - Carriage return"
@@ -16109,8 +16101,8 @@ msgctxt ""
"03060300.xhp\n"
"tit\n"
"help.text"
-msgid "Imp-Operator [Runtime]"
-msgstr "መፈጸሚያ-አንቀሳቃሽ [ማስኬጃ ጊዜ]"
+msgid "Imp Operator [Runtime]"
+msgstr ""
#: 03060300.xhp
msgctxt ""
@@ -16125,8 +16117,8 @@ msgctxt ""
"03060300.xhp\n"
"hd_id3156024\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Imp-Operator [Runtime]\">Imp Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Imp-Operator [Runtime]\">አንቀሳቃሽ መፈጸሚያ [ማስኬጃ ጊዜ] </link>"
+msgid "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Imp Operator [Runtime]\">Imp Operator [Runtime]</link>"
+msgstr ""
#: 03060300.xhp
msgctxt ""
@@ -16245,8 +16237,8 @@ msgctxt ""
"03060400.xhp\n"
"tit\n"
"help.text"
-msgid "Not-Operator [Runtime]"
-msgstr "አንቀሳቃሽ-አይደለም [ማስኬጃ ጊዜ]"
+msgid "Not Operator [Runtime]"
+msgstr ""
#: 03060400.xhp
msgctxt ""
@@ -16261,7 +16253,7 @@ msgctxt ""
"03060400.xhp\n"
"hd_id3156024\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Not-Operator [Runtime]\">Not-Operator [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Not Operator [Runtime]\">Not Operator [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Not-Operator [Runtime]\">አንቀሳቃሽ አይደለም [ማስኬጃ ጊዜ]</link>"
#: 03060400.xhp
@@ -16373,8 +16365,8 @@ msgctxt ""
"03060500.xhp\n"
"tit\n"
"help.text"
-msgid "Or-Operator [Runtime]"
-msgstr "ወይንም-አንቀሳቃሽ [ማስኬጃ ጊዜ]"
+msgid "Or Operator [Runtime]"
+msgstr ""
#: 03060500.xhp
msgctxt ""
@@ -16389,7 +16381,7 @@ msgctxt ""
"03060500.xhp\n"
"hd_id3150986\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060500.xhp\" name=\"Or-Operator [Runtime]\">Or Operator [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03060500.xhp\" name=\"Or Operator [Runtime]\">Or Operator [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03060500.xhp\" name=\"Or-Operator [Runtime]\">ወይንም አንቀሳቃሽ [ማስኬጃ ጊዜ]</link>"
#: 03060500.xhp
@@ -17053,8 +17045,8 @@ msgctxt ""
"03070600.xhp\n"
"tit\n"
"help.text"
-msgid "Mod-Operator [Runtime]"
-msgstr "ዘዴ-አንቀሳቃሽ [ማስኬጃ ጊዜ]"
+msgid "Mod Operator [Runtime]"
+msgstr ""
#: 03070600.xhp
msgctxt ""
@@ -17069,7 +17061,7 @@ msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod-Operator [Runtime]\">Mod Operator [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator [Runtime]\">Mod Operator [Runtime]</link>"
msgstr "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod-Operator [Runtime]\">ዘዴ አንቀሳቃሽ [ማስኬጃ ጊዜ] </link>"
#: 03070600.xhp
@@ -20477,8 +20469,8 @@ msgctxt ""
"03090203.xhp\n"
"tit\n"
"help.text"
-msgid "While...Wend Statement[Runtime]"
-msgstr "ትንሽ...መምሪያ አረፍተ ነገር[ማስኬጃ ጊዜ]"
+msgid "While...Wend Statement [Runtime]"
+msgstr ""
#: 03090203.xhp
msgctxt ""
@@ -20493,8 +20485,8 @@ msgctxt ""
"03090203.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement[Runtime]\">While...Wend Statement[Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement[Runtime]\">ትንሽ...መምሪያ አረፍተ ነገር[ማስኬጃ ጊዜ]</link>"
+msgid "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement [Runtime]\">While...Wend Statement [Runtime]</link>"
+msgstr ""
#: 03090203.xhp
msgctxt ""
@@ -22462,7 +22454,7 @@ msgctxt ""
"bm_id3153311\n"
"help.text"
msgid "<bookmark_value>Type statement</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>የ አይነት አረፍተ ነገር</bookmark_value>"
#: 03090413.xhp
msgctxt ""
@@ -22470,7 +22462,7 @@ msgctxt ""
"hd_id3153311\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement [Runtime]\">Type Statement [Runtime]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement [Runtime]\">የ አይነት አረፍተ ነገር [ማስኬጃ ጊዜ]</link>"
#: 03090413.xhp
msgctxt ""
@@ -22494,7 +22486,7 @@ msgctxt ""
"par_id211512215755793\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03132400.xhp\" name=\"CreateObject function\">CreateObject function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03132400.xhp\">እቃ መፍጠሪያ ተግባር [ማስኬጃ ጊዜ]</link>"
#: 03100000.xhp
msgctxt ""
@@ -26085,8 +26077,8 @@ msgctxt ""
"03103350.xhp\n"
"hd_id3145090\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement [Runtime]\">Option VBASupport Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement [Runtime]\">በ ምርጫ ግልጽ አረፍተ ነገር [ማስኬጃ ጊዜ]</link>"
+msgid "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option VBASupport Statement [Runtime]\">Option VBASupport Statement [Runtime]</link>"
+msgstr ""
#: 03103350.xhp
msgctxt ""
@@ -26397,8 +26389,8 @@ msgctxt ""
"03103600.xhp\n"
"hd_id3143267\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function[Runtime]\">TypeName Function; VarType Function[Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function[Runtime]\">የ ስም አይነት: የ ተለዋዋጭ አይነት ተግባር[ማስኬጃ ጊዜ]</link>"
+msgid "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function [Runtime]\">TypeName Function; VarType Function [Runtime]</link>"
+msgstr ""
#: 03103600.xhp
msgctxt ""
@@ -26621,8 +26613,8 @@ msgctxt ""
"03103700.xhp\n"
"hd_id3154422\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement[Runtime]\">Set Statement[Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement[Runtime]\">የ ስብስብ አረፍተ ነገር[ማስኬጃ ጊዜ]</link>"
+msgid "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement [Runtime]\">Set Statement [Runtime]</link>"
+msgstr ""
#: 03103700.xhp
msgctxt ""
@@ -26877,8 +26869,8 @@ msgctxt ""
"03104000.xhp\n"
"hd_id3153527\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing function [Runtime]\">IsMissing function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing function [Runtime]\">ጎድሏል ተግባር [ማስኬጃ ጊዜ]</link>"
+msgid "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing Function [Runtime]\">IsMissing Function [Runtime]</link>"
+msgstr ""
#: 03104000.xhp
msgctxt ""
@@ -29144,6 +29136,14 @@ msgctxt ""
msgid "' displays for example 6,328.20 in English locale, 6.328,20 in German locale."
msgstr "' displays for example 6,328.20 in English locale, 6.328,20 in German locale."
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id381513082126889\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020301.xhp\" name=\"number format code\">Number format codes in Calc</link>"
+msgstr ""
+
#: 03120302.xhp
msgctxt ""
"03120302.xhp\n"
@@ -32853,8 +32853,8 @@ msgctxt ""
"03132200.xhp\n"
"hd_id3155342\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent [Runtime]\">ThisComponent [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent [Runtime]\">ይህ አካል [ማስኬጃ ጊዜ]</link>"
+msgid "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent Statement [Runtime]\">ThisComponent Statement [Runtime]</link>"
+msgstr ""
#: 03132200.xhp
msgctxt ""
@@ -34462,7 +34462,7 @@ msgctxt ""
"par_id3151384\n"
"help.text"
msgid "Applies a date and/or time format to a date expression and returns the result as a string."
-msgstr ""
+msgstr "ቀን እና/ወይንም ሰአት አቀራረብ ለ ቀን መግለጫ እና ውጤት እንደ ሀረግ ይመልሳል"
#: 03150000.xhp
msgctxt ""
@@ -34470,7 +34470,7 @@ msgctxt ""
"par_id240720170117391741\n"
"help.text"
msgid "<emph>DateExpression</emph>: The date expression to be formatted."
-msgstr ""
+msgstr "<emph>የ ቀን መግለጫ</emph>: የ ቀን መግለጫ አቀራረብ ሊሰናዳ ነው"
#: 03150000.xhp
msgctxt ""
@@ -34486,7 +34486,7 @@ msgctxt ""
"hd_id811512136434300\n"
"help.text"
msgid "Date and Time formats (vbDateTimeFormat enumeration)"
-msgstr ""
+msgstr "የ ቀን እና ሰአት አቀራረብ (vbDateTimeFormat enumeration)"
#: 03150000.xhp
msgctxt ""
@@ -34494,7 +34494,7 @@ msgctxt ""
"par_id201512137337536\n"
"help.text"
msgid "Named Constant"
-msgstr ""
+msgstr "የ ተሰየመ የማያቋርጥ"
#: 03150000.xhp
msgctxt ""
@@ -34502,7 +34502,7 @@ msgctxt ""
"par_id481512137342798\n"
"help.text"
msgid "Value"
-msgstr ""
+msgstr "ዋጋ"
#: 03150000.xhp
msgctxt ""
@@ -34510,7 +34510,7 @@ msgctxt ""
"par_id781512137345583\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "መግለጫ"
#: 03150000.xhp
msgctxt ""
@@ -34518,7 +34518,7 @@ msgctxt ""
"par_id991512137353869\n"
"help.text"
msgid "Displays a date and/or time as defined in your system's General Date setting. If a date only, no time is displayed; If a time only, no date is displayed."
-msgstr ""
+msgstr "ቀን እና/ወይንም ሰአት ማሳያ እንደ ተገለጸው በ እርስዎ ኮምፒዩተር ስርአት: ባጠቃላይ ቀን ማሰናጃ: ቀን ብቻ ከሆነ: ሰአት አይታይም: ሰአት ብቻ ከሆነ: ቀን አይታይም"
#: 03150000.xhp
msgctxt ""
@@ -34526,7 +34526,7 @@ msgctxt ""
"par_id841512137597989\n"
"help.text"
msgid "Display a date using the long date format specified in your computer's regional settings."
-msgstr ""
+msgstr "ቀን ማሳያ ረጅም የ ቀን አቀራረብ በ መጠቀም የ ተወሰነውን በ እርስዎ ኮምፒዩተር አካባቢ ማሰናጃ"
#: 03150000.xhp
msgctxt ""
@@ -34534,7 +34534,7 @@ msgctxt ""
"par_id841512137397989\n"
"help.text"
msgid "Display a date using the short date format specified in your computer's regional settings."
-msgstr ""
+msgstr "ቀን ማሳያ አጭር የ ቀን አቀራረብ በ መጠቀም የ ተወሰነውን በ እርስዎ ኮምፒዩተር አካባቢ ማሰናጃ"
#: 03150000.xhp
msgctxt ""
@@ -34542,7 +34542,7 @@ msgctxt ""
"par_id841512147597989\n"
"help.text"
msgid "Displays a time as defined in your system's Long Time settings."
-msgstr ""
+msgstr "ሰአት ማሳያ እንደ ተወሰነው በ እርስዎ ስርአት የ ረጅም ሰአት ማሰናጃ"
#: 03150000.xhp
msgctxt ""
@@ -34550,7 +34550,7 @@ msgctxt ""
"par_id841517137597989\n"
"help.text"
msgid "Display a time using the 24-hour format (hh:mm)."
-msgstr ""
+msgstr "ሰአት ማሳያ በ መጠቀም የ 24=ሰአት አቀራረብ (ሰሰ:ደደ)"
#: 03150000.xhp
msgctxt ""
@@ -34606,7 +34606,7 @@ msgctxt ""
"bm_id3150499\n"
"help.text"
msgid "<bookmark_value>WeekdayName function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>የ ስራ ቀን ስም ተግባር</bookmark_value>"
#: 03150001.xhp
msgctxt ""
@@ -34614,7 +34614,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03150001.xhp\" name=\"WeekdayName Function [Runtime - VBA]\">WeekdayName Function [Runtime - VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03150001.xhp\" name=\"WeekdayName Function [Runtime - VBA]\">የ ስራ ቀን ስም ተግባር [ማስኬጃ ጊዜ - VBA]</link>"
#: 03150001.xhp
msgctxt ""
@@ -34622,7 +34622,7 @@ msgctxt ""
"par_id3151384\n"
"help.text"
msgid "The WeekdayName function returns the weekday name of a specified day of the week."
-msgstr ""
+msgstr "የ ስራ ቀን ስም ተግባር የሚመልሰው የ ስራ ቀን ስም ነው ለ ተወሰነው ቀን በ ሳምንት ውስጥ"
#: 03150001.xhp
msgctxt ""
@@ -34630,7 +34630,7 @@ msgctxt ""
"par_id240720170117391741\n"
"help.text"
msgid "<emph>Weekday</emph>: Value from 1 to 7, Mon­day to Sun­day, whose Week Day Name need to be cal­cu­lated."
-msgstr ""
+msgstr "<emph>የ ስራ ቀን</emph>: ዋጋ ከ 1 እስከ 7, ነው: ከ ሰኞ እስከ እሑድ ድረስ: የ ስራ ቀን ስም መሰላት አለበት"
#: 03150001.xhp
msgctxt ""
@@ -34646,7 +34646,7 @@ msgctxt ""
"par_id240720170117395610\n"
"help.text"
msgid "<emph>FirstDayofWeek</emph>: Optional. Specifies the first day of the week."
-msgstr ""
+msgstr "<emph>የ ሳምንቱ መጀመሪያ ቀን</emph>: በ ምርጫ የሚወሰነው የ ሳምንቱ መጀመሪያ ቀን ነው"
#: 03150001.xhp
msgctxt ""
@@ -34654,7 +34654,7 @@ msgctxt ""
"hd_id521512154797683\n"
"help.text"
msgid "First day of Week:"
-msgstr ""
+msgstr "የ ሳምንቱ መጀመሪያ ቀን:"
#: 03150001.xhp
msgctxt ""
@@ -34662,7 +34662,7 @@ msgctxt ""
"par_id921512153192034\n"
"help.text"
msgid "Named constant"
-msgstr ""
+msgstr "የ ተሰየመ የማያቋርጥ"
#: 03150001.xhp
msgctxt ""
@@ -34670,7 +34670,7 @@ msgctxt ""
"par_id611512153251598\n"
"help.text"
msgid "Value"
-msgstr ""
+msgstr "ዋጋ"
#: 03150001.xhp
msgctxt ""
@@ -34678,7 +34678,7 @@ msgctxt ""
"par_id491512153274624\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "መግለጫ"
#: 03150001.xhp
msgctxt ""
@@ -34694,7 +34694,7 @@ msgctxt ""
"par_id151512153594420\n"
"help.text"
msgid "Sun­day (default)"
-msgstr ""
+msgstr "እሑድ (ነባር)"
#: 03150001.xhp
msgctxt ""
@@ -34702,15 +34702,15 @@ msgctxt ""
"par_id211512153874765\n"
"help.text"
msgid "Monday"
-msgstr ""
+msgstr "ሰኞ"
#: 03150001.xhp
msgctxt ""
"03150001.xhp\n"
"par_id801512153944376\n"
"help.text"
-msgid "Tueday"
-msgstr ""
+msgid "Tuesday"
+msgstr "ማክሰኞ"
#: 03150001.xhp
msgctxt ""
@@ -34718,7 +34718,7 @@ msgctxt ""
"par_id551512153998501\n"
"help.text"
msgid "Wednesday"
-msgstr ""
+msgstr "ረቡዕ"
#: 03150001.xhp
msgctxt ""
@@ -34726,7 +34726,7 @@ msgctxt ""
"par_id121512154054207\n"
"help.text"
msgid "Thursday"
-msgstr ""
+msgstr "ሐሙስ"
#: 03150001.xhp
msgctxt ""
@@ -34734,7 +34734,7 @@ msgctxt ""
"par_id571512154112044\n"
"help.text"
msgid "Friday"
-msgstr ""
+msgstr "አርብ"
#: 03150001.xhp
msgctxt ""
@@ -34742,7 +34742,7 @@ msgctxt ""
"par_id541512154172107\n"
"help.text"
msgid "Saturday"
-msgstr ""
+msgstr "ቅዳሜ"
#: 03150001.xhp
msgctxt ""
@@ -34750,7 +34750,7 @@ msgctxt ""
"par_id171512156115581\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "ምንም"
#: 03150002.xhp
msgctxt ""
@@ -34758,7 +34758,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "MonthName Function [Runtime - VBA]"
-msgstr ""
+msgstr "የ ወር ስም ተግባር [ማስኬጃ ጊዜ - VBA]"
#: 03150002.xhp
msgctxt ""
@@ -34766,7 +34766,7 @@ msgctxt ""
"bm_id3150499\n"
"help.text"
msgid "<bookmark_value>MonthName function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>የ ወር ስም ተግባር</bookmark_value>"
#: 03150002.xhp
msgctxt ""
@@ -34774,7 +34774,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03150002.xhp\" name=\"MonthName Function [Runtime - VBA]\">MonthName Function [Runtime - VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03150002.xhp\" name=\"MonthName Function [Runtime - VBA]\">የ ወር ስም ተግባር [ማስኬጃ ጊዜ - VBA]</link>"
#: 03150002.xhp
msgctxt ""
@@ -34806,7 +34806,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Input Function [Runtime - VBA]"
-msgstr ""
+msgstr "የ ማስገቢያ ተግባር [ማስኬጃ ጊዜ - VBA]"
#: 03160000.xhp
msgctxt ""
@@ -34814,7 +34814,7 @@ msgctxt ""
"bm_id3150499\n"
"help.text"
msgid "<bookmark_value>Input function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>የ ማስገቢያ ተግባር</bookmark_value>"
#: 03160000.xhp
msgctxt ""
@@ -34822,7 +34822,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03160000.xhp\" name=\"Input Function [Runtime - VBA]\">Input Function [Runtime - VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03160000.xhp\" name=\"Input Function [Runtime - VBA]\">የ ማስገቢያ ተግባር [ማስኬጃ ጊዜ - VBA]</link>"
#: 03160000.xhp
msgctxt ""
@@ -34846,7 +34846,7 @@ msgctxt ""
"par_id24072017011739895\n"
"help.text"
msgid "<emph>#</emph>: Optional."
-msgstr ""
+msgstr "<emph>#</emph>: በ ምርጫ"
#: 03160000.xhp
msgctxt ""
@@ -34854,7 +34854,7 @@ msgctxt ""
"par_id240720170117395610\n"
"help.text"
msgid "<emph>FileNumber</emph>: Required. Any valid file number."
-msgstr ""
+msgstr "<emph>የ ፋይል ቁጥር</emph>: ማንኛውም ዋጋ ያለው የ ፋይል ቁጥር ያስፈልጋል"
#: 03160000.xhp
msgctxt ""
@@ -34862,7 +34862,7 @@ msgctxt ""
"par_id061420170153186192\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020202.xhp\">Input# statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03020202.xhp\">ማስገቢያ# አረፍተ ነገር</link>"
#: 03170000.xhp
msgctxt ""
@@ -34870,7 +34870,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Round Function [Runtime - VBA]"
-msgstr ""
+msgstr "የ ክብ ተግባር [ማስኬጃ ጊዜ - VBA]"
#: 03170000.xhp
msgctxt ""
@@ -34878,7 +34878,7 @@ msgctxt ""
"bm_id3150499\n"
"help.text"
msgid "<bookmark_value>Round function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>የ ክብ ተግባር</bookmark_value>"
#: 03170000.xhp
msgctxt ""
@@ -34886,7 +34886,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03170000.xhp\" name=\"Round Function [Runtime - VBA]\">Round Function [Runtime - VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03170000.xhp\" name=\"Round Function [Runtime - VBA]\">የ ክብ ተግባር [ማስኬጃ ጊዜ - VBA]</link>"
#: 03170000.xhp
msgctxt ""
@@ -34902,7 +34902,7 @@ msgctxt ""
"par_id240720170117391741\n"
"help.text"
msgid "<emph>expression</emph>: Required. The numeric expression to be rounded."
-msgstr ""
+msgstr "<emph>መግለጫ</emph>: የ ቁጥር መግለጫ ለሚጠጋጋው ያስፈልጋል"
#: 03170000.xhp
msgctxt ""
@@ -34910,7 +34910,7 @@ msgctxt ""
"par_id240720170117395610\n"
"help.text"
msgid "<emph>numdecimalplaces</emph>: Optional. Specifies how many places to the right of the decimal are included in the rounding. Default is 0."
-msgstr ""
+msgstr "<emph>የ ዴሲማል ቁጥር ቦታ</emph>: ከ ዴሲማል በኋላ በ ቀኝ በኩል ምን ያህል ቦታ የሚጠጋጋው እንደሚካተት መወሰኛ: ነባር 0 ነው"
#: 03170000.xhp
msgctxt ""
@@ -34918,7 +34918,7 @@ msgctxt ""
"par_id061420170153186193\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060106.xhp#bm_id3158121\">Calc ROUND function</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060106.xhp#bm_id3158121\">የ ሰንጠረዥ ማጠጋጊያ ተግባር </link>"
#: 05060700.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc/01.po b/source/am/helpcontent2/source/text/scalc/01.po
index abe1d20668b..bc3907ce62f 100644
--- a/source/am/helpcontent2/source/text/scalc/01.po
+++ b/source/am/helpcontent2/source/text/scalc/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-12-06 15:59+0100\n"
-"PO-Revision-Date: 2017-12-09 18:53+0000\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
+"PO-Revision-Date: 2017-12-19 17:20+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1512845616.000000\n"
+"X-POOTLE-MTIME: 1513704001.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -7123,6 +7123,14 @@ msgstr "በ ግምት የ ክፍሎች ይዞታዎች ናቸው A1=<item type=\
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
+"par_id461513468030965\n"
+"help.text"
+msgid "Because of the iterative method used, it is possible for IRR to fail and return <link href=\"text/scalc/05/02140000.xhp\" name=\"Error 523\">Error 523</link>, with \"Error: Calculation does not converge\" in the status bar. In that case, try another value for Guess."
+msgstr ""
+
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
"bm_id3151012\n"
"help.text"
msgid "<bookmark_value>calculating; interests for unchanged amortization installments</bookmark_value> <bookmark_value>interests for unchanged amortization installments</bookmark_value> <bookmark_value>ISPMT function</bookmark_value>"
@@ -52197,8 +52205,8 @@ msgctxt ""
"12040201.xhp\n"
"hd_id3148492\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">More</link>"
-msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">ተጨማሪ</link>"
+msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"Options\">Options</link>"
+msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"Options\">ምርጫዎች</link>"
#: 12040201.xhp
msgctxt ""
@@ -56301,8 +56309,8 @@ msgctxt ""
"data_form.xhp\n"
"par_id221512503284514\n"
"help.text"
-msgid "To be effective, the Calc data table should have a header row, where each cell contents is the label of the column. The header cells contents becomes the label of each data field in the form."
-msgstr ""
+msgid "To be effective, the Calc data table should have a header row, where each cell contents is the label of the column. The header cells contents become the label of each data field in the form."
+msgstr "ውጤታማ ለ መሆን: የ ሰንጠረዥ ዳታ ሰንጠረዥ የ ራስጌ ረድፍ ሊኖረው ይገባል: የ እያንዳንዱ ክፍል ይዞታዎች የ አምድ ምልክት ነው: የ ራስጌ ክፍሎች ይዞታዎች ምልክት ይሆናሉ ለ እያንዳንዱ ዳታ ሜዳ በ ፎርሙ ውስጥ"
#: data_form.xhp
msgctxt ""
@@ -56325,8 +56333,8 @@ msgctxt ""
"data_form.xhp\n"
"par_id11512503369875\n"
"help.text"
-msgid "Choose <item type=\"menutiem\">Data - Form...</item>."
-msgstr "ይምረጡ <item type=\"menutiem\"> የ ዳታ - ፎርም...</item>"
+msgid "Choose <item type=\"menuitem\">Data - Form...</item>."
+msgstr "ይምረጡ <item type=\"menuitem\"> የ ዳታ - ፎርም...</item>"
#: data_form.xhp
msgctxt ""
@@ -56350,7 +56358,7 @@ msgctxt ""
"par_id981512503964001\n"
"help.text"
msgid "<emph>New</emph>: fill the record (table row cells) with the form fields contents and jump to the next record or add a new record in the bottom of the table."
-msgstr ""
+msgstr "<emph> አዲስ </emph>: መዝገብ መሙያ (የ ሰንጠረዥ ረድፍ ክፍሎች) በ ፎርም ሜዳ ይዞታዎች እና ይዘላል ወደ የሚቀጥለው መዝገብ ወይንም አዲስ መዝገብ ይጨምራል ከ ሰንጠረዡ በ ታች በኩል"
#: data_form.xhp
msgctxt ""
@@ -56366,7 +56374,7 @@ msgctxt ""
"par_id11512503887586\n"
"help.text"
msgid "<emph>Restore</emph>: when a form field is edited, restore the record contents to its initial state."
-msgstr ""
+msgstr "<emph>እንደ ነበር መመለሻ</emph>: የ ፎርም ሜዳ በሚታረም ጊዜ: የ መዝገብ ሁኔታዎችን እንደ ነበር መመለሻ ወደ መጀመሪያው ሁኔታ"
#: data_form.xhp
msgctxt ""
@@ -56398,7 +56406,7 @@ msgctxt ""
"par_id951512509971073\n"
"help.text"
msgid "<image src=\"media/helpimg/sc_data_form01.png\" id=\"img_id951512509971073\"> <alt id=\"alt_id951512509971073\">The form dialog box and header row cells as field labels</alt> </image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sc_data_form01.png\" id=\"img_id951512509971073\"> <alt id=\"alt_id951512509971073\">የ ፎርም ንግግር ሳጥን እና የ ራስጌ ረድፍ ክፍሎች እንደ ሜዳ ምልክቶች </alt> </image>"
#: data_form.xhp
msgctxt ""
@@ -56429,7 +56437,7 @@ msgctxt ""
"data_form.xhp\n"
"par_id181512558987528\n"
"help.text"
-msgid "To reopen the form dialog, place the cursor on the header row and open the form. The displayed record in the form dialog is the fisrt data record. Move to the last record before entering new data otherwise the current record will be edited."
+msgid "To reopen the form dialog, place the cursor on the header row and open the form. The displayed record in the form dialog is the first data record. Move to the last record before entering new data otherwise the current record will be edited."
msgstr ""
#: data_form.xhp
@@ -64550,7 +64558,7 @@ msgctxt ""
"bm_id2764278\n"
"help.text"
msgid "<bookmark_value>Analysis toolpack;sampling</bookmark_value><bookmark_value>sampling;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;sampling</bookmark_value>"
-msgstr "<bookmark_value>መመርመሪያ የ እቃ ጥቅል: ናሙና</bookmark_value><bookmark_value>ናሙና: መመርመሪያ የ እቃ ጥቅል</bookmark_value><bookmark_value>የ ዳታ ስታትስቲክስ: ናሙና</bookmark_value>"
+msgstr "<bookmark_value>መመርመሪያ የ እቃ ጥቅል;ናሙና</bookmark_value><bookmark_value>ናሙና;መመርመሪያ የ እቃ ጥቅል</bookmark_value><bookmark_value>የ ዳታ ስታትስቲክስ;ናሙና</bookmark_value>"
#: statistics.xhp
msgctxt ""
@@ -65541,48 +65549,48 @@ msgctxt ""
"statistics.xhp\n"
"bm_id05001\n"
"help.text"
-msgid "<bookmark_value>Analysis toolpack;t-test</bookmark_value><bookmark_value>t-test;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;t-test</bookmark_value>"
-msgstr "<bookmark_value>መመርመሪያ የ እቃ ጥቅል: t-መሞከሪያ</bookmark_value><bookmark_value>t-መሞከሪያ: መመርመሪያ የ እቃ ጥቅል</bookmark_value><bookmark_value>የ ዳታ ስታትስቲክስ: t-መሞከሪያ</bookmark_value>"
+msgid "<bookmark_value>Analysis toolpack;t-test</bookmark_value><bookmark_value>Analysis toolpack;paired t-test</bookmark_value><bookmark_value>t-test;Analysis toolpack</bookmark_value><bookmark_value>paired t-test;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;paired t-test</bookmark_value>"
+msgstr "<bookmark_value>መመርመሪያ የ እቃ ጥቅል;t-መሞከሪያ</bookmark_value><bookmark_value>መመርመሪያ የ እቃ ጥቅል;የ ተጣመረ t-መሞከሪያ</bookmark_value><bookmark_value>t-መሞከሪያ;መመርመሪያ የ እቃ ጥቅል</bookmark_value><bookmark_value>የ ተጣመረ t-መሞከሪያ;መመርመሪያ የ እቃ ጥቅል</bookmark_value><bookmark_value>የ ዳታ ስታትስቲክስ;የ ተጣመረ t-መሞከሪያ</bookmark_value>"
#: statistics.xhp
msgctxt ""
"statistics.xhp\n"
"hd_id1000150\n"
"help.text"
-msgid "t-test"
-msgstr "t-መሞከሪያ"
+msgid "Paired t-test"
+msgstr "የ ተጣመረ t-መሞከሪያ"
#: statistics.xhp
msgctxt ""
"statistics.xhp\n"
"par_id1002820\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/ttestdialog/TTestDialog\">Calculates the t-Test of two data samples.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/ttestdialog/TTestDialog\">የ t-መሞከሪያ ለ ሁለት ዳታ ናሙናዎች ማስሊያ </ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/ttestdialog/TTestDialog\">Calculates the paired t-Test of two data samples.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/ttestdialog/TTestDialog\"> የ ተጣመረ t-መሞከሪያ ለ ሁለት ዳታ ናሙናዎች ማስሊያ </ahelp>"
#: statistics.xhp
msgctxt ""
"statistics.xhp\n"
"par_id1002830\n"
"help.text"
-msgid "<variable id=\"sam01\">Choose <emph>Data - Statistics - t-test</emph></variable>"
-msgstr "<variable id=\"sam01\">ይምረጡ <emph> ዳታ - ስታትስቲክስ - t-መሞከሪያ </emph></variable>"
+msgid "<variable id=\"sam01\">Choose <emph>Data - Statistics - Paired t-test</emph></variable>"
+msgstr "<variable id=\"sam01\">ይምረጡ <emph> ዳታ - ስታትስቲክስ - የ ተጣመረ t-መሞከሪያ </emph></variable>"
#: statistics.xhp
msgctxt ""
"statistics.xhp\n"
"par_id1002840\n"
"help.text"
-msgid "A <emph>t-test</emph> is any statistical hypothesis test that follows a Student's t distribution."
-msgstr "የ <emph>t-መሞከሪያ</emph> የ ማንኛውም ስታትስትኪስ መላምት መሞከሪያ የ ተማሪዎች የ t ስርጭት ይከተታል"
+msgid "A <emph>paired t-test</emph> is any statistical hypothesis test that follows a Student's t distribution."
+msgstr "የ <emph> ተጣመረ t-መሞከሪያ </emph> የ ማንኛውም ስታትስትኪስ መላምት መሞከሪያ ነው: የ ተማሪዎች የ t ስርጭት የሚከተል"
#: statistics.xhp
msgctxt ""
"statistics.xhp\n"
"par_id1002850\n"
"help.text"
-msgid "For more information on t-tests, refer to the <link href=\"http://en.wikipedia.org/wiki/T-test\">corresponding Wikipedia article</link>."
-msgstr "ለ በለጠ መረጃ ስለ t-መሞከሪያ: ማመሳከሪያ ለ <link href=\"http://en.wikipedia.org/wiki/T-test\"> ተመሳሳይ ጽሁፍ በ Wikipedia </link>."
+msgid "For more information on paired t-tests, refer to the <link href=\"http://en.wikipedia.org/wiki/T-test\">corresponding Wikipedia article</link>."
+msgstr "ለ በለጠ መረጃ ስለ የ ተጣመረ t-መሞከሪያ: ማመሳከሪያ ለ <link href=\"http://en.wikipedia.org/wiki/T-test\"> ተመሳሳይ ጽሁፍ በ Wikipedia ውስጥ </link>"
#: statistics.xhp
msgctxt ""
@@ -65621,24 +65629,24 @@ msgctxt ""
"statistics.xhp\n"
"hd_id1000170\n"
"help.text"
-msgid "Results for t-Test:"
-msgstr "ውጤቶች ለ t-መሞከሪያ:"
+msgid "Results for paired t-test:"
+msgstr "ውጤት ለ ተጣመረ t-መሞከሪያ:"
#: statistics.xhp
msgctxt ""
"statistics.xhp\n"
"par_id1002890\n"
"help.text"
-msgid "The following table shows the <emph>t-Test</emph> for the data series above:"
-msgstr "የሚቀጥለው ሰንጠረዥ የሚያሳየው የ <emph>t-መሞከሪያ</emph> ነው ለ ተከታታይ ዳታ ከ ላይ ለሚታየው:"
+msgid "The following table shows the <emph>paired t-test</emph> for the data series above:"
+msgstr "የሚቀጥለው ሰንጠረዥ የሚያሳየው የ <emph>የ ተጣመረ t-መሞከሪያ </emph> ነው ለ ተከታታይ ዳታ ከ ላይ ለሚታየው:"
#: statistics.xhp
msgctxt ""
"statistics.xhp\n"
"par_id1002900\n"
"help.text"
-msgid "t-test"
-msgstr "t-መሞከሪያ"
+msgid "paired t-test"
+msgstr "የ ተጣመረ ~t-መሞከሪያ"
#: statistics.xhp
msgctxt ""
@@ -66509,8 +66517,8 @@ msgctxt ""
"statistics_regression.xhp\n"
"par_id14337286612130\n"
"help.text"
-msgid "<link href=\"text/scalc/01/statistics.xhp#datasampling\">Sampling</link>, <link href=\"text/scalc/01/statistics.xhp#descriptivestatistics\">Descriptive Statistics</link>, <link href=\"text/scalc/01/statistics.xhp#anova\">Analysis of Variance (ANOVA)</link>, <link href=\"text/scalc/01/statistics.xhp#correlation\">Correlation</link>, <link href=\"text/scalc/01/statistics.xhp#covariance\">Covariance</link>, <link href=\"text/scalc/01/statistics.xhp#exponentialsmoothing\">Exponential Smoothing</link>, <link href=\"text/scalc/01/statistics.xhp#movingaverage\">Moving Average</link>, <link href=\"text/scalc/01/statistics.xhp#ttest\">t-test</link>, <link href=\"text/scalc/01/statistics.xhp#ftest\">F-test</link>, <link href=\"text/scalc/01/statistics.xhp#ztest\">Z-test</link>, <link href=\"text/scalc/01/statistics.xhp#chisqtest\">Chi-square test</link>."
-msgstr "<link href=\"text/scalc/01/statistics.xhp#datasampling\">ናሙና </link>, <link href=\"text/scalc/01/statistics.xhp#descriptivestatistics\"> መግለጫ ስታስቲክስ</link>: <link href=\"text/scalc/01/statistics.xhp#anova\"> መመርመሪያ የ ልዩነት (ANOVA)</link>: <link href=\"text/scalc/01/statistics.xhp#correlation\"> ግንኙነት </link>:, <link href=\"text/scalc/01/statistics.xhp#covariance\"> ኮቫሪያንስ </link>: <link href=\"text/scalc/01/statistics.xhp#exponentialsmoothing\"> ኤክስፖኔንሺያል ማለስለሻ </link>: <link href=\"text/scalc/01/statistics.xhp#movingaverage\"> በ መካከለኛ በ መጓዝ ላይ </link>: <link href=\"text/scalc/01/statistics.xhp#ttest\"> t-መሞከሪያ </link>: <link href=\"text/scalc/01/statistics.xhp#ftest\"> F-መሞከሪያ </link>: <link href=\"text/scalc/01/statistics.xhp#ztest\"> Z-መሞከሪያ </link>: <link href=\"text/scalc/01/statistics.xhp#chisqtest\"> ቺ-ስኴር መሞከሪያ </link>:"
+msgid "<link href=\"text/scalc/01/statistics.xhp#datasampling\">Sampling</link>, <link href=\"text/scalc/01/statistics.xhp#descriptivestatistics\">Descriptive Statistics</link>, <link href=\"text/scalc/01/statistics.xhp#anova\">Analysis of Variance (ANOVA)</link>, <link href=\"text/scalc/01/statistics.xhp#correlation\">Correlation</link>, <link href=\"text/scalc/01/statistics.xhp#covariance\">Covariance</link>, <link href=\"text/scalc/01/statistics.xhp#exponentialsmoothing\">Exponential Smoothing</link>, <link href=\"text/scalc/01/statistics.xhp#movingaverage\">Moving Average</link>, <link href=\"text/scalc/01/statistics.xhp#ttest\">Paired t-test</link>, <link href=\"text/scalc/01/statistics.xhp#ftest\">F-test</link>, <link href=\"text/scalc/01/statistics.xhp#ztest\">Z-test</link>, <link href=\"text/scalc/01/statistics.xhp#chisqtest\">Chi-square test</link>."
+msgstr "<link href=\"text/scalc/01/statistics.xhp#datasampling\">ናሙና</link>, <link href=\"text/scalc/01/statistics.xhp#descriptivestatistics\">መግለጫ ስታስቲክስ</link>, <link href=\"text/scalc/01/statistics.xhp#anova\"> መመርመሪያ የ ልዩነት (ANOVA)</link>, <link href=\"text/scalc/01/statistics.xhp#correlation\">ግንኙነት</link>, <link href=\"text/scalc/01/statistics.xhp#covariance\">ኮቫሪያንስ</link>, <link href=\"text/scalc/01/statistics.xhp#exponentialsmoothing\">ኤክስፖኔንሺያል ማለስለሻ</link>, <link href=\"text/scalc/01/statistics.xhp#movingaverage\">በ መካከለኛ በ መጓዝ ላይ</link>, <link href=\"text/scalc/01/statistics.xhp#ttest\">የ ተጣመረ t-መሞከሪያ </link>, <link href=\"text/scalc/01/statistics.xhp#ftest\">F-መሞከሪያ</link>, <link href=\"text/scalc/01/statistics.xhp#ztest\">Z-መሞከሪያ</link>, <link href=\"text/scalc/01/statistics.xhp#chisqtest\">ቺ-ስኴር መሞከሪያ</link>"
#: text2columns.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sdraw.po b/source/am/helpcontent2/source/text/sdraw.po
index e0d402438a1..9a117871b48 100644
--- a/source/am/helpcontent2/source/text/sdraw.po
+++ b/source/am/helpcontent2/source/text/sdraw.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: 2017-10-04 11:48+0200\n"
-"PO-Revision-Date: 2017-10-09 14:54+0000\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
+"PO-Revision-Date: 2017-12-18 16:08+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1507560880.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1513613336.000000\n"
#: main0000.xhp
msgctxt ""
@@ -104,62 +104,6 @@ msgctxt ""
msgid "This menu contains general commands for working with Draw documents, such as open, close and print. To close $[officename] Draw, click <emph>Exit</emph>."
msgstr "ይህ ዝርዝር የያዛቸው ጠቅላላ ትእዛዞች በ መሳያ ሰነድ እንዴት እንደሚሰሩ ነው: እንደ መክፈቻ መዝጊያ እና ማተሚያ ለ መዝጋት $[officename] መሳያን ይጫኑ <emph> መውጫ </emph>:"
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3156441\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
-msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">መክፈቻ</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3153876\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
-msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">ማስቀመጫ እንደ</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3150718\n"
-"help.text"
-msgid "<link href=\"text/simpress/01/01170000.xhp\" name=\"Export\">Export</link>"
-msgstr "<link href=\"text/simpress/01/01170000.xhp\" name=\"Export\">መላኪያ</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3154754\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
-msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">እትሞች</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3150044\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
-msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">ባህሪዎች</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3149127\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
-msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">ማተሚያ</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3145790\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\">Printer Settings</link>"
-msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\">ማተሚያ ማሰናጃ</link>"
-
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
diff --git a/source/am/helpcontent2/source/text/shared.po b/source/am/helpcontent2/source/text/shared.po
index faf5f15d982..edfda9a1ec5 100644
--- a/source/am/helpcontent2/source/text/shared.po
+++ b/source/am/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: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
"PO-Revision-Date: 2017-11-23 01:11+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1511399485.000000\n"
#: 3dsettings_toolbar.xhp
@@ -1936,70 +1936,6 @@ msgctxt ""
msgid "This section provides a general glossary of technical terms used in $[officename], along with a list of Internet terms."
msgstr "ይህ ክፍል የሚያቀርበው መረጃ ባጠቃላይ ስለ ኢንተርኔት ቴክኒካል ጉዳይ ነው $[officename], አስፈላጊ የ ኢንተርኔት ደንብ ቃላት መፍቻ"
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"tit\n"
-"help.text"
-msgid "Programming $[officename]"
-msgstr "ፕሮግራም $[officename]"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"bm_id3154232\n"
-"help.text"
-msgid "<bookmark_value>programming;$[officename]</bookmark_value><bookmark_value>Basic;programming</bookmark_value>"
-msgstr "<bookmark_value>ፕሮግራም: $[officename]</bookmark_value><bookmark_value>Basic: ፕሮግራም</bookmark_value>"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"hd_id3154232\n"
-"help.text"
-msgid "<variable id=\"programming\"><link href=\"text/shared/main0600.xhp\" name=\"Programming $[officename]\">Programming $[officename]</link></variable>"
-msgstr "<variable id=\"programming\"><link href=\"text/shared/main0600.xhp\" name=\"Programming $[officename]\">ፕሮግራም $[officename]</link></variable>"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3149760\n"
-"help.text"
-msgid "<variable id=\"basic\">$[officename] can be controlled by using the $[officename] API. </variable>"
-msgstr "<variable id=\"basic\">$[officename] መቆጣጠር ይችላሉ ይህን በመጠቀም $[officename] API. </variable>"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3151111\n"
-"help.text"
-msgid "$[officename] provides an Application Programming Interface (API) that enables you to control $[officename] components by using various programming languages. A $[officename] Software Development Kit is available for the programming interface."
-msgstr "$[officename] ያቀርባል የ Application Programming Interface (API) እርስዎን መቆጣጠር ያስችሎታል $[officename] አካላቶችን የ ተለያዩ የ programming ቋንቋዎች በ መጠቀም: የ $[officename] ሳፍትዌር ማበልጸጊያ ጥቅል ዝግጁ ነው ለ programming interface."
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3156346\n"
-"help.text"
-msgid "For more information about $[officename] API reference, please visit http://api.libreoffice.org/"
-msgstr "በ በለጠ ለመረዳት ስለ $[officename] API reference, ይህን ድህረ ገጽ ይጎብኙ http://api.libreoffice.org/"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3153825\n"
-"help.text"
-msgid "Macros created with $[officename] Basic based on the old programming interface will no longer be supported by the current version."
-msgstr "ማክሮስ የ ተፈጠረው በ $[officename] Basic መሰረት ባደረገ የ አሮጌው ፕሮግራም ገጽታ በ አሁኑ እትም የተደገፈ አይደለም"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3149795\n"
-"help.text"
-msgid "For more information on $[officename] Basic, select \"$[officename] Basic\" in the list box."
-msgstr "በበለጠ ለ መረዳት በ $[officename] Basic, ይምረጡ \"$[officename] Basic\" ከ ዝርዝር ሳጥን ውስጥ"
-
#: main0650.xhp
msgctxt ""
"main0650.xhp\n"
diff --git a/source/am/helpcontent2/source/text/shared/00.po b/source/am/helpcontent2/source/text/shared/00.po
index 5ec112f0d3d..47eb93adbdf 100644
--- a/source/am/helpcontent2/source/text/shared/00.po
+++ b/source/am/helpcontent2/source/text/shared/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-11-23 03:23+0000\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
+"PO-Revision-Date: 2017-12-18 17:11+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1511407428.000000\n"
+"X-POOTLE-MTIME: 1513617094.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -2597,8 +2597,8 @@ msgctxt ""
"00000010.xhp\n"
"par_id3154317\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">Deletes the current selection. If multiple objects are selected, all will be deleted. In most cases, a <link href=\"text/shared/01/03150100.xhp\" name=\"security query\">security query</link> appears before objects are deleted.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">አሁን የ ተመረጠውን ማጥፊያ: በርካታ እቃዎች ተመርጠው ከሆነ: ሁሉም ይጠፋሉ: አብዛኛውን ጊዜ የ <link href=\"text/shared/01/03150100.xhp\" name=\"security query\">ደህንነት ጥያቄ</link> ይታያል እቃው ከ መጥፋቱ በፊት</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">Deletes the current selection. If multiple objects are selected, all will be deleted. In most cases, a confirmation question appears before objects are deleted.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">አሁን የ ተመረጠውን ማጥፊያ: በርካታ እቃዎች ተመርጠው ከሆነ: ሁሉም ይጠፋሉ: አብዛኛውን ጊዜ የ ማረጋገጫ ጥያቄ ይታያል እቃው ከ መጥፋቱ በፊት</ahelp>"
#: 00000010.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/01.po b/source/am/helpcontent2/source/text/shared/01.po
index 291657adc87..c0a935fd374 100644
--- a/source/am/helpcontent2/source/text/shared/01.po
+++ b/source/am/helpcontent2/source/text/shared/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-12-06 15:59+0100\n"
-"PO-Revision-Date: 2017-12-09 18:59+0000\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
+"PO-Revision-Date: 2017-12-19 16:32+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1512845988.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1513701144.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -1045,8 +1045,8 @@ msgctxt ""
"01010203.xhp\n"
"par_id3155355\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/labeloptionspage/entirepage\" visibility=\"visible\">Creates a full page of labels or business cards.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/labeloptionspage/entirepage\" visibility=\"visible\">በሙሉ ገጽ ምልክቶች ወይንም የንግድ ካርዶች መፍጠሪያ</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/labeloptionspage/entirepage\" visibility=\"visible\">Creates a full page of labels or business cards.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/labeloptionspage/entirepage\" visibility=\"visible\">በ ሙሉ ገጽ ምልክቶች ወይንም የ ንግድ ካርዶች መፍጠሪያ</ahelp>"
#: 01010203.xhp
msgctxt ""
@@ -1061,8 +1061,8 @@ msgctxt ""
"01010203.xhp\n"
"par_id3155535\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/labeloptionspage/singlelabel\" visibility=\"visible\">Prints a single label or business card on a page.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/labeloptionspage/singlelabel\" visibility=\"visible\">ነጠላ ምልክት ወይንም የ ንግድ ካርዶች በ ገጹ ላዩ ማተሚያ</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/labeloptionspage/singlelabel\" visibility=\"visible\">Prints a single label or business card on a page.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/labeloptionspage/singlelabel\" visibility=\"visible\">ነጠላ ምልክት ወይንም የ ንግድ ካርዶች በ ገጹ ላዩ ማተሚያ</ahelp>"
#: 01010203.xhp
msgctxt ""
@@ -2080,6 +2080,78 @@ msgctxt ""
msgid "<link href=\"text/shared/00/00000020.xhp\" name=\"Import and Export Filters\">Import and Export Filters</link>"
msgstr "<link href=\"text/shared/00/00000020.xhp\" name=\"Import and Export Filters\">ማጣሪያዎች ማምጫ እና መላኪያ</link>"
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"tit\n"
+"help.text"
+msgid "Open Remote..."
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"bm_id1001513636856122\n"
+"help.text"
+msgid "<bookmark_value>remote file;open</bookmark_value> <bookmark_value>open;remote file</bookmark_value>"
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"hd_id151513629025611\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01020001.xhp\" name=\"Open Remote...\">Open Remote...</link>"
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"par_id771513629025613\n"
+"help.text"
+msgid "<variable id=\"openremote1\"><ahelp hid=\".uno:OpenRemote\"/>Opens a document located in a remote file service.</variable>"
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"par_id611513629210220\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">File - Open Remote..</item>"
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"par_id151513629855154\n"
+"help.text"
+msgid "Click the <emph>Remote Files</emph> button in the <emph>Start Center</emph>"
+msgstr ""
+
+#: 01020001.xhp
+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>"
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"par_id531513630220632\n"
+"help.text"
+msgid "A remote file server is web service that stores documents with or without check-in, check-out, version controls and backups."
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"par_id951513629981585\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/cmis-remote-files.xhp\" name=\"CMIS\">Opening and saving files in remote servers</link>"
+msgstr ""
+
#: 01020101.xhp
msgctxt ""
"01020101.xhp\n"
@@ -2320,6 +2392,142 @@ msgctxt ""
msgid "When you edit an AutoText entry, this command changes to <emph>Save AutoText</emph>."
msgstr "እርስዎ በሚያርሙ ጊዜ በራሱ ጽሁፍ ማስገቢያ ይህ ትእዛዝ ይቀየራል ወደ <emph>ማስቀመጫ በራሱ ጽሁፍ</emph>."
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"tit\n"
+"help.text"
+msgid "Save Remote..."
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"bm_id381513636896997\n"
+"help.text"
+msgid "<bookmark_value>remote file;save</bookmark_value> <bookmark_value>save;remote file</bookmark_value>"
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"hd_id151513629025611\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01060001.xhp\" name=\"Save Remote...\">Save Remote...</link>"
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"par_id771513629025613\n"
+"help.text"
+msgid "<variable id=\"saveremote1\"><ahelp hid=\".uno:SaveRemote\"/>Saves a document located in a remote file service.</variable>"
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"par_id611513629210220\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">File - Save Remote..</item>"
+msgstr ""
+
+#: 01060001.xhp
+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>"
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"par_id531513630220632\n"
+"help.text"
+msgid "A remote file server is web service that stores documents with or without check-in, check-out, version controls and backups."
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"par_id951513629981585\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/cmis-remote-files.xhp\" name=\"CMIS\">Opening and saving files in remote servers</link>"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"tit\n"
+"help.text"
+msgid "Save a Copy"
+msgstr "ኮፒ ማስቀመጫ"
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"bm_id241513636774794\n"
+"help.text"
+msgid "<bookmark_value>save;save a copy</bookmark_value> <bookmark_value>save a copy</bookmark_value>"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id391513471676787\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01060002.xhp\" name=\"Save a Copy\">Save a Copy</link>"
+msgstr "<link href=\"text/shared/01/01060002.xhp\" name=\"Save a Copy\">ኮፒ ማስቀመጫ</link>"
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id1001513471674465\n"
+"help.text"
+msgid "<variable id=\"saveacopy1\"><ahelp hid=\".uno:SaveACopy\">Save a copy of the actual document with another name or location.</ahelp></variable>"
+msgstr "<variable id=\"saveacopy1\"><ahelp hid=\".uno:SaveACopy\">የ ዋናውን ሰነድ ኮፒ ማስቀመጫ በ ሌላ ስም ወይንም አካባቢ </ahelp></variable>"
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id701513472080716\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">File - Save a Copy</item>"
+msgstr "ይምረጡ <item type=\"menuitem\"> ፋይል - ኮፒ ማስቀመጫ </item>"
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id881513473450156\n"
+"help.text"
+msgid "Creates another file with same contents of the current file. The current file is kept opened for edition."
+msgstr "የ አሁኑን ፋይል ሌላ ፋይል መፍጠሪያ ከ ተመሳሳይ ይዞታ ጋር: የ አሁኑ ፋይል እንደ ተከፈተ ይቆያል ለ ማረም"
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id21513472326060\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01060000.xhp\" name=\"Save\">Save</link>"
+msgstr "<link href=\"text/shared/01/01060000.xhp\" name=\"Save\">ማስቀመጫ</link>"
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id411513472333495\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save as</link>"
+msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">ማስቀመጫ እንደ</link>"
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id681513472341081\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01070001.xhp\" name=\"Export\">Export</link>"
+msgstr "<link href=\"text/shared/01/01070001.xhp\" name=\"Export\">መላኪያ</link>"
+
#: 01070000.xhp
msgctxt ""
"01070000.xhp\n"
@@ -2664,6 +2872,78 @@ msgctxt ""
msgid "Export"
msgstr "መላኪያ"
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"tit\n"
+"help.text"
+msgid "Export As"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"bm_id781513636674523\n"
+"help.text"
+msgid "<bookmark_value>export as;PDF</bookmark_value> <bookmark_value>export as;EPUB</bookmark_value>"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"hd_id751513634008094\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01070002.xhp\" name=\"Export As...\">Export As...</link>"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"par_id791513634008095\n"
+"help.text"
+msgid "<variable id=\"exportas1\"><ahelp hid=\".\">Export the document in PDF or EPUB formats</ahelp></variable>"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"par_id971513634212601\n"
+"help.text"
+msgid "Choose <emph>File - Export As...</emph>"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"hd_id71513635341099\n"
+"help.text"
+msgid "Export Directly as PDF"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"par_id961513635511473\n"
+"help.text"
+msgid "Export the entire document using your default PDF settings."
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"hd_id851513635358546\n"
+"help.text"
+msgid "Export Directly as EPUB"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"par_id811513635541682\n"
+"help.text"
+msgid "Export the entire document using your default EPUB settings."
+msgstr ""
+
#: 01100000.xhp
msgctxt ""
"01100000.xhp\n"
@@ -11752,94 +12032,6 @@ msgctxt ""
msgid "You can still use shortcut keys in <emph>Full Screen</emph> mode, even though the menus are unavailable. <switchinline select=\"sys\"><caseinline select=\"WIN\">To open the <emph>View</emph> menu, press Alt+V. </caseinline></switchinline>"
msgstr "እርስዎ አቋራጭ ክፍሎችን መጠቀም ይችላሉ ለ <emph> ሙሉ መመልከቻ </emph> ዘዴ: ምንም እንኳን ዝርዝሩ ባይኖርም <switchinline select=\"sys\"><caseinline select=\"WIN\">ለ መክፈት የ <emph> መመልከቻ </emph> ዝርዝር: ይጫኑ Alt+V. </caseinline></switchinline>"
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Confirm Delete"
-msgstr "ማጥፊያ ማረጋገጫ"
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"hd_id3150278\n"
-"help.text"
-msgid "Confirm Delete"
-msgstr "ማጥፊያ ማረጋገጫ"
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"par_id3148668\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:MODALDIALOG:DLG_SFX_QUERYDELETE\" visibility=\"visible\">Confirms or cancels the deletion.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:MODALDIALOG:DLG_SFX_QUERYDELETE\" visibility=\"visible\">ማረጋገጫ ወይንም መሰረዣ ማጥፊያውን</ahelp>"
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"hd_id3152821\n"
-"help.text"
-msgid "Delete"
-msgstr "ማጥፊያ"
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"par_id3150040\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_YES\" visibility=\"visible\">Performs the deletion in the current file.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_YES\" visibility=\"visible\">በ አሁኑ ፋይል ውስጥ ማጥፋት ተፈጽሟል</ahelp>"
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"hd_id3149999\n"
-"help.text"
-msgid "Delete All"
-msgstr "ሁሉንም ማጥፊያ"
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"par_id3155616\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_ALL\" visibility=\"visible\">Performs the deletion in all selected files.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_ALL\" visibility=\"visible\">በሁሉም በተመርረጡት ፋይሎች ውስጥ ማጥፋት ተፈጽሟል</ahelp>"
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"hd_id3157991\n"
-"help.text"
-msgid "Do Not Delete"
-msgstr "አታጥፋ"
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"par_id3147043\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_NO\" visibility=\"visible\">Rejects the deletion for the current file.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_NO\" visibility=\"visible\">የ አሁኑን ፋይል ማጥፋት አይቻልም</ahelp>"
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"hd_id3149346\n"
-"help.text"
-msgid "Cancel"
-msgstr "መሰረዣ"
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"par_id3148620\n"
-"help.text"
-msgid "Cancels the deletion in the current file and any other selected files."
-msgstr "የ አሁኑን ፋይል እና ሌሎች የተመረጡን ፋይሎች ማጥፋት አይቻልም"
-
#: 03170000.xhp
msgctxt ""
"03170000.xhp\n"
@@ -22125,16 +22317,24 @@ msgctxt ""
"05110600m.xhp\n"
"tit\n"
"help.text"
-msgid "Space Rows Equally"
-msgstr "የ ረድፎች ክፍተት እኩል ማድረጊያ"
+msgid "Distribute Rows Equally"
+msgstr "ረድፎችን እኩል ማሰራጫ"
+
+#: 05110600m.xhp
+msgctxt ""
+"05110600m.xhp\n"
+"bm_id431513359599959\n"
+"help.text"
+msgid "<bookmark_value>table rows;distribute height equally</bookmark_value> <bookmark_value>row height;distribute equally</bookmark_value>"
+msgstr "<bookmark_value>የ ሰንጠረዥ ረድፎች;እርዝመት እኩል ማሰራጫ</bookmark_value> <bookmark_value>የ ረድፍ እርዝመት;እኩል ማሰራጫ </bookmark_value>"
#: 05110600m.xhp
msgctxt ""
"05110600m.xhp\n"
"hd_id3149871\n"
"help.text"
-msgid "<link href=\"text/shared/01/05110600m.xhp\" name=\"Space Equally\">Space Rows Equally</link>"
-msgstr "<link href=\"text/shared/01/05110600m.xhp\" name=\"Space Equally\">የ ረድፎች ክፍተት እኩል ማድረጊያ</link>"
+msgid "<link href=\"text/shared/01/05110600m.xhp\" name=\"Distribute Equally\">Distribute Rows Equally</link>"
+msgstr "<link href=\"text/shared/01/05110600m.xhp\" name=\"Space Equally\"> ረድፎች እኩል ማሰራጫ </link>"
#: 05110600m.xhp
msgctxt ""
@@ -22149,8 +22349,8 @@ msgctxt ""
"05110600m.xhp\n"
"par_id3153569\n"
"help.text"
-msgid "Choose <emph>Table - Autofit - Distribute Rows Equally</emph>"
-msgstr "ይምረጡ <emph> ሰንጠረዥ - በራሱ ልክ - ረድፎችን እኩል ማሰራጫ </emph>"
+msgid "Choose <emph>Table - Size - Distribute Rows Equally</emph>"
+msgstr "ይምረጡ <emph> ሰንጠረዥ - መጠን - ረድፎችን እኩል ማሰራጫ </emph>"
#: 05110600m.xhp
msgctxt ""
@@ -22341,16 +22541,24 @@ msgctxt ""
"05120600.xhp\n"
"tit\n"
"help.text"
-msgid "Space Columns Equally"
-msgstr "የአምዶችን ክፍተት እኩል ማድረጊያ"
+msgid "Distribute Columns Equally"
+msgstr "አምዶችን እኩል ማሰራጫ"
+
+#: 05120600.xhp
+msgctxt ""
+"05120600.xhp\n"
+"bm_id431513359599959\n"
+"help.text"
+msgid "<bookmark_value>table columns;distribute columns equally</bookmark_value> <bookmark_value>column width;distribute equally</bookmark_value>"
+msgstr "<bookmark_value>የ ሰንጠረዥ አምዶች;አምዶች እኩል ማሰራጫ</bookmark_value> <bookmark_value>የ አምድ ስፋት;እኩል ማሰራጫ </bookmark_value>"
#: 05120600.xhp
msgctxt ""
"05120600.xhp\n"
"hd_id3153811\n"
"help.text"
-msgid "<link href=\"text/shared/01/05120600.xhp\" name=\"Space Equally\">Space Columns Equally</link>"
-msgstr "<link href=\"text/shared/01/05120600.xhp\" name=\"Space Equally\">የ አምዶች ክፍተት እኩል ማድረጊያ</link>"
+msgid "<link href=\"text/shared/01/05120600.xhp\" name=\"Distribute Equally\">Distribute Columns Equally</link>"
+msgstr "<link href=\"text/shared/01/05120600.xhp\" name=\"Space Equally\"> አምዶች እኩል ማሰራጫ</link>"
#: 05120600.xhp
msgctxt ""
@@ -22365,8 +22573,8 @@ msgctxt ""
"05120600.xhp\n"
"par_id3159219\n"
"help.text"
-msgid "Choose <emph>Table - Autofit - Distribute Columns Equally</emph>"
-msgstr "ይምረጡ <emph> ሰንጠረዥ - በራሱ ልክ - አምዶችን እኩል ማሰራጫ </emph>"
+msgid "Choose <emph>Table - Size - Distribute Columns Equally</emph>"
+msgstr "ይምረጡ <emph> ሰንጠረዥ - መጠን - አምዶችን እኩል ማሰራጫ</emph>"
#: 05120600.xhp
msgctxt ""
@@ -22389,8 +22597,8 @@ msgctxt ""
"05120600.xhp\n"
"par_id3151364\n"
"help.text"
-msgid "Space Columns Equally"
-msgstr "የአምዶችን ክፍተት እኩል ማድረጊያ"
+msgid "Distribute Columns Equally"
+msgstr "አምዶችን እኩል ማሰራጫ"
#: 05140100.xhp
msgctxt ""
@@ -30825,13 +31033,12 @@ msgid "The AutoCorrect settings are applied when you press the Spacebar after yo
msgstr "በራሱ አራሚ ማሰናጃ የሚፈጸመው እርስዎ የ ክፍተት ማስገቢያውን ሲጫኑ ነው ቃል ካስገቡ በኋላ"
#: 06040000.xhp
-#, fuzzy
msgctxt ""
"06040000.xhp\n"
"par_id3153394\n"
"help.text"
msgid "To turn on or to turn off the AutoCorrect feature, in $[officename] Calc choose <emph>Tools - AutoInput</emph>, and in $[officename] Writer choose <emph>Format - AutoCorrect - While Typing</emph>. To apply the AutoCorrect settings to an entire text document, choose <emph>Format - AutoCorrect - Apply</emph>."
-msgstr "በራሱ አራሚ ገጽታ ለ ማብራት እና ለ ማጥፋት በ $[officename] ሰንጠረዥ ውስጥ ይምረጡ <emph> መሳሪያዎች - በራሱ ማስገቢያ </emph> እና በ $[officename] መጻፊያ ውስጥ ይምረጡ <emph> አቀራረብ - በራሱ አራሚ - በምጽፍ ጊዜ </emph> በራሱ አራሚ ማሰናጃ ለ ጠቅላላ ሰነዱ ለ መፈጸም: ይምረጡ <emph> አቀራረብ - በራሱ አራሚ - መፈጸሚያ </emph>"
+msgstr "በራሱ አራሚ ገጽታ ለ ማብራት እና ለ ማጥፋት በ $[officename] ሰንጠረዥ ውስጥ ይምረጡ <emph> መሳሪያዎች - በራሱ ማስገቢያ </emph> እና በ $[officename] መጻፊያ ውስጥ ይምረጡ <emph> መሳሪያዎች - በራሱ አራሚ - በምጽፍ ጊዜ </emph> በራሱ አራሚ ማሰናጃ ለ ጠቅላላ ሰነዱ ለ መፈጸም: ይምረጡ <emph> መሳሪያዎች - በራሱ አራሚ - መፈጸሚያ </emph>"
#: 06040000.xhp
msgctxt ""
@@ -33790,8 +33997,8 @@ msgctxt ""
"06130000.xhp\n"
"par_idN10A39\n"
"help.text"
-msgid "<variable id=\"script\">Scripts </variable>"
-msgstr "<variable id=\"script\">Scripts </variable>"
+msgid "<variable id=\"script\">Scripts</variable>"
+msgstr "<variable id=\"script\">ጽሁፍ</variable>"
#: 06130000.xhp
msgctxt ""
@@ -33961,14 +34168,6 @@ msgctxt ""
msgid "Click a script, and then click a command button."
msgstr "ይጫኑ script: እና ከዛ ይጫኑ የ ትእዛዝ ቁልፍ"
-#: 06130000.xhp
-msgctxt ""
-"06130000.xhp\n"
-"par_id3153138\n"
-"help.text"
-msgid "<link href=\"text/shared/main0600.xhp\" name=\"Macro programming in $[officename]\">Macro programming in $[officename]</link>"
-msgstr "<link href=\"text/shared/main0600.xhp\" name=\"Macro programming in $[officename]\">ማክሮስ እና ፕሮግራም በ $[officename]</link>"
-
#: 06130001.xhp
msgctxt ""
"06130001.xhp\n"
diff --git a/source/am/helpcontent2/source/text/shared/02.po b/source/am/helpcontent2/source/text/shared/02.po
index ec0e06e077b..5fc0b1da90c 100644
--- a/source/am/helpcontent2/source/text/shared/02.po
+++ b/source/am/helpcontent2/source/text/shared/02.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-12-09 19:36+0000\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
+"PO-Revision-Date: 2017-12-19 01:18+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1512848164.000000\n"
+"X-POOTLE-MTIME: 1513646310.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -9493,16 +9493,16 @@ msgctxt ""
"02010000.xhp\n"
"tit\n"
"help.text"
-msgid "Apply Style"
-msgstr "መፈጸሚያ ዘዴ"
+msgid "Set Paragrph Style"
+msgstr "የ አንቀጽ ዘዴ ማሰናጃ"
#: 02010000.xhp
msgctxt ""
"02010000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02010000.xhp\" name=\"Apply Style\">Apply Style</link>"
-msgstr "<link href=\"text/shared/02/02010000.xhp\" name=\"Apply Style\">መፈጸሚያ ዘዴ</link>"
+msgid "<link href=\"text/shared/02/02010000.xhp\" name=\"Set Paragraph Style\">Set Paragraph Style</link>"
+msgstr "<link href=\"text/shared/02/02010000.xhp\" name=\"Set Paragraph Style\">የ አንቀጽ ዘዴ ማሰናጃ</link>"
#: 02010000.xhp
msgctxt ""
@@ -9533,16 +9533,16 @@ msgctxt ""
"02010000.xhp\n"
"par_id3155552\n"
"help.text"
-msgid "<image id=\"img_id3152801\" src=\"media/helpimg/zellvor.png\" width=\"2.642cm\" height=\"0.533cm\" localize=\"true\"><alt id=\"alt_id3152801\">Apply Style</alt></image>"
-msgstr "<image id=\"img_id3152801\" src=\"media/helpimg/zellvor.png\" width=\"2.642cm\" height=\"0.533cm\" localize=\"true\"><alt id=\"alt_id3152801\">ዘዴ መፈጸሚያ</alt></image>"
+msgid "<image id=\"img_id3152801\" src=\"media/helpimg/zellvor.png\" width=\"2.642cm\" height=\"0.533cm\" localize=\"true\"><alt id=\"alt_id3152801\">Set Paragraph Style</alt></image>"
+msgstr "<image id=\"img_id3152801\" src=\"media/helpimg/zellvor.png\" width=\"2.642cm\" height=\"0.533cm\" localize=\"true\"><alt id=\"alt_id3152801\">የ አንቀጽ ዘዴ ማሰናጃ</alt></image>"
#: 02010000.xhp
msgctxt ""
"02010000.xhp\n"
"par_id3145345\n"
"help.text"
-msgid "Apply Style"
-msgstr "መፈጸሚያ ዘዴ"
+msgid "Set Paragraph Style"
+msgstr "የ አንቀጽ ዘዴ ማሰናጃ"
#: 02020000.xhp
msgctxt ""
@@ -13325,8 +13325,8 @@ msgctxt ""
"12090100.xhp\n"
"hd_id3153061\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More Options\">More Options</link>"
-msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"More Options\">ተጨማሪ ምርጫ</link>"
+msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"Options\">Options</link>"
+msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"Options\">ምርጫዎች</link>"
#: 12090101.xhp
msgctxt ""
@@ -15765,8 +15765,8 @@ msgctxt ""
"20050000.xhp\n"
"bm_id3148668\n"
"help.text"
-msgid "<bookmark_value>selection modes in text</bookmark_value><bookmark_value>text; selection modes</bookmark_value><bookmark_value>extending selection mode</bookmark_value><bookmark_value>adding selection mode</bookmark_value><bookmark_value>block selection mode</bookmark_value>"
-msgstr "<bookmark_value>መምረጫ ዘዴዎች በ ጽሁፍ ውስጥ</bookmark_value><bookmark_value>ጽሁፍ: መምረጫ ዘዴዎች</bookmark_value><bookmark_value>ማስፋፊያ መምረጫ ዘዴ</bookmark_value><bookmark_value>መጨመሪያ መምረጫ ዘዴ</bookmark_value><bookmark_value>መከልከያ መምረጫ ዘዴ</bookmark_value>"
+msgid "<bookmark_value>selection modes in text</bookmark_value> <bookmark_value>text; selection modes</bookmark_value> <bookmark_value>extending selection mode</bookmark_value> <bookmark_value>adding selection mode</bookmark_value> <bookmark_value>block selection mode</bookmark_value>"
+msgstr "<bookmark_value>መምረጫ ዘዴ በ ጽሁፍ ውስጥ</bookmark_value> <bookmark_value>ጽሁፍ; መምረጫ ዘዴ</bookmark_value> <bookmark_value>ማስፋፊያ መምረጫ ዘዴ</bookmark_value> <bookmark_value>መጨመሪያ መምረጫ ዘዴ</bookmark_value> <bookmark_value>መከልከያ መምረጫ ዘዴ</bookmark_value>"
#: 20050000.xhp
msgctxt ""
@@ -15821,8 +15821,8 @@ msgctxt ""
"20050000.xhp\n"
"par_id3147209\n"
"help.text"
-msgid "Click in text where you want to position the cursor; click in a cell to make it the active cell. Any other selection is then deselected."
-msgstr "እርስዎ መጠቆሚያውን ማድረግ በሚፈልጉበት ጽሁፉ ቦታ ላይ ይጫኑ: ይጫኑ በ ክፍል ላይ ክፍሉን ንቁ ለማድረግ: ሌላ ምርጫ ከዛ በኋላ ይሰናከላል"
+msgid "This is the default selection mode for text documents. With the keyboard, selections can be performed by Shift+NavigationKey (<item type=\"keycode\">arrows, Home, End, Page Up, Page Down</item>). With the mouse, click in the text where the selection is to start, hold the left mouse button and move to the end of the selection. Release the mouse key to end selection."
+msgstr "ይህ ነባር የ መምረጫ ዘዴ ነው ለ ጽሁፍ ሰነድ: በ ፊደል ገበታ: ምርጫዎችን መፈጸም ይቻላል በ Shift+መቃኛ ቁልፍ (<item type=\"keycode\"> ቀስቶች: ቤት: መጨረሻ: ገጽ ወደ ላይ: ገጽ ወደ ታች: </item>). አይጥ በ መጠቀም: ይጫኑ በ ጽሁፍ ላይ ምርጫው የሚጀምርበትን: ተጭነው ይያዙ የ አይጡን የ ግራ ቁልፍ እና ያንቀሳቅሱ ወደ ምርጫው መጨረሻ በኩል: የ አይጡን ቁልፍ ይልቀቁ ምርጫውን ለ መጨረስ: "
#: 20050000.xhp
msgctxt ""
@@ -15837,8 +15837,8 @@ msgctxt ""
"20050000.xhp\n"
"par_id3153717\n"
"help.text"
-msgid "Clicking in the text extends or crops the current selection."
-msgstr "በ ጽሁፍ ላይ መጫን የ አሁኑን ምርጫ ያሰፋል ወይንም ይከረክማል"
+msgid "By using the arrow keys or the <item type=\"keycode\">Home</item> and <item type=\"keycode\">End</item> keys you can extend or crop the current selection. Clicking into the text selects the text between the current cursor position and the click position. You also can use (with or without <item type=\"keycode\">Shift</item> key) the arrow keys and the keys <item type=\"keycode\">Home</item> and <item type=\"keycode\">End</item> to increase or decrease the current selection."
+msgstr "የ ቀስት ቁልፎች በ መጠቀም ወይንም የ <item type=\"keycode\"> ቤት </item> እና <item type=\"keycode\"> መጨረሻ </item> ቁልፎች እርስዎ ማስፋት ይችላሉ ወይንም መከርከም የ አሁኑን ምርጫ: ጽሁፉን በ መጫን ይምረጡ በ ጽሁፍ መካከል መጠቆሚያው ባለበት ቦታ: እና ይጫኑ ቦታው ላይ: እርስዎ እንዲሁም መጠቀም ይችላሉ (ከ ወይንም ያለ <item type=\"keycode\">Shift</item> ቁልፍ) የ ቀስት ቁልፎች እና ቁልፎች <item type=\"keycode\"> ቤት </item> and <item type=\"keycode\"> መጨረሻ </item> የ አሁኑን ምርጫ ለ መጨመር ወይንም ለ መቀነሻ"
#: 20050000.xhp
msgctxt ""
@@ -15880,6 +15880,14 @@ msgctxt ""
msgid "On Windows systems, you can hold down the <item type=\"keycode\">Alt</item> key while dragging to select a block of text. You don't need to enter the block selection mode."
msgstr "በ መስኮት ስርአት ውስጥ: እርስዎ ተጭነው መያዝ ይችላሉ የ <item type=\"keycode\">Alt</item> ቁልፍ የ ተመረጠውን ምንባብ ጽሁፍ በሚጎትቱ ጊዜ: እርስዎ ማስገባት የለብዎትም የ ምንባብ ምርጫ ዘዴ"
+#: 20050000.xhp
+msgctxt ""
+"20050000.xhp\n"
+"par_id901513465638512\n"
+"help.text"
+msgid "<link href=\"text/swriter/guide/text_nav_keyb.xhp\" name=\"Navigating and Selecting With the Keyboard\">Navigating and Selecting With the Keyboard</link>"
+msgstr "<link href=\"text/swriter/guide/text_nav_keyb.xhp\" name=\"Navigating and Selecting With the Keyboard\">በ ፊደል ገበታ መቃኛ እና መምረጫ</link>"
+
#: 20060000.xhp
msgctxt ""
"20060000.xhp\n"
diff --git a/source/am/helpcontent2/source/text/shared/05.po b/source/am/helpcontent2/source/text/shared/05.po
index 239e31cdc92..d14bc727a26 100644
--- a/source/am/helpcontent2/source/text/shared/05.po
+++ b/source/am/helpcontent2/source/text/shared/05.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: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-11-23 21:38+0000\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
+"PO-Revision-Date: 2017-12-18 17:47+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1511473125.000000\n"
+"X-POOTLE-MTIME: 1513619220.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -149,7 +149,7 @@ msgctxt ""
"00000001.xhp\n"
"par_id3497211\n"
"help.text"
-msgid "You can download documentation as PDF files, how-tos, and guides from the %PRODUCTNAME documentation website at <link href=\"http://documentation.libreoffice.org\">documentation.libreoffice.org</link>. You can also access the documentation website choosing the menu <item type=\"menuitem\">Help – User Guides…</item> ."
+msgid "You can download documentation as PDF files, how-tos, and guides from the %PRODUCTNAME documentation website at <link href=\"http://documentation.libreoffice.org\">documentation.libreoffice.org</link>. You can also access the documentation website choosing the menu <item type=\"menuitem\">Help – User Guides…</item>"
msgstr "እርስዎ ሰነዶችን ማውረድ ይችላሉ እንደ PDF ፋይሎች: እንዴት-እንደሚሰሩ እና መመሪያዎች ከ %PRODUCTNAME ሰነዶች ድሕረ ገጽ ውስጥ: በ <link href=\"http://documentation.libreoffice.org\">documentation.libreoffice.org </link> እርስዎ እንዲሁም የ ሰነዶች ድሕረ ገጽ ጋር መድረስ ይችላሉ ዝርዝር በ መምረጥ <item type=\"menuitem\"> እርዳታ – የ ተጠቃሚ መምሪያ…</item> ."
#: 00000001.xhp
diff --git a/source/am/helpcontent2/source/text/shared/autopi.po b/source/am/helpcontent2/source/text/shared/autopi.po
index 3eac0668e5e..0d2a838b9be 100644
--- a/source/am/helpcontent2/source/text/shared/autopi.po
+++ b/source/am/helpcontent2/source/text/shared/autopi.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-11-23 21:36+0000\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
+"PO-Revision-Date: 2017-12-18 21:08+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1511472988.000000\n"
+"X-POOTLE-MTIME: 1513631311.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -6229,8 +6229,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3149140\n"
"help.text"
-msgid "<variable id=\"eurokonv\"><ahelp hid=\".uno:EuroConverter\">Converts the currency amounts found in $[officename] Calc documents and in fields and tables of $[officename] Writer documents into euros.</ahelp></variable>"
-msgstr "<variable id=\"eurokonv\"><ahelp hid=\".uno:EuroConverter\">የ ተገኘውን የ ገንዘብ መጠን መቀየሪያ በ $[officename] ሰንጠረዥ ሰነዶች እና ሜዳዎች እና ሰንጠረዦች በ $[officename] መጻፊያ ሰነዶች ወደ ኢዩሮ </ahelp></variable>"
+msgid "<variable id=\"eurokonv\"><ahelp hid=\".\">Converts the currency amounts found in $[officename] Calc documents and in fields and tables of $[officename] Writer documents into euros.</ahelp></variable>"
+msgstr "<variable id=\"eurokonv\"><ahelp hid=\".\">የ ተገኘውን የ ገንዘብ መጠን በ $[officename] ሰንጠረዥ ሰነዶች እና ሜዳዎች እና ሰንጠረዦች በ $[officename] መጻፊያ ሰነዶች ወደ ኢዩሮ መቀየሪያ </ahelp></variable>"
#: 01150000.xhp
msgctxt ""
@@ -6269,8 +6269,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3155420\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OBFILE\">Converts a single $[officename] Calc file.</ahelp> To convert fields and tables in $[officename] Writer, first mark the <emph>Also convert fields and tables in text documents </emph>check box."
-msgstr "<ahelp hid=\"HID_DLGCONVERT_OBFILE\">መቀየሪያ ነጠላ የ $[officename] ሰንጠረዥ ፋይል </ahelp> ሜዳዎች እና ሰንጠረዥ ለ መቀየር በ $[officename] መጻፊያ ውስጥ: መጀመሪያ ምልክት ያድርጉ በ <emph> ሜዳዎች እና ሰንጠረዥ መቀየሪያ በ አሁኑ ሰነድ </emph> ሳጥን ውስጥ ምልክት ያድርጉ"
+msgid "<ahelp hid=\".\">Converts a single $[officename] Calc file.</ahelp> To convert fields and tables in $[officename] Writer, first mark the <emph>Also convert fields and tables in text documents </emph>check box."
+msgstr "<ahelp hid=\".\">መቀየሪያ ነጠላ የ $[officename] ሰንጠረዥ ፋይል </ahelp> ሜዳዎች እና ሰንጠረዥ ለ መቀየር በ $[officename] መጻፊያ ውስጥ: መጀመሪያ ምልክት ያድርጉ በ <emph> ሜዳዎች እና ሰንጠረዥ መቀየሪያ በ ጽሁፍ ሰነድ </emph> ሳጥን ውስጥ ምልክት ያድርጉ"
#: 01150000.xhp
msgctxt ""
@@ -6285,8 +6285,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3150670\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OBDIR\">Converts all $[officename] Calc and $[officename] Writer documents and templates in the selected directory.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_OBDIR\">ሁሉንም መቀየሪያ $[officename] ሰንጠረዥ እና $[officename] መጻፊያ ሰነዶች እና ቴምፕሌቶች በ ተመረጠው ዳይሬክቶሪ ውስጥ </ahelp>"
+msgid "<ahelp hid=\".\">Converts all $[officename] Calc and $[officename] Writer documents and templates in the selected directory.</ahelp>"
+msgstr "<ahelp hid=\".\">ሁሉንም መቀየሪያ $[officename] ሰንጠረዥ እና $[officename] መጻፊያ ሰነዶች እና ቴምፕሌቶች በ ተመረጠው ዳይሬክቶሪ ውስጥ </ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -6301,8 +6301,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3156002\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_COMBOBOX1\">Specifies the currency to be converted into euros.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_COMBOBOX1\">ወደ ኢዩሮ የሚቀየረውን ገንዘብ መወሰኛ</ahelp>"
+msgid "<ahelp hid=\".\">Specifies the currency to be converted into euros.</ahelp>"
+msgstr "<ahelp hid=\".\">የ ተወሰነውን ገንዘብ ወደ ኢዩሮ መቀየሪያ</ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -6317,8 +6317,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3154898\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_TBSOURCE\">Indicates the directory or the name of the single document to be converted.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_TBSOURCE\">የሚያሳየው ዳይሬክቶሪ ወይንም የሚቀየረውን የ ነጠላ ሰነድ ስም ነው </ahelp>"
+msgid "<ahelp hid=\".\">Indicates the directory or the name of the single document to be converted.</ahelp>"
+msgstr "<ahelp hid=\".\">የሚያሳየው ዳይሬክቶሪ ወይንም የሚቀየረውን የ ነጠላ ሰነድ ስም ነው </ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -6333,8 +6333,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3147264\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBSOURCEOPEN\">Opens a dialog to select the desired directory or document.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBSOURCEOPEN\">የሚፈለገውን ዳይሬክቶሪ ወይንም ሰነድ እንዲመርጡ ንግግር መክፈቻ </ahelp>"
+msgid "<ahelp hid=\".\">Opens a dialog to select the desired directory or document.</ahelp>"
+msgstr "<ahelp hid=\".\">የሚፈለገውን ዳይሬክቶሪ ወይንም ሰነድ እንዲመርጡ ንግግር መክፈቻ </ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -6349,8 +6349,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3152771\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CHECKRECURSIVE\">Specifies whether all subfolders of the selected directory are included.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CHECKRECURSIVE\">ሁሉም ንዑስ ፎልደሮች በ ተመረጠው ዳይሬክቶሪ ውስጥ ይካተቱ እንደሆን መወሰኛ </ahelp>"
+msgid "<ahelp hid=\".\">Specifies whether all subfolders of the selected directory are included.</ahelp>"
+msgstr "<ahelp hid=\".\">ሁሉም ንዑስ ፎልደሮች በ ተመረጠው ዳይሬክቶሪ ውስጥ ይካተቱ እንደሆን መወሰኛ </ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -6365,8 +6365,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3150398\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CHKTEXTDOCUMENTS\">Converts currency amounts found in fields and tables of $[officename] Writer documents.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CHKTEXTDOCUMENTS\">የ ተገኘውን የ ገንዘብ መጠን መቀየሪያ በ ሜዳዎች እና ሰንጠረዥ በ $[officename] መጻፊያ ሰነዶች </ahelp>"
+msgid "<ahelp hid=\".\">Converts currency amounts found in fields and tables of $[officename] Writer documents.</ahelp>"
+msgstr "<ahelp hid=\".\">የ ተገኘውን የ ገንዘብ መጠን መቀየሪያ በ ሜዳዎች እና ሰንጠረዥ በ $[officename] መጻፊያ ሰነዶች ውስጥ </ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -6389,8 +6389,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CHKPROTECT\">Specifies that sheet protection will be disabled during conversion and thereafter re-enabled. If sheet protection is covered by a password, you will see a dialog for entering the password.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CHKPROTECT\">የ ወረቀት መጠበቂያ መወሰኛ በሚቀየር ጊዜ እና ከዛ በኋላ እንደገና-ማስቻያ: የ ወረቀት መጠበቂያ በ መግቢያ ቃል ይጠበቅ እንደሆን: ለ እርስዎ የ መግቢያ ቃል ማስገቢያ ንግግር ይታያል </ahelp>"
+msgid "<ahelp hid=\".\">Specifies that sheet protection will be disabled during conversion and thereafter re-enabled. If sheet protection is covered by a password, you will see a dialog for entering the password.</ahelp>"
+msgstr "<ahelp hid=\".\">የ ወረቀት መጠበቂያ መወሰኛ በሚቀየር ጊዜ ይሰናከል እንደሆን እና ከዛ በኋላ እንደገና-ማስቻያ: የ ወረቀት መጠበቂያ በ መግቢያ ቃል ይጠበቅ እንደሆን: ለ እርስዎ የ መግቢያ ቃል ማስገቢያ ንግግር ይታያል </ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -6405,8 +6405,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3153771\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_TBTARGET\">Specifies the folder and path in which the converted files are to be saved.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_TBTARGET\">የ ተቀየሩት ፋይሎች የሚቀመጡበትን ፎልደር እና መንገድ መወሰኛ </ahelp>"
+msgid "<ahelp hid=\".\">Specifies the folder and path in which the converted files are to be saved.</ahelp>"
+msgstr "<ahelp hid=\".\">የ ተቀየሩት ፋይሎች የሚቀመጡበትን ፎልደር እና መንገድ መወሰኛ </ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -6421,8 +6421,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3147427\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBTARGETOPEN\">Opens a dialog in which you can select a directory to hold the converted files.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBTARGETOPEN\">ንግግር መክፈቻ እርስዎ ዳይሬክቶሪ የሚመርጡበት የ ተቀየሩ ፋይሎች የሚቆዩበት </ahelp>"
+msgid "<ahelp hid=\".\">Opens a dialog in which you can select a directory to hold the converted files.</ahelp>"
+msgstr "<ahelp hid=\".\">እርስዎ ዳይሬክቶሪ የሚመርጡበት ንግግር መክፈቻ የ ተቀየሩ ፋይሎች የሚቆዩበት </ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -6437,8 +6437,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3153190\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBCANCEL\">Closes the Euro Converter.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBCANCEL\">የ ኢዩሮ መቀየሪያ መዝጊያ</ahelp>"
+msgid "<ahelp hid=\".\">Closes the Euro Converter.</ahelp>"
+msgstr "<ahelp hid=\".\">የ ኢዩሮ መቀየሪያ መዝጊያ</ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -6453,8 +6453,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3155413\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBHELP\">Activates the help for the dialog.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBHELP\">ለ ንግግር እርዳታ ማስነሻ </ahelp>"
+msgid "<ahelp hid=\".\">Activates the help for the dialog.</ahelp>"
+msgstr "<ahelp hid=\".\">እርዳታ ማስጀመሪያ ለ ንግግር </ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -6469,8 +6469,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBGOON\">Starts the conversion.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBGOON\">መቀየሪያ ማስጀመሪያ</ahelp>"
+msgid "<ahelp hid=\".\">Starts the conversion.</ahelp>"
+msgstr "<ahelp hid=\".\">መቀየሪያ ማስጀመሪያ</ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -6493,16 +6493,16 @@ msgctxt ""
"01150000.xhp\n"
"par_id3153953\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBBACK\">Returns to the first page of the Euro Converter.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBBACK\">ወደ ኢዩሮ መቀየሪያ መጀመሪያ ገጽ ይመለሳል</ahelp>"
+msgid "<ahelp hid=\".\">Returns to the first page of the Euro Converter.</ahelp>"
+msgstr "<ahelp hid=\".\">ወደ ኢዩሮ መቀየሪያ መጀመሪያ ገጽ ይመለሳል</ahelp>"
#: 01150000.xhp
msgctxt ""
"01150000.xhp\n"
"par_id3154640\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBBACK\">If the current document is a $[officename] Calc document or template, you can call up the Euro Converter using the corresponding icon in the Tools bar.</ahelp> This icon is hidden by default. To display the Euro Converter icon, click the arrow at the end of the Tools bar, select the <emph>Visible Buttons</emph> command and activate the <emph>Euro Converter</emph> icon."
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBBACK\">የ አሁኑ ሰነድ ከሆነ $[officename] ሰንጠረዥ ሰነድ ወይንም ቴምፕሌት: እርስዎ የ ኢዩሮ መቀየሪያን መጥራት ይችላሉ ተመሳሳዩን ምልክት በ መጠቀም ከ እቃ መደርደሪያ ውስጥ </ahelp> ይህ ምልክት በ ነባር የ ተደበቀ ነው: ለማሳየት የ ኢዩሮ መቀየሪያን ምልክት: ይጫኑ ቀስቱን ከ እቃ መደርደሪያ መጨረሻ በኩል ያለውን: ይምረጡ <emph> የሚታዩ ቁልፎች </emph> ትእዛዝ እና ያስጀምሩ የ <emph> ኢዩሮ መቀየሪያ </emph> ምልክት"
+msgid "If the current document is a $[officename] Calc document or template, you can call up the Euro Converter using the corresponding icon in the Tools bar. This icon is hidden by default. To display the Euro Converter icon, click the arrow at the end of the Tools bar, select the <emph>Visible Buttons</emph> command and activate the <emph>Euro Converter</emph> icon."
+msgstr "የ አሁኑ ሰነድ ከሆነ የ $[officename] ሰንጠረዥ ሰነድ ወይንም ቴምፕሌት: እርስዎ የ ኢዩሮ መቀየሪያን መጥራት ይችላሉ: ተመሳሳዩን ምልክት በ መጠቀም ከ እቃ መደርደሪያ ውስጥ ይህ ምልክት በ ነባር የ ተደበቀ ነው: ለማሳየት የ ኢዩሮ መቀየሪያን ምልክት ይጫኑ ቀስቱን ከ እቃ መደርደሪያ መጨረሻ በኩል ያለውን: ይምረጡ <emph> የሚታዩ ቁልፎች </emph> ትእዛዝ እና ያስጀምሩ የ <emph> ኢዩሮ መቀየሪያ </emph> ምልክት"
#: 01150000.xhp
msgctxt ""
@@ -6541,8 +6541,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3150113\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CHECKBOX1\">Converts the entire document.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CHECKBOX1\">ጠቅላላ ሰነድ መቀየሪያ</ahelp>"
+msgid "<ahelp hid=\".\">Converts the entire document.</ahelp>"
+msgstr "<ahelp hid=\".\">ጠቅላላ ሰነድ መቀየሪያ </ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -6557,8 +6557,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3148834\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_COMBOBOX1\">Specifies the currency to be converted into euros.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_COMBOBOX1\">ወደ ኢዩሮ የሚቀየረውን ገንዘብ መወሰኛ</ahelp>"
+msgid "<ahelp hid=\".\">Specifies the currency to be converted into euros.</ahelp>"
+msgstr "<ahelp hid=\".\">ወደ ኢዩሮ የሚቀየረውን ገንዘብ መወሰኛ</ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -6589,8 +6589,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3145162\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON1\">All cells with the selected Cell Styles are converted.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON1\">ሁሉም ክፍሎች በ ተመረጠው የ ክፍል ዘደ ተቀይረዋል</ahelp>"
+msgid "<ahelp hid=\".\">All cells with the selected Cell Styles are converted.</ahelp>"
+msgstr "<ahelp hid=\".\">ሁሉም ክፍሎች በ ተመረጠው የ ክፍል ዘደ ተቀይረዋል</ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -6605,8 +6605,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3154479\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON2\">All currency cells in the active spreadsheet will be converted.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON2\">ሁሉም የ ገንዘብ ክፍሎች በ ንቁ ሰንጠረዥ ውስጥ ይቀየራሉ</ahelp>"
+msgid "<ahelp hid=\".\">All currency cells in the active spreadsheet will be converted.</ahelp>"
+msgstr "<ahelp hid=\".\">ሁሉም የ ገንዘብ ክፍሎች በ ንቁ ሰንጠረዥ ውስጥ ይቀየራሉ</ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -6621,8 +6621,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3146912\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON3\">All currency cells in the active document will be converted.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON3\">ሁሉም የ ገንዘብ ክፍሎች በ ንቁ ሰነድ ውስጥ ይቀየራሉ</ahelp>"
+msgid "<ahelp hid=\".\">All currency cells in the active document will be converted.</ahelp>"
+msgstr "<ahelp hid=\".\">ሁሉም የ ገንዘብ ክፍሎች በ ንቁ ሰነድ ውስጥ ይቀየራሉ</ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -6637,8 +6637,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3153736\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON4\">All currency cells in the range selected before the converter was called will be converted.</ahelp> All cells must have the same format so that they can be recognized as a selected range."
-msgstr "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON4\">ሁሉም የ ገንዘብ ክፍል በ ተመረጠው መጠን ውስጥ መቀየሪያው ከ መጠራቱ በፊት የነበረ በሙሉ ይቀየራል </ahelp> ሁሉም ክፍሎች ተምመሳሳይ አቀራረብ እንዲኖራቸው ያስፈልጋል ስለዚህ እንደ አንድ መጠን እንዲታወቁ"
+msgid "<ahelp hid=\".\">All currency cells in the range selected before the converter was called will be converted.</ahelp> All cells must have the same format so that they can be recognized as a selected range."
+msgstr "<ahelp hid=\".\">ሁሉም የ ገንዘብ ክፍል በ ተመረጠው መጠን ውስጥ መቀየሪያው ከ መጠራቱ በፊት የነበረ በሙሉ ይቀየራል </ahelp> ሁሉም ክፍሎች ተምመሳሳይ አቀራረብ እንዲኖራቸው ያስፈልጋል ስለዚህ እንደ አንድ መጠን እንዲታወቁ"
#: 01150000.xhp
msgctxt ""
@@ -6653,8 +6653,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3154756\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_LISTBOX1\">Displays the ranges to be converted from the list.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_LISTBOX1\">ከ ዝርዝር ውስጥ የሚቀየሩትን መጠኖች ማሳያ</ahelp>"
+msgid "<ahelp hid=\".\">Displays the ranges to be converted from the list.</ahelp>"
+msgstr "<ahelp hid=\".\">ከ ዝርዝር ውስጥ የሚቀየሩትን መጠኖች ማሳያ </ahelp>"
#: 01170000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/explorer/database.po b/source/am/helpcontent2/source/text/shared/explorer/database.po
index ccdf07f43a0..7a209e0e8a4 100644
--- a/source/am/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/am/helpcontent2/source/text/shared/explorer/database.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-07-20 11:52+0200\n"
-"PO-Revision-Date: 2017-10-22 15:28+0000\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
+"PO-Revision-Date: 2017-12-19 16:33+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1508686098.000000\n"
+"X-POOTLE-MTIME: 1513701222.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -7581,8 +7581,8 @@ msgctxt ""
"dabawiz02ado.xhp\n"
"par_idN10568\n"
"help.text"
-msgid "$[officename] requires the Microsoft Data Access Components (MDAC) to use the ADO interface. Microsoft Windows 2000 and XP include these components by default. For earlier visions of Windows, you need to install MDAC separately. You can download MDAC from the Microsoft web site."
-msgstr "$[officename] ይፈልጋል የ Microsoft Data Access Components (MDAC) ለ መጠቀም በ ADO interface. Microsoft Windows 2000 እና XP እነዚህ አካላቶችን ያካትታል በ ነባር: ቀደም ላለው እትም ለ Windows, እርስዎ መግጠም አለብዎት የ MDAC በተለይ: እርስዎ ማውረድ ይችላሉ የ MDAC ከ Microsoft web site."
+msgid "$[officename] requires the Microsoft Data Access Components (MDAC) to use the ADO interface. Microsoft Windows 2000 and XP include these components by default."
+msgstr "$[officename] ይህ ያስፈልጋል የ Microsoft Data Access Components (MDAC) ይህን ለ መጠቀም ADO interface. Microsoft Windows 2000 and XP እነዚህን አካላቶች በ ነባር ያካትታል"
#: dabawiz02ado.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/guide.po b/source/am/helpcontent2/source/text/shared/guide.po
index 7e8ceaad68c..1dd6ef9962c 100644
--- a/source/am/helpcontent2/source/text/shared/guide.po
+++ b/source/am/helpcontent2/source/text/shared/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: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-12-05 23:28+0000\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
+"PO-Revision-Date: 2017-12-18 17:45+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1512516500.000000\n"
+"X-POOTLE-MTIME: 1513619115.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -12661,16 +12661,24 @@ msgctxt ""
"macro_recording.xhp\n"
"bm_id3093440\n"
"help.text"
-msgid "<bookmark_value>macros; recording</bookmark_value><bookmark_value>recording; macros</bookmark_value><bookmark_value>Basic; recording macros</bookmark_value>"
-msgstr "<bookmark_value>ማክሮስ: መቅረጫ</bookmark_value><bookmark_value>መቅረጫ: ማክሮስ</bookmark_value><bookmark_value>Basic: መቅረጫ ማክሮስ</bookmark_value>"
+msgid "<bookmark_value>macros; recording</bookmark_value> <bookmark_value>recording; macros</bookmark_value> <bookmark_value>Basic; recording macros</bookmark_value>"
+msgstr "<bookmark_value>ማክሮስ; መቅረጫ</bookmark_value> <bookmark_value>መቅረጫ; ማክሮስ</bookmark_value> <bookmark_value>መሰረታዊ; መቅረጫ ማክሮስ</bookmark_value>"
#: macro_recording.xhp
msgctxt ""
"macro_recording.xhp\n"
"hd_id3093440\n"
"help.text"
-msgid "<variable id=\"macro_recording\"><link href=\"text/shared/guide/macro_recording.xhp\" name=\"Recording a Macro\">Recording a Macro</link></variable>"
-msgstr "<variable id=\"macro_recording\"><link href=\"text/shared/guide/macro_recording.xhp\" name=\"Recording a Macro\">ማክሮስ መቅረጫ</link></variable>"
+msgid "<variable id=\"macro_recording\"><link href=\"text/shared/guide/macro_recording.xhp\" name=\"Recording a Macro\">Recording a Macro</link> </variable>"
+msgstr "<variable id=\"macro_recording\"><link href=\"text/shared/guide/macro_recording.xhp\" name=\"Recording a Macro\">ማክሮስ መቅረጫ</link> </variable>"
+
+#: macro_recording.xhp
+msgctxt ""
+"macro_recording.xhp\n"
+"par_id101513461219184\n"
+"help.text"
+msgid "%PRODUCTNAME can record commands executed with the keyboard and mouse in Writer and Calc"
+msgstr "%PRODUCTNAME በ መጻፊያ እና በ ሰንጠረዥ ውስጥ በ ፊደል ገበታ እና በ አይጥ የ ተፈጸሙትን ትእዛዞች መቅረጫ"
#: macro_recording.xhp
msgctxt ""
@@ -12779,6 +12787,14 @@ msgstr "ይጫኑ <emph>ማስቀመጫ</emph>."
#: macro_recording.xhp
msgctxt ""
"macro_recording.xhp\n"
+"bm_id131513460596344\n"
+"help.text"
+msgid "<bookmark_value>macro recording;limitations</bookmark_value>"
+msgstr "<bookmark_value>ማክሮስ መቅረጫ;መመጠኛ</bookmark_value>"
+
+#: macro_recording.xhp
+msgctxt ""
+"macro_recording.xhp\n"
"hd_id2486342\n"
"help.text"
msgid "Limitations of the macro recorder"
@@ -12848,14 +12864,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">Macro</link>"
msgstr "<link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">ማክሮስ</link>"
-#: macro_recording.xhp
-msgctxt ""
-"macro_recording.xhp\n"
-"par_id3147576\n"
-"help.text"
-msgid "<link href=\"text/shared/main0600.xhp\" name=\"macro programming in $[officename]\">Programming in %PRODUCTNAME</link>"
-msgstr "<link href=\"text/shared/main0600.xhp\" name=\"macro programming in $[officename]\">ፕሮግራም በ %PRODUCTNAME</link>"
-
#: main.xhp
msgctxt ""
"main.xhp\n"
diff --git a/source/am/helpcontent2/source/text/shared/optionen.po b/source/am/helpcontent2/source/text/shared/optionen.po
index db635ddde19..232edf7cf1b 100644
--- a/source/am/helpcontent2/source/text/shared/optionen.po
+++ b/source/am/helpcontent2/source/text/shared/optionen.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-12-06 00:11+0000\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
+"PO-Revision-Date: 2017-12-18 19:36+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1512519105.000000\n"
+"X-POOTLE-MTIME: 1513625774.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -107,14 +107,6 @@ msgstr "<link href=\"text/shared/optionen/01150000.xhp\" name=\"Language Setting
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
-"hd_id3150872\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/01030000.xhp\" name=\"Internet\">Internet</link>"
-msgstr "<link href=\"text/shared/optionen/01030000.xhp\" name=\"Internet\">ኢንተርኔት</link>"
-
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
"hd_id3153188\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01040000.xhp\" name=\"Text Document\">%PRODUCTNAME Writer</link>"
@@ -163,6 +155,14 @@ msgstr "<link href=\"text/shared/optionen/01090000.xhp\" name=\"Formula\">%PRODU
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id3149420\n"
+"help.text"
+msgid "<link href=\"text/shared/optionen/01160000.xhp\" name=\"Data Sources\">%PRODUCTNAME Base</link>"
+msgstr "<link href=\"text/shared/optionen/01160000.xhp\" name=\"Data Sources\">%PRODUCTNAME ቤዝ</link>"
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3155418\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01110000.xhp\" name=\"Chart\">Charts</link>"
@@ -171,10 +171,10 @@ msgstr "<link href=\"text/shared/optionen/01110000.xhp\" name=\"Chart\">ቻር
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
-"hd_id3149420\n"
+"hd_id3150872\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01160000.xhp\" name=\"Data Sources\">%PRODUCTNAME Database</link>"
-msgstr "<link href=\"text/shared/optionen/01160000.xhp\" name=\"Data Sources\">%PRODUCTNAME ዳታቤዝ</link>"
+msgid "<link href=\"text/shared/optionen/01030000.xhp\" name=\"Internet\">Internet</link>"
+msgstr "<link href=\"text/shared/optionen/01030000.xhp\" name=\"Internet\">ኢንተርኔት</link>"
#: 01010000.xhp
msgctxt ""
@@ -197,8 +197,8 @@ msgctxt ""
"01010000.xhp\n"
"par_id3149177\n"
"help.text"
-msgid "<variable id=\"optionenallgemein\"><ahelp hid=\"SID_GENERAL_OPTIONS\">Use this dialog to create general settings for working with $[officename]. The information covers topics such as user data, saving, printing, paths to important files and directories, and color defaults.</ahelp></variable> These settings are saved automatically."
-msgstr "<variable id=\"optionenallgemein\"><ahelp hid=\"SID_GENERAL_OPTIONS\">ይህን ንግግር ይጠቀሙ ለ መፍጠር ባጠቃላይ ማሰናጃዎች ለ መስሪያ በ $[officename]. መረጃው በሚሸፍነው አርእስት እንደ ተጠቃሚ ዳታ: ማስቀመጫ: መንገድ ወደ አስፈላጊ ፋይሎች: እና ዳይሬክቶሪዎች እና ነባር ቀለሞች </ahelp></variable> እነዚህን ማሰናጃዎች ራሱ በራሱ ያስቀምጣል"
+msgid "<variable id=\"optionenallgemein\">Use this dialog to create general settings for working with $[officename]. The information covers topics such as user data, saving, printing, paths to important files and directories, and color defaults.</variable> These settings are saved automatically."
+msgstr "<variable id=\"optionenallgemein\">ይህን ንግግር ይጠቀሙ ለ መፍጠር ባጠቃላይ ማሰጃዎች ለ መስሪያ በ $[officename]. መረጃው በሚሸፍነው አርእስት እንደ ተጠቃሚ ዳታ: ማስቀመጫ: ማተሚያ: መንገድ ወደ አስፈላጊ ፋይሎች: እና ዳይሬክቶሪዎች እና ነባር ቀለሞች </variable> እነዚህን ማሰናጃዎች ራሱ በራሱ ያስቀምጣል"
#: 01010100.xhp
msgctxt ""
@@ -1437,8 +1437,8 @@ msgctxt ""
"01010400.xhp\n"
"par_id3145673\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optlingupage/lingumodulesedit\">To edit a language module, select it and click <emph>Edit</emph>.</ahelp> The <link href=\"text/shared/optionen/01010401.xhp\" name=\"Edit Modules\"><emph>Edit </emph><emph>Modules</emph></link> dialog appears."
-msgstr "<ahelp hid=\"cui/ui/optlingupage/lingumodulesedit\">የ ቋንቋ ክፍል ለማረም ይምረጡት እና ይጫኑ <emph> ማረሚያ </emph>:</ahelp> የ <link href=\"text/shared/optionen/01010401.xhp\" name=\"Edit Modules\"><emph> ማረሚያ </emph><emph> ክፍሎች </emph></link> ንግግር ይታያል"
+msgid "<ahelp hid=\"cui/ui/optlingupage/lingumodulesedit\">To edit a language module, select it and click <emph>Edit</emph>.</ahelp> The <link href=\"text/shared/optionen/01010401.xhp\" name=\"Edit Modules\"><emph>Edit Modules</emph></link> dialog appears."
+msgstr "<ahelp hid=\"cui/ui/optlingupage/lingumodulesedit\">የ ቋንቋ ክፍል ለማረም ይምረጡት እና ይጫኑ <emph> ማረሚያ </emph>:</ahelp> የ <link href=\"text/shared/optionen/01010401.xhp\" name=\"Edit Modules\"><emph> ማረሚያ ክፍሎች </emph></link> ንግግር ይታያል"
#: 01010400.xhp
msgctxt ""
@@ -10973,7 +10973,7 @@ msgctxt ""
"01070500.xhp\n"
"par_id3154138\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>In a presentation or drawing document, you can also activate the text editing mode through the <emph>Allow Quick Editing</emph> <link href=\"text/simpress/02/13180000.xhp\" name=\"icon\">icon</link> in the <emph>Option</emph> bar.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>In a presentation or drawing document, you can also activate the text editing mode through the <emph>Allow Quick Editing</emph> <link href=\"text/simpress/02/13180000.xhp\" name=\"icon\">icon</link> in the <emph>Options</emph> bar.</defaultinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline> በ ማቅረቢያ ወይንም በ መሳያ ሰነድ ውስጥ: እርስዎ ማስነሳት ይችላሉ የ ጽሁፍ ማረሚያ ዘዴ <emph> በፍጥነት ማረሚያ ማስቻያ </emph> <link href=\"text/simpress/02/13180000.xhp\" name=\"icon\"> ምልክት </link> በ <emph> ምርጫ </emph> መደርደሪያ ላይ </defaultinline></switchinline>"
#: 01070500.xhp
@@ -11005,8 +11005,8 @@ msgctxt ""
"01070500.xhp\n"
"par_id3153367\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>In a presentation or drawing document, you can also activate this mode through the<emph> Select Text Area Only </emph><link href=\"text/simpress/02/13190000.xhp\" name=\"icon\">icon</link> in the <emph>Option</emph> bar.</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline> በ ማቅረቢያ ወይንም በ መሳያ ሰነድ ውስጥ: እርስዎ ማስነሳት ይችላሉ ይህን ዘዴ <emph> ይምረጡ የ ጽሁፍ ቦታ ብቻ </emph> <link href=\"text/simpress/02/13190000.xhp\" name=\"icon\"> ምልክት </link> በ <emph> ምርጫ </emph> መደርደሪያ ላይ </defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>In a presentation or drawing document, you can also activate this mode through the<emph> Select Text Area Only </emph><link href=\"text/simpress/02/13190000.xhp\" name=\"icon\">icon</link> in the <emph>Options</emph> bar.</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>በ ማቅረቢያ ወይንም በ መሳያ ሰነድ ውስጥ: እርስዎ ማስነሳት ይችላሉ ይህን ዘዴ <emph> ይምረጡ የ ጽሁፍ ቦታ ብቻ </emph> <link href=\"text/simpress/02/13190000.xhp\" name=\"icon\"> ምልክት </link> በ <emph>ምርጫ</emph> መደርደሪያ ላይ </defaultinline></switchinline>"
#: 01070500.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/simpress.po b/source/am/helpcontent2/source/text/simpress.po
index f14b29e8c8a..cfd7b2085d9 100644
--- a/source/am/helpcontent2/source/text/simpress.po
+++ b/source/am/helpcontent2/source/text/simpress.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-10-04 11:48+0200\n"
-"PO-Revision-Date: 2017-10-04 16:32+0000\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
+"PO-Revision-Date: 2017-12-19 00:29+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1507134723.000000\n"
+"X-POOTLE-MTIME: 1513643378.000000\n"
#: main0000.xhp
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"hd_id3149664\n"
"help.text"
msgid "<variable id=\"main0100\"><link href=\"text/simpress/main0100.xhp\" name=\"Menus\">Menus</link> </variable>"
-msgstr "<variable id=\"main0100\"><link href=\"text/simpress/main0100.xhp\" name=\"Menus\">ዝርዝሮች</link></variable>"
+msgstr "<variable id=\"main0100\"><link href=\"text/simpress/main0100.xhp\" name=\"Menus\">ዝርዝሮች</link> </variable>"
#: main0100.xhp
msgctxt ""
@@ -1615,307 +1615,3 @@ msgctxt ""
"help.text"
msgid "$[officename] Impress gives you the choice of running a slide show automatically or manually."
msgstr "$[officename] ማስደነቂያ ተንሸራታቹ እንዴት እንደሚሄድ ምርጫ ይሰጥዎታል ራሱ በራሱ ወይንም እርስዎ በ እጅ እንዲሰሩ"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"tit\n"
-"help.text"
-msgid "Presenter Console Keyboard Shortcuts"
-msgstr "የ ማቅረቢያ መቆጣጠሪያ ክፍል የ ፊደል ገበታ አቋራጮች"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"bm_id0921200912285678\n"
-"help.text"
-msgid "<bookmark_value>Presenter Console shortcuts</bookmark_value>"
-msgstr "<bookmark_value>የ ማቅረቢያ መቆጣጠሪያ ክፍል አቋራጮች</bookmark_value>"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"hd_id0921201912165661\n"
-"help.text"
-msgid "Presenter Console Keyboard Shortcuts"
-msgstr "የ ማቅረቢያ መቆጣጠሪያ ክፍል የ ፊደል ገበታ አቋራጮች"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921201912165656\n"
-"help.text"
-msgid "When running a slide show using the Presenter Console, you can use the following keys:"
-msgstr "ተንሸራታች ማሳያ በሚያስኬዱበት ጊዜ የማቅረቢያ መቆጣጠሪያ ክፍል ሲጠቀሙ እነዚህን ቁልፎች መጠቀም ይችላሉ :"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104028\n"
-"help.text"
-msgid "Action"
-msgstr "ተግባር"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104093\n"
-"help.text"
-msgid "Key or Keys"
-msgstr "ቁልፍ ወይም ቁልፎች"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110418\n"
-"help.text"
-msgid "Next slide, or next effect"
-msgstr "የሚቀጥለው ተንሸራታች ወይንም የሚቀጥለው ውጤት"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104120\n"
-"help.text"
-msgid "Left click, right arrow, down arrow, spacebar, page down, enter, return, 'N'"
-msgstr "በ ግራ ይጫኑ: በ ቀኝ ቀስት: በ ታች ቀስት: በ ክፍተት መደርደሪያ: በ ገጽ ወደ ታች: ማስገቢያ: መመለሻ: 'N'"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104165\n"
-"help.text"
-msgid "Previous slide, or previous effect"
-msgstr "ቀደም ያለው ተንሸራታች ወይንም ቀደም ያለው ውጤት"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104115\n"
-"help.text"
-msgid "Right click, left arrow, up arrow, page up, backspace, 'P'"
-msgstr "በ ቀኝ ይጫኑ: በ ግራ ቀስት: በ ላይ ቀስት: በ ገጽ ወደ ላይ: በኋሊት ደምሳሽ: 'P'"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104164\n"
-"help.text"
-msgid "First slide"
-msgstr "የ መጀመሪያው ተንሸራታች"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104148\n"
-"help.text"
-msgid "Home"
-msgstr "ቤት"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104221\n"
-"help.text"
-msgid "Last slide"
-msgstr "የ መጨረሻው ተንሸራታች"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104277\n"
-"help.text"
-msgid "End"
-msgstr "መጨረሻ"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104279\n"
-"help.text"
-msgid "Previous slide without effects"
-msgstr "ቀደም ያለው ተንሸራታች ያለ ውጤቶች"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110423\n"
-"help.text"
-msgid "Alt+Page Up"
-msgstr "Alt+ገጽ ወደ ላይ"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110427\n"
-"help.text"
-msgid "Next slide without effects"
-msgstr "የሚቀጥለው ተንሸራታች ያለ ውጤቶች"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104261\n"
-"help.text"
-msgid "Alt+Page Down"
-msgstr "Alt+ገጽ ወደ ታች"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104383\n"
-"help.text"
-msgid "Black/Unblack the screen"
-msgstr "መመልከቻውን ማጥቆሪያ/አለማጥቆሪያ"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110431\n"
-"help.text"
-msgid "'B', '.'"
-msgstr "'B', '.'"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104311\n"
-"help.text"
-msgid "White/Unwhite the screen"
-msgstr "መመልከቻውን ነጭ/ነጭ አለማድረጊያ"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104359\n"
-"help.text"
-msgid "'W', ','"
-msgstr "'W', ','"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104336\n"
-"help.text"
-msgid "End slide show"
-msgstr "ተንሸራታች ማሳያ መጨረሻ"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104419\n"
-"help.text"
-msgid "Esc, '-'"
-msgstr "Esc, '-'"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104460\n"
-"help.text"
-msgid "Go to slide number"
-msgstr "ወደ ተንሸራታች ቁጥር መሄጃ"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110440\n"
-"help.text"
-msgid "Number followed by Enter"
-msgstr "ቁጥርን ተከትሎ ማስገቢያ"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104427\n"
-"help.text"
-msgid "Grow/Shrink size of notes font"
-msgstr "የማስታወሻዎችን ፊደል መጠን ማሳደጊያ/ማሳነሻ"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104442\n"
-"help.text"
-msgid "'G', 'S'"
-msgstr "'G', 'S'"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104473\n"
-"help.text"
-msgid "Scroll notes up/down"
-msgstr "ማስታወሻዎችን ወደ ላይ/ታች መሸብለያ"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110459\n"
-"help.text"
-msgid "'A', 'Z'"
-msgstr "'A', 'Z'"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110456\n"
-"help.text"
-msgid "Move caret in notes view backward/forward"
-msgstr "ማንቀሳቀሻ ካሬት ^ በ ማስታወሻ መመልከቻ መደብ/ፊት ለፊት"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110457\n"
-"help.text"
-msgid "'H', 'L'"
-msgstr "'H', 'L'"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104566\n"
-"help.text"
-msgid "Show the Presenter Console"
-msgstr "የማቅረቢያ መቆጣጠሪያ ክፍል ማሳያ"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104544\n"
-"help.text"
-msgid "Ctrl-'1'"
-msgstr "Ctrl-'1'"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104535\n"
-"help.text"
-msgid "Show the Presentation Notes"
-msgstr "የማቅረቢያ ማስታወሻዎችን ማሳያ"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104680\n"
-"help.text"
-msgid "Ctrl-'2'"
-msgstr "Ctrl-'2'"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104634\n"
-"help.text"
-msgid "Show the Slides Overview"
-msgstr "ተንሸራታቾቹን ባጠቃላይ ማሳያ"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104632\n"
-"help.text"
-msgid "Ctrl-'3'"
-msgstr "Ctrl-'3'"
diff --git a/source/am/helpcontent2/source/text/simpress/04.po b/source/am/helpcontent2/source/text/simpress/04.po
index 671a48edb7c..9c8effb084b 100644
--- a/source/am/helpcontent2/source/text/simpress/04.po
+++ b/source/am/helpcontent2/source/text/simpress/04.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: 2017-10-04 11:48+0200\n"
-"PO-Revision-Date: 2017-10-04 16:38+0000\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
+"PO-Revision-Date: 2017-12-18 16:00+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1507135102.000000\n"
+"X-POOTLE-MTIME: 1513612855.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -326,7 +326,7 @@ msgctxt ""
"par_id3150262\n"
"help.text"
msgid "Play next effect (if any, else go to next slide)."
-msgstr "ምንም ውጤት አታጫውት (ካለ ፡ ከሌለ ወደሚቀጥለው ተንሸራታች)"
+msgstr "የሚቀጥለውን ውጤት ማጫወቻ (ካለ: ከሌለ ወደሚቀጥለው ተንሸራታች)"
#: 01020000.xhp
msgctxt ""
@@ -1623,3 +1623,307 @@ msgctxt ""
"help.text"
msgid "Change to Normal Mode with the active slide."
msgstr "ወደ መደበኛ ዘዴ መቀየሪያ ንቁውን ተንሸራታች"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"tit\n"
+"help.text"
+msgid "Presenter Console Keyboard Shortcuts"
+msgstr "የ ማቅረቢያ መቆጣጠሪያ ክፍል የ ፊደል ገበታ አቋራጮች"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"bm_id0921200912285678\n"
+"help.text"
+msgid "<bookmark_value>Presenter Console shortcuts</bookmark_value>"
+msgstr "<bookmark_value>የ ማቅረቢያ መቆጣጠሪያ ክፍል አቋራጮች</bookmark_value>"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"hd_id0921201912165661\n"
+"help.text"
+msgid "Presenter Console Keyboard Shortcuts"
+msgstr "የ ማቅረቢያ መቆጣጠሪያ ክፍል የ ፊደል ገበታ አቋራጮች"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921201912165656\n"
+"help.text"
+msgid "When running a slide show using the Presenter Console, you can use the following keys:"
+msgstr "ተንሸራታች ማሳያ በሚያስኬዱበት ጊዜ የማቅረቢያ መቆጣጠሪያ ክፍል ሲጠቀሙ እነዚህን ቁልፎች መጠቀም ይችላሉ:"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104028\n"
+"help.text"
+msgid "Action"
+msgstr "ተግባር"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104093\n"
+"help.text"
+msgid "Key or Keys"
+msgstr "ቁልፍ ወይም ቁልፎች"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110418\n"
+"help.text"
+msgid "Next slide, or next effect"
+msgstr "የሚቀጥለው ተንሸራታች ወይንም የሚቀጥለው ውጤት"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104120\n"
+"help.text"
+msgid "Left click, right arrow, down arrow, spacebar, page down, enter, return, 'N'"
+msgstr "በ ግራ ይጫኑ: በ ቀኝ ቀስት: በ ታች ቀስት: በ ክፍተት መደርደሪያ: በ ገጽ ወደ ታች: ማስገቢያ: መመለሻ: 'N'"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104165\n"
+"help.text"
+msgid "Previous slide, or previous effect"
+msgstr "ቀደም ያለው ተንሸራታች ወይንም ቀደም ያለው ውጤት"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104115\n"
+"help.text"
+msgid "Right click, left arrow, up arrow, page up, backspace, 'P'"
+msgstr "በ ቀኝ ይጫኑ: በ ግራ ቀስት: በ ላይ ቀስት: በ ገጽ ወደ ላይ: በ ኋሊት ደምሳሽ: 'P'"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104164\n"
+"help.text"
+msgid "First slide"
+msgstr "የ መጀመሪያው ተንሸራታች"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104148\n"
+"help.text"
+msgid "Home"
+msgstr "ቤት"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104221\n"
+"help.text"
+msgid "Last slide"
+msgstr "የ መጨረሻው ተንሸራታች"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104277\n"
+"help.text"
+msgid "End"
+msgstr "መጨረሻ"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104279\n"
+"help.text"
+msgid "Previous slide without effects"
+msgstr "ቀደም ያለው ተንሸራታች ያለ ውጤቶች"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110423\n"
+"help.text"
+msgid "Alt+Page Up"
+msgstr "Alt+ገጽ ወደ ላይ"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110427\n"
+"help.text"
+msgid "Next slide without effects"
+msgstr "የሚቀጥለው ተንሸራታች ያለ ውጤቶች"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104261\n"
+"help.text"
+msgid "Alt+Page Down"
+msgstr "Alt+ገጽ ወደ ታች"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104383\n"
+"help.text"
+msgid "Black/Unblack the screen"
+msgstr "መመልከቻውን ማጥቆሪያ/አለማጥቆሪያ"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110431\n"
+"help.text"
+msgid "'B', '.'"
+msgstr "'B', '.'"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104311\n"
+"help.text"
+msgid "White/Unwhite the screen"
+msgstr "መመልከቻውን ነጭ/ነጭ አለማድረጊያ"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104359\n"
+"help.text"
+msgid "'W', ','"
+msgstr "'W', ','"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104336\n"
+"help.text"
+msgid "End slide show"
+msgstr "ተንሸራታች ማሳያ መጨረሻ"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104419\n"
+"help.text"
+msgid "Esc, '-'"
+msgstr "Esc, '-'"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104460\n"
+"help.text"
+msgid "Go to slide number"
+msgstr "መሄጃ ወደ ተንሸራታች ቁጥር"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110440\n"
+"help.text"
+msgid "Number followed by Enter"
+msgstr "ቁጥርን ተከትሎ ማስገቢያ"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104427\n"
+"help.text"
+msgid "Grow/Shrink size of notes font"
+msgstr "የ ማስታወሻዎችን ፊደል መጠን ማሳደጊያ/ማሳነሻ"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104442\n"
+"help.text"
+msgid "'G', 'S'"
+msgstr "'G', 'S'"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104473\n"
+"help.text"
+msgid "Scroll notes up/down"
+msgstr "ማስታወሻዎችን ወደ ላይ/ታች መሸብለያ"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110459\n"
+"help.text"
+msgid "'A', 'Z'"
+msgstr "'A', 'Z'"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110456\n"
+"help.text"
+msgid "Move caret in notes view backward/forward"
+msgstr "ማንቀሳቀሻ ካሬት ^ በ ማስታወሻ መመልከቻ መደብ/ፊት ለፊት"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110457\n"
+"help.text"
+msgid "'H', 'L'"
+msgstr "'H', 'L'"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104566\n"
+"help.text"
+msgid "Show the Presenter Console"
+msgstr "የ ማቅረቢያ መቆጣጠሪያ ክፍል ማሳያ"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104544\n"
+"help.text"
+msgid "Ctrl-'1'"
+msgstr "Ctrl-'1'"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104535\n"
+"help.text"
+msgid "Show the Presentation Notes"
+msgstr "የ ማቅረቢያ ማስታወሻዎችን ማሳያ"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104680\n"
+"help.text"
+msgid "Ctrl-'2'"
+msgstr "Ctrl-'2'"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104634\n"
+"help.text"
+msgid "Show the Slides Overview"
+msgstr "ተንሸራታቾቹን ባጠቃላይ ማሳያ"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104632\n"
+"help.text"
+msgid "Ctrl-'3'"
+msgstr "Ctrl-'3'"
diff --git a/source/am/helpcontent2/source/text/simpress/guide.po b/source/am/helpcontent2/source/text/simpress/guide.po
index 6bdace934eb..8a520cd240b 100644
--- a/source/am/helpcontent2/source/text/simpress/guide.po
+++ b/source/am/helpcontent2/source/text/simpress/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: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-11-23 01:12+0000\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
+"PO-Revision-Date: 2017-12-19 16:07+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1511399562.000000\n"
+"X-POOTLE-MTIME: 1513699651.000000\n"
#: 3d_create.xhp
msgctxt ""
@@ -2160,6 +2160,14 @@ msgctxt ""
msgid "<link href=\"https://itunes.apple.com/us/app/libreoffice-remote-for-impress/id806879890?mt=8\" name=\"Impress Remote in Apple Itunes Store\">Impress Remote in Apple iTunes Store</link>"
msgstr "<link href=\"https://itunes.apple.com/us/app/libreoffice-remote-for-impress/id806879890?mt=8\" name=\"Impress Remote in Apple Itunes Store\">በርቀት ማስደነቂያ በ Apple iTunes Store</link>"
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id631512838846263\n"
+"help.text"
+msgid "<link href=\"text/simpress/guide/presenter_console.xhp\" name=\"The Presenter Console\">The Presenter Console</link>"
+msgstr "<link href=\"text/simpress/guide/presenter_console.xhp\" name=\"The Presenter Console\">የ ማቅረቢያ መቆጣጠሪያ</link>"
+
#: individual.xhp
msgctxt ""
"individual.xhp\n"
@@ -4648,6 +4656,278 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/insert_bitmap.xhp\">Insert images</link>"
msgstr "<link href=\"text/shared/guide/insert_bitmap.xhp\">ምስሎች ማስገቢያ </link>"
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"tit\n"
+"help.text"
+msgid "Using the Presenter Console"
+msgstr "የ ማቅረቢያ መቆጣጠሪያ አጠቃቀም"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id190820172252141064\n"
+"help.text"
+msgid "<link href=\"text/simpress/guide/presenter_console.xhp\">Using the Presenter Console</link>"
+msgstr "<link href=\"text/simpress/guide/presenter_console.xhp\">የ ማቅረቢያ መቆጣጠሪያ አጠቃቀም</link>"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id190820172252291885\n"
+"help.text"
+msgid "<ahelp hid=\".\">The Presenter Console displays the slide show in an external screen (projector or large television), while the presentation controls are shown in the computer screen.</ahelp>"
+msgstr "<ahelp hid=\".\">የ ማቅረቢያ መቆጣጠሪያ የሚያሳየው የ ተንሸራታች ትርኢት ነው: በ ውጪ መመልከቻ ላይ (ፕሮጄክተር ወይን ትልቅ ቴሌቪዥን ላይ) ነገር ግን የ ተንሸራታች መቆጣጠሪያ የሚታየው በ ኮምፒዩተሩ መመልከቻ ላይ ነው </ahelp>"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id190820172252291668\n"
+"help.text"
+msgid "The Presenter Console provides extra control over slide shows by using different views on your computer display and on the display seen by the audience. The view you see on your computer display includes the current slide, the upcoming slide, optionally the slide notes, and a presentation timer."
+msgstr "የ ማቅረቢያ መቆጣጠሪያ የሚያቀርበው ተጨማሪ መቆጣጠሪያ ነው: በ ተንሸራታቹ ላይ የ ተለያየ መመልከቻ በ መጠቀም በ እርስዎ ኮምፒዩተር ማሳያ ላይ እና በ ተመልካቾች መመልከቻ ላይ: በ እርስዎ ኮምፒዩተር መመልከቻ ላይ የሚያዩት የ አሁኑን ተንሸራታች: የሚቀጥለውን ተንሸራታች: በ ምርጫ የ ተንሸራታች ማስታወሻ: እና የማቅረቢያ ጊዜ መቁጠሪያ ነው"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id91512579485395\n"
+"help.text"
+msgid "The Presenter Console works only on an operating system that supports multiple displays and only when two displays are connected (one may be the laptop built-in display)."
+msgstr "የ ማቅረቢያ መቆጣጠሪያ የሚሰራው በ መስሪያ ስርአቱ ላይ ብቻ ነው: በርካታ መመልከቻዎችን በሚደግፍ እና ሁለት ማሳያዎች በሚገናኙ ጊዜ ነው: (ከ ላፕቶፕ ጋር አብሮ-ከ ተገነባ ማሳያ ጋር ሊሆን ይችላል)"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id391512577186778\n"
+"help.text"
+msgid "Presenter console activation"
+msgstr "የ ማቅረቢያ መቆጣጠሪያ ማስጀመሪያ"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id21512577205388\n"
+"help.text"
+msgid "To enable the Presenter Console:"
+msgstr "የ ማቅረቢያ መቆጣጠሪያ ለ ማስቻል:"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id351512577323192\n"
+"help.text"
+msgid "<item type=\"item_type\">Tools - Options - %PRODUCTNAME Impres - General</item>"
+msgstr "<item type=\"item_type\">መሳሪያዎች - ምርጫዎች - %PRODUCTNAME ማስደነቂያ - ባጠቃላይ </item>"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id411512577389978\n"
+"help.text"
+msgid "Select <emph>Enable Presenter Console</emph> in the Presentation area."
+msgstr "ይምረጡ <emph> የ ማቅረቢያ መቆጣጠሪያ ማስቻያ </emph> በ ማቅረቢያ ቦታ ውስጥ"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id261512578116942\n"
+"help.text"
+msgid "<image src=\"media/screenshots/cui/ui/optionsdialog/impressoptionsgeneraldialog.png\" width=\"793px\" height=\"538px\"> <alt id=\"alt_id821512578116950\">Enable Presenter Console option</alt> </image>"
+msgstr "<image src=\"media/screenshots/cui/ui/optionsdialog/impressoptionsgeneraldialog.png\" width=\"793px\" height=\"538px\"> <alt id=\"alt_id821512578116950\">የ ማቅረቢያ መቆጣጠሪያ ምርጫ ማስቻያ</alt> </image>"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id371512836579028\n"
+"help.text"
+msgid "To activate the Presenter Console:"
+msgstr "የ ማቅረቢያ መቆጣጠሪያ ለ ማስቻል:"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id101512577717469\n"
+"help.text"
+msgid "Connect an auxiliary display to your computer,"
+msgstr "ከ እርስዎ ኮምፒዩተር ጋር ተጨማሪ ማሳያ ያገናኙ"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id391512577726275\n"
+"help.text"
+msgid "Run the slide show. Press F5 or Shift-F5 or choose <item type=\"menuitem\">Slide Show - Start from First Slide</item> or <item type=\"menuitem\">Start from Current Slide</item>."
+msgstr "ተንሸራታች ማስኬድ ይጀምሩ: ይጫኑ F5 ወይንም Shift-F5 ወይንም ይምረጡ <item type=\"menuitem\">ተንሸራታች ማሳያ - ከ መጀመሪያው ተንሸራታች ማስጀመሪያ </item> ወይንም <item type=\"menuitem\"> ከ አሁኑ ተንሸራታች ማስጀመሪያ</item>"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id911512577777440\n"
+"help.text"
+msgid "Presenter console controls"
+msgstr "የ ማቅረቢያ መቆጣጠሪያ"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id721512827886185\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sd_PresenterConsole04.png\" id=\"img_id401512827886185\" width=\"640\" height=\"72\"> <alt id=\"alt_id71512827886185\">Presenter Console Controls</alt> </image>"
+msgstr "<image src=\"media/helpimg/sd_PresenterConsole04.png\" id=\"img_id401512827886185\" width=\"640\" height=\"72\"> <alt id=\"alt_id71512827886185\">የ ማቅረቢያ መቆጣጠሪያ</alt> </image>"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id71512828085688\n"
+"help.text"
+msgid "<emph>Previous</emph>: move to previous slide"
+msgstr "<emph> ያለፈው </emph>: ወደ ያለፈው ተንሸራታች ይመልሳል"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id61512828110394\n"
+"help.text"
+msgid "<emph>Next</emph>: move to next slide"
+msgstr "<emph> ይቀጥሉ </emph>: ወደ የሚቀጥለው ተንሸራታች ይወስዳል"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id981512828129990\n"
+"help.text"
+msgid "<emph>Notes</emph>: display the Presenter Console Notes mode"
+msgstr "<emph> ማስታወሻ </emph>: የ ማቅረቢያ መቆጣጠሪያ ዘዴ ማስታወሻ ያሳያል"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id101512828220096\n"
+"help.text"
+msgid "<emph>Slide</emph>: display the Presenter Console Slide sorter mode"
+msgstr "<emph> ተንሸራታች </emph>: የ ማቅረቢያ መቆጣጠሪያ ተንሸራታች መለያ ዘዴ ያሳያል"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id241512828268769\n"
+"help.text"
+msgid "<emph>Restart</emph>: restart the presentation from slide one."
+msgstr "<emph> እንደገና ማስጀመሪያ </emph>: እንደገና ማስጀመሪያ ተንሸራታቹን ከ መጀመሪያ ያስጀምራል"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id731512828322875\n"
+"help.text"
+msgid "<emph>Exchange</emph>: Switch the displays between the computer and the presentation display."
+msgstr "<emph> መቀያየሪያ </emph>: መመልከቻውን ከ በ ኮምፒዩተሩ እና በ ማቅረቢያ ማሳያ ላይ ይቀያይራል"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id891512828892146\n"
+"help.text"
+msgid "<emph>Close</emph>: In the Notes and Slide Sorter mode, return to the Normal mode."
+msgstr "<emph> መዝጊያ </emph>: በ ማስታወሻ እና በ ተንሸራታች መለያ ዘዴ ውስጥ: ወደ መደበኛ ዘዴ ይመልሳል"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id281512836182615\n"
+"help.text"
+msgid "Presenter Console Keyboard Shortcuts"
+msgstr "የ ማቅረቢያ መቆጣጠሪያ ክፍል የ ፊደል ገበታ አቋራጮች"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id791512827206666\n"
+"help.text"
+msgid "Presenter Console modes"
+msgstr "የ ማቅረቢያ መቆጣጠሪያ ክፍል ዘዴዎች"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id181512827240072\n"
+"help.text"
+msgid "Normal Mode"
+msgstr "የ ተለመደ ዘዴ"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id341512828780413\n"
+"help.text"
+msgid "The Normal mode shows the current slide on the left and the next slide on the right of the computer display."
+msgstr "የ ተለመደው ዘዴ የ አሁኑን ተንሸራታች በ ግራ በኩል ያሳያል እና የሚቀጥለውን ተንሸራታች በ ኮምፒዩተሩ በ ቀኝ በኩል ማሳያ ላይ ያሳያል"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id311512825411947\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sd_PresenterConsole01.png\" id=\"img_id481512825411947\" width=\"640\" height=\"360\"> <alt id=\"alt_id151512825411947\">resenter console normal mode</alt> </image>"
+msgstr "<image src=\"media/helpimg/sd_PresenterConsole01.png\" id=\"img_id481512825411947\" width=\"640\" height=\"360\"> <alt id=\"alt_id151512825411947\">የ ማቅረቢያ መደበኛ መቆጣጠሪያ ዘዴ </alt> </image>"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id51512827289580\n"
+"help.text"
+msgid "Notes mode"
+msgstr "የ ማስታወሻዎች ዘዴ"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id711512828774884\n"
+"help.text"
+msgid "The Notes mode displays the current slide on the left, the slides notes on the right and the next slide below the current slide."
+msgstr "የ ማስታወሻ ዘዴ የሚያሳየው የ አሁኑን ተንሸራታች በ ግራ በኩል ነው: የ ተንሸራታች ማስታወሻ በ ቀኝ በኩል እና የሚቀጥለውን ተንሸራታች ከ አሁኑ ተንሸራታች በ ታች በኩል ነው"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id961512827293400\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sd_PresenterConsole03.png\" id=\"img_id651512827293401\" width=\"640\" height=\"360\"> <alt id=\"alt_id881512827293401\">Notes mode</alt> </image>"
+msgstr "<image src=\"media/helpimg/sd_PresenterConsole03.png\" id=\"img_id651512827293401\" width=\"640\" height=\"360\"> <alt id=\"alt_id881512827293401\">የ ማስታወሻዎች ዘዴ </alt> </image>"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id801512827429345\n"
+"help.text"
+msgid "Slide sorter mode"
+msgstr "የ ተንሸራታች መለያ ዘዴ"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id571512828767315\n"
+"help.text"
+msgid "The Slide Sorter mode displays all slides in the computer screen and allows to display the selected slide out of the presentation order."
+msgstr "የ ተንሸራታች መለያ ዘዴ የሚያሳየው ሁሉንም ተንሸራታቾች ነው በ ኮምፒዩተር መመልከቻ ውስጥ: እና ማሳየት ይቻላል የ ተመረጠውን ተንሸራታች ከ ማቅረቢያው ቅደም ተከተል ውስጥ "
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id721512827434997\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sd_PresenterConsole02.png\" id=\"img_id831512827434997\" width=\"640\" height=\"360\"> <alt id=\"alt_id221512827434997\">Slide sorter mode</alt> </image>"
+msgstr "<image src=\"media/helpimg/sd_PresenterConsole02.png\" id=\"img_id831512827434997\" width=\"640\" height=\"360\"> <alt id=\"alt_id221512827434997\">የ ተንሸራታች መለያ ዘዴ</alt> </image>"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id311512837936329\n"
+"help.text"
+msgid "<link href=\"text/simpress/guide/impress_remote.xhp\" name=\"Impress Remote User Guide\">Impress Remote User Guide</link>"
+msgstr "<link href=\"text/simpress/guide/impress_remote.xhp\" name=\"Impress Remote User Guide\">የ ማስደነቂያ የ ሩቅ ተጠቃሚ መምሪያ </link>"
+
#: print_tofit.xhp
msgctxt ""
"print_tofit.xhp\n"
diff --git a/source/am/helpcontent2/source/text/smath.po b/source/am/helpcontent2/source/text/smath.po
index e23a7899c1c..de361b86a79 100644
--- a/source/am/helpcontent2/source/text/smath.po
+++ b/source/am/helpcontent2/source/text/smath.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: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2017-06-18 19:22+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1497813747.000000\n"
#: main0000.xhp
@@ -120,70 +120,6 @@ msgctxt ""
msgid "This menu contains the general commands for working with formula documents, such as open, save and print."
msgstr "ይህ ዝርዝር የያዛቸው ባጠቃላይ ትእዛዞች በ መቀመሪያ ሰነዶች ውስጥ ለ መስራት ነው እንደ መክፈት ማስቀመጥ እና ማተም"
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3148489\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
-msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">መክፈቻ</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3149501\n"
-"help.text"
-msgid "<link href=\"text/shared/autopi/01000000.xhp\" name=\"AutoPilot\">Wizards</link>"
-msgstr "<link href=\"text/shared/autopi/01000000.xhp\" name=\"AutoPilot\">አዋቂዎች</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"par_id3148840\n"
-"help.text"
-msgid "Use a Wizard to create interactive documents, such as professional letters and faxes, into which you can insert your saved formulas."
-msgstr "አዋቂውን ይጠቀሙ ሰነዶች ለመፍጠር: እንደ ደብዳቤዎች እና ፋክስ ያሉ እርስዎ የተቀመጡ መቀመሪያ ማስገባት የሚችሉበት"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3153251\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
-msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">ማስቀመጫ እንደ</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3149871\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
-msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">እትሞች</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3146325\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
-msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">ባህሪዎች</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3155621\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
-msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">ማተሚያ</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3145826\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">Printer Setup</link>"
-msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">ማተሚያ ማሰናጃ</link>"
-
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
diff --git a/source/am/helpcontent2/source/text/swriter/guide.po b/source/am/helpcontent2/source/text/swriter/guide.po
index b7c4ea1cfc8..9c94260b372 100644
--- a/source/am/helpcontent2/source/text/swriter/guide.po
+++ b/source/am/helpcontent2/source/text/swriter/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: 2017-12-06 15:59+0100\n"
-"PO-Revision-Date: 2017-12-08 00:52+0000\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
+"PO-Revision-Date: 2017-12-18 15:54+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1512694355.000000\n"
+"X-POOTLE-MTIME: 1513612468.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -7213,8 +7213,8 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
-msgstr "ይምረጡ <item type=\"menuitem\"> መሳሪያዎች - </item><item type=\"menuitem\"> ምእራፍ </item><item type=\"menuitem\"> ቁጥር መስጫ </item> እና ይጫኑ የ <emph> ቁጥር መስጫ </emph> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item> and click the <emph>Numbering</emph> tab."
+msgstr "ይምረጡ <item type=\"menuitem\"> መሳሪያዎች - ምእራፍ ቁጥር መስጫ </item> እና ይጫኑ የ <emph> ቁጥር መስጫ </emph> tab."
#: indices_enter.xhp
msgctxt ""
@@ -15704,6 +15704,14 @@ msgctxt ""
msgid "Moves the cursor to the footer."
msgstr "መጠቆሚያውን ወደ ግርጌ ማንቀሳቀሻ"
+#: text_nav_keyb.xhp
+msgctxt ""
+"text_nav_keyb.xhp\n"
+"par_id921513466017508\n"
+"help.text"
+msgid "<link href=\"text/shared/02/20050000.xhp\" name=\"Selection modes\">Selection Modes</link>"
+msgstr "<link href=\"text/shared/02/20050000.xhp\" name=\"Selection Mode\"> መምረጫ ዘዴ </link>"
+
#: text_rotate.xhp
msgctxt ""
"text_rotate.xhp\n"
diff --git a/source/am/officecfg/registry/data/org/openoffice/Office/UI.po b/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
index e1842bb69ff..c04145cf96a 100644
--- a/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/am/officecfg/registry/data/org/openoffice/Office/UI.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: 2017-12-06 15:59+0100\n"
-"PO-Revision-Date: 2017-12-08 01:52+0000\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
+"PO-Revision-Date: 2017-12-18 15:12+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1512697927.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1513609929.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -2767,8 +2767,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:Hide\n"
"Label\n"
"value.text"
-msgid "~Hide Sheets"
-msgstr "ወረቀቶች ~መደበቂያ"
+msgid "~Hide Sheet"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -3514,17 +3514,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:EditLinks\n"
"Label\n"
"value.text"
-msgid "Edit Lin~ks..."
-msgstr "አገና~ኞች ማረሚያ..."
-
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:EditLinks\n"
-"ContextLabel\n"
-"value.text"
-msgid "Lin~ks..."
-msgstr "አገና~ኞች..."
+msgid "Lin~ks to External Files..."
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -6638,7 +6629,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Migrate Macros ..."
-msgstr "Macros ማዘዋወሪያ..."
+msgstr "ማክሮስ ማዘዋወሪያ..."
#: DbuCommands.xcu
msgctxt ""
@@ -6841,15 +6832,6 @@ msgstr "ተ~ንሸራታች"
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Commands..uno:SlideNavigateMenu\n"
-"Label\n"
-"value.text"
-msgid "Navigate"
-msgstr "መቃኛ"
-
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:SlideMoveMenu\n"
"Label\n"
"value.text"
@@ -7453,6 +7435,15 @@ msgstr "የ ~ገጽ ቁጥር"
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlideField\n"
+"Label\n"
+"value.text"
+msgid "~Slide Number"
+msgstr "የ ~ተንሸራታች ቁጥር"
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:InsertPageTitleField\n"
"Label\n"
"value.text"
@@ -7462,6 +7453,15 @@ msgstr "የ ገጽ አርእ~ስት"
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlideTitleField\n"
+"Label\n"
+"value.text"
+msgid "Slide Tit~le"
+msgstr "የ ተንሸራታች አርእ~ስት"
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:InsertPagesField\n"
"Label\n"
"value.text"
@@ -7471,6 +7471,15 @@ msgstr "የ ገጽ ~መቁጠሪያ"
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlidesField\n"
+"Label\n"
+"value.text"
+msgid "Slide ~Count"
+msgstr "ተንሸራታች ~መቁጠሪያ"
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:ModifyField\n"
"Label\n"
"value.text"
@@ -7690,8 +7699,8 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:ManageLinks\n"
"Label\n"
"value.text"
-msgid "Lin~ks..."
-msgstr "አገና~ኞች..."
+msgid "Lin~ks to External Files..."
+msgstr ""
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7780,8 +7789,8 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:ImportSlideFromFile\n"
"Label\n"
"value.text"
-msgid "Import Slides..."
-msgstr "ተንሸራታች ማምጫ..."
+msgid "Insert Slide from File..."
+msgstr ""
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8992,6 +9001,15 @@ msgstr "የገ~ጽ ቁጥር..."
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Popups..uno:InsertSlideNumber\n"
+"Label\n"
+"value.text"
+msgid "S~lide Number..."
+msgstr "የ ተ~ንሸራታች ቁጥር..."
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:InsertDateAndTime\n"
"Label\n"
"value.text"
@@ -16043,7 +16061,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit Macros"
-msgstr "Macros ማረሚያ"
+msgstr "ማክሮስ ማረሚያ"
#: GenericCommands.xcu
msgctxt ""
@@ -17367,8 +17385,8 @@ msgctxt ""
"..GenericCommands.UserInterface.Commands..uno:InsertDoc\n"
"Label\n"
"value.text"
-msgid "Doc~ument..."
-msgstr "ሰ~ነድ..."
+msgid "Text from File..."
+msgstr ""
#: GenericCommands.xcu
msgctxt ""
@@ -17544,6 +17562,15 @@ msgstr "የ ዘዴዎች የ ጎን መደርደሪያ ማሳያ"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ViewSidebarStyles\n"
+"Label\n"
+"value.text"
+msgid "Styles"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:OutlineRight\n"
"Label\n"
"value.text"
@@ -19146,24 +19173,6 @@ msgstr "ኢሞጂ ማስገቢያ"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
-"Label\n"
-"value.text"
-msgid "Charmap"
-msgstr "የ ባህሪ ካርታ"
-
-#: GenericCommands.xcu
-msgctxt ""
-"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
-"TooltipLabel\n"
-"value.text"
-msgid "Insert Special Characters"
-msgstr "የ ተለዩ ባህሪዎች ማስገቢያ"
-
-#: GenericCommands.xcu
-msgctxt ""
-"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:TransformRotationX\n"
"Label\n"
"value.text"
@@ -19753,7 +19762,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit Macros"
-msgstr "Macros ማረሚያ"
+msgstr "ማክሮስ ማረሚያ"
#: GenericCommands.xcu
msgctxt ""
@@ -20185,7 +20194,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Relief"
-msgstr "Relief"
+msgstr "ክፍተት"
#: GenericCommands.xcu
msgctxt ""
@@ -20194,7 +20203,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Posterize"
-msgstr "Posterize"
+msgstr "ቀለም መቀነሻ"
#: GenericCommands.xcu
msgctxt ""
@@ -20307,6 +20316,33 @@ msgstr "የ ተለየ ባህሪ ማስገቢያ"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"Label\n"
+"value.text"
+msgid "Symbol"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"ContextLabel\n"
+"value.text"
+msgid "S~pecial Character..."
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Insert Special Characters"
+msgstr "የ ተለዩ ባህሪዎች ማስገቢያ"
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ViewDataSourceBrowser\n"
"Label\n"
"value.text"
@@ -20352,6 +20388,15 @@ msgstr "መላኪያ በ ~ብሉቱዝ..."
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ExportAsMenu\n"
+"Label\n"
+"value.text"
+msgid "~Export As"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportToPDF\n"
"Label\n"
"value.text"
@@ -20418,8 +20463,8 @@ msgctxt ""
"..GenericCommands.UserInterface.Commands..uno:ExportToEPUB\n"
"ContextLabel\n"
"value.text"
-msgid "~Export as EPUB..."
-msgstr "~መላኪያ እንደ EPUB..."
+msgid "Export as E~PUB..."
+msgstr ""
#: GenericCommands.xcu
msgctxt ""
@@ -20707,7 +20752,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Organize Macros"
-msgstr "Macros ~ማደራጃ"
+msgstr "ማክሮስ ~ማደራጃ"
#: GenericCommands.xcu
msgctxt ""
@@ -22255,7 +22300,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Macros"
-msgstr "~Macros"
+msgstr "~ማክሮስ"
#: GenericCommands.xcu
msgctxt ""
@@ -22770,6 +22815,15 @@ msgctxt ""
msgid "~Restart in Safe Mode..."
msgstr "በ ጥንቃቄ ዘዴ ~እንደገና ማስነሻ..."
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:NavigateMenu\n"
+"Label\n"
+"value.text"
+msgid "Navigate"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25144,7 +25198,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Macros"
-msgstr "~Macros"
+msgstr "~ማክሮስ"
#: StartModuleCommands.xcu
msgctxt ""
@@ -25368,8 +25422,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:ShowHiddenParagraphs\n"
"Label\n"
"value.text"
-msgid "~Hidden Paragraphs"
-msgstr "የ ~ተደበቁ አንቀጾች"
+msgid "Field ~Hidden Paragraphs"
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
@@ -27330,8 +27384,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:LinkDialog\n"
"Label\n"
"value.text"
-msgid "Lin~ks..."
-msgstr "አገና~ኞች..."
+msgid "Lin~ks to External Files..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
@@ -30036,7 +30090,7 @@ msgstr "የ ነጥብ ዝርዝር ዘዴ"
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 1&amp;FamilyName:string=NumberingStyles\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 123&amp;FamilyName:string=NumberingStyles\n"
"Label\n"
"value.text"
msgid "Number List"
@@ -30063,11 +30117,65 @@ msgstr "የ ቁጥር ዝርዝር ዘዴ"
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 4&amp;FamilyName:string=NumberingStyles\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering ABC&amp;FamilyName:string=NumberingStyles\n"
"Label\n"
"value.text"
-msgid "Roman List"
-msgstr "የ ሮማን ቁጥር ዝርዝር"
+msgid "Alphabet Uppercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaListStyle\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Uppercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Alphabet Uppercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering abc&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaLowListStyle\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaLowListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Alphabet Lowercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering IVX&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Roman Uppercase List"
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
@@ -30075,8 +30183,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Popups..uno:RomanListStyle\n"
"Label\n"
"value.text"
-msgid "Roman List"
-msgstr "የ ሮማን ዝርዝር"
+msgid "Roman Uppercase List"
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
@@ -30084,8 +30192,35 @@ msgctxt ""
"..WriterCommands.UserInterface.Popups..uno:RomanListStyle\n"
"TooltipLabel\n"
"value.text"
-msgid "Roman List Style"
-msgstr "የ ሮማን ዝርዝር ዘዴ"
+msgid "Roman Uppercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering ivx&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Roman Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:RomanLowListStyle\n"
+"Label\n"
+"value.text"
+msgid "Roman Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:RomanLowListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Roman Lowercase List Style"
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/am/sd/messages.po b/source/am/sd/messages.po
index ec41c7f0668..6429f6c0c09 100644
--- a/source/am/sd/messages.po
+++ b/source/am/sd/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: 2017-11-22 15:29+0100\n"
-"PO-Revision-Date: 2017-11-23 02:41+0000\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
+"PO-Revision-Date: 2017-12-18 15:14+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1511404918.000000\n"
+"X-POOTLE-MTIME: 1513610068.000000\n"
#: DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
@@ -1550,863 +1550,873 @@ msgid "Master Slide"
msgstr "ዋናው ተንሸራታች"
#: strings.hrc:287
+msgctxt "STR_MASTERSLIDE_LABEL"
+msgid "Master Slide:"
+msgstr "ዋናው ተንሸራታች:"
+
+#: strings.hrc:288
msgctxt "STR_MASTERPAGE_NAME"
msgid "Master Page"
msgstr "ዋናው ገጽ"
-#: strings.hrc:288
+#: strings.hrc:289
+msgctxt "STR_MASTERPAGE_LABEL"
+msgid "Master Page:"
+msgstr "ዋናው ገጽ:"
+
+#: strings.hrc:290
msgctxt "STR_NOTES"
msgid "(Notes)"
msgstr "(ማስታወሻዎች)"
-#: strings.hrc:289
+#: strings.hrc:291
msgctxt "STR_HANDOUT"
msgid "Handouts"
msgstr "ምፅዋት"
-#: strings.hrc:290
+#: strings.hrc:292
msgctxt "STR_PRESOBJ_MPTITLE"
msgid "Click to edit the title text format"
msgstr "የአርእስት ጽሁፍ አቀራረብ ለማረም ይጫኑ"
-#: strings.hrc:291
+#: strings.hrc:293
msgctxt "STR_PRESOBJ_MPOUTLINE"
msgid "Click to edit the outline text format"
msgstr "የአርእስት ጽሁፍ ረቂቅ አቀራረብ ለማረም ይጫኑ"
-#: strings.hrc:292
+#: strings.hrc:294
msgctxt "STR_PRESOBJ_MPOUTLLAYER2"
msgid "Second Outline Level"
msgstr "ሁለተኛ የረቂቅ ደረጃ"
-#: strings.hrc:293
+#: strings.hrc:295
msgctxt "STR_PRESOBJ_MPOUTLLAYER3"
msgid "Third Outline Level"
msgstr "ሶስተኛ የረቂቅ ደረጃ"
-#: strings.hrc:294
+#: strings.hrc:296
msgctxt "STR_PRESOBJ_MPOUTLLAYER4"
msgid "Fourth Outline Level"
msgstr "አራተኛ የረቂቅ ደረጃ"
-#: strings.hrc:295
+#: strings.hrc:297
msgctxt "STR_PRESOBJ_MPOUTLLAYER5"
msgid "Fifth Outline Level"
msgstr "አምስተኛ የረቂቅ ደረጃ"
-#: strings.hrc:296
+#: strings.hrc:298
msgctxt "STR_PRESOBJ_MPOUTLLAYER6"
msgid "Sixth Outline Level"
msgstr "ስድስተኛ የረቂቅ ደረጃ"
-#: strings.hrc:297
+#: strings.hrc:299
msgctxt "STR_PRESOBJ_MPOUTLLAYER7"
msgid "Seventh Outline Level"
msgstr "ሰባተኛ የረቂቅ ደረጃ"
-#: strings.hrc:298
+#: strings.hrc:300
msgctxt "STR_PRESOBJ_MPNOTESTITLE"
msgid "Click to move the slide"
msgstr "ተንሸራቱቹን ለማንቀሳቀስ ይጫኑ"
-#: strings.hrc:299
+#: strings.hrc:301
msgctxt "STR_PRESOBJ_MPNOTESTEXT"
msgid "Click to edit the notes format"
msgstr "የማስታወሻ አቀራረብ ለማረም ይጫኑ"
-#: strings.hrc:300
+#: strings.hrc:302
msgctxt "STR_PRESOBJ_TITLE"
msgid "Click to add Title"
msgstr "አርእስት ለ መጨመር ይጫኑ"
-#: strings.hrc:301
+#: strings.hrc:303
msgctxt "STR_PRESOBJ_OUTLINE"
msgid "Click to add Text"
msgstr "ጽሁፍ ለመጨመር ይጫኑ"
-#: strings.hrc:302
+#: strings.hrc:304
msgctxt "STR_PRESOBJ_TEXT"
msgid "Click to add Text"
msgstr "ጽሁፍ ለመጨመር ይጫኑ"
-#: strings.hrc:303
+#: strings.hrc:305
msgctxt "STR_PRESOBJ_NOTESTEXT"
msgid "Click to add Notes"
msgstr "ማስታወሻዎች ለመጨመር ይጫኑ"
-#: strings.hrc:304
+#: strings.hrc:306
msgctxt "STR_PRESOBJ_GRAPHIC"
msgid "Double-click to add an Image"
msgstr "ሁለት-ጊዜ ይጫኑ ምስል ለመጨመር"
-#: strings.hrc:305
+#: strings.hrc:307
msgctxt "STR_PRESOBJ_OBJECT"
msgid "Double-click to add an Object"
msgstr "ሁለት-ጊዜ ይጫኑ እቃ ለመጨመር"
-#: strings.hrc:306
+#: strings.hrc:308
msgctxt "STR_PRESOBJ_CHART"
msgid "Double-click to add a Chart"
msgstr "ሁለት-ጊዜ ይጫኑ ቻርት ለ መጨመር"
-#: strings.hrc:307
+#: strings.hrc:309
msgctxt "STR_PRESOBJ_ORGCHART"
msgid "Double-click to add an Organization Chart"
msgstr "ሁለት-ጊዜ ይጫኑ የ ድርጅት ቻርት ለ መጨመር"
-#: strings.hrc:308
+#: strings.hrc:310
msgctxt "STR_PRESOBJ_TABLE"
msgid "Double-click to add a Spreadsheet"
msgstr "ሁለት-ጊዜ ይጫኑ ሰንጠረዥ ለመጨመር"
-#: strings.hrc:309
+#: strings.hrc:311
msgctxt "STR_LAYOUT_DEFAULT_NAME"
msgid "Default"
msgstr "ነባር"
-#: strings.hrc:310
+#: strings.hrc:312
msgctxt "STR_LAYOUT_DEFAULT_TITLE_NAME"
msgid "Title"
msgstr "አርእስት"
-#: strings.hrc:311
+#: strings.hrc:313
msgctxt "STR_STANDARD_STYLESHEET_NAME"
msgid "Default"
msgstr "ነባር"
-#: strings.hrc:312
+#: strings.hrc:314
msgctxt "STR_UNDO_MOVEPAGES"
msgid "Move slides"
msgstr "ተንሸራታቾችን ማንቀሳቀሻ"
-#: strings.hrc:313
+#: strings.hrc:315
msgctxt "STR_POOLSHEET_MEASURE"
msgid "Dimension Line"
msgstr "የ ወርድ ፡ ስፋት ፡ ቁመት መስመር"
-#: strings.hrc:314
+#: strings.hrc:316
msgctxt "STR_POOLSHEET_OBJNOLINENOFILL"
msgid "Object with no fill and no line"
msgstr "መሙያ እና መስመር የሌለው እቃ"
-#: strings.hrc:315
+#: strings.hrc:317
msgctxt "STR_POOLSHEET_OBJWITHARROW"
msgid "Object with arrow"
msgstr "እቃዎች ከ ቀስት ጋር"
-#: strings.hrc:316
+#: strings.hrc:318
msgctxt "STR_POOLSHEET_OBJWITHSHADOW"
msgid "Object with shadow"
msgstr "እቃዎች ከጥላ ጋር"
-#: strings.hrc:317
+#: strings.hrc:319
msgctxt "STR_POOLSHEET_OBJWITHOUTFILL"
msgid "Object without fill"
msgstr "መሙያ የሌላቸው እቃዎች"
-#: strings.hrc:318
+#: strings.hrc:320
msgctxt "STR_POOLSHEET_TEXT"
msgid "Text"
msgstr "ጽሁፍ"
-#: strings.hrc:319
+#: strings.hrc:321
msgctxt "STR_POOLSHEET_TEXTBODY"
msgid "Text body"
msgstr "የ ጽሁፍ አካል"
-#: strings.hrc:320
+#: strings.hrc:322
msgctxt "STR_POOLSHEET_TEXTBODY_JUSTIFY"
msgid "Text body justified"
msgstr "የ ጽሁፍ አካል እኩል ማካፈያ"
-#: strings.hrc:321
+#: strings.hrc:323
msgctxt "STR_POOLSHEET_TEXTBODY_INDENT"
msgid "First line indent"
msgstr "የ መጀመሪያ መስመር ማስረጊያ"
-#: strings.hrc:322
+#: strings.hrc:324
msgctxt "STR_POOLSHEET_TITLE"
msgid "Title"
msgstr "አርእስት"
-#: strings.hrc:323
+#: strings.hrc:325
msgctxt "STR_POOLSHEET_TITLE1"
msgid "Title1"
msgstr "አርእስት1"
-#: strings.hrc:324
+#: strings.hrc:326
msgctxt "STR_POOLSHEET_TITLE2"
msgid "Title2"
msgstr "አርእስት2"
-#: strings.hrc:325
+#: strings.hrc:327
msgctxt "STR_POOLSHEET_HEADLINE"
msgid "Heading"
msgstr "ራስጌ"
-#: strings.hrc:326
+#: strings.hrc:328
msgctxt "STR_POOLSHEET_HEADLINE1"
msgid "Heading1"
msgstr "ራስጌ1"
-#: strings.hrc:327
+#: strings.hrc:329
msgctxt "STR_POOLSHEET_HEADLINE2"
msgid "Heading2"
msgstr "ራስጌ2"
-#: strings.hrc:328
+#: strings.hrc:330
msgctxt "STR_PSEUDOSHEET_TITLE"
msgid "Title"
msgstr "አርእስት"
-#: strings.hrc:329
+#: strings.hrc:331
msgctxt "STR_PSEUDOSHEET_SUBTITLE"
msgid "Subtitle"
msgstr "ንዑስ አርእስት"
-#: strings.hrc:330
+#: strings.hrc:332
msgctxt "STR_PSEUDOSHEET_OUTLINE"
msgid "Outline"
msgstr "ረቂቅ"
-#: strings.hrc:331
+#: strings.hrc:333
msgctxt "STR_PSEUDOSHEET_BACKGROUNDOBJECTS"
msgid "Background objects"
msgstr "የ መደቡ እቃዎች"
-#: strings.hrc:332
+#: strings.hrc:334
msgctxt "STR_PSEUDOSHEET_BACKGROUND"
msgid "Background"
msgstr "መደብ"
-#: strings.hrc:333
+#: strings.hrc:335
msgctxt "STR_PSEUDOSHEET_NOTES"
msgid "Notes"
msgstr "ማስታወሻዎች"
-#: strings.hrc:334
+#: strings.hrc:336
msgctxt "STR_POWERPOINT_IMPORT"
msgid "PowerPoint Import"
msgstr "PowerPoint Import"
-#: strings.hrc:335
+#: strings.hrc:337
msgctxt "STR_SAVE_DOC"
msgid "Save Document"
msgstr "ሰነድ ማስቀመጫ"
-#: strings.hrc:336
+#: strings.hrc:338
msgctxt "STR_POOLSHEET_BANDED_CELL"
msgid "Banding cell"
msgstr "ክፍል ማጣመሪያ"
-#: strings.hrc:337
+#: strings.hrc:339
msgctxt "STR_POOLSHEET_HEADER"
msgid "Header"
msgstr "ራስጌ"
-#: strings.hrc:338
+#: strings.hrc:340
msgctxt "STR_POOLSHEET_TOTAL"
msgid "Total line"
msgstr "ጠቅላላ መስመር"
-#: strings.hrc:339
+#: strings.hrc:341
msgctxt "STR_POOLSHEET_FIRST_COLUMN"
msgid "First column"
msgstr "የመጀመሪያው አምድ"
-#: strings.hrc:340
+#: strings.hrc:342
msgctxt "STR_POOLSHEET_LAST_COLUMN"
msgid "Last column"
msgstr "የ መጨረሻው አምድ"
-#: strings.hrc:341
+#: strings.hrc:343
msgctxt "STR_ENTER_PIN"
msgid "Enter PIN:"
msgstr "የመግቢያ ቃል ያስገቡ:"
-#: strings.hrc:342
+#: strings.hrc:344
msgctxt "STR_DEAUTHORISE_CLIENT"
msgid "Remove client authorisation"
msgstr "የ ደንበኛ ፍቃድ ማስወገጃ"
-#: strings.hrc:343
+#: strings.hrc:345
msgctxt "STR_SHRINK_FONT_SIZE"
msgid "Shrink font size"
msgstr "የ ፊደል መጠን ማሳነሻ"
-#: strings.hrc:344
+#: strings.hrc:346
msgctxt "STR_GROW_FONT_SIZE"
msgid "Grow font size"
msgstr "የ ፊደል መጠን ማሳደጊያ"
#. Names and descriptions of the Draw/Impress accessibility views
#. ==============================================================
-#: strings.hrc:349
+#: strings.hrc:351
msgctxt "SID_SD_A11Y_D_DRAWVIEW_N"
msgid "Drawing View"
msgstr "መሳያ መመልከቻ"
-#: strings.hrc:350
+#: strings.hrc:352
msgctxt "SID_SD_A11Y_D_DRAWVIEW_D"
msgid "This is where you create and edit drawings."
msgstr "እዚህ ነው ስእል መፍጠር እና ማረም የሚችሉት"
-#: strings.hrc:351
+#: strings.hrc:353
msgctxt "SID_SD_A11Y_I_DRAWVIEW_N"
msgid "Drawing View"
msgstr "መሳያ መመልከቻ"
-#: strings.hrc:352
+#: strings.hrc:354
msgctxt "SID_SD_A11Y_I_DRAWVIEW_D"
msgid "This is where you create and edit slides."
msgstr "እዚህ ነው ተንሸራታቾች መፍጠር እና ማረም የሚችሉት"
-#: strings.hrc:353
+#: strings.hrc:355
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_N"
msgid "Outline View"
msgstr "ረቂቅ መመልከቻ"
-#: strings.hrc:354
+#: strings.hrc:356
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_D"
msgid "This is where you enter or edit text in list form."
msgstr "እዚህ ነው የሚያስገቡት ወይም ከዝርዝር ፎርም ውስጥ ጽሁፍ የሚያርሙት"
-#: strings.hrc:355
+#: strings.hrc:357
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_N"
msgid "Slides View"
msgstr "ተንሸራታች መመልከቻ"
-#: strings.hrc:356
+#: strings.hrc:358
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_D"
msgid "This is where you sort slides."
msgstr "ተንሸራታቾችን የሚለዩት እዚህ ነው"
-#: strings.hrc:357
+#: strings.hrc:359
msgctxt "SID_SD_A11Y_I_NOTESVIEW_N"
msgid "Notes View"
msgstr "ማስታወሻ መመልከቻ"
-#: strings.hrc:358
+#: strings.hrc:360
msgctxt "SID_SD_A11Y_I_NOTESVIEW_D"
msgid "This is where you enter and view notes."
msgstr "እዚህ ነው ማስታወሻ ማስገባት እና መመልከት የሚችሉት"
-#: strings.hrc:359
+#: strings.hrc:361
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_N"
msgid "Handout View"
msgstr "ምፅዋት መመልከቻ"
-#: strings.hrc:360
+#: strings.hrc:362
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_D"
msgid "This is where you decide on the layout for handouts."
msgstr "እዚህ ነው ለ እቅድ ረቀቅ የሚወስኑት"
-#: strings.hrc:361
+#: strings.hrc:363
msgctxt "SID_SD_A11Y_P_TITLE_N"
msgid "PresentationTitle"
msgstr "የ ማቅረቢያ አርእስት"
-#: strings.hrc:362
+#: strings.hrc:364
msgctxt "SID_SD_A11Y_P_OUTLINER_N"
msgid "PresentationOutliner"
msgstr "የ ማቅረቢያ ንድፍ"
-#: strings.hrc:363
+#: strings.hrc:365
msgctxt "SID_SD_A11Y_P_SUBTITLE_N"
msgid "PresentationSubtitle"
msgstr "የ ማቅረቢያ ንዑስ አርእስት"
-#: strings.hrc:364
+#: strings.hrc:366
msgctxt "SID_SD_A11Y_P_PAGE_N"
msgid "PresentationPage"
msgstr "የ ማቅረቢያ ገጽ"
-#: strings.hrc:365
+#: strings.hrc:367
msgctxt "SID_SD_A11Y_P_NOTES_N"
msgid "PresentationNotes"
msgstr "የ ማቅረቢያ ማስታወሻዎች"
-#: strings.hrc:366
+#: strings.hrc:368
msgctxt "SID_SD_A11Y_P_HANDOUT_N"
msgid "Handout"
msgstr "በ እጅ የሚሰጥ"
-#: strings.hrc:367
+#: strings.hrc:369
msgctxt "SID_SD_A11Y_P_UNKNOWN_N"
msgid "UnknownAccessiblePresentationShape"
msgstr "ያልታወቀ ሊደረስበት የሚችል የማቅረቢያ ቅርጽ"
-#: strings.hrc:368
+#: strings.hrc:370
msgctxt "SID_SD_A11Y_P_TITLE_D"
msgid "PresentationTitleShape"
msgstr "የ ማቅረቢያ አርእስት ቅርጽ"
-#: strings.hrc:369
+#: strings.hrc:371
msgctxt "SID_SD_A11Y_P_OUTLINER_D"
msgid "PresentationOutlinerShape"
msgstr "የ ማቅረቢያ እቅድ ቅርጽ"
-#: strings.hrc:370
+#: strings.hrc:372
msgctxt "SID_SD_A11Y_P_SUBTITLE_D"
msgid "PresentationSubtitleShape"
msgstr "የ ማቅረቢያ ንዑስ አርእስት ቅርጽ"
-#: strings.hrc:371
+#: strings.hrc:373
msgctxt "SID_SD_A11Y_P_PAGE_D"
msgid "PresentationPageShape"
msgstr "የ ማቅረቢያ ገጽ ቅርጽ"
-#: strings.hrc:372
+#: strings.hrc:374
msgctxt "SID_SD_A11Y_P_NOTES_D"
msgid "PresentationNotesShape"
msgstr "የ ማቅረቢያ ማስታወሻዎች ቅርጽ"
-#: strings.hrc:373
+#: strings.hrc:375
msgctxt "SID_SD_A11Y_P_HANDOUT_D"
msgid "PresentationHandoutShape"
msgstr "የ ማቅረቢያ በ እጅ የሚሰጥ ቅርጽ"
-#: strings.hrc:374
+#: strings.hrc:376
msgctxt "SID_SD_A11Y_P_UNKNOWN_D"
msgid "Unknown accessible presentation shape"
msgstr "ያልታወቀ ሊደረስበት የሚችል የማቅረቢያ ቅርጽ"
-#: strings.hrc:375
+#: strings.hrc:377
msgctxt "SID_SD_A11Y_P_FOOTER_N"
msgid "PresentationFooter"
msgstr "የ ማቅረቢያ ግርጌ"
-#: strings.hrc:376
+#: strings.hrc:378
msgctxt "SID_SD_A11Y_P_FOOTER_D"
msgid "PresentationFooterShape"
msgstr "የ ማቅረቢያ ግርጌ ቅርጽ"
-#: strings.hrc:377
+#: strings.hrc:379
msgctxt "SID_SD_A11Y_P_HEADER_N"
msgid "PresentationHeader"
msgstr "የ ማቅረቢያ ራስጌ"
-#: strings.hrc:378
+#: strings.hrc:380
msgctxt "SID_SD_A11Y_P_HEADER_D"
msgid "PresentationHeaderShape"
msgstr "የ ማቅረቢያ አርእስት ቅርጽ"
-#: strings.hrc:379
+#: strings.hrc:381
msgctxt "SID_SD_A11Y_P_DATE_N"
msgid "PresentationDateAndTime"
msgstr "የ ማቅረቢያ ቀን እና ሰአት"
-#: strings.hrc:380
+#: strings.hrc:382
msgctxt "SID_SD_A11Y_P_DATE_D"
msgid "PresentationDateAndTimeShape"
msgstr "የ ማቅረቢያ ቀን እና ሰአት ቅርጽ"
-#: strings.hrc:381
+#: strings.hrc:383
msgctxt "SID_SD_A11Y_P_NUMBER_N"
msgid "PresentationPageNumber"
msgstr "የ ማቅረቢያ ገጽ ቁጥር"
-#: strings.hrc:382
+#: strings.hrc:384
msgctxt "SID_SD_A11Y_P_NUMBER_D"
msgid "PresentationPageNumberShape"
msgstr "የ ማቅረቢያ ገጽ ቁጥር ቅርጽ"
-#: strings.hrc:383
+#: strings.hrc:385
msgctxt "SID_SD_A11Y_D_PRESENTATION"
msgid "%PRODUCTNAME Presentation"
msgstr "%PRODUCTNAME ማቅረቢያ"
-#: strings.hrc:384
+#: strings.hrc:386
msgctxt "SID_SD_A11Y_P_TITLE_N_STYLE"
msgid "Title"
msgstr "አርእስት"
-#: strings.hrc:385
+#: strings.hrc:387
msgctxt "SID_SD_A11Y_P_OUTLINER_N_STYLE"
msgid "Outliner"
msgstr "ንድፍ"
-#: strings.hrc:386
+#: strings.hrc:388
msgctxt "SID_SD_A11Y_P_SUBTITLE_N_STYLE"
msgid "Subtitle"
msgstr "ንዑስ አርእስት"
-#: strings.hrc:387
+#: strings.hrc:389
msgctxt "SID_SD_A11Y_P_PAGE_N_STYLE"
msgid "Page"
msgstr "ገጽ"
-#: strings.hrc:388
+#: strings.hrc:390
msgctxt "SID_SD_A11Y_P_NOTES_N_STYLE"
msgid "Notes"
msgstr "ማስታወሻዎች"
-#: strings.hrc:389
+#: strings.hrc:391
msgctxt "SID_SD_A11Y_P_HANDOUT_N_STYLE"
msgid "Handout"
msgstr "በ እጅ የሚሰጥ"
-#: strings.hrc:390
+#: strings.hrc:392
msgctxt "SID_SD_A11Y_P_UNKNOWN_N_STYLE"
msgid "Unknown Accessible Presentation Shape"
msgstr "ያልታወቀ ሊደረስበት የሚችል የማቅረቢያ ቅርጽ"
-#: strings.hrc:391
+#: strings.hrc:393
msgctxt "SID_SD_A11Y_P_FOOTER_N_STYLE"
msgid "Footer"
msgstr "ግርጌ"
-#: strings.hrc:392
+#: strings.hrc:394
msgctxt "SID_SD_A11Y_P_HEADER_N_STYLE"
msgid "Header"
msgstr "ራስጌ"
-#: strings.hrc:393
+#: strings.hrc:395
msgctxt "SID_SD_A11Y_P_DATE_N_STYLE"
msgid "Date"
msgstr "ቀን"
-#: strings.hrc:394
+#: strings.hrc:396
msgctxt "SID_SD_A11Y_P_NUMBER_N_STYLE"
msgid "Number"
msgstr "ቁጥር"
-#: strings.hrc:395
+#: strings.hrc:397
msgctxt "SID_SD_A11Y_D_PRESENTATION_READONLY"
msgid "(read-only)"
msgstr "(ለንባብ-ብቻ)"
-#: strings.hrc:397
+#: strings.hrc:399
msgctxt "STR_CUSTOMANIMATION_REPEAT_NONE"
msgid "none"
msgstr "ምንም"
-#: strings.hrc:398
+#: strings.hrc:400
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_NEXT_CLICK"
msgid "Until next click"
msgstr "የሚቀጥለውን እስክጫን"
-#: strings.hrc:399
+#: strings.hrc:401
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_END_OF_SLIDE"
msgid "Until end of slide"
msgstr "ተንሸራታቹ እስከሚያልቅ"
-#: strings.hrc:400
+#: strings.hrc:402
msgctxt "STR_CUSTOMANIMATION_DIRECTION_PROPERTY"
msgid "Direction:"
msgstr "አቅጣጫ:"
-#: strings.hrc:401
+#: strings.hrc:403
msgctxt "STR_CUSTOMANIMATION_ZOOM_PROPERTY"
msgid "Zoom:"
msgstr "ማሳያ:"
-#: strings.hrc:402
+#: strings.hrc:404
msgctxt "STR_CUSTOMANIMATION_SPOKES_PROPERTY"
msgid "Spokes:"
msgstr "ሽቦዎች:"
-#: strings.hrc:403
+#: strings.hrc:405
msgctxt "STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY"
msgid "First color:"
msgstr "የ መጀመሪያ ቀለም:"
-#: strings.hrc:404
+#: strings.hrc:406
msgctxt "STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY"
msgid "Second color:"
msgstr "ሁለተኛ ቀለም:"
-#: strings.hrc:405
+#: strings.hrc:407
msgctxt "STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY"
msgid "Fill color:"
msgstr "ቀለም መሙያ"
-#: strings.hrc:406
+#: strings.hrc:408
msgctxt "STR_CUSTOMANIMATION_STYLE_PROPERTY"
msgid "Style:"
msgstr "ዘዴ:"
-#: strings.hrc:407
+#: strings.hrc:409
msgctxt "STR_CUSTOMANIMATION_FONT_PROPERTY"
msgid "Font:"
msgstr "ፊደል:"
-#: strings.hrc:408
+#: strings.hrc:410
msgctxt "STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY"
msgid "Font color:"
msgstr "የ ፈደል ቀለም:"
-#: strings.hrc:409
+#: strings.hrc:411
msgctxt "STR_CUSTOMANIMATION_FONT_SIZE_STYLE_PROPERTY"
msgid "Style:"
msgstr "ዘዴ:"
-#: strings.hrc:410
+#: strings.hrc:412
msgctxt "STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY"
msgid "Typeface:"
msgstr "Typeface:"
-#: strings.hrc:411
+#: strings.hrc:413
msgctxt "STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY"
msgid "Line color:"
msgstr "የ መስመር ቀለም:"
-#: strings.hrc:412
+#: strings.hrc:414
msgctxt "STR_CUSTOMANIMATION_SIZE_PROPERTY"
msgid "Font size:"
msgstr "የ ፊደል መጠን:"
-#: strings.hrc:413
+#: strings.hrc:415
msgctxt "STR_CUSTOMANIMATION_SCALE_PROPERTY"
msgid "Size:"
msgstr "መጠን:"
-#: strings.hrc:414
+#: strings.hrc:416
msgctxt "STR_CUSTOMANIMATION_AMOUNT_PROPERTY"
msgid "Amount:"
msgstr "ብዛት:"
-#: strings.hrc:415
+#: strings.hrc:417
msgctxt "STR_CUSTOMANIMATION_COLOR_PROPERTY"
msgid "Color:"
msgstr "ቀለም:"
-#: strings.hrc:416
+#: strings.hrc:418
msgctxt "STR_CUSTOMANIMATION_NO_SOUND"
msgid "(No sound)"
msgstr "(ድምጽ የለም)"
-#: strings.hrc:417
+#: strings.hrc:419
msgctxt "STR_CUSTOMANIMATION_STOP_PREVIOUS_SOUND"
msgid "(Stop previous sound)"
msgstr "(ቀደም ያለውን ድምጽ ማቆሚያ)"
-#: strings.hrc:418
+#: strings.hrc:420
msgctxt "STR_CUSTOMANIMATION_BROWSE_SOUND"
msgid "Other sound..."
msgstr "ሌላ ድምጽ..."
-#: strings.hrc:419
+#: strings.hrc:421
msgctxt "STR_CUSTOMANIMATION_SAMPLE"
msgid "Sample"
msgstr "ናሙና"
-#: strings.hrc:420
+#: strings.hrc:422
msgctxt "STR_CUSTOMANIMATION_TRIGGER"
msgid "Trigger"
msgstr "ማስነሻ"
-#: strings.hrc:421
+#: strings.hrc:423
msgctxt "STR_CUSTOMANIMATION_LIST_HELPTEXT"
msgid "First select the slide element and then click 'Add...' to add an animation effect."
msgstr "በ መጀመሪያ የ ተንሸራታች አካል ይምረጡ እና ይጫኑ 'መጨመሪያ...' የ እንቅስቃሴ ውጤቶች ለመጨመር"
-#: strings.hrc:422
+#: strings.hrc:424
msgctxt "STR_CUSTOMANIMATION_USERPATH"
msgid "User paths"
msgstr "የተጠቃሚ መንገዶች"
-#: strings.hrc:423
+#: strings.hrc:425
msgctxt "STR_CUSTOMANIMATION_ENTRANCE"
msgid "Entrance: %1"
msgstr "መግቢያ: %1"
-#: strings.hrc:424
+#: strings.hrc:426
msgctxt "STR_CUSTOMANIMATION_EMPHASIS"
msgid "Emphasis: %1"
msgstr "ማጋነኛ: %1"
-#: strings.hrc:425
+#: strings.hrc:427
msgctxt "STR_CUSTOMANIMATION_EXIT"
msgid "Exit: %1"
msgstr "መውጫ: %1"
-#: strings.hrc:426
+#: strings.hrc:428
msgctxt "STR_CUSTOMANIMATION_MOTION_PATHS"
msgid "Motion Paths: %1"
msgstr "የ እንቅስቃሴ መንገድ: %1"
-#: strings.hrc:427
+#: strings.hrc:429
msgctxt "STR_SLIDETRANSITION_NONE"
msgid "None"
msgstr "ምንም"
-#: strings.hrc:429
+#: strings.hrc:431
msgctxt "STR_ANNOTATION_TODAY"
msgid "Today,"
msgstr "ዛሬ"
-#: strings.hrc:430
+#: strings.hrc:432
msgctxt "STR_ANNOTATION_YESTERDAY"
msgid "Yesterday,"
msgstr "ትናንትና"
-#: strings.hrc:431
+#: strings.hrc:433
msgctxt "STR_ANNOTATION_NOAUTHOR"
msgid "(no author)"
msgstr "(ደራሲው የለም)"
-#: strings.hrc:432
+#: strings.hrc:434
msgctxt "STR_ANNOTATION_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress reached the end of the presentation. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME ማስደነቂያ ከ ማቅረቢያው መጨረሻ ደርሷል: ከ መጀመሪያው ጀምሮ መቀጠል ይፈልጋሉ?"
-#: strings.hrc:433
+#: strings.hrc:435
msgctxt "STR_ANNOTATION_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress reached the beginning of the presentation. Do you want to continue at the end?"
msgstr "%PRODUCTNAME ማስደነቂያ ከ መጀመሪያው ማቅረቢያው ጋር ደርሷል: እስከ መጨረሻው ድረስ መቀጠል ይፈልጋሉ?"
-#: strings.hrc:434
+#: strings.hrc:436
msgctxt "STR_ANNOTATION_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the end of the document. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME መሳያ ከ ሰነዱ መጨረሻ ደርሷል: ከ መጀመሪያው ጀምሮ መቀጠል ይፈልጋሉ?"
-#: strings.hrc:435
+#: strings.hrc:437
msgctxt "STR_ANNOTATION_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the beginning of the document. Do you want to continue at the end?"
msgstr "%PRODUCTNAME መሳያ ከሰነዱ መጀመሪያ ጋር ደርሷል: እስከ መጨረሻው ድረስ መቀጠል ይፈልጋሉ?"
-#: strings.hrc:436
+#: strings.hrc:438
msgctxt "STR_ANNOTATION_UNDO_INSERT"
msgid "Insert Comment"
msgstr "አስተያየት ማስገቢያ"
-#: strings.hrc:437
+#: strings.hrc:439
msgctxt "STR_ANNOTATION_UNDO_DELETE"
msgid "Delete Comment(s)"
msgstr "አስተያየት(ቶች) ማጥፊያ"
-#: strings.hrc:438
+#: strings.hrc:440
msgctxt "STR_ANNOTATION_UNDO_MOVE"
msgid "Move Comment"
msgstr "አስተያየት ማንቀሳቀሻ"
-#: strings.hrc:439
+#: strings.hrc:441
msgctxt "STR_ANNOTATION_UNDO_EDIT"
msgid "Edit Comment"
msgstr "አስተያየት ማረሚያ"
-#: strings.hrc:440
+#: strings.hrc:442
msgctxt "STR_ANNOTATION_REPLY"
msgid "Reply to %1"
msgstr "መልስ ለ %1"
-#: strings.hrc:442
+#: strings.hrc:444
msgctxt "RID_DRAW_MEDIA_TOOLBOX"
msgid "Media Playback"
msgstr "መገናኛ በ ድጋሚ ማጫወቻ"
-#: strings.hrc:443
+#: strings.hrc:445
msgctxt "RID_DRAW_TABLE_TOOLBOX"
msgid "Table"
msgstr "ሰንጠረዥ"
-#: strings.hrc:445
+#: strings.hrc:447
msgctxt "STR_IMPRESS_PRINT_UI_GROUP_NAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: strings.hrc:446
+#: strings.hrc:448
msgctxt "STR_IMPRESS_PRINT_UI_PRINT_GROUP"
msgid "Print"
msgstr "ማተሚያ"
-#: strings.hrc:447
+#: strings.hrc:449
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT"
msgid "Document"
msgstr "ሰነድ"
-#: strings.hrc:448
+#: strings.hrc:450
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE"
msgid "Slides per page"
msgstr "ተንሸራታች በ ገጽ ውስጥ"
-#: strings.hrc:449
+#: strings.hrc:451
msgctxt "STR_IMPRESS_PRINT_UI_ORDER"
msgid "Order"
msgstr "ደንብ"
-#: strings.hrc:450
+#: strings.hrc:452
msgctxt "STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT"
msgid "~Contents"
msgstr "~ይዞታዎች"
-#: strings.hrc:451
+#: strings.hrc:453
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_NAME"
msgid "~Slide name"
msgstr "የ ~ተንሸራታች ስም"
-#: strings.hrc:452
+#: strings.hrc:454
msgctxt "STR_DRAW_PRINT_UI_IS_PRINT_NAME"
msgid "P~age name"
msgstr "የ ~ገጽ ስም"
-#: strings.hrc:453
+#: strings.hrc:455
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_DATE"
msgid "~Date and time"
msgstr "~ቀን እና ሰአት"
-#: strings.hrc:454
+#: strings.hrc:456
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_HIDDEN"
msgid "Hidden pages"
msgstr "የተደበቁ ገጾች"
-#: strings.hrc:455
+#: strings.hrc:457
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY"
msgid "Color"
msgstr "ቀለም"
-#: strings.hrc:456
+#: strings.hrc:458
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS"
msgid "~Size"
msgstr "~መጠን"
-#: strings.hrc:457
+#: strings.hrc:459
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE"
msgid "Brochure"
msgstr "መግለጫ ጽሁፍ"
-#: strings.hrc:458
+#: strings.hrc:460
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_SIDES"
msgid "Page sides"
msgstr "የ ገጽ ጎኖች"
-#: strings.hrc:459
+#: strings.hrc:461
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE"
msgid "Include"
msgstr "ማካተቻ"
-#: strings.hrc:460
+#: strings.hrc:462
msgctxt "STR_IMPRESS_PRINT_UI_PAPER_TRAY"
msgid "~Use only paper tray from printer preferences"
msgstr "የ ወረቀት ትሪ ከ ማተሚያ ምርጫዎች ውስጥ ብቻ ~መጠቀሚያ"
-#: strings.hrc:461
+#: strings.hrc:463
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE"
msgid "Print range"
msgstr "የ ህትመት መጠን"
-#: strings.hrc:463
+#: strings.hrc:465
msgctxt "STR_SAR_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress has searched to the end of the presentation. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME ማስደነቂያ እስከ መጨረሻው ማስደነቂያ ድረስ ፈልጓል: ከ መጀመሪያው ጀምሮ መቀጠል ይፈልጋሉ?"
-#: strings.hrc:464
+#: strings.hrc:466
msgctxt "STR_SAR_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress has searched to the beginning of the presentation. Do you want to continue at the end?"
msgstr "%PRODUCTNAME ማስደነቂያ እስከ መጀመሪያው ማስደነቂያ ድረስ ፈልጓል: እስከ መጨረሻው ድረስ መቀጠል ይፈልጋሉ?"
-#: strings.hrc:465
+#: strings.hrc:467
msgctxt "STR_SAR_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the end of the document. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME መሳያ እስከ መጨረሻው ሰነድ ድረስ ፈልጓል: ከመጀመሪያው ጀምሮ መቀጠል ይፈልጋሉ?"
-#: strings.hrc:466
+#: strings.hrc:468
msgctxt "STR_SAR_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the beginning of the document. Do you want to continue at the end?"
msgstr "%PRODUCTNAME መሳያ እስከ መጀመሪያው ሰነድ ድረስ ፈልጓል: እስከ መጨረሻው ድረስ መቀጠል ይፈልጋሉ?"
-#: strings.hrc:468
+#: strings.hrc:470
msgctxt "STR_SD_NONE"
msgid "- None -"
msgstr "- ምንም -"
@@ -4386,8 +4396,8 @@ msgstr "ለ ሰነድ አቀራረብ የ ማተሚያ መለኪያ ይጠቀ_
#: optimpressgeneralpage.ui:622
msgctxt "optimpressgeneralpage|cbCompatibility"
-msgid "Add _spacing between paragraphs and tables (in current document)"
-msgstr "መጨመሪያ _ክፍተት በ አንቀጾች እና በ ሰንጠረዦች መካከል (በ አሁኑ ሰነድ ውስጥ)"
+msgid "Add _spacing between paragraphs and tables"
+msgstr "በ ንድፎች እና በ ሰንጠረዦች መካከል _ክፍተት መጨመሪያ"
#: optimpressgeneralpage.ui:645
msgctxt "optimpressgeneralpage|label1"
@@ -5131,13 +5141,13 @@ msgstr "ዋናው መደብ"
#: sidebarslidebackground.ui:197
msgctxt "sidebarslidebackground|label4"
-msgid "Orientation: "
-msgstr "አቅጣጫ: "
+msgid "Orientation:"
+msgstr "አቅጣጫ:"
#: sidebarslidebackground.ui:212
msgctxt "sidebarslidebackground|masterslidebutton"
-msgid "Master Slide"
-msgstr "ዋናው ተንሸራታች"
+msgid "Master View"
+msgstr "ዋናው መመልከቻ"
#: sidebarslidebackground.ui:226
msgctxt "sidebarslidebackground|closemasterslide"
@@ -5181,8 +5191,8 @@ msgstr "ሰፊ"
#: sidebarslidebackground.ui:267
msgctxt "sidebarslidebackground|labelmargin"
-msgid "Margin: "
-msgstr "መስመር: "
+msgid "Margin:"
+msgstr "መስመር:"
#: sidebarslidebackground.ui:277
msgctxt "sidebarslidebackground|customlabel"
diff --git a/source/am/sfx2/messages.po b/source/am/sfx2/messages.po
index 23783fc6b70..c51588cb06b 100644
--- a/source/am/sfx2/messages.po
+++ b/source/am/sfx2/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: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-11-23 02:02+0000\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
+"PO-Revision-Date: 2017-12-18 15:47+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1511402523.000000\n"
+"X-POOTLE-MTIME: 1513612037.000000\n"
#: strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -815,27 +815,32 @@ msgctxt "RID_SVXSTR_INCORRECT_PASSWORD"
msgid "Incorrect password"
msgstr "የተሳሳተ የመግቢያ ቃል"
-#: strings.hrc:173
+#: strings.hrc:172
+msgctxt "RID_SVXSTR_GPG_ENCRYPT_FAILURE"
+msgid "OpenPGP key not trusted, damaged, or encryption failure. Please try again."
+msgstr "OpenPGP key አይታመንም: የ ተበላሸ ነው: ወይንም መመስጠሪያው ተበላሽቷል: እባክዎን እንደገና ይሞክሩ"
+
+#: strings.hrc:174
msgctxt "STR_PASSWD_MIN_LEN"
msgid "(Minimum $(MINLEN) characters)"
msgstr "(አነስተኛ $(MINLEN) ባህሪዎች)"
-#: strings.hrc:174
+#: strings.hrc:175
msgctxt "STR_PASSWD_MIN_LEN1"
msgid "(Minimum 1 character)"
msgstr "(አነስተኛ 1 ባህሪ)"
-#: strings.hrc:175
+#: strings.hrc:176
msgctxt "STR_PASSWD_EMPTY"
msgid "(The password can be empty)"
msgstr "(የመግቢያ ቃሉ ባዶ ሊሆን ይችላል)"
-#: strings.hrc:176
+#: strings.hrc:177
msgctxt "STR_MODULENOTINSTALLED"
msgid "The action could not be executed. The %PRODUCTNAME program module needed for this action is currently not installed."
msgstr "ተግባሩን ማስኬድ አልተቻለም የ %PRODUCTNAME ፕሮግራሙ ክፍል ለዚህ ተግባር እስከ አሁን አልተገጠመም"
-#: strings.hrc:178
+#: strings.hrc:179
msgctxt "STR_FILTER_NOT_INSTALLED"
msgid ""
"The selected filter $(FILTER) has not been installed.\n"
@@ -844,7 +849,7 @@ msgstr ""
"የተመረጠው ማጣሪያ $(FILTER) አልተገጠመም\n"
"ይህን አሁን መስራት ይፈልጋሉ?"
-#: strings.hrc:179
+#: strings.hrc:180
msgctxt "STR_FILTER_CONSULT_SERVICE"
msgid ""
"The selected filter $(FILTER) is not included in your edition.\n"
@@ -853,72 +858,72 @@ msgstr ""
"የ ተመረጠው ማጣሪያ $(FILTER) በ እርስዎ እትም ውስጥ አልተካተተም \n"
"በ ድህረ ገጻችን እቃዎችን ለማዘዝ መረጃ ማግኘት ይችላሉ"
-#: strings.hrc:181
+#: strings.hrc:182
msgctxt "STR_WELCOME_LINE1"
msgid "Welcome to %PRODUCTNAME."
msgstr "እንኳን ደህና መጡ ወደ %PRODUCTNAME."
-#: strings.hrc:182
+#: strings.hrc:183
msgctxt "STR_WELCOME_LINE2"
msgid "Drop a document here or pick an app from the left side to create one."
msgstr "ሰነድ እዚህ ይጣሉ ወይንም መተግበሪያ ከ ግራ በኩል ያንሱ አዲስ ለ መፍጠር"
-#: strings.hrc:184
+#: strings.hrc:185
msgctxt "STR_SFX_FILEDLG_ACTUALVERSION"
msgid "Current version"
msgstr "የአሁኑ እትም"
-#: strings.hrc:185
+#: strings.hrc:186
msgctxt "STR_SFX_EXPLORERFILE_EXPORT"
msgid "Export"
msgstr "መላኪያ"
-#: strings.hrc:186
+#: strings.hrc:187
msgctxt "STR_SFX_EXPLORERFILE_INSERT"
msgid "Insert"
msgstr "ማስገቢያ"
-#: strings.hrc:187
+#: strings.hrc:188
msgctxt "STR_SFX_EXPLORERFILE_BUTTONINSERT"
msgid "~Insert"
msgstr "~ማስገቢያ"
-#: strings.hrc:188
+#: strings.hrc:189
msgctxt "STR_SFX_IMPORT_ALL"
msgid "<All formats>"
msgstr "<ሁሉንም አቀራረብ>"
-#: strings.hrc:189
+#: strings.hrc:190
msgctxt "STR_PB_SAVEACOPY"
msgid "Save a Copy"
msgstr "ኮፒ ማስቀመጫ"
-#: strings.hrc:190
+#: strings.hrc:191
msgctxt "STR_PB_COMPAREDOC"
msgid "Compare to"
msgstr "ማወዳደሪያ ከ"
-#: strings.hrc:191
+#: strings.hrc:192
msgctxt "STR_PB_MERGEDOC"
msgid "Merge with"
msgstr "መቀላቀያ ከ"
-#: strings.hrc:193
+#: strings.hrc:194
msgctxt "STR_SFX_NEWOFFICEDOC"
msgid "%PRODUCTNAME document"
msgstr "%PRODUCTNAME ሰነድ"
-#: strings.hrc:194
+#: strings.hrc:195
msgctxt "SFX_ST_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " አ: %1 ወ: %2 ቀ: %3 ሰ: %4 ደ: %5 ሰ: %6"
-#: strings.hrc:195
+#: strings.hrc:196
msgctxt "STR_SFX_REMOVE_PROPERTY"
msgid "Remove Property"
msgstr "ባህሪ ማስወገጃ"
-#: strings.hrc:196
+#: strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -927,27 +932,27 @@ msgstr ""
"ያስገቡት ዋጋ ከተመረጠው ዘዴ ጋር አይመሳሰልም \n"
"ዋጋው እንደ ጽሁፍ ይቀመጣል"
-#: strings.hrc:198
+#: strings.hrc:199
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "ዘዴው ቀደም ሲል ነበር: በላዩ ላይ ደርቤ ልጻፍበት?"
-#: strings.hrc:200
+#: strings.hrc:201
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~እንደ ነበር መመለሻ"
-#: strings.hrc:201
+#: strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "ይህን ስም ቀደም ሲል ተጠቅመውበታል"
-#: strings.hrc:202
+#: strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "ይህ ዘዴ አልተገኘም"
-#: strings.hrc:203
+#: strings.hrc:204
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -956,7 +961,7 @@ msgstr ""
"ይህን ዘዴ እንደ መሰረታዊ ዘዴ ሊጠቀሙበት አይችሉም \n"
"ምክንያቱም የድግግሞሽ ማመሳከሪያ ውጤት ያስከትላል"
-#: strings.hrc:204
+#: strings.hrc:205
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -965,7 +970,7 @@ msgstr ""
"ይህ ስም ቀደም ሲል በነባር ዘዴ ውስጥ ነበር \n"
"እባክዎን ሌላ አዲስ ስም ይምረጡ"
-#: strings.hrc:205
+#: strings.hrc:206
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -976,92 +981,92 @@ msgstr ""
"እነዚህን ዘዴዎች ካጠፉ ጽሁፉ ወደ ነበረበት ወደ ወላጅ ዘዴው ይመለሳል\n"
"እነዚህን ዘዴዎች ማጥፋት ይፈልጋሉ?\n"
-#: strings.hrc:206
+#: strings.hrc:207
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "የሚጠቀሙት ዘዴዎች: "
-#: strings.hrc:207
+#: strings.hrc:208
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "መቃኛ"
-#: strings.hrc:208
+#: strings.hrc:209
msgctxt "STR_SID_SIDEBAR"
msgid "Sidebar"
msgstr "የ ጎን መደርደሪያ"
-#: strings.hrc:209
+#: strings.hrc:210
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "የተሳሳተ የመግቢያ ቃል ማረጋገጫ"
-#: strings.hrc:210
+#: strings.hrc:211
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "መላኪያ"
-#: strings.hrc:211
+#: strings.hrc:212
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "ፊደል"
-#: strings.hrc:212
+#: strings.hrc:213
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show Previews"
msgstr "ቅድመ እይታ ማሳያ"
-#: strings.hrc:214
+#: strings.hrc:215
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "የእትም አስተያየት መመልከቻ"
-#: strings.hrc:215
+#: strings.hrc:216
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(ምንም ስም አልተሰናዳም)"
-#: strings.hrc:217
+#: strings.hrc:218
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "የዘዴ ዝርዝር"
-#: strings.hrc:218
+#: strings.hrc:219
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "በ ቅደም ተከተል"
-#: strings.hrc:219
+#: strings.hrc:220
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "የ መሙያ አቀራረብ ዘዴ"
-#: strings.hrc:220
+#: strings.hrc:221
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "አዲስ ዘዴ ከ ምርጫው ውስጥ"
-#: strings.hrc:221
+#: strings.hrc:222
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "የ ማሻሻያ ዘዴ"
-#: strings.hrc:223
+#: strings.hrc:224
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "በእርግጥ መመዝገቡን ማጥፋት ይፈልጋሉ? እስከ አሁን የተመዘገበው በሙሉ ይጠፋል"
-#: strings.hrc:224
+#: strings.hrc:225
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "ምዝገባውን መሰረዣ"
-#: strings.hrc:226
+#: strings.hrc:227
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "ቴምፕሌቶቹ ለ መጀመሪያ-ጊዜ መጠቀሚያ በ መነሳት ላይ ናቸው"
-#: strings.hrc:228
+#: strings.hrc:229
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1070,7 +1075,7 @@ msgstr ""
"ነባር ማተሚያ አልተገኘም \n"
"እባክዎን ማተሚያ ይምረጡ እና እንደገና ይሞክሩ"
-#: strings.hrc:229
+#: strings.hrc:230
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1079,17 +1084,17 @@ msgstr ""
"ማተሚያውን ማስጀመር አልተቻለም \n"
"እባክዎን የማተሚያውን ማዋቀሪያ ይመርምሩ"
-#: strings.hrc:230
+#: strings.hrc:231
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "ማተሚያው በ ስራ ላይ ነው"
-#: strings.hrc:231
+#: strings.hrc:232
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (ለማንበብ ብቻ)"
-#: strings.hrc:232
+#: strings.hrc:233
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1100,7 +1105,7 @@ msgstr ""
"በ ንቁ ሰነድ ውስጥ አዲስ የተዘጋጀውን \n"
"ማስቀመጥ ይፈልጋሉ?"
-#: strings.hrc:233
+#: strings.hrc:234
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1111,7 +1116,7 @@ msgstr ""
"በንቁ ሰነድ ውስጥ አዲስ የተዘጋጀውን \n"
"ማስቀመጥ ይፈልጋሉ?"
-#: strings.hrc:234
+#: strings.hrc:235
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1122,7 +1127,7 @@ msgstr ""
"በ ንቁ ሰነድ ውስጥ አዲስ የተዘጋጀውን \n"
"ማስቀመጥ ይፈልጋሉ?"
-#: strings.hrc:235
+#: strings.hrc:236
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1131,7 +1136,7 @@ msgstr ""
"ሰነዱን መዝጋት አልተቻለም ምክንያቱም \n"
" የህትመት ስራ እየተከናወነ ነው"
-#: strings.hrc:236
+#: strings.hrc:237
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1140,207 +1145,309 @@ msgstr ""
"መልእክቱን በመላክ ላይ እንዳለ ስህተት ተፈጥሯል: ምናልባት ስህተቱ የተጠቃሚ መግለጫ ማጣት ወይንም የተሳሳተ ማሰናጃ ሊሆን ይችላል \n"
"እባክዎን ማሰናጃውን %PRODUCTNAME ይመርምሩ ወይንም የኢ-ሜይል ፕሮግራም ማሰናጃውን ይመርምሩ"
-#: strings.hrc:237
+#: strings.hrc:238
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "ይህን ሰነድ ማረም አይቻልም ፡ ምክንያቱም በፍቃድ ማጣት ምክንያት: የሰነዱን ኮፒ ማረም ይፈልጋሉ?"
-#: strings.hrc:238
+#: strings.hrc:239
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (የተጠገነ ሰነድ)"
-#: strings.hrc:239
+#: strings.hrc:240
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "ሰነዱ ከሰርቨሩ አልወጣም"
-#: strings.hrc:240
+#: strings.hrc:241
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "ሰነዱ የተከፈተው ለማንበብ-ብቻ ዘዴ ነው"
-#: strings.hrc:241
+#: strings.hrc:242
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "ይህ PDF የ ተከፈተው ለ ንባብ-ብቻ ነው የ ነበረውን ፋይል መፈረም እንዲችሉ"
-#: strings.hrc:242
+#: strings.hrc:243
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "ይህ የዚህ ሰነድ ምድብ ምልክት ነው %1."
-#: strings.hrc:243
+#: strings.hrc:244
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "ይህ ሰነድ መመደብ አለበት ቁራጭ ሰሌዳ ከ መለጠፉ በፊት"
-#: strings.hrc:244
+#: strings.hrc:245
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "ይህ ሰነድ አነስተኛ መመደቢያ ደረጃ አለው ከ ቁራጭ ሰሌዳ ይልቅ"
-#: strings.hrc:245
+#: strings.hrc:246
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Intellectual Property:"
msgstr "የ ግለሰብ ንብረቶች:"
-#: strings.hrc:246
+#: strings.hrc:247
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "የ አገር ደህንነት:"
-#: strings.hrc:247
+#: strings.hrc:248
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "የ መላኪያ መቆጣጠሪያ:"
-#: strings.hrc:248
+#: strings.hrc:249
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "የ ወጣበት ጊዜ"
-#: strings.hrc:249
+#: strings.hrc:250
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "ሰነድ ማረሚያ"
-#: strings.hrc:250
+#: strings.hrc:251
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "ሰነድ መፈረሚያ"
-#: strings.hrc:251
+#: strings.hrc:252
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "ይህ ሰነድ ዋጋ የሌለው ፊርማ አለው"
-#: strings.hrc:252
+#: strings.hrc:253
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "ፊርማው ዋጋ ያለው ነው: ነገር ግን ሰነዱ ተሻሽሏል:"
-#: strings.hrc:253
+#: strings.hrc:254
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "ፊርማው ጥሩ ነው: ነገር ግን የ ምስክር ወረቀቱን ማረጋገጥ አልተቻለም"
-#: strings.hrc:254
+#: strings.hrc:255
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "ፊርማው ጥሩ ነው: ነገር ግን ሰነዱ የ ተፈረመው በከፊል ነው"
-#: strings.hrc:255
+#: strings.hrc:256
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "ይህ ሰነድ ዲጂታሊ የ ተፈረመ ነው: እና ፊርማው ዋጋ ያለው ነው"
-#: strings.hrc:256
+#: strings.hrc:257
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "ፊርማዎች ማሳያ"
-#: strings.hrc:258
+#: strings.hrc:259
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "ክፍል መዝጊያ"
-#: strings.hrc:259
+#: strings.hrc:260
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "ማሳረፊያ"
-#: strings.hrc:260
+#: strings.hrc:261
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "አታሳርፍ"
-#: strings.hrc:262
+#: strings.hrc:263
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "ተጨማሪ ምርጫዎች"
-#: strings.hrc:263
+#: strings.hrc:264
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "የ ጎን መደርደሪያ መዝጊያ"
-#: strings.hrc:264
+#: strings.hrc:265
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "የ ጎን መደርደሪያ ማሰናጃዎች"
-#: strings.hrc:265
+#: strings.hrc:266
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "ማስተካከያ"
-#: strings.hrc:266
+#: strings.hrc:267
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "ነባሩን መመለሻ"
-#: strings.hrc:267
+#: strings.hrc:268
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "የ ጎን መደርደሪያ መዝጊያ"
-#: strings.hrc:269
+#. Translators: default Impress template names
+#: strings.hrc:271
msgctxt "STR_TEMPLATE_NAME1"
-msgid "Abstract Green"
-msgstr "ግልጽ ያልሆነ አረንጓዴ"
+msgid "Alizarin"
+msgstr "አሊዛሪን"
-#: strings.hrc:270
+#: strings.hrc:272
msgctxt "STR_TEMPLATE_NAME2"
-msgid "Abstract Red"
-msgstr "ግልጽ ያልሆነ ቀይ"
+msgid "Beehive"
+msgstr "የ ንብ እንጀራ"
-#: strings.hrc:271
+#: strings.hrc:273
msgctxt "STR_TEMPLATE_NAME3"
-msgid "Abstract Yellow"
-msgstr "ግልጽ ያልሆነ ቢጫ"
+msgid "Blue Curve"
+msgstr "ሰማያዊ ክብ"
-#: strings.hrc:272
+#: strings.hrc:274
msgctxt "STR_TEMPLATE_NAME4"
+msgid "Blueprint Plans"
+msgstr "የ ንድፍ እቅድ"
+
+#: strings.hrc:275
+msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "ደማቅ ሰማያዊ"
-#: strings.hrc:273
-msgctxt "STR_TEMPLATE_NAME5"
+#: strings.hrc:276
+msgctxt "STR_TEMPLATE_NAME6"
+msgid "Classy Red"
+msgstr "ቀይ"
+
+#: strings.hrc:277
+msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
-#: strings.hrc:274
-msgctxt "STR_TEMPLATE_NAME6"
+#: strings.hrc:278
+msgctxt "STR_TEMPLATE_NAME8"
+msgid "Focus"
+msgstr "ትኩረት"
+
+#: strings.hrc:279
+msgctxt "STR_TEMPLATE_NAME9"
+msgid "Forestbird"
+msgstr "የ ጫካ ወፍ"
+
+#: strings.hrc:280
+msgctxt "STR_TEMPLATE_NAME10"
+msgid "Impress"
+msgstr "ማስደነቂያ"
+
+#: strings.hrc:281
+msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "ቀስቃሽ"
-#: strings.hrc:275
-msgctxt "STR_TEMPLATE_NAME7"
+#: strings.hrc:282
+msgctxt "STR_TEMPLATE_NAME12"
+msgid "Lights"
+msgstr "ብርሃን"
+
+#: strings.hrc:283
+msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "ለምለም አረንጓዴ"
-#: strings.hrc:276
-msgctxt "STR_TEMPLATE_NAME8"
+#: strings.hrc:284
+msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "ትልቅ ከተማ"
-#: strings.hrc:277
-msgctxt "STR_TEMPLATE_NAME9"
+#: strings.hrc:285
+msgctxt "STR_TEMPLATE_NAME15"
+msgid "Midnightblue"
+msgstr "እኩለ ሌሊት ሰማያዊ"
+
+#: strings.hrc:286
+msgctxt "STR_TEMPLATE_NAME16"
+msgid "Nature Illustration"
+msgstr "ተፈጥሮ ማሳያ"
+
+#: strings.hrc:287
+msgctxt "STR_TEMPLATE_NAME17"
+msgid "Pencil"
+msgstr "እርሳስ"
+
+#: strings.hrc:288
+msgctxt "STR_TEMPLATE_NAME18"
+msgid "Piano"
+msgstr "ፒያኖ"
+
+#: strings.hrc:289
+msgctxt "STR_TEMPLATE_NAME19"
+msgid "Portfolio"
+msgstr ""
+
+#: strings.hrc:290
+msgctxt "STR_TEMPLATE_NAME20"
+msgid "Progress"
+msgstr "ሂደት"
+
+#: strings.hrc:291
+msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "ፀሐይ መጥለቂያ"
-#: strings.hrc:278
-msgctxt "STR_TEMPLATE_NAME10"
+#: strings.hrc:292
+msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "የ ጥንት"
-#: strings.hrc:280
+#: strings.hrc:293
+msgctxt "STR_TEMPLATE_NAME23"
+msgid "Vivid"
+msgstr "ደማቅ"
+
+#. Translators: default Writer template names
+#: strings.hrc:295
+msgctxt "STR_TEMPLATE_NAME24"
+msgid "CV"
+msgstr ""
+
+#: strings.hrc:296
+msgctxt "STR_TEMPLATE_NAME25"
+msgid "Resume"
+msgstr "መቀጠያ"
+
+#: strings.hrc:297
+msgctxt "STR_TEMPLATE_NAME26"
+msgid "Default"
+msgstr "ነባር"
+
+#: strings.hrc:298
+msgctxt "STR_TEMPLATE_NAME27"
+msgid "Modern"
+msgstr "ዘመናዊ"
+
+#: strings.hrc:299
+msgctxt "STR_TEMPLATE_NAME28"
+msgid "Modern business letter sans-serif"
+msgstr "ዘመናዊ የ ንግድ ደብዳቤ sans-serif"
+
+#: strings.hrc:300
+msgctxt "STR_TEMPLATE_NAME29"
+msgid "Modern business letter serif"
+msgstr "ዘመናዊ የ ንግድ ደብዳቤ serif"
+
+#: strings.hrc:301
+msgctxt "STR_TEMPLATE_NAME30"
+msgid "Businesscard with logo"
+msgstr "የ ንግድ ካርድ ከ አርማ ጋር"
+
+#: strings.hrc:303
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "ማስወገጃ"
-#: strings.hrc:281
+#: strings.hrc:304
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "ሁሉንም ማጽጃ"
diff --git a/source/am/svx/messages.po b/source/am/svx/messages.po
index f31cd1a38c9..1af6b4c4075 100644
--- a/source/am/svx/messages.po
+++ b/source/am/svx/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-12-06 15:59+0100\n"
-"PO-Revision-Date: 2017-12-08 16:57+0000\n"
+"PO-Revision-Date: 2017-12-17 21:36+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1512752269.000000\n"
+"X-POOTLE-MTIME: 1513546598.000000\n"
#: fieldunit.hrc:30
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
@@ -14129,7 +14129,7 @@ msgstr "የ ባህሪ መመጠኛ"
#: svxitems.hrc:90
msgctxt "RID_ATTR_NAMES"
msgid "Relief"
-msgstr "Relief"
+msgstr "ክፍተት"
#: svxitems.hrc:91
msgctxt "RID_ATTR_NAMES"
diff --git a/source/am/sw/messages.po b/source/am/sw/messages.po
index 3b6da4d00fa..208df6be9fb 100644
--- a/source/am/sw/messages.po
+++ b/source/am/sw/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: 2017-12-06 15:59+0100\n"
-"PO-Revision-Date: 2017-12-09 20:01+0000\n"
+"POT-Creation-Date: 2017-12-20 08:17+0100\n"
+"PO-Revision-Date: 2017-12-18 15:22+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1512849688.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1513610544.000000\n"
#: app.hrc:30
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -78,8 +78,8 @@ msgstr "እንደ ሁኔታው ዘዴዎች"
#: app.hrc:47
msgctxt "RID_CHARACTERSTYLEFAMILY"
-msgid "All"
-msgstr "ሁሉንም"
+msgid "All Styles"
+msgstr "ሁሉንም ዘዴዎች"
#: app.hrc:48
msgctxt "RID_CHARACTERSTYLEFAMILY"
@@ -98,8 +98,8 @@ msgstr "ዘዴዎች ማስተካከያ"
#: app.hrc:56
msgctxt "RID_FRAMESTYLEFAMILY"
-msgid "All"
-msgstr "ሁሉንም"
+msgid "All Styles"
+msgstr "ሁሉንም ዘዴዎች"
#: app.hrc:57
msgctxt "RID_FRAMESTYLEFAMILY"
@@ -118,8 +118,8 @@ msgstr "ዘዴዎች ማስተካከያ"
#: app.hrc:65
msgctxt "RID_PAGESTYLEFAMILY"
-msgid "All"
-msgstr "ሁሉንም"
+msgid "All Styles"
+msgstr "ሁሉንም ዘዴዎች"
#: app.hrc:66
msgctxt "RID_PAGESTYLEFAMILY"
@@ -138,8 +138,8 @@ msgstr "ዘዴዎች ማስተካከያ"
#: app.hrc:74
msgctxt "RID_LISTSTYLEFAMILY"
-msgid "All"
-msgstr "ሁሉንም"
+msgid "All Styles"
+msgstr "ሁሉንም ዘዴዎች"
#: app.hrc:75
msgctxt "RID_LISTSTYLEFAMILY"
@@ -158,8 +158,8 @@ msgstr "ዘዴዎች ማስተካከያ"
#: app.hrc:83
msgctxt "RID_TABLESTYLEFAMILY"
-msgid "All"
-msgstr "ሁሉንም"
+msgid "All Styles"
+msgstr "ሁሉንም ዘዴዎች"
#: app.hrc:84
msgctxt "RID_TABLESTYLEFAMILY"
@@ -1303,28 +1303,28 @@ msgstr "በ መሬት አቀማመጥ"
#. Numbering rules
#: strings.hrc:199
msgctxt "STR_POOLNUMRULE_NUM1"
-msgid "Numbering 1"
-msgstr "ቁጥር መስጫ 1"
+msgid "Numbering 123"
+msgstr "ቁጥር መስጫ 123"
#: strings.hrc:200
msgctxt "STR_POOLNUMRULE_NUM2"
-msgid "Numbering 2"
-msgstr "ቁጥር መስጫ 2"
+msgid "Numbering ABC"
+msgstr "ቁጥር መስጫ ABC"
#: strings.hrc:201
msgctxt "STR_POOLNUMRULE_NUM3"
-msgid "Numbering 3"
-msgstr "ቁጥር መስጫ 3"
+msgid "Numbering abc"
+msgstr "ቁጥር መስጫ ABC"
#: strings.hrc:202
msgctxt "STR_POOLNUMRULE_NUM4"
-msgid "Numbering 4"
-msgstr "ቁጥር መስጫ 4"
+msgid "Numbering IVX"
+msgstr "ቁጥር መስጫ IVX"
#: strings.hrc:203
msgctxt "STR_POOLNUMRULE_NUM5"
-msgid "Numbering 5"
-msgstr "ቁጥር መስጫ 5"
+msgid "Numbering ivx"
+msgstr "ቁጥር መስጫ ivx"
#: strings.hrc:204
msgctxt "STR_POOLNUMRULE_BUL1"
@@ -13481,13 +13481,13 @@ msgstr "ለ ሰነድ አቀራረብ የ ማተሚያ መለኪያ ይጠቀሙ
#: optcompatpage.ui:57
msgctxt "optcompatpage|format"
-msgid "Add spacing between paragraphs and tables (in current document)"
-msgstr "በ አንቀጾች እና ሰንጠረዦች መካከል ክፍተት መጨመሪያ (በ አሁኑ ሰነድ ውስጥ)"
+msgid "Add spacing between paragraphs and tables"
+msgstr "በ አንቀጾች እና በ ሰንጠረዦች መካከል ክፍተት መጨመሪያ"
#: optcompatpage.ui:58
msgctxt "optcompatpage|format"
-msgid "Add paragraph and table spacing at tops of pages (in current document)"
-msgstr "በ አንቀጾች እና ሰንጠረዦች መካከል ክፍተት መጨመሪያ በ ገጾች ከ ላይ በኩል (በ አሁኑ ሰነድ ውስጥ)"
+msgid "Add paragraph and table spacing at tops of pages"
+msgstr "የ አንቀጽ እና የ ሰንጠረዥ ክፍተት በ ገጹ ከ ላይ በኩል መጨመሪያ"
#: optcompatpage.ui:59
msgctxt "optcompatpage|format"
@@ -13541,8 +13541,8 @@ msgstr "MS Word-compatible trailing blanks"
#: optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Tolerate white lines of PDF page backgrounds for compatibility with old documents (in current document)"
-msgstr "ነጭ መስመር መተው በ PDF ገጽ መደብ ላይ: እንዲስማማ ከ አሮጌ ሰነዶች ጋር (በ አሁኑ ሰነድ ውስጥ)"
+msgid "Tolerate white lines of PDF page backgrounds for compatibility with old documents"
+msgstr "ነጭ መስመር መተው በ PDF ገጽ መደብ ላይ: እንዲስማማ ከ አሮጌ ሰነዶች ጋር በ አሁኑ ሰነድ ውስጥ"
#: optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -13556,7 +13556,7 @@ msgstr "እንደ _ነባር መጠቀሚያ"
#: optcompatpage.ui:104
msgctxt "optcompatpage|label11"
-msgid "Compatibility options for %DOCNAME"
+msgid "Compatibility options for '%DOCNAME'"
msgstr "የ ተስማሚነት ምርጫ ለ %DOCNAME"
#: optfonttabpage.ui:103
@@ -16678,21 +16678,11 @@ msgctxt "textgridpage|labelFT_CHARSPERLINE"
msgid "Characters per line:"
msgstr "ባህሪዎች በ መስመር:"
-#: textgridpage.ui:223
-msgctxt "textgridpage|labelFT_CHARRANGE"
-msgid "(1-45)"
-msgstr "(1-45)"
-
#: textgridpage.ui:236
msgctxt "textgridpage|labelFT_LINESPERPAGE"
msgid "Lines per page:"
msgstr "መስመሮች በ ገጽ:"
-#: textgridpage.ui:265
-msgctxt "textgridpage|labelFT_LINERANGE"
-msgid "(1-48)"
-msgstr "(1-48)"
-
#: textgridpage.ui:303
msgctxt "textgridpage|labelFT_CHARWIDTH"
msgid "Character _width:"
diff --git a/source/am/uui/messages.po b/source/am/uui/messages.po
index 97a4c93a1ed..2b92a8ecf4f 100644
--- a/source/am/uui/messages.po
+++ b/source/am/uui/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: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-10-06 21:51+0000\n"
+"PO-Revision-Date: 2017-12-17 22:06+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1507326699.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1513548418.000000\n"
#: ids.hrc:27
msgctxt "RID_UUI_ERRHDL"
@@ -820,22 +820,22 @@ msgstr "%PRODUCTNAME - የ ደህንነት ማስጠንቀቂያ"
#: macrowarnmedium.ui:25
msgctxt "macrowarnmedium|ok"
msgid "_Enable Macros"
-msgstr "Macros _ማስቻያ"
+msgstr "ማክሮስ _ማስቻያ"
#: macrowarnmedium.ui:39
msgctxt "macrowarnmedium|cancel"
msgid "_Disable Macros"
-msgstr "Macros _ማሰናከያ"
+msgstr "ማክሮስ _ማሰናከያ"
#: macrowarnmedium.ui:127
msgctxt "macrowarnmedium|descr1Label"
msgid "The document contains document macros signed by:"
-msgstr "ሰነዱ የያዛቸው የሰነድ macros የ ተፈረሙት በ:"
+msgstr "ሰነዱ የያዛቸው የ ሰነድ ማክሮስ የ ተፈረሙት በ:"
#: macrowarnmedium.ui:141
msgctxt "macrowarnmedium|descr1aLabel"
msgid "The document contains document macros."
-msgstr "ሰነዱ የያዛቸው የ ሰነድ macros"
+msgstr "ሰነዱ የያዛቸው የ ሰነድ ማክሮስ"
#: macrowarnmedium.ui:168
msgctxt "macrowarnmedium|viewSignsButton"
@@ -845,12 +845,12 @@ msgstr "_መመልከቻ ፊርማዎች..."
#: macrowarnmedium.ui:196
msgctxt "macrowarnmedium|descr2Label"
msgid "Macros may contain viruses. Disabling macros for a document is always safe. If you disable macros you may lose functionality provided by the document macros."
-msgstr "Macros ምናልባት ቫይረሶች ሊይዙ ይችላሉ: ለ ሰነዶች macros ማሰናከል ሁልጊዜ ለ ደህንነት ጥሩ ነው: macros ካሰናከሉ አንዳንድ ተግባሮችን ሊያጡ ይችላሉ በ ሰነዱ ውስጥ የ ቀረቡ macros"
+msgstr "ማክሮስ ምናልባት ቫይረሶች ሊይዙ ይችላሉ: ለ ሰነዶች ማክሮስ ማሰናከል ሁልጊዜ ለ ደህንነት ጥሩ ነው: ማክሮስ ካሰናከሉ አንዳንድ ተግባሮችን ሊያጡ ይችላሉ በ ሰነዱ ውስጥ የ ቀረቡ ማክሮስ"
#: macrowarnmedium.ui:208
msgctxt "macrowarnmedium|alwaysTrustCheckbutton"
msgid "_Always trust macros from this source"
-msgstr "የዚህ macros ምንጮች _ሁል ጊዜ የሚታመኑ ናቸው"
+msgstr "የዚህ ማክሮስ ምንጮች _ሁል ጊዜ የሚታመኑ ናቸው"
#: masterpassworddlg.ui:8
msgctxt "masterpassworddlg|MasterPasswordDialog"
diff --git a/source/am/xmlsecurity/messages.po b/source/am/xmlsecurity/messages.po
index 30a43d84995..eda02dee224 100644
--- a/source/am/xmlsecurity/messages.po
+++ b/source/am/xmlsecurity/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: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-10-13 00:15+0000\n"
+"PO-Revision-Date: 2017-12-17 22:08+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1507853714.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1513548518.000000\n"
#: strings.hrc:25
msgctxt "STR_CERTIFICATE_NOT_VALIDATED"
@@ -308,7 +308,7 @@ msgid ""
"Use this setting only if you are certain that all documents that will be opened are safe."
msgstr ""
"_ዝቅተኛ (አይመከሩም).\n"
-"ያለ ማረጋገጫ ሁሉንም macros ማስኬጃ\n"
+"ያለ ማረጋገጫ ሁሉንም ማክሮስ ማስኬጃ\n"
"ይህን ማሰናጃ የሚጠቀሙት ሁሉንም የሚከፍቱዋቸው ሰነዶች በ ደህንነት እንደሚክፈቱ እርግጠኛ ሲሆኑ ብቻ ነው"
#: securitylevelpage.ui:32
@@ -318,7 +318,7 @@ msgid ""
"Confirmation required before executing macros from untrusted sources."
msgstr ""
"_መካከለኛ\n"
-"ማረጋገጫ ያስፈልጋል macros ከማስኬድ በፊት ካልታመኑ ምንጮች"
+"ማረጋገጫ ያስፈልጋል ማክሮስ ከማስኬድ በፊት ካልታመኑ ምንጮች"
#: securitylevelpage.ui:49
msgctxt "securitylevelpage|high"
@@ -328,8 +328,8 @@ msgid ""
"Unsigned macros are disabled."
msgstr ""
"ከ_ፍተኛ \n"
-"macros ከ ታመኑ የ ፋይል ምንጮች ብቻ ማስኬጃ\n"
-"ያልተፈረሙ macros ይሰናከላሉ"
+"ማክሮስ ከ ታመኑ የ ፋይል ምንጮች ብቻ ማስኬጃ\n"
+"ያልተፈረሙ ማክሮስ ይሰናከላሉ"
#: securitylevelpage.ui:68
msgctxt "securitylevelpage|vhigh"
@@ -339,8 +339,8 @@ msgid ""
"All other macros, regardless whether signed or not, are disabled."
msgstr ""
"_በጣም ከፍተኛ \n"
-"macros ከ ታመኑ የ ፋይል አካባቢዎች ብቻ ማስኬጃ\n"
-"የተቀሩት ሁሉም macros, ቢፈረሙም ባይፈረሙም ይሰናከላሉ"
+"ማክሮስ ከ ታመኑ የ ፋይል አካባቢዎች ብቻ ማስኬጃ\n"
+"የተቀሩት ሁሉም ማክሮስ: ቢፈረሙም ባይፈረሙም ይሰናከላሉ"
#: securitytrustpage.ui:43
msgctxt "securitytrustpage|viewcert"
@@ -370,7 +370,7 @@ msgstr "የሚታመኑ የምስክር ወረቀቶች"
#: securitytrustpage.ui:215
msgctxt "securitytrustpage|label8"
msgid "Document macros are always executed if they have been opened from one of the following locations."
-msgstr "የ ሰነድ macros ሁል ጊዜ ማስኬጃ ቀደም ብለው ከ እነዚህ አካባቢዎች ከአንዱ ጋር ተከፍተው ከ ነበረ"
+msgstr "የ ሰነድ ማክሮስ ሁል ጊዜ ይፈጸማሉ ቀደም ብለው ከ እነዚህ አካባቢዎች ከ አንዱ ጋር ተከፍተው ከ ነበረ"
#: securitytrustpage.ui:234
msgctxt "securitytrustpage|addfile"
diff --git a/source/an/cui/messages.po b/source/an/cui/messages.po
index 1679d4caa15..309693b5fc6 100644
--- a/source/an/cui/messages.po
+++ b/source/an/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7973,72 +7973,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "~Aduya"
-#: optgeneralpage.ui:77
+#: optgeneralpage.ui:76
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr ""
-#: optgeneralpage.ui:111
+#: optgeneralpage.ui:110
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: optgeneralpage.ui:137
+#: optgeneralpage.ui:136
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr ""
-#: optgeneralpage.ui:152
+#: optgeneralpage.ui:151
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: optgeneralpage.ui:178
+#: optgeneralpage.ui:177
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: optgeneralpage.ui:193
+#: optgeneralpage.ui:192
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr ""
-#: optgeneralpage.ui:226
+#: optgeneralpage.ui:225
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: optgeneralpage.ui:252
+#: optgeneralpage.ui:251
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr ""
-#: optgeneralpage.ui:267
+#: optgeneralpage.ui:266
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: optgeneralpage.ui:293
+#: optgeneralpage.ui:292
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: optgeneralpage.ui:308
+#: optgeneralpage.ui:307
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: optgeneralpage.ui:339
+#: optgeneralpage.ui:338
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr ""
-#: optgeneralpage.ui:353
+#: optgeneralpage.ui:352
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
-#: optgeneralpage.ui:373
+#: optgeneralpage.ui:372
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -8860,228 +8860,233 @@ msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr ""
-#: optuserpage.ui:34
+#: optuserpage.ui:12
+msgctxt "optuserpage|liststore1"
+msgid "No key"
+msgstr ""
+
+#: optuserpage.ui:45
#, fuzzy
msgctxt "optuserpage|companyft"
msgid "_Company:"
msgstr "Interpresa"
-#: optuserpage.ui:48
+#: optuserpage.ui:59
msgctxt "optuserpage|nameft"
msgid "First/last _name/initials:"
msgstr ""
-#: optuserpage.ui:62
+#: optuserpage.ui:73
msgctxt "optuserpage|streetft"
msgid "_Street:"
msgstr ""
-#: optuserpage.ui:76
+#: optuserpage.ui:87
msgctxt "optuserpage|cityft"
msgid "City/state/_zip:"
msgstr ""
-#: optuserpage.ui:90
+#: optuserpage.ui:101
#, fuzzy
msgctxt "optuserpage|countryft"
msgid "Country/re_gion:"
msgstr "PaísURechión"
-#: optuserpage.ui:104
+#: optuserpage.ui:115
msgctxt "optuserpage|titleft"
msgid "_Title/position:"
msgstr ""
-#: optuserpage.ui:118
+#: optuserpage.ui:129
msgctxt "optuserpage|phoneft"
msgid "Telephone (home/_work):"
msgstr ""
-#: optuserpage.ui:123
+#: optuserpage.ui:134
msgctxt "phoneft-atkobject"
msgid "Home telephone number"
msgstr ""
-#: optuserpage.ui:137
+#: optuserpage.ui:148
msgctxt "optuserpage|faxft"
msgid "Fa_x/e-mail:"
msgstr ""
-#: optuserpage.ui:160
+#: optuserpage.ui:171
#, fuzzy
msgctxt "optuserpage|firstname-atkobject"
msgid "First name"
msgstr "Nombres"
-#: optuserpage.ui:178
+#: optuserpage.ui:189
#, fuzzy
msgctxt "lastname-atkobject"
msgid "Last name"
msgstr "Apellidos"
-#: optuserpage.ui:196
+#: optuserpage.ui:207
msgctxt "shortname-atkobject"
msgid "Initials"
msgstr ""
-#: optuserpage.ui:225
+#: optuserpage.ui:236
#, fuzzy
msgctxt "city-atkobject"
msgid "City"
msgstr "Ciudat"
-#: optuserpage.ui:243
+#: optuserpage.ui:254
#, fuzzy
msgctxt "state-atkobject"
msgid "State"
msgstr "Estau/Provincia"
-#: optuserpage.ui:261
+#: optuserpage.ui:272
msgctxt "zip-atkobject"
msgid "Zip code"
msgstr ""
-#: optuserpage.ui:291
+#: optuserpage.ui:302
#, fuzzy
msgctxt "title-atkobject"
msgid "Title"
msgstr "Titol"
-#: optuserpage.ui:309
+#: optuserpage.ui:320
#, fuzzy
msgctxt "position-atkobject"
msgid "Position"
msgstr "Posición"
-#: optuserpage.ui:338
+#: optuserpage.ui:349
msgctxt "home-atkobject"
msgid "Home telephone number"
msgstr ""
-#: optuserpage.ui:356
+#: optuserpage.ui:367
msgctxt "work-atkobject"
msgid "Work telephone number"
msgstr ""
-#: optuserpage.ui:386
+#: optuserpage.ui:397
msgctxt "fax-atkobject"
msgid "FAX number"
msgstr ""
-#: optuserpage.ui:404
+#: optuserpage.ui:415
#, fuzzy
msgctxt "email-atkobject"
msgid "email address"
msgstr "AdrezaCorreuElectronico"
-#: optuserpage.ui:421
+#: optuserpage.ui:432
msgctxt "optuserpage|usefordocprop"
msgid "Use data for document properties"
msgstr ""
-#: optuserpage.ui:438
+#: optuserpage.ui:449
msgctxt "optuserpage|rusnameft"
msgid "Last name/first _name/father’s name/initials:"
msgstr ""
-#: optuserpage.ui:461
+#: optuserpage.ui:472
#, fuzzy
msgctxt "ruslastname-atkobject"
msgid "Last name"
msgstr "Apellidos"
-#: optuserpage.ui:479
+#: optuserpage.ui:490
msgctxt "rusfathersname-atkobject"
msgid "Father's name"
msgstr ""
-#: optuserpage.ui:497
+#: optuserpage.ui:508
msgctxt "russhortname-atkobject"
msgid "Initials"
msgstr ""
-#: optuserpage.ui:515
+#: optuserpage.ui:526
#, fuzzy
msgctxt "rusfirstname-atkobject"
msgid "First name"
msgstr "Nombres"
-#: optuserpage.ui:535
+#: optuserpage.ui:546
msgctxt "optuserpage|eastnameft"
msgid "Last/first _name/initials:"
msgstr ""
-#: optuserpage.ui:558
+#: optuserpage.ui:569
#, fuzzy
msgctxt "eastlastname-atkobject"
msgid "Last name"
msgstr "Apellidos"
-#: optuserpage.ui:576
+#: optuserpage.ui:587
#, fuzzy
msgctxt "eastfirstname-atkobject"
msgid "First name"
msgstr "Nombres"
-#: optuserpage.ui:594
+#: optuserpage.ui:605
msgctxt "eastshortname-atkobject"
msgid "Initials"
msgstr ""
-#: optuserpage.ui:614
+#: optuserpage.ui:625
msgctxt "optuserpage|russtreetft"
msgid "_Street/apartment number:"
msgstr ""
-#: optuserpage.ui:637
+#: optuserpage.ui:648
msgctxt "russtreet-atkobject"
msgid "Street"
msgstr ""
-#: optuserpage.ui:655
+#: optuserpage.ui:666
msgctxt "ruslastname-atkobject"
msgid "Apartment number"
msgstr ""
-#: optuserpage.ui:675
+#: optuserpage.ui:686
msgctxt "optuserpage|icityft"
msgid "_Zip/city:"
msgstr ""
-#: optuserpage.ui:698
+#: optuserpage.ui:709
#, fuzzy
msgctxt "icity-atkobject"
msgid "City"
msgstr "Ciudat"
-#: optuserpage.ui:716
+#: optuserpage.ui:727
msgctxt "izip-atkobject"
msgid "Zip code"
msgstr ""
-#: optuserpage.ui:814
+#: optuserpage.ui:825
#, fuzzy
msgctxt "optuserpage|label1"
msgid "Address"
msgstr "Adreza"
-#: optuserpage.ui:847
+#: optuserpage.ui:861
msgctxt "optuserpage|signingkeylabel"
msgid "OpenPGP signing key:"
msgstr ""
-#: optuserpage.ui:860
+#: optuserpage.ui:875
msgctxt "optuserpage|encryptionkeylabel"
msgid "OpenPGP encryption key:"
msgstr ""
-#: optuserpage.ui:889
+#: optuserpage.ui:908
msgctxt "optuserpage|encrypttoself"
msgid "When encrypting documents, always encrypt to self"
msgstr ""
-#: optuserpage.ui:909
-msgctxt "optuserpage|label2"
+#: optuserpage.ui:930
+msgctxt "optuserpage|cryptographylabel"
msgid "Cryptography"
msgstr ""
diff --git a/source/an/extras/source/autocorr/emoji.po b/source/an/extras/source/autocorr/emoji.po
index 03f70144e66..db7c13fd35a 100644
--- a/source/an/extras/source/autocorr/emoji.po
+++ b/source/an/extras/source/autocorr/emoji.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: 2016-10-18 13:02+0200\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2016-12-01 11:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1720,7 +1720,7 @@ msgctxt ""
"emoji.ulf\n"
"LIGHTNING\n"
"LngText.text"
-msgid "lighting"
+msgid "lightning3"
msgstr ""
#. ☈ (U+02608), see http://wiki.documentfoundation.org/Emoji
@@ -1729,7 +1729,7 @@ msgctxt ""
"emoji.ulf\n"
"THUNDERSTORM\n"
"LngText.text"
-msgid "storm"
+msgid "storm2"
msgstr ""
#. ☉ (U+02609), see http://wiki.documentfoundation.org/Emoji
@@ -2074,7 +2074,7 @@ msgctxt ""
"emoji.ulf\n"
"MERCURY\n"
"LngText.text"
-msgid "Mercury"
+msgid "mercury"
msgstr ""
#. ♀ (U+02640), see http://wiki.documentfoundation.org/Emoji
@@ -2092,7 +2092,7 @@ msgctxt ""
"emoji.ulf\n"
"EARTH\n"
"LngText.text"
-msgid "Earth"
+msgid "earth"
msgstr ""
#. ♂ (U+02642), see http://wiki.documentfoundation.org/Emoji
@@ -2111,7 +2111,7 @@ msgctxt ""
"emoji.ulf\n"
"JUPITER\n"
"LngText.text"
-msgid "Jupiter"
+msgid "jupiter"
msgstr ""
#. ♄ (U+02644), see http://wiki.documentfoundation.org/Emoji
@@ -2120,7 +2120,7 @@ msgctxt ""
"emoji.ulf\n"
"SATURN\n"
"LngText.text"
-msgid "Saturn"
+msgid "saturn"
msgstr ""
#. ♅ (U+02645), see http://wiki.documentfoundation.org/Emoji
@@ -2129,7 +2129,7 @@ msgctxt ""
"emoji.ulf\n"
"URANUS\n"
"LngText.text"
-msgid "Uranus"
+msgid "uranus"
msgstr ""
#. ♆ (U+02646), see http://wiki.documentfoundation.org/Emoji
@@ -2138,7 +2138,7 @@ msgctxt ""
"emoji.ulf\n"
"NEPTUNE\n"
"LngText.text"
-msgid "Neptune"
+msgid "neptune"
msgstr ""
#. ♇ (U+02647), see http://wiki.documentfoundation.org/Emoji
@@ -2147,7 +2147,7 @@ msgctxt ""
"emoji.ulf\n"
"PLUTO\n"
"LngText.text"
-msgid "Pluto"
+msgid "pluto"
msgstr ""
#. ♈ (U+02648), see http://wiki.documentfoundation.org/Emoji
@@ -2156,7 +2156,7 @@ msgctxt ""
"emoji.ulf\n"
"ARIES\n"
"LngText.text"
-msgid "Aries"
+msgid "aries"
msgstr ""
#. ♉ (U+02649), see http://wiki.documentfoundation.org/Emoji
@@ -2165,7 +2165,7 @@ msgctxt ""
"emoji.ulf\n"
"TAURUS\n"
"LngText.text"
-msgid "Taurus"
+msgid "taurus"
msgstr ""
#. ♊ (U+0264A), see http://wiki.documentfoundation.org/Emoji
@@ -2174,18 +2174,17 @@ msgctxt ""
"emoji.ulf\n"
"GEMINI\n"
"LngText.text"
-msgid "Gemini"
+msgid "gemini"
msgstr ""
#. ♋ (U+0264B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CANCER\n"
"LngText.text"
-msgid "Cancer"
-msgstr "Cancelar"
+msgid "cancer"
+msgstr ""
#. ♌ (U+0264C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2193,7 +2192,7 @@ msgctxt ""
"emoji.ulf\n"
"LEO\n"
"LngText.text"
-msgid "Leo"
+msgid "leo"
msgstr ""
#. ♍ (U+0264D), see http://wiki.documentfoundation.org/Emoji
@@ -2202,7 +2201,7 @@ msgctxt ""
"emoji.ulf\n"
"VIRGO\n"
"LngText.text"
-msgid "Virgo"
+msgid "virgo"
msgstr ""
#. ♎ (U+0264E), see http://wiki.documentfoundation.org/Emoji
@@ -2211,7 +2210,7 @@ msgctxt ""
"emoji.ulf\n"
"LIBRA\n"
"LngText.text"
-msgid "Libra"
+msgid "libra"
msgstr ""
#. ♏ (U+0264F), see http://wiki.documentfoundation.org/Emoji
@@ -2220,7 +2219,7 @@ msgctxt ""
"emoji.ulf\n"
"SCORPIUS\n"
"LngText.text"
-msgid "Scorpius"
+msgid "scorpius"
msgstr ""
#. ♐ (U+02650), see http://wiki.documentfoundation.org/Emoji
@@ -2229,7 +2228,7 @@ msgctxt ""
"emoji.ulf\n"
"SAGITTARIUS\n"
"LngText.text"
-msgid "Sagittarius"
+msgid "sagittarius"
msgstr ""
#. ♑ (U+02651), see http://wiki.documentfoundation.org/Emoji
@@ -2238,7 +2237,7 @@ msgctxt ""
"emoji.ulf\n"
"CAPRICORN\n"
"LngText.text"
-msgid "Capricorn"
+msgid "capricorn"
msgstr ""
#. ♒ (U+02652), see http://wiki.documentfoundation.org/Emoji
@@ -2247,7 +2246,7 @@ msgctxt ""
"emoji.ulf\n"
"AQUARIUS\n"
"LngText.text"
-msgid "Aquarius"
+msgid "aquarius"
msgstr ""
#. ♓ (U+02653), see http://wiki.documentfoundation.org/Emoji
@@ -2256,7 +2255,7 @@ msgctxt ""
"emoji.ulf\n"
"PISCES\n"
"LngText.text"
-msgid "Pisces"
+msgid "pisces"
msgstr ""
#. ♔ (U+02654), see http://wiki.documentfoundation.org/Emoji
@@ -2618,7 +2617,7 @@ msgctxt ""
"emoji.ulf\n"
"WHITE_FLAG\n"
"LngText.text"
-msgid "flag"
+msgid "flag4"
msgstr ""
#. ⚑ (U+02691), see http://wiki.documentfoundation.org/Emoji
@@ -2627,7 +2626,7 @@ msgctxt ""
"emoji.ulf\n"
"BLACK_FLAG\n"
"LngText.text"
-msgid "flag2"
+msgid "flag3"
msgstr ""
#. ⚒ (U+02692), see http://wiki.documentfoundation.org/Emoji
@@ -2935,7 +2934,7 @@ msgctxt ""
"emoji.ulf\n"
"BLACK_CROSS_ON_SHIELD\n"
"LngText.text"
-msgid "shield"
+msgid "shield2"
msgstr ""
#. ⛪ (U+026EA), see http://wiki.documentfoundation.org/Emoji
@@ -2980,7 +2979,7 @@ msgctxt ""
"emoji.ulf\n"
"FLAG_IN_HOLE\n"
"LngText.text"
-msgid "golf"
+msgid "golf2"
msgstr ""
#. ⛴ (U+026F4), see http://wiki.documentfoundation.org/Emoji
@@ -3713,7 +3712,7 @@ msgctxt ""
"emoji.ulf\n"
"FOGGY\n"
"LngText.text"
-msgid "fog"
+msgid "foggy"
msgstr ""
#. 🌂 (U+1F302), see http://wiki.documentfoundation.org/Emoji
@@ -3813,7 +3812,7 @@ msgctxt ""
"emoji.ulf\n"
"MILKY_WAY\n"
"LngText.text"
-msgid "Milky way"
+msgid "milky way"
msgstr ""
#. 🌍 (U+1F30D), see http://wiki.documentfoundation.org/Emoji
@@ -4065,7 +4064,7 @@ msgctxt ""
"emoji.ulf\n"
"CHERRY_BLOSSOM\n"
"LngText.text"
-msgid "cherry blossom"
+msgid "blossom2"
msgstr ""
#. 🌹 (U+1F339), see http://wiki.documentfoundation.org/Emoji
@@ -4300,7 +4299,7 @@ msgctxt ""
"emoji.ulf\n"
"CHERRIES\n"
"LngText.text"
-msgid "cherries"
+msgid "cherry"
msgstr ""
#. 🍓 (U+1F353), see http://wiki.documentfoundation.org/Emoji
@@ -4597,7 +4596,7 @@ msgctxt ""
"emoji.ulf\n"
"COOKING\n"
"LngText.text"
-msgid "egg"
+msgid "cooking"
msgstr ""
#. 🍴 (U+1F374), see http://wiki.documentfoundation.org/Emoji
@@ -4633,7 +4632,7 @@ msgctxt ""
"emoji.ulf\n"
"WINE_GLASS\n"
"LngText.text"
-msgid "wine glass"
+msgid "glass"
msgstr ""
#. 🍸 (U+1F378), see http://wiki.documentfoundation.org/Emoji
@@ -4651,7 +4650,7 @@ msgctxt ""
"emoji.ulf\n"
"TROPICAL_DRINK\n"
"LngText.text"
-msgid "tropical drink"
+msgid "drink2"
msgstr ""
#. 🍺 (U+1F37A), see http://wiki.documentfoundation.org/Emoji
@@ -4687,7 +4686,7 @@ msgctxt ""
"emoji.ulf\n"
"RIBBON\n"
"LngText.text"
-msgid "ribbon"
+msgid "ribbon2"
msgstr ""
#. 🎁 (U+1F381), see http://wiki.documentfoundation.org/Emoji
@@ -4714,7 +4713,7 @@ msgctxt ""
"emoji.ulf\n"
"JACK-O-LANTERN\n"
"LngText.text"
-msgid "Halloween"
+msgid "halloween"
msgstr ""
#. 🎄 (U+1F384), see http://wiki.documentfoundation.org/Emoji
@@ -4723,7 +4722,7 @@ msgctxt ""
"emoji.ulf\n"
"CHRISTMAS_TREE\n"
"LngText.text"
-msgid "Christmas"
+msgid "christmas"
msgstr ""
#. 🎅 (U+1F385), see http://wiki.documentfoundation.org/Emoji
@@ -4732,7 +4731,7 @@ msgctxt ""
"emoji.ulf\n"
"FATHER_CHRISTMAS\n"
"LngText.text"
-msgid "Santa"
+msgid "santa"
msgstr ""
#. 🎆 (U+1F386), see http://wiki.documentfoundation.org/Emoji
@@ -4777,7 +4776,7 @@ msgctxt ""
"emoji.ulf\n"
"CONFETTI_BALL\n"
"LngText.text"
-msgid "confetti ball"
+msgid "party2"
msgstr ""
#. 🎋 (U+1F38B), see http://wiki.documentfoundation.org/Emoji
@@ -4867,7 +4866,7 @@ msgctxt ""
"emoji.ulf\n"
"CAROUSEL_HORSE\n"
"LngText.text"
-msgid "carousel horse"
+msgid "fair2"
msgstr ""
#. 🎡 (U+1F3A1), see http://wiki.documentfoundation.org/Emoji
@@ -4876,7 +4875,7 @@ msgctxt ""
"emoji.ulf\n"
"FERRIS_WHEEL\n"
"LngText.text"
-msgid "ferris wheel"
+msgid "fair"
msgstr ""
#. 🎢 (U+1F3A2), see http://wiki.documentfoundation.org/Emoji
@@ -4957,7 +4956,7 @@ msgctxt ""
"emoji.ulf\n"
"CIRCUS_TENT\n"
"LngText.text"
-msgid "circus tent"
+msgid "circus"
msgstr ""
#. 🎫 (U+1F3AB), see http://wiki.documentfoundation.org/Emoji
@@ -5164,7 +5163,7 @@ msgctxt ""
"emoji.ulf\n"
"CHEQUERED_FLAG\n"
"LngText.text"
-msgid "flag3"
+msgid "race"
msgstr ""
#. 🏂 (U+1F3C2), see http://wiki.documentfoundation.org/Emoji
@@ -5209,7 +5208,7 @@ msgctxt ""
"emoji.ulf\n"
"HORSE_RACING\n"
"LngText.text"
-msgid "horse racing"
+msgid "horse3"
msgstr ""
#. 🏈 (U+1F3C8), see http://wiki.documentfoundation.org/Emoji
@@ -6935,7 +6934,7 @@ msgctxt ""
"emoji.ulf\n"
"MONEY_BAG\n"
"LngText.text"
-msgid "moneybag"
+msgid "money2"
msgstr ""
#. 💱 (U+1F4B1), see http://wiki.documentfoundation.org/Emoji
@@ -6944,7 +6943,7 @@ msgctxt ""
"emoji.ulf\n"
"CURRENCY_EXCHANGE\n"
"LngText.text"
-msgid "currency exchange"
+msgid "exchange"
msgstr ""
#. 💲 (U+1F4B2), see http://wiki.documentfoundation.org/Emoji
@@ -7016,7 +7015,7 @@ msgctxt ""
"emoji.ulf\n"
"CHART_WITH_UPWARDS_TREND_AND_YEN_SIGN\n"
"LngText.text"
-msgid "chart"
+msgid "chart4"
msgstr ""
#. 💺 (U+1F4BA), see http://wiki.documentfoundation.org/Emoji
@@ -7106,7 +7105,7 @@ msgctxt ""
"emoji.ulf\n"
"PAGE_WITH_CURL\n"
"LngText.text"
-msgid "page with curl"
+msgid "page3"
msgstr ""
#. 📄 (U+1F4C4), see http://wiki.documentfoundation.org/Emoji
@@ -7115,7 +7114,7 @@ msgctxt ""
"emoji.ulf\n"
"PAGE_FACING_UP\n"
"LngText.text"
-msgid "page facing up"
+msgid "page"
msgstr ""
#. 📅 (U+1F4C5), see http://wiki.documentfoundation.org/Emoji
@@ -7151,7 +7150,7 @@ msgctxt ""
"emoji.ulf\n"
"CHART_WITH_UPWARDS_TREND\n"
"LngText.text"
-msgid "char"
+msgid "chart"
msgstr ""
#. 📉 (U+1F4C9), see http://wiki.documentfoundation.org/Emoji
@@ -7268,7 +7267,7 @@ msgctxt ""
"emoji.ulf\n"
"CLOSED_BOOK\n"
"LngText.text"
-msgid "book"
+msgid "book2"
msgstr ""
#. 📖 (U+1F4D6), see http://wiki.documentfoundation.org/Emoji
@@ -7277,7 +7276,7 @@ msgctxt ""
"emoji.ulf\n"
"OPEN_BOOK\n"
"LngText.text"
-msgid "book2"
+msgid "book3"
msgstr ""
#. 📚 (U+1F4DA), see http://wiki.documentfoundation.org/Emoji
@@ -7351,7 +7350,7 @@ msgctxt ""
"emoji.ulf\n"
"SATELLITE_ANTENNA\n"
"LngText.text"
-msgid "satellite"
+msgid "antenna"
msgstr ""
#. 📢 (U+1F4E2), see http://wiki.documentfoundation.org/Emoji
@@ -7416,7 +7415,7 @@ msgctxt ""
"emoji.ulf\n"
"INCOMING_ENVELOPE\n"
"LngText.text"
-msgid "envelope2"
+msgid "envelope7"
msgstr ""
#. 📩 (U+1F4E9), see http://wiki.documentfoundation.org/Emoji
@@ -7425,7 +7424,7 @@ msgctxt ""
"emoji.ulf\n"
"ENVELOPE_WITH_DOWNWARDS_ARROW_ABOVE\n"
"LngText.text"
-msgid "envelope3"
+msgid "envelope8"
msgstr ""
#. 📪 (U+1F4EA), see http://wiki.documentfoundation.org/Emoji
@@ -8237,7 +8236,7 @@ msgctxt ""
"emoji.ulf\n"
"SMILING_FACE_WITH_OPEN_MOUTH_AND_TIGHTLY-CLOSED_EYES\n"
"LngText.text"
-msgid "laughing"
+msgid "laugh"
msgstr ""
#. 😇 (U+1F607), see http://wiki.documentfoundation.org/Emoji
@@ -8309,7 +8308,7 @@ msgctxt ""
"emoji.ulf\n"
"SMILING_FACE_WITH_SUNGLASSES\n"
"LngText.text"
-msgid "sunglasses"
+msgid "sunglasses2"
msgstr ""
#. 😏 (U+1F60F), see http://wiki.documentfoundation.org/Emoji
@@ -8778,7 +8777,7 @@ msgctxt ""
"emoji.ulf\n"
"FACE_WITH_OK_GESTURE\n"
"LngText.text"
-msgid "ok2"
+msgid "ok3"
msgstr ""
#. 🙇 (U+1F647), see http://wiki.documentfoundation.org/Emoji
@@ -8787,7 +8786,7 @@ msgctxt ""
"emoji.ulf\n"
"PERSON_BOWING_DEEPLY\n"
"LngText.text"
-msgid "bow"
+msgid "prostration"
msgstr ""
#. 🙈 (U+1F648), see http://wiki.documentfoundation.org/Emoji
@@ -8887,7 +8886,7 @@ msgctxt ""
"emoji.ulf\n"
"STEAM_LOCOMOTIVE\n"
"LngText.text"
-msgid "steam locomotive"
+msgid "locomotive"
msgstr ""
#. 🚃 (U+1F683), see http://wiki.documentfoundation.org/Emoji
@@ -9373,7 +9372,7 @@ msgctxt ""
"emoji.ulf\n"
"CHILDREN_CROSSING\n"
"LngText.text"
-msgid "children crossing"
+msgid "crosswalk"
msgstr ""
#. 🚹 (U+1F6B9), see http://wiki.documentfoundation.org/Emoji
@@ -9493,6 +9492,3714 @@ msgctxt ""
msgid "left luggage"
msgstr ""
+#. 🕃 (U+1F543), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTCHED_LEFT_SEMICIRCLE_WITH_THREE_DOTS\n"
+"LngText.text"
+msgid "feast"
+msgstr ""
+
+#. 🙂 (U+1F642), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLIGHTLY_SMILING_FACE\n"
+"LngText.text"
+msgid "smiling3"
+msgstr ""
+
+#. 🙁 (U+1F641), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLIGHTLY_FROWNING_FACE\n"
+"LngText.text"
+msgid "frowning2"
+msgstr ""
+
+#. 🕵 (U+1F575), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLEUTH_OR_SPY\n"
+"LngText.text"
+msgid "detective"
+msgstr ""
+
+#. 🛌 (U+1F6CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLEEPING_ACCOMMODATION\n"
+"LngText.text"
+msgid "sleep"
+msgstr ""
+
+#. 🕴 (U+1F574), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_IN_BUSINESS_SUIT_LEVITATING\n"
+"LngText.text"
+msgid "suit"
+msgstr ""
+
+#. 🗣 (U+1F5E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPEAKING_HEAD_IN_SILHOUETTE\n"
+"LngText.text"
+msgid "head"
+msgstr ""
+
+#. 🏌 (U+1F3CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GOLFER\n"
+"LngText.text"
+msgid "golf"
+msgstr ""
+
+#. 🏋 (U+1F3CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WEIGHT_LIFTER\n"
+"LngText.text"
+msgid "weight lifter"
+msgstr ""
+
+#. 🏎 (U+1F3CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RACING_CAR\n"
+"LngText.text"
+msgid "car4"
+msgstr ""
+
+#. 🏍 (U+1F3CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RACING_MOTORCYCLE\n"
+"LngText.text"
+msgid "motorcycle"
+msgstr ""
+
+#. 🖕 (U+1F595), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_HAND_WITH_MIDDLE_FINGER_EXTENDED\n"
+"LngText.text"
+msgid "finger"
+msgstr ""
+
+#. 🖖 (U+1F596), Mr. Spock's Vulcan salute from Star Trek, see also http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_HAND_WITH_PART_BETWEEN_MIDDLE_AND_RING_FINGERS\n"
+"LngText.text"
+msgid "spock"
+msgstr ""
+
+#. 🖐 (U+1F590), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_HAND_WITH_FINGERS_SPLAYED\n"
+"LngText.text"
+msgid "hand2"
+msgstr ""
+
+#. 👁 (U+1F441), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EYE\n"
+"LngText.text"
+msgid "eye"
+msgstr ""
+
+#. 🗨 (U+1F5E8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_SPEECH_BUBBLE\n"
+"LngText.text"
+msgid "bubble"
+msgstr ""
+
+#. 🗯 (U+1F5EF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_ANGER_BUBBLE\n"
+"LngText.text"
+msgid "bubble4"
+msgstr ""
+
+#. 🕳 (U+1F573), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOLE\n"
+"LngText.text"
+msgid "hole"
+msgstr ""
+
+#. 🕶 (U+1F576), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DARK_SUNGLASSES\n"
+"LngText.text"
+msgid "sunglasses"
+msgstr ""
+
+#. 🛍 (U+1F6CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOPPING_BAGS\n"
+"LngText.text"
+msgid "shop"
+msgstr ""
+
+#. 🐿 (U+1F43F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHIPMUNK\n"
+"LngText.text"
+msgid "chipmunk"
+msgstr ""
+
+#. 🕊 (U+1F54A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOVE_OF_PEACE\n"
+"LngText.text"
+msgid "dove"
+msgstr ""
+
+#. 🕷 (U+1F577), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIDER\n"
+"LngText.text"
+msgid "spider"
+msgstr ""
+
+#. 🕸 (U+1F578), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIDER_WEB\n"
+"LngText.text"
+msgid "web"
+msgstr ""
+
+#. 🏵 (U+1F3F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROSETTE\n"
+"LngText.text"
+msgid "rosette"
+msgstr ""
+
+#. 🌶 (U+1F336), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOT_PEPPER\n"
+"LngText.text"
+msgid "pepper"
+msgstr ""
+
+#. 🍽 (U+1F37D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FORK_AND_KNIFE_WITH_PLATE\n"
+"LngText.text"
+msgid "plate"
+msgstr ""
+
+#. 🗺 (U+1F5FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WORLD_MAP\n"
+"LngText.text"
+msgid "map"
+msgstr ""
+
+#. 🏔 (U+1F3D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SNOW_CAPPED_MOUNTAIN\n"
+"LngText.text"
+msgid "mountain2"
+msgstr ""
+
+#. 🏕 (U+1F3D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CAMPING\n"
+"LngText.text"
+msgid "camping"
+msgstr ""
+
+#. 🏖 (U+1F3D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEACH_WITH_UMBRELLA\n"
+"LngText.text"
+msgid "beach"
+msgstr ""
+
+#. 🏜 (U+1F3DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESERT\n"
+"LngText.text"
+msgid "desert"
+msgstr ""
+
+#. 🏝 (U+1F3DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESERT_ISLAND\n"
+"LngText.text"
+msgid "island"
+msgstr ""
+
+#. 🏞 (U+1F3DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NATIONAL_PARK\n"
+"LngText.text"
+msgid "park"
+msgstr ""
+
+#. 🏟 (U+1F3DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STADIUM\n"
+"LngText.text"
+msgid "stadium"
+msgstr ""
+
+#. 🏛 (U+1F3DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLASSICAL_BUILDING\n"
+"LngText.text"
+msgid "museum"
+msgstr ""
+
+#. 🏗 (U+1F3D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BUILDING_CONSTRUCTION\n"
+"LngText.text"
+msgid "crane"
+msgstr ""
+
+#. 🏘 (U+1F3D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOUSE_BUILDINGS\n"
+"LngText.text"
+msgid "houses"
+msgstr ""
+
+#. 🏚 (U+1F3DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DERELICT_HOUSE_BUILDING\n"
+"LngText.text"
+msgid "house3"
+msgstr ""
+
+#. 🏙 (U+1F3D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CITYSCAPE\n"
+"LngText.text"
+msgid "city"
+msgstr ""
+
+#. 🛣 (U+1F6E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTORWAY\n"
+"LngText.text"
+msgid "motorway"
+msgstr ""
+
+#. 🛤 (U+1F6E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAILWAY_TRACK\n"
+"LngText.text"
+msgid "track"
+msgstr ""
+
+#. 🛢 (U+1F6E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OIL_DRUM\n"
+"LngText.text"
+msgid "drum"
+msgstr ""
+
+#. 🛳 (U+1F6F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PASSENGER_SHIP\n"
+"LngText.text"
+msgid "ship2"
+msgstr ""
+
+#. 🛥 (U+1F6E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTOR_BOAT\n"
+"LngText.text"
+msgid "motor boat"
+msgstr ""
+
+#. 🛩 (U+1F6E9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SMALL_AIRPLANE\n"
+"LngText.text"
+msgid "airplane2"
+msgstr ""
+
+#. 🛫 (U+1F6EB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AIRPLANE_DEPARTURE\n"
+"LngText.text"
+msgid "departure"
+msgstr ""
+
+#. 🛬 (U+1F6EC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AIRPLANE_ARRIVING\n"
+"LngText.text"
+msgid "arrival"
+msgstr ""
+
+#. 🛰 (U+1F6F0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SATELLITE\n"
+"LngText.text"
+msgid "satellite"
+msgstr ""
+
+#. 🛎 (U+1F6CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BELLHOP_BELL\n"
+"LngText.text"
+msgid "bell2"
+msgstr ""
+
+#. 🕰 (U+1F570), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MANTELPIECE_CLOCK\n"
+"LngText.text"
+msgid "clock"
+msgstr ""
+
+#. 🌡 (U+1F321), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THERMOMETER\n"
+"LngText.text"
+msgid "thermometer"
+msgstr ""
+
+#. 🌤 (U+1F324), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_WITH_SMALL_CLOUD\n"
+"LngText.text"
+msgid "cloudy"
+msgstr ""
+
+#. 🌥 (U+1F325), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_BEHIND_CLOUD\n"
+"LngText.text"
+msgid "cloudy2"
+msgstr ""
+
+#. 🌦 (U+1F326), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_BEHIND_CLOUD_WITH_RAIN\n"
+"LngText.text"
+msgid "rainy"
+msgstr ""
+
+#. 🌧 (U+1F327), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_RAIN\n"
+"LngText.text"
+msgid "storm"
+msgstr ""
+
+#. 🌨 (U+1F328), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_SNOW\n"
+"LngText.text"
+msgid "snow"
+msgstr ""
+
+#. 🌩 (U+1F329), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_LIGHTNING\n"
+"LngText.text"
+msgid "lightning"
+msgstr ""
+
+#. 🌪 (U+1F32A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_TORNADO\n"
+"LngText.text"
+msgid "tornado"
+msgstr ""
+
+#. 🌫 (U+1F32B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOG\n"
+"LngText.text"
+msgid "fog"
+msgstr ""
+
+#. 🌬 (U+1F32C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WIND_BLOWING_FACE\n"
+"LngText.text"
+msgid "wind"
+msgstr ""
+
+#. 🎗 (U+1F397), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REMINDER_RIBBON\n"
+"LngText.text"
+msgid "ribbon"
+msgstr ""
+
+#. 🎟 (U+1F39F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ADMISSION_TICKETS\n"
+"LngText.text"
+msgid "ticket2"
+msgstr ""
+
+#. 🎖 (U+1F396), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MILITARY_MEDAL\n"
+"LngText.text"
+msgid "medal2"
+msgstr ""
+
+#. 🏅 (U+1F3C5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPORTS_MEDAL\n"
+"LngText.text"
+msgid "medal"
+msgstr ""
+
+#. 🕹 (U+1F579), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"JOYSTICK\n"
+"LngText.text"
+msgid "joystick"
+msgstr ""
+
+#. 🖼 (U+1F5BC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_PICTURE\n"
+"LngText.text"
+msgid "picture"
+msgstr ""
+
+#. 🎙 (U+1F399), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STUDIO_MICROPHONE\n"
+"LngText.text"
+msgid "microphone2"
+msgstr ""
+
+#. 🎚 (U+1F39A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEVEL_SLIDER\n"
+"LngText.text"
+msgid "slider"
+msgstr ""
+
+#. 🎛 (U+1F39B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CONTROL_KNOBS\n"
+"LngText.text"
+msgid "control"
+msgstr ""
+
+#. 🖥 (U+1F5A5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESKTOP_COMPUTER\n"
+"LngText.text"
+msgid "computer2"
+msgstr ""
+
+#. 🖨 (U+1F5A8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINTER\n"
+"LngText.text"
+msgid "printer"
+msgstr ""
+
+#. 🖱 (U+1F5B1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse3"
+msgstr ""
+
+#. 🖲 (U+1F5B2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TRACKBALL\n"
+"LngText.text"
+msgid "trackball"
+msgstr ""
+
+#. 🎞 (U+1F39E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILM_FRAMES\n"
+"LngText.text"
+msgid "film"
+msgstr ""
+
+#. 📽 (U+1F4FD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILM_PROJECTOR\n"
+"LngText.text"
+msgid "projector"
+msgstr ""
+
+#. 📸 (U+1F4F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CAMERA_WITH_FLASH\n"
+"LngText.text"
+msgid "flash"
+msgstr ""
+
+#. 🕯 (U+1F56F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANDLE\n"
+"LngText.text"
+msgid "candle"
+msgstr ""
+
+#. 🗞 (U+1F5DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROLLED-UP_NEWSPAPER\n"
+"LngText.text"
+msgid "newspaper2"
+msgstr ""
+
+#. 🏷 (U+1F3F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LABEL\n"
+"LngText.text"
+msgid "label"
+msgstr ""
+
+#. 🗳 (U+1F5F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BALLOT\n"
+"LngText.text"
+msgid "ballot"
+msgstr ""
+
+#. 🖋 (U+1F58B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_FOUNTAIN_PEN\n"
+"LngText.text"
+msgid "pen2"
+msgstr ""
+
+#. 🖊 (U+1F58A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_BALLPOINT_PEN\n"
+"LngText.text"
+msgid "pen"
+msgstr ""
+
+#. 🖌 (U+1F58C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_PAINTBRUSH\n"
+"LngText.text"
+msgid "paintbrush"
+msgstr ""
+
+#. 🖍 (U+1F58D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_CRAYON\n"
+"LngText.text"
+msgid "crayon"
+msgstr ""
+
+#. 🗂 (U+1F5C2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARD_INDEX_DIVIDERS\n"
+"LngText.text"
+msgid "index"
+msgstr ""
+
+#. 🗒 (U+1F5D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIRAL_NOTE_PAD\n"
+"LngText.text"
+msgid "notepad"
+msgstr ""
+
+#. 🗓 (U+1F5D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIRAL_CALENDAR_PAD\n"
+"LngText.text"
+msgid "calendar3"
+msgstr ""
+
+#. 🖇 (U+1F587), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LINKED_PAPERCLIPS\n"
+"LngText.text"
+msgid "paperclip2"
+msgstr ""
+
+#. 🗃 (U+1F5C3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARD_FILE_BOX\n"
+"LngText.text"
+msgid "box"
+msgstr ""
+
+#. 🗄 (U+1F5C4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILE_CABINET\n"
+"LngText.text"
+msgid "cabinet"
+msgstr ""
+
+#. 🗑 (U+1F5D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WASTEBASKET\n"
+"LngText.text"
+msgid "wastebasket"
+msgstr ""
+
+#. 🗝 (U+1F5DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLD_KEY\n"
+"LngText.text"
+msgid "key2"
+msgstr ""
+
+#. 🛠 (U+1F6E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HAMMER_AND_WRENCH\n"
+"LngText.text"
+msgid "hammer and wrench"
+msgstr ""
+
+#. 🗡 (U+1F5E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DAGGER_KNIFE\n"
+"LngText.text"
+msgid "knife2"
+msgstr ""
+
+#. 🛡 (U+1F6E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHIELD\n"
+"LngText.text"
+msgid "shield"
+msgstr ""
+
+#. 🗜 (U+1F5DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COMPRESSION\n"
+"LngText.text"
+msgid "clamp"
+msgstr ""
+
+#. 🛏 (U+1F6CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BED\n"
+"LngText.text"
+msgid "bed"
+msgstr ""
+
+#. 🛋 (U+1F6CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COUCH_AND_LAMP\n"
+"LngText.text"
+msgid "couch"
+msgstr ""
+
+#. 🕉 (U+1F549), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OM_SYMBOL\n"
+"LngText.text"
+msgid "om"
+msgstr ""
+
+#. ⏸ (U+23F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOUBLE_VERTICAL_BAR\n"
+"LngText.text"
+msgid "pause"
+msgstr ""
+
+#. ⏹ (U+23F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_SQUARE_FOR_STOP\n"
+"LngText.text"
+msgid "stop2"
+msgstr ""
+
+#. ⏺ (U+23FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_CIRCLE_FOR_RECORD\n"
+"LngText.text"
+msgid "record"
+msgstr ""
+
+#. 🏴 (U+1F3F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WAVING_BLACK_FLAG\n"
+"LngText.text"
+msgid "flag"
+msgstr ""
+
+#. 🏳 (U+1F3F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WAVING_WHITE_FLAG\n"
+"LngText.text"
+msgid "flag2"
+msgstr ""
+
+#. 🗷 (U+1F5F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BOLD_SCRIPT_X\n"
+"LngText.text"
+msgid "checkbox4"
+msgstr ""
+
+#. 🛉 (U+1F6C9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOYS_SYMBOL\n"
+"LngText.text"
+msgid "boys"
+msgstr ""
+
+#. 🛈 (U+1F6C8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CIRCLED_INFORMATION_SOURCE\n"
+"LngText.text"
+msgid "information3"
+msgstr ""
+
+#. 🛊 (U+1F6CA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GIRLS_SYMBOL\n"
+"LngText.text"
+msgid "girls"
+msgstr ""
+
+#. 🛨 (U+1F6E8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_SMALL_AIRPLANE\n"
+"LngText.text"
+msgid "airplane4"
+msgstr ""
+
+#. 🛲 (U+1F6F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DIESEL_LOCOMOTIVE\n"
+"LngText.text"
+msgid "locomotive2"
+msgstr ""
+
+#. 🛧 (U+1F6E7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_AIRPLANE\n"
+"LngText.text"
+msgid "airplane3"
+msgstr ""
+
+#. 🛱 (U+1F6F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ONCOMING_FIRE_ENGINE\n"
+"LngText.text"
+msgid "fire engine2"
+msgstr ""
+
+#. 🛦 (U+1F6E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_MILITARY_AIRPLANE\n"
+"LngText.text"
+msgid "airplane5"
+msgstr ""
+
+#. 🛪 (U+1F6EA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NORTHEAST-POINTING_AIRPLANE\n"
+"LngText.text"
+msgid "airplane6"
+msgstr ""
+
+#. 🗭 (U+1F5ED), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_THOUGHT_BUBBLE\n"
+"LngText.text"
+msgid "bubble5"
+msgstr ""
+
+#. 🗱 (U+1F5F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHTNING_MOOD_BUBBLE\n"
+"LngText.text"
+msgid "bubble6"
+msgstr ""
+
+#. 🗬 (U+1F5EC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_THOUGHT_BUBBLE\n"
+"LngText.text"
+msgid "bubble7"
+msgstr ""
+
+#. 🗠 (U+1F5E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STOCK_CHART\n"
+"LngText.text"
+msgid "chart5"
+msgstr ""
+
+#. 🗟 (U+1F5DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGE_WITH_CIRCLED_TEXT\n"
+"LngText.text"
+msgid "page4"
+msgstr ""
+
+#. 🖎 (U+1F58E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_WRITING_HAND\n"
+"LngText.text"
+msgid "writing2"
+msgstr ""
+
+#. 🗦 (U+1F5E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_LEFT\n"
+"LngText.text"
+msgid "rays"
+msgstr ""
+
+#. 🎝 (U+1F39D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEAMED_DESCENDING_MUSICAL_NOTES\n"
+"LngText.text"
+msgid "notes3"
+msgstr ""
+
+#. 🔾 (U+1F53E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_RIGHT_SHADOWED_WHITE_CIRCLE\n"
+"LngText.text"
+msgid "circle3"
+msgstr ""
+
+#. 🎜 (U+1F39C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEAMED_ASCENDING_MUSICAL_NOTES\n"
+"LngText.text"
+msgid "notes4"
+msgstr ""
+
+#. 🕮 (U+1F56E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOOK\n"
+"LngText.text"
+msgid "book"
+msgstr ""
+
+#. 🗛 (U+1F5DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DECREASE_FONT_SIZE_SYMBOL\n"
+"LngText.text"
+msgid "font"
+msgstr ""
+
+#. 🔿 (U+1F53F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UPPER_RIGHT_SHADOWED_WHITE_CIRCLE\n"
+"LngText.text"
+msgid "circle4"
+msgstr ""
+
+#. 🕫 (U+1F56B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BULLHORN\n"
+"LngText.text"
+msgid "bullhorn"
+msgstr ""
+
+#. 🕬 (U+1F56C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BULLHORN_WITH_SOUND_WAVES\n"
+"LngText.text"
+msgid "bullhorn2"
+msgstr ""
+
+#. 🕻 (U+1F57B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_HAND_TELEPHONE_RECEIVER\n"
+"LngText.text"
+msgid "receiver2"
+msgstr ""
+
+#. 🕾 (U+1F57E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_TOUCHTONE_TELEPHONE\n"
+"LngText.text"
+msgid "phone3"
+msgstr ""
+
+#. 🕼 (U+1F57C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TELEPHONE_RECEIVER_WITH_PAGE\n"
+"LngText.text"
+msgid "receiver4"
+msgstr ""
+
+#. 🕽 (U+1F57D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_HAND_TELEPHONE_RECEIVER\n"
+"LngText.text"
+msgid "receiver3"
+msgstr ""
+
+#. 🕿 (U+1F57F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_TOUCHTONE_TELEPHONE\n"
+"LngText.text"
+msgid "phone4"
+msgstr ""
+
+#. 🖚 (U+1F59A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_LEFT_POINTING_INDEX\n"
+"LngText.text"
+msgid "left4"
+msgstr ""
+
+#. 🖏 (U+1F58F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TURNED_OK_HAND_SIGN\n"
+"LngText.text"
+msgid "ok2"
+msgstr ""
+
+#. 🖜 (U+1F59C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_LEFT_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "left5"
+msgstr ""
+
+#. 🗥 (U+1F5E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_BELOW\n"
+"LngText.text"
+msgid "rays2"
+msgstr ""
+
+#. 🖛 (U+1F59B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_RIGHT_POINTING_INDEX\n"
+"LngText.text"
+msgid "right4"
+msgstr ""
+
+#. 🖟 (U+1F59F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_DOWN_POINTING_INDEX\n"
+"LngText.text"
+msgid "down3"
+msgstr ""
+
+#. 🖞 (U+1F59E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_UP_POINTING_INDEX\n"
+"LngText.text"
+msgid "up3"
+msgstr ""
+
+#. 🌢 (U+1F322), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_DROPLET\n"
+"LngText.text"
+msgid "droplet2"
+msgstr ""
+
+#. 🎘 (U+1F398), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MUSICAL_KEYBOARD_WITH_JACKS\n"
+"LngText.text"
+msgid "synthesizer"
+msgstr ""
+
+#. 🎕 (U+1F395), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOUQUET_OF_FLOWERS\n"
+"LngText.text"
+msgid "bouquet2"
+msgstr ""
+
+#. 🎔 (U+1F394), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEART_WITH_TIP_ON_THE_LEFT\n"
+"LngText.text"
+msgid "heart2"
+msgstr ""
+
+#. 🕱 (U+1F571), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_SKULL_AND_CROSSBONES\n"
+"LngText.text"
+msgid "pirate"
+msgstr ""
+
+#. 🖀 (U+1F580), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TELEPHONE_ON_TOP_OF_MODEM\n"
+"LngText.text"
+msgid "modem"
+msgstr ""
+
+#. 🕲 (U+1F572), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NO_PIRACY\n"
+"LngText.text"
+msgid "no piracy"
+msgstr ""
+
+#. 🕅 (U+1F545), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SYMBOL_FOR_MARKS_CHAPTER\n"
+"LngText.text"
+msgid "marks chapter"
+msgstr ""
+
+#. 🕈 (U+1F548), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CELTIC_CROSS\n"
+"LngText.text"
+msgid "Celtic cross"
+msgstr ""
+
+#. 🖗 (U+1F597), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_DOWN_POINTING_LEFT_HAND_INDEX\n"
+"LngText.text"
+msgid "down4"
+msgstr ""
+
+#. 🖆 (U+1F586), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEN_OVER_STAMPED_ENVELOPE\n"
+"LngText.text"
+msgid "envelope4"
+msgstr ""
+
+#. 🖃 (U+1F583), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STAMPED_ENVELOPE\n"
+"LngText.text"
+msgid "envelope2"
+msgstr ""
+
+#. 🗤 (U+1F5E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_ABOVE\n"
+"LngText.text"
+msgid "rays3"
+msgstr ""
+
+#. 🖉 (U+1F589), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_PENCIL\n"
+"LngText.text"
+msgid "pencil4"
+msgstr ""
+
+#. 🖂 (U+1F582), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BACK_OF_ENVELOPE\n"
+"LngText.text"
+msgid "envelope3"
+msgstr ""
+
+#. 🖈 (U+1F588), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_PUSHPIN\n"
+"LngText.text"
+msgid "tack"
+msgstr ""
+
+#. 🖄 (U+1F584), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ENVELOPE_WITH_LIGHTNING\n"
+"LngText.text"
+msgid "envelope5"
+msgstr ""
+
+#. 🖁 (U+1F581), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLAMSHELL_MOBILE_PHONE\n"
+"LngText.text"
+msgid "mobile2"
+msgstr ""
+
+#. 🖅 (U+1F585), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FLYING_ENVELOPE\n"
+"LngText.text"
+msgid "envelope6"
+msgstr ""
+
+#. 🖘 (U+1F598), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_LEFT_POINTING_INDEX\n"
+"LngText.text"
+msgid "left6"
+msgstr ""
+
+#. 🖙 (U+1F599), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_RIGHT_POINTING_INDEX\n"
+"LngText.text"
+msgid "right5"
+msgstr ""
+
+#. 🗖 (U+1F5D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAXIMIZE\n"
+"LngText.text"
+msgid "maximize"
+msgstr ""
+
+#. 🗗 (U+1F5D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OVERLAP\n"
+"LngText.text"
+msgid "overlap"
+msgstr ""
+
+#. 🗏 (U+1F5CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGE\n"
+"LngText.text"
+msgid "page2"
+msgstr ""
+
+#. 🗐 (U+1F5D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGES\n"
+"LngText.text"
+msgid "pages"
+msgstr ""
+
+#. 🗘 (U+1F5D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOCKWISE_RIGHT_AND_LEFT_SEMICIRCLE_ARROWS\n"
+"LngText.text"
+msgid "arrows"
+msgstr ""
+
+#. 🗚 (U+1F5DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"INCREASE_FONT_SIZE_SYMBOL\n"
+"LngText.text"
+msgid "font2"
+msgstr ""
+
+#. 🗕 (U+1F5D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MINIMIZE\n"
+"LngText.text"
+msgid "minimize"
+msgstr ""
+
+#. 🗙 (U+1F5D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANCELLATION_X\n"
+"LngText.text"
+msgid "cancel"
+msgstr ""
+
+#. 🗔 (U+1F5D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESKTOP_WINDOW\n"
+"LngText.text"
+msgid "window"
+msgstr ""
+
+#. 🗌 (U+1F5CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_PAGE\n"
+"LngText.text"
+msgid "empty page"
+msgstr ""
+
+#. 🗋 (U+1F5CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_DOCUMENT\n"
+"LngText.text"
+msgid "empty document"
+msgstr ""
+
+#. 🗍 (U+1F5CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_PAGES\n"
+"LngText.text"
+msgid "empty pages"
+msgstr ""
+
+#. 🗎 (U+1F5CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT\n"
+"LngText.text"
+msgid "document"
+msgstr ""
+
+#. 🗆 (U+1F5C6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE_PAGE\n"
+"LngText.text"
+msgid "empty note page"
+msgstr ""
+
+#. 🗊 (U+1F5CA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE_PAD\n"
+"LngText.text"
+msgid "note pad"
+msgstr ""
+
+#. 🗈 (U+1F5C8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE\n"
+"LngText.text"
+msgid "note3"
+msgstr ""
+
+#. 🗇 (U+1F5C7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE_PAD\n"
+"LngText.text"
+msgid "empty note pad"
+msgstr ""
+
+#. 🗉 (U+1F5C9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE_PAGE\n"
+"LngText.text"
+msgid "note page"
+msgstr ""
+
+#. 🖸 (U+1F5B8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OPTICAL_DISC_ICON\n"
+"LngText.text"
+msgid "optical disc"
+msgstr ""
+
+#. 🗀 (U+1F5C0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOLDER\n"
+"LngText.text"
+msgid "folder3"
+msgstr ""
+
+#. 🖝 (U+1F59D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_RIGHT_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "right6"
+msgstr ""
+
+#. 🗁 (U+1F5C1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OPEN_FOLDER\n"
+"LngText.text"
+msgid "folder4"
+msgstr ""
+
+#. 🗅 (U+1F5C5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE\n"
+"LngText.text"
+msgid "empty note"
+msgstr ""
+
+#. 🖿 (U+1F5BF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_FOLDER\n"
+"LngText.text"
+msgid "folder5"
+msgstr ""
+
+#. 🖾 (U+1F5BE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_AN_X\n"
+"LngText.text"
+msgid "frame"
+msgstr ""
+
+#. 🖽 (U+1F5BD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_TILES\n"
+"LngText.text"
+msgid "frame2"
+msgstr ""
+
+#. 🖹 (U+1F5B9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_TEXT\n"
+"LngText.text"
+msgid "document2"
+msgstr ""
+
+#. 🖻 (U+1F5BB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_PICTURE\n"
+"LngText.text"
+msgid "document3"
+msgstr ""
+
+#. 🖺 (U+1F5BA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_TEXT_AND_PICTURE\n"
+"LngText.text"
+msgid "document4"
+msgstr ""
+
+#. 🖶 (U+1F5B6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINTER_ICON\n"
+"LngText.text"
+msgid "printer2"
+msgstr ""
+
+#. 🖷 (U+1F5B7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FAX_ICON\n"
+"LngText.text"
+msgid "fax2"
+msgstr ""
+
+#. 🖰 (U+1F5B0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TWO_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse4"
+msgstr ""
+
+#. 🖳 (U+1F5B3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLD_PERSONAL_COMPUTER\n"
+"LngText.text"
+msgid "pc"
+msgstr ""
+
+#. 🖵 (U+1F5B5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCREEN\n"
+"LngText.text"
+msgid "screen"
+msgstr ""
+
+#. 🖯 (U+1F5AF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ONE_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse5"
+msgstr ""
+
+#. 🖴 (U+1F5B4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HARD_DISK\n"
+"LngText.text"
+msgid "hard disk"
+msgstr ""
+
+#. 🖩 (U+1F5A9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POCKET_CALCULATOR\n"
+"LngText.text"
+msgid "calculator"
+msgstr ""
+
+#. 🖭 (U+1F5AD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TAPE_CARTRIDGE\n"
+"LngText.text"
+msgid "cartridge"
+msgstr ""
+
+#. 🖬 (U+1F5AC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SOFT_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy2"
+msgstr ""
+
+#. 🖫 (U+1F5AB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_HARD_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy3"
+msgstr ""
+
+#. 🖮 (U+1F5AE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WIRED_KEYBOARD\n"
+"LngText.text"
+msgid "keyboard2"
+msgstr ""
+
+#. 🖔 (U+1F594), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_VICTORY_HAND\n"
+"LngText.text"
+msgid "victory2"
+msgstr ""
+
+#. 🖧 (U+1F5A7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_NETWORKED_COMPUTERS\n"
+"LngText.text"
+msgid "network"
+msgstr ""
+
+#. 🖪 (U+1F5AA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_HARD_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy4"
+msgstr ""
+
+#. 🗢 (U+1F5E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIPS\n"
+"LngText.text"
+msgid "lips"
+msgstr ""
+
+#. 🖦 (U+1F5A6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KEYBOARD_AND_MOUSE\n"
+"LngText.text"
+msgid "keyboard3"
+msgstr ""
+
+#. 🖣 (U+1F5A3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_DOWN_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "down5"
+msgstr ""
+
+#. 🖡 (U+1F5A1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_DOWN_POINTING_INDEX\n"
+"LngText.text"
+msgid "down6"
+msgstr ""
+
+#. 📾 (U+1F4FE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PORTABLE_STEREO\n"
+"LngText.text"
+msgid "stereo"
+msgstr ""
+
+#. 🏶 (U+1F3F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_ROSETTE\n"
+"LngText.text"
+msgid "rosette2"
+msgstr ""
+
+#. 🏲 (U+1F3F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_PENNANT\n"
+"LngText.text"
+msgid "pennant"
+msgstr ""
+
+#. 🖠 (U+1F5A0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_UP_POINTING_INDEX\n"
+"LngText.text"
+msgid "up4"
+msgstr ""
+
+#. 🖢 (U+1F5A2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_UP_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "up5"
+msgstr ""
+
+#. 🏱 (U+1F3F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_PENNANT\n"
+"LngText.text"
+msgid "pennant2"
+msgstr ""
+
+#. 🕄 (U+1F544), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTCHED_RIGHT_SEMICIRCLE_WITH_THREE_DOTS\n"
+"LngText.text"
+msgid "feast2"
+msgstr ""
+
+#. 🖓 (U+1F593), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_THUMBS_DOWN_SIGN\n"
+"LngText.text"
+msgid "no2"
+msgstr ""
+
+#. 🖑 (U+1F591), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_RAISED_HAND_WITH_FINGERS_SPLAYED\n"
+"LngText.text"
+msgid "hand3"
+msgstr ""
+
+#. 🖒 (U+1F592), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_THUMBS_UP_SIGN\n"
+"LngText.text"
+msgid "yes2"
+msgstr ""
+
+#. 🕩 (U+1F569), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER_WITH_ONE_SOUND_WAVE\n"
+"LngText.text"
+msgid "speaker2"
+msgstr ""
+
+#. 🕆 (U+1F546), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_LATIN_CROSS\n"
+"LngText.text"
+msgid "Latin cross2"
+msgstr ""
+
+#. 🕇 (U+1F547), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEAVY_LATIN_CROSS\n"
+"LngText.text"
+msgid "Latin cross3"
+msgstr ""
+
+#. 🕨 (U+1F568), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER\n"
+"LngText.text"
+msgid "speaker3"
+msgstr ""
+
+#. 🕭 (U+1F56D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RINGING_BELL\n"
+"LngText.text"
+msgid "bell3"
+msgstr ""
+
+#. 🌣 (U+1F323), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN\n"
+"LngText.text"
+msgid "sun2"
+msgstr ""
+
+#. 🛇 (U+1F6C7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PROHIBITED_SIGN\n"
+"LngText.text"
+msgid "prohibited"
+msgstr ""
+
+#. 🛆 (U+1F6C6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TRIANGLE_WITH_ROUNDED_CORNERS\n"
+"LngText.text"
+msgid "triangle3"
+msgstr ""
+
+#. 🗫 (U+1F5EB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_SPEECH_BUBBLES\n"
+"LngText.text"
+msgid "bubble3"
+msgstr ""
+
+#. 🕪 (U+1F56A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER_WITH_THREE_SOUND_WAVES\n"
+"LngText.text"
+msgid "speaker4"
+msgstr ""
+
+#. 🗮 (U+1F5EE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_ANGER_BUBBLE\n"
+"LngText.text"
+msgid "bubble8"
+msgstr ""
+
+#. 🗧 (U+1F5E7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_RIGHT\n"
+"LngText.text"
+msgid "rays4"
+msgstr ""
+
+#. 🗲 (U+1F5F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHTNING_MOOD\n"
+"LngText.text"
+msgid "lightning2"
+msgstr ""
+
+#. 🗰 (U+1F5F0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOOD_BUBBLE\n"
+"LngText.text"
+msgid "bubble9"
+msgstr ""
+
+#. 🗹 (U+1F5F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BOLD_CHECK\n"
+"LngText.text"
+msgid "checkbox5"
+msgstr ""
+
+#. 🗴 (U+1F5F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_SCRIPT_X\n"
+"LngText.text"
+msgid "check mark4"
+msgstr ""
+
+#. 🗪 (U+1F5EA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TWO_SPEECH_BUBBLES\n"
+"LngText.text"
+msgid "bubble2"
+msgstr ""
+
+#. 🗶 (U+1F5F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOLD_SCRIPT_X\n"
+"LngText.text"
+msgid "x4"
+msgstr ""
+
+#. 🗩 (U+1F5E9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEECH_BUBBLE\n"
+"LngText.text"
+msgid "bubble10"
+msgstr ""
+
+#. 🗵 (U+1F5F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_SCRIPT_X\n"
+"LngText.text"
+msgid "checkbox6"
+msgstr ""
+
+#. 🗸 (U+1F5F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHT_CHECK_MARK\n"
+"LngText.text"
+msgid "check mark5"
+msgstr ""
+
+#. 🤗 (U+1F917), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HUGGING_FACE\n"
+"LngText.text"
+msgid "hugging"
+msgstr ""
+
+#. 🤔 (U+1F914), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THINKING_FACE\n"
+"LngText.text"
+msgid "thinking"
+msgstr ""
+
+#. 🙄 (U+1F644), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_ROLLING_EYES\n"
+"LngText.text"
+msgid "eye roll"
+msgstr ""
+
+#. 🤐 (U+1F910), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZIPPER-MOUTH_FACE\n"
+"LngText.text"
+msgid "zipper"
+msgstr ""
+
+#. 🙃 (U+1F643), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UPSIDE-DOWN_FACE\n"
+"LngText.text"
+msgid "upside-down"
+msgstr ""
+
+#. 🤑 (U+1F911), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MONEY-MOUTH_FACE\n"
+"LngText.text"
+msgid "money3"
+msgstr ""
+
+#. 🤒 (U+1F912), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_THERMOMETER\n"
+"LngText.text"
+msgid "thermometer2"
+msgstr ""
+
+#. 🤕 (U+1F915), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_HEAD-BANDAGE\n"
+"LngText.text"
+msgid "bandage"
+msgstr ""
+
+#. 🤓 (U+1F913), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NERD_FACE\n"
+"LngText.text"
+msgid "nerd"
+msgstr ""
+
+#. 🤖 (U+1F916), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROBOT_FACE\n"
+"LngText.text"
+msgid "robot"
+msgstr ""
+
+#. 🏻 (U+1F3FB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-1-2\n"
+"LngText.text"
+msgid "skin1"
+msgstr ""
+
+#. 🏼 (U+1F3FC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-3\n"
+"LngText.text"
+msgid "skin2"
+msgstr ""
+
+#. 🏽 (U+1F3FD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-4\n"
+"LngText.text"
+msgid "skin3"
+msgstr ""
+
+#. 🏾 (U+1F3FE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-5\n"
+"LngText.text"
+msgid "skin4"
+msgstr ""
+
+#. 🏿 (U+1F3FF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-6\n"
+"LngText.text"
+msgid "skin5"
+msgstr ""
+
+#. 🤘 (U+1F918), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIGN_OF_THE_HORNS\n"
+"LngText.text"
+msgid "horns"
+msgstr ""
+
+#. 📿 (U+1F4FF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRAYER_BEADS\n"
+"LngText.text"
+msgid "beads"
+msgstr ""
+
+#. 🦁 (U+1F981), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LION_FACE\n"
+"LngText.text"
+msgid "lion"
+msgstr ""
+
+#. 🦄 (U+1F984), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UNICORN_FACE\n"
+"LngText.text"
+msgid "unicorn"
+msgstr ""
+
+#. 🦃 (U+1F983), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TURKEY\n"
+"LngText.text"
+msgid "turkey"
+msgstr ""
+
+#. 🦀 (U+1F980), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRAB\n"
+"LngText.text"
+msgid "crab"
+msgstr ""
+
+#. 🦂 (U+1F982), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCORPION\n"
+"LngText.text"
+msgid "scorpion"
+msgstr ""
+
+#. 🧀 (U+1F9C0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHEESE_WEDGE\n"
+"LngText.text"
+msgid "cheese"
+msgstr ""
+
+#. 🌭 (U+1F32D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOT_DOG\n"
+"LngText.text"
+msgid "hot dog"
+msgstr ""
+
+#. 🌮 (U+1F32E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TACO\n"
+"LngText.text"
+msgid "taco"
+msgstr ""
+
+#. 🌯 (U+1F32F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BURRITO\n"
+"LngText.text"
+msgid "burrito"
+msgstr ""
+
+#. 🍿 (U+1F37F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POPCORN\n"
+"LngText.text"
+msgid "popcorn"
+msgstr ""
+
+#. 🍾 (U+1F37E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOTTLE_WITH_POPPING_CORK\n"
+"LngText.text"
+msgid "party4"
+msgstr ""
+
+#. 🏺 (U+1F3FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AMPHORA\n"
+"LngText.text"
+msgid "amphora"
+msgstr ""
+
+#. 🕌 (U+1F54C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOSQUE\n"
+"LngText.text"
+msgid "mosque"
+msgstr ""
+
+#. 🕍 (U+1F54D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SYNAGOGUE\n"
+"LngText.text"
+msgid "synagogue"
+msgstr ""
+
+#. 🕋 (U+1F54B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KAABA\n"
+"LngText.text"
+msgid "Kaaba"
+msgstr ""
+
+#. 🏐 (U+1F3D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"VOLLEYBALL\n"
+"LngText.text"
+msgid "volleyball"
+msgstr ""
+
+#. 🏏 (U+1F3CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRICKET_BAT_AND_BALL\n"
+"LngText.text"
+msgid "cricket"
+msgstr ""
+
+#. 🏑 (U+1F3D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FIELD_HOCKEY_STICK_AND_BALL\n"
+"LngText.text"
+msgid "hockey2"
+msgstr ""
+
+#. 🏒 (U+1F3D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ICE_HOCKEY_STICK_AND_PUCK\n"
+"LngText.text"
+msgid "hockey"
+msgstr ""
+
+#. 🏓 (U+1F3D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TABLE_TENNIS_PADDLE_AND_BALL\n"
+"LngText.text"
+msgid "ping pong"
+msgstr ""
+
+#. 🏸 (U+1F3F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BADMINTON_RACQUET_AND_SHUTTLECOCK\n"
+"LngText.text"
+msgid "badminton"
+msgstr ""
+
+#. 🏹 (U+1F3F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOW_AND_ARROW\n"
+"LngText.text"
+msgid "bow"
+msgstr ""
+
+#. 🛐 (U+1F6D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PLACE_OF_WORSHIP\n"
+"LngText.text"
+msgid "worship"
+msgstr ""
+
+#. 🕎 (U+1F54E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MENORAH_WITH_NINE_BRANCHES\n"
+"LngText.text"
+msgid "menorah"
+msgstr ""
+
+#. 🤣 (U+1F923), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROLLING_ON_THE_FLOOR_LAUGHING\n"
+"LngText.text"
+msgid "lol"
+msgstr ""
+
+#. 🤤 (U+1F924), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DROOLING_FACE\n"
+"LngText.text"
+msgid "drool"
+msgstr ""
+
+#. 🤢 (U+1F922), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NAUSEATED_FACE\n"
+"LngText.text"
+msgid "nausea"
+msgstr ""
+
+#. 🤧 (U+1F927), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SNEEZING_FACE\n"
+"LngText.text"
+msgid "sneeze"
+msgstr ""
+
+#. 🤠 (U+1F920), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COWBOY_HAT_FACE\n"
+"LngText.text"
+msgid "cowboy"
+msgstr ""
+
+#. 🤡 (U+1F921), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOWN_FACE\n"
+"LngText.text"
+msgid "clown"
+msgstr ""
+
+#. 🤥 (U+1F925), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LYING_FACE\n"
+"LngText.text"
+msgid "liar"
+msgstr ""
+
+#. 🤴 (U+1F934), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINCE\n"
+"LngText.text"
+msgid "prince"
+msgstr ""
+
+#. 🤵 (U+1F935), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_IN_TUXEDO\n"
+"LngText.text"
+msgid "groom"
+msgstr ""
+
+#. 🤰 (U+1F930), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PREGNANT_WOMAN\n"
+"LngText.text"
+msgid "pregnant"
+msgstr ""
+
+#. 🤶 (U+1F936), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MRS._CLAUS\n"
+"LngText.text"
+msgid "mrs. claus"
+msgstr ""
+
+#. 🤦 (U+1F926), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_FACEPALMING\n"
+"LngText.text"
+msgid "facepalm"
+msgstr ""
+
+#. 🤷 (U+1F937), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_SHRUGGING\n"
+"LngText.text"
+msgid "shrugging"
+msgstr ""
+
+#. 🕺 (U+1F57A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_DANCING\n"
+"LngText.text"
+msgid "dancer2"
+msgstr ""
+
+#. 🤺 (U+1F93A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_FENCING\n"
+"LngText.text"
+msgid "fencer"
+msgstr ""
+
+#. 🤸 (U+1F938), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_CARTWHEELING\n"
+"LngText.text"
+msgid "gymnast"
+msgstr ""
+
+#. 🤼 (U+1F93C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEOPLE_WRESTLING\n"
+"LngText.text"
+msgid "wrestling"
+msgstr ""
+
+#. 🤽 (U+1F93D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_PLAYING_WATER_POLO\n"
+"LngText.text"
+msgid "water polo"
+msgstr ""
+
+#. 🤾 (U+1F93E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_PLAYING_HANDBALL\n"
+"LngText.text"
+msgid "handball"
+msgstr ""
+
+#. 🤹 (U+1F939), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_JUGGLING\n"
+"LngText.text"
+msgid "juggling"
+msgstr ""
+
+#. 🤳 (U+1F933), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SELFIE\n"
+"LngText.text"
+msgid "selfie"
+msgstr ""
+
+#. 🤞 (U+1F91E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CROSSED_FINGERS\n"
+"LngText.text"
+msgid "good luck"
+msgstr ""
+
+#. 🤙 (U+1F919), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CALL_ME_HAND\n"
+"LngText.text"
+msgid "call"
+msgstr ""
+
+#. 🤛 (U+1F91B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT-FACING_FIST\n"
+"LngText.text"
+msgid "fist3"
+msgstr ""
+
+#. 🤜 (U+1F91C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT-FACING_FIST\n"
+"LngText.text"
+msgid "fist4"
+msgstr ""
+
+#. 🤚 (U+1F91A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_BACK_OF_HAND\n"
+"LngText.text"
+msgid "hand4"
+msgstr ""
+
+#. 🤝 (U+1F91D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HANDSHAKE\n"
+"LngText.text"
+msgid "handshake"
+msgstr ""
+
+#. 🖤 (U+1F5A4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_HEART\n"
+"LngText.text"
+msgid "black heart"
+msgstr ""
+
+#. 🦍 (U+1F98D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GORILLA\n"
+"LngText.text"
+msgid "gorilla"
+msgstr ""
+
+#. 🦊 (U+1F98A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOX_FACE\n"
+"LngText.text"
+msgid "fox"
+msgstr ""
+
+#. 🦌 (U+1F98C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DEER\n"
+"LngText.text"
+msgid "deer"
+msgstr ""
+
+#. 🦏 (U+1F98F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RHINOCEROS\n"
+"LngText.text"
+msgid "rhinoceros"
+msgstr ""
+
+#. 🦇 (U+1F987), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BAT\n"
+"LngText.text"
+msgid "bat"
+msgstr ""
+
+#. 🦅 (U+1F985), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EAGLE\n"
+"LngText.text"
+msgid "eagle"
+msgstr ""
+
+#. 🦆 (U+1F986), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DUCK\n"
+"LngText.text"
+msgid "duck"
+msgstr ""
+
+#. 🦉 (U+1F989), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OWL\n"
+"LngText.text"
+msgid "owl"
+msgstr ""
+
+#. 🦎 (U+1F98E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIZARD\n"
+"LngText.text"
+msgid "lizard"
+msgstr ""
+
+#. 🦈 (U+1F988), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHARK\n"
+"LngText.text"
+msgid "shark"
+msgstr ""
+
+#. 🦐 (U+1F990), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHRIMP\n"
+"LngText.text"
+msgid "shrimp"
+msgstr ""
+
+#. 🦑 (U+1F991), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SQUID\n"
+"LngText.text"
+msgid "squid"
+msgstr ""
+
+#. 🦋 (U+1F98B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BUTTERFLY\n"
+"LngText.text"
+msgid "butterfly"
+msgstr ""
+
+#. 🥀 (U+1F940), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WILTED_FLOWER\n"
+"LngText.text"
+msgid "flower2"
+msgstr ""
+
+#. 🥝 (U+1F95D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KIWI_FRUIT\n"
+"LngText.text"
+msgid "kiwi"
+msgstr ""
+
+#. 🥑 (U+1F951), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AVOCADO\n"
+"LngText.text"
+msgid "avocado"
+msgstr ""
+
+#. 🥔 (U+1F954), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POTATO\n"
+"LngText.text"
+msgid "potato"
+msgstr ""
+
+#. 🥕 (U+1F955), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARROT\n"
+"LngText.text"
+msgid "carrot"
+msgstr ""
+
+#. 🥒 (U+1F952), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUCUMBER\n"
+"LngText.text"
+msgid "cucumber"
+msgstr ""
+
+#. 🥜 (U+1F95C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEANUTS\n"
+"LngText.text"
+msgid "peanuts"
+msgstr ""
+
+#. 🥐 (U+1F950), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CROISSANT\n"
+"LngText.text"
+msgid "croissant"
+msgstr ""
+
+#. 🥖 (U+1F956), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BAGUETTE_BREAD\n"
+"LngText.text"
+msgid "bread2"
+msgstr ""
+
+#. 🥞 (U+1F95E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PANCAKES\n"
+"LngText.text"
+msgid "pancakes"
+msgstr ""
+
+#. 🥓 (U+1F953), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BACON\n"
+"LngText.text"
+msgid "bacon"
+msgstr ""
+
+#. 🥙 (U+1F959), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STUFFED_FLATBREAD\n"
+"LngText.text"
+msgid "flatbread"
+msgstr ""
+
+#. 🥚 (U+1F95A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EGG\n"
+"LngText.text"
+msgid "egg"
+msgstr ""
+
+#. 🥘 (U+1F958), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHALLOW_PAN_OF_FOOD\n"
+"LngText.text"
+msgid "food"
+msgstr ""
+
+#. 🥗 (U+1F957), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GREEN_SALAD\n"
+"LngText.text"
+msgid "salad"
+msgstr ""
+
+#. 🥛 (U+1F95B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GLASS_OF_MILK\n"
+"LngText.text"
+msgid "milk"
+msgstr ""
+
+#. 🥂 (U+1F942), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLINKING_GLASSES\n"
+"LngText.text"
+msgid "party3"
+msgstr ""
+
+#. 🥃 (U+1F943), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TUMBLER_GLASS\n"
+"LngText.text"
+msgid "glass3"
+msgstr ""
+
+#. 🥄 (U+1F944), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPOON\n"
+"LngText.text"
+msgid "spoon"
+msgstr ""
+
+#. 🛴 (U+1F6F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCOOTER\n"
+"LngText.text"
+msgid "scooter"
+msgstr ""
+
+#. 🛵 (U+1F6F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTOR_SCOOTER\n"
+"LngText.text"
+msgid "scooter2"
+msgstr ""
+
+#. 🛑 (U+1F6D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OCTAGONAL_SIGN\n"
+"LngText.text"
+msgid "stop"
+msgstr ""
+
+#. 🛶 (U+1F6F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANOE\n"
+"LngText.text"
+msgid "canoe"
+msgstr ""
+
+#. 🥇 (U+1F947), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"1ST_PLACE_MEDAL\n"
+"LngText.text"
+msgid "gold"
+msgstr ""
+
+#. 🥈 (U+1F948), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"2ND_PLACE_MEDAL\n"
+"LngText.text"
+msgid "silver"
+msgstr ""
+
+#. 🥉 (U+1F949), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"3RD_PLACE_MEDAL\n"
+"LngText.text"
+msgid "bronze"
+msgstr ""
+
+#. 🥊 (U+1F94A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOXING_GLOVE\n"
+"LngText.text"
+msgid "boxing"
+msgstr ""
+
+#. 🥋 (U+1F94B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MARTIAL_ARTS_UNIFORM\n"
+"LngText.text"
+msgid "judo"
+msgstr ""
+
+#. 🥅 (U+1F945), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GOAL_NET\n"
+"LngText.text"
+msgid "soccer2"
+msgstr ""
+
+#. 🥁 (U+1F941), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DRUM_WITH_DRUMSTICKS\n"
+"LngText.text"
+msgid "drum2"
+msgstr ""
+
+#. 🛒 (U+1F6D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOPPING_TROLLEY\n"
+"LngText.text"
+msgid "cart"
+msgstr ""
+
+#. 🤩 (U+1F929), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GRINNING_FACE_WITH_STAR_EYES\n"
+"LngText.text"
+msgid "excited"
+msgstr ""
+
+#. 🤨 (U+1F928), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_ONE_EYEBROW_RAISED\n"
+"LngText.text"
+msgid "eyebrow"
+msgstr ""
+
+#. 🤯 (U+1F92F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOCKED_FACE_WITH_EXPLODING_HEAD\n"
+"LngText.text"
+msgid "shocked"
+msgstr ""
+
+#. 🤪 (U+1F92A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GRINNING_FACE_WITH_ONE_LARGE_AND_ONE_SMALL_EYE\n"
+"LngText.text"
+msgid "zany"
+msgstr ""
+
+#. 🤬 (U+1F92C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SERIOUS_FACE_WITH_SYMBOLS_COVERING_MOUTH\n"
+"LngText.text"
+msgid "cursing"
+msgstr ""
+
+#. 🤮 (U+1F92E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_OPEN_MOUTH_VOMITING\n"
+"LngText.text"
+msgid "vomit"
+msgstr ""
+
+#. 🤫 (U+1F92B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_FINGER_COVERING_CLOSED_LIPS\n"
+"LngText.text"
+msgid "hush"
+msgstr ""
+
+#. 🤭 (U+1F92D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SMILING_FACE_WITH_SMILING_EYES_AND_HAND_COVERING_MOUTH\n"
+"LngText.text"
+msgid "smiling4"
+msgstr ""
+
+#. 🧐 (U+1F9D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_MONOCLE\n"
+"LngText.text"
+msgid "monocle"
+msgstr ""
+
+#. 🧒 (U+1F9D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHILD\n"
+"LngText.text"
+msgid "child"
+msgstr ""
+
+#. 🧑 (U+1F9D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ADULT\n"
+"LngText.text"
+msgid "adult"
+msgstr ""
+
+#. 🧓 (U+1F9D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLDER_ADULT\n"
+"LngText.text"
+msgid "old"
+msgstr ""
+
+#. 🧕 (U+1F9D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_WITH_HEADSCARF\n"
+"LngText.text"
+msgid "headscarf"
+msgstr ""
+
+#. 🧔 (U+1F9D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEARDED_PERSON\n"
+"LngText.text"
+msgid "beard"
+msgstr ""
+
+#. 🤱 (U+1F931), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BREAST-FEEDING\n"
+"LngText.text"
+msgid "baby3"
+msgstr ""
+
+#. 🧙 (U+1F9D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAGE\n"
+"LngText.text"
+msgid "mage"
+msgstr ""
+
+#. 🧚 (U+1F9DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FAIRY\n"
+"LngText.text"
+msgid "fairy"
+msgstr ""
+
+#. 🧛 (U+1F9DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"VAMPIRE\n"
+"LngText.text"
+msgid "vampire"
+msgstr ""
+
+#. 🧜 (U+1F9DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MERPERSON\n"
+"LngText.text"
+msgid "merperson"
+msgstr ""
+
+#. 🧝 (U+1F9DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ELF\n"
+"LngText.text"
+msgid "elf"
+msgstr ""
+
+#. 🧞 (U+1F9DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GENIE\n"
+"LngText.text"
+msgid "genie"
+msgstr ""
+
+#. 🧟 (U+1F9DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZOMBIE\n"
+"LngText.text"
+msgid "zombie"
+msgstr ""
+
+#. 🧖 (U+1F9D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_IN_STEAMY_ROOM\n"
+"LngText.text"
+msgid "sauna"
+msgstr ""
+
+#. 🧗 (U+1F9D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_CLIMBING\n"
+"LngText.text"
+msgid "climber"
+msgstr ""
+
+#. 🧘 (U+1F9D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_IN_LOTUS_POSITION\n"
+"LngText.text"
+msgid "yoga"
+msgstr ""
+
+#. 🤟 (U+1F91F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"I_LOVE_YOU_HAND_SIGN\n"
+"LngText.text"
+msgid "love2"
+msgstr ""
+
+#. 🤲 (U+1F932), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PALMS_UP_TOGETHER\n"
+"LngText.text"
+msgid "palm2"
+msgstr ""
+
+#. 🧠 (U+1F9E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BRAIN\n"
+"LngText.text"
+msgid "brain"
+msgstr ""
+
+#. 🧡 (U+1F9E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ORANGE_HEART\n"
+"LngText.text"
+msgid "orange heart"
+msgstr ""
+
+#. 🧣 (U+1F9E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCARF\n"
+"LngText.text"
+msgid "scarf"
+msgstr ""
+
+#. 🧤 (U+1F9E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GLOVES\n"
+"LngText.text"
+msgid "gloves"
+msgstr ""
+
+#. 🧥 (U+1F9E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COAT\n"
+"LngText.text"
+msgid "coat"
+msgstr ""
+
+#. 🧦 (U+1F9E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SOCKS\n"
+"LngText.text"
+msgid "socks"
+msgstr ""
+
+#. 🧢 (U+1F9E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BILLED_CAP\n"
+"LngText.text"
+msgid "cap"
+msgstr ""
+
+#. 🦓 (U+1F993), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZEBRA\n"
+"LngText.text"
+msgid "zebra"
+msgstr ""
+
+#. 🦒 (U+1F992), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GIRAFFE\n"
+"LngText.text"
+msgid "giraffe"
+msgstr ""
+
+#. 🦔 (U+1F994), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEDGEHOG\n"
+"LngText.text"
+msgid "hedgehog"
+msgstr ""
+
+#. 🦕 (U+1F995), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SAUROPOD\n"
+"LngText.text"
+msgid "dinosaur"
+msgstr ""
+
+#. 🦖 (U+1F996), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"T-REX\n"
+"LngText.text"
+msgid "dinosaur2"
+msgstr ""
+
+#. 🦗 (U+1F997), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRICKET\n"
+"LngText.text"
+msgid "cricket2"
+msgstr ""
+
+#. 🥥 (U+1F965), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COCONUT\n"
+"LngText.text"
+msgid "coconut"
+msgstr ""
+
+#. 🥦 (U+1F966), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BROCCOLI\n"
+"LngText.text"
+msgid "broccoli"
+msgstr ""
+
+#. 🥨 (U+1F968), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRETZEL\n"
+"LngText.text"
+msgid "pretzel"
+msgstr ""
+
+#. 🥩 (U+1F969), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUT_OF_MEAT\n"
+"LngText.text"
+msgid "steak"
+msgstr ""
+
+#. 🥪 (U+1F96A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SANDWICH\n"
+"LngText.text"
+msgid "sandwich"
+msgstr ""
+
+#. 🥣 (U+1F963), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOWL_WITH_SPOON\n"
+"LngText.text"
+msgid "bowl"
+msgstr ""
+
+#. 🥫 (U+1F96B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANNED_FOOD\n"
+"LngText.text"
+msgid "can"
+msgstr ""
+
+#. 🥟 (U+1F95F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DUMPLING\n"
+"LngText.text"
+msgid "dumpling"
+msgstr ""
+
+#. 🥠 (U+1F960), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FORTUNE_COOKIE\n"
+"LngText.text"
+msgid "cookie2"
+msgstr ""
+
+#. 🥡 (U+1F961), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TAKEOUT_BOX\n"
+"LngText.text"
+msgid "takeout"
+msgstr ""
+
+#. 🥧 (U+1F967), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PIE\n"
+"LngText.text"
+msgid "pie"
+msgstr ""
+
+#. 🥤 (U+1F964), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUP_WITH_STRAW\n"
+"LngText.text"
+msgid "drink"
+msgstr ""
+
+#. 🥢 (U+1F962), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHOPSTICKS\n"
+"LngText.text"
+msgid "chopsticks"
+msgstr ""
+
+#. 🛸 (U+1F6F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FLYING_SAUCER\n"
+"LngText.text"
+msgid "ufo"
+msgstr ""
+
+#. 🛷 (U+1F6F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLED\n"
+"LngText.text"
+msgid "sled"
+msgstr ""
+
+#. 🥌 (U+1F94C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CURLING_STONE\n"
+"LngText.text"
+msgid "curling"
+msgstr ""
+
+#. ₿ (U+20BF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BITCOIN_SIGN\n"
+"LngText.text"
+msgid "bitcoin"
+msgstr ""
+
#. ½ (U+000BD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
msgctxt ""
diff --git a/source/an/officecfg/registry/data/org/openoffice/Office/UI.po b/source/an/officecfg/registry/data/org/openoffice/Office/UI.po
index fd65063d826..bcb1b8c6377 100644
--- a/source/an/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/an/officecfg/registry/data/org/openoffice/Office/UI.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: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2016-12-01 17:10+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2992,14 +2992,13 @@ msgid "S~how Columns"
msgstr "Mostrar columnas"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:Hide\n"
"Label\n"
"value.text"
-msgid "~Hide Sheets"
-msgstr "Amagar fuellas"
+msgid "~Hide Sheet"
+msgstr ""
#: CalcCommands.xcu
#, fuzzy
@@ -3796,24 +3795,13 @@ msgid "Delete Decimal Place"
msgstr ""
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:EditLinks\n"
"Label\n"
"value.text"
-msgid "Edit Lin~ks..."
-msgstr "Editar vinclos..."
-
-#: CalcCommands.xcu
-#, fuzzy
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:EditLinks\n"
-"ContextLabel\n"
-"value.text"
-msgid "Lin~ks..."
-msgstr "Vinclos..."
+msgid "Lin~ks to External Files..."
+msgstr ""
#: CalcCommands.xcu
#, fuzzy
@@ -7418,16 +7406,6 @@ msgstr "Diapositiva"
#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Commands..uno:SlideNavigateMenu\n"
-"Label\n"
-"value.text"
-msgid "Navigate"
-msgstr "Navegar"
-
-#: DrawImpressCommands.xcu
-#, fuzzy
-msgctxt ""
-"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:SlideMoveMenu\n"
"Label\n"
"value.text"
@@ -8082,6 +8060,15 @@ msgstr "Numero de página"
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlideField\n"
+"Label\n"
+"value.text"
+msgid "~Slide Number"
+msgstr ""
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:InsertPageTitleField\n"
"Label\n"
"value.text"
@@ -8089,6 +8076,15 @@ msgid "Page Tit~le"
msgstr ""
#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlideTitleField\n"
+"Label\n"
+"value.text"
+msgid "Slide Tit~le"
+msgstr ""
+
+#: DrawImpressCommands.xcu
#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
@@ -8099,6 +8095,15 @@ msgid "Page ~Count"
msgstr "Total de pachinas"
#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlidesField\n"
+"Label\n"
+"value.text"
+msgid "Slide ~Count"
+msgstr ""
+
+#: DrawImpressCommands.xcu
#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
@@ -8335,14 +8340,13 @@ msgid "Duplicat~e..."
msgstr "Duplicar..."
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:ManageLinks\n"
"Label\n"
"value.text"
-msgid "Lin~ks..."
-msgstr "Vinclos..."
+msgid "Lin~ks to External Files..."
+msgstr ""
#: DrawImpressCommands.xcu
#, fuzzy
@@ -8439,7 +8443,7 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:ImportSlideFromFile\n"
"Label\n"
"value.text"
-msgid "Import Slides..."
+msgid "Insert Slide from File..."
msgstr ""
#: DrawImpressCommands.xcu
@@ -9759,6 +9763,15 @@ msgid "P~age Number..."
msgstr "Numero de página..."
#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Popups..uno:InsertSlideNumber\n"
+"Label\n"
+"value.text"
+msgid "S~lide Number..."
+msgstr ""
+
+#: DrawImpressCommands.xcu
#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
@@ -18893,14 +18906,13 @@ msgid "H~alf-width"
msgstr "Metat de l'amplo"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:InsertDoc\n"
"Label\n"
"value.text"
-msgid "Doc~ument..."
-msgstr "Documento..."
+msgid "Text from File..."
+msgstr ""
#: GenericCommands.xcu
#, fuzzy
@@ -19090,6 +19102,15 @@ msgid "Show the Styles Sidebar"
msgstr ""
#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ViewSidebarStyles\n"
+"Label\n"
+"value.text"
+msgid "Styles"
+msgstr ""
+
+#: GenericCommands.xcu
#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
@@ -20829,24 +20850,6 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
-"Label\n"
-"value.text"
-msgid "Charmap"
-msgstr ""
-
-#: GenericCommands.xcu
-msgctxt ""
-"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
-"TooltipLabel\n"
-"value.text"
-msgid "Insert Special Characters"
-msgstr ""
-
-#: GenericCommands.xcu
-msgctxt ""
-"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:TransformRotationX\n"
"Label\n"
"value.text"
@@ -22102,6 +22105,33 @@ msgid "Insert Special Character"
msgstr ""
#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"Label\n"
+"value.text"
+msgid "Symbol"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"ContextLabel\n"
+"value.text"
+msgid "S~pecial Character..."
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Insert Special Characters"
+msgstr ""
+
+#: GenericCommands.xcu
#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
@@ -22153,6 +22183,15 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ExportAsMenu\n"
+"Label\n"
+"value.text"
+msgid "~Export As"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportToPDF\n"
"Label\n"
"value.text"
@@ -22218,14 +22257,13 @@ msgid "EPUB"
msgstr ""
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportToEPUB\n"
"ContextLabel\n"
"value.text"
-msgid "~Export as EPUB..."
-msgstr "Exportar en formato PDF..."
+msgid "Export as E~PUB..."
+msgstr ""
#: GenericCommands.xcu
#, fuzzy
@@ -24780,6 +24818,15 @@ msgctxt ""
msgid "~Restart in Safe Mode..."
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:NavigateMenu\n"
+"Label\n"
+"value.text"
+msgid "Navigate"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27545,14 +27592,13 @@ msgid "Run AutoText Entry"
msgstr "Executar dentrada AutoTexto"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:ShowHiddenParagraphs\n"
"Label\n"
"value.text"
-msgid "~Hidden Paragraphs"
-msgstr "Párrafos amagaus"
+msgid "Field ~Hidden Paragraphs"
+msgstr ""
#: WriterCommands.xcu
#, fuzzy
@@ -29656,14 +29702,13 @@ msgid "F~ields..."
msgstr "Campos..."
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:LinkDialog\n"
"Label\n"
"value.text"
-msgid "Lin~ks..."
-msgstr "Vinclos..."
+msgid "Lin~ks to External Files..."
+msgstr ""
#: WriterCommands.xcu
#, fuzzy
@@ -32594,7 +32639,7 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 1&amp;FamilyName:string=NumberingStyles\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 123&amp;FamilyName:string=NumberingStyles\n"
"Label\n"
"value.text"
msgid "Number List"
@@ -32621,10 +32666,64 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 4&amp;FamilyName:string=NumberingStyles\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering ABC&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Uppercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaListStyle\n"
"Label\n"
"value.text"
-msgid "Roman List"
+msgid "Alphabet Uppercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Alphabet Uppercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering abc&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaLowListStyle\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaLowListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Alphabet Lowercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering IVX&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Roman Uppercase List"
msgstr ""
#: WriterCommands.xcu
@@ -32633,7 +32732,7 @@ msgctxt ""
"..WriterCommands.UserInterface.Popups..uno:RomanListStyle\n"
"Label\n"
"value.text"
-msgid "Roman List"
+msgid "Roman Uppercase List"
msgstr ""
#: WriterCommands.xcu
@@ -32642,7 +32741,34 @@ msgctxt ""
"..WriterCommands.UserInterface.Popups..uno:RomanListStyle\n"
"TooltipLabel\n"
"value.text"
-msgid "Roman List Style"
+msgid "Roman Uppercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering ivx&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Roman Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:RomanLowListStyle\n"
+"Label\n"
+"value.text"
+msgid "Roman Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:RomanLowListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Roman Lowercase List Style"
msgstr ""
#: WriterCommands.xcu
diff --git a/source/an/sd/messages.po b/source/an/sd/messages.po
index ae25f92864e..97e4f8130ed 100644
--- a/source/an/sd/messages.po
+++ b/source/an/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 15:29+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1578,897 +1578,907 @@ msgid "Master Slide"
msgstr ""
#: strings.hrc:287
+msgctxt "STR_MASTERSLIDE_LABEL"
+msgid "Master Slide:"
+msgstr ""
+
+#: strings.hrc:288
msgctxt "STR_MASTERPAGE_NAME"
msgid "Master Page"
msgstr ""
-#: strings.hrc:288
+#: strings.hrc:289
+msgctxt "STR_MASTERPAGE_LABEL"
+msgid "Master Page:"
+msgstr ""
+
+#: strings.hrc:290
msgctxt "STR_NOTES"
msgid "(Notes)"
msgstr ""
-#: strings.hrc:289
+#: strings.hrc:291
msgctxt "STR_HANDOUT"
msgid "Handouts"
msgstr ""
-#: strings.hrc:290
+#: strings.hrc:292
msgctxt "STR_PRESOBJ_MPTITLE"
msgid "Click to edit the title text format"
msgstr ""
-#: strings.hrc:291
+#: strings.hrc:293
msgctxt "STR_PRESOBJ_MPOUTLINE"
msgid "Click to edit the outline text format"
msgstr ""
-#: strings.hrc:292
+#: strings.hrc:294
msgctxt "STR_PRESOBJ_MPOUTLLAYER2"
msgid "Second Outline Level"
msgstr ""
-#: strings.hrc:293
+#: strings.hrc:295
msgctxt "STR_PRESOBJ_MPOUTLLAYER3"
msgid "Third Outline Level"
msgstr ""
-#: strings.hrc:294
+#: strings.hrc:296
msgctxt "STR_PRESOBJ_MPOUTLLAYER4"
msgid "Fourth Outline Level"
msgstr ""
-#: strings.hrc:295
+#: strings.hrc:297
msgctxt "STR_PRESOBJ_MPOUTLLAYER5"
msgid "Fifth Outline Level"
msgstr ""
-#: strings.hrc:296
+#: strings.hrc:298
msgctxt "STR_PRESOBJ_MPOUTLLAYER6"
msgid "Sixth Outline Level"
msgstr ""
-#: strings.hrc:297
+#: strings.hrc:299
msgctxt "STR_PRESOBJ_MPOUTLLAYER7"
msgid "Seventh Outline Level"
msgstr ""
-#: strings.hrc:298
+#: strings.hrc:300
msgctxt "STR_PRESOBJ_MPNOTESTITLE"
msgid "Click to move the slide"
msgstr ""
-#: strings.hrc:299
+#: strings.hrc:301
msgctxt "STR_PRESOBJ_MPNOTESTEXT"
msgid "Click to edit the notes format"
msgstr ""
-#: strings.hrc:300
+#: strings.hrc:302
msgctxt "STR_PRESOBJ_TITLE"
msgid "Click to add Title"
msgstr ""
-#: strings.hrc:301
+#: strings.hrc:303
msgctxt "STR_PRESOBJ_OUTLINE"
msgid "Click to add Text"
msgstr ""
-#: strings.hrc:302
+#: strings.hrc:304
msgctxt "STR_PRESOBJ_TEXT"
msgid "Click to add Text"
msgstr ""
-#: strings.hrc:303
+#: strings.hrc:305
msgctxt "STR_PRESOBJ_NOTESTEXT"
msgid "Click to add Notes"
msgstr ""
-#: strings.hrc:304
+#: strings.hrc:306
msgctxt "STR_PRESOBJ_GRAPHIC"
msgid "Double-click to add an Image"
msgstr ""
-#: strings.hrc:305
+#: strings.hrc:307
msgctxt "STR_PRESOBJ_OBJECT"
msgid "Double-click to add an Object"
msgstr ""
-#: strings.hrc:306
+#: strings.hrc:308
msgctxt "STR_PRESOBJ_CHART"
msgid "Double-click to add a Chart"
msgstr ""
-#: strings.hrc:307
+#: strings.hrc:309
msgctxt "STR_PRESOBJ_ORGCHART"
msgid "Double-click to add an Organization Chart"
msgstr ""
-#: strings.hrc:308
+#: strings.hrc:310
msgctxt "STR_PRESOBJ_TABLE"
msgid "Double-click to add a Spreadsheet"
msgstr ""
-#: strings.hrc:309
+#: strings.hrc:311
#, fuzzy
msgctxt "STR_LAYOUT_DEFAULT_NAME"
msgid "Default"
msgstr "Por defecto"
-#: strings.hrc:310
+#: strings.hrc:312
#, fuzzy
msgctxt "STR_LAYOUT_DEFAULT_TITLE_NAME"
msgid "Title"
msgstr "Titol"
-#: strings.hrc:311
+#: strings.hrc:313
#, fuzzy
msgctxt "STR_STANDARD_STYLESHEET_NAME"
msgid "Default"
msgstr "Por defecto"
-#: strings.hrc:312
+#: strings.hrc:314
msgctxt "STR_UNDO_MOVEPAGES"
msgid "Move slides"
msgstr ""
-#: strings.hrc:313
+#: strings.hrc:315
msgctxt "STR_POOLSHEET_MEASURE"
msgid "Dimension Line"
msgstr ""
-#: strings.hrc:314
+#: strings.hrc:316
msgctxt "STR_POOLSHEET_OBJNOLINENOFILL"
msgid "Object with no fill and no line"
msgstr ""
-#: strings.hrc:315
+#: strings.hrc:317
msgctxt "STR_POOLSHEET_OBJWITHARROW"
msgid "Object with arrow"
msgstr ""
-#: strings.hrc:316
+#: strings.hrc:318
msgctxt "STR_POOLSHEET_OBJWITHSHADOW"
msgid "Object with shadow"
msgstr ""
-#: strings.hrc:317
+#: strings.hrc:319
msgctxt "STR_POOLSHEET_OBJWITHOUTFILL"
msgid "Object without fill"
msgstr ""
-#: strings.hrc:318
+#: strings.hrc:320
msgctxt "STR_POOLSHEET_TEXT"
msgid "Text"
msgstr "Texto"
-#: strings.hrc:319
+#: strings.hrc:321
msgctxt "STR_POOLSHEET_TEXTBODY"
msgid "Text body"
msgstr ""
-#: strings.hrc:320
+#: strings.hrc:322
msgctxt "STR_POOLSHEET_TEXTBODY_JUSTIFY"
msgid "Text body justified"
msgstr ""
-#: strings.hrc:321
+#: strings.hrc:323
msgctxt "STR_POOLSHEET_TEXTBODY_INDENT"
msgid "First line indent"
msgstr ""
-#: strings.hrc:322
+#: strings.hrc:324
#, fuzzy
msgctxt "STR_POOLSHEET_TITLE"
msgid "Title"
msgstr "Titol"
-#: strings.hrc:323
+#: strings.hrc:325
#, fuzzy
msgctxt "STR_POOLSHEET_TITLE1"
msgid "Title1"
msgstr "Titol"
-#: strings.hrc:324
+#: strings.hrc:326
#, fuzzy
msgctxt "STR_POOLSHEET_TITLE2"
msgid "Title2"
msgstr "Titol"
-#: strings.hrc:325
+#: strings.hrc:327
msgctxt "STR_POOLSHEET_HEADLINE"
msgid "Heading"
msgstr ""
-#: strings.hrc:326
+#: strings.hrc:328
msgctxt "STR_POOLSHEET_HEADLINE1"
msgid "Heading1"
msgstr ""
-#: strings.hrc:327
+#: strings.hrc:329
msgctxt "STR_POOLSHEET_HEADLINE2"
msgid "Heading2"
msgstr ""
-#: strings.hrc:328
+#: strings.hrc:330
#, fuzzy
msgctxt "STR_PSEUDOSHEET_TITLE"
msgid "Title"
msgstr "Titol"
-#: strings.hrc:329
+#: strings.hrc:331
msgctxt "STR_PSEUDOSHEET_SUBTITLE"
msgid "Subtitle"
msgstr ""
-#: strings.hrc:330
+#: strings.hrc:332
msgctxt "STR_PSEUDOSHEET_OUTLINE"
msgid "Outline"
msgstr ""
-#: strings.hrc:331
+#: strings.hrc:333
msgctxt "STR_PSEUDOSHEET_BACKGROUNDOBJECTS"
msgid "Background objects"
msgstr ""
-#: strings.hrc:332
+#: strings.hrc:334
#, fuzzy
msgctxt "STR_PSEUDOSHEET_BACKGROUND"
msgid "Background"
msgstr "Fundo"
-#: strings.hrc:333
+#: strings.hrc:335
msgctxt "STR_PSEUDOSHEET_NOTES"
msgid "Notes"
msgstr "Notas"
-#: strings.hrc:334
+#: strings.hrc:336
msgctxt "STR_POWERPOINT_IMPORT"
msgid "PowerPoint Import"
msgstr ""
-#: strings.hrc:335
+#: strings.hrc:337
#, fuzzy
msgctxt "STR_SAVE_DOC"
msgid "Save Document"
msgstr "Compartir o documento"
-#: strings.hrc:336
+#: strings.hrc:338
msgctxt "STR_POOLSHEET_BANDED_CELL"
msgid "Banding cell"
msgstr ""
-#: strings.hrc:337
+#: strings.hrc:339
msgctxt "STR_POOLSHEET_HEADER"
msgid "Header"
msgstr "Capitero"
-#: strings.hrc:338
+#: strings.hrc:340
msgctxt "STR_POOLSHEET_TOTAL"
msgid "Total line"
msgstr ""
-#: strings.hrc:339
+#: strings.hrc:341
msgctxt "STR_POOLSHEET_FIRST_COLUMN"
msgid "First column"
msgstr ""
-#: strings.hrc:340
+#: strings.hrc:342
msgctxt "STR_POOLSHEET_LAST_COLUMN"
msgid "Last column"
msgstr ""
-#: strings.hrc:341
+#: strings.hrc:343
msgctxt "STR_ENTER_PIN"
msgid "Enter PIN:"
msgstr ""
-#: strings.hrc:342
+#: strings.hrc:344
msgctxt "STR_DEAUTHORISE_CLIENT"
msgid "Remove client authorisation"
msgstr ""
-#: strings.hrc:343
+#: strings.hrc:345
msgctxt "STR_SHRINK_FONT_SIZE"
msgid "Shrink font size"
msgstr ""
-#: strings.hrc:344
+#: strings.hrc:346
msgctxt "STR_GROW_FONT_SIZE"
msgid "Grow font size"
msgstr ""
#. Names and descriptions of the Draw/Impress accessibility views
#. ==============================================================
-#: strings.hrc:349
+#: strings.hrc:351
msgctxt "SID_SD_A11Y_D_DRAWVIEW_N"
msgid "Drawing View"
msgstr ""
-#: strings.hrc:350
+#: strings.hrc:352
msgctxt "SID_SD_A11Y_D_DRAWVIEW_D"
msgid "This is where you create and edit drawings."
msgstr ""
-#: strings.hrc:351
+#: strings.hrc:353
msgctxt "SID_SD_A11Y_I_DRAWVIEW_N"
msgid "Drawing View"
msgstr ""
-#: strings.hrc:352
+#: strings.hrc:354
msgctxt "SID_SD_A11Y_I_DRAWVIEW_D"
msgid "This is where you create and edit slides."
msgstr ""
-#: strings.hrc:353
+#: strings.hrc:355
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_N"
msgid "Outline View"
msgstr ""
-#: strings.hrc:354
+#: strings.hrc:356
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_D"
msgid "This is where you enter or edit text in list form."
msgstr ""
-#: strings.hrc:355
+#: strings.hrc:357
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_N"
msgid "Slides View"
msgstr ""
-#: strings.hrc:356
+#: strings.hrc:358
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_D"
msgid "This is where you sort slides."
msgstr ""
-#: strings.hrc:357
+#: strings.hrc:359
msgctxt "SID_SD_A11Y_I_NOTESVIEW_N"
msgid "Notes View"
msgstr ""
-#: strings.hrc:358
+#: strings.hrc:360
msgctxt "SID_SD_A11Y_I_NOTESVIEW_D"
msgid "This is where you enter and view notes."
msgstr ""
-#: strings.hrc:359
+#: strings.hrc:361
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_N"
msgid "Handout View"
msgstr ""
-#: strings.hrc:360
+#: strings.hrc:362
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_D"
msgid "This is where you decide on the layout for handouts."
msgstr ""
-#: strings.hrc:361
+#: strings.hrc:363
#, fuzzy
msgctxt "SID_SD_A11Y_P_TITLE_N"
msgid "PresentationTitle"
msgstr "Presentación"
-#: strings.hrc:362
+#: strings.hrc:364
msgctxt "SID_SD_A11Y_P_OUTLINER_N"
msgid "PresentationOutliner"
msgstr ""
-#: strings.hrc:363
+#: strings.hrc:365
msgctxt "SID_SD_A11Y_P_SUBTITLE_N"
msgid "PresentationSubtitle"
msgstr ""
-#: strings.hrc:364
+#: strings.hrc:366
#, fuzzy
msgctxt "SID_SD_A11Y_P_PAGE_N"
msgid "PresentationPage"
msgstr "Presentación"
-#: strings.hrc:365
+#: strings.hrc:367
#, fuzzy
msgctxt "SID_SD_A11Y_P_NOTES_N"
msgid "PresentationNotes"
msgstr "Presentación"
-#: strings.hrc:366
+#: strings.hrc:368
msgctxt "SID_SD_A11Y_P_HANDOUT_N"
msgid "Handout"
msgstr ""
-#: strings.hrc:367
+#: strings.hrc:369
msgctxt "SID_SD_A11Y_P_UNKNOWN_N"
msgid "UnknownAccessiblePresentationShape"
msgstr ""
-#: strings.hrc:368
+#: strings.hrc:370
msgctxt "SID_SD_A11Y_P_TITLE_D"
msgid "PresentationTitleShape"
msgstr ""
-#: strings.hrc:369
+#: strings.hrc:371
msgctxt "SID_SD_A11Y_P_OUTLINER_D"
msgid "PresentationOutlinerShape"
msgstr ""
-#: strings.hrc:370
+#: strings.hrc:372
msgctxt "SID_SD_A11Y_P_SUBTITLE_D"
msgid "PresentationSubtitleShape"
msgstr ""
-#: strings.hrc:371
+#: strings.hrc:373
#, fuzzy
msgctxt "SID_SD_A11Y_P_PAGE_D"
msgid "PresentationPageShape"
msgstr "Presentación"
-#: strings.hrc:372
+#: strings.hrc:374
msgctxt "SID_SD_A11Y_P_NOTES_D"
msgid "PresentationNotesShape"
msgstr ""
-#: strings.hrc:373
+#: strings.hrc:375
msgctxt "SID_SD_A11Y_P_HANDOUT_D"
msgid "PresentationHandoutShape"
msgstr ""
-#: strings.hrc:374
+#: strings.hrc:376
msgctxt "SID_SD_A11Y_P_UNKNOWN_D"
msgid "Unknown accessible presentation shape"
msgstr ""
-#: strings.hrc:375
+#: strings.hrc:377
msgctxt "SID_SD_A11Y_P_FOOTER_N"
msgid "PresentationFooter"
msgstr ""
-#: strings.hrc:376
+#: strings.hrc:378
msgctxt "SID_SD_A11Y_P_FOOTER_D"
msgid "PresentationFooterShape"
msgstr ""
-#: strings.hrc:377
+#: strings.hrc:379
#, fuzzy
msgctxt "SID_SD_A11Y_P_HEADER_N"
msgid "PresentationHeader"
msgstr "Presentación"
-#: strings.hrc:378
+#: strings.hrc:380
msgctxt "SID_SD_A11Y_P_HEADER_D"
msgid "PresentationHeaderShape"
msgstr ""
-#: strings.hrc:379
+#: strings.hrc:381
msgctxt "SID_SD_A11Y_P_DATE_N"
msgid "PresentationDateAndTime"
msgstr ""
-#: strings.hrc:380
+#: strings.hrc:382
msgctxt "SID_SD_A11Y_P_DATE_D"
msgid "PresentationDateAndTimeShape"
msgstr ""
-#: strings.hrc:381
+#: strings.hrc:383
msgctxt "SID_SD_A11Y_P_NUMBER_N"
msgid "PresentationPageNumber"
msgstr ""
-#: strings.hrc:382
+#: strings.hrc:384
msgctxt "SID_SD_A11Y_P_NUMBER_D"
msgid "PresentationPageNumberShape"
msgstr ""
-#: strings.hrc:383
+#: strings.hrc:385
msgctxt "SID_SD_A11Y_D_PRESENTATION"
msgid "%PRODUCTNAME Presentation"
msgstr ""
-#: strings.hrc:384
+#: strings.hrc:386
#, fuzzy
msgctxt "SID_SD_A11Y_P_TITLE_N_STYLE"
msgid "Title"
msgstr "Titol"
-#: strings.hrc:385
+#: strings.hrc:387
msgctxt "SID_SD_A11Y_P_OUTLINER_N_STYLE"
msgid "Outliner"
msgstr ""
-#: strings.hrc:386
+#: strings.hrc:388
msgctxt "SID_SD_A11Y_P_SUBTITLE_N_STYLE"
msgid "Subtitle"
msgstr ""
-#: strings.hrc:387
+#: strings.hrc:389
#, fuzzy
msgctxt "SID_SD_A11Y_P_PAGE_N_STYLE"
msgid "Page"
msgstr "Pachina"
-#: strings.hrc:388
+#: strings.hrc:390
#, fuzzy
msgctxt "SID_SD_A11Y_P_NOTES_N_STYLE"
msgid "Notes"
msgstr "Notas"
-#: strings.hrc:389
+#: strings.hrc:391
msgctxt "SID_SD_A11Y_P_HANDOUT_N_STYLE"
msgid "Handout"
msgstr ""
-#: strings.hrc:390
+#: strings.hrc:392
msgctxt "SID_SD_A11Y_P_UNKNOWN_N_STYLE"
msgid "Unknown Accessible Presentation Shape"
msgstr ""
-#: strings.hrc:391
+#: strings.hrc:393
#, fuzzy
msgctxt "SID_SD_A11Y_P_FOOTER_N_STYLE"
msgid "Footer"
msgstr "Piet de pachina"
-#: strings.hrc:392
+#: strings.hrc:394
#, fuzzy
msgctxt "SID_SD_A11Y_P_HEADER_N_STYLE"
msgid "Header"
msgstr "Capitero"
-#: strings.hrc:393
+#: strings.hrc:395
#, fuzzy
msgctxt "SID_SD_A11Y_P_DATE_N_STYLE"
msgid "Date"
msgstr "Calendata"
-#: strings.hrc:394
+#: strings.hrc:396
#, fuzzy
msgctxt "SID_SD_A11Y_P_NUMBER_N_STYLE"
msgid "Number"
msgstr "Numero"
-#: strings.hrc:395
+#: strings.hrc:397
msgctxt "SID_SD_A11Y_D_PRESENTATION_READONLY"
msgid "(read-only)"
msgstr ""
-#: strings.hrc:397
+#: strings.hrc:399
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_REPEAT_NONE"
msgid "none"
msgstr "~Garra"
-#: strings.hrc:398
+#: strings.hrc:400
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_NEXT_CLICK"
msgid "Until next click"
msgstr ""
-#: strings.hrc:399
+#: strings.hrc:401
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_END_OF_SLIDE"
msgid "Until end of slide"
msgstr ""
-#: strings.hrc:400
+#: strings.hrc:402
msgctxt "STR_CUSTOMANIMATION_DIRECTION_PROPERTY"
msgid "Direction:"
msgstr ""
-#: strings.hrc:401
+#: strings.hrc:403
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_ZOOM_PROPERTY"
msgid "Zoom:"
msgstr "Escala"
-#: strings.hrc:402
+#: strings.hrc:404
msgctxt "STR_CUSTOMANIMATION_SPOKES_PROPERTY"
msgid "Spokes:"
msgstr ""
-#: strings.hrc:403
+#: strings.hrc:405
msgctxt "STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY"
msgid "First color:"
msgstr ""
-#: strings.hrc:404
+#: strings.hrc:406
msgctxt "STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY"
msgid "Second color:"
msgstr ""
-#: strings.hrc:405
+#: strings.hrc:407
msgctxt "STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY"
msgid "Fill color:"
msgstr ""
-#: strings.hrc:406
+#: strings.hrc:408
msgctxt "STR_CUSTOMANIMATION_STYLE_PROPERTY"
msgid "Style:"
msgstr ""
-#: strings.hrc:407
+#: strings.hrc:409
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_PROPERTY"
msgid "Font:"
msgstr "Tipo de letra"
-#: strings.hrc:408
+#: strings.hrc:410
msgctxt "STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY"
msgid "Font color:"
msgstr ""
-#: strings.hrc:409
+#: strings.hrc:411
msgctxt "STR_CUSTOMANIMATION_FONT_SIZE_STYLE_PROPERTY"
msgid "Style:"
msgstr ""
-#: strings.hrc:410
+#: strings.hrc:412
msgctxt "STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY"
msgid "Typeface:"
msgstr ""
-#: strings.hrc:411
+#: strings.hrc:413
msgctxt "STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY"
msgid "Line color:"
msgstr ""
-#: strings.hrc:412
+#: strings.hrc:414
msgctxt "STR_CUSTOMANIMATION_SIZE_PROPERTY"
msgid "Font size:"
msgstr ""
-#: strings.hrc:413
+#: strings.hrc:415
msgctxt "STR_CUSTOMANIMATION_SCALE_PROPERTY"
msgid "Size:"
msgstr ""
-#: strings.hrc:414
+#: strings.hrc:416
msgctxt "STR_CUSTOMANIMATION_AMOUNT_PROPERTY"
msgid "Amount:"
msgstr ""
-#: strings.hrc:415
+#: strings.hrc:417
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_COLOR_PROPERTY"
msgid "Color:"
msgstr "~Color"
-#: strings.hrc:416
+#: strings.hrc:418
msgctxt "STR_CUSTOMANIMATION_NO_SOUND"
msgid "(No sound)"
msgstr ""
-#: strings.hrc:417
+#: strings.hrc:419
msgctxt "STR_CUSTOMANIMATION_STOP_PREVIOUS_SOUND"
msgid "(Stop previous sound)"
msgstr ""
-#: strings.hrc:418
+#: strings.hrc:420
msgctxt "STR_CUSTOMANIMATION_BROWSE_SOUND"
msgid "Other sound..."
msgstr ""
-#: strings.hrc:419
+#: strings.hrc:421
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SAMPLE"
msgid "Sample"
msgstr "Sencilla"
-#: strings.hrc:420
+#: strings.hrc:422
msgctxt "STR_CUSTOMANIMATION_TRIGGER"
msgid "Trigger"
msgstr ""
-#: strings.hrc:421
+#: strings.hrc:423
msgctxt "STR_CUSTOMANIMATION_LIST_HELPTEXT"
msgid "First select the slide element and then click 'Add...' to add an animation effect."
msgstr ""
-#: strings.hrc:422
+#: strings.hrc:424
msgctxt "STR_CUSTOMANIMATION_USERPATH"
msgid "User paths"
msgstr ""
-#: strings.hrc:423
+#: strings.hrc:425
msgctxt "STR_CUSTOMANIMATION_ENTRANCE"
msgid "Entrance: %1"
msgstr ""
-#: strings.hrc:424
+#: strings.hrc:426
msgctxt "STR_CUSTOMANIMATION_EMPHASIS"
msgid "Emphasis: %1"
msgstr ""
-#: strings.hrc:425
+#: strings.hrc:427
msgctxt "STR_CUSTOMANIMATION_EXIT"
msgid "Exit: %1"
msgstr ""
-#: strings.hrc:426
+#: strings.hrc:428
msgctxt "STR_CUSTOMANIMATION_MOTION_PATHS"
msgid "Motion Paths: %1"
msgstr ""
-#: strings.hrc:427
+#: strings.hrc:429
#, fuzzy
msgctxt "STR_SLIDETRANSITION_NONE"
msgid "None"
msgstr "~Garra"
-#: strings.hrc:429
+#: strings.hrc:431
msgctxt "STR_ANNOTATION_TODAY"
msgid "Today,"
msgstr ""
-#: strings.hrc:430
+#: strings.hrc:432
msgctxt "STR_ANNOTATION_YESTERDAY"
msgid "Yesterday,"
msgstr ""
-#: strings.hrc:431
+#: strings.hrc:433
msgctxt "STR_ANNOTATION_NOAUTHOR"
msgid "(no author)"
msgstr ""
-#: strings.hrc:432
+#: strings.hrc:434
msgctxt "STR_ANNOTATION_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress reached the end of the presentation. Do you want to continue at the beginning?"
msgstr ""
-#: strings.hrc:433
+#: strings.hrc:435
msgctxt "STR_ANNOTATION_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress reached the beginning of the presentation. Do you want to continue at the end?"
msgstr ""
-#: strings.hrc:434
+#: strings.hrc:436
msgctxt "STR_ANNOTATION_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the end of the document. Do you want to continue at the beginning?"
msgstr ""
-#: strings.hrc:435
+#: strings.hrc:437
msgctxt "STR_ANNOTATION_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the beginning of the document. Do you want to continue at the end?"
msgstr ""
-#: strings.hrc:436
+#: strings.hrc:438
msgctxt "STR_ANNOTATION_UNDO_INSERT"
msgid "Insert Comment"
msgstr ""
-#: strings.hrc:437
+#: strings.hrc:439
msgctxt "STR_ANNOTATION_UNDO_DELETE"
msgid "Delete Comment(s)"
msgstr ""
-#: strings.hrc:438
+#: strings.hrc:440
msgctxt "STR_ANNOTATION_UNDO_MOVE"
msgid "Move Comment"
msgstr ""
-#: strings.hrc:439
+#: strings.hrc:441
#, fuzzy
msgctxt "STR_ANNOTATION_UNDO_EDIT"
msgid "Edit Comment"
msgstr "Edita o comentario..."
-#: strings.hrc:440
+#: strings.hrc:442
msgctxt "STR_ANNOTATION_REPLY"
msgid "Reply to %1"
msgstr ""
-#: strings.hrc:442
+#: strings.hrc:444
msgctxt "RID_DRAW_MEDIA_TOOLBOX"
msgid "Media Playback"
msgstr ""
-#: strings.hrc:443
+#: strings.hrc:445
msgctxt "RID_DRAW_TABLE_TOOLBOX"
msgid "Table"
msgstr "Tabla"
-#: strings.hrc:445
+#: strings.hrc:447
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_GROUP_NAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: strings.hrc:446
+#: strings.hrc:448
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PRINT_GROUP"
msgid "Print"
msgstr "Imprentar"
-#: strings.hrc:447
+#: strings.hrc:449
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT"
msgid "Document"
msgstr "Documento"
-#: strings.hrc:448
+#: strings.hrc:450
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE"
msgid "Slides per page"
msgstr ""
-#: strings.hrc:449
+#: strings.hrc:451
msgctxt "STR_IMPRESS_PRINT_UI_ORDER"
msgid "Order"
msgstr ""
-#: strings.hrc:450
+#: strings.hrc:452
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT"
msgid "~Contents"
msgstr "Conteniu"
-#: strings.hrc:451
+#: strings.hrc:453
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_NAME"
msgid "~Slide name"
msgstr ""
-#: strings.hrc:452
+#: strings.hrc:454
msgctxt "STR_DRAW_PRINT_UI_IS_PRINT_NAME"
msgid "P~age name"
msgstr ""
-#: strings.hrc:453
+#: strings.hrc:455
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_DATE"
msgid "~Date and time"
msgstr ""
-#: strings.hrc:454
+#: strings.hrc:456
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_HIDDEN"
msgid "Hidden pages"
msgstr ""
-#: strings.hrc:455
+#: strings.hrc:457
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY"
msgid "Color"
msgstr "~Color"
-#: strings.hrc:456
+#: strings.hrc:458
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS"
msgid "~Size"
msgstr ""
-#: strings.hrc:457
+#: strings.hrc:459
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE"
msgid "Brochure"
msgstr ""
-#: strings.hrc:458
+#: strings.hrc:460
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_SIDES"
msgid "Page sides"
msgstr ""
-#: strings.hrc:459
+#: strings.hrc:461
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE"
msgid "Include"
msgstr ""
-#: strings.hrc:460
+#: strings.hrc:462
msgctxt "STR_IMPRESS_PRINT_UI_PAPER_TRAY"
msgid "~Use only paper tray from printer preferences"
msgstr ""
-#: strings.hrc:461
+#: strings.hrc:463
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE"
msgid "Print range"
msgstr "Aria d'impresión"
-#: strings.hrc:463
+#: strings.hrc:465
msgctxt "STR_SAR_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress has searched to the end of the presentation. Do you want to continue at the beginning?"
msgstr ""
-#: strings.hrc:464
+#: strings.hrc:466
msgctxt "STR_SAR_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress has searched to the beginning of the presentation. Do you want to continue at the end?"
msgstr ""
-#: strings.hrc:465
+#: strings.hrc:467
msgctxt "STR_SAR_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the end of the document. Do you want to continue at the beginning?"
msgstr ""
-#: strings.hrc:466
+#: strings.hrc:468
msgctxt "STR_SAR_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the beginning of the document. Do you want to continue at the end?"
msgstr ""
-#: strings.hrc:468
+#: strings.hrc:470
#, fuzzy
msgctxt "STR_SD_NONE"
msgid "- None -"
@@ -4525,7 +4535,7 @@ msgstr ""
#: optimpressgeneralpage.ui:622
msgctxt "optimpressgeneralpage|cbCompatibility"
-msgid "Add _spacing between paragraphs and tables (in current document)"
+msgid "Add _spacing between paragraphs and tables"
msgstr ""
#: optimpressgeneralpage.ui:645
@@ -5291,12 +5301,12 @@ msgstr ""
#: sidebarslidebackground.ui:197
msgctxt "sidebarslidebackground|label4"
-msgid "Orientation: "
+msgid "Orientation:"
msgstr ""
#: sidebarslidebackground.ui:212
msgctxt "sidebarslidebackground|masterslidebutton"
-msgid "Master Slide"
+msgid "Master View"
msgstr ""
#: sidebarslidebackground.ui:226
@@ -5343,7 +5353,7 @@ msgstr "Amagar"
#: sidebarslidebackground.ui:267
msgctxt "sidebarslidebackground|labelmargin"
-msgid "Margin: "
+msgid "Margin:"
msgstr ""
#: sidebarslidebackground.ui:277
diff --git a/source/an/sfx2/messages.po b/source/an/sfx2/messages.po
index 3c34f01f2e6..80f8a39a6ca 100644
--- a/source/an/sfx2/messages.po
+++ b/source/an/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -790,149 +790,154 @@ msgctxt "RID_SVXSTR_INCORRECT_PASSWORD"
msgid "Incorrect password"
msgstr ""
-#: strings.hrc:173
+#: strings.hrc:172
+msgctxt "RID_SVXSTR_GPG_ENCRYPT_FAILURE"
+msgid "OpenPGP key not trusted, damaged, or encryption failure. Please try again."
+msgstr ""
+
+#: strings.hrc:174
msgctxt "STR_PASSWD_MIN_LEN"
msgid "(Minimum $(MINLEN) characters)"
msgstr ""
-#: strings.hrc:174
+#: strings.hrc:175
msgctxt "STR_PASSWD_MIN_LEN1"
msgid "(Minimum 1 character)"
msgstr ""
-#: strings.hrc:175
+#: strings.hrc:176
msgctxt "STR_PASSWD_EMPTY"
msgid "(The password can be empty)"
msgstr ""
-#: strings.hrc:176
+#: strings.hrc:177
msgctxt "STR_MODULENOTINSTALLED"
msgid "The action could not be executed. The %PRODUCTNAME program module needed for this action is currently not installed."
msgstr ""
-#: strings.hrc:178
+#: strings.hrc:179
msgctxt "STR_FILTER_NOT_INSTALLED"
msgid ""
"The selected filter $(FILTER) has not been installed.\n"
"Would you like to do this now?"
msgstr ""
-#: strings.hrc:179
+#: strings.hrc:180
msgctxt "STR_FILTER_CONSULT_SERVICE"
msgid ""
"The selected filter $(FILTER) is not included in your edition.\n"
"You can find information about orders on our homepage."
msgstr ""
-#: strings.hrc:181
+#: strings.hrc:182
msgctxt "STR_WELCOME_LINE1"
msgid "Welcome to %PRODUCTNAME."
msgstr ""
-#: strings.hrc:182
+#: strings.hrc:183
msgctxt "STR_WELCOME_LINE2"
msgid "Drop a document here or pick an app from the left side to create one."
msgstr ""
-#: strings.hrc:184
+#: strings.hrc:185
msgctxt "STR_SFX_FILEDLG_ACTUALVERSION"
msgid "Current version"
msgstr ""
-#: strings.hrc:185
+#: strings.hrc:186
msgctxt "STR_SFX_EXPLORERFILE_EXPORT"
msgid "Export"
msgstr ""
-#: strings.hrc:186
+#: strings.hrc:187
msgctxt "STR_SFX_EXPLORERFILE_INSERT"
msgid "Insert"
msgstr ""
-#: strings.hrc:187
+#: strings.hrc:188
msgctxt "STR_SFX_EXPLORERFILE_BUTTONINSERT"
msgid "~Insert"
msgstr ""
-#: strings.hrc:188
+#: strings.hrc:189
msgctxt "STR_SFX_IMPORT_ALL"
msgid "<All formats>"
msgstr ""
-#: strings.hrc:189
+#: strings.hrc:190
msgctxt "STR_PB_SAVEACOPY"
msgid "Save a Copy"
msgstr ""
-#: strings.hrc:190
+#: strings.hrc:191
msgctxt "STR_PB_COMPAREDOC"
msgid "Compare to"
msgstr ""
-#: strings.hrc:191
+#: strings.hrc:192
msgctxt "STR_PB_MERGEDOC"
msgid "Merge with"
msgstr ""
-#: strings.hrc:193
+#: strings.hrc:194
#, fuzzy
msgctxt "STR_SFX_NEWOFFICEDOC"
msgid "%PRODUCTNAME document"
msgstr "Documentos de %PRODNAME"
-#: strings.hrc:194
+#: strings.hrc:195
msgctxt "SFX_ST_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
-#: strings.hrc:195
+#: strings.hrc:196
msgctxt "STR_SFX_REMOVE_PROPERTY"
msgid "Remove Property"
msgstr ""
-#: strings.hrc:196
+#: strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
"The value will be stored as text."
msgstr ""
-#: strings.hrc:198
+#: strings.hrc:199
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr ""
-#: strings.hrc:200
+#: strings.hrc:201
#, fuzzy
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "Res~tablir"
-#: strings.hrc:201
+#: strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr ""
-#: strings.hrc:202
+#: strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr ""
-#: strings.hrc:203
+#: strings.hrc:204
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
"because it would result in a recursive reference."
msgstr ""
-#: strings.hrc:204
+#: strings.hrc:205
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
"Please choose another name."
msgstr ""
-#: strings.hrc:205
+#: strings.hrc:206
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -940,118 +945,118 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: strings.hrc:206
+#: strings.hrc:207
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: strings.hrc:207
+#: strings.hrc:208
#, fuzzy
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Navegador"
-#: strings.hrc:208
+#: strings.hrc:209
msgctxt "STR_SID_SIDEBAR"
msgid "Sidebar"
msgstr ""
-#: strings.hrc:209
+#: strings.hrc:210
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr ""
-#: strings.hrc:210
+#: strings.hrc:211
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr ""
-#: strings.hrc:211
+#: strings.hrc:212
#, fuzzy
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Tipo de letra"
-#: strings.hrc:212
+#: strings.hrc:213
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show Previews"
msgstr ""
-#: strings.hrc:214
+#: strings.hrc:215
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr ""
-#: strings.hrc:215
+#: strings.hrc:216
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: strings.hrc:217
+#: strings.hrc:218
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr ""
-#: strings.hrc:218
+#: strings.hrc:219
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr ""
-#: strings.hrc:219
+#: strings.hrc:220
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr ""
-#: strings.hrc:220
+#: strings.hrc:221
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr ""
-#: strings.hrc:221
+#: strings.hrc:222
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr ""
-#: strings.hrc:223
+#: strings.hrc:224
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr ""
-#: strings.hrc:224
+#: strings.hrc:225
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr ""
-#: strings.hrc:226
+#: strings.hrc:227
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr ""
-#: strings.hrc:228
+#: strings.hrc:229
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
"Please choose a printer and try again."
msgstr ""
-#: strings.hrc:229
+#: strings.hrc:230
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
"Please check your printer configuration."
msgstr ""
-#: strings.hrc:230
+#: strings.hrc:231
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr ""
-#: strings.hrc:231
+#: strings.hrc:232
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr ""
-#: strings.hrc:232
+#: strings.hrc:233
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1059,7 +1064,7 @@ msgid ""
"active document?"
msgstr ""
-#: strings.hrc:233
+#: strings.hrc:234
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1067,7 +1072,7 @@ msgid ""
"in the active document?"
msgstr ""
-#: strings.hrc:234
+#: strings.hrc:235
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1075,223 +1080,325 @@ msgid ""
"active document?"
msgstr ""
-#: strings.hrc:235
+#: strings.hrc:236
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
" print job is being carried out."
msgstr ""
-#: strings.hrc:236
+#: strings.hrc:237
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
"Please check the %PRODUCTNAME settings or your e-mail program settings."
msgstr ""
-#: strings.hrc:237
+#: strings.hrc:238
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr ""
-#: strings.hrc:238
+#: strings.hrc:239
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr ""
-#: strings.hrc:239
+#: strings.hrc:240
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: strings.hrc:240
+#: strings.hrc:241
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: strings.hrc:241
+#: strings.hrc:242
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: strings.hrc:242
+#: strings.hrc:243
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: strings.hrc:243
+#: strings.hrc:244
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: strings.hrc:244
+#: strings.hrc:245
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: strings.hrc:245
+#: strings.hrc:246
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Intellectual Property:"
msgstr ""
-#: strings.hrc:246
+#: strings.hrc:247
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: strings.hrc:247
+#: strings.hrc:248
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: strings.hrc:248
+#: strings.hrc:249
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: strings.hrc:249
+#: strings.hrc:250
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Edita o comentario..."
-#: strings.hrc:250
+#: strings.hrc:251
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr ""
-#: strings.hrc:251
+#: strings.hrc:252
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: strings.hrc:252
+#: strings.hrc:253
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: strings.hrc:253
+#: strings.hrc:254
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: strings.hrc:254
+#: strings.hrc:255
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: strings.hrc:255
+#: strings.hrc:256
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: strings.hrc:256
+#: strings.hrc:257
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: strings.hrc:258
+#: strings.hrc:259
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: strings.hrc:259
+#: strings.hrc:260
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr ""
-#: strings.hrc:260
+#: strings.hrc:261
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr ""
-#: strings.hrc:262
+#: strings.hrc:263
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr ""
-#: strings.hrc:263
+#: strings.hrc:264
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: strings.hrc:264
+#: strings.hrc:265
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: strings.hrc:265
+#: strings.hrc:266
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr ""
-#: strings.hrc:266
+#: strings.hrc:267
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: strings.hrc:267
+#: strings.hrc:268
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
-#: strings.hrc:269
+#. Translators: default Impress template names
+#: strings.hrc:271
msgctxt "STR_TEMPLATE_NAME1"
-msgid "Abstract Green"
+msgid "Alizarin"
msgstr ""
-#: strings.hrc:270
+#: strings.hrc:272
msgctxt "STR_TEMPLATE_NAME2"
-msgid "Abstract Red"
+msgid "Beehive"
msgstr ""
-#: strings.hrc:271
+#: strings.hrc:273
msgctxt "STR_TEMPLATE_NAME3"
-msgid "Abstract Yellow"
+msgid "Blue Curve"
msgstr ""
-#: strings.hrc:272
+#: strings.hrc:274
msgctxt "STR_TEMPLATE_NAME4"
-msgid "Bright Blue"
-msgstr "Azul brillant"
+msgid "Blueprint Plans"
+msgstr ""
-#: strings.hrc:273
+#: strings.hrc:275
msgctxt "STR_TEMPLATE_NAME5"
-msgid "DNA"
+msgid "Bright Blue"
msgstr ""
-#: strings.hrc:274
+#: strings.hrc:276
msgctxt "STR_TEMPLATE_NAME6"
-msgid "Inspiration"
+msgid "Classy Red"
msgstr ""
-#: strings.hrc:275
+#: strings.hrc:277
msgctxt "STR_TEMPLATE_NAME7"
-msgid "Lush Green"
+msgid "DNA"
msgstr ""
-#: strings.hrc:276
+#: strings.hrc:278
msgctxt "STR_TEMPLATE_NAME8"
-msgid "Metropolis"
+msgid "Focus"
msgstr ""
-#: strings.hrc:277
+#: strings.hrc:279
msgctxt "STR_TEMPLATE_NAME9"
-msgid "Sunset"
+msgid "Forestbird"
msgstr ""
-#: strings.hrc:278
+#: strings.hrc:280
msgctxt "STR_TEMPLATE_NAME10"
+msgid "Impress"
+msgstr ""
+
+#: strings.hrc:281
+msgctxt "STR_TEMPLATE_NAME11"
+msgid "Inspiration"
+msgstr ""
+
+#: strings.hrc:282
+msgctxt "STR_TEMPLATE_NAME12"
+msgid "Lights"
+msgstr ""
+
+#: strings.hrc:283
+msgctxt "STR_TEMPLATE_NAME13"
+msgid "Lush Green"
+msgstr ""
+
+#: strings.hrc:284
+msgctxt "STR_TEMPLATE_NAME14"
+msgid "Metropolis"
+msgstr ""
+
+#: strings.hrc:285
+msgctxt "STR_TEMPLATE_NAME15"
+msgid "Midnightblue"
+msgstr ""
+
+#: strings.hrc:286
+msgctxt "STR_TEMPLATE_NAME16"
+msgid "Nature Illustration"
+msgstr ""
+
+#: strings.hrc:287
+msgctxt "STR_TEMPLATE_NAME17"
+msgid "Pencil"
+msgstr ""
+
+#: strings.hrc:288
+msgctxt "STR_TEMPLATE_NAME18"
+msgid "Piano"
+msgstr ""
+
+#: strings.hrc:289
+msgctxt "STR_TEMPLATE_NAME19"
+msgid "Portfolio"
+msgstr ""
+
+#: strings.hrc:290
+msgctxt "STR_TEMPLATE_NAME20"
+msgid "Progress"
+msgstr ""
+
+#: strings.hrc:291
+msgctxt "STR_TEMPLATE_NAME21"
+msgid "Sunset"
+msgstr ""
+
+#: strings.hrc:292
+msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: strings.hrc:280
+#: strings.hrc:293
+msgctxt "STR_TEMPLATE_NAME23"
+msgid "Vivid"
+msgstr ""
+
+#. Translators: default Writer template names
+#: strings.hrc:295
+msgctxt "STR_TEMPLATE_NAME24"
+msgid "CV"
+msgstr ""
+
+#: strings.hrc:296
+msgctxt "STR_TEMPLATE_NAME25"
+msgid "Resume"
+msgstr ""
+
+#: strings.hrc:297
+msgctxt "STR_TEMPLATE_NAME26"
+msgid "Default"
+msgstr ""
+
+#: strings.hrc:298
+msgctxt "STR_TEMPLATE_NAME27"
+msgid "Modern"
+msgstr ""
+
+#: strings.hrc:299
+msgctxt "STR_TEMPLATE_NAME28"
+msgid "Modern business letter sans-serif"
+msgstr ""
+
+#: strings.hrc:300
+msgctxt "STR_TEMPLATE_NAME29"
+msgid "Modern business letter serif"
+msgstr ""
+
+#: strings.hrc:301
+msgctxt "STR_TEMPLATE_NAME30"
+msgid "Businesscard with logo"
+msgstr ""
+
+#: strings.hrc:303
#, fuzzy
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Borrar"
-#: strings.hrc:281
+#: strings.hrc:304
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
diff --git a/source/an/sw/messages.po b/source/an/sw/messages.po
index 72316947870..bc6dff15d83 100644
--- a/source/an/sw/messages.po
+++ b/source/an/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-20 08:17+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -78,10 +78,9 @@ msgid "Conditional Styles"
msgstr ""
#: app.hrc:47
-#, fuzzy
msgctxt "RID_CHARACTERSTYLEFAMILY"
-msgid "All"
-msgstr "Totz"
+msgid "All Styles"
+msgstr ""
#: app.hrc:48
msgctxt "RID_CHARACTERSTYLEFAMILY"
@@ -101,10 +100,9 @@ msgid "Custom Styles"
msgstr "Estilos personalizaus"
#: app.hrc:56
-#, fuzzy
msgctxt "RID_FRAMESTYLEFAMILY"
-msgid "All"
-msgstr "Totz"
+msgid "All Styles"
+msgstr ""
#: app.hrc:57
msgctxt "RID_FRAMESTYLEFAMILY"
@@ -124,10 +122,9 @@ msgid "Custom Styles"
msgstr "Estilos personalizaus"
#: app.hrc:65
-#, fuzzy
msgctxt "RID_PAGESTYLEFAMILY"
-msgid "All"
-msgstr "Totz"
+msgid "All Styles"
+msgstr ""
#: app.hrc:66
msgctxt "RID_PAGESTYLEFAMILY"
@@ -147,10 +144,9 @@ msgid "Custom Styles"
msgstr "Estilos personalizaus"
#: app.hrc:74
-#, fuzzy
msgctxt "RID_LISTSTYLEFAMILY"
-msgid "All"
-msgstr "Totz"
+msgid "All Styles"
+msgstr ""
#: app.hrc:75
msgctxt "RID_LISTSTYLEFAMILY"
@@ -170,10 +166,9 @@ msgid "Custom Styles"
msgstr "Estilos personalizaus"
#: app.hrc:83
-#, fuzzy
msgctxt "RID_TABLESTYLEFAMILY"
-msgid "All"
-msgstr "Totz"
+msgid "All Styles"
+msgstr ""
#: app.hrc:84
msgctxt "RID_TABLESTYLEFAMILY"
@@ -1350,27 +1345,27 @@ msgstr ""
#. Numbering rules
#: strings.hrc:199
msgctxt "STR_POOLNUMRULE_NUM1"
-msgid "Numbering 1"
+msgid "Numbering 123"
msgstr ""
#: strings.hrc:200
msgctxt "STR_POOLNUMRULE_NUM2"
-msgid "Numbering 2"
+msgid "Numbering ABC"
msgstr ""
#: strings.hrc:201
msgctxt "STR_POOLNUMRULE_NUM3"
-msgid "Numbering 3"
+msgid "Numbering abc"
msgstr ""
#: strings.hrc:202
msgctxt "STR_POOLNUMRULE_NUM4"
-msgid "Numbering 4"
+msgid "Numbering IVX"
msgstr ""
#: strings.hrc:203
msgctxt "STR_POOLNUMRULE_NUM5"
-msgid "Numbering 5"
+msgid "Numbering ivx"
msgstr ""
#: strings.hrc:204
@@ -14073,12 +14068,12 @@ msgstr ""
#: optcompatpage.ui:57
msgctxt "optcompatpage|format"
-msgid "Add spacing between paragraphs and tables (in current document)"
+msgid "Add spacing between paragraphs and tables"
msgstr ""
#: optcompatpage.ui:58
msgctxt "optcompatpage|format"
-msgid "Add paragraph and table spacing at tops of pages (in current document)"
+msgid "Add paragraph and table spacing at tops of pages"
msgstr ""
#: optcompatpage.ui:59
@@ -14133,7 +14128,7 @@ msgstr ""
#: optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Tolerate white lines of PDF page backgrounds for compatibility with old documents (in current document)"
+msgid "Tolerate white lines of PDF page backgrounds for compatibility with old documents"
msgstr ""
#: optcompatpage.ui:70
@@ -14148,7 +14143,7 @@ msgstr ""
#: optcompatpage.ui:104
msgctxt "optcompatpage|label11"
-msgid "Compatibility options for %DOCNAME"
+msgid "Compatibility options for '%DOCNAME'"
msgstr ""
#: optfonttabpage.ui:103
@@ -17427,21 +17422,11 @@ msgctxt "textgridpage|labelFT_CHARSPERLINE"
msgid "Characters per line:"
msgstr ""
-#: textgridpage.ui:223
-msgctxt "textgridpage|labelFT_CHARRANGE"
-msgid "(1-45)"
-msgstr ""
-
#: textgridpage.ui:236
msgctxt "textgridpage|labelFT_LINESPERPAGE"
msgid "Lines per page:"
msgstr ""
-#: textgridpage.ui:265
-msgctxt "textgridpage|labelFT_LINERANGE"
-msgid "(1-48)"
-msgstr ""
-
#: textgridpage.ui:303
msgctxt "textgridpage|labelFT_CHARWIDTH"
msgid "Character _width:"
diff --git a/source/ar/cui/messages.po b/source/ar/cui/messages.po
index 11001f6281c..b718ef32b1c 100644
--- a/source/ar/cui/messages.po
+++ b/source/ar/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2017-11-27 14:51+0000\n"
"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7813,74 +7813,74 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "مساعدة"
-#: optgeneralpage.ui:77
+#: optgeneralpage.ui:76
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "ا_ستخدم مربّعات حوار %PRODUCTNAME"
-#: optgeneralpage.ui:111
+#: optgeneralpage.ui:110
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "مربّعات حوار الفتح و الحفظ"
-#: optgeneralpage.ui:137
+#: optgeneralpage.ui:136
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "استخدم مربعات _حوار %PRODUCTNAME"
-#: optgeneralpage.ui:152
+#: optgeneralpage.ui:151
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "مربعات حوار الطباعة"
-#: optgeneralpage.ui:178
+#: optgeneralpage.ui:177
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "ال_طباعة تجعل حالة المستند ”مستند معدل“"
-#: optgeneralpage.ui:193
+#: optgeneralpage.ui:192
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "حالة المستند"
-#: optgeneralpage.ui:226
+#: optgeneralpage.ui:225
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "فسّرها على أنها ال_سنوات بين "
-#: optgeneralpage.ui:252
+#: optgeneralpage.ui:251
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "و "
-#: optgeneralpage.ui:267
+#: optgeneralpage.ui:266
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "السنة (رقمان)"
-#: optgeneralpage.ui:293
+#: optgeneralpage.ui:292
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "اجمع بيانات الاستخدام و أرسلها إلى «مؤسسة المستند المفتوح»"
-#: optgeneralpage.ui:308
+#: optgeneralpage.ui:307
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "ساعد في تحسين %PRODUCTNAME"
-#: optgeneralpage.ui:339
+#: optgeneralpage.ui:338
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "حمّل %PRODUCTNAME أثناء بدء النظام"
-#: optgeneralpage.ui:353
+#: optgeneralpage.ui:352
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "فعّل التشغيل السريع في صينية النظام"
-#: optgeneralpage.ui:373
+#: optgeneralpage.ui:372
#, fuzzy
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
@@ -8684,243 +8684,247 @@ msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr "خيارات الأمن و التحذيرات"
-#: optuserpage.ui:34
+#: optuserpage.ui:12
+msgctxt "optuserpage|liststore1"
+msgid "No key"
+msgstr ""
+
+#: optuserpage.ui:45
msgctxt "optuserpage|companyft"
msgid "_Company:"
msgstr "ال_شركة:"
-#: optuserpage.ui:48
+#: optuserpage.ui:59
#, fuzzy
msgctxt "optuserpage|nameft"
msgid "First/last _name/initials:"
msgstr "الاسم/اسم ال_عائلة/الحروف البادئة"
-#: optuserpage.ui:62
+#: optuserpage.ui:73
msgctxt "optuserpage|streetft"
msgid "_Street:"
msgstr "ال_شارع:"
-#: optuserpage.ui:76
+#: optuserpage.ui:87
#, fuzzy
msgctxt "optuserpage|cityft"
msgid "City/state/_zip:"
msgstr "المدينة/الدولة/الرم_ز البريدي"
-#: optuserpage.ui:90
+#: optuserpage.ui:101
msgctxt "optuserpage|countryft"
msgid "Country/re_gion:"
msgstr "الدولة/المن_طقة:"
-#: optuserpage.ui:104
+#: optuserpage.ui:115
msgctxt "optuserpage|titleft"
msgid "_Title/position:"
msgstr "ال_مسمى الوظيفي/المركز:"
-#: optuserpage.ui:118
+#: optuserpage.ui:129
msgctxt "optuserpage|phoneft"
msgid "Telephone (home/_work):"
msgstr "الهاتف (المنزل/ال_عمل):"
-#: optuserpage.ui:123
+#: optuserpage.ui:134
#, fuzzy
msgctxt "phoneft-atkobject"
msgid "Home telephone number"
msgstr "رقم هاتف المنزل"
-#: optuserpage.ui:137
+#: optuserpage.ui:148
msgctxt "optuserpage|faxft"
msgid "Fa_x/e-mail:"
msgstr "الفا_كس/البريد الإلكتروني:"
-#: optuserpage.ui:160
+#: optuserpage.ui:171
msgctxt "optuserpage|firstname-atkobject"
msgid "First name"
msgstr "الاسم الأول"
-#: optuserpage.ui:178
+#: optuserpage.ui:189
#, fuzzy
msgctxt "lastname-atkobject"
msgid "Last name"
msgstr "اسم الأخير"
-#: optuserpage.ui:196
+#: optuserpage.ui:207
#, fuzzy
msgctxt "shortname-atkobject"
msgid "Initials"
msgstr "الحروف البادئة"
-#: optuserpage.ui:225
+#: optuserpage.ui:236
#, fuzzy
msgctxt "city-atkobject"
msgid "City"
msgstr "المدينة"
-#: optuserpage.ui:243
+#: optuserpage.ui:254
#, fuzzy
msgctxt "state-atkobject"
msgid "State"
msgstr "الحالة"
-#: optuserpage.ui:261
+#: optuserpage.ui:272
#, fuzzy
msgctxt "zip-atkobject"
msgid "Zip code"
msgstr "الرمز البريدي"
-#: optuserpage.ui:291
+#: optuserpage.ui:302
#, fuzzy
msgctxt "title-atkobject"
msgid "Title"
msgstr "أحرف عناوين"
-#: optuserpage.ui:309
+#: optuserpage.ui:320
#, fuzzy
msgctxt "position-atkobject"
msgid "Position"
msgstr "الموضع"
-#: optuserpage.ui:338
+#: optuserpage.ui:349
#, fuzzy
msgctxt "home-atkobject"
msgid "Home telephone number"
msgstr "رقم هاتف المنزل"
-#: optuserpage.ui:356
+#: optuserpage.ui:367
#, fuzzy
msgctxt "work-atkobject"
msgid "Work telephone number"
msgstr "رقم هاتف العمل"
-#: optuserpage.ui:386
+#: optuserpage.ui:397
#, fuzzy
msgctxt "fax-atkobject"
msgid "FAX number"
msgstr "رقم الفاكس"
-#: optuserpage.ui:404
+#: optuserpage.ui:415
#, fuzzy
msgctxt "email-atkobject"
msgid "email address"
msgstr "عنوان البريد الإلكتروني"
-#: optuserpage.ui:421
+#: optuserpage.ui:432
msgctxt "optuserpage|usefordocprop"
msgid "Use data for document properties"
msgstr "استخدام بيانات خصائص المستند"
-#: optuserpage.ui:438
+#: optuserpage.ui:449
#, fuzzy
msgctxt "optuserpage|rusnameft"
msgid "Last name/first _name/father’s name/initials:"
msgstr "آخر اسم/أول ا_سم/اسم الأب/الابتدائيات"
-#: optuserpage.ui:461
+#: optuserpage.ui:472
#, fuzzy
msgctxt "ruslastname-atkobject"
msgid "Last name"
msgstr "اسم الأخير"
-#: optuserpage.ui:479
+#: optuserpage.ui:490
#, fuzzy
msgctxt "rusfathersname-atkobject"
msgid "Father's name"
msgstr "اسم الأب"
-#: optuserpage.ui:497
+#: optuserpage.ui:508
#, fuzzy
msgctxt "russhortname-atkobject"
msgid "Initials"
msgstr "الحروف البادئة"
-#: optuserpage.ui:515
+#: optuserpage.ui:526
#, fuzzy
msgctxt "rusfirstname-atkobject"
msgid "First name"
msgstr "الاسم الأول"
-#: optuserpage.ui:535
+#: optuserpage.ui:546
#, fuzzy
msgctxt "optuserpage|eastnameft"
msgid "Last/first _name/initials:"
msgstr "الا_سم الأول/اسم العائلة /الأحرف الأولى"
-#: optuserpage.ui:558
+#: optuserpage.ui:569
#, fuzzy
msgctxt "eastlastname-atkobject"
msgid "Last name"
msgstr "اسم الأخير"
-#: optuserpage.ui:576
+#: optuserpage.ui:587
#, fuzzy
msgctxt "eastfirstname-atkobject"
msgid "First name"
msgstr "الاسم الأول"
-#: optuserpage.ui:594
+#: optuserpage.ui:605
#, fuzzy
msgctxt "eastshortname-atkobject"
msgid "Initials"
msgstr "الحروف البادئة"
-#: optuserpage.ui:614
+#: optuserpage.ui:625
msgctxt "optuserpage|russtreetft"
msgid "_Street/apartment number:"
msgstr "ال_شارع/رقم الشقة:"
-#: optuserpage.ui:637
+#: optuserpage.ui:648
#, fuzzy
msgctxt "russtreet-atkobject"
msgid "Street"
msgstr "الشارع"
-#: optuserpage.ui:655
+#: optuserpage.ui:666
#, fuzzy
msgctxt "ruslastname-atkobject"
msgid "Apartment number"
msgstr "رقم الشقة"
-#: optuserpage.ui:675
+#: optuserpage.ui:686
msgctxt "optuserpage|icityft"
msgid "_Zip/city:"
msgstr "المدينة/الرم_ز البريدي:"
-#: optuserpage.ui:698
+#: optuserpage.ui:709
#, fuzzy
msgctxt "icity-atkobject"
msgid "City"
msgstr "المدينة"
-#: optuserpage.ui:716
+#: optuserpage.ui:727
#, fuzzy
msgctxt "izip-atkobject"
msgid "Zip code"
msgstr "الرمز البريدي"
-#: optuserpage.ui:814
+#: optuserpage.ui:825
msgctxt "optuserpage|label1"
msgid "Address"
msgstr "العنوان"
-#: optuserpage.ui:847
+#: optuserpage.ui:861
msgctxt "optuserpage|signingkeylabel"
msgid "OpenPGP signing key:"
msgstr ""
-#: optuserpage.ui:860
+#: optuserpage.ui:875
msgctxt "optuserpage|encryptionkeylabel"
msgid "OpenPGP encryption key:"
msgstr ""
-#: optuserpage.ui:889
+#: optuserpage.ui:908
msgctxt "optuserpage|encrypttoself"
msgid "When encrypting documents, always encrypt to self"
msgstr ""
-#: optuserpage.ui:909
-#, fuzzy
-msgctxt "optuserpage|label2"
+#: optuserpage.ui:930
+msgctxt "optuserpage|cryptographylabel"
msgid "Cryptography"
-msgstr "طوبوغرافيا"
+msgstr ""
#: optviewpage.ui:47
msgctxt "optviewpage|grid3|tooltip_text"
diff --git a/source/ar/extras/source/autocorr/emoji.po b/source/ar/extras/source/autocorr/emoji.po
index f5e81396d3a..0fd7589ccaa 100644
--- a/source/ar/extras/source/autocorr/emoji.po
+++ b/source/ar/extras/source/autocorr/emoji.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: 2016-10-18 13:02+0200\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2017-11-17 17:46+0000\n"
"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1709,8 +1709,8 @@ msgctxt ""
"emoji.ulf\n"
"LIGHTNING\n"
"LngText.text"
-msgid "lighting"
-msgstr "إضاءة"
+msgid "lightning3"
+msgstr ""
#. ☈ (U+02608), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1718,8 +1718,8 @@ msgctxt ""
"emoji.ulf\n"
"THUNDERSTORM\n"
"LngText.text"
-msgid "storm"
-msgstr "عاصفة"
+msgid "storm2"
+msgstr ""
#. ☉ (U+02609), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2060,8 +2060,8 @@ msgctxt ""
"emoji.ulf\n"
"MERCURY\n"
"LngText.text"
-msgid "Mercury"
-msgstr "زئبق"
+msgid "mercury"
+msgstr ""
#. ♀ (U+02640), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2078,8 +2078,8 @@ msgctxt ""
"emoji.ulf\n"
"EARTH\n"
"LngText.text"
-msgid "Earth"
-msgstr "الأرض"
+msgid "earth"
+msgstr ""
#. ♂ (U+02642), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2096,8 +2096,8 @@ msgctxt ""
"emoji.ulf\n"
"JUPITER\n"
"LngText.text"
-msgid "Jupiter"
-msgstr "المشتري"
+msgid "jupiter"
+msgstr ""
#. ♄ (U+02644), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2105,8 +2105,8 @@ msgctxt ""
"emoji.ulf\n"
"SATURN\n"
"LngText.text"
-msgid "Saturn"
-msgstr "زحل"
+msgid "saturn"
+msgstr ""
#. ♅ (U+02645), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2114,8 +2114,8 @@ msgctxt ""
"emoji.ulf\n"
"URANUS\n"
"LngText.text"
-msgid "Uranus"
-msgstr "أورانوس"
+msgid "uranus"
+msgstr ""
#. ♆ (U+02646), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2123,8 +2123,8 @@ msgctxt ""
"emoji.ulf\n"
"NEPTUNE\n"
"LngText.text"
-msgid "Neptune"
-msgstr "نبتون"
+msgid "neptune"
+msgstr ""
#. ♇ (U+02647), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2132,8 +2132,8 @@ msgctxt ""
"emoji.ulf\n"
"PLUTO\n"
"LngText.text"
-msgid "Pluto"
-msgstr "بلوتو"
+msgid "pluto"
+msgstr ""
#. ♈ (U+02648), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2141,8 +2141,8 @@ msgctxt ""
"emoji.ulf\n"
"ARIES\n"
"LngText.text"
-msgid "Aries"
-msgstr "الحمل"
+msgid "aries"
+msgstr ""
#. ♉ (U+02649), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2150,8 +2150,8 @@ msgctxt ""
"emoji.ulf\n"
"TAURUS\n"
"LngText.text"
-msgid "Taurus"
-msgstr "الثور"
+msgid "taurus"
+msgstr ""
#. ♊ (U+0264A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2159,8 +2159,8 @@ msgctxt ""
"emoji.ulf\n"
"GEMINI\n"
"LngText.text"
-msgid "Gemini"
-msgstr "الجوزاء"
+msgid "gemini"
+msgstr ""
#. ♋ (U+0264B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2168,8 +2168,8 @@ msgctxt ""
"emoji.ulf\n"
"CANCER\n"
"LngText.text"
-msgid "Cancer"
-msgstr "السرطان"
+msgid "cancer"
+msgstr ""
#. ♌ (U+0264C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2177,8 +2177,8 @@ msgctxt ""
"emoji.ulf\n"
"LEO\n"
"LngText.text"
-msgid "Leo"
-msgstr "الأسد"
+msgid "leo"
+msgstr ""
#. ♍ (U+0264D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2186,8 +2186,8 @@ msgctxt ""
"emoji.ulf\n"
"VIRGO\n"
"LngText.text"
-msgid "Virgo"
-msgstr "العذراء"
+msgid "virgo"
+msgstr ""
#. ♎ (U+0264E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2195,8 +2195,8 @@ msgctxt ""
"emoji.ulf\n"
"LIBRA\n"
"LngText.text"
-msgid "Libra"
-msgstr "الميزان"
+msgid "libra"
+msgstr ""
#. ♏ (U+0264F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2204,8 +2204,8 @@ msgctxt ""
"emoji.ulf\n"
"SCORPIUS\n"
"LngText.text"
-msgid "Scorpius"
-msgstr "العقرب"
+msgid "scorpius"
+msgstr ""
#. ♐ (U+02650), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2213,8 +2213,8 @@ msgctxt ""
"emoji.ulf\n"
"SAGITTARIUS\n"
"LngText.text"
-msgid "Sagittarius"
-msgstr "القوس"
+msgid "sagittarius"
+msgstr ""
#. ♑ (U+02651), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2222,8 +2222,8 @@ msgctxt ""
"emoji.ulf\n"
"CAPRICORN\n"
"LngText.text"
-msgid "Capricorn"
-msgstr "الجدي"
+msgid "capricorn"
+msgstr ""
#. ♒ (U+02652), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2231,8 +2231,8 @@ msgctxt ""
"emoji.ulf\n"
"AQUARIUS\n"
"LngText.text"
-msgid "Aquarius"
-msgstr "الدلو"
+msgid "aquarius"
+msgstr ""
#. ♓ (U+02653), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2240,8 +2240,8 @@ msgctxt ""
"emoji.ulf\n"
"PISCES\n"
"LngText.text"
-msgid "Pisces"
-msgstr "الحوت"
+msgid "pisces"
+msgstr ""
#. ♔ (U+02654), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2601,8 +2601,8 @@ msgctxt ""
"emoji.ulf\n"
"WHITE_FLAG\n"
"LngText.text"
-msgid "flag"
-msgstr "علم"
+msgid "flag4"
+msgstr ""
#. ⚑ (U+02691), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2610,8 +2610,8 @@ msgctxt ""
"emoji.ulf\n"
"BLACK_FLAG\n"
"LngText.text"
-msgid "flag2"
-msgstr "علم2"
+msgid "flag3"
+msgstr ""
#. ⚒ (U+02692), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2918,8 +2918,8 @@ msgctxt ""
"emoji.ulf\n"
"BLACK_CROSS_ON_SHIELD\n"
"LngText.text"
-msgid "shield"
-msgstr "درع"
+msgid "shield2"
+msgstr ""
#. ⛪ (U+026EA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2963,8 +2963,8 @@ msgctxt ""
"emoji.ulf\n"
"FLAG_IN_HOLE\n"
"LngText.text"
-msgid "golf"
-msgstr "غولف"
+msgid "golf2"
+msgstr ""
#. ⛴ (U+026F4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3694,8 +3694,8 @@ msgctxt ""
"emoji.ulf\n"
"FOGGY\n"
"LngText.text"
-msgid "fog"
-msgstr "ضباب"
+msgid "foggy"
+msgstr ""
#. 🌂 (U+1F302), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3793,8 +3793,8 @@ msgctxt ""
"emoji.ulf\n"
"MILKY_WAY\n"
"LngText.text"
-msgid "Milky way"
-msgstr "درب التبانة"
+msgid "milky way"
+msgstr ""
#. 🌍 (U+1F30D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4047,7 +4047,7 @@ msgctxt ""
"emoji.ulf\n"
"CHERRY_BLOSSOM\n"
"LngText.text"
-msgid "cherry blossom"
+msgid "blossom2"
msgstr ""
#. 🌹 (U+1F339), see http://wiki.documentfoundation.org/Emoji
@@ -4281,8 +4281,8 @@ msgctxt ""
"emoji.ulf\n"
"CHERRIES\n"
"LngText.text"
-msgid "cherries"
-msgstr "كرز"
+msgid "cherry"
+msgstr ""
#. 🍓 (U+1F353), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4580,8 +4580,8 @@ msgctxt ""
"emoji.ulf\n"
"COOKING\n"
"LngText.text"
-msgid "egg"
-msgstr "بيض"
+msgid "cooking"
+msgstr ""
#. 🍴 (U+1F374), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4617,7 +4617,7 @@ msgctxt ""
"emoji.ulf\n"
"WINE_GLASS\n"
"LngText.text"
-msgid "wine glass"
+msgid "glass"
msgstr ""
#. 🍸 (U+1F378), see http://wiki.documentfoundation.org/Emoji
@@ -4635,7 +4635,7 @@ msgctxt ""
"emoji.ulf\n"
"TROPICAL_DRINK\n"
"LngText.text"
-msgid "tropical drink"
+msgid "drink2"
msgstr ""
#. 🍺 (U+1F37A), see http://wiki.documentfoundation.org/Emoji
@@ -4671,7 +4671,7 @@ msgctxt ""
"emoji.ulf\n"
"RIBBON\n"
"LngText.text"
-msgid "ribbon"
+msgid "ribbon2"
msgstr ""
#. 🎁 (U+1F381), see http://wiki.documentfoundation.org/Emoji
@@ -4698,8 +4698,8 @@ msgctxt ""
"emoji.ulf\n"
"JACK-O-LANTERN\n"
"LngText.text"
-msgid "Halloween"
-msgstr "هالوين"
+msgid "halloween"
+msgstr ""
#. 🎄 (U+1F384), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4707,8 +4707,8 @@ msgctxt ""
"emoji.ulf\n"
"CHRISTMAS_TREE\n"
"LngText.text"
-msgid "Christmas"
-msgstr "عيد الميلاد"
+msgid "christmas"
+msgstr ""
#. 🎅 (U+1F385), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4716,7 +4716,7 @@ msgctxt ""
"emoji.ulf\n"
"FATHER_CHRISTMAS\n"
"LngText.text"
-msgid "Santa"
+msgid "santa"
msgstr ""
#. 🎆 (U+1F386), see http://wiki.documentfoundation.org/Emoji
@@ -4761,7 +4761,7 @@ msgctxt ""
"emoji.ulf\n"
"CONFETTI_BALL\n"
"LngText.text"
-msgid "confetti ball"
+msgid "party2"
msgstr ""
#. 🎋 (U+1F38B), see http://wiki.documentfoundation.org/Emoji
@@ -4852,8 +4852,8 @@ msgctxt ""
"emoji.ulf\n"
"CAROUSEL_HORSE\n"
"LngText.text"
-msgid "carousel horse"
-msgstr "دوامة أحصنة"
+msgid "fair2"
+msgstr ""
#. 🎡 (U+1F3A1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4861,7 +4861,7 @@ msgctxt ""
"emoji.ulf\n"
"FERRIS_WHEEL\n"
"LngText.text"
-msgid "ferris wheel"
+msgid "fair"
msgstr ""
#. 🎢 (U+1F3A2), see http://wiki.documentfoundation.org/Emoji
@@ -4942,8 +4942,8 @@ msgctxt ""
"emoji.ulf\n"
"CIRCUS_TENT\n"
"LngText.text"
-msgid "circus tent"
-msgstr "خيمة سيرك"
+msgid "circus"
+msgstr ""
#. 🎫 (U+1F3AB), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5151,8 +5151,8 @@ msgctxt ""
"emoji.ulf\n"
"CHEQUERED_FLAG\n"
"LngText.text"
-msgid "flag3"
-msgstr "علم3"
+msgid "race"
+msgstr ""
#. 🏂 (U+1F3C2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5196,8 +5196,8 @@ msgctxt ""
"emoji.ulf\n"
"HORSE_RACING\n"
"LngText.text"
-msgid "horse racing"
-msgstr "سباق خيول"
+msgid "horse3"
+msgstr ""
#. 🏈 (U+1F3C8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6924,8 +6924,8 @@ msgctxt ""
"emoji.ulf\n"
"MONEY_BAG\n"
"LngText.text"
-msgid "moneybag"
-msgstr "حقيبة نقود"
+msgid "money2"
+msgstr ""
#. 💱 (U+1F4B1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6933,8 +6933,8 @@ msgctxt ""
"emoji.ulf\n"
"CURRENCY_EXCHANGE\n"
"LngText.text"
-msgid "currency exchange"
-msgstr "تبادل العملات"
+msgid "exchange"
+msgstr ""
#. 💲 (U+1F4B2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7005,8 +7005,8 @@ msgctxt ""
"emoji.ulf\n"
"CHART_WITH_UPWARDS_TREND_AND_YEN_SIGN\n"
"LngText.text"
-msgid "chart"
-msgstr "رسم بياني"
+msgid "chart4"
+msgstr ""
#. 💺 (U+1F4BA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7095,7 +7095,7 @@ msgctxt ""
"emoji.ulf\n"
"PAGE_WITH_CURL\n"
"LngText.text"
-msgid "page with curl"
+msgid "page3"
msgstr ""
#. 📄 (U+1F4C4), see http://wiki.documentfoundation.org/Emoji
@@ -7104,7 +7104,7 @@ msgctxt ""
"emoji.ulf\n"
"PAGE_FACING_UP\n"
"LngText.text"
-msgid "page facing up"
+msgid "page"
msgstr ""
#. 📅 (U+1F4C5), see http://wiki.documentfoundation.org/Emoji
@@ -7136,13 +7136,12 @@ msgstr ""
#. 📈 (U+1F4C8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CHART_WITH_UPWARDS_TREND\n"
"LngText.text"
-msgid "char"
-msgstr "رسم بياني"
+msgid "chart"
+msgstr ""
#. 📉 (U+1F4C9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7258,8 +7257,8 @@ msgctxt ""
"emoji.ulf\n"
"CLOSED_BOOK\n"
"LngText.text"
-msgid "book"
-msgstr "كتاب"
+msgid "book2"
+msgstr ""
#. 📖 (U+1F4D6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7267,8 +7266,8 @@ msgctxt ""
"emoji.ulf\n"
"OPEN_BOOK\n"
"LngText.text"
-msgid "book2"
-msgstr "كتاب2"
+msgid "book3"
+msgstr ""
#. 📚 (U+1F4DA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7341,8 +7340,8 @@ msgctxt ""
"emoji.ulf\n"
"SATELLITE_ANTENNA\n"
"LngText.text"
-msgid "satellite"
-msgstr "ستالايت"
+msgid "antenna"
+msgstr ""
#. 📢 (U+1F4E2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7407,8 +7406,8 @@ msgctxt ""
"emoji.ulf\n"
"INCOMING_ENVELOPE\n"
"LngText.text"
-msgid "envelope2"
-msgstr "مغلف2"
+msgid "envelope7"
+msgstr ""
#. 📩 (U+1F4E9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7416,8 +7415,8 @@ msgctxt ""
"emoji.ulf\n"
"ENVELOPE_WITH_DOWNWARDS_ARROW_ABOVE\n"
"LngText.text"
-msgid "envelope3"
-msgstr "مغلف3"
+msgid "envelope8"
+msgstr ""
#. 📪 (U+1F4EA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8240,8 +8239,8 @@ msgctxt ""
"emoji.ulf\n"
"SMILING_FACE_WITH_OPEN_MOUTH_AND_TIGHTLY-CLOSED_EYES\n"
"LngText.text"
-msgid "laughing"
-msgstr "قهقهة"
+msgid "laugh"
+msgstr ""
#. 😇 (U+1F607), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8312,8 +8311,8 @@ msgctxt ""
"emoji.ulf\n"
"SMILING_FACE_WITH_SUNGLASSES\n"
"LngText.text"
-msgid "sunglasses"
-msgstr "نظارات شمسية"
+msgid "sunglasses2"
+msgstr ""
#. 😏 (U+1F60F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8781,8 +8780,8 @@ msgctxt ""
"emoji.ulf\n"
"FACE_WITH_OK_GESTURE\n"
"LngText.text"
-msgid "ok2"
-msgstr "موافق2"
+msgid "ok3"
+msgstr ""
#. 🙇 (U+1F647), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8790,8 +8789,8 @@ msgctxt ""
"emoji.ulf\n"
"PERSON_BOWING_DEEPLY\n"
"LngText.text"
-msgid "bow"
-msgstr "انحناء"
+msgid "prostration"
+msgstr ""
#. 🙈 (U+1F648), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8889,7 +8888,7 @@ msgctxt ""
"emoji.ulf\n"
"STEAM_LOCOMOTIVE\n"
"LngText.text"
-msgid "steam locomotive"
+msgid "locomotive"
msgstr ""
#. 🚃 (U+1F683), see http://wiki.documentfoundation.org/Emoji
@@ -9376,8 +9375,8 @@ msgctxt ""
"emoji.ulf\n"
"CHILDREN_CROSSING\n"
"LngText.text"
-msgid "children crossing"
-msgstr "أطفال يعبرون"
+msgid "crosswalk"
+msgstr ""
#. 🚹 (U+1F6B9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9497,6 +9496,3714 @@ msgctxt ""
msgid "left luggage"
msgstr "ترك الأمتعة"
+#. 🕃 (U+1F543), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTCHED_LEFT_SEMICIRCLE_WITH_THREE_DOTS\n"
+"LngText.text"
+msgid "feast"
+msgstr ""
+
+#. 🙂 (U+1F642), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLIGHTLY_SMILING_FACE\n"
+"LngText.text"
+msgid "smiling3"
+msgstr ""
+
+#. 🙁 (U+1F641), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLIGHTLY_FROWNING_FACE\n"
+"LngText.text"
+msgid "frowning2"
+msgstr ""
+
+#. 🕵 (U+1F575), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLEUTH_OR_SPY\n"
+"LngText.text"
+msgid "detective"
+msgstr ""
+
+#. 🛌 (U+1F6CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLEEPING_ACCOMMODATION\n"
+"LngText.text"
+msgid "sleep"
+msgstr ""
+
+#. 🕴 (U+1F574), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_IN_BUSINESS_SUIT_LEVITATING\n"
+"LngText.text"
+msgid "suit"
+msgstr ""
+
+#. 🗣 (U+1F5E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPEAKING_HEAD_IN_SILHOUETTE\n"
+"LngText.text"
+msgid "head"
+msgstr ""
+
+#. 🏌 (U+1F3CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GOLFER\n"
+"LngText.text"
+msgid "golf"
+msgstr ""
+
+#. 🏋 (U+1F3CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WEIGHT_LIFTER\n"
+"LngText.text"
+msgid "weight lifter"
+msgstr ""
+
+#. 🏎 (U+1F3CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RACING_CAR\n"
+"LngText.text"
+msgid "car4"
+msgstr ""
+
+#. 🏍 (U+1F3CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RACING_MOTORCYCLE\n"
+"LngText.text"
+msgid "motorcycle"
+msgstr ""
+
+#. 🖕 (U+1F595), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_HAND_WITH_MIDDLE_FINGER_EXTENDED\n"
+"LngText.text"
+msgid "finger"
+msgstr ""
+
+#. 🖖 (U+1F596), Mr. Spock's Vulcan salute from Star Trek, see also http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_HAND_WITH_PART_BETWEEN_MIDDLE_AND_RING_FINGERS\n"
+"LngText.text"
+msgid "spock"
+msgstr ""
+
+#. 🖐 (U+1F590), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_HAND_WITH_FINGERS_SPLAYED\n"
+"LngText.text"
+msgid "hand2"
+msgstr ""
+
+#. 👁 (U+1F441), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EYE\n"
+"LngText.text"
+msgid "eye"
+msgstr ""
+
+#. 🗨 (U+1F5E8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_SPEECH_BUBBLE\n"
+"LngText.text"
+msgid "bubble"
+msgstr ""
+
+#. 🗯 (U+1F5EF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_ANGER_BUBBLE\n"
+"LngText.text"
+msgid "bubble4"
+msgstr ""
+
+#. 🕳 (U+1F573), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOLE\n"
+"LngText.text"
+msgid "hole"
+msgstr ""
+
+#. 🕶 (U+1F576), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DARK_SUNGLASSES\n"
+"LngText.text"
+msgid "sunglasses"
+msgstr ""
+
+#. 🛍 (U+1F6CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOPPING_BAGS\n"
+"LngText.text"
+msgid "shop"
+msgstr ""
+
+#. 🐿 (U+1F43F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHIPMUNK\n"
+"LngText.text"
+msgid "chipmunk"
+msgstr ""
+
+#. 🕊 (U+1F54A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOVE_OF_PEACE\n"
+"LngText.text"
+msgid "dove"
+msgstr ""
+
+#. 🕷 (U+1F577), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIDER\n"
+"LngText.text"
+msgid "spider"
+msgstr ""
+
+#. 🕸 (U+1F578), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIDER_WEB\n"
+"LngText.text"
+msgid "web"
+msgstr ""
+
+#. 🏵 (U+1F3F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROSETTE\n"
+"LngText.text"
+msgid "rosette"
+msgstr ""
+
+#. 🌶 (U+1F336), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOT_PEPPER\n"
+"LngText.text"
+msgid "pepper"
+msgstr ""
+
+#. 🍽 (U+1F37D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FORK_AND_KNIFE_WITH_PLATE\n"
+"LngText.text"
+msgid "plate"
+msgstr ""
+
+#. 🗺 (U+1F5FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WORLD_MAP\n"
+"LngText.text"
+msgid "map"
+msgstr ""
+
+#. 🏔 (U+1F3D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SNOW_CAPPED_MOUNTAIN\n"
+"LngText.text"
+msgid "mountain2"
+msgstr ""
+
+#. 🏕 (U+1F3D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CAMPING\n"
+"LngText.text"
+msgid "camping"
+msgstr ""
+
+#. 🏖 (U+1F3D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEACH_WITH_UMBRELLA\n"
+"LngText.text"
+msgid "beach"
+msgstr ""
+
+#. 🏜 (U+1F3DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESERT\n"
+"LngText.text"
+msgid "desert"
+msgstr ""
+
+#. 🏝 (U+1F3DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESERT_ISLAND\n"
+"LngText.text"
+msgid "island"
+msgstr ""
+
+#. 🏞 (U+1F3DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NATIONAL_PARK\n"
+"LngText.text"
+msgid "park"
+msgstr ""
+
+#. 🏟 (U+1F3DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STADIUM\n"
+"LngText.text"
+msgid "stadium"
+msgstr ""
+
+#. 🏛 (U+1F3DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLASSICAL_BUILDING\n"
+"LngText.text"
+msgid "museum"
+msgstr ""
+
+#. 🏗 (U+1F3D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BUILDING_CONSTRUCTION\n"
+"LngText.text"
+msgid "crane"
+msgstr ""
+
+#. 🏘 (U+1F3D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOUSE_BUILDINGS\n"
+"LngText.text"
+msgid "houses"
+msgstr ""
+
+#. 🏚 (U+1F3DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DERELICT_HOUSE_BUILDING\n"
+"LngText.text"
+msgid "house3"
+msgstr ""
+
+#. 🏙 (U+1F3D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CITYSCAPE\n"
+"LngText.text"
+msgid "city"
+msgstr ""
+
+#. 🛣 (U+1F6E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTORWAY\n"
+"LngText.text"
+msgid "motorway"
+msgstr ""
+
+#. 🛤 (U+1F6E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAILWAY_TRACK\n"
+"LngText.text"
+msgid "track"
+msgstr ""
+
+#. 🛢 (U+1F6E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OIL_DRUM\n"
+"LngText.text"
+msgid "drum"
+msgstr ""
+
+#. 🛳 (U+1F6F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PASSENGER_SHIP\n"
+"LngText.text"
+msgid "ship2"
+msgstr ""
+
+#. 🛥 (U+1F6E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTOR_BOAT\n"
+"LngText.text"
+msgid "motor boat"
+msgstr ""
+
+#. 🛩 (U+1F6E9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SMALL_AIRPLANE\n"
+"LngText.text"
+msgid "airplane2"
+msgstr ""
+
+#. 🛫 (U+1F6EB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AIRPLANE_DEPARTURE\n"
+"LngText.text"
+msgid "departure"
+msgstr ""
+
+#. 🛬 (U+1F6EC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AIRPLANE_ARRIVING\n"
+"LngText.text"
+msgid "arrival"
+msgstr ""
+
+#. 🛰 (U+1F6F0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SATELLITE\n"
+"LngText.text"
+msgid "satellite"
+msgstr ""
+
+#. 🛎 (U+1F6CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BELLHOP_BELL\n"
+"LngText.text"
+msgid "bell2"
+msgstr ""
+
+#. 🕰 (U+1F570), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MANTELPIECE_CLOCK\n"
+"LngText.text"
+msgid "clock"
+msgstr ""
+
+#. 🌡 (U+1F321), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THERMOMETER\n"
+"LngText.text"
+msgid "thermometer"
+msgstr ""
+
+#. 🌤 (U+1F324), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_WITH_SMALL_CLOUD\n"
+"LngText.text"
+msgid "cloudy"
+msgstr ""
+
+#. 🌥 (U+1F325), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_BEHIND_CLOUD\n"
+"LngText.text"
+msgid "cloudy2"
+msgstr ""
+
+#. 🌦 (U+1F326), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_BEHIND_CLOUD_WITH_RAIN\n"
+"LngText.text"
+msgid "rainy"
+msgstr ""
+
+#. 🌧 (U+1F327), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_RAIN\n"
+"LngText.text"
+msgid "storm"
+msgstr ""
+
+#. 🌨 (U+1F328), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_SNOW\n"
+"LngText.text"
+msgid "snow"
+msgstr ""
+
+#. 🌩 (U+1F329), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_LIGHTNING\n"
+"LngText.text"
+msgid "lightning"
+msgstr ""
+
+#. 🌪 (U+1F32A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_TORNADO\n"
+"LngText.text"
+msgid "tornado"
+msgstr ""
+
+#. 🌫 (U+1F32B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOG\n"
+"LngText.text"
+msgid "fog"
+msgstr ""
+
+#. 🌬 (U+1F32C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WIND_BLOWING_FACE\n"
+"LngText.text"
+msgid "wind"
+msgstr ""
+
+#. 🎗 (U+1F397), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REMINDER_RIBBON\n"
+"LngText.text"
+msgid "ribbon"
+msgstr ""
+
+#. 🎟 (U+1F39F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ADMISSION_TICKETS\n"
+"LngText.text"
+msgid "ticket2"
+msgstr ""
+
+#. 🎖 (U+1F396), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MILITARY_MEDAL\n"
+"LngText.text"
+msgid "medal2"
+msgstr ""
+
+#. 🏅 (U+1F3C5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPORTS_MEDAL\n"
+"LngText.text"
+msgid "medal"
+msgstr ""
+
+#. 🕹 (U+1F579), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"JOYSTICK\n"
+"LngText.text"
+msgid "joystick"
+msgstr ""
+
+#. 🖼 (U+1F5BC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_PICTURE\n"
+"LngText.text"
+msgid "picture"
+msgstr ""
+
+#. 🎙 (U+1F399), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STUDIO_MICROPHONE\n"
+"LngText.text"
+msgid "microphone2"
+msgstr ""
+
+#. 🎚 (U+1F39A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEVEL_SLIDER\n"
+"LngText.text"
+msgid "slider"
+msgstr ""
+
+#. 🎛 (U+1F39B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CONTROL_KNOBS\n"
+"LngText.text"
+msgid "control"
+msgstr ""
+
+#. 🖥 (U+1F5A5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESKTOP_COMPUTER\n"
+"LngText.text"
+msgid "computer2"
+msgstr ""
+
+#. 🖨 (U+1F5A8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINTER\n"
+"LngText.text"
+msgid "printer"
+msgstr ""
+
+#. 🖱 (U+1F5B1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse3"
+msgstr ""
+
+#. 🖲 (U+1F5B2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TRACKBALL\n"
+"LngText.text"
+msgid "trackball"
+msgstr ""
+
+#. 🎞 (U+1F39E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILM_FRAMES\n"
+"LngText.text"
+msgid "film"
+msgstr ""
+
+#. 📽 (U+1F4FD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILM_PROJECTOR\n"
+"LngText.text"
+msgid "projector"
+msgstr ""
+
+#. 📸 (U+1F4F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CAMERA_WITH_FLASH\n"
+"LngText.text"
+msgid "flash"
+msgstr ""
+
+#. 🕯 (U+1F56F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANDLE\n"
+"LngText.text"
+msgid "candle"
+msgstr ""
+
+#. 🗞 (U+1F5DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROLLED-UP_NEWSPAPER\n"
+"LngText.text"
+msgid "newspaper2"
+msgstr ""
+
+#. 🏷 (U+1F3F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LABEL\n"
+"LngText.text"
+msgid "label"
+msgstr ""
+
+#. 🗳 (U+1F5F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BALLOT\n"
+"LngText.text"
+msgid "ballot"
+msgstr ""
+
+#. 🖋 (U+1F58B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_FOUNTAIN_PEN\n"
+"LngText.text"
+msgid "pen2"
+msgstr ""
+
+#. 🖊 (U+1F58A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_BALLPOINT_PEN\n"
+"LngText.text"
+msgid "pen"
+msgstr ""
+
+#. 🖌 (U+1F58C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_PAINTBRUSH\n"
+"LngText.text"
+msgid "paintbrush"
+msgstr ""
+
+#. 🖍 (U+1F58D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_CRAYON\n"
+"LngText.text"
+msgid "crayon"
+msgstr ""
+
+#. 🗂 (U+1F5C2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARD_INDEX_DIVIDERS\n"
+"LngText.text"
+msgid "index"
+msgstr ""
+
+#. 🗒 (U+1F5D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIRAL_NOTE_PAD\n"
+"LngText.text"
+msgid "notepad"
+msgstr ""
+
+#. 🗓 (U+1F5D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIRAL_CALENDAR_PAD\n"
+"LngText.text"
+msgid "calendar3"
+msgstr ""
+
+#. 🖇 (U+1F587), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LINKED_PAPERCLIPS\n"
+"LngText.text"
+msgid "paperclip2"
+msgstr ""
+
+#. 🗃 (U+1F5C3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARD_FILE_BOX\n"
+"LngText.text"
+msgid "box"
+msgstr ""
+
+#. 🗄 (U+1F5C4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILE_CABINET\n"
+"LngText.text"
+msgid "cabinet"
+msgstr ""
+
+#. 🗑 (U+1F5D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WASTEBASKET\n"
+"LngText.text"
+msgid "wastebasket"
+msgstr ""
+
+#. 🗝 (U+1F5DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLD_KEY\n"
+"LngText.text"
+msgid "key2"
+msgstr ""
+
+#. 🛠 (U+1F6E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HAMMER_AND_WRENCH\n"
+"LngText.text"
+msgid "hammer and wrench"
+msgstr ""
+
+#. 🗡 (U+1F5E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DAGGER_KNIFE\n"
+"LngText.text"
+msgid "knife2"
+msgstr ""
+
+#. 🛡 (U+1F6E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHIELD\n"
+"LngText.text"
+msgid "shield"
+msgstr ""
+
+#. 🗜 (U+1F5DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COMPRESSION\n"
+"LngText.text"
+msgid "clamp"
+msgstr ""
+
+#. 🛏 (U+1F6CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BED\n"
+"LngText.text"
+msgid "bed"
+msgstr ""
+
+#. 🛋 (U+1F6CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COUCH_AND_LAMP\n"
+"LngText.text"
+msgid "couch"
+msgstr ""
+
+#. 🕉 (U+1F549), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OM_SYMBOL\n"
+"LngText.text"
+msgid "om"
+msgstr ""
+
+#. ⏸ (U+23F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOUBLE_VERTICAL_BAR\n"
+"LngText.text"
+msgid "pause"
+msgstr ""
+
+#. ⏹ (U+23F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_SQUARE_FOR_STOP\n"
+"LngText.text"
+msgid "stop2"
+msgstr ""
+
+#. ⏺ (U+23FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_CIRCLE_FOR_RECORD\n"
+"LngText.text"
+msgid "record"
+msgstr ""
+
+#. 🏴 (U+1F3F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WAVING_BLACK_FLAG\n"
+"LngText.text"
+msgid "flag"
+msgstr ""
+
+#. 🏳 (U+1F3F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WAVING_WHITE_FLAG\n"
+"LngText.text"
+msgid "flag2"
+msgstr ""
+
+#. 🗷 (U+1F5F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BOLD_SCRIPT_X\n"
+"LngText.text"
+msgid "checkbox4"
+msgstr ""
+
+#. 🛉 (U+1F6C9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOYS_SYMBOL\n"
+"LngText.text"
+msgid "boys"
+msgstr ""
+
+#. 🛈 (U+1F6C8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CIRCLED_INFORMATION_SOURCE\n"
+"LngText.text"
+msgid "information3"
+msgstr ""
+
+#. 🛊 (U+1F6CA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GIRLS_SYMBOL\n"
+"LngText.text"
+msgid "girls"
+msgstr ""
+
+#. 🛨 (U+1F6E8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_SMALL_AIRPLANE\n"
+"LngText.text"
+msgid "airplane4"
+msgstr ""
+
+#. 🛲 (U+1F6F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DIESEL_LOCOMOTIVE\n"
+"LngText.text"
+msgid "locomotive2"
+msgstr ""
+
+#. 🛧 (U+1F6E7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_AIRPLANE\n"
+"LngText.text"
+msgid "airplane3"
+msgstr ""
+
+#. 🛱 (U+1F6F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ONCOMING_FIRE_ENGINE\n"
+"LngText.text"
+msgid "fire engine2"
+msgstr ""
+
+#. 🛦 (U+1F6E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_MILITARY_AIRPLANE\n"
+"LngText.text"
+msgid "airplane5"
+msgstr ""
+
+#. 🛪 (U+1F6EA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NORTHEAST-POINTING_AIRPLANE\n"
+"LngText.text"
+msgid "airplane6"
+msgstr ""
+
+#. 🗭 (U+1F5ED), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_THOUGHT_BUBBLE\n"
+"LngText.text"
+msgid "bubble5"
+msgstr ""
+
+#. 🗱 (U+1F5F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHTNING_MOOD_BUBBLE\n"
+"LngText.text"
+msgid "bubble6"
+msgstr ""
+
+#. 🗬 (U+1F5EC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_THOUGHT_BUBBLE\n"
+"LngText.text"
+msgid "bubble7"
+msgstr ""
+
+#. 🗠 (U+1F5E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STOCK_CHART\n"
+"LngText.text"
+msgid "chart5"
+msgstr ""
+
+#. 🗟 (U+1F5DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGE_WITH_CIRCLED_TEXT\n"
+"LngText.text"
+msgid "page4"
+msgstr ""
+
+#. 🖎 (U+1F58E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_WRITING_HAND\n"
+"LngText.text"
+msgid "writing2"
+msgstr ""
+
+#. 🗦 (U+1F5E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_LEFT\n"
+"LngText.text"
+msgid "rays"
+msgstr ""
+
+#. 🎝 (U+1F39D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEAMED_DESCENDING_MUSICAL_NOTES\n"
+"LngText.text"
+msgid "notes3"
+msgstr ""
+
+#. 🔾 (U+1F53E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_RIGHT_SHADOWED_WHITE_CIRCLE\n"
+"LngText.text"
+msgid "circle3"
+msgstr ""
+
+#. 🎜 (U+1F39C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEAMED_ASCENDING_MUSICAL_NOTES\n"
+"LngText.text"
+msgid "notes4"
+msgstr ""
+
+#. 🕮 (U+1F56E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOOK\n"
+"LngText.text"
+msgid "book"
+msgstr ""
+
+#. 🗛 (U+1F5DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DECREASE_FONT_SIZE_SYMBOL\n"
+"LngText.text"
+msgid "font"
+msgstr ""
+
+#. 🔿 (U+1F53F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UPPER_RIGHT_SHADOWED_WHITE_CIRCLE\n"
+"LngText.text"
+msgid "circle4"
+msgstr ""
+
+#. 🕫 (U+1F56B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BULLHORN\n"
+"LngText.text"
+msgid "bullhorn"
+msgstr ""
+
+#. 🕬 (U+1F56C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BULLHORN_WITH_SOUND_WAVES\n"
+"LngText.text"
+msgid "bullhorn2"
+msgstr ""
+
+#. 🕻 (U+1F57B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_HAND_TELEPHONE_RECEIVER\n"
+"LngText.text"
+msgid "receiver2"
+msgstr ""
+
+#. 🕾 (U+1F57E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_TOUCHTONE_TELEPHONE\n"
+"LngText.text"
+msgid "phone3"
+msgstr ""
+
+#. 🕼 (U+1F57C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TELEPHONE_RECEIVER_WITH_PAGE\n"
+"LngText.text"
+msgid "receiver4"
+msgstr ""
+
+#. 🕽 (U+1F57D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_HAND_TELEPHONE_RECEIVER\n"
+"LngText.text"
+msgid "receiver3"
+msgstr ""
+
+#. 🕿 (U+1F57F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_TOUCHTONE_TELEPHONE\n"
+"LngText.text"
+msgid "phone4"
+msgstr ""
+
+#. 🖚 (U+1F59A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_LEFT_POINTING_INDEX\n"
+"LngText.text"
+msgid "left4"
+msgstr ""
+
+#. 🖏 (U+1F58F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TURNED_OK_HAND_SIGN\n"
+"LngText.text"
+msgid "ok2"
+msgstr ""
+
+#. 🖜 (U+1F59C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_LEFT_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "left5"
+msgstr ""
+
+#. 🗥 (U+1F5E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_BELOW\n"
+"LngText.text"
+msgid "rays2"
+msgstr ""
+
+#. 🖛 (U+1F59B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_RIGHT_POINTING_INDEX\n"
+"LngText.text"
+msgid "right4"
+msgstr ""
+
+#. 🖟 (U+1F59F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_DOWN_POINTING_INDEX\n"
+"LngText.text"
+msgid "down3"
+msgstr ""
+
+#. 🖞 (U+1F59E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_UP_POINTING_INDEX\n"
+"LngText.text"
+msgid "up3"
+msgstr ""
+
+#. 🌢 (U+1F322), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_DROPLET\n"
+"LngText.text"
+msgid "droplet2"
+msgstr ""
+
+#. 🎘 (U+1F398), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MUSICAL_KEYBOARD_WITH_JACKS\n"
+"LngText.text"
+msgid "synthesizer"
+msgstr ""
+
+#. 🎕 (U+1F395), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOUQUET_OF_FLOWERS\n"
+"LngText.text"
+msgid "bouquet2"
+msgstr ""
+
+#. 🎔 (U+1F394), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEART_WITH_TIP_ON_THE_LEFT\n"
+"LngText.text"
+msgid "heart2"
+msgstr ""
+
+#. 🕱 (U+1F571), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_SKULL_AND_CROSSBONES\n"
+"LngText.text"
+msgid "pirate"
+msgstr ""
+
+#. 🖀 (U+1F580), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TELEPHONE_ON_TOP_OF_MODEM\n"
+"LngText.text"
+msgid "modem"
+msgstr ""
+
+#. 🕲 (U+1F572), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NO_PIRACY\n"
+"LngText.text"
+msgid "no piracy"
+msgstr ""
+
+#. 🕅 (U+1F545), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SYMBOL_FOR_MARKS_CHAPTER\n"
+"LngText.text"
+msgid "marks chapter"
+msgstr ""
+
+#. 🕈 (U+1F548), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CELTIC_CROSS\n"
+"LngText.text"
+msgid "Celtic cross"
+msgstr ""
+
+#. 🖗 (U+1F597), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_DOWN_POINTING_LEFT_HAND_INDEX\n"
+"LngText.text"
+msgid "down4"
+msgstr ""
+
+#. 🖆 (U+1F586), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEN_OVER_STAMPED_ENVELOPE\n"
+"LngText.text"
+msgid "envelope4"
+msgstr ""
+
+#. 🖃 (U+1F583), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STAMPED_ENVELOPE\n"
+"LngText.text"
+msgid "envelope2"
+msgstr ""
+
+#. 🗤 (U+1F5E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_ABOVE\n"
+"LngText.text"
+msgid "rays3"
+msgstr ""
+
+#. 🖉 (U+1F589), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_PENCIL\n"
+"LngText.text"
+msgid "pencil4"
+msgstr ""
+
+#. 🖂 (U+1F582), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BACK_OF_ENVELOPE\n"
+"LngText.text"
+msgid "envelope3"
+msgstr ""
+
+#. 🖈 (U+1F588), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_PUSHPIN\n"
+"LngText.text"
+msgid "tack"
+msgstr ""
+
+#. 🖄 (U+1F584), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ENVELOPE_WITH_LIGHTNING\n"
+"LngText.text"
+msgid "envelope5"
+msgstr ""
+
+#. 🖁 (U+1F581), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLAMSHELL_MOBILE_PHONE\n"
+"LngText.text"
+msgid "mobile2"
+msgstr ""
+
+#. 🖅 (U+1F585), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FLYING_ENVELOPE\n"
+"LngText.text"
+msgid "envelope6"
+msgstr ""
+
+#. 🖘 (U+1F598), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_LEFT_POINTING_INDEX\n"
+"LngText.text"
+msgid "left6"
+msgstr ""
+
+#. 🖙 (U+1F599), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_RIGHT_POINTING_INDEX\n"
+"LngText.text"
+msgid "right5"
+msgstr ""
+
+#. 🗖 (U+1F5D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAXIMIZE\n"
+"LngText.text"
+msgid "maximize"
+msgstr ""
+
+#. 🗗 (U+1F5D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OVERLAP\n"
+"LngText.text"
+msgid "overlap"
+msgstr ""
+
+#. 🗏 (U+1F5CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGE\n"
+"LngText.text"
+msgid "page2"
+msgstr ""
+
+#. 🗐 (U+1F5D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGES\n"
+"LngText.text"
+msgid "pages"
+msgstr ""
+
+#. 🗘 (U+1F5D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOCKWISE_RIGHT_AND_LEFT_SEMICIRCLE_ARROWS\n"
+"LngText.text"
+msgid "arrows"
+msgstr ""
+
+#. 🗚 (U+1F5DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"INCREASE_FONT_SIZE_SYMBOL\n"
+"LngText.text"
+msgid "font2"
+msgstr ""
+
+#. 🗕 (U+1F5D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MINIMIZE\n"
+"LngText.text"
+msgid "minimize"
+msgstr ""
+
+#. 🗙 (U+1F5D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANCELLATION_X\n"
+"LngText.text"
+msgid "cancel"
+msgstr ""
+
+#. 🗔 (U+1F5D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESKTOP_WINDOW\n"
+"LngText.text"
+msgid "window"
+msgstr ""
+
+#. 🗌 (U+1F5CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_PAGE\n"
+"LngText.text"
+msgid "empty page"
+msgstr ""
+
+#. 🗋 (U+1F5CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_DOCUMENT\n"
+"LngText.text"
+msgid "empty document"
+msgstr ""
+
+#. 🗍 (U+1F5CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_PAGES\n"
+"LngText.text"
+msgid "empty pages"
+msgstr ""
+
+#. 🗎 (U+1F5CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT\n"
+"LngText.text"
+msgid "document"
+msgstr ""
+
+#. 🗆 (U+1F5C6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE_PAGE\n"
+"LngText.text"
+msgid "empty note page"
+msgstr ""
+
+#. 🗊 (U+1F5CA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE_PAD\n"
+"LngText.text"
+msgid "note pad"
+msgstr ""
+
+#. 🗈 (U+1F5C8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE\n"
+"LngText.text"
+msgid "note3"
+msgstr ""
+
+#. 🗇 (U+1F5C7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE_PAD\n"
+"LngText.text"
+msgid "empty note pad"
+msgstr ""
+
+#. 🗉 (U+1F5C9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE_PAGE\n"
+"LngText.text"
+msgid "note page"
+msgstr ""
+
+#. 🖸 (U+1F5B8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OPTICAL_DISC_ICON\n"
+"LngText.text"
+msgid "optical disc"
+msgstr ""
+
+#. 🗀 (U+1F5C0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOLDER\n"
+"LngText.text"
+msgid "folder3"
+msgstr ""
+
+#. 🖝 (U+1F59D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_RIGHT_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "right6"
+msgstr ""
+
+#. 🗁 (U+1F5C1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OPEN_FOLDER\n"
+"LngText.text"
+msgid "folder4"
+msgstr ""
+
+#. 🗅 (U+1F5C5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE\n"
+"LngText.text"
+msgid "empty note"
+msgstr ""
+
+#. 🖿 (U+1F5BF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_FOLDER\n"
+"LngText.text"
+msgid "folder5"
+msgstr ""
+
+#. 🖾 (U+1F5BE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_AN_X\n"
+"LngText.text"
+msgid "frame"
+msgstr ""
+
+#. 🖽 (U+1F5BD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_TILES\n"
+"LngText.text"
+msgid "frame2"
+msgstr ""
+
+#. 🖹 (U+1F5B9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_TEXT\n"
+"LngText.text"
+msgid "document2"
+msgstr ""
+
+#. 🖻 (U+1F5BB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_PICTURE\n"
+"LngText.text"
+msgid "document3"
+msgstr ""
+
+#. 🖺 (U+1F5BA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_TEXT_AND_PICTURE\n"
+"LngText.text"
+msgid "document4"
+msgstr ""
+
+#. 🖶 (U+1F5B6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINTER_ICON\n"
+"LngText.text"
+msgid "printer2"
+msgstr ""
+
+#. 🖷 (U+1F5B7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FAX_ICON\n"
+"LngText.text"
+msgid "fax2"
+msgstr ""
+
+#. 🖰 (U+1F5B0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TWO_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse4"
+msgstr ""
+
+#. 🖳 (U+1F5B3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLD_PERSONAL_COMPUTER\n"
+"LngText.text"
+msgid "pc"
+msgstr ""
+
+#. 🖵 (U+1F5B5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCREEN\n"
+"LngText.text"
+msgid "screen"
+msgstr ""
+
+#. 🖯 (U+1F5AF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ONE_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse5"
+msgstr ""
+
+#. 🖴 (U+1F5B4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HARD_DISK\n"
+"LngText.text"
+msgid "hard disk"
+msgstr ""
+
+#. 🖩 (U+1F5A9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POCKET_CALCULATOR\n"
+"LngText.text"
+msgid "calculator"
+msgstr ""
+
+#. 🖭 (U+1F5AD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TAPE_CARTRIDGE\n"
+"LngText.text"
+msgid "cartridge"
+msgstr ""
+
+#. 🖬 (U+1F5AC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SOFT_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy2"
+msgstr ""
+
+#. 🖫 (U+1F5AB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_HARD_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy3"
+msgstr ""
+
+#. 🖮 (U+1F5AE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WIRED_KEYBOARD\n"
+"LngText.text"
+msgid "keyboard2"
+msgstr ""
+
+#. 🖔 (U+1F594), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_VICTORY_HAND\n"
+"LngText.text"
+msgid "victory2"
+msgstr ""
+
+#. 🖧 (U+1F5A7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_NETWORKED_COMPUTERS\n"
+"LngText.text"
+msgid "network"
+msgstr ""
+
+#. 🖪 (U+1F5AA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_HARD_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy4"
+msgstr ""
+
+#. 🗢 (U+1F5E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIPS\n"
+"LngText.text"
+msgid "lips"
+msgstr ""
+
+#. 🖦 (U+1F5A6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KEYBOARD_AND_MOUSE\n"
+"LngText.text"
+msgid "keyboard3"
+msgstr ""
+
+#. 🖣 (U+1F5A3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_DOWN_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "down5"
+msgstr ""
+
+#. 🖡 (U+1F5A1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_DOWN_POINTING_INDEX\n"
+"LngText.text"
+msgid "down6"
+msgstr ""
+
+#. 📾 (U+1F4FE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PORTABLE_STEREO\n"
+"LngText.text"
+msgid "stereo"
+msgstr ""
+
+#. 🏶 (U+1F3F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_ROSETTE\n"
+"LngText.text"
+msgid "rosette2"
+msgstr ""
+
+#. 🏲 (U+1F3F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_PENNANT\n"
+"LngText.text"
+msgid "pennant"
+msgstr ""
+
+#. 🖠 (U+1F5A0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_UP_POINTING_INDEX\n"
+"LngText.text"
+msgid "up4"
+msgstr ""
+
+#. 🖢 (U+1F5A2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_UP_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "up5"
+msgstr ""
+
+#. 🏱 (U+1F3F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_PENNANT\n"
+"LngText.text"
+msgid "pennant2"
+msgstr ""
+
+#. 🕄 (U+1F544), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTCHED_RIGHT_SEMICIRCLE_WITH_THREE_DOTS\n"
+"LngText.text"
+msgid "feast2"
+msgstr ""
+
+#. 🖓 (U+1F593), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_THUMBS_DOWN_SIGN\n"
+"LngText.text"
+msgid "no2"
+msgstr ""
+
+#. 🖑 (U+1F591), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_RAISED_HAND_WITH_FINGERS_SPLAYED\n"
+"LngText.text"
+msgid "hand3"
+msgstr ""
+
+#. 🖒 (U+1F592), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_THUMBS_UP_SIGN\n"
+"LngText.text"
+msgid "yes2"
+msgstr ""
+
+#. 🕩 (U+1F569), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER_WITH_ONE_SOUND_WAVE\n"
+"LngText.text"
+msgid "speaker2"
+msgstr ""
+
+#. 🕆 (U+1F546), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_LATIN_CROSS\n"
+"LngText.text"
+msgid "Latin cross2"
+msgstr ""
+
+#. 🕇 (U+1F547), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEAVY_LATIN_CROSS\n"
+"LngText.text"
+msgid "Latin cross3"
+msgstr ""
+
+#. 🕨 (U+1F568), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER\n"
+"LngText.text"
+msgid "speaker3"
+msgstr ""
+
+#. 🕭 (U+1F56D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RINGING_BELL\n"
+"LngText.text"
+msgid "bell3"
+msgstr ""
+
+#. 🌣 (U+1F323), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN\n"
+"LngText.text"
+msgid "sun2"
+msgstr ""
+
+#. 🛇 (U+1F6C7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PROHIBITED_SIGN\n"
+"LngText.text"
+msgid "prohibited"
+msgstr ""
+
+#. 🛆 (U+1F6C6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TRIANGLE_WITH_ROUNDED_CORNERS\n"
+"LngText.text"
+msgid "triangle3"
+msgstr ""
+
+#. 🗫 (U+1F5EB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_SPEECH_BUBBLES\n"
+"LngText.text"
+msgid "bubble3"
+msgstr ""
+
+#. 🕪 (U+1F56A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER_WITH_THREE_SOUND_WAVES\n"
+"LngText.text"
+msgid "speaker4"
+msgstr ""
+
+#. 🗮 (U+1F5EE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_ANGER_BUBBLE\n"
+"LngText.text"
+msgid "bubble8"
+msgstr ""
+
+#. 🗧 (U+1F5E7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_RIGHT\n"
+"LngText.text"
+msgid "rays4"
+msgstr ""
+
+#. 🗲 (U+1F5F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHTNING_MOOD\n"
+"LngText.text"
+msgid "lightning2"
+msgstr ""
+
+#. 🗰 (U+1F5F0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOOD_BUBBLE\n"
+"LngText.text"
+msgid "bubble9"
+msgstr ""
+
+#. 🗹 (U+1F5F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BOLD_CHECK\n"
+"LngText.text"
+msgid "checkbox5"
+msgstr ""
+
+#. 🗴 (U+1F5F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_SCRIPT_X\n"
+"LngText.text"
+msgid "check mark4"
+msgstr ""
+
+#. 🗪 (U+1F5EA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TWO_SPEECH_BUBBLES\n"
+"LngText.text"
+msgid "bubble2"
+msgstr ""
+
+#. 🗶 (U+1F5F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOLD_SCRIPT_X\n"
+"LngText.text"
+msgid "x4"
+msgstr ""
+
+#. 🗩 (U+1F5E9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEECH_BUBBLE\n"
+"LngText.text"
+msgid "bubble10"
+msgstr ""
+
+#. 🗵 (U+1F5F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_SCRIPT_X\n"
+"LngText.text"
+msgid "checkbox6"
+msgstr ""
+
+#. 🗸 (U+1F5F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHT_CHECK_MARK\n"
+"LngText.text"
+msgid "check mark5"
+msgstr ""
+
+#. 🤗 (U+1F917), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HUGGING_FACE\n"
+"LngText.text"
+msgid "hugging"
+msgstr ""
+
+#. 🤔 (U+1F914), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THINKING_FACE\n"
+"LngText.text"
+msgid "thinking"
+msgstr ""
+
+#. 🙄 (U+1F644), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_ROLLING_EYES\n"
+"LngText.text"
+msgid "eye roll"
+msgstr ""
+
+#. 🤐 (U+1F910), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZIPPER-MOUTH_FACE\n"
+"LngText.text"
+msgid "zipper"
+msgstr ""
+
+#. 🙃 (U+1F643), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UPSIDE-DOWN_FACE\n"
+"LngText.text"
+msgid "upside-down"
+msgstr ""
+
+#. 🤑 (U+1F911), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MONEY-MOUTH_FACE\n"
+"LngText.text"
+msgid "money3"
+msgstr ""
+
+#. 🤒 (U+1F912), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_THERMOMETER\n"
+"LngText.text"
+msgid "thermometer2"
+msgstr ""
+
+#. 🤕 (U+1F915), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_HEAD-BANDAGE\n"
+"LngText.text"
+msgid "bandage"
+msgstr ""
+
+#. 🤓 (U+1F913), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NERD_FACE\n"
+"LngText.text"
+msgid "nerd"
+msgstr ""
+
+#. 🤖 (U+1F916), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROBOT_FACE\n"
+"LngText.text"
+msgid "robot"
+msgstr ""
+
+#. 🏻 (U+1F3FB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-1-2\n"
+"LngText.text"
+msgid "skin1"
+msgstr ""
+
+#. 🏼 (U+1F3FC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-3\n"
+"LngText.text"
+msgid "skin2"
+msgstr ""
+
+#. 🏽 (U+1F3FD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-4\n"
+"LngText.text"
+msgid "skin3"
+msgstr ""
+
+#. 🏾 (U+1F3FE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-5\n"
+"LngText.text"
+msgid "skin4"
+msgstr ""
+
+#. 🏿 (U+1F3FF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-6\n"
+"LngText.text"
+msgid "skin5"
+msgstr ""
+
+#. 🤘 (U+1F918), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIGN_OF_THE_HORNS\n"
+"LngText.text"
+msgid "horns"
+msgstr ""
+
+#. 📿 (U+1F4FF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRAYER_BEADS\n"
+"LngText.text"
+msgid "beads"
+msgstr ""
+
+#. 🦁 (U+1F981), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LION_FACE\n"
+"LngText.text"
+msgid "lion"
+msgstr ""
+
+#. 🦄 (U+1F984), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UNICORN_FACE\n"
+"LngText.text"
+msgid "unicorn"
+msgstr ""
+
+#. 🦃 (U+1F983), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TURKEY\n"
+"LngText.text"
+msgid "turkey"
+msgstr ""
+
+#. 🦀 (U+1F980), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRAB\n"
+"LngText.text"
+msgid "crab"
+msgstr ""
+
+#. 🦂 (U+1F982), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCORPION\n"
+"LngText.text"
+msgid "scorpion"
+msgstr ""
+
+#. 🧀 (U+1F9C0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHEESE_WEDGE\n"
+"LngText.text"
+msgid "cheese"
+msgstr ""
+
+#. 🌭 (U+1F32D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOT_DOG\n"
+"LngText.text"
+msgid "hot dog"
+msgstr ""
+
+#. 🌮 (U+1F32E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TACO\n"
+"LngText.text"
+msgid "taco"
+msgstr ""
+
+#. 🌯 (U+1F32F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BURRITO\n"
+"LngText.text"
+msgid "burrito"
+msgstr ""
+
+#. 🍿 (U+1F37F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POPCORN\n"
+"LngText.text"
+msgid "popcorn"
+msgstr ""
+
+#. 🍾 (U+1F37E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOTTLE_WITH_POPPING_CORK\n"
+"LngText.text"
+msgid "party4"
+msgstr ""
+
+#. 🏺 (U+1F3FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AMPHORA\n"
+"LngText.text"
+msgid "amphora"
+msgstr ""
+
+#. 🕌 (U+1F54C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOSQUE\n"
+"LngText.text"
+msgid "mosque"
+msgstr ""
+
+#. 🕍 (U+1F54D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SYNAGOGUE\n"
+"LngText.text"
+msgid "synagogue"
+msgstr ""
+
+#. 🕋 (U+1F54B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KAABA\n"
+"LngText.text"
+msgid "Kaaba"
+msgstr ""
+
+#. 🏐 (U+1F3D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"VOLLEYBALL\n"
+"LngText.text"
+msgid "volleyball"
+msgstr ""
+
+#. 🏏 (U+1F3CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRICKET_BAT_AND_BALL\n"
+"LngText.text"
+msgid "cricket"
+msgstr ""
+
+#. 🏑 (U+1F3D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FIELD_HOCKEY_STICK_AND_BALL\n"
+"LngText.text"
+msgid "hockey2"
+msgstr ""
+
+#. 🏒 (U+1F3D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ICE_HOCKEY_STICK_AND_PUCK\n"
+"LngText.text"
+msgid "hockey"
+msgstr ""
+
+#. 🏓 (U+1F3D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TABLE_TENNIS_PADDLE_AND_BALL\n"
+"LngText.text"
+msgid "ping pong"
+msgstr ""
+
+#. 🏸 (U+1F3F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BADMINTON_RACQUET_AND_SHUTTLECOCK\n"
+"LngText.text"
+msgid "badminton"
+msgstr ""
+
+#. 🏹 (U+1F3F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOW_AND_ARROW\n"
+"LngText.text"
+msgid "bow"
+msgstr ""
+
+#. 🛐 (U+1F6D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PLACE_OF_WORSHIP\n"
+"LngText.text"
+msgid "worship"
+msgstr ""
+
+#. 🕎 (U+1F54E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MENORAH_WITH_NINE_BRANCHES\n"
+"LngText.text"
+msgid "menorah"
+msgstr ""
+
+#. 🤣 (U+1F923), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROLLING_ON_THE_FLOOR_LAUGHING\n"
+"LngText.text"
+msgid "lol"
+msgstr ""
+
+#. 🤤 (U+1F924), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DROOLING_FACE\n"
+"LngText.text"
+msgid "drool"
+msgstr ""
+
+#. 🤢 (U+1F922), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NAUSEATED_FACE\n"
+"LngText.text"
+msgid "nausea"
+msgstr ""
+
+#. 🤧 (U+1F927), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SNEEZING_FACE\n"
+"LngText.text"
+msgid "sneeze"
+msgstr ""
+
+#. 🤠 (U+1F920), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COWBOY_HAT_FACE\n"
+"LngText.text"
+msgid "cowboy"
+msgstr ""
+
+#. 🤡 (U+1F921), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOWN_FACE\n"
+"LngText.text"
+msgid "clown"
+msgstr ""
+
+#. 🤥 (U+1F925), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LYING_FACE\n"
+"LngText.text"
+msgid "liar"
+msgstr ""
+
+#. 🤴 (U+1F934), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINCE\n"
+"LngText.text"
+msgid "prince"
+msgstr ""
+
+#. 🤵 (U+1F935), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_IN_TUXEDO\n"
+"LngText.text"
+msgid "groom"
+msgstr ""
+
+#. 🤰 (U+1F930), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PREGNANT_WOMAN\n"
+"LngText.text"
+msgid "pregnant"
+msgstr ""
+
+#. 🤶 (U+1F936), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MRS._CLAUS\n"
+"LngText.text"
+msgid "mrs. claus"
+msgstr ""
+
+#. 🤦 (U+1F926), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_FACEPALMING\n"
+"LngText.text"
+msgid "facepalm"
+msgstr ""
+
+#. 🤷 (U+1F937), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_SHRUGGING\n"
+"LngText.text"
+msgid "shrugging"
+msgstr ""
+
+#. 🕺 (U+1F57A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_DANCING\n"
+"LngText.text"
+msgid "dancer2"
+msgstr ""
+
+#. 🤺 (U+1F93A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_FENCING\n"
+"LngText.text"
+msgid "fencer"
+msgstr ""
+
+#. 🤸 (U+1F938), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_CARTWHEELING\n"
+"LngText.text"
+msgid "gymnast"
+msgstr ""
+
+#. 🤼 (U+1F93C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEOPLE_WRESTLING\n"
+"LngText.text"
+msgid "wrestling"
+msgstr ""
+
+#. 🤽 (U+1F93D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_PLAYING_WATER_POLO\n"
+"LngText.text"
+msgid "water polo"
+msgstr ""
+
+#. 🤾 (U+1F93E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_PLAYING_HANDBALL\n"
+"LngText.text"
+msgid "handball"
+msgstr ""
+
+#. 🤹 (U+1F939), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_JUGGLING\n"
+"LngText.text"
+msgid "juggling"
+msgstr ""
+
+#. 🤳 (U+1F933), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SELFIE\n"
+"LngText.text"
+msgid "selfie"
+msgstr ""
+
+#. 🤞 (U+1F91E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CROSSED_FINGERS\n"
+"LngText.text"
+msgid "good luck"
+msgstr ""
+
+#. 🤙 (U+1F919), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CALL_ME_HAND\n"
+"LngText.text"
+msgid "call"
+msgstr ""
+
+#. 🤛 (U+1F91B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT-FACING_FIST\n"
+"LngText.text"
+msgid "fist3"
+msgstr ""
+
+#. 🤜 (U+1F91C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT-FACING_FIST\n"
+"LngText.text"
+msgid "fist4"
+msgstr ""
+
+#. 🤚 (U+1F91A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_BACK_OF_HAND\n"
+"LngText.text"
+msgid "hand4"
+msgstr ""
+
+#. 🤝 (U+1F91D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HANDSHAKE\n"
+"LngText.text"
+msgid "handshake"
+msgstr ""
+
+#. 🖤 (U+1F5A4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_HEART\n"
+"LngText.text"
+msgid "black heart"
+msgstr ""
+
+#. 🦍 (U+1F98D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GORILLA\n"
+"LngText.text"
+msgid "gorilla"
+msgstr ""
+
+#. 🦊 (U+1F98A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOX_FACE\n"
+"LngText.text"
+msgid "fox"
+msgstr ""
+
+#. 🦌 (U+1F98C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DEER\n"
+"LngText.text"
+msgid "deer"
+msgstr ""
+
+#. 🦏 (U+1F98F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RHINOCEROS\n"
+"LngText.text"
+msgid "rhinoceros"
+msgstr ""
+
+#. 🦇 (U+1F987), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BAT\n"
+"LngText.text"
+msgid "bat"
+msgstr ""
+
+#. 🦅 (U+1F985), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EAGLE\n"
+"LngText.text"
+msgid "eagle"
+msgstr ""
+
+#. 🦆 (U+1F986), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DUCK\n"
+"LngText.text"
+msgid "duck"
+msgstr ""
+
+#. 🦉 (U+1F989), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OWL\n"
+"LngText.text"
+msgid "owl"
+msgstr ""
+
+#. 🦎 (U+1F98E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIZARD\n"
+"LngText.text"
+msgid "lizard"
+msgstr ""
+
+#. 🦈 (U+1F988), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHARK\n"
+"LngText.text"
+msgid "shark"
+msgstr ""
+
+#. 🦐 (U+1F990), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHRIMP\n"
+"LngText.text"
+msgid "shrimp"
+msgstr ""
+
+#. 🦑 (U+1F991), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SQUID\n"
+"LngText.text"
+msgid "squid"
+msgstr ""
+
+#. 🦋 (U+1F98B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BUTTERFLY\n"
+"LngText.text"
+msgid "butterfly"
+msgstr ""
+
+#. 🥀 (U+1F940), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WILTED_FLOWER\n"
+"LngText.text"
+msgid "flower2"
+msgstr ""
+
+#. 🥝 (U+1F95D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KIWI_FRUIT\n"
+"LngText.text"
+msgid "kiwi"
+msgstr ""
+
+#. 🥑 (U+1F951), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AVOCADO\n"
+"LngText.text"
+msgid "avocado"
+msgstr ""
+
+#. 🥔 (U+1F954), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POTATO\n"
+"LngText.text"
+msgid "potato"
+msgstr ""
+
+#. 🥕 (U+1F955), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARROT\n"
+"LngText.text"
+msgid "carrot"
+msgstr ""
+
+#. 🥒 (U+1F952), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUCUMBER\n"
+"LngText.text"
+msgid "cucumber"
+msgstr ""
+
+#. 🥜 (U+1F95C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEANUTS\n"
+"LngText.text"
+msgid "peanuts"
+msgstr ""
+
+#. 🥐 (U+1F950), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CROISSANT\n"
+"LngText.text"
+msgid "croissant"
+msgstr ""
+
+#. 🥖 (U+1F956), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BAGUETTE_BREAD\n"
+"LngText.text"
+msgid "bread2"
+msgstr ""
+
+#. 🥞 (U+1F95E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PANCAKES\n"
+"LngText.text"
+msgid "pancakes"
+msgstr ""
+
+#. 🥓 (U+1F953), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BACON\n"
+"LngText.text"
+msgid "bacon"
+msgstr ""
+
+#. 🥙 (U+1F959), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STUFFED_FLATBREAD\n"
+"LngText.text"
+msgid "flatbread"
+msgstr ""
+
+#. 🥚 (U+1F95A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EGG\n"
+"LngText.text"
+msgid "egg"
+msgstr ""
+
+#. 🥘 (U+1F958), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHALLOW_PAN_OF_FOOD\n"
+"LngText.text"
+msgid "food"
+msgstr ""
+
+#. 🥗 (U+1F957), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GREEN_SALAD\n"
+"LngText.text"
+msgid "salad"
+msgstr ""
+
+#. 🥛 (U+1F95B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GLASS_OF_MILK\n"
+"LngText.text"
+msgid "milk"
+msgstr ""
+
+#. 🥂 (U+1F942), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLINKING_GLASSES\n"
+"LngText.text"
+msgid "party3"
+msgstr ""
+
+#. 🥃 (U+1F943), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TUMBLER_GLASS\n"
+"LngText.text"
+msgid "glass3"
+msgstr ""
+
+#. 🥄 (U+1F944), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPOON\n"
+"LngText.text"
+msgid "spoon"
+msgstr ""
+
+#. 🛴 (U+1F6F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCOOTER\n"
+"LngText.text"
+msgid "scooter"
+msgstr ""
+
+#. 🛵 (U+1F6F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTOR_SCOOTER\n"
+"LngText.text"
+msgid "scooter2"
+msgstr ""
+
+#. 🛑 (U+1F6D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OCTAGONAL_SIGN\n"
+"LngText.text"
+msgid "stop"
+msgstr ""
+
+#. 🛶 (U+1F6F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANOE\n"
+"LngText.text"
+msgid "canoe"
+msgstr ""
+
+#. 🥇 (U+1F947), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"1ST_PLACE_MEDAL\n"
+"LngText.text"
+msgid "gold"
+msgstr ""
+
+#. 🥈 (U+1F948), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"2ND_PLACE_MEDAL\n"
+"LngText.text"
+msgid "silver"
+msgstr ""
+
+#. 🥉 (U+1F949), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"3RD_PLACE_MEDAL\n"
+"LngText.text"
+msgid "bronze"
+msgstr ""
+
+#. 🥊 (U+1F94A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOXING_GLOVE\n"
+"LngText.text"
+msgid "boxing"
+msgstr ""
+
+#. 🥋 (U+1F94B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MARTIAL_ARTS_UNIFORM\n"
+"LngText.text"
+msgid "judo"
+msgstr ""
+
+#. 🥅 (U+1F945), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GOAL_NET\n"
+"LngText.text"
+msgid "soccer2"
+msgstr ""
+
+#. 🥁 (U+1F941), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DRUM_WITH_DRUMSTICKS\n"
+"LngText.text"
+msgid "drum2"
+msgstr ""
+
+#. 🛒 (U+1F6D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOPPING_TROLLEY\n"
+"LngText.text"
+msgid "cart"
+msgstr ""
+
+#. 🤩 (U+1F929), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GRINNING_FACE_WITH_STAR_EYES\n"
+"LngText.text"
+msgid "excited"
+msgstr ""
+
+#. 🤨 (U+1F928), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_ONE_EYEBROW_RAISED\n"
+"LngText.text"
+msgid "eyebrow"
+msgstr ""
+
+#. 🤯 (U+1F92F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOCKED_FACE_WITH_EXPLODING_HEAD\n"
+"LngText.text"
+msgid "shocked"
+msgstr ""
+
+#. 🤪 (U+1F92A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GRINNING_FACE_WITH_ONE_LARGE_AND_ONE_SMALL_EYE\n"
+"LngText.text"
+msgid "zany"
+msgstr ""
+
+#. 🤬 (U+1F92C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SERIOUS_FACE_WITH_SYMBOLS_COVERING_MOUTH\n"
+"LngText.text"
+msgid "cursing"
+msgstr ""
+
+#. 🤮 (U+1F92E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_OPEN_MOUTH_VOMITING\n"
+"LngText.text"
+msgid "vomit"
+msgstr ""
+
+#. 🤫 (U+1F92B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_FINGER_COVERING_CLOSED_LIPS\n"
+"LngText.text"
+msgid "hush"
+msgstr ""
+
+#. 🤭 (U+1F92D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SMILING_FACE_WITH_SMILING_EYES_AND_HAND_COVERING_MOUTH\n"
+"LngText.text"
+msgid "smiling4"
+msgstr ""
+
+#. 🧐 (U+1F9D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_MONOCLE\n"
+"LngText.text"
+msgid "monocle"
+msgstr ""
+
+#. 🧒 (U+1F9D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHILD\n"
+"LngText.text"
+msgid "child"
+msgstr ""
+
+#. 🧑 (U+1F9D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ADULT\n"
+"LngText.text"
+msgid "adult"
+msgstr ""
+
+#. 🧓 (U+1F9D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLDER_ADULT\n"
+"LngText.text"
+msgid "old"
+msgstr ""
+
+#. 🧕 (U+1F9D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_WITH_HEADSCARF\n"
+"LngText.text"
+msgid "headscarf"
+msgstr ""
+
+#. 🧔 (U+1F9D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEARDED_PERSON\n"
+"LngText.text"
+msgid "beard"
+msgstr ""
+
+#. 🤱 (U+1F931), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BREAST-FEEDING\n"
+"LngText.text"
+msgid "baby3"
+msgstr ""
+
+#. 🧙 (U+1F9D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAGE\n"
+"LngText.text"
+msgid "mage"
+msgstr ""
+
+#. 🧚 (U+1F9DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FAIRY\n"
+"LngText.text"
+msgid "fairy"
+msgstr ""
+
+#. 🧛 (U+1F9DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"VAMPIRE\n"
+"LngText.text"
+msgid "vampire"
+msgstr ""
+
+#. 🧜 (U+1F9DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MERPERSON\n"
+"LngText.text"
+msgid "merperson"
+msgstr ""
+
+#. 🧝 (U+1F9DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ELF\n"
+"LngText.text"
+msgid "elf"
+msgstr ""
+
+#. 🧞 (U+1F9DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GENIE\n"
+"LngText.text"
+msgid "genie"
+msgstr ""
+
+#. 🧟 (U+1F9DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZOMBIE\n"
+"LngText.text"
+msgid "zombie"
+msgstr ""
+
+#. 🧖 (U+1F9D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_IN_STEAMY_ROOM\n"
+"LngText.text"
+msgid "sauna"
+msgstr ""
+
+#. 🧗 (U+1F9D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_CLIMBING\n"
+"LngText.text"
+msgid "climber"
+msgstr ""
+
+#. 🧘 (U+1F9D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_IN_LOTUS_POSITION\n"
+"LngText.text"
+msgid "yoga"
+msgstr ""
+
+#. 🤟 (U+1F91F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"I_LOVE_YOU_HAND_SIGN\n"
+"LngText.text"
+msgid "love2"
+msgstr ""
+
+#. 🤲 (U+1F932), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PALMS_UP_TOGETHER\n"
+"LngText.text"
+msgid "palm2"
+msgstr ""
+
+#. 🧠 (U+1F9E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BRAIN\n"
+"LngText.text"
+msgid "brain"
+msgstr ""
+
+#. 🧡 (U+1F9E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ORANGE_HEART\n"
+"LngText.text"
+msgid "orange heart"
+msgstr ""
+
+#. 🧣 (U+1F9E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCARF\n"
+"LngText.text"
+msgid "scarf"
+msgstr ""
+
+#. 🧤 (U+1F9E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GLOVES\n"
+"LngText.text"
+msgid "gloves"
+msgstr ""
+
+#. 🧥 (U+1F9E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COAT\n"
+"LngText.text"
+msgid "coat"
+msgstr ""
+
+#. 🧦 (U+1F9E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SOCKS\n"
+"LngText.text"
+msgid "socks"
+msgstr ""
+
+#. 🧢 (U+1F9E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BILLED_CAP\n"
+"LngText.text"
+msgid "cap"
+msgstr ""
+
+#. 🦓 (U+1F993), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZEBRA\n"
+"LngText.text"
+msgid "zebra"
+msgstr ""
+
+#. 🦒 (U+1F992), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GIRAFFE\n"
+"LngText.text"
+msgid "giraffe"
+msgstr ""
+
+#. 🦔 (U+1F994), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEDGEHOG\n"
+"LngText.text"
+msgid "hedgehog"
+msgstr ""
+
+#. 🦕 (U+1F995), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SAUROPOD\n"
+"LngText.text"
+msgid "dinosaur"
+msgstr ""
+
+#. 🦖 (U+1F996), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"T-REX\n"
+"LngText.text"
+msgid "dinosaur2"
+msgstr ""
+
+#. 🦗 (U+1F997), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRICKET\n"
+"LngText.text"
+msgid "cricket2"
+msgstr ""
+
+#. 🥥 (U+1F965), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COCONUT\n"
+"LngText.text"
+msgid "coconut"
+msgstr ""
+
+#. 🥦 (U+1F966), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BROCCOLI\n"
+"LngText.text"
+msgid "broccoli"
+msgstr ""
+
+#. 🥨 (U+1F968), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRETZEL\n"
+"LngText.text"
+msgid "pretzel"
+msgstr ""
+
+#. 🥩 (U+1F969), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUT_OF_MEAT\n"
+"LngText.text"
+msgid "steak"
+msgstr ""
+
+#. 🥪 (U+1F96A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SANDWICH\n"
+"LngText.text"
+msgid "sandwich"
+msgstr ""
+
+#. 🥣 (U+1F963), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOWL_WITH_SPOON\n"
+"LngText.text"
+msgid "bowl"
+msgstr ""
+
+#. 🥫 (U+1F96B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANNED_FOOD\n"
+"LngText.text"
+msgid "can"
+msgstr ""
+
+#. 🥟 (U+1F95F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DUMPLING\n"
+"LngText.text"
+msgid "dumpling"
+msgstr ""
+
+#. 🥠 (U+1F960), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FORTUNE_COOKIE\n"
+"LngText.text"
+msgid "cookie2"
+msgstr ""
+
+#. 🥡 (U+1F961), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TAKEOUT_BOX\n"
+"LngText.text"
+msgid "takeout"
+msgstr ""
+
+#. 🥧 (U+1F967), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PIE\n"
+"LngText.text"
+msgid "pie"
+msgstr ""
+
+#. 🥤 (U+1F964), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUP_WITH_STRAW\n"
+"LngText.text"
+msgid "drink"
+msgstr ""
+
+#. 🥢 (U+1F962), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHOPSTICKS\n"
+"LngText.text"
+msgid "chopsticks"
+msgstr ""
+
+#. 🛸 (U+1F6F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FLYING_SAUCER\n"
+"LngText.text"
+msgid "ufo"
+msgstr ""
+
+#. 🛷 (U+1F6F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLED\n"
+"LngText.text"
+msgid "sled"
+msgstr ""
+
+#. 🥌 (U+1F94C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CURLING_STONE\n"
+"LngText.text"
+msgid "curling"
+msgstr ""
+
+#. ₿ (U+20BF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BITCOIN_SIGN\n"
+"LngText.text"
+msgid "bitcoin"
+msgstr ""
+
#. ½ (U+000BD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/sbasic/shared.po b/source/ar/helpcontent2/source/text/sbasic/shared.po
index e402b62d0f3..e05dacb0f1b 100644
--- a/source/ar/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ar/helpcontent2/source/text/sbasic/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: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: 2016-11-22 16:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15229,7 +15229,7 @@ msgctxt ""
"03040000.xhp\n"
"par_id111512312705893\n"
"help.text"
-msgid "The following constants are avalable when VBA compatibility mode is enabled"
+msgid "The following constants are available when VBA compatibility mode is enabled"
msgstr ""
#: 03040000.xhp
@@ -15253,15 +15253,7 @@ msgctxt ""
"03040000.xhp\n"
"par_id991512312965968\n"
"help.text"
-msgid "Desccription"
-msgstr ""
-
-#: 03040000.xhp
-msgctxt ""
-"03040000.xhp\n"
-"par_id241512313723033\n"
-"help.text"
-msgid "\\x0D (13)"
+msgid "Description"
msgstr ""
#: 03040000.xhp
@@ -16109,7 +16101,7 @@ msgctxt ""
"03060300.xhp\n"
"tit\n"
"help.text"
-msgid "Imp-Operator [Runtime]"
+msgid "Imp Operator [Runtime]"
msgstr ""
#: 03060300.xhp
@@ -16125,7 +16117,7 @@ msgctxt ""
"03060300.xhp\n"
"hd_id3156024\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Imp-Operator [Runtime]\">Imp Operator [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Imp Operator [Runtime]\">Imp Operator [Runtime]</link>"
msgstr ""
#: 03060300.xhp
@@ -16245,7 +16237,7 @@ msgctxt ""
"03060400.xhp\n"
"tit\n"
"help.text"
-msgid "Not-Operator [Runtime]"
+msgid "Not Operator [Runtime]"
msgstr ""
#: 03060400.xhp
@@ -16261,7 +16253,7 @@ msgctxt ""
"03060400.xhp\n"
"hd_id3156024\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Not-Operator [Runtime]\">Not-Operator [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Not Operator [Runtime]\">Not Operator [Runtime]</link>"
msgstr ""
#: 03060400.xhp
@@ -16373,7 +16365,7 @@ msgctxt ""
"03060500.xhp\n"
"tit\n"
"help.text"
-msgid "Or-Operator [Runtime]"
+msgid "Or Operator [Runtime]"
msgstr ""
#: 03060500.xhp
@@ -16389,7 +16381,7 @@ msgctxt ""
"03060500.xhp\n"
"hd_id3150986\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060500.xhp\" name=\"Or-Operator [Runtime]\">Or Operator [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03060500.xhp\" name=\"Or Operator [Runtime]\">Or Operator [Runtime]</link>"
msgstr ""
#: 03060500.xhp
@@ -17053,7 +17045,7 @@ msgctxt ""
"03070600.xhp\n"
"tit\n"
"help.text"
-msgid "Mod-Operator [Runtime]"
+msgid "Mod Operator [Runtime]"
msgstr ""
#: 03070600.xhp
@@ -17069,7 +17061,7 @@ msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod-Operator [Runtime]\">Mod Operator [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator [Runtime]\">Mod Operator [Runtime]</link>"
msgstr ""
#: 03070600.xhp
@@ -20477,7 +20469,7 @@ msgctxt ""
"03090203.xhp\n"
"tit\n"
"help.text"
-msgid "While...Wend Statement[Runtime]"
+msgid "While...Wend Statement [Runtime]"
msgstr ""
#: 03090203.xhp
@@ -20493,7 +20485,7 @@ msgctxt ""
"03090203.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement[Runtime]\">While...Wend Statement[Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement [Runtime]\">While...Wend Statement [Runtime]</link>"
msgstr ""
#: 03090203.xhp
@@ -26085,7 +26077,7 @@ msgctxt ""
"03103350.xhp\n"
"hd_id3145090\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement [Runtime]\">Option VBASupport Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option VBASupport Statement [Runtime]\">Option VBASupport Statement [Runtime]</link>"
msgstr ""
#: 03103350.xhp
@@ -26397,7 +26389,7 @@ msgctxt ""
"03103600.xhp\n"
"hd_id3143267\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function[Runtime]\">TypeName Function; VarType Function[Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function [Runtime]\">TypeName Function; VarType Function [Runtime]</link>"
msgstr ""
#: 03103600.xhp
@@ -26621,7 +26613,7 @@ msgctxt ""
"03103700.xhp\n"
"hd_id3154422\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement[Runtime]\">Set Statement[Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement [Runtime]\">Set Statement [Runtime]</link>"
msgstr ""
#: 03103700.xhp
@@ -26877,7 +26869,7 @@ msgctxt ""
"03104000.xhp\n"
"hd_id3153527\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing function [Runtime]\">IsMissing function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing Function [Runtime]\">IsMissing Function [Runtime]</link>"
msgstr ""
#: 03104000.xhp
@@ -29144,6 +29136,14 @@ msgctxt ""
msgid "' displays for example 6,328.20 in English locale, 6.328,20 in German locale."
msgstr ""
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id381513082126889\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020301.xhp\" name=\"number format code\">Number format codes in Calc</link>"
+msgstr ""
+
#: 03120302.xhp
msgctxt ""
"03120302.xhp\n"
@@ -32853,7 +32853,7 @@ msgctxt ""
"03132200.xhp\n"
"hd_id3155342\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent [Runtime]\">ThisComponent [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent Statement [Runtime]\">ThisComponent Statement [Runtime]</link>"
msgstr ""
#: 03132200.xhp
@@ -34709,7 +34709,7 @@ msgctxt ""
"03150001.xhp\n"
"par_id801512153944376\n"
"help.text"
-msgid "Tueday"
+msgid "Tuesday"
msgstr ""
#: 03150001.xhp
diff --git a/source/ar/helpcontent2/source/text/scalc/01.po b/source/ar/helpcontent2/source/text/scalc/01.po
index a3ef7378eab..6a4f458672b 100644
--- a/source/ar/helpcontent2/source/text/scalc/01.po
+++ b/source/ar/helpcontent2/source/text/scalc/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: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
"PO-Revision-Date: 2016-11-25 02:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7123,6 +7123,14 @@ msgstr ""
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
+"par_id461513468030965\n"
+"help.text"
+msgid "Because of the iterative method used, it is possible for IRR to fail and return <link href=\"text/scalc/05/02140000.xhp\" name=\"Error 523\">Error 523</link>, with \"Error: Calculation does not converge\" in the status bar. In that case, try another value for Guess."
+msgstr ""
+
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
"bm_id3151012\n"
"help.text"
msgid "<bookmark_value>calculating; interests for unchanged amortization installments</bookmark_value> <bookmark_value>interests for unchanged amortization installments</bookmark_value> <bookmark_value>ISPMT function</bookmark_value>"
@@ -52197,7 +52205,7 @@ msgctxt ""
"12040201.xhp\n"
"hd_id3148492\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">More</link>"
+msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"Options\">Options</link>"
msgstr ""
#: 12040201.xhp
@@ -56301,7 +56309,7 @@ msgctxt ""
"data_form.xhp\n"
"par_id221512503284514\n"
"help.text"
-msgid "To be effective, the Calc data table should have a header row, where each cell contents is the label of the column. The header cells contents becomes the label of each data field in the form."
+msgid "To be effective, the Calc data table should have a header row, where each cell contents is the label of the column. The header cells contents become the label of each data field in the form."
msgstr ""
#: data_form.xhp
@@ -56325,7 +56333,7 @@ msgctxt ""
"data_form.xhp\n"
"par_id11512503369875\n"
"help.text"
-msgid "Choose <item type=\"menutiem\">Data - Form...</item>."
+msgid "Choose <item type=\"menuitem\">Data - Form...</item>."
msgstr ""
#: data_form.xhp
@@ -56429,7 +56437,7 @@ msgctxt ""
"data_form.xhp\n"
"par_id181512558987528\n"
"help.text"
-msgid "To reopen the form dialog, place the cursor on the header row and open the form. The displayed record in the form dialog is the fisrt data record. Move to the last record before entering new data otherwise the current record will be edited."
+msgid "To reopen the form dialog, place the cursor on the header row and open the form. The displayed record in the form dialog is the first data record. Move to the last record before entering new data otherwise the current record will be edited."
msgstr ""
#: data_form.xhp
@@ -65541,7 +65549,7 @@ msgctxt ""
"statistics.xhp\n"
"bm_id05001\n"
"help.text"
-msgid "<bookmark_value>Analysis toolpack;t-test</bookmark_value><bookmark_value>t-test;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;t-test</bookmark_value>"
+msgid "<bookmark_value>Analysis toolpack;t-test</bookmark_value><bookmark_value>Analysis toolpack;paired t-test</bookmark_value><bookmark_value>t-test;Analysis toolpack</bookmark_value><bookmark_value>paired t-test;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;paired t-test</bookmark_value>"
msgstr ""
#: statistics.xhp
@@ -65549,7 +65557,7 @@ msgctxt ""
"statistics.xhp\n"
"hd_id1000150\n"
"help.text"
-msgid "t-test"
+msgid "Paired t-test"
msgstr ""
#: statistics.xhp
@@ -65557,7 +65565,7 @@ msgctxt ""
"statistics.xhp\n"
"par_id1002820\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/ttestdialog/TTestDialog\">Calculates the t-Test of two data samples.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/ttestdialog/TTestDialog\">Calculates the paired t-Test of two data samples.</ahelp>"
msgstr ""
#: statistics.xhp
@@ -65565,7 +65573,7 @@ msgctxt ""
"statistics.xhp\n"
"par_id1002830\n"
"help.text"
-msgid "<variable id=\"sam01\">Choose <emph>Data - Statistics - t-test</emph></variable>"
+msgid "<variable id=\"sam01\">Choose <emph>Data - Statistics - Paired t-test</emph></variable>"
msgstr ""
#: statistics.xhp
@@ -65573,7 +65581,7 @@ msgctxt ""
"statistics.xhp\n"
"par_id1002840\n"
"help.text"
-msgid "A <emph>t-test</emph> is any statistical hypothesis test that follows a Student's t distribution."
+msgid "A <emph>paired t-test</emph> is any statistical hypothesis test that follows a Student's t distribution."
msgstr ""
#: statistics.xhp
@@ -65581,7 +65589,7 @@ msgctxt ""
"statistics.xhp\n"
"par_id1002850\n"
"help.text"
-msgid "For more information on t-tests, refer to the <link href=\"http://en.wikipedia.org/wiki/T-test\">corresponding Wikipedia article</link>."
+msgid "For more information on paired t-tests, refer to the <link href=\"http://en.wikipedia.org/wiki/T-test\">corresponding Wikipedia article</link>."
msgstr ""
#: statistics.xhp
@@ -65621,7 +65629,7 @@ msgctxt ""
"statistics.xhp\n"
"hd_id1000170\n"
"help.text"
-msgid "Results for t-Test:"
+msgid "Results for paired t-test:"
msgstr ""
#: statistics.xhp
@@ -65629,7 +65637,7 @@ msgctxt ""
"statistics.xhp\n"
"par_id1002890\n"
"help.text"
-msgid "The following table shows the <emph>t-Test</emph> for the data series above:"
+msgid "The following table shows the <emph>paired t-test</emph> for the data series above:"
msgstr ""
#: statistics.xhp
@@ -65637,7 +65645,7 @@ msgctxt ""
"statistics.xhp\n"
"par_id1002900\n"
"help.text"
-msgid "t-test"
+msgid "paired t-test"
msgstr ""
#: statistics.xhp
@@ -66509,7 +66517,7 @@ msgctxt ""
"statistics_regression.xhp\n"
"par_id14337286612130\n"
"help.text"
-msgid "<link href=\"text/scalc/01/statistics.xhp#datasampling\">Sampling</link>, <link href=\"text/scalc/01/statistics.xhp#descriptivestatistics\">Descriptive Statistics</link>, <link href=\"text/scalc/01/statistics.xhp#anova\">Analysis of Variance (ANOVA)</link>, <link href=\"text/scalc/01/statistics.xhp#correlation\">Correlation</link>, <link href=\"text/scalc/01/statistics.xhp#covariance\">Covariance</link>, <link href=\"text/scalc/01/statistics.xhp#exponentialsmoothing\">Exponential Smoothing</link>, <link href=\"text/scalc/01/statistics.xhp#movingaverage\">Moving Average</link>, <link href=\"text/scalc/01/statistics.xhp#ttest\">t-test</link>, <link href=\"text/scalc/01/statistics.xhp#ftest\">F-test</link>, <link href=\"text/scalc/01/statistics.xhp#ztest\">Z-test</link>, <link href=\"text/scalc/01/statistics.xhp#chisqtest\">Chi-square test</link>."
+msgid "<link href=\"text/scalc/01/statistics.xhp#datasampling\">Sampling</link>, <link href=\"text/scalc/01/statistics.xhp#descriptivestatistics\">Descriptive Statistics</link>, <link href=\"text/scalc/01/statistics.xhp#anova\">Analysis of Variance (ANOVA)</link>, <link href=\"text/scalc/01/statistics.xhp#correlation\">Correlation</link>, <link href=\"text/scalc/01/statistics.xhp#covariance\">Covariance</link>, <link href=\"text/scalc/01/statistics.xhp#exponentialsmoothing\">Exponential Smoothing</link>, <link href=\"text/scalc/01/statistics.xhp#movingaverage\">Moving Average</link>, <link href=\"text/scalc/01/statistics.xhp#ttest\">Paired t-test</link>, <link href=\"text/scalc/01/statistics.xhp#ftest\">F-test</link>, <link href=\"text/scalc/01/statistics.xhp#ztest\">Z-test</link>, <link href=\"text/scalc/01/statistics.xhp#chisqtest\">Chi-square test</link>."
msgstr ""
#: text2columns.xhp
diff --git a/source/ar/helpcontent2/source/text/sdraw.po b/source/ar/helpcontent2/source/text/sdraw.po
index 493cacb86e2..59f71226d49 100644
--- a/source/ar/helpcontent2/source/text/sdraw.po
+++ b/source/ar/helpcontent2/source/text/sdraw.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: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2016-11-25 03:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -104,62 +104,6 @@ msgctxt ""
msgid "This menu contains general commands for working with Draw documents, such as open, close and print. To close $[officename] Draw, click <emph>Exit</emph>."
msgstr ""
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3156441\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
-msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">فتح</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3153876\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
-msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">حفظ باسم</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3150718\n"
-"help.text"
-msgid "<link href=\"text/simpress/01/01170000.xhp\" name=\"Export\">Export</link>"
-msgstr ""
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3154754\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
-msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">الإصدارات</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3150044\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
-msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">خصائص</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3149127\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
-msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">طباعة</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3145790\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\">Printer Settings</link>"
-msgstr ""
-
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
diff --git a/source/ar/helpcontent2/source/text/shared.po b/source/ar/helpcontent2/source/text/shared.po
index 42ecf407f0e..ff6c29a2671 100644
--- a/source/ar/helpcontent2/source/text/shared.po
+++ b/source/ar/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: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
"PO-Revision-Date: 2016-11-25 03:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1936,70 +1936,6 @@ msgctxt ""
msgid "This section provides a general glossary of technical terms used in $[officename], along with a list of Internet terms."
msgstr ""
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"tit\n"
-"help.text"
-msgid "Programming $[officename]"
-msgstr ""
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"bm_id3154232\n"
-"help.text"
-msgid "<bookmark_value>programming;$[officename]</bookmark_value><bookmark_value>Basic;programming</bookmark_value>"
-msgstr ""
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"hd_id3154232\n"
-"help.text"
-msgid "<variable id=\"programming\"><link href=\"text/shared/main0600.xhp\" name=\"Programming $[officename]\">Programming $[officename]</link></variable>"
-msgstr ""
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3149760\n"
-"help.text"
-msgid "<variable id=\"basic\">$[officename] can be controlled by using the $[officename] API. </variable>"
-msgstr ""
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3151111\n"
-"help.text"
-msgid "$[officename] provides an Application Programming Interface (API) that enables you to control $[officename] components by using various programming languages. A $[officename] Software Development Kit is available for the programming interface."
-msgstr ""
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3156346\n"
-"help.text"
-msgid "For more information about $[officename] API reference, please visit http://api.libreoffice.org/"
-msgstr ""
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3153825\n"
-"help.text"
-msgid "Macros created with $[officename] Basic based on the old programming interface will no longer be supported by the current version."
-msgstr ""
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3149795\n"
-"help.text"
-msgid "For more information on $[officename] Basic, select \"$[officename] Basic\" in the list box."
-msgstr ""
-
#: main0650.xhp
msgctxt ""
"main0650.xhp\n"
diff --git a/source/ar/helpcontent2/source/text/shared/00.po b/source/ar/helpcontent2/source/text/shared/00.po
index 682842b161e..d3adb77d365 100644
--- a/source/ar/helpcontent2/source/text/shared/00.po
+++ b/source/ar/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: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: 2016-11-25 03:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2597,7 +2597,7 @@ msgctxt ""
"00000010.xhp\n"
"par_id3154317\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">Deletes the current selection. If multiple objects are selected, all will be deleted. In most cases, a <link href=\"text/shared/01/03150100.xhp\" name=\"security query\">security query</link> appears before objects are deleted.</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">Deletes the current selection. If multiple objects are selected, all will be deleted. In most cases, a confirmation question appears before objects are deleted.</ahelp>"
msgstr ""
#: 00000010.xhp
diff --git a/source/ar/helpcontent2/source/text/shared/01.po b/source/ar/helpcontent2/source/text/shared/01.po
index bb1d3928a19..f16de5ddd7e 100644
--- a/source/ar/helpcontent2/source/text/shared/01.po
+++ b/source/ar/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: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2016-12-22 13:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1045,7 +1045,7 @@ msgctxt ""
"01010203.xhp\n"
"par_id3155355\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/labeloptionspage/entirepage\" visibility=\"visible\">Creates a full page of labels or business cards.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/labeloptionspage/entirepage\" visibility=\"visible\">Creates a full page of labels or business cards.</ahelp>"
msgstr ""
#: 01010203.xhp
@@ -1061,7 +1061,7 @@ msgctxt ""
"01010203.xhp\n"
"par_id3155535\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/labeloptionspage/singlelabel\" visibility=\"visible\">Prints a single label or business card on a page.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/labeloptionspage/singlelabel\" visibility=\"visible\">Prints a single label or business card on a page.</ahelp>"
msgstr ""
#: 01010203.xhp
@@ -2080,6 +2080,78 @@ msgctxt ""
msgid "<link href=\"text/shared/00/00000020.xhp\" name=\"Import and Export Filters\">Import and Export Filters</link>"
msgstr ""
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"tit\n"
+"help.text"
+msgid "Open Remote..."
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"bm_id1001513636856122\n"
+"help.text"
+msgid "<bookmark_value>remote file;open</bookmark_value> <bookmark_value>open;remote file</bookmark_value>"
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"hd_id151513629025611\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01020001.xhp\" name=\"Open Remote...\">Open Remote...</link>"
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"par_id771513629025613\n"
+"help.text"
+msgid "<variable id=\"openremote1\"><ahelp hid=\".uno:OpenRemote\"/>Opens a document located in a remote file service.</variable>"
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"par_id611513629210220\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">File - Open Remote..</item>"
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"par_id151513629855154\n"
+"help.text"
+msgid "Click the <emph>Remote Files</emph> button in the <emph>Start Center</emph>"
+msgstr ""
+
+#: 01020001.xhp
+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>"
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"par_id531513630220632\n"
+"help.text"
+msgid "A remote file server is web service that stores documents with or without check-in, check-out, version controls and backups."
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"par_id951513629981585\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/cmis-remote-files.xhp\" name=\"CMIS\">Opening and saving files in remote servers</link>"
+msgstr ""
+
#: 01020101.xhp
msgctxt ""
"01020101.xhp\n"
@@ -2320,6 +2392,142 @@ msgctxt ""
msgid "When you edit an AutoText entry, this command changes to <emph>Save AutoText</emph>."
msgstr ""
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"tit\n"
+"help.text"
+msgid "Save Remote..."
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"bm_id381513636896997\n"
+"help.text"
+msgid "<bookmark_value>remote file;save</bookmark_value> <bookmark_value>save;remote file</bookmark_value>"
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"hd_id151513629025611\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01060001.xhp\" name=\"Save Remote...\">Save Remote...</link>"
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"par_id771513629025613\n"
+"help.text"
+msgid "<variable id=\"saveremote1\"><ahelp hid=\".uno:SaveRemote\"/>Saves a document located in a remote file service.</variable>"
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"par_id611513629210220\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">File - Save Remote..</item>"
+msgstr ""
+
+#: 01060001.xhp
+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>"
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"par_id531513630220632\n"
+"help.text"
+msgid "A remote file server is web service that stores documents with or without check-in, check-out, version controls and backups."
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"par_id951513629981585\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/cmis-remote-files.xhp\" name=\"CMIS\">Opening and saving files in remote servers</link>"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"tit\n"
+"help.text"
+msgid "Save a Copy"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"bm_id241513636774794\n"
+"help.text"
+msgid "<bookmark_value>save;save a copy</bookmark_value> <bookmark_value>save a copy</bookmark_value>"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id391513471676787\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01060002.xhp\" name=\"Save a Copy\">Save a Copy</link>"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id1001513471674465\n"
+"help.text"
+msgid "<variable id=\"saveacopy1\"><ahelp hid=\".uno:SaveACopy\">Save a copy of the actual document with another name or location.</ahelp></variable>"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id701513472080716\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">File - Save a Copy</item>"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id881513473450156\n"
+"help.text"
+msgid "Creates another file with same contents of the current file. The current file is kept opened for edition."
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id21513472326060\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01060000.xhp\" name=\"Save\">Save</link>"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id411513472333495\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save as</link>"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id681513472341081\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01070001.xhp\" name=\"Export\">Export</link>"
+msgstr ""
+
#: 01070000.xhp
msgctxt ""
"01070000.xhp\n"
@@ -2664,6 +2872,78 @@ msgctxt ""
msgid "Export"
msgstr ""
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"tit\n"
+"help.text"
+msgid "Export As"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"bm_id781513636674523\n"
+"help.text"
+msgid "<bookmark_value>export as;PDF</bookmark_value> <bookmark_value>export as;EPUB</bookmark_value>"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"hd_id751513634008094\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01070002.xhp\" name=\"Export As...\">Export As...</link>"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"par_id791513634008095\n"
+"help.text"
+msgid "<variable id=\"exportas1\"><ahelp hid=\".\">Export the document in PDF or EPUB formats</ahelp></variable>"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"par_id971513634212601\n"
+"help.text"
+msgid "Choose <emph>File - Export As...</emph>"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"hd_id71513635341099\n"
+"help.text"
+msgid "Export Directly as PDF"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"par_id961513635511473\n"
+"help.text"
+msgid "Export the entire document using your default PDF settings."
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"hd_id851513635358546\n"
+"help.text"
+msgid "Export Directly as EPUB"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"par_id811513635541682\n"
+"help.text"
+msgid "Export the entire document using your default EPUB settings."
+msgstr ""
+
#: 01100000.xhp
msgctxt ""
"01100000.xhp\n"
@@ -11752,94 +12032,6 @@ msgctxt ""
msgid "You can still use shortcut keys in <emph>Full Screen</emph> mode, even though the menus are unavailable. <switchinline select=\"sys\"><caseinline select=\"WIN\">To open the <emph>View</emph> menu, press Alt+V. </caseinline></switchinline>"
msgstr ""
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Confirm Delete"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"hd_id3150278\n"
-"help.text"
-msgid "Confirm Delete"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"par_id3148668\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:MODALDIALOG:DLG_SFX_QUERYDELETE\" visibility=\"visible\">Confirms or cancels the deletion.</ahelp>"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"hd_id3152821\n"
-"help.text"
-msgid "Delete"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"par_id3150040\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_YES\" visibility=\"visible\">Performs the deletion in the current file.</ahelp>"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"hd_id3149999\n"
-"help.text"
-msgid "Delete All"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"par_id3155616\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_ALL\" visibility=\"visible\">Performs the deletion in all selected files.</ahelp>"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"hd_id3157991\n"
-"help.text"
-msgid "Do Not Delete"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"par_id3147043\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_NO\" visibility=\"visible\">Rejects the deletion for the current file.</ahelp>"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"hd_id3149346\n"
-"help.text"
-msgid "Cancel"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"par_id3148620\n"
-"help.text"
-msgid "Cancels the deletion in the current file and any other selected files."
-msgstr ""
-
#: 03170000.xhp
msgctxt ""
"03170000.xhp\n"
@@ -22125,7 +22317,15 @@ msgctxt ""
"05110600m.xhp\n"
"tit\n"
"help.text"
-msgid "Space Rows Equally"
+msgid "Distribute Rows Equally"
+msgstr ""
+
+#: 05110600m.xhp
+msgctxt ""
+"05110600m.xhp\n"
+"bm_id431513359599959\n"
+"help.text"
+msgid "<bookmark_value>table rows;distribute height equally</bookmark_value> <bookmark_value>row height;distribute equally</bookmark_value>"
msgstr ""
#: 05110600m.xhp
@@ -22133,7 +22333,7 @@ msgctxt ""
"05110600m.xhp\n"
"hd_id3149871\n"
"help.text"
-msgid "<link href=\"text/shared/01/05110600m.xhp\" name=\"Space Equally\">Space Rows Equally</link>"
+msgid "<link href=\"text/shared/01/05110600m.xhp\" name=\"Distribute Equally\">Distribute Rows Equally</link>"
msgstr ""
#: 05110600m.xhp
@@ -22149,7 +22349,7 @@ msgctxt ""
"05110600m.xhp\n"
"par_id3153569\n"
"help.text"
-msgid "Choose <emph>Table - Autofit - Distribute Rows Equally</emph>"
+msgid "Choose <emph>Table - Size - Distribute Rows Equally</emph>"
msgstr ""
#: 05110600m.xhp
@@ -22341,7 +22541,15 @@ msgctxt ""
"05120600.xhp\n"
"tit\n"
"help.text"
-msgid "Space Columns Equally"
+msgid "Distribute Columns Equally"
+msgstr ""
+
+#: 05120600.xhp
+msgctxt ""
+"05120600.xhp\n"
+"bm_id431513359599959\n"
+"help.text"
+msgid "<bookmark_value>table columns;distribute columns equally</bookmark_value> <bookmark_value>column width;distribute equally</bookmark_value>"
msgstr ""
#: 05120600.xhp
@@ -22349,7 +22557,7 @@ msgctxt ""
"05120600.xhp\n"
"hd_id3153811\n"
"help.text"
-msgid "<link href=\"text/shared/01/05120600.xhp\" name=\"Space Equally\">Space Columns Equally</link>"
+msgid "<link href=\"text/shared/01/05120600.xhp\" name=\"Distribute Equally\">Distribute Columns Equally</link>"
msgstr ""
#: 05120600.xhp
@@ -22365,7 +22573,7 @@ msgctxt ""
"05120600.xhp\n"
"par_id3159219\n"
"help.text"
-msgid "Choose <emph>Table - Autofit - Distribute Columns Equally</emph>"
+msgid "Choose <emph>Table - Size - Distribute Columns Equally</emph>"
msgstr ""
#: 05120600.xhp
@@ -22389,7 +22597,7 @@ msgctxt ""
"05120600.xhp\n"
"par_id3151364\n"
"help.text"
-msgid "Space Columns Equally"
+msgid "Distribute Columns Equally"
msgstr ""
#: 05140100.xhp
@@ -33789,7 +33997,7 @@ msgctxt ""
"06130000.xhp\n"
"par_idN10A39\n"
"help.text"
-msgid "<variable id=\"script\">Scripts </variable>"
+msgid "<variable id=\"script\">Scripts</variable>"
msgstr ""
#: 06130000.xhp
@@ -33960,14 +34168,6 @@ msgctxt ""
msgid "Click a script, and then click a command button."
msgstr ""
-#: 06130000.xhp
-msgctxt ""
-"06130000.xhp\n"
-"par_id3153138\n"
-"help.text"
-msgid "<link href=\"text/shared/main0600.xhp\" name=\"Macro programming in $[officename]\">Macro programming in $[officename]</link>"
-msgstr ""
-
#: 06130001.xhp
msgctxt ""
"06130001.xhp\n"
diff --git a/source/ar/helpcontent2/source/text/shared/02.po b/source/ar/helpcontent2/source/text/shared/02.po
index 9be8b466ecf..6d367441507 100644
--- a/source/ar/helpcontent2/source/text/shared/02.po
+++ b/source/ar/helpcontent2/source/text/shared/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: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
"PO-Revision-Date: 2016-05-24 02:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9493,7 +9493,7 @@ msgctxt ""
"02010000.xhp\n"
"tit\n"
"help.text"
-msgid "Apply Style"
+msgid "Set Paragrph Style"
msgstr ""
#: 02010000.xhp
@@ -9501,7 +9501,7 @@ msgctxt ""
"02010000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02010000.xhp\" name=\"Apply Style\">Apply Style</link>"
+msgid "<link href=\"text/shared/02/02010000.xhp\" name=\"Set Paragraph Style\">Set Paragraph Style</link>"
msgstr ""
#: 02010000.xhp
@@ -9533,7 +9533,7 @@ msgctxt ""
"02010000.xhp\n"
"par_id3155552\n"
"help.text"
-msgid "<image id=\"img_id3152801\" src=\"media/helpimg/zellvor.png\" width=\"2.642cm\" height=\"0.533cm\" localize=\"true\"><alt id=\"alt_id3152801\">Apply Style</alt></image>"
+msgid "<image id=\"img_id3152801\" src=\"media/helpimg/zellvor.png\" width=\"2.642cm\" height=\"0.533cm\" localize=\"true\"><alt id=\"alt_id3152801\">Set Paragraph Style</alt></image>"
msgstr ""
#: 02010000.xhp
@@ -9541,7 +9541,7 @@ msgctxt ""
"02010000.xhp\n"
"par_id3145345\n"
"help.text"
-msgid "Apply Style"
+msgid "Set Paragraph Style"
msgstr ""
#: 02020000.xhp
@@ -13325,7 +13325,7 @@ msgctxt ""
"12090100.xhp\n"
"hd_id3153061\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More Options\">More Options</link>"
+msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"Options\">Options</link>"
msgstr ""
#: 12090101.xhp
@@ -15765,7 +15765,7 @@ msgctxt ""
"20050000.xhp\n"
"bm_id3148668\n"
"help.text"
-msgid "<bookmark_value>selection modes in text</bookmark_value><bookmark_value>text; selection modes</bookmark_value><bookmark_value>extending selection mode</bookmark_value><bookmark_value>adding selection mode</bookmark_value><bookmark_value>block selection mode</bookmark_value>"
+msgid "<bookmark_value>selection modes in text</bookmark_value> <bookmark_value>text; selection modes</bookmark_value> <bookmark_value>extending selection mode</bookmark_value> <bookmark_value>adding selection mode</bookmark_value> <bookmark_value>block selection mode</bookmark_value>"
msgstr ""
#: 20050000.xhp
@@ -15821,7 +15821,7 @@ msgctxt ""
"20050000.xhp\n"
"par_id3147209\n"
"help.text"
-msgid "Click in text where you want to position the cursor; click in a cell to make it the active cell. Any other selection is then deselected."
+msgid "This is the default selection mode for text documents. With the keyboard, selections can be performed by Shift+NavigationKey (<item type=\"keycode\">arrows, Home, End, Page Up, Page Down</item>). With the mouse, click in the text where the selection is to start, hold the left mouse button and move to the end of the selection. Release the mouse key to end selection."
msgstr ""
#: 20050000.xhp
@@ -15837,7 +15837,7 @@ msgctxt ""
"20050000.xhp\n"
"par_id3153717\n"
"help.text"
-msgid "Clicking in the text extends or crops the current selection."
+msgid "By using the arrow keys or the <item type=\"keycode\">Home</item> and <item type=\"keycode\">End</item> keys you can extend or crop the current selection. Clicking into the text selects the text between the current cursor position and the click position. You also can use (with or without <item type=\"keycode\">Shift</item> key) the arrow keys and the keys <item type=\"keycode\">Home</item> and <item type=\"keycode\">End</item> to increase or decrease the current selection."
msgstr ""
#: 20050000.xhp
@@ -15880,6 +15880,14 @@ msgctxt ""
msgid "On Windows systems, you can hold down the <item type=\"keycode\">Alt</item> key while dragging to select a block of text. You don't need to enter the block selection mode."
msgstr ""
+#: 20050000.xhp
+msgctxt ""
+"20050000.xhp\n"
+"par_id901513465638512\n"
+"help.text"
+msgid "<link href=\"text/swriter/guide/text_nav_keyb.xhp\" name=\"Navigating and Selecting With the Keyboard\">Navigating and Selecting With the Keyboard</link>"
+msgstr ""
+
#: 20060000.xhp
msgctxt ""
"20060000.xhp\n"
diff --git a/source/ar/helpcontent2/source/text/shared/05.po b/source/ar/helpcontent2/source/text/shared/05.po
index 341b90843a5..cfca31d4222 100644
--- a/source/ar/helpcontent2/source/text/shared/05.po
+++ b/source/ar/helpcontent2/source/text/shared/05.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: 2016-04-16 21:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -149,7 +149,7 @@ msgctxt ""
"00000001.xhp\n"
"par_id3497211\n"
"help.text"
-msgid "You can download documentation as PDF files, how-tos, and guides from the %PRODUCTNAME documentation website at <link href=\"http://documentation.libreoffice.org\">documentation.libreoffice.org</link>. You can also access the documentation website choosing the menu <item type=\"menuitem\">Help – User Guides…</item> ."
+msgid "You can download documentation as PDF files, how-tos, and guides from the %PRODUCTNAME documentation website at <link href=\"http://documentation.libreoffice.org\">documentation.libreoffice.org</link>. You can also access the documentation website choosing the menu <item type=\"menuitem\">Help – User Guides…</item>"
msgstr ""
#: 00000001.xhp
diff --git a/source/ar/helpcontent2/source/text/shared/autopi.po b/source/ar/helpcontent2/source/text/shared/autopi.po
index 736d8a3b503..304188799d8 100644
--- a/source/ar/helpcontent2/source/text/shared/autopi.po
+++ b/source/ar/helpcontent2/source/text/shared/autopi.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: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
"PO-Revision-Date: 2016-05-24 02:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6229,7 +6229,7 @@ msgctxt ""
"01150000.xhp\n"
"par_id3149140\n"
"help.text"
-msgid "<variable id=\"eurokonv\"><ahelp hid=\".uno:EuroConverter\">Converts the currency amounts found in $[officename] Calc documents and in fields and tables of $[officename] Writer documents into euros.</ahelp></variable>"
+msgid "<variable id=\"eurokonv\"><ahelp hid=\".\">Converts the currency amounts found in $[officename] Calc documents and in fields and tables of $[officename] Writer documents into euros.</ahelp></variable>"
msgstr ""
#: 01150000.xhp
@@ -6269,7 +6269,7 @@ msgctxt ""
"01150000.xhp\n"
"par_id3155420\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OBFILE\">Converts a single $[officename] Calc file.</ahelp> To convert fields and tables in $[officename] Writer, first mark the <emph>Also convert fields and tables in text documents </emph>check box."
+msgid "<ahelp hid=\".\">Converts a single $[officename] Calc file.</ahelp> To convert fields and tables in $[officename] Writer, first mark the <emph>Also convert fields and tables in text documents </emph>check box."
msgstr ""
#: 01150000.xhp
@@ -6285,7 +6285,7 @@ msgctxt ""
"01150000.xhp\n"
"par_id3150670\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OBDIR\">Converts all $[officename] Calc and $[officename] Writer documents and templates in the selected directory.</ahelp>"
+msgid "<ahelp hid=\".\">Converts all $[officename] Calc and $[officename] Writer documents and templates in the selected directory.</ahelp>"
msgstr ""
#: 01150000.xhp
@@ -6301,7 +6301,7 @@ msgctxt ""
"01150000.xhp\n"
"par_id3156002\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_COMBOBOX1\">Specifies the currency to be converted into euros.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies the currency to be converted into euros.</ahelp>"
msgstr ""
#: 01150000.xhp
@@ -6317,7 +6317,7 @@ msgctxt ""
"01150000.xhp\n"
"par_id3154898\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_TBSOURCE\">Indicates the directory or the name of the single document to be converted.</ahelp>"
+msgid "<ahelp hid=\".\">Indicates the directory or the name of the single document to be converted.</ahelp>"
msgstr ""
#: 01150000.xhp
@@ -6333,7 +6333,7 @@ msgctxt ""
"01150000.xhp\n"
"par_id3147264\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBSOURCEOPEN\">Opens a dialog to select the desired directory or document.</ahelp>"
+msgid "<ahelp hid=\".\">Opens a dialog to select the desired directory or document.</ahelp>"
msgstr ""
#: 01150000.xhp
@@ -6349,7 +6349,7 @@ msgctxt ""
"01150000.xhp\n"
"par_id3152771\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CHECKRECURSIVE\">Specifies whether all subfolders of the selected directory are included.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies whether all subfolders of the selected directory are included.</ahelp>"
msgstr ""
#: 01150000.xhp
@@ -6365,7 +6365,7 @@ msgctxt ""
"01150000.xhp\n"
"par_id3150398\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CHKTEXTDOCUMENTS\">Converts currency amounts found in fields and tables of $[officename] Writer documents.</ahelp>"
+msgid "<ahelp hid=\".\">Converts currency amounts found in fields and tables of $[officename] Writer documents.</ahelp>"
msgstr ""
#: 01150000.xhp
@@ -6389,7 +6389,7 @@ msgctxt ""
"01150000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CHKPROTECT\">Specifies that sheet protection will be disabled during conversion and thereafter re-enabled. If sheet protection is covered by a password, you will see a dialog for entering the password.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies that sheet protection will be disabled during conversion and thereafter re-enabled. If sheet protection is covered by a password, you will see a dialog for entering the password.</ahelp>"
msgstr ""
#: 01150000.xhp
@@ -6405,7 +6405,7 @@ msgctxt ""
"01150000.xhp\n"
"par_id3153771\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_TBTARGET\">Specifies the folder and path in which the converted files are to be saved.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies the folder and path in which the converted files are to be saved.</ahelp>"
msgstr ""
#: 01150000.xhp
@@ -6421,7 +6421,7 @@ msgctxt ""
"01150000.xhp\n"
"par_id3147427\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBTARGETOPEN\">Opens a dialog in which you can select a directory to hold the converted files.</ahelp>"
+msgid "<ahelp hid=\".\">Opens a dialog in which you can select a directory to hold the converted files.</ahelp>"
msgstr ""
#: 01150000.xhp
@@ -6437,7 +6437,7 @@ msgctxt ""
"01150000.xhp\n"
"par_id3153190\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBCANCEL\">Closes the Euro Converter.</ahelp>"
+msgid "<ahelp hid=\".\">Closes the Euro Converter.</ahelp>"
msgstr ""
#: 01150000.xhp
@@ -6453,7 +6453,7 @@ msgctxt ""
"01150000.xhp\n"
"par_id3155413\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBHELP\">Activates the help for the dialog.</ahelp>"
+msgid "<ahelp hid=\".\">Activates the help for the dialog.</ahelp>"
msgstr ""
#: 01150000.xhp
@@ -6469,7 +6469,7 @@ msgctxt ""
"01150000.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBGOON\">Starts the conversion.</ahelp>"
+msgid "<ahelp hid=\".\">Starts the conversion.</ahelp>"
msgstr ""
#: 01150000.xhp
@@ -6493,7 +6493,7 @@ msgctxt ""
"01150000.xhp\n"
"par_id3153953\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBBACK\">Returns to the first page of the Euro Converter.</ahelp>"
+msgid "<ahelp hid=\".\">Returns to the first page of the Euro Converter.</ahelp>"
msgstr ""
#: 01150000.xhp
@@ -6501,7 +6501,7 @@ msgctxt ""
"01150000.xhp\n"
"par_id3154640\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBBACK\">If the current document is a $[officename] Calc document or template, you can call up the Euro Converter using the corresponding icon in the Tools bar.</ahelp> This icon is hidden by default. To display the Euro Converter icon, click the arrow at the end of the Tools bar, select the <emph>Visible Buttons</emph> command and activate the <emph>Euro Converter</emph> icon."
+msgid "If the current document is a $[officename] Calc document or template, you can call up the Euro Converter using the corresponding icon in the Tools bar. This icon is hidden by default. To display the Euro Converter icon, click the arrow at the end of the Tools bar, select the <emph>Visible Buttons</emph> command and activate the <emph>Euro Converter</emph> icon."
msgstr ""
#: 01150000.xhp
@@ -6541,7 +6541,7 @@ msgctxt ""
"01150000.xhp\n"
"par_id3150113\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CHECKBOX1\">Converts the entire document.</ahelp>"
+msgid "<ahelp hid=\".\">Converts the entire document.</ahelp>"
msgstr ""
#: 01150000.xhp
@@ -6557,7 +6557,7 @@ msgctxt ""
"01150000.xhp\n"
"par_id3148834\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_COMBOBOX1\">Specifies the currency to be converted into euros.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies the currency to be converted into euros.</ahelp>"
msgstr ""
#: 01150000.xhp
@@ -6589,7 +6589,7 @@ msgctxt ""
"01150000.xhp\n"
"par_id3145162\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON1\">All cells with the selected Cell Styles are converted.</ahelp>"
+msgid "<ahelp hid=\".\">All cells with the selected Cell Styles are converted.</ahelp>"
msgstr ""
#: 01150000.xhp
@@ -6605,7 +6605,7 @@ msgctxt ""
"01150000.xhp\n"
"par_id3154479\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON2\">All currency cells in the active spreadsheet will be converted.</ahelp>"
+msgid "<ahelp hid=\".\">All currency cells in the active spreadsheet will be converted.</ahelp>"
msgstr ""
#: 01150000.xhp
@@ -6621,7 +6621,7 @@ msgctxt ""
"01150000.xhp\n"
"par_id3146912\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON3\">All currency cells in the active document will be converted.</ahelp>"
+msgid "<ahelp hid=\".\">All currency cells in the active document will be converted.</ahelp>"
msgstr ""
#: 01150000.xhp
@@ -6637,7 +6637,7 @@ msgctxt ""
"01150000.xhp\n"
"par_id3153736\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON4\">All currency cells in the range selected before the converter was called will be converted.</ahelp> All cells must have the same format so that they can be recognized as a selected range."
+msgid "<ahelp hid=\".\">All currency cells in the range selected before the converter was called will be converted.</ahelp> All cells must have the same format so that they can be recognized as a selected range."
msgstr ""
#: 01150000.xhp
@@ -6653,7 +6653,7 @@ msgctxt ""
"01150000.xhp\n"
"par_id3154756\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_LISTBOX1\">Displays the ranges to be converted from the list.</ahelp>"
+msgid "<ahelp hid=\".\">Displays the ranges to be converted from the list.</ahelp>"
msgstr ""
#: 01170000.xhp
diff --git a/source/ar/helpcontent2/source/text/shared/explorer/database.po b/source/ar/helpcontent2/source/text/shared/explorer/database.po
index 0bd07b18362..0eb368fce6e 100644
--- a/source/ar/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/ar/helpcontent2/source/text/shared/explorer/database.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: 2017-07-20 11:52+0200\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
"PO-Revision-Date: 2016-05-24 02:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7581,7 +7581,7 @@ msgctxt ""
"dabawiz02ado.xhp\n"
"par_idN10568\n"
"help.text"
-msgid "$[officename] requires the Microsoft Data Access Components (MDAC) to use the ADO interface. Microsoft Windows 2000 and XP include these components by default. For earlier visions of Windows, you need to install MDAC separately. You can download MDAC from the Microsoft web site."
+msgid "$[officename] requires the Microsoft Data Access Components (MDAC) to use the ADO interface. Microsoft Windows 2000 and XP include these components by default."
msgstr ""
#: dabawiz02ado.xhp
diff --git a/source/ar/helpcontent2/source/text/shared/guide.po b/source/ar/helpcontent2/source/text/shared/guide.po
index 3080501eaa2..f38c419ae51 100644
--- a/source/ar/helpcontent2/source/text/shared/guide.po
+++ b/source/ar/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: 2016-12-23 13:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12661,7 +12661,7 @@ msgctxt ""
"macro_recording.xhp\n"
"bm_id3093440\n"
"help.text"
-msgid "<bookmark_value>macros; recording</bookmark_value><bookmark_value>recording; macros</bookmark_value><bookmark_value>Basic; recording macros</bookmark_value>"
+msgid "<bookmark_value>macros; recording</bookmark_value> <bookmark_value>recording; macros</bookmark_value> <bookmark_value>Basic; recording macros</bookmark_value>"
msgstr ""
#: macro_recording.xhp
@@ -12669,7 +12669,15 @@ msgctxt ""
"macro_recording.xhp\n"
"hd_id3093440\n"
"help.text"
-msgid "<variable id=\"macro_recording\"><link href=\"text/shared/guide/macro_recording.xhp\" name=\"Recording a Macro\">Recording a Macro</link></variable>"
+msgid "<variable id=\"macro_recording\"><link href=\"text/shared/guide/macro_recording.xhp\" name=\"Recording a Macro\">Recording a Macro</link> </variable>"
+msgstr ""
+
+#: macro_recording.xhp
+msgctxt ""
+"macro_recording.xhp\n"
+"par_id101513461219184\n"
+"help.text"
+msgid "%PRODUCTNAME can record commands executed with the keyboard and mouse in Writer and Calc"
msgstr ""
#: macro_recording.xhp
@@ -12779,6 +12787,14 @@ msgstr ""
#: macro_recording.xhp
msgctxt ""
"macro_recording.xhp\n"
+"bm_id131513460596344\n"
+"help.text"
+msgid "<bookmark_value>macro recording;limitations</bookmark_value>"
+msgstr ""
+
+#: macro_recording.xhp
+msgctxt ""
+"macro_recording.xhp\n"
"hd_id2486342\n"
"help.text"
msgid "Limitations of the macro recorder"
@@ -12848,14 +12864,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">Macro</link>"
msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">حفظ باسم</link>"
-#: macro_recording.xhp
-msgctxt ""
-"macro_recording.xhp\n"
-"par_id3147576\n"
-"help.text"
-msgid "<link href=\"text/shared/main0600.xhp\" name=\"macro programming in $[officename]\">Programming in %PRODUCTNAME</link>"
-msgstr ""
-
#: main.xhp
msgctxt ""
"main.xhp\n"
diff --git a/source/ar/helpcontent2/source/text/shared/optionen.po b/source/ar/helpcontent2/source/text/shared/optionen.po
index 5255808671c..6dac0e4e52e 100644
--- a/source/ar/helpcontent2/source/text/shared/optionen.po
+++ b/source/ar/helpcontent2/source/text/shared/optionen.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: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
"PO-Revision-Date: 2016-07-05 15:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -107,14 +107,6 @@ msgstr ""
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
-"hd_id3150872\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/01030000.xhp\" name=\"Internet\">Internet</link>"
-msgstr ""
-
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
"hd_id3153188\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01040000.xhp\" name=\"Text Document\">%PRODUCTNAME Writer</link>"
@@ -163,6 +155,14 @@ msgstr ""
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id3149420\n"
+"help.text"
+msgid "<link href=\"text/shared/optionen/01160000.xhp\" name=\"Data Sources\">%PRODUCTNAME Base</link>"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3155418\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01110000.xhp\" name=\"Chart\">Charts</link>"
@@ -171,9 +171,9 @@ msgstr ""
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
-"hd_id3149420\n"
+"hd_id3150872\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01160000.xhp\" name=\"Data Sources\">%PRODUCTNAME Database</link>"
+msgid "<link href=\"text/shared/optionen/01030000.xhp\" name=\"Internet\">Internet</link>"
msgstr ""
#: 01010000.xhp
@@ -197,7 +197,7 @@ msgctxt ""
"01010000.xhp\n"
"par_id3149177\n"
"help.text"
-msgid "<variable id=\"optionenallgemein\"><ahelp hid=\"SID_GENERAL_OPTIONS\">Use this dialog to create general settings for working with $[officename]. The information covers topics such as user data, saving, printing, paths to important files and directories, and color defaults.</ahelp></variable> These settings are saved automatically."
+msgid "<variable id=\"optionenallgemein\">Use this dialog to create general settings for working with $[officename]. The information covers topics such as user data, saving, printing, paths to important files and directories, and color defaults.</variable> These settings are saved automatically."
msgstr ""
#: 01010100.xhp
@@ -1437,7 +1437,7 @@ msgctxt ""
"01010400.xhp\n"
"par_id3145673\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optlingupage/lingumodulesedit\">To edit a language module, select it and click <emph>Edit</emph>.</ahelp> The <link href=\"text/shared/optionen/01010401.xhp\" name=\"Edit Modules\"><emph>Edit </emph><emph>Modules</emph></link> dialog appears."
+msgid "<ahelp hid=\"cui/ui/optlingupage/lingumodulesedit\">To edit a language module, select it and click <emph>Edit</emph>.</ahelp> The <link href=\"text/shared/optionen/01010401.xhp\" name=\"Edit Modules\"><emph>Edit Modules</emph></link> dialog appears."
msgstr ""
#: 01010400.xhp
@@ -10973,7 +10973,7 @@ msgctxt ""
"01070500.xhp\n"
"par_id3154138\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>In a presentation or drawing document, you can also activate the text editing mode through the <emph>Allow Quick Editing</emph> <link href=\"text/simpress/02/13180000.xhp\" name=\"icon\">icon</link> in the <emph>Option</emph> bar.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>In a presentation or drawing document, you can also activate the text editing mode through the <emph>Allow Quick Editing</emph> <link href=\"text/simpress/02/13180000.xhp\" name=\"icon\">icon</link> in the <emph>Options</emph> bar.</defaultinline></switchinline>"
msgstr ""
#: 01070500.xhp
@@ -11005,7 +11005,7 @@ msgctxt ""
"01070500.xhp\n"
"par_id3153367\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>In a presentation or drawing document, you can also activate this mode through the<emph> Select Text Area Only </emph><link href=\"text/simpress/02/13190000.xhp\" name=\"icon\">icon</link> in the <emph>Option</emph> bar.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>In a presentation or drawing document, you can also activate this mode through the<emph> Select Text Area Only </emph><link href=\"text/simpress/02/13190000.xhp\" name=\"icon\">icon</link> in the <emph>Options</emph> bar.</defaultinline></switchinline>"
msgstr ""
#: 01070500.xhp
diff --git a/source/ar/helpcontent2/source/text/simpress.po b/source/ar/helpcontent2/source/text/simpress.po
index 7f7a9e0fee3..015fdbb8621 100644
--- a/source/ar/helpcontent2/source/text/simpress.po
+++ b/source/ar/helpcontent2/source/text/simpress.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: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: 2016-04-16 22:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1615,307 +1615,3 @@ msgctxt ""
"help.text"
msgid "$[officename] Impress gives you the choice of running a slide show automatically or manually."
msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"tit\n"
-"help.text"
-msgid "Presenter Console Keyboard Shortcuts"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"bm_id0921200912285678\n"
-"help.text"
-msgid "<bookmark_value>Presenter Console shortcuts</bookmark_value>"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"hd_id0921201912165661\n"
-"help.text"
-msgid "Presenter Console Keyboard Shortcuts"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921201912165656\n"
-"help.text"
-msgid "When running a slide show using the Presenter Console, you can use the following keys:"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104028\n"
-"help.text"
-msgid "Action"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104093\n"
-"help.text"
-msgid "Key or Keys"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110418\n"
-"help.text"
-msgid "Next slide, or next effect"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104120\n"
-"help.text"
-msgid "Left click, right arrow, down arrow, spacebar, page down, enter, return, 'N'"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104165\n"
-"help.text"
-msgid "Previous slide, or previous effect"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104115\n"
-"help.text"
-msgid "Right click, left arrow, up arrow, page up, backspace, 'P'"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104164\n"
-"help.text"
-msgid "First slide"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104148\n"
-"help.text"
-msgid "Home"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104221\n"
-"help.text"
-msgid "Last slide"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104277\n"
-"help.text"
-msgid "End"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104279\n"
-"help.text"
-msgid "Previous slide without effects"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110423\n"
-"help.text"
-msgid "Alt+Page Up"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110427\n"
-"help.text"
-msgid "Next slide without effects"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104261\n"
-"help.text"
-msgid "Alt+Page Down"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104383\n"
-"help.text"
-msgid "Black/Unblack the screen"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110431\n"
-"help.text"
-msgid "'B', '.'"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104311\n"
-"help.text"
-msgid "White/Unwhite the screen"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104359\n"
-"help.text"
-msgid "'W', ','"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104336\n"
-"help.text"
-msgid "End slide show"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104419\n"
-"help.text"
-msgid "Esc, '-'"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104460\n"
-"help.text"
-msgid "Go to slide number"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110440\n"
-"help.text"
-msgid "Number followed by Enter"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104427\n"
-"help.text"
-msgid "Grow/Shrink size of notes font"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104442\n"
-"help.text"
-msgid "'G', 'S'"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104473\n"
-"help.text"
-msgid "Scroll notes up/down"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110459\n"
-"help.text"
-msgid "'A', 'Z'"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110456\n"
-"help.text"
-msgid "Move caret in notes view backward/forward"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110457\n"
-"help.text"
-msgid "'H', 'L'"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104566\n"
-"help.text"
-msgid "Show the Presenter Console"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104544\n"
-"help.text"
-msgid "Ctrl-'1'"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104535\n"
-"help.text"
-msgid "Show the Presentation Notes"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104680\n"
-"help.text"
-msgid "Ctrl-'2'"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104634\n"
-"help.text"
-msgid "Show the Slides Overview"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104632\n"
-"help.text"
-msgid "Ctrl-'3'"
-msgstr ""
diff --git a/source/ar/helpcontent2/source/text/simpress/04.po b/source/ar/helpcontent2/source/text/simpress/04.po
index 1e47b051244..802916e239c 100644
--- a/source/ar/helpcontent2/source/text/simpress/04.po
+++ b/source/ar/helpcontent2/source/text/simpress/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: 2016-01-08 13:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1623,3 +1623,307 @@ msgctxt ""
"help.text"
msgid "Change to Normal Mode with the active slide."
msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"tit\n"
+"help.text"
+msgid "Presenter Console Keyboard Shortcuts"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"bm_id0921200912285678\n"
+"help.text"
+msgid "<bookmark_value>Presenter Console shortcuts</bookmark_value>"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"hd_id0921201912165661\n"
+"help.text"
+msgid "Presenter Console Keyboard Shortcuts"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921201912165656\n"
+"help.text"
+msgid "When running a slide show using the Presenter Console, you can use the following keys:"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104028\n"
+"help.text"
+msgid "Action"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104093\n"
+"help.text"
+msgid "Key or Keys"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110418\n"
+"help.text"
+msgid "Next slide, or next effect"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104120\n"
+"help.text"
+msgid "Left click, right arrow, down arrow, spacebar, page down, enter, return, 'N'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104165\n"
+"help.text"
+msgid "Previous slide, or previous effect"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104115\n"
+"help.text"
+msgid "Right click, left arrow, up arrow, page up, backspace, 'P'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104164\n"
+"help.text"
+msgid "First slide"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104148\n"
+"help.text"
+msgid "Home"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104221\n"
+"help.text"
+msgid "Last slide"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104277\n"
+"help.text"
+msgid "End"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104279\n"
+"help.text"
+msgid "Previous slide without effects"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110423\n"
+"help.text"
+msgid "Alt+Page Up"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110427\n"
+"help.text"
+msgid "Next slide without effects"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104261\n"
+"help.text"
+msgid "Alt+Page Down"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104383\n"
+"help.text"
+msgid "Black/Unblack the screen"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110431\n"
+"help.text"
+msgid "'B', '.'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104311\n"
+"help.text"
+msgid "White/Unwhite the screen"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104359\n"
+"help.text"
+msgid "'W', ','"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104336\n"
+"help.text"
+msgid "End slide show"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104419\n"
+"help.text"
+msgid "Esc, '-'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104460\n"
+"help.text"
+msgid "Go to slide number"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110440\n"
+"help.text"
+msgid "Number followed by Enter"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104427\n"
+"help.text"
+msgid "Grow/Shrink size of notes font"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104442\n"
+"help.text"
+msgid "'G', 'S'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104473\n"
+"help.text"
+msgid "Scroll notes up/down"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110459\n"
+"help.text"
+msgid "'A', 'Z'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110456\n"
+"help.text"
+msgid "Move caret in notes view backward/forward"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110457\n"
+"help.text"
+msgid "'H', 'L'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104566\n"
+"help.text"
+msgid "Show the Presenter Console"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104544\n"
+"help.text"
+msgid "Ctrl-'1'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104535\n"
+"help.text"
+msgid "Show the Presentation Notes"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104680\n"
+"help.text"
+msgid "Ctrl-'2'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104634\n"
+"help.text"
+msgid "Show the Slides Overview"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104632\n"
+"help.text"
+msgid "Ctrl-'3'"
+msgstr ""
diff --git a/source/ar/helpcontent2/source/text/simpress/guide.po b/source/ar/helpcontent2/source/text/simpress/guide.po
index 37c0f2e1fda..0f48fb1e055 100644
--- a/source/ar/helpcontent2/source/text/simpress/guide.po
+++ b/source/ar/helpcontent2/source/text/simpress/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: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: 2016-05-07 22:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2160,6 +2160,14 @@ msgctxt ""
msgid "<link href=\"https://itunes.apple.com/us/app/libreoffice-remote-for-impress/id806879890?mt=8\" name=\"Impress Remote in Apple Itunes Store\">Impress Remote in Apple iTunes Store</link>"
msgstr ""
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id631512838846263\n"
+"help.text"
+msgid "<link href=\"text/simpress/guide/presenter_console.xhp\" name=\"The Presenter Console\">The Presenter Console</link>"
+msgstr ""
+
#: individual.xhp
msgctxt ""
"individual.xhp\n"
@@ -4648,6 +4656,278 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/insert_bitmap.xhp\">Insert images</link>"
msgstr ""
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"tit\n"
+"help.text"
+msgid "Using the Presenter Console"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id190820172252141064\n"
+"help.text"
+msgid "<link href=\"text/simpress/guide/presenter_console.xhp\">Using the Presenter Console</link>"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id190820172252291885\n"
+"help.text"
+msgid "<ahelp hid=\".\">The Presenter Console displays the slide show in an external screen (projector or large television), while the presentation controls are shown in the computer screen.</ahelp>"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id190820172252291668\n"
+"help.text"
+msgid "The Presenter Console provides extra control over slide shows by using different views on your computer display and on the display seen by the audience. The view you see on your computer display includes the current slide, the upcoming slide, optionally the slide notes, and a presentation timer."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id91512579485395\n"
+"help.text"
+msgid "The Presenter Console works only on an operating system that supports multiple displays and only when two displays are connected (one may be the laptop built-in display)."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id391512577186778\n"
+"help.text"
+msgid "Presenter console activation"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id21512577205388\n"
+"help.text"
+msgid "To enable the Presenter Console:"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id351512577323192\n"
+"help.text"
+msgid "<item type=\"item_type\">Tools - Options - %PRODUCTNAME Impres - General</item>"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id411512577389978\n"
+"help.text"
+msgid "Select <emph>Enable Presenter Console</emph> in the Presentation area."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id261512578116942\n"
+"help.text"
+msgid "<image src=\"media/screenshots/cui/ui/optionsdialog/impressoptionsgeneraldialog.png\" width=\"793px\" height=\"538px\"> <alt id=\"alt_id821512578116950\">Enable Presenter Console option</alt> </image>"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id371512836579028\n"
+"help.text"
+msgid "To activate the Presenter Console:"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id101512577717469\n"
+"help.text"
+msgid "Connect an auxiliary display to your computer,"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id391512577726275\n"
+"help.text"
+msgid "Run the slide show. Press F5 or Shift-F5 or choose <item type=\"menuitem\">Slide Show - Start from First Slide</item> or <item type=\"menuitem\">Start from Current Slide</item>."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id911512577777440\n"
+"help.text"
+msgid "Presenter console controls"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id721512827886185\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sd_PresenterConsole04.png\" id=\"img_id401512827886185\" width=\"640\" height=\"72\"> <alt id=\"alt_id71512827886185\">Presenter Console Controls</alt> </image>"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id71512828085688\n"
+"help.text"
+msgid "<emph>Previous</emph>: move to previous slide"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id61512828110394\n"
+"help.text"
+msgid "<emph>Next</emph>: move to next slide"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id981512828129990\n"
+"help.text"
+msgid "<emph>Notes</emph>: display the Presenter Console Notes mode"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id101512828220096\n"
+"help.text"
+msgid "<emph>Slide</emph>: display the Presenter Console Slide sorter mode"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id241512828268769\n"
+"help.text"
+msgid "<emph>Restart</emph>: restart the presentation from slide one."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id731512828322875\n"
+"help.text"
+msgid "<emph>Exchange</emph>: Switch the displays between the computer and the presentation display."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id891512828892146\n"
+"help.text"
+msgid "<emph>Close</emph>: In the Notes and Slide Sorter mode, return to the Normal mode."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id281512836182615\n"
+"help.text"
+msgid "Presenter Console Keyboard Shortcuts"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id791512827206666\n"
+"help.text"
+msgid "Presenter Console modes"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id181512827240072\n"
+"help.text"
+msgid "Normal Mode"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id341512828780413\n"
+"help.text"
+msgid "The Normal mode shows the current slide on the left and the next slide on the right of the computer display."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id311512825411947\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sd_PresenterConsole01.png\" id=\"img_id481512825411947\" width=\"640\" height=\"360\"> <alt id=\"alt_id151512825411947\">resenter console normal mode</alt> </image>"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id51512827289580\n"
+"help.text"
+msgid "Notes mode"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id711512828774884\n"
+"help.text"
+msgid "The Notes mode displays the current slide on the left, the slides notes on the right and the next slide below the current slide."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id961512827293400\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sd_PresenterConsole03.png\" id=\"img_id651512827293401\" width=\"640\" height=\"360\"> <alt id=\"alt_id881512827293401\">Notes mode</alt> </image>"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id801512827429345\n"
+"help.text"
+msgid "Slide sorter mode"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id571512828767315\n"
+"help.text"
+msgid "The Slide Sorter mode displays all slides in the computer screen and allows to display the selected slide out of the presentation order."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id721512827434997\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sd_PresenterConsole02.png\" id=\"img_id831512827434997\" width=\"640\" height=\"360\"> <alt id=\"alt_id221512827434997\">Slide sorter mode</alt> </image>"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id311512837936329\n"
+"help.text"
+msgid "<link href=\"text/simpress/guide/impress_remote.xhp\" name=\"Impress Remote User Guide\">Impress Remote User Guide</link>"
+msgstr ""
+
#: print_tofit.xhp
msgctxt ""
"print_tofit.xhp\n"
diff --git a/source/ar/helpcontent2/source/text/smath.po b/source/ar/helpcontent2/source/text/smath.po
index 6a1d0e794ab..e1b2fd292b4 100644
--- a/source/ar/helpcontent2/source/text/smath.po
+++ b/source/ar/helpcontent2/source/text/smath.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: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2015-08-25 12:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -120,70 +120,6 @@ msgctxt ""
msgid "This menu contains the general commands for working with formula documents, such as open, save and print."
msgstr "هذه القائمة تحوي الأوامر الأساسية للعمل مع مستندات الصيغة، كالفتح، الحفظ والطباعة."
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3148489\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
-msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">فتح</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3149501\n"
-"help.text"
-msgid "<link href=\"text/shared/autopi/01000000.xhp\" name=\"AutoPilot\">Wizards</link>"
-msgstr "<link href=\"text/shared/autopi/01000000.xhp\" name=\"AutoPilot\">المعالجات</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"par_id3148840\n"
-"help.text"
-msgid "Use a Wizard to create interactive documents, such as professional letters and faxes, into which you can insert your saved formulas."
-msgstr "استخدام معالج لإنشاء مستندات تفاعلية، مثل الرسائل والفاكسات المهنية، حيث يمكنك إدراج الصيغ المحفوظة."
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3153251\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
-msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">حفظ باسم</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3149871\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
-msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">الإصدارات</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3146325\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
-msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">خصائص</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3155621\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
-msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">طباعة</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3145826\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">Printer Setup</link>"
-msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">إعدادات الطابعة</link>"
-
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
diff --git a/source/ar/helpcontent2/source/text/swriter/guide.po b/source/ar/helpcontent2/source/text/swriter/guide.po
index e51f623ebfa..2ed9d22e3aa 100644
--- a/source/ar/helpcontent2/source/text/swriter/guide.po
+++ b/source/ar/helpcontent2/source/text/swriter/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: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
"PO-Revision-Date: 2016-07-05 16:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7213,7 +7213,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item> and click the <emph>Numbering</emph> tab."
msgstr ""
#: indices_enter.xhp
@@ -15704,6 +15704,14 @@ msgctxt ""
msgid "Moves the cursor to the footer."
msgstr ""
+#: text_nav_keyb.xhp
+msgctxt ""
+"text_nav_keyb.xhp\n"
+"par_id921513466017508\n"
+"help.text"
+msgid "<link href=\"text/shared/02/20050000.xhp\" name=\"Selection modes\">Selection Modes</link>"
+msgstr ""
+
#: text_rotate.xhp
msgctxt ""
"text_rotate.xhp\n"
diff --git a/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po
index 3ca70b97008..19ae62c6a8c 100644
--- a/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ar/officecfg/registry/data/org/openoffice/Office/UI.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: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2017-11-26 03:34+0000\n"
"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2771,8 +2771,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:Hide\n"
"Label\n"
"value.text"
-msgid "~Hide Sheets"
-msgstr "إخف~اء الأوراق"
+msgid "~Hide Sheet"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -3519,17 +3519,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:EditLinks\n"
"Label\n"
"value.text"
-msgid "Edit Lin~ks..."
-msgstr "حرّر الرواب~ط..."
-
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:EditLinks\n"
-"ContextLabel\n"
-"value.text"
-msgid "Lin~ks..."
-msgstr "الرواب~ط..."
+msgid "Lin~ks to External Files..."
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -6875,15 +6866,6 @@ msgstr "شري~حة"
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Commands..uno:SlideNavigateMenu\n"
-"Label\n"
-"value.text"
-msgid "Navigate"
-msgstr "تنقل"
-
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:SlideMoveMenu\n"
"Label\n"
"value.text"
@@ -7489,6 +7471,15 @@ msgstr "رقم الص~فحة"
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlideField\n"
+"Label\n"
+"value.text"
+msgid "~Slide Number"
+msgstr ""
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:InsertPageTitleField\n"
"Label\n"
"value.text"
@@ -7498,6 +7489,15 @@ msgstr "ع~نوان الصّفحة"
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlideTitleField\n"
+"Label\n"
+"value.text"
+msgid "Slide Tit~le"
+msgstr ""
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:InsertPagesField\n"
"Label\n"
"value.text"
@@ -7507,6 +7507,15 @@ msgstr "عدد ال~صفحات"
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlidesField\n"
+"Label\n"
+"value.text"
+msgid "Slide ~Count"
+msgstr ""
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:ModifyField\n"
"Label\n"
"value.text"
@@ -7726,8 +7735,8 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:ManageLinks\n"
"Label\n"
"value.text"
-msgid "Lin~ks..."
-msgstr "الر~وابط..."
+msgid "Lin~ks to External Files..."
+msgstr ""
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7816,8 +7825,8 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:ImportSlideFromFile\n"
"Label\n"
"value.text"
-msgid "Import Slides..."
-msgstr "استورد شرائح..."
+msgid "Insert Slide from File..."
+msgstr ""
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9035,6 +9044,15 @@ msgstr "رقم ال~صفحة..."
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Popups..uno:InsertSlideNumber\n"
+"Label\n"
+"value.text"
+msgid "S~lide Number..."
+msgstr ""
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:InsertDateAndTime\n"
"Label\n"
"value.text"
@@ -17478,8 +17496,8 @@ msgctxt ""
"..GenericCommands.UserInterface.Commands..uno:InsertDoc\n"
"Label\n"
"value.text"
-msgid "Doc~ument..."
-msgstr "~مستند..."
+msgid "Text from File..."
+msgstr ""
#: GenericCommands.xcu
msgctxt ""
@@ -17655,6 +17673,15 @@ msgstr "أظهر شريط الأنماط الجانبي"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ViewSidebarStyles\n"
+"Label\n"
+"value.text"
+msgid "Styles"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:OutlineRight\n"
"Label\n"
"value.text"
@@ -19259,24 +19286,6 @@ msgstr "أدرج إموجي"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
-"Label\n"
-"value.text"
-msgid "Charmap"
-msgstr ""
-
-#: GenericCommands.xcu
-msgctxt ""
-"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
-"TooltipLabel\n"
-"value.text"
-msgid "Insert Special Characters"
-msgstr "أدرج محرفا خاصا"
-
-#: GenericCommands.xcu
-msgctxt ""
-"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:TransformRotationX\n"
"Label\n"
"value.text"
@@ -20420,6 +20429,33 @@ msgstr "أدرِج رمزّا خاصًا"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"Label\n"
+"value.text"
+msgid "Symbol"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"ContextLabel\n"
+"value.text"
+msgid "S~pecial Character..."
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Insert Special Characters"
+msgstr "أدرج محرفا خاصا"
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ViewDataSourceBrowser\n"
"Label\n"
"value.text"
@@ -20465,6 +20501,15 @@ msgstr "أرسل عبر بلوتو~ث..."
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ExportAsMenu\n"
+"Label\n"
+"value.text"
+msgid "~Export As"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportToPDF\n"
"Label\n"
"value.text"
@@ -20531,8 +20576,8 @@ msgctxt ""
"..GenericCommands.UserInterface.Commands..uno:ExportToEPUB\n"
"ContextLabel\n"
"value.text"
-msgid "~Export as EPUB..."
-msgstr "~صدّر كَ‍ EPUB..."
+msgid "Export as E~PUB..."
+msgstr ""
#: GenericCommands.xcu
msgctxt ""
@@ -22888,6 +22933,15 @@ msgctxt ""
msgid "~Restart in Safe Mode..."
msgstr "أ_عِد التشغيل في الوضع الآمن..."
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:NavigateMenu\n"
+"Label\n"
+"value.text"
+msgid "Navigate"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -25521,8 +25575,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:ShowHiddenParagraphs\n"
"Label\n"
"value.text"
-msgid "~Hidden Paragraphs"
-msgstr "الف~قرات المخفية"
+msgid "Field ~Hidden Paragraphs"
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
@@ -27484,8 +27538,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:LinkDialog\n"
"Label\n"
"value.text"
-msgid "Lin~ks..."
-msgstr "الر~وابط..."
+msgid "Lin~ks to External Files..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
@@ -30195,11 +30249,11 @@ msgstr "نمط القوائم ”منقوطة“"
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 1&amp;FamilyName:string=NumberingStyles\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 123&amp;FamilyName:string=NumberingStyles\n"
"Label\n"
"value.text"
msgid "Number List"
-msgstr "قائمة مرقومة"
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
@@ -30222,11 +30276,65 @@ msgstr "نمط القوائم ”مرقومة“"
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 4&amp;FamilyName:string=NumberingStyles\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering ABC&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Uppercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaListStyle\n"
"Label\n"
"value.text"
-msgid "Roman List"
-msgstr "قائمة رومانية"
+msgid "Alphabet Uppercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Alphabet Uppercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering abc&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaLowListStyle\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaLowListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Alphabet Lowercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering IVX&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Roman Uppercase List"
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
@@ -30234,8 +30342,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Popups..uno:RomanListStyle\n"
"Label\n"
"value.text"
-msgid "Roman List"
-msgstr "قائمة رومانية"
+msgid "Roman Uppercase List"
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
@@ -30243,8 +30351,35 @@ msgctxt ""
"..WriterCommands.UserInterface.Popups..uno:RomanListStyle\n"
"TooltipLabel\n"
"value.text"
-msgid "Roman List Style"
-msgstr "نمط القوائم ”رومانية“"
+msgid "Roman Uppercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering ivx&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Roman Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:RomanLowListStyle\n"
+"Label\n"
+"value.text"
+msgid "Roman Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:RomanLowListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Roman Lowercase List Style"
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/ar/sd/messages.po b/source/ar/sd/messages.po
index 4f97e0c9849..c5bb0648cce 100644
--- a/source/ar/sd/messages.po
+++ b/source/ar/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 15:29+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: 2017-11-22 19:22+0000\n"
"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1575,899 +1575,909 @@ msgid "Master Slide"
msgstr "الشريحة الرئيسية"
#: strings.hrc:287
+msgctxt "STR_MASTERSLIDE_LABEL"
+msgid "Master Slide:"
+msgstr ""
+
+#: strings.hrc:288
msgctxt "STR_MASTERPAGE_NAME"
msgid "Master Page"
msgstr "الصفحة الرئيسية"
-#: strings.hrc:288
+#: strings.hrc:289
+msgctxt "STR_MASTERPAGE_LABEL"
+msgid "Master Page:"
+msgstr ""
+
+#: strings.hrc:290
msgctxt "STR_NOTES"
msgid "(Notes)"
msgstr "(ملاحظات)"
-#: strings.hrc:289
+#: strings.hrc:291
msgctxt "STR_HANDOUT"
msgid "Handouts"
msgstr "نشرات"
-#: strings.hrc:290
+#: strings.hrc:292
msgctxt "STR_PRESOBJ_MPTITLE"
msgid "Click to edit the title text format"
msgstr "انقر لتحرير تنسيق نص العنوان"
-#: strings.hrc:291
+#: strings.hrc:293
msgctxt "STR_PRESOBJ_MPOUTLINE"
msgid "Click to edit the outline text format"
msgstr "انقر لتحرير تنسيق نص التخطيط"
-#: strings.hrc:292
+#: strings.hrc:294
msgctxt "STR_PRESOBJ_MPOUTLLAYER2"
msgid "Second Outline Level"
msgstr "المستوى الثاني للتخطيط"
-#: strings.hrc:293
+#: strings.hrc:295
msgctxt "STR_PRESOBJ_MPOUTLLAYER3"
msgid "Third Outline Level"
msgstr "المستوى الثالث للتخطيط"
-#: strings.hrc:294
+#: strings.hrc:296
msgctxt "STR_PRESOBJ_MPOUTLLAYER4"
msgid "Fourth Outline Level"
msgstr "المستوى الرابع للتخطيط"
-#: strings.hrc:295
+#: strings.hrc:297
msgctxt "STR_PRESOBJ_MPOUTLLAYER5"
msgid "Fifth Outline Level"
msgstr "المستوى الخامس للتخطيط"
-#: strings.hrc:296
+#: strings.hrc:298
msgctxt "STR_PRESOBJ_MPOUTLLAYER6"
msgid "Sixth Outline Level"
msgstr "المستوى السادس للتخطيط"
-#: strings.hrc:297
+#: strings.hrc:299
msgctxt "STR_PRESOBJ_MPOUTLLAYER7"
msgid "Seventh Outline Level"
msgstr "المستوى السابع للتخطيط"
-#: strings.hrc:298
+#: strings.hrc:300
msgctxt "STR_PRESOBJ_MPNOTESTITLE"
msgid "Click to move the slide"
msgstr "انقر لإزاحة الشريحة"
-#: strings.hrc:299
+#: strings.hrc:301
msgctxt "STR_PRESOBJ_MPNOTESTEXT"
msgid "Click to edit the notes format"
msgstr "انقر لتحرير تنسيق الملاحظات"
-#: strings.hrc:300
+#: strings.hrc:302
msgctxt "STR_PRESOBJ_TITLE"
msgid "Click to add Title"
msgstr "انقر لإضافة عنوان"
-#: strings.hrc:301
+#: strings.hrc:303
msgctxt "STR_PRESOBJ_OUTLINE"
msgid "Click to add Text"
msgstr "انقر لإضافة نصّ"
-#: strings.hrc:302
+#: strings.hrc:304
msgctxt "STR_PRESOBJ_TEXT"
msgid "Click to add Text"
msgstr "انقر لإضافة نصّ"
-#: strings.hrc:303
+#: strings.hrc:305
msgctxt "STR_PRESOBJ_NOTESTEXT"
msgid "Click to add Notes"
msgstr "انقر لإضافة ملاحظات"
-#: strings.hrc:304
+#: strings.hrc:306
msgctxt "STR_PRESOBJ_GRAPHIC"
msgid "Double-click to add an Image"
msgstr "انقر مزدوجًا لإضافة صورة"
-#: strings.hrc:305
+#: strings.hrc:307
msgctxt "STR_PRESOBJ_OBJECT"
msgid "Double-click to add an Object"
msgstr "انقر مزدوجًا لإضافة كائن"
-#: strings.hrc:306
+#: strings.hrc:308
msgctxt "STR_PRESOBJ_CHART"
msgid "Double-click to add a Chart"
msgstr "انقر مزدوجًا لإضافة رسم بيانيّ"
-#: strings.hrc:307
+#: strings.hrc:309
msgctxt "STR_PRESOBJ_ORGCHART"
msgid "Double-click to add an Organization Chart"
msgstr "انقر مزدوجًا لإضافة رسم بيانيّ هيكليّ"
-#: strings.hrc:308
+#: strings.hrc:310
msgctxt "STR_PRESOBJ_TABLE"
msgid "Double-click to add a Spreadsheet"
msgstr "انقر مزدوجًا لإضافة جدول مُمتد"
-#: strings.hrc:309
+#: strings.hrc:311
msgctxt "STR_LAYOUT_DEFAULT_NAME"
msgid "Default"
msgstr "المبدئيّ"
-#: strings.hrc:310
+#: strings.hrc:312
msgctxt "STR_LAYOUT_DEFAULT_TITLE_NAME"
msgid "Title"
msgstr "المسمى الوظيفي"
-#: strings.hrc:311
+#: strings.hrc:313
msgctxt "STR_STANDARD_STYLESHEET_NAME"
msgid "Default"
msgstr "المبدئيّ"
-#: strings.hrc:312
+#: strings.hrc:314
msgctxt "STR_UNDO_MOVEPAGES"
msgid "Move slides"
msgstr "إزاحة الشرائح"
-#: strings.hrc:313
+#: strings.hrc:315
msgctxt "STR_POOLSHEET_MEASURE"
msgid "Dimension Line"
msgstr "خط قياس"
-#: strings.hrc:314
+#: strings.hrc:316
msgctxt "STR_POOLSHEET_OBJNOLINENOFILL"
msgid "Object with no fill and no line"
msgstr "كائن بلا تعبئة وبلا سطر"
-#: strings.hrc:315
+#: strings.hrc:317
msgctxt "STR_POOLSHEET_OBJWITHARROW"
msgid "Object with arrow"
msgstr "كائن بسهم"
-#: strings.hrc:316
+#: strings.hrc:318
msgctxt "STR_POOLSHEET_OBJWITHSHADOW"
msgid "Object with shadow"
msgstr "كائن بظل"
-#: strings.hrc:317
+#: strings.hrc:319
msgctxt "STR_POOLSHEET_OBJWITHOUTFILL"
msgid "Object without fill"
msgstr "كائن بدون تعبئة"
-#: strings.hrc:318
+#: strings.hrc:320
msgctxt "STR_POOLSHEET_TEXT"
msgid "Text"
msgstr "النص"
-#: strings.hrc:319
+#: strings.hrc:321
msgctxt "STR_POOLSHEET_TEXTBODY"
msgid "Text body"
msgstr "متن النص"
-#: strings.hrc:320
+#: strings.hrc:322
msgctxt "STR_POOLSHEET_TEXTBODY_JUSTIFY"
msgid "Text body justified"
msgstr "متن النص مساوً"
-#: strings.hrc:321
+#: strings.hrc:323
msgctxt "STR_POOLSHEET_TEXTBODY_INDENT"
msgid "First line indent"
msgstr "إزاحة السطر الأول"
-#: strings.hrc:322
+#: strings.hrc:324
msgctxt "STR_POOLSHEET_TITLE"
msgid "Title"
msgstr "المسمى الوظيفي"
-#: strings.hrc:323
+#: strings.hrc:325
msgctxt "STR_POOLSHEET_TITLE1"
msgid "Title1"
msgstr "عنوان1"
-#: strings.hrc:324
+#: strings.hrc:326
msgctxt "STR_POOLSHEET_TITLE2"
msgid "Title2"
msgstr "عنوان2"
-#: strings.hrc:325
+#: strings.hrc:327
msgctxt "STR_POOLSHEET_HEADLINE"
msgid "Heading"
msgstr "عنوان رئيسي"
-#: strings.hrc:326
+#: strings.hrc:328
msgctxt "STR_POOLSHEET_HEADLINE1"
msgid "Heading1"
msgstr "رأس1"
-#: strings.hrc:327
+#: strings.hrc:329
msgctxt "STR_POOLSHEET_HEADLINE2"
msgid "Heading2"
msgstr "رأس2"
-#: strings.hrc:328
+#: strings.hrc:330
msgctxt "STR_PSEUDOSHEET_TITLE"
msgid "Title"
msgstr "المسمى الوظيفي"
-#: strings.hrc:329
+#: strings.hrc:331
msgctxt "STR_PSEUDOSHEET_SUBTITLE"
msgid "Subtitle"
msgstr "العنوان الفرعي"
-#: strings.hrc:330
+#: strings.hrc:332
msgctxt "STR_PSEUDOSHEET_OUTLINE"
msgid "Outline"
msgstr "تخطيط"
-#: strings.hrc:331
+#: strings.hrc:333
msgctxt "STR_PSEUDOSHEET_BACKGROUNDOBJECTS"
msgid "Background objects"
msgstr "كائنات الخلفية"
-#: strings.hrc:332
+#: strings.hrc:334
msgctxt "STR_PSEUDOSHEET_BACKGROUND"
msgid "Background"
msgstr "الخلفية"
-#: strings.hrc:333
+#: strings.hrc:335
msgctxt "STR_PSEUDOSHEET_NOTES"
msgid "Notes"
msgstr "ملاحظات"
-#: strings.hrc:334
+#: strings.hrc:336
msgctxt "STR_POWERPOINT_IMPORT"
msgid "PowerPoint Import"
msgstr "استيراد باوربوينت"
-#: strings.hrc:335
+#: strings.hrc:337
msgctxt "STR_SAVE_DOC"
msgid "Save Document"
msgstr "حفظ المستند"
-#: strings.hrc:336
+#: strings.hrc:338
msgctxt "STR_POOLSHEET_BANDED_CELL"
msgid "Banding cell"
msgstr "خلية التباين"
-#: strings.hrc:337
+#: strings.hrc:339
msgctxt "STR_POOLSHEET_HEADER"
msgid "Header"
msgstr "ترويسة"
-#: strings.hrc:338
+#: strings.hrc:340
msgctxt "STR_POOLSHEET_TOTAL"
msgid "Total line"
msgstr "سطر الإجمالي"
-#: strings.hrc:339
+#: strings.hrc:341
msgctxt "STR_POOLSHEET_FIRST_COLUMN"
msgid "First column"
msgstr "العمود الأول"
-#: strings.hrc:340
+#: strings.hrc:342
msgctxt "STR_POOLSHEET_LAST_COLUMN"
msgid "Last column"
msgstr "العمود الأخير"
-#: strings.hrc:341
+#: strings.hrc:343
msgctxt "STR_ENTER_PIN"
msgid "Enter PIN:"
msgstr "أدخل رمز PIN:"
-#: strings.hrc:342
+#: strings.hrc:344
msgctxt "STR_DEAUTHORISE_CLIENT"
msgid "Remove client authorisation"
msgstr "أزل استيثاق العميل"
-#: strings.hrc:343
+#: strings.hrc:345
#, fuzzy
msgctxt "STR_SHRINK_FONT_SIZE"
msgid "Shrink font size"
msgstr "قلّص مقاس الخط"
-#: strings.hrc:344
+#: strings.hrc:346
msgctxt "STR_GROW_FONT_SIZE"
msgid "Grow font size"
msgstr ""
#. Names and descriptions of the Draw/Impress accessibility views
#. ==============================================================
-#: strings.hrc:349
+#: strings.hrc:351
msgctxt "SID_SD_A11Y_D_DRAWVIEW_N"
msgid "Drawing View"
msgstr "عرض الرسم"
-#: strings.hrc:350
+#: strings.hrc:352
msgctxt "SID_SD_A11Y_D_DRAWVIEW_D"
msgid "This is where you create and edit drawings."
msgstr "هنا يمكنك إنشاء الرسوم وتحريرها."
-#: strings.hrc:351
+#: strings.hrc:353
msgctxt "SID_SD_A11Y_I_DRAWVIEW_N"
msgid "Drawing View"
msgstr "عرض الرسم"
-#: strings.hrc:352
+#: strings.hrc:354
msgctxt "SID_SD_A11Y_I_DRAWVIEW_D"
msgid "This is where you create and edit slides."
msgstr "هنا يمكنك إنشاء الشرائح وتحريرها."
-#: strings.hrc:353
+#: strings.hrc:355
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_N"
msgid "Outline View"
msgstr "عرض التخطيط"
-#: strings.hrc:354
+#: strings.hrc:356
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_D"
msgid "This is where you enter or edit text in list form."
msgstr "هنا يمكنك إدخال النص في شكل قائمة وتحريره."
-#: strings.hrc:355
+#: strings.hrc:357
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_N"
msgid "Slides View"
msgstr "عرض الشرائح"
-#: strings.hrc:356
+#: strings.hrc:358
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_D"
msgid "This is where you sort slides."
msgstr "هنا يمكن فرز الشرائح."
-#: strings.hrc:357
+#: strings.hrc:359
msgctxt "SID_SD_A11Y_I_NOTESVIEW_N"
msgid "Notes View"
msgstr "عرض الملاحظات"
-#: strings.hrc:358
+#: strings.hrc:360
msgctxt "SID_SD_A11Y_I_NOTESVIEW_D"
msgid "This is where you enter and view notes."
msgstr "هنا يمكنك إدخال الملاحظات أو عرضها."
-#: strings.hrc:359
+#: strings.hrc:361
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_N"
msgid "Handout View"
msgstr "عرض النشرة"
-#: strings.hrc:360
+#: strings.hrc:362
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_D"
msgid "This is where you decide on the layout for handouts."
msgstr "هنا يمكنك أن تقرر المظهر المطلوب للنشرات."
-#: strings.hrc:361
+#: strings.hrc:363
#, fuzzy
msgctxt "SID_SD_A11Y_P_TITLE_N"
msgid "PresentationTitle"
msgstr "أنماط العرض التقديمي"
-#: strings.hrc:362
+#: strings.hrc:364
#, fuzzy
msgctxt "SID_SD_A11Y_P_OUTLINER_N"
msgid "PresentationOutliner"
msgstr "أنماط العرض التقديمي"
-#: strings.hrc:363
+#: strings.hrc:365
#, fuzzy
msgctxt "SID_SD_A11Y_P_SUBTITLE_N"
msgid "PresentationSubtitle"
msgstr "أنماط العرض التقديمي"
-#: strings.hrc:364
+#: strings.hrc:366
#, fuzzy
msgctxt "SID_SD_A11Y_P_PAGE_N"
msgid "PresentationPage"
msgstr "عرض تقديمي"
-#: strings.hrc:365
+#: strings.hrc:367
#, fuzzy
msgctxt "SID_SD_A11Y_P_NOTES_N"
msgid "PresentationNotes"
msgstr "أنماط العرض التقديمي"
-#: strings.hrc:366
+#: strings.hrc:368
#, fuzzy
msgctxt "SID_SD_A11Y_P_HANDOUT_N"
msgid "Handout"
msgstr "نشرة"
-#: strings.hrc:367
+#: strings.hrc:369
msgctxt "SID_SD_A11Y_P_UNKNOWN_N"
msgid "UnknownAccessiblePresentationShape"
msgstr ""
-#: strings.hrc:368
+#: strings.hrc:370
#, fuzzy
msgctxt "SID_SD_A11Y_P_TITLE_D"
msgid "PresentationTitleShape"
msgstr "أنماط العرض التقديمي"
-#: strings.hrc:369
+#: strings.hrc:371
msgctxt "SID_SD_A11Y_P_OUTLINER_D"
msgid "PresentationOutlinerShape"
msgstr ""
-#: strings.hrc:370
+#: strings.hrc:372
msgctxt "SID_SD_A11Y_P_SUBTITLE_D"
msgid "PresentationSubtitleShape"
msgstr ""
-#: strings.hrc:371
+#: strings.hrc:373
#, fuzzy
msgctxt "SID_SD_A11Y_P_PAGE_D"
msgid "PresentationPageShape"
msgstr "عرض تقديمي"
-#: strings.hrc:372
+#: strings.hrc:374
#, fuzzy
msgctxt "SID_SD_A11Y_P_NOTES_D"
msgid "PresentationNotesShape"
msgstr "أنماط العرض التقديمي"
-#: strings.hrc:373
+#: strings.hrc:375
msgctxt "SID_SD_A11Y_P_HANDOUT_D"
msgid "PresentationHandoutShape"
msgstr ""
-#: strings.hrc:374
+#: strings.hrc:376
msgctxt "SID_SD_A11Y_P_UNKNOWN_D"
msgid "Unknown accessible presentation shape"
msgstr ""
-#: strings.hrc:375
+#: strings.hrc:377
#, fuzzy
msgctxt "SID_SD_A11Y_P_FOOTER_N"
msgid "PresentationFooter"
msgstr "أنماط العرض التقديمي"
-#: strings.hrc:376
+#: strings.hrc:378
msgctxt "SID_SD_A11Y_P_FOOTER_D"
msgid "PresentationFooterShape"
msgstr ""
-#: strings.hrc:377
+#: strings.hrc:379
#, fuzzy
msgctxt "SID_SD_A11Y_P_HEADER_N"
msgid "PresentationHeader"
msgstr "عرض تقديمي"
-#: strings.hrc:378
+#: strings.hrc:380
msgctxt "SID_SD_A11Y_P_HEADER_D"
msgid "PresentationHeaderShape"
msgstr ""
-#: strings.hrc:379
+#: strings.hrc:381
msgctxt "SID_SD_A11Y_P_DATE_N"
msgid "PresentationDateAndTime"
msgstr ""
-#: strings.hrc:380
+#: strings.hrc:382
msgctxt "SID_SD_A11Y_P_DATE_D"
msgid "PresentationDateAndTimeShape"
msgstr ""
-#: strings.hrc:381
+#: strings.hrc:383
msgctxt "SID_SD_A11Y_P_NUMBER_N"
msgid "PresentationPageNumber"
msgstr ""
-#: strings.hrc:382
+#: strings.hrc:384
msgctxt "SID_SD_A11Y_P_NUMBER_D"
msgid "PresentationPageNumberShape"
msgstr ""
-#: strings.hrc:383
+#: strings.hrc:385
msgctxt "SID_SD_A11Y_D_PRESENTATION"
msgid "%PRODUCTNAME Presentation"
msgstr "عرض%PRODUCTNAME تقديمي"
-#: strings.hrc:384
+#: strings.hrc:386
msgctxt "SID_SD_A11Y_P_TITLE_N_STYLE"
msgid "Title"
msgstr "العنوان"
-#: strings.hrc:385
+#: strings.hrc:387
#, fuzzy
msgctxt "SID_SD_A11Y_P_OUTLINER_N_STYLE"
msgid "Outliner"
msgstr "تخطيط"
-#: strings.hrc:386
+#: strings.hrc:388
#, fuzzy
msgctxt "SID_SD_A11Y_P_SUBTITLE_N_STYLE"
msgid "Subtitle"
msgstr "العنوان الفرعي"
-#: strings.hrc:387
+#: strings.hrc:389
msgctxt "SID_SD_A11Y_P_PAGE_N_STYLE"
msgid "Page"
msgstr "الصفحة"
-#: strings.hrc:388
+#: strings.hrc:390
msgctxt "SID_SD_A11Y_P_NOTES_N_STYLE"
msgid "Notes"
msgstr "الملاحظات"
-#: strings.hrc:389
+#: strings.hrc:391
#, fuzzy
msgctxt "SID_SD_A11Y_P_HANDOUT_N_STYLE"
msgid "Handout"
msgstr "نشرة"
-#: strings.hrc:390
+#: strings.hrc:392
msgctxt "SID_SD_A11Y_P_UNKNOWN_N_STYLE"
msgid "Unknown Accessible Presentation Shape"
msgstr ""
-#: strings.hrc:391
+#: strings.hrc:393
msgctxt "SID_SD_A11Y_P_FOOTER_N_STYLE"
msgid "Footer"
msgstr "التذييل"
-#: strings.hrc:392
+#: strings.hrc:394
msgctxt "SID_SD_A11Y_P_HEADER_N_STYLE"
msgid "Header"
msgstr "الترويسة"
-#: strings.hrc:393
+#: strings.hrc:395
msgctxt "SID_SD_A11Y_P_DATE_N_STYLE"
msgid "Date"
msgstr "التاريخ"
-#: strings.hrc:394
+#: strings.hrc:396
#, fuzzy
msgctxt "SID_SD_A11Y_P_NUMBER_N_STYLE"
msgid "Number"
msgstr "الرقم"
-#: strings.hrc:395
+#: strings.hrc:397
msgctxt "SID_SD_A11Y_D_PRESENTATION_READONLY"
msgid "(read-only)"
msgstr "(للقراءة فقط)"
-#: strings.hrc:397
+#: strings.hrc:399
msgctxt "STR_CUSTOMANIMATION_REPEAT_NONE"
msgid "none"
msgstr "بلا"
-#: strings.hrc:398
+#: strings.hrc:400
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_NEXT_CLICK"
msgid "Until next click"
msgstr "حتى النقرة التالية"
-#: strings.hrc:399
+#: strings.hrc:401
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_END_OF_SLIDE"
msgid "Until end of slide"
msgstr "حتى انتهاء الشريحة"
-#: strings.hrc:400
+#: strings.hrc:402
msgctxt "STR_CUSTOMANIMATION_DIRECTION_PROPERTY"
msgid "Direction:"
msgstr "الاتجاه:"
-#: strings.hrc:401
+#: strings.hrc:403
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_ZOOM_PROPERTY"
msgid "Zoom:"
msgstr "تكبير/تصغير"
-#: strings.hrc:402
+#: strings.hrc:404
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SPOKES_PROPERTY"
msgid "Spokes:"
msgstr "المحاور"
-#: strings.hrc:403
+#: strings.hrc:405
msgctxt "STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY"
msgid "First color:"
msgstr "اللون الأول:"
-#: strings.hrc:404
+#: strings.hrc:406
msgctxt "STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY"
msgid "Second color:"
msgstr "اللون الثاني:"
-#: strings.hrc:405
+#: strings.hrc:407
msgctxt "STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY"
msgid "Fill color:"
msgstr "لون الملء:"
-#: strings.hrc:406
+#: strings.hrc:408
msgctxt "STR_CUSTOMANIMATION_STYLE_PROPERTY"
msgid "Style:"
msgstr "النمط:"
-#: strings.hrc:407
+#: strings.hrc:409
msgctxt "STR_CUSTOMANIMATION_FONT_PROPERTY"
msgid "Font:"
msgstr "الخط:"
-#: strings.hrc:408
+#: strings.hrc:410
msgctxt "STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY"
msgid "Font color:"
msgstr "لون الخط:"
-#: strings.hrc:409
+#: strings.hrc:411
msgctxt "STR_CUSTOMANIMATION_FONT_SIZE_STYLE_PROPERTY"
msgid "Style:"
msgstr "النمط:"
-#: strings.hrc:410
+#: strings.hrc:412
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY"
msgid "Typeface:"
msgstr "النسق"
-#: strings.hrc:411
+#: strings.hrc:413
msgctxt "STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY"
msgid "Line color:"
msgstr "لون الخط:"
-#: strings.hrc:412
+#: strings.hrc:414
msgctxt "STR_CUSTOMANIMATION_SIZE_PROPERTY"
msgid "Font size:"
msgstr "حجم الخط:"
-#: strings.hrc:413
+#: strings.hrc:415
msgctxt "STR_CUSTOMANIMATION_SCALE_PROPERTY"
msgid "Size:"
msgstr "الحجم:"
-#: strings.hrc:414
+#: strings.hrc:416
msgctxt "STR_CUSTOMANIMATION_AMOUNT_PROPERTY"
msgid "Amount:"
msgstr "الكمية:"
-#: strings.hrc:415
+#: strings.hrc:417
msgctxt "STR_CUSTOMANIMATION_COLOR_PROPERTY"
msgid "Color:"
msgstr "اللون:"
-#: strings.hrc:416
+#: strings.hrc:418
msgctxt "STR_CUSTOMANIMATION_NO_SOUND"
msgid "(No sound)"
msgstr "(بلا صوت)"
-#: strings.hrc:417
+#: strings.hrc:419
msgctxt "STR_CUSTOMANIMATION_STOP_PREVIOUS_SOUND"
msgid "(Stop previous sound)"
msgstr "(إيقاف الصوت السابق)"
-#: strings.hrc:418
+#: strings.hrc:420
msgctxt "STR_CUSTOMANIMATION_BROWSE_SOUND"
msgid "Other sound..."
msgstr "صوت آخر..."
-#: strings.hrc:419
+#: strings.hrc:421
msgctxt "STR_CUSTOMANIMATION_SAMPLE"
msgid "Sample"
msgstr "نموذج"
-#: strings.hrc:420
+#: strings.hrc:422
msgctxt "STR_CUSTOMANIMATION_TRIGGER"
msgid "Trigger"
msgstr "بدء تشغيل"
-#: strings.hrc:421
+#: strings.hrc:423
msgctxt "STR_CUSTOMANIMATION_LIST_HELPTEXT"
msgid "First select the slide element and then click 'Add...' to add an animation effect."
msgstr "أولاً، حدد العنصر من الشريحة، ثم انقر فوق \"إضافة...\" لإضافة تأثير حركي إليه."
-#: strings.hrc:422
+#: strings.hrc:424
msgctxt "STR_CUSTOMANIMATION_USERPATH"
msgid "User paths"
msgstr "مسارات المستخدم"
-#: strings.hrc:423
+#: strings.hrc:425
msgctxt "STR_CUSTOMANIMATION_ENTRANCE"
msgid "Entrance: %1"
msgstr "دخول: %1"
-#: strings.hrc:424
+#: strings.hrc:426
msgctxt "STR_CUSTOMANIMATION_EMPHASIS"
msgid "Emphasis: %1"
msgstr "تأكيد: %1"
-#: strings.hrc:425
+#: strings.hrc:427
msgctxt "STR_CUSTOMANIMATION_EXIT"
msgid "Exit: %1"
msgstr "خروج: %1"
-#: strings.hrc:426
+#: strings.hrc:428
msgctxt "STR_CUSTOMANIMATION_MOTION_PATHS"
msgid "Motion Paths: %1"
msgstr "مسارات حركة: %1"
-#: strings.hrc:427
+#: strings.hrc:429
#, fuzzy
msgctxt "STR_SLIDETRANSITION_NONE"
msgid "None"
msgstr "بلا"
-#: strings.hrc:429
+#: strings.hrc:431
msgctxt "STR_ANNOTATION_TODAY"
msgid "Today,"
msgstr "اليوم،"
-#: strings.hrc:430
+#: strings.hrc:432
msgctxt "STR_ANNOTATION_YESTERDAY"
msgid "Yesterday,"
msgstr "الأمس،"
-#: strings.hrc:431
+#: strings.hrc:433
msgctxt "STR_ANNOTATION_NOAUTHOR"
msgid "(no author)"
msgstr "(دون مؤلف)"
-#: strings.hrc:432
+#: strings.hrc:434
msgctxt "STR_ANNOTATION_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress reached the end of the presentation. Do you want to continue at the beginning?"
msgstr "بلغ %PRODUCTNAME امبريس نهاية العرض التقديمي. هل تريد المتابعة من البداية؟"
-#: strings.hrc:433
+#: strings.hrc:435
msgctxt "STR_ANNOTATION_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress reached the beginning of the presentation. Do you want to continue at the end?"
msgstr "بلغ %PRODUCTNAME امبريس بداية العرض التقديمي. هل تريد المتابعة إلى النهاية؟"
-#: strings.hrc:434
+#: strings.hrc:436
msgctxt "STR_ANNOTATION_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the end of the document. Do you want to continue at the beginning?"
msgstr "بلغ %PRODUCTNAME درو نهاية المستند. هل تريد المتابعة من البداية؟"
-#: strings.hrc:435
+#: strings.hrc:437
msgctxt "STR_ANNOTATION_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the beginning of the document. Do you want to continue at the end?"
msgstr "بلغ %PRODUCTNAME درو بداية المستند. هل تريد المتابعة إلى النهاية؟"
-#: strings.hrc:436
+#: strings.hrc:438
msgctxt "STR_ANNOTATION_UNDO_INSERT"
msgid "Insert Comment"
msgstr "إدراج تعليق"
-#: strings.hrc:437
+#: strings.hrc:439
msgctxt "STR_ANNOTATION_UNDO_DELETE"
msgid "Delete Comment(s)"
msgstr "حذف تعليق (تعليقات)"
-#: strings.hrc:438
+#: strings.hrc:440
msgctxt "STR_ANNOTATION_UNDO_MOVE"
msgid "Move Comment"
msgstr "نقل تعليق"
-#: strings.hrc:439
+#: strings.hrc:441
msgctxt "STR_ANNOTATION_UNDO_EDIT"
msgid "Edit Comment"
msgstr "تحرير التعليق"
-#: strings.hrc:440
+#: strings.hrc:442
msgctxt "STR_ANNOTATION_REPLY"
msgid "Reply to %1"
msgstr "رد على %1"
-#: strings.hrc:442
+#: strings.hrc:444
msgctxt "RID_DRAW_MEDIA_TOOLBOX"
msgid "Media Playback"
msgstr "تشغيل الوسائط"
-#: strings.hrc:443
+#: strings.hrc:445
msgctxt "RID_DRAW_TABLE_TOOLBOX"
msgid "Table"
msgstr "الجدول"
-#: strings.hrc:445
+#: strings.hrc:447
msgctxt "STR_IMPRESS_PRINT_UI_GROUP_NAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: strings.hrc:446
+#: strings.hrc:448
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PRINT_GROUP"
msgid "Print"
msgstr "طباعة"
-#: strings.hrc:447
+#: strings.hrc:449
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT"
msgid "Document"
msgstr "المستند"
-#: strings.hrc:448
+#: strings.hrc:450
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE"
msgid "Slides per page"
msgstr "الشرائح في كل صفحة"
-#: strings.hrc:449
+#: strings.hrc:451
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER"
msgid "Order"
msgstr "التّرتيب"
-#: strings.hrc:450
+#: strings.hrc:452
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT"
msgid "~Contents"
msgstr "المحتويات"
-#: strings.hrc:451
+#: strings.hrc:453
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_NAME"
msgid "~Slide name"
msgstr "اسم الشريحة"
-#: strings.hrc:452
+#: strings.hrc:454
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_IS_PRINT_NAME"
msgid "P~age name"
msgstr "اسم الصفحة"
-#: strings.hrc:453
+#: strings.hrc:455
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_DATE"
msgid "~Date and time"
msgstr "التاريخ والوقت"
-#: strings.hrc:454
+#: strings.hrc:456
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_HIDDEN"
msgid "Hidden pages"
msgstr "الصفحات المخفية"
-#: strings.hrc:455
+#: strings.hrc:457
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY"
msgid "Color"
msgstr "اللون"
-#: strings.hrc:456
+#: strings.hrc:458
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS"
msgid "~Size"
msgstr "الحجم"
-#: strings.hrc:457
+#: strings.hrc:459
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE"
msgid "Brochure"
msgstr "_كتيب"
-#: strings.hrc:458
+#: strings.hrc:460
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_SIDES"
msgid "Page sides"
msgstr "جوانب الصفحة"
-#: strings.hrc:459
+#: strings.hrc:461
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE"
msgid "Include"
msgstr "تضمين"
-#: strings.hrc:460
+#: strings.hrc:462
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAPER_TRAY"
msgid "~Use only paper tray from printer preferences"
msgstr "اس~تخدم فقط درج الورق من تفضيلات الطابعة"
-#: strings.hrc:461
+#: strings.hrc:463
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE"
msgid "Print range"
msgstr "نطاق الطباعة"
-#: strings.hrc:463
+#: strings.hrc:465
msgctxt "STR_SAR_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress has searched to the end of the presentation. Do you want to continue at the beginning?"
msgstr "بحث %PRODUCTNAME امبريس حتى نهاية العرض. هل تريد متابعة البحث من البداية؟"
-#: strings.hrc:464
+#: strings.hrc:466
msgctxt "STR_SAR_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress has searched to the beginning of the presentation. Do you want to continue at the end?"
msgstr "بحث %PRODUCTNAME امبريس حتى بداية العرض. هل تريد متابعة البحث حتى النهاية؟"
-#: strings.hrc:465
+#: strings.hrc:467
msgctxt "STR_SAR_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the end of the document. Do you want to continue at the beginning?"
msgstr "بحث %PRODUCTNAME درو حتى نهاية العرض. هل تريد البحث من البداية؟"
-#: strings.hrc:466
+#: strings.hrc:468
msgctxt "STR_SAR_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the beginning of the document. Do you want to continue at the end?"
msgstr "بحث %PRODUCTNAME درو حتى بداية العرض. هل تريد متابعة البحث من النهاية؟"
-#: strings.hrc:468
+#: strings.hrc:470
msgctxt "STR_SD_NONE"
msgid "- None -"
msgstr "- بلا -"
@@ -4633,8 +4643,8 @@ msgstr "اس_تخدم قياسات الطابعة لتنسيق المستند"
#: optimpressgeneralpage.ui:622
msgctxt "optimpressgeneralpage|cbCompatibility"
-msgid "Add _spacing between paragraphs and tables (in current document)"
-msgstr "أض_ف تباعد بين الفقرات و الجداول (في المستند الحالي)"
+msgid "Add _spacing between paragraphs and tables"
+msgstr ""
#: optimpressgeneralpage.ui:645
msgctxt "optimpressgeneralpage|label1"
@@ -5424,16 +5434,14 @@ msgid "Master Background"
msgstr ""
#: sidebarslidebackground.ui:197
-#, fuzzy
msgctxt "sidebarslidebackground|label4"
-msgid "Orientation: "
-msgstr "الاتجاه:"
+msgid "Orientation:"
+msgstr ""
#: sidebarslidebackground.ui:212
-#, fuzzy
msgctxt "sidebarslidebackground|masterslidebutton"
-msgid "Master Slide"
-msgstr "الشريحة الرئيسية"
+msgid "Master View"
+msgstr ""
#: sidebarslidebackground.ui:226
#, fuzzy
@@ -5484,10 +5492,9 @@ msgid "Wide"
msgstr "عريضة"
#: sidebarslidebackground.ui:267
-#, fuzzy
msgctxt "sidebarslidebackground|labelmargin"
-msgid "Margin: "
-msgstr "الهامش"
+msgid "Margin:"
+msgstr ""
#: sidebarslidebackground.ui:277
#, fuzzy
diff --git a/source/ar/sfx2/messages.po b/source/ar/sfx2/messages.po
index 451e1fa0dc0..2e24b969a64 100644
--- a/source/ar/sfx2/messages.po
+++ b/source/ar/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: 2017-11-26 03:30+0000\n"
"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -841,27 +841,32 @@ msgctxt "RID_SVXSTR_INCORRECT_PASSWORD"
msgid "Incorrect password"
msgstr "كلمة سر غير صحيحة"
-#: strings.hrc:173
+#: strings.hrc:172
+msgctxt "RID_SVXSTR_GPG_ENCRYPT_FAILURE"
+msgid "OpenPGP key not trusted, damaged, or encryption failure. Please try again."
+msgstr ""
+
+#: strings.hrc:174
msgctxt "STR_PASSWD_MIN_LEN"
msgid "(Minimum $(MINLEN) characters)"
msgstr "($(MINLEN) كحد أدني لعدد الأحرف)"
-#: strings.hrc:174
+#: strings.hrc:175
msgctxt "STR_PASSWD_MIN_LEN1"
msgid "(Minimum 1 character)"
msgstr "(الأدنى هو محرف واحد)"
-#: strings.hrc:175
+#: strings.hrc:176
msgctxt "STR_PASSWD_EMPTY"
msgid "(The password can be empty)"
msgstr "(يمكن ترك حقل كلمة السر فارغًا)"
-#: strings.hrc:176
+#: strings.hrc:177
msgctxt "STR_MODULENOTINSTALLED"
msgid "The action could not be executed. The %PRODUCTNAME program module needed for this action is currently not installed."
msgstr "تعذر تنفيذ هذه العملية. وحدة %PRODUCTNAME النمطيّة المطلوبة لهذه العملية ليست مثبّتة حاليًّا."
-#: strings.hrc:178
+#: strings.hrc:179
msgctxt "STR_FILTER_NOT_INSTALLED"
msgid ""
"The selected filter $(FILTER) has not been installed.\n"
@@ -870,7 +875,7 @@ msgstr ""
"المرشّح $(FILTER) المحدّد غير مثبّت.\n"
"أتريد تثبيته الآن؟"
-#: strings.hrc:179
+#: strings.hrc:180
msgctxt "STR_FILTER_CONSULT_SERVICE"
msgid ""
"The selected filter $(FILTER) is not included in your edition.\n"
@@ -879,73 +884,73 @@ msgstr ""
"المرشّح $(FILTER) المحدّد غير مضمّن في الإصدار هذا.\n"
"يمكنك العثور على معلومات حول الطلبات في صفحتنا الرئيسية."
-#: strings.hrc:181
+#: strings.hrc:182
msgctxt "STR_WELCOME_LINE1"
msgid "Welcome to %PRODUCTNAME."
msgstr "مرحبًا بك في %PRODUCTNAME."
-#: strings.hrc:182
+#: strings.hrc:183
msgctxt "STR_WELCOME_LINE2"
msgid "Drop a document here or pick an app from the left side to create one."
msgstr "أفلت مستندا هنا أو اختر تطبيقا من الجهة اليسرى لإنشاء واحد."
-#: strings.hrc:184
+#: strings.hrc:185
msgctxt "STR_SFX_FILEDLG_ACTUALVERSION"
msgid "Current version"
msgstr "الإصدارة الحالية"
-#: strings.hrc:185
+#: strings.hrc:186
msgctxt "STR_SFX_EXPLORERFILE_EXPORT"
msgid "Export"
msgstr "تصدير"
-#: strings.hrc:186
+#: strings.hrc:187
msgctxt "STR_SFX_EXPLORERFILE_INSERT"
msgid "Insert"
msgstr "إدراج"
-#: strings.hrc:187
+#: strings.hrc:188
msgctxt "STR_SFX_EXPLORERFILE_BUTTONINSERT"
msgid "~Insert"
msgstr "أ~درج"
-#: strings.hrc:188
+#: strings.hrc:189
msgctxt "STR_SFX_IMPORT_ALL"
msgid "<All formats>"
msgstr "<كل التنسيقات>"
-#: strings.hrc:189
+#: strings.hrc:190
msgctxt "STR_PB_SAVEACOPY"
msgid "Save a Copy"
msgstr "حفظ نسخة"
-#: strings.hrc:190
+#: strings.hrc:191
msgctxt "STR_PB_COMPAREDOC"
msgid "Compare to"
msgstr "قارن بِ‍"
-#: strings.hrc:191
+#: strings.hrc:192
msgctxt "STR_PB_MERGEDOC"
msgid "Merge with"
msgstr "ادمج مع"
-#: strings.hrc:193
+#: strings.hrc:194
msgctxt "STR_SFX_NEWOFFICEDOC"
msgid "%PRODUCTNAME document"
msgstr "مستند %PRODUCTNAME"
-#: strings.hrc:194
+#: strings.hrc:195
#, fuzzy
msgctxt "SFX_ST_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " سنة: %1 شهر: %2 يوم: %3 ساعة: %4 دقيقة: %5 ثانية: %6"
-#: strings.hrc:195
+#: strings.hrc:196
msgctxt "STR_SFX_REMOVE_PROPERTY"
msgid "Remove Property"
msgstr "أزل الخاصية"
-#: strings.hrc:196
+#: strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -954,27 +959,27 @@ msgstr ""
"لا تتوافق القيمة المُدخلة مع النوع المحدد.\n"
"ستُخزّن القيمة كنص."
-#: strings.hrc:198
+#: strings.hrc:199
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "النمط موجود بالفعل. أأستبدله؟"
-#: strings.hrc:200
+#: strings.hrc:201
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~صفّر"
-#: strings.hrc:201
+#: strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "هذا الاسم مستخدم حاليًا."
-#: strings.hrc:202
+#: strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "هذا النمط غير موجود."
-#: strings.hrc:203
+#: strings.hrc:204
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -983,7 +988,7 @@ msgstr ""
"لا يمكن استخدام هذا النمط نمطا أساسيا،\n"
"لأنه سيتسبب بمرجع تكراري."
-#: strings.hrc:204
+#: strings.hrc:205
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -992,7 +997,7 @@ msgstr ""
"الاسم موجود بالفعل كنمط مبدئي.\n"
"رجاء اختر اسما آخر."
-#: strings.hrc:205
+#: strings.hrc:206
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -1003,93 +1008,93 @@ msgstr ""
"إن حذفت هذه الأنماط، سيرجع النص إلى النمط الأب.\n"
"أتريد حذف هذه الأنماط؟\n"
-#: strings.hrc:206
+#: strings.hrc:207
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "الأنماط المستخدمة: "
-#: strings.hrc:207
+#: strings.hrc:208
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "الملاح"
-#: strings.hrc:208
+#: strings.hrc:209
msgctxt "STR_SID_SIDEBAR"
msgid "Sidebar"
msgstr "الشريط الجانبي"
-#: strings.hrc:209
+#: strings.hrc:210
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "تأكيد غير صحيح لكلمة السر"
-#: strings.hrc:210
+#: strings.hrc:211
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "أرسل"
-#: strings.hrc:211
+#: strings.hrc:212
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "الخط"
-#: strings.hrc:212
+#: strings.hrc:213
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show Previews"
msgstr "أظهر معاينات"
-#: strings.hrc:214
+#: strings.hrc:215
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "إدراج تعليق الإصدار"
-#: strings.hrc:215
+#: strings.hrc:216
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(لم يعيّن اسم)"
-#: strings.hrc:217
+#: strings.hrc:218
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "قائمة الأنماط"
-#: strings.hrc:218
+#: strings.hrc:219
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "هيكلي"
-#: strings.hrc:219
+#: strings.hrc:220
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "وضع تنسيق التعبئة"
-#: strings.hrc:220
+#: strings.hrc:221
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "نمط جديد من التحديد"
-#: strings.hrc:221
+#: strings.hrc:222
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "حدّث النمط"
-#: strings.hrc:223
+#: strings.hrc:224
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "أمتأكد من إلغاء التسجيل؟ ستفقد كل الخطوات المسجلة حتى الآن."
-#: strings.hrc:224
+#: strings.hrc:225
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "إلغاء التسجيل"
-#: strings.hrc:226
+#: strings.hrc:227
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "يهيّأ الآن المكونات للمرة الأولى."
-#: strings.hrc:228
+#: strings.hrc:229
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1098,7 +1103,7 @@ msgstr ""
"لا توجد طابعة مبدئية.\n"
"الرجاء اختيار طابعة و المحاولة من جديد."
-#: strings.hrc:229
+#: strings.hrc:230
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1107,17 +1112,17 @@ msgstr ""
"تعذر تشغيل الطابعة.\n"
"الرجاء مراجعة إعدادات الطابعة."
-#: strings.hrc:230
+#: strings.hrc:231
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "الطابعة مشغولة"
-#: strings.hrc:231
+#: strings.hrc:232
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (للقراءة فقط)"
-#: strings.hrc:232
+#: strings.hrc:233
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1128,7 +1133,7 @@ msgstr ""
"فهل تريد حفظ الإعدادات الجديدة في\n"
"المستند النشط؟"
-#: strings.hrc:233
+#: strings.hrc:234
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1139,7 +1144,7 @@ msgstr ""
"هل ترغب في حفظ الإعدادات الجديدة \n"
"في المستند النشط ؟"
-#: strings.hrc:234
+#: strings.hrc:235
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1150,7 +1155,7 @@ msgstr ""
"فهل تريد حفظ الإعدادات الجديدة في\n"
"المستند النشط؟"
-#: strings.hrc:235
+#: strings.hrc:236
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1159,7 +1164,7 @@ msgstr ""
"لا يمكن إغلاق المستند بسبب \n"
"وجود مهمة طباعة قيد التنفيذ. "
-#: strings.hrc:236
+#: strings.hrc:237
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1168,209 +1173,311 @@ msgstr ""
"حدث خطأ أثناء إرسال الرسالة. ربما يكون الخطأ في عدم وجود حساب مستخدم أو أن تثبيت البرنامج به خلل.\n"
"الرجاء التأكد من إعدادات %PRODUCTNAME أو إعدادات برنامج البريد الإلكتروني الخاص بك."
-#: strings.hrc:237
+#: strings.hrc:238
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "لا يمكن تحرير المستند، ربما بسبب حقوق الوصول المفقودة. هل تريد تحرير نسخة من المستند؟"
-#: strings.hrc:238
+#: strings.hrc:239
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (مستند تم إصلاحه)"
-#: strings.hrc:239
+#: strings.hrc:240
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "لم يُفحص هذا المستند على الخادوم."
-#: strings.hrc:240
+#: strings.hrc:241
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "هذا المستند مفتوح للقراءة فقط."
-#: strings.hrc:241
+#: strings.hrc:242
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "فُتح ملف PDF هذا بوضع القراءة فقط لإتاحة توقيع الملف الموجود."
-#: strings.hrc:242
+#: strings.hrc:243
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "تصنيف هذا المستند هو %1."
-#: strings.hrc:243
+#: strings.hrc:244
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "يجب تصنيف هذا المستند قبل لصق محتوى الحافظة."
-#: strings.hrc:244
+#: strings.hrc:245
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "‫لهذا المستند تصنيفا أقل مستوى من الحافظة."
-#: strings.hrc:245
+#: strings.hrc:246
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Intellectual Property:"
msgstr "الملكية الفكرية:"
-#: strings.hrc:246
+#: strings.hrc:247
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: strings.hrc:247
+#: strings.hrc:248
#, fuzzy
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "التحكم في التصدير:"
-#: strings.hrc:248
+#: strings.hrc:249
#, fuzzy
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "اجلب"
-#: strings.hrc:249
+#: strings.hrc:250
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "حرّر المستند"
-#: strings.hrc:250
+#: strings.hrc:251
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "وقّع المستند"
-#: strings.hrc:251
+#: strings.hrc:252
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "لهذا المستند توقيع غير صالح."
-#: strings.hrc:252
+#: strings.hrc:253
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "كان التوقيع صالحا، ولكن المستند عُدّل"
-#: strings.hrc:253
+#: strings.hrc:254
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "التوقيع يبدو جيدا إلا أنه تعذر التحقق من الشهادة."
-#: strings.hrc:254
+#: strings.hrc:255
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "التوقيع يبدو جيدا إلا أن المستند موقّع جزئيا فقط."
-#: strings.hrc:255
+#: strings.hrc:256
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "هذا المستند موقّع رقميا والتوقيع صالح."
-#: strings.hrc:256
+#: strings.hrc:257
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "اعرض التواقيع"
-#: strings.hrc:258
+#: strings.hrc:259
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: strings.hrc:259
+#: strings.hrc:260
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "إرساء"
-#: strings.hrc:260
+#: strings.hrc:261
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "إلغاء إرساء"
-#: strings.hrc:262
+#: strings.hrc:263
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "خيارات أكثر"
-#: strings.hrc:263
+#: strings.hrc:264
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "أغلق الشريط الجانبي المرصوف"
-#: strings.hrc:264
+#: strings.hrc:265
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "إعدادات الشريط الجانبي"
-#: strings.hrc:265
+#: strings.hrc:266
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "التخصيص"
-#: strings.hrc:266
+#: strings.hrc:267
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "استعد المبدئيات"
-#: strings.hrc:267
+#: strings.hrc:268
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "أغلق الشريط الجانبي"
-#: strings.hrc:269
+#. Translators: default Impress template names
+#: strings.hrc:271
msgctxt "STR_TEMPLATE_NAME1"
-msgid "Abstract Green"
-msgstr "أخضر مبسط"
+msgid "Alizarin"
+msgstr ""
-#: strings.hrc:270
+#: strings.hrc:272
msgctxt "STR_TEMPLATE_NAME2"
-msgid "Abstract Red"
-msgstr "أحمر مبسط"
+msgid "Beehive"
+msgstr ""
-#: strings.hrc:271
+#: strings.hrc:273
msgctxt "STR_TEMPLATE_NAME3"
-msgid "Abstract Yellow"
-msgstr "أصفر مبسط"
+msgid "Blue Curve"
+msgstr ""
-#: strings.hrc:272
+#: strings.hrc:274
msgctxt "STR_TEMPLATE_NAME4"
-msgid "Bright Blue"
-msgstr "أزرق فاتح"
+msgid "Blueprint Plans"
+msgstr ""
-#: strings.hrc:273
+#: strings.hrc:275
msgctxt "STR_TEMPLATE_NAME5"
-msgid "DNA"
-msgstr "الحمض النووي"
+msgid "Bright Blue"
+msgstr ""
-#: strings.hrc:274
+#: strings.hrc:276
msgctxt "STR_TEMPLATE_NAME6"
-msgid "Inspiration"
-msgstr "إلهام"
+msgid "Classy Red"
+msgstr ""
-#: strings.hrc:275
+#: strings.hrc:277
msgctxt "STR_TEMPLATE_NAME7"
-msgid "Lush Green"
-msgstr "أخضر مورق"
+msgid "DNA"
+msgstr ""
-#: strings.hrc:276
+#: strings.hrc:278
msgctxt "STR_TEMPLATE_NAME8"
-msgid "Metropolis"
-msgstr "ميتروبوليس"
+msgid "Focus"
+msgstr ""
-#: strings.hrc:277
+#: strings.hrc:279
msgctxt "STR_TEMPLATE_NAME9"
-msgid "Sunset"
-msgstr "غروب"
+msgid "Forestbird"
+msgstr ""
-#: strings.hrc:278
+#: strings.hrc:280
msgctxt "STR_TEMPLATE_NAME10"
+msgid "Impress"
+msgstr ""
+
+#: strings.hrc:281
+msgctxt "STR_TEMPLATE_NAME11"
+msgid "Inspiration"
+msgstr ""
+
+#: strings.hrc:282
+msgctxt "STR_TEMPLATE_NAME12"
+msgid "Lights"
+msgstr ""
+
+#: strings.hrc:283
+msgctxt "STR_TEMPLATE_NAME13"
+msgid "Lush Green"
+msgstr ""
+
+#: strings.hrc:284
+msgctxt "STR_TEMPLATE_NAME14"
+msgid "Metropolis"
+msgstr ""
+
+#: strings.hrc:285
+msgctxt "STR_TEMPLATE_NAME15"
+msgid "Midnightblue"
+msgstr ""
+
+#: strings.hrc:286
+msgctxt "STR_TEMPLATE_NAME16"
+msgid "Nature Illustration"
+msgstr ""
+
+#: strings.hrc:287
+msgctxt "STR_TEMPLATE_NAME17"
+msgid "Pencil"
+msgstr ""
+
+#: strings.hrc:288
+msgctxt "STR_TEMPLATE_NAME18"
+msgid "Piano"
+msgstr ""
+
+#: strings.hrc:289
+msgctxt "STR_TEMPLATE_NAME19"
+msgid "Portfolio"
+msgstr ""
+
+#: strings.hrc:290
+msgctxt "STR_TEMPLATE_NAME20"
+msgid "Progress"
+msgstr ""
+
+#: strings.hrc:291
+msgctxt "STR_TEMPLATE_NAME21"
+msgid "Sunset"
+msgstr ""
+
+#: strings.hrc:292
+msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
-msgstr "عتيق"
+msgstr ""
-#: strings.hrc:280
+#: strings.hrc:293
+msgctxt "STR_TEMPLATE_NAME23"
+msgid "Vivid"
+msgstr ""
+
+#. Translators: default Writer template names
+#: strings.hrc:295
+msgctxt "STR_TEMPLATE_NAME24"
+msgid "CV"
+msgstr ""
+
+#: strings.hrc:296
+msgctxt "STR_TEMPLATE_NAME25"
+msgid "Resume"
+msgstr ""
+
+#: strings.hrc:297
+msgctxt "STR_TEMPLATE_NAME26"
+msgid "Default"
+msgstr ""
+
+#: strings.hrc:298
+msgctxt "STR_TEMPLATE_NAME27"
+msgid "Modern"
+msgstr ""
+
+#: strings.hrc:299
+msgctxt "STR_TEMPLATE_NAME28"
+msgid "Modern business letter sans-serif"
+msgstr ""
+
+#: strings.hrc:300
+msgctxt "STR_TEMPLATE_NAME29"
+msgid "Modern business letter serif"
+msgstr ""
+
+#: strings.hrc:301
+msgctxt "STR_TEMPLATE_NAME30"
+msgid "Businesscard with logo"
+msgstr ""
+
+#: strings.hrc:303
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "أزل"
-#: strings.hrc:281
+#: strings.hrc:304
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "امسح الكل"
diff --git a/source/ar/svx/messages.po b/source/ar/svx/messages.po
index 5968e8b2954..01b56dace09 100644
--- a/source/ar/svx/messages.po
+++ b/source/ar/svx/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-12-06 15:59+0100\n"
-"PO-Revision-Date: 2017-11-30 14:38+0000\n"
+"PO-Revision-Date: 2017-12-17 16:16+0000\n"
"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ar\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1512052719.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1513527364.000000\n"
#: fieldunit.hrc:30
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
@@ -334,49 +334,42 @@ msgstr "الصور المرتبطة"
#. SVX_NUM_BITMAP|0x80
#: numberingtype.hrc:33
-#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "1, 2, 3, ..."
msgstr "‏1، ‏2، ‏3، ‏..."
#. SVX_NUM_ARABIC
#: numberingtype.hrc:34
-#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "A, B, C, ..."
msgstr "‏A، ‏B، ‏C، ‏..."
#. SVX_NUM_CHARS_UPPER_LETTER
#: numberingtype.hrc:35
-#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "a, b, c, ..."
msgstr "‏a، ‏b، ‏c، ‏..."
#. SVX_NUM_CHARS_LOWER_LETTER
#: numberingtype.hrc:36
-#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "I, II, III, ..."
msgstr "‏I، ‏II، ‏III، ‏..."
#. SVX_NUM_ROMAN_UPPER
#: numberingtype.hrc:37
-#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "i, ii, iii, ..."
msgstr "‏i، ‏ii، ‏iii، ‏..."
#. SVX_NUM_ROMAN_LOWER
#: numberingtype.hrc:38
-#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "A, .., AA, .., AAA, ..."
msgstr "‏A، ..، ‏AA، ..، ‏AAA، ‏..."
#. SVX_NUM_CHARS_UPPER_LETTER_N
#: numberingtype.hrc:39
-#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "a, .., aa, .., aaa, ..."
msgstr "‏a، ..، ‏aa، ..، ‏aaa، ‏..."
@@ -390,14 +383,12 @@ msgstr "الأرقام المحلية"
#. NATIVE_NUMBERING
#: numberingtype.hrc:41
-#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Аб, ... (Bulgarian)"
msgstr "‏А، ‏Б، ..، ‏Аа، ‏Аб، ‏... (بلغاري)"
#. CHARS_CYRILLIC_UPPER_LETTER_BG
#: numberingtype.hrc:42
-#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, аб, ... (Bulgarian)"
msgstr "‏а، ‏б، ..، ‏аа، аб، ‏... (بلغاري)"
diff --git a/source/ar/sw/messages.po b/source/ar/sw/messages.po
index 72de2e7559d..1babe1279b0 100644
--- a/source/ar/sw/messages.po
+++ b/source/ar/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-20 08:17+0100\n"
"PO-Revision-Date: 2017-12-15 13:31+0000\n"
"Last-Translator: trabmed <trabelsi8med@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1513344665.000000\n"
#: app.hrc:30
@@ -78,8 +78,8 @@ msgstr "الأنماط الشرطيّة"
#: app.hrc:47
msgctxt "RID_CHARACTERSTYLEFAMILY"
-msgid "All"
-msgstr "الكل"
+msgid "All Styles"
+msgstr ""
#: app.hrc:48
msgctxt "RID_CHARACTERSTYLEFAMILY"
@@ -98,8 +98,8 @@ msgstr "الأنماط المخصصة"
#: app.hrc:56
msgctxt "RID_FRAMESTYLEFAMILY"
-msgid "All"
-msgstr "الكل"
+msgid "All Styles"
+msgstr ""
#: app.hrc:57
msgctxt "RID_FRAMESTYLEFAMILY"
@@ -118,8 +118,8 @@ msgstr "الأنماط المخصصة"
#: app.hrc:65
msgctxt "RID_PAGESTYLEFAMILY"
-msgid "All"
-msgstr "الكل"
+msgid "All Styles"
+msgstr ""
#: app.hrc:66
msgctxt "RID_PAGESTYLEFAMILY"
@@ -138,8 +138,8 @@ msgstr "الأنماط المخصصة"
#: app.hrc:74
msgctxt "RID_LISTSTYLEFAMILY"
-msgid "All"
-msgstr "الكل"
+msgid "All Styles"
+msgstr ""
#: app.hrc:75
msgctxt "RID_LISTSTYLEFAMILY"
@@ -158,8 +158,8 @@ msgstr "الأنماط المخصصة"
#: app.hrc:83
msgctxt "RID_TABLESTYLEFAMILY"
-msgid "All"
-msgstr "الكل"
+msgid "All Styles"
+msgstr ""
#: app.hrc:84
msgctxt "RID_TABLESTYLEFAMILY"
@@ -1321,28 +1321,28 @@ msgstr "بالعرض"
#. Numbering rules
#: strings.hrc:199
msgctxt "STR_POOLNUMRULE_NUM1"
-msgid "Numbering 1"
-msgstr "ترقيم ١"
+msgid "Numbering 123"
+msgstr ""
#: strings.hrc:200
msgctxt "STR_POOLNUMRULE_NUM2"
-msgid "Numbering 2"
-msgstr "ترقيم ٢"
+msgid "Numbering ABC"
+msgstr ""
#: strings.hrc:201
msgctxt "STR_POOLNUMRULE_NUM3"
-msgid "Numbering 3"
-msgstr "ترقيم ٣"
+msgid "Numbering abc"
+msgstr ""
#: strings.hrc:202
msgctxt "STR_POOLNUMRULE_NUM4"
-msgid "Numbering 4"
-msgstr "ترقيم ٤"
+msgid "Numbering IVX"
+msgstr ""
#: strings.hrc:203
msgctxt "STR_POOLNUMRULE_NUM5"
-msgid "Numbering 5"
-msgstr "ترقيم ٥"
+msgid "Numbering ivx"
+msgstr ""
#: strings.hrc:204
msgctxt "STR_POOLNUMRULE_BUL1"
@@ -13986,13 +13986,13 @@ msgstr "استخدم قياسات الطابعة لتنسيق المستند"
#: optcompatpage.ui:57
msgctxt "optcompatpage|format"
-msgid "Add spacing between paragraphs and tables (in current document)"
-msgstr "أضف تباعد بين الفقرات و الجداول (في المستند الحالي)"
+msgid "Add spacing between paragraphs and tables"
+msgstr ""
#: optcompatpage.ui:58
msgctxt "optcompatpage|format"
-msgid "Add paragraph and table spacing at tops of pages (in current document)"
-msgstr "أضف تباعد فقرات و جداول في أعلى الصفحات (في المستند الحالي)"
+msgid "Add paragraph and table spacing at tops of pages"
+msgstr ""
#: optcompatpage.ui:59
msgctxt "optcompatpage|format"
@@ -14046,7 +14046,7 @@ msgstr ""
#: optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Tolerate white lines of PDF page backgrounds for compatibility with old documents (in current document)"
+msgid "Tolerate white lines of PDF page backgrounds for compatibility with old documents"
msgstr ""
#: optcompatpage.ui:70
@@ -14061,8 +14061,8 @@ msgstr "استعمله _كمبدئيّ"
#: optcompatpage.ui:104
msgctxt "optcompatpage|label11"
-msgid "Compatibility options for %DOCNAME"
-msgstr "خيارات التوافقية مع %DOCNAME"
+msgid "Compatibility options for '%DOCNAME'"
+msgstr ""
#: optfonttabpage.ui:103
msgctxt "optfonttabpage|font_label"
@@ -17315,21 +17315,11 @@ msgctxt "textgridpage|labelFT_CHARSPERLINE"
msgid "Characters per line:"
msgstr "المحارف لكل سطر:"
-#: textgridpage.ui:223
-msgctxt "textgridpage|labelFT_CHARRANGE"
-msgid "(1-45)"
-msgstr ""
-
#: textgridpage.ui:236
msgctxt "textgridpage|labelFT_LINESPERPAGE"
msgid "Lines per page:"
msgstr "الأسطر لكل صفحة:"
-#: textgridpage.ui:265
-msgctxt "textgridpage|labelFT_LINERANGE"
-msgid "(1-48)"
-msgstr ""
-
#: textgridpage.ui:303
msgctxt "textgridpage|labelFT_CHARWIDTH"
msgid "Character _width:"
diff --git a/source/as/cui/messages.po b/source/as/cui/messages.po
index 0c5b5f5c92a..29e42658976 100644
--- a/source/as/cui/messages.po
+++ b/source/as/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8245,78 +8245,78 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "সহায়"
-#: optgeneralpage.ui:77
+#: optgeneralpage.ui:76
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME ডাইলগসমূহ ব্যৱহাৰ কৰক (_U)"
-#: optgeneralpage.ui:111
+#: optgeneralpage.ui:110
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "ডাইলগসমূহ খোলক/সঞ্চয় কৰক"
-#: optgeneralpage.ui:137
+#: optgeneralpage.ui:136
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME ডাইলগসমূহ ব্যৱহাৰ কৰক (_d)"
-#: optgeneralpage.ui:152
+#: optgeneralpage.ui:151
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "ডাইলগসমূহ প্ৰিন্ট কৰক"
-#: optgeneralpage.ui:178
+#: optgeneralpage.ui:177
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "সংহতিসমূহ \"দস্তাবেজ সলনি কৰা হৈছে\" অৱস্থা প্ৰিন্ট কৰা হৈ আছে (_P)"
-#: optgeneralpage.ui:193
+#: optgeneralpage.ui:192
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "দস্তাবেজ অৱস্থা"
-#: optgeneralpage.ui:226
+#: optgeneralpage.ui:225
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "বছৰসমূহ মাজত থকাকে অনুবাদ কৰক (_I) "
-#: optgeneralpage.ui:252
+#: optgeneralpage.ui:251
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "আৰু "
-#: optgeneralpage.ui:267
+#: optgeneralpage.ui:266
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "বছৰ (দুটা ডিজিট)"
-#: optgeneralpage.ui:293
+#: optgeneralpage.ui:292
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: optgeneralpage.ui:308
+#: optgeneralpage.ui:307
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: optgeneralpage.ui:339
+#: optgeneralpage.ui:338
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "%PRODUCTNAME -ক চিস্টেম আৰম্ভ হোৱাৰ সময়ত লোড কৰক"
-#: optgeneralpage.ui:353
+#: optgeneralpage.ui:352
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "systray Quickstarter সামৰ্থবান কৰক"
-#: optgeneralpage.ui:373
+#: optgeneralpage.ui:372
#, fuzzy
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
@@ -9165,250 +9165,254 @@ msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr "সুৰক্ষাৰ বিকল্প আৰু সকিয়নি"
-#: optuserpage.ui:34
+#: optuserpage.ui:12
+msgctxt "optuserpage|liststore1"
+msgid "No key"
+msgstr ""
+
+#: optuserpage.ui:45
#, fuzzy
msgctxt "optuserpage|companyft"
msgid "_Company:"
msgstr "কোম্পানী (‌_C)"
-#: optuserpage.ui:48
+#: optuserpage.ui:59
#, fuzzy
msgctxt "optuserpage|nameft"
msgid "First/last _name/initials:"
msgstr "প্রথম/অন্তিম নাম/ইনিশ্বিয়েলছ (_n)"
-#: optuserpage.ui:62
+#: optuserpage.ui:73
#, fuzzy
msgctxt "optuserpage|streetft"
msgid "_Street:"
msgstr "পথ (_S)"
-#: optuserpage.ui:76
+#: optuserpage.ui:87
#, fuzzy
msgctxt "optuserpage|cityft"
msgid "City/state/_zip:"
msgstr "শহৰ/ৰাজ্য/জিপ (_Z)"
-#: optuserpage.ui:90
+#: optuserpage.ui:101
#, fuzzy
msgctxt "optuserpage|countryft"
msgid "Country/re_gion:"
msgstr "দেশ/অঞ্চল (_g)"
-#: optuserpage.ui:104
+#: optuserpage.ui:115
#, fuzzy
msgctxt "optuserpage|titleft"
msgid "_Title/position:"
msgstr "শিৰোনাম/স্থান (_T)"
-#: optuserpage.ui:118
+#: optuserpage.ui:129
msgctxt "optuserpage|phoneft"
msgid "Telephone (home/_work):"
msgstr ""
-#: optuserpage.ui:123
+#: optuserpage.ui:134
#, fuzzy
msgctxt "phoneft-atkobject"
msgid "Home telephone number"
msgstr "ঘৰৰ টেলিফোন নম্বৰ"
-#: optuserpage.ui:137
+#: optuserpage.ui:148
#, fuzzy
msgctxt "optuserpage|faxft"
msgid "Fa_x/e-mail:"
msgstr "ফেক্স / ই-মেইল (_x)"
-#: optuserpage.ui:160
+#: optuserpage.ui:171
msgctxt "optuserpage|firstname-atkobject"
msgid "First name"
msgstr "প্রথম নাম"
-#: optuserpage.ui:178
+#: optuserpage.ui:189
#, fuzzy
msgctxt "lastname-atkobject"
msgid "Last name"
msgstr "অন্তিম নাম"
-#: optuserpage.ui:196
+#: optuserpage.ui:207
#, fuzzy
msgctxt "shortname-atkobject"
msgid "Initials"
msgstr "ইনিশ্বিয়েলছ"
-#: optuserpage.ui:225
+#: optuserpage.ui:236
#, fuzzy
msgctxt "city-atkobject"
msgid "City"
msgstr "চহৰ"
-#: optuserpage.ui:243
+#: optuserpage.ui:254
#, fuzzy
msgctxt "state-atkobject"
msgid "State"
msgstr "ৰাজ্য"
-#: optuserpage.ui:261
+#: optuserpage.ui:272
#, fuzzy
msgctxt "zip-atkobject"
msgid "Zip code"
msgstr "জিপ ক'ড"
-#: optuserpage.ui:291
+#: optuserpage.ui:302
#, fuzzy
msgctxt "title-atkobject"
msgid "Title"
msgstr "শিৰোনাম"
-#: optuserpage.ui:309
+#: optuserpage.ui:320
#, fuzzy
msgctxt "position-atkobject"
msgid "Position"
msgstr "স্থান"
-#: optuserpage.ui:338
+#: optuserpage.ui:349
#, fuzzy
msgctxt "home-atkobject"
msgid "Home telephone number"
msgstr "ঘৰৰ টেলিফোন নম্বৰ"
-#: optuserpage.ui:356
+#: optuserpage.ui:367
#, fuzzy
msgctxt "work-atkobject"
msgid "Work telephone number"
msgstr "কৰ্মস্থানৰ টেলিফোন নম্বৰ"
-#: optuserpage.ui:386
+#: optuserpage.ui:397
#, fuzzy
msgctxt "fax-atkobject"
msgid "FAX number"
msgstr "ফেক্স নম্বৰ"
-#: optuserpage.ui:404
+#: optuserpage.ui:415
#, fuzzy
msgctxt "email-atkobject"
msgid "email address"
msgstr "ইমেইল ঠিকনা"
-#: optuserpage.ui:421
+#: optuserpage.ui:432
msgctxt "optuserpage|usefordocprop"
msgid "Use data for document properties"
msgstr "ডাটা দস্তাবেজ বৈশিষ্ট্যবোৰৰ কাৰণে ব্যৱহাৰ কৰক"
-#: optuserpage.ui:438
+#: optuserpage.ui:449
#, fuzzy
msgctxt "optuserpage|rusnameft"
msgid "Last name/first _name/father’s name/initials:"
msgstr "অন্তিম নাম/প্রথম নাম/দেউতাৰ নাম/নাম-উপাধিৰ আদ্যক্ষৰবোৰ (_n)"
-#: optuserpage.ui:461
+#: optuserpage.ui:472
#, fuzzy
msgctxt "ruslastname-atkobject"
msgid "Last name"
msgstr "অন্তিম নাম"
-#: optuserpage.ui:479
+#: optuserpage.ui:490
#, fuzzy
msgctxt "rusfathersname-atkobject"
msgid "Father's name"
msgstr "দেউতাৰ নাম"
-#: optuserpage.ui:497
+#: optuserpage.ui:508
#, fuzzy
msgctxt "russhortname-atkobject"
msgid "Initials"
msgstr "ইনিশ্বিয়েলছ"
-#: optuserpage.ui:515
+#: optuserpage.ui:526
#, fuzzy
msgctxt "rusfirstname-atkobject"
msgid "First name"
msgstr "প্রথম নাম"
-#: optuserpage.ui:535
+#: optuserpage.ui:546
#, fuzzy
msgctxt "optuserpage|eastnameft"
msgid "Last/first _name/initials:"
msgstr "অন্তিম নাম/প্ৰথম নাম/নাম-উপাধিৰ আদ্যক্ষৰবোৰ (_n)"
-#: optuserpage.ui:558
+#: optuserpage.ui:569
#, fuzzy
msgctxt "eastlastname-atkobject"
msgid "Last name"
msgstr "অন্তিম নাম"
-#: optuserpage.ui:576
+#: optuserpage.ui:587
#, fuzzy
msgctxt "eastfirstname-atkobject"
msgid "First name"
msgstr "প্রথম নাম"
-#: optuserpage.ui:594
+#: optuserpage.ui:605
#, fuzzy
msgctxt "eastshortname-atkobject"
msgid "Initials"
msgstr "ইনিশ্বিয়েলছ"
-#: optuserpage.ui:614
+#: optuserpage.ui:625
#, fuzzy
msgctxt "optuserpage|russtreetft"
msgid "_Street/apartment number:"
msgstr "ৰাস্তা/ঘৰৰ নম্বৰ (_S)"
-#: optuserpage.ui:637
+#: optuserpage.ui:648
#, fuzzy
msgctxt "russtreet-atkobject"
msgid "Street"
msgstr "ৰাস্তা"
-#: optuserpage.ui:655
+#: optuserpage.ui:666
#, fuzzy
msgctxt "ruslastname-atkobject"
msgid "Apartment number"
msgstr "ঘৰৰ নম্বৰ"
-#: optuserpage.ui:675
+#: optuserpage.ui:686
#, fuzzy
msgctxt "optuserpage|icityft"
msgid "_Zip/city:"
msgstr "জিপ/চহৰ (_Z)"
-#: optuserpage.ui:698
+#: optuserpage.ui:709
#, fuzzy
msgctxt "icity-atkobject"
msgid "City"
msgstr "চহৰ"
-#: optuserpage.ui:716
+#: optuserpage.ui:727
#, fuzzy
msgctxt "izip-atkobject"
msgid "Zip code"
msgstr "জিপ ক'ড"
-#: optuserpage.ui:814
+#: optuserpage.ui:825
msgctxt "optuserpage|label1"
msgid "Address"
msgstr "ঠিকনা"
-#: optuserpage.ui:847
+#: optuserpage.ui:861
msgctxt "optuserpage|signingkeylabel"
msgid "OpenPGP signing key:"
msgstr ""
-#: optuserpage.ui:860
+#: optuserpage.ui:875
msgctxt "optuserpage|encryptionkeylabel"
msgid "OpenPGP encryption key:"
msgstr ""
-#: optuserpage.ui:889
+#: optuserpage.ui:908
msgctxt "optuserpage|encrypttoself"
msgid "When encrypting documents, always encrypt to self"
msgstr ""
-#: optuserpage.ui:909
-#, fuzzy
-msgctxt "optuserpage|label2"
+#: optuserpage.ui:930
+msgctxt "optuserpage|cryptographylabel"
msgid "Cryptography"
-msgstr "টাইপোগ্ৰাফি"
+msgstr ""
#: optviewpage.ui:47
msgctxt "optviewpage|grid3|tooltip_text"
diff --git a/source/as/extras/source/autocorr/emoji.po b/source/as/extras/source/autocorr/emoji.po
index 12516d996cd..f3aa771c78f 100644
--- a/source/as/extras/source/autocorr/emoji.po
+++ b/source/as/extras/source/autocorr/emoji.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: 2016-10-18 13:02+0200\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2016-12-01 12:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1798,13 +1798,12 @@ msgstr "আৰম্ভ কৰক"
#. ☇ (U+02607), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"LIGHTNING\n"
"LngText.text"
-msgid "lighting"
-msgstr "পোহৰাই তোলক"
+msgid "lightning3"
+msgstr ""
#. ☈ (U+02608), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1812,7 +1811,7 @@ msgctxt ""
"emoji.ulf\n"
"THUNDERSTORM\n"
"LngText.text"
-msgid "storm"
+msgid "storm2"
msgstr ""
#. ☉ (U+02609), see http://wiki.documentfoundation.org/Emoji
@@ -2161,13 +2160,12 @@ msgstr "চন্দ্ৰ"
#. ☿ (U+0263F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"MERCURY\n"
"LngText.text"
-msgid "Mercury"
-msgstr "পাৰা"
+msgid "mercury"
+msgstr ""
#. ♀ (U+02640), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2184,7 +2182,7 @@ msgctxt ""
"emoji.ulf\n"
"EARTH\n"
"LngText.text"
-msgid "Earth"
+msgid "earth"
msgstr ""
#. ♂ (U+02642), see http://wiki.documentfoundation.org/Emoji
@@ -2203,7 +2201,7 @@ msgctxt ""
"emoji.ulf\n"
"JUPITER\n"
"LngText.text"
-msgid "Jupiter"
+msgid "jupiter"
msgstr ""
#. ♄ (U+02644), see http://wiki.documentfoundation.org/Emoji
@@ -2212,7 +2210,7 @@ msgctxt ""
"emoji.ulf\n"
"SATURN\n"
"LngText.text"
-msgid "Saturn"
+msgid "saturn"
msgstr ""
#. ♅ (U+02645), see http://wiki.documentfoundation.org/Emoji
@@ -2221,7 +2219,7 @@ msgctxt ""
"emoji.ulf\n"
"URANUS\n"
"LngText.text"
-msgid "Uranus"
+msgid "uranus"
msgstr ""
#. ♆ (U+02646), see http://wiki.documentfoundation.org/Emoji
@@ -2230,7 +2228,7 @@ msgctxt ""
"emoji.ulf\n"
"NEPTUNE\n"
"LngText.text"
-msgid "Neptune"
+msgid "neptune"
msgstr ""
#. ♇ (U+02647), see http://wiki.documentfoundation.org/Emoji
@@ -2239,7 +2237,7 @@ msgctxt ""
"emoji.ulf\n"
"PLUTO\n"
"LngText.text"
-msgid "Pluto"
+msgid "pluto"
msgstr ""
#. ♈ (U+02648), see http://wiki.documentfoundation.org/Emoji
@@ -2248,7 +2246,7 @@ msgctxt ""
"emoji.ulf\n"
"ARIES\n"
"LngText.text"
-msgid "Aries"
+msgid "aries"
msgstr ""
#. ♉ (U+02649), see http://wiki.documentfoundation.org/Emoji
@@ -2257,7 +2255,7 @@ msgctxt ""
"emoji.ulf\n"
"TAURUS\n"
"LngText.text"
-msgid "Taurus"
+msgid "taurus"
msgstr ""
#. ♊ (U+0264A), see http://wiki.documentfoundation.org/Emoji
@@ -2266,18 +2264,17 @@ msgctxt ""
"emoji.ulf\n"
"GEMINI\n"
"LngText.text"
-msgid "Gemini"
+msgid "gemini"
msgstr ""
#. ♋ (U+0264B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CANCER\n"
"LngText.text"
-msgid "Cancer"
-msgstr "বাতিল কৰক"
+msgid "cancer"
+msgstr ""
#. ♌ (U+0264C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2285,7 +2282,7 @@ msgctxt ""
"emoji.ulf\n"
"LEO\n"
"LngText.text"
-msgid "Leo"
+msgid "leo"
msgstr ""
#. ♍ (U+0264D), see http://wiki.documentfoundation.org/Emoji
@@ -2294,7 +2291,7 @@ msgctxt ""
"emoji.ulf\n"
"VIRGO\n"
"LngText.text"
-msgid "Virgo"
+msgid "virgo"
msgstr ""
#. ♎ (U+0264E), see http://wiki.documentfoundation.org/Emoji
@@ -2303,7 +2300,7 @@ msgctxt ""
"emoji.ulf\n"
"LIBRA\n"
"LngText.text"
-msgid "Libra"
+msgid "libra"
msgstr ""
#. ♏ (U+0264F), see http://wiki.documentfoundation.org/Emoji
@@ -2312,7 +2309,7 @@ msgctxt ""
"emoji.ulf\n"
"SCORPIUS\n"
"LngText.text"
-msgid "Scorpius"
+msgid "scorpius"
msgstr ""
#. ♐ (U+02650), see http://wiki.documentfoundation.org/Emoji
@@ -2321,7 +2318,7 @@ msgctxt ""
"emoji.ulf\n"
"SAGITTARIUS\n"
"LngText.text"
-msgid "Sagittarius"
+msgid "sagittarius"
msgstr ""
#. ♑ (U+02651), see http://wiki.documentfoundation.org/Emoji
@@ -2330,7 +2327,7 @@ msgctxt ""
"emoji.ulf\n"
"CAPRICORN\n"
"LngText.text"
-msgid "Capricorn"
+msgid "capricorn"
msgstr ""
#. ♒ (U+02652), see http://wiki.documentfoundation.org/Emoji
@@ -2339,7 +2336,7 @@ msgctxt ""
"emoji.ulf\n"
"AQUARIUS\n"
"LngText.text"
-msgid "Aquarius"
+msgid "aquarius"
msgstr ""
#. ♓ (U+02653), see http://wiki.documentfoundation.org/Emoji
@@ -2348,7 +2345,7 @@ msgctxt ""
"emoji.ulf\n"
"PISCES\n"
"LngText.text"
-msgid "Pisces"
+msgid "pisces"
msgstr ""
#. ♔ (U+02654), see http://wiki.documentfoundation.org/Emoji
@@ -2713,7 +2710,7 @@ msgctxt ""
"emoji.ulf\n"
"WHITE_FLAG\n"
"LngText.text"
-msgid "flag"
+msgid "flag4"
msgstr ""
#. ⚑ (U+02691), see http://wiki.documentfoundation.org/Emoji
@@ -2722,7 +2719,7 @@ msgctxt ""
"emoji.ulf\n"
"BLACK_FLAG\n"
"LngText.text"
-msgid "flag2"
+msgid "flag3"
msgstr ""
#. ⚒ (U+02692), see http://wiki.documentfoundation.org/Emoji
@@ -3034,7 +3031,7 @@ msgctxt ""
"emoji.ulf\n"
"BLACK_CROSS_ON_SHIELD\n"
"LngText.text"
-msgid "shield"
+msgid "shield2"
msgstr ""
#. ⛪ (U+026EA), see http://wiki.documentfoundation.org/Emoji
@@ -3075,13 +3072,12 @@ msgstr ""
#. ⛳ (U+026F3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"FLAG_IN_HOLE\n"
"LngText.text"
-msgid "golf"
-msgstr "সোন"
+msgid "golf2"
+msgstr ""
#. ⛴ (U+026F4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3825,7 +3821,7 @@ msgctxt ""
"emoji.ulf\n"
"FOGGY\n"
"LngText.text"
-msgid "fog"
+msgid "foggy"
msgstr ""
#. 🌂 (U+1F302), see http://wiki.documentfoundation.org/Emoji
@@ -3926,7 +3922,7 @@ msgctxt ""
"emoji.ulf\n"
"MILKY_WAY\n"
"LngText.text"
-msgid "Milky way"
+msgid "milky way"
msgstr ""
#. 🌍 (U+1F30D), see http://wiki.documentfoundation.org/Emoji
@@ -4184,7 +4180,7 @@ msgctxt ""
"emoji.ulf\n"
"CHERRY_BLOSSOM\n"
"LngText.text"
-msgid "cherry blossom"
+msgid "blossom2"
msgstr ""
#. 🌹 (U+1F339), see http://wiki.documentfoundation.org/Emoji
@@ -4421,7 +4417,7 @@ msgctxt ""
"emoji.ulf\n"
"CHERRIES\n"
"LngText.text"
-msgid "cherries"
+msgid "cherry"
msgstr ""
#. 🍓 (U+1F353), see http://wiki.documentfoundation.org/Emoji
@@ -4725,7 +4721,7 @@ msgctxt ""
"emoji.ulf\n"
"COOKING\n"
"LngText.text"
-msgid "egg"
+msgid "cooking"
msgstr ""
#. 🍴 (U+1F374), see http://wiki.documentfoundation.org/Emoji
@@ -4763,7 +4759,7 @@ msgctxt ""
"emoji.ulf\n"
"WINE_GLASS\n"
"LngText.text"
-msgid "wine glass"
+msgid "glass"
msgstr ""
#. 🍸 (U+1F378), see http://wiki.documentfoundation.org/Emoji
@@ -4781,7 +4777,7 @@ msgctxt ""
"emoji.ulf\n"
"TROPICAL_DRINK\n"
"LngText.text"
-msgid "tropical drink"
+msgid "drink2"
msgstr ""
#. 🍺 (U+1F37A), see http://wiki.documentfoundation.org/Emoji
@@ -4817,7 +4813,7 @@ msgctxt ""
"emoji.ulf\n"
"RIBBON\n"
"LngText.text"
-msgid "ribbon"
+msgid "ribbon2"
msgstr ""
#. 🎁 (U+1F381), see http://wiki.documentfoundation.org/Emoji
@@ -4844,7 +4840,7 @@ msgctxt ""
"emoji.ulf\n"
"JACK-O-LANTERN\n"
"LngText.text"
-msgid "Halloween"
+msgid "halloween"
msgstr ""
#. 🎄 (U+1F384), see http://wiki.documentfoundation.org/Emoji
@@ -4853,7 +4849,7 @@ msgctxt ""
"emoji.ulf\n"
"CHRISTMAS_TREE\n"
"LngText.text"
-msgid "Christmas"
+msgid "christmas"
msgstr ""
#. 🎅 (U+1F385), see http://wiki.documentfoundation.org/Emoji
@@ -4862,7 +4858,7 @@ msgctxt ""
"emoji.ulf\n"
"FATHER_CHRISTMAS\n"
"LngText.text"
-msgid "Santa"
+msgid "santa"
msgstr ""
#. 🎆 (U+1F386), see http://wiki.documentfoundation.org/Emoji
@@ -4908,7 +4904,7 @@ msgctxt ""
"emoji.ulf\n"
"CONFETTI_BALL\n"
"LngText.text"
-msgid "confetti ball"
+msgid "party2"
msgstr ""
#. 🎋 (U+1F38B), see http://wiki.documentfoundation.org/Emoji
@@ -4999,7 +4995,7 @@ msgctxt ""
"emoji.ulf\n"
"CAROUSEL_HORSE\n"
"LngText.text"
-msgid "carousel horse"
+msgid "fair2"
msgstr ""
#. 🎡 (U+1F3A1), see http://wiki.documentfoundation.org/Emoji
@@ -5008,7 +5004,7 @@ msgctxt ""
"emoji.ulf\n"
"FERRIS_WHEEL\n"
"LngText.text"
-msgid "ferris wheel"
+msgid "fair"
msgstr ""
#. 🎢 (U+1F3A2), see http://wiki.documentfoundation.org/Emoji
@@ -5090,7 +5086,7 @@ msgctxt ""
"emoji.ulf\n"
"CIRCUS_TENT\n"
"LngText.text"
-msgid "circus tent"
+msgid "circus"
msgstr ""
#. 🎫 (U+1F3AB), see http://wiki.documentfoundation.org/Emoji
@@ -5297,7 +5293,7 @@ msgctxt ""
"emoji.ulf\n"
"CHEQUERED_FLAG\n"
"LngText.text"
-msgid "flag3"
+msgid "race"
msgstr ""
#. 🏂 (U+1F3C2), see http://wiki.documentfoundation.org/Emoji
@@ -5342,7 +5338,7 @@ msgctxt ""
"emoji.ulf\n"
"HORSE_RACING\n"
"LngText.text"
-msgid "horse racing"
+msgid "horse3"
msgstr ""
#. 🏈 (U+1F3C8), see http://wiki.documentfoundation.org/Emoji
@@ -7093,7 +7089,7 @@ msgctxt ""
"emoji.ulf\n"
"MONEY_BAG\n"
"LngText.text"
-msgid "moneybag"
+msgid "money2"
msgstr ""
#. 💱 (U+1F4B1), see http://wiki.documentfoundation.org/Emoji
@@ -7102,7 +7098,7 @@ msgctxt ""
"emoji.ulf\n"
"CURRENCY_EXCHANGE\n"
"LngText.text"
-msgid "currency exchange"
+msgid "exchange"
msgstr ""
#. 💲 (U+1F4B2), see http://wiki.documentfoundation.org/Emoji
@@ -7170,13 +7166,12 @@ msgstr ""
#. 💹 (U+1F4B9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CHART_WITH_UPWARDS_TREND_AND_YEN_SIGN\n"
"LngText.text"
-msgid "chart"
-msgstr "ছার্ট"
+msgid "chart4"
+msgstr ""
#. 💺 (U+1F4BA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7268,7 +7263,7 @@ msgctxt ""
"emoji.ulf\n"
"PAGE_WITH_CURL\n"
"LngText.text"
-msgid "page with curl"
+msgid "page3"
msgstr ""
#. 📄 (U+1F4C4), see http://wiki.documentfoundation.org/Emoji
@@ -7277,7 +7272,7 @@ msgctxt ""
"emoji.ulf\n"
"PAGE_FACING_UP\n"
"LngText.text"
-msgid "page facing up"
+msgid "page"
msgstr ""
#. 📅 (U+1F4C5), see http://wiki.documentfoundation.org/Emoji
@@ -7311,13 +7306,12 @@ msgstr ""
#. 📈 (U+1F4C8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CHART_WITH_UPWARDS_TREND\n"
"LngText.text"
-msgid "char"
-msgstr "ছার্ট"
+msgid "chart"
+msgstr ""
#. 📉 (U+1F4C9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7434,13 +7428,12 @@ msgstr ""
#. 📕 (U+1F4D5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CLOSED_BOOK\n"
"LngText.text"
-msgid "book"
-msgstr "কিতাপ"
+msgid "book2"
+msgstr ""
#. 📖 (U+1F4D6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7448,7 +7441,7 @@ msgctxt ""
"emoji.ulf\n"
"OPEN_BOOK\n"
"LngText.text"
-msgid "book2"
+msgid "book3"
msgstr ""
#. 📚 (U+1F4DA), see http://wiki.documentfoundation.org/Emoji
@@ -7522,7 +7515,7 @@ msgctxt ""
"emoji.ulf\n"
"SATELLITE_ANTENNA\n"
"LngText.text"
-msgid "satellite"
+msgid "antenna"
msgstr ""
#. 📢 (U+1F4E2), see http://wiki.documentfoundation.org/Emoji
@@ -7584,23 +7577,21 @@ msgstr "ই-মেইল"
#. 📨 (U+1F4E8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"INCOMING_ENVELOPE\n"
"LngText.text"
-msgid "envelope2"
-msgstr "লেফাফা"
+msgid "envelope7"
+msgstr ""
#. 📩 (U+1F4E9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"ENVELOPE_WITH_DOWNWARDS_ARROW_ABOVE\n"
"LngText.text"
-msgid "envelope3"
-msgstr "লেফাফা"
+msgid "envelope8"
+msgstr ""
#. 📪 (U+1F4EA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8427,7 +8418,7 @@ msgctxt ""
"emoji.ulf\n"
"SMILING_FACE_WITH_OPEN_MOUTH_AND_TIGHTLY-CLOSED_EYES\n"
"LngText.text"
-msgid "laughing"
+msgid "laugh"
msgstr ""
#. 😇 (U+1F607), see http://wiki.documentfoundation.org/Emoji
@@ -8500,7 +8491,7 @@ msgctxt ""
"emoji.ulf\n"
"SMILING_FACE_WITH_SUNGLASSES\n"
"LngText.text"
-msgid "sunglasses"
+msgid "sunglasses2"
msgstr ""
#. 😏 (U+1F60F), see http://wiki.documentfoundation.org/Emoji
@@ -8970,7 +8961,7 @@ msgctxt ""
"emoji.ulf\n"
"FACE_WITH_OK_GESTURE\n"
"LngText.text"
-msgid "ok2"
+msgid "ok3"
msgstr ""
#. 🙇 (U+1F647), see http://wiki.documentfoundation.org/Emoji
@@ -8979,7 +8970,7 @@ msgctxt ""
"emoji.ulf\n"
"PERSON_BOWING_DEEPLY\n"
"LngText.text"
-msgid "bow"
+msgid "prostration"
msgstr ""
#. 🙈 (U+1F648), see http://wiki.documentfoundation.org/Emoji
@@ -9080,7 +9071,7 @@ msgctxt ""
"emoji.ulf\n"
"STEAM_LOCOMOTIVE\n"
"LngText.text"
-msgid "steam locomotive"
+msgid "locomotive"
msgstr ""
#. 🚃 (U+1F683), see http://wiki.documentfoundation.org/Emoji
@@ -9570,7 +9561,7 @@ msgctxt ""
"emoji.ulf\n"
"CHILDREN_CROSSING\n"
"LngText.text"
-msgid "children crossing"
+msgid "crosswalk"
msgstr ""
#. 🚹 (U+1F6B9), see http://wiki.documentfoundation.org/Emoji
@@ -9692,6 +9683,3714 @@ msgctxt ""
msgid "left luggage"
msgstr ""
+#. 🕃 (U+1F543), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTCHED_LEFT_SEMICIRCLE_WITH_THREE_DOTS\n"
+"LngText.text"
+msgid "feast"
+msgstr ""
+
+#. 🙂 (U+1F642), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLIGHTLY_SMILING_FACE\n"
+"LngText.text"
+msgid "smiling3"
+msgstr ""
+
+#. 🙁 (U+1F641), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLIGHTLY_FROWNING_FACE\n"
+"LngText.text"
+msgid "frowning2"
+msgstr ""
+
+#. 🕵 (U+1F575), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLEUTH_OR_SPY\n"
+"LngText.text"
+msgid "detective"
+msgstr ""
+
+#. 🛌 (U+1F6CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLEEPING_ACCOMMODATION\n"
+"LngText.text"
+msgid "sleep"
+msgstr ""
+
+#. 🕴 (U+1F574), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_IN_BUSINESS_SUIT_LEVITATING\n"
+"LngText.text"
+msgid "suit"
+msgstr ""
+
+#. 🗣 (U+1F5E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPEAKING_HEAD_IN_SILHOUETTE\n"
+"LngText.text"
+msgid "head"
+msgstr ""
+
+#. 🏌 (U+1F3CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GOLFER\n"
+"LngText.text"
+msgid "golf"
+msgstr ""
+
+#. 🏋 (U+1F3CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WEIGHT_LIFTER\n"
+"LngText.text"
+msgid "weight lifter"
+msgstr ""
+
+#. 🏎 (U+1F3CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RACING_CAR\n"
+"LngText.text"
+msgid "car4"
+msgstr ""
+
+#. 🏍 (U+1F3CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RACING_MOTORCYCLE\n"
+"LngText.text"
+msgid "motorcycle"
+msgstr ""
+
+#. 🖕 (U+1F595), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_HAND_WITH_MIDDLE_FINGER_EXTENDED\n"
+"LngText.text"
+msgid "finger"
+msgstr ""
+
+#. 🖖 (U+1F596), Mr. Spock's Vulcan salute from Star Trek, see also http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_HAND_WITH_PART_BETWEEN_MIDDLE_AND_RING_FINGERS\n"
+"LngText.text"
+msgid "spock"
+msgstr ""
+
+#. 🖐 (U+1F590), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_HAND_WITH_FINGERS_SPLAYED\n"
+"LngText.text"
+msgid "hand2"
+msgstr ""
+
+#. 👁 (U+1F441), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EYE\n"
+"LngText.text"
+msgid "eye"
+msgstr ""
+
+#. 🗨 (U+1F5E8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_SPEECH_BUBBLE\n"
+"LngText.text"
+msgid "bubble"
+msgstr ""
+
+#. 🗯 (U+1F5EF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_ANGER_BUBBLE\n"
+"LngText.text"
+msgid "bubble4"
+msgstr ""
+
+#. 🕳 (U+1F573), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOLE\n"
+"LngText.text"
+msgid "hole"
+msgstr ""
+
+#. 🕶 (U+1F576), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DARK_SUNGLASSES\n"
+"LngText.text"
+msgid "sunglasses"
+msgstr ""
+
+#. 🛍 (U+1F6CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOPPING_BAGS\n"
+"LngText.text"
+msgid "shop"
+msgstr ""
+
+#. 🐿 (U+1F43F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHIPMUNK\n"
+"LngText.text"
+msgid "chipmunk"
+msgstr ""
+
+#. 🕊 (U+1F54A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOVE_OF_PEACE\n"
+"LngText.text"
+msgid "dove"
+msgstr ""
+
+#. 🕷 (U+1F577), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIDER\n"
+"LngText.text"
+msgid "spider"
+msgstr ""
+
+#. 🕸 (U+1F578), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIDER_WEB\n"
+"LngText.text"
+msgid "web"
+msgstr ""
+
+#. 🏵 (U+1F3F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROSETTE\n"
+"LngText.text"
+msgid "rosette"
+msgstr ""
+
+#. 🌶 (U+1F336), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOT_PEPPER\n"
+"LngText.text"
+msgid "pepper"
+msgstr ""
+
+#. 🍽 (U+1F37D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FORK_AND_KNIFE_WITH_PLATE\n"
+"LngText.text"
+msgid "plate"
+msgstr ""
+
+#. 🗺 (U+1F5FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WORLD_MAP\n"
+"LngText.text"
+msgid "map"
+msgstr ""
+
+#. 🏔 (U+1F3D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SNOW_CAPPED_MOUNTAIN\n"
+"LngText.text"
+msgid "mountain2"
+msgstr ""
+
+#. 🏕 (U+1F3D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CAMPING\n"
+"LngText.text"
+msgid "camping"
+msgstr ""
+
+#. 🏖 (U+1F3D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEACH_WITH_UMBRELLA\n"
+"LngText.text"
+msgid "beach"
+msgstr ""
+
+#. 🏜 (U+1F3DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESERT\n"
+"LngText.text"
+msgid "desert"
+msgstr ""
+
+#. 🏝 (U+1F3DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESERT_ISLAND\n"
+"LngText.text"
+msgid "island"
+msgstr ""
+
+#. 🏞 (U+1F3DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NATIONAL_PARK\n"
+"LngText.text"
+msgid "park"
+msgstr ""
+
+#. 🏟 (U+1F3DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STADIUM\n"
+"LngText.text"
+msgid "stadium"
+msgstr ""
+
+#. 🏛 (U+1F3DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLASSICAL_BUILDING\n"
+"LngText.text"
+msgid "museum"
+msgstr ""
+
+#. 🏗 (U+1F3D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BUILDING_CONSTRUCTION\n"
+"LngText.text"
+msgid "crane"
+msgstr ""
+
+#. 🏘 (U+1F3D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOUSE_BUILDINGS\n"
+"LngText.text"
+msgid "houses"
+msgstr ""
+
+#. 🏚 (U+1F3DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DERELICT_HOUSE_BUILDING\n"
+"LngText.text"
+msgid "house3"
+msgstr ""
+
+#. 🏙 (U+1F3D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CITYSCAPE\n"
+"LngText.text"
+msgid "city"
+msgstr ""
+
+#. 🛣 (U+1F6E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTORWAY\n"
+"LngText.text"
+msgid "motorway"
+msgstr ""
+
+#. 🛤 (U+1F6E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAILWAY_TRACK\n"
+"LngText.text"
+msgid "track"
+msgstr ""
+
+#. 🛢 (U+1F6E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OIL_DRUM\n"
+"LngText.text"
+msgid "drum"
+msgstr ""
+
+#. 🛳 (U+1F6F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PASSENGER_SHIP\n"
+"LngText.text"
+msgid "ship2"
+msgstr ""
+
+#. 🛥 (U+1F6E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTOR_BOAT\n"
+"LngText.text"
+msgid "motor boat"
+msgstr ""
+
+#. 🛩 (U+1F6E9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SMALL_AIRPLANE\n"
+"LngText.text"
+msgid "airplane2"
+msgstr ""
+
+#. 🛫 (U+1F6EB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AIRPLANE_DEPARTURE\n"
+"LngText.text"
+msgid "departure"
+msgstr ""
+
+#. 🛬 (U+1F6EC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AIRPLANE_ARRIVING\n"
+"LngText.text"
+msgid "arrival"
+msgstr ""
+
+#. 🛰 (U+1F6F0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SATELLITE\n"
+"LngText.text"
+msgid "satellite"
+msgstr ""
+
+#. 🛎 (U+1F6CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BELLHOP_BELL\n"
+"LngText.text"
+msgid "bell2"
+msgstr ""
+
+#. 🕰 (U+1F570), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MANTELPIECE_CLOCK\n"
+"LngText.text"
+msgid "clock"
+msgstr ""
+
+#. 🌡 (U+1F321), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THERMOMETER\n"
+"LngText.text"
+msgid "thermometer"
+msgstr ""
+
+#. 🌤 (U+1F324), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_WITH_SMALL_CLOUD\n"
+"LngText.text"
+msgid "cloudy"
+msgstr ""
+
+#. 🌥 (U+1F325), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_BEHIND_CLOUD\n"
+"LngText.text"
+msgid "cloudy2"
+msgstr ""
+
+#. 🌦 (U+1F326), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_BEHIND_CLOUD_WITH_RAIN\n"
+"LngText.text"
+msgid "rainy"
+msgstr ""
+
+#. 🌧 (U+1F327), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_RAIN\n"
+"LngText.text"
+msgid "storm"
+msgstr ""
+
+#. 🌨 (U+1F328), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_SNOW\n"
+"LngText.text"
+msgid "snow"
+msgstr ""
+
+#. 🌩 (U+1F329), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_LIGHTNING\n"
+"LngText.text"
+msgid "lightning"
+msgstr ""
+
+#. 🌪 (U+1F32A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_TORNADO\n"
+"LngText.text"
+msgid "tornado"
+msgstr ""
+
+#. 🌫 (U+1F32B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOG\n"
+"LngText.text"
+msgid "fog"
+msgstr ""
+
+#. 🌬 (U+1F32C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WIND_BLOWING_FACE\n"
+"LngText.text"
+msgid "wind"
+msgstr ""
+
+#. 🎗 (U+1F397), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REMINDER_RIBBON\n"
+"LngText.text"
+msgid "ribbon"
+msgstr ""
+
+#. 🎟 (U+1F39F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ADMISSION_TICKETS\n"
+"LngText.text"
+msgid "ticket2"
+msgstr ""
+
+#. 🎖 (U+1F396), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MILITARY_MEDAL\n"
+"LngText.text"
+msgid "medal2"
+msgstr ""
+
+#. 🏅 (U+1F3C5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPORTS_MEDAL\n"
+"LngText.text"
+msgid "medal"
+msgstr ""
+
+#. 🕹 (U+1F579), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"JOYSTICK\n"
+"LngText.text"
+msgid "joystick"
+msgstr ""
+
+#. 🖼 (U+1F5BC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_PICTURE\n"
+"LngText.text"
+msgid "picture"
+msgstr ""
+
+#. 🎙 (U+1F399), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STUDIO_MICROPHONE\n"
+"LngText.text"
+msgid "microphone2"
+msgstr ""
+
+#. 🎚 (U+1F39A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEVEL_SLIDER\n"
+"LngText.text"
+msgid "slider"
+msgstr ""
+
+#. 🎛 (U+1F39B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CONTROL_KNOBS\n"
+"LngText.text"
+msgid "control"
+msgstr ""
+
+#. 🖥 (U+1F5A5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESKTOP_COMPUTER\n"
+"LngText.text"
+msgid "computer2"
+msgstr ""
+
+#. 🖨 (U+1F5A8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINTER\n"
+"LngText.text"
+msgid "printer"
+msgstr ""
+
+#. 🖱 (U+1F5B1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse3"
+msgstr ""
+
+#. 🖲 (U+1F5B2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TRACKBALL\n"
+"LngText.text"
+msgid "trackball"
+msgstr ""
+
+#. 🎞 (U+1F39E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILM_FRAMES\n"
+"LngText.text"
+msgid "film"
+msgstr ""
+
+#. 📽 (U+1F4FD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILM_PROJECTOR\n"
+"LngText.text"
+msgid "projector"
+msgstr ""
+
+#. 📸 (U+1F4F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CAMERA_WITH_FLASH\n"
+"LngText.text"
+msgid "flash"
+msgstr ""
+
+#. 🕯 (U+1F56F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANDLE\n"
+"LngText.text"
+msgid "candle"
+msgstr ""
+
+#. 🗞 (U+1F5DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROLLED-UP_NEWSPAPER\n"
+"LngText.text"
+msgid "newspaper2"
+msgstr ""
+
+#. 🏷 (U+1F3F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LABEL\n"
+"LngText.text"
+msgid "label"
+msgstr ""
+
+#. 🗳 (U+1F5F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BALLOT\n"
+"LngText.text"
+msgid "ballot"
+msgstr ""
+
+#. 🖋 (U+1F58B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_FOUNTAIN_PEN\n"
+"LngText.text"
+msgid "pen2"
+msgstr ""
+
+#. 🖊 (U+1F58A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_BALLPOINT_PEN\n"
+"LngText.text"
+msgid "pen"
+msgstr ""
+
+#. 🖌 (U+1F58C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_PAINTBRUSH\n"
+"LngText.text"
+msgid "paintbrush"
+msgstr ""
+
+#. 🖍 (U+1F58D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_CRAYON\n"
+"LngText.text"
+msgid "crayon"
+msgstr ""
+
+#. 🗂 (U+1F5C2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARD_INDEX_DIVIDERS\n"
+"LngText.text"
+msgid "index"
+msgstr ""
+
+#. 🗒 (U+1F5D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIRAL_NOTE_PAD\n"
+"LngText.text"
+msgid "notepad"
+msgstr ""
+
+#. 🗓 (U+1F5D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIRAL_CALENDAR_PAD\n"
+"LngText.text"
+msgid "calendar3"
+msgstr ""
+
+#. 🖇 (U+1F587), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LINKED_PAPERCLIPS\n"
+"LngText.text"
+msgid "paperclip2"
+msgstr ""
+
+#. 🗃 (U+1F5C3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARD_FILE_BOX\n"
+"LngText.text"
+msgid "box"
+msgstr ""
+
+#. 🗄 (U+1F5C4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILE_CABINET\n"
+"LngText.text"
+msgid "cabinet"
+msgstr ""
+
+#. 🗑 (U+1F5D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WASTEBASKET\n"
+"LngText.text"
+msgid "wastebasket"
+msgstr ""
+
+#. 🗝 (U+1F5DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLD_KEY\n"
+"LngText.text"
+msgid "key2"
+msgstr ""
+
+#. 🛠 (U+1F6E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HAMMER_AND_WRENCH\n"
+"LngText.text"
+msgid "hammer and wrench"
+msgstr ""
+
+#. 🗡 (U+1F5E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DAGGER_KNIFE\n"
+"LngText.text"
+msgid "knife2"
+msgstr ""
+
+#. 🛡 (U+1F6E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHIELD\n"
+"LngText.text"
+msgid "shield"
+msgstr ""
+
+#. 🗜 (U+1F5DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COMPRESSION\n"
+"LngText.text"
+msgid "clamp"
+msgstr ""
+
+#. 🛏 (U+1F6CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BED\n"
+"LngText.text"
+msgid "bed"
+msgstr ""
+
+#. 🛋 (U+1F6CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COUCH_AND_LAMP\n"
+"LngText.text"
+msgid "couch"
+msgstr ""
+
+#. 🕉 (U+1F549), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OM_SYMBOL\n"
+"LngText.text"
+msgid "om"
+msgstr ""
+
+#. ⏸ (U+23F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOUBLE_VERTICAL_BAR\n"
+"LngText.text"
+msgid "pause"
+msgstr ""
+
+#. ⏹ (U+23F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_SQUARE_FOR_STOP\n"
+"LngText.text"
+msgid "stop2"
+msgstr ""
+
+#. ⏺ (U+23FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_CIRCLE_FOR_RECORD\n"
+"LngText.text"
+msgid "record"
+msgstr ""
+
+#. 🏴 (U+1F3F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WAVING_BLACK_FLAG\n"
+"LngText.text"
+msgid "flag"
+msgstr ""
+
+#. 🏳 (U+1F3F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WAVING_WHITE_FLAG\n"
+"LngText.text"
+msgid "flag2"
+msgstr ""
+
+#. 🗷 (U+1F5F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BOLD_SCRIPT_X\n"
+"LngText.text"
+msgid "checkbox4"
+msgstr ""
+
+#. 🛉 (U+1F6C9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOYS_SYMBOL\n"
+"LngText.text"
+msgid "boys"
+msgstr ""
+
+#. 🛈 (U+1F6C8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CIRCLED_INFORMATION_SOURCE\n"
+"LngText.text"
+msgid "information3"
+msgstr ""
+
+#. 🛊 (U+1F6CA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GIRLS_SYMBOL\n"
+"LngText.text"
+msgid "girls"
+msgstr ""
+
+#. 🛨 (U+1F6E8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_SMALL_AIRPLANE\n"
+"LngText.text"
+msgid "airplane4"
+msgstr ""
+
+#. 🛲 (U+1F6F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DIESEL_LOCOMOTIVE\n"
+"LngText.text"
+msgid "locomotive2"
+msgstr ""
+
+#. 🛧 (U+1F6E7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_AIRPLANE\n"
+"LngText.text"
+msgid "airplane3"
+msgstr ""
+
+#. 🛱 (U+1F6F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ONCOMING_FIRE_ENGINE\n"
+"LngText.text"
+msgid "fire engine2"
+msgstr ""
+
+#. 🛦 (U+1F6E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_MILITARY_AIRPLANE\n"
+"LngText.text"
+msgid "airplane5"
+msgstr ""
+
+#. 🛪 (U+1F6EA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NORTHEAST-POINTING_AIRPLANE\n"
+"LngText.text"
+msgid "airplane6"
+msgstr ""
+
+#. 🗭 (U+1F5ED), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_THOUGHT_BUBBLE\n"
+"LngText.text"
+msgid "bubble5"
+msgstr ""
+
+#. 🗱 (U+1F5F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHTNING_MOOD_BUBBLE\n"
+"LngText.text"
+msgid "bubble6"
+msgstr ""
+
+#. 🗬 (U+1F5EC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_THOUGHT_BUBBLE\n"
+"LngText.text"
+msgid "bubble7"
+msgstr ""
+
+#. 🗠 (U+1F5E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STOCK_CHART\n"
+"LngText.text"
+msgid "chart5"
+msgstr ""
+
+#. 🗟 (U+1F5DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGE_WITH_CIRCLED_TEXT\n"
+"LngText.text"
+msgid "page4"
+msgstr ""
+
+#. 🖎 (U+1F58E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_WRITING_HAND\n"
+"LngText.text"
+msgid "writing2"
+msgstr ""
+
+#. 🗦 (U+1F5E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_LEFT\n"
+"LngText.text"
+msgid "rays"
+msgstr ""
+
+#. 🎝 (U+1F39D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEAMED_DESCENDING_MUSICAL_NOTES\n"
+"LngText.text"
+msgid "notes3"
+msgstr ""
+
+#. 🔾 (U+1F53E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_RIGHT_SHADOWED_WHITE_CIRCLE\n"
+"LngText.text"
+msgid "circle3"
+msgstr ""
+
+#. 🎜 (U+1F39C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEAMED_ASCENDING_MUSICAL_NOTES\n"
+"LngText.text"
+msgid "notes4"
+msgstr ""
+
+#. 🕮 (U+1F56E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOOK\n"
+"LngText.text"
+msgid "book"
+msgstr ""
+
+#. 🗛 (U+1F5DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DECREASE_FONT_SIZE_SYMBOL\n"
+"LngText.text"
+msgid "font"
+msgstr ""
+
+#. 🔿 (U+1F53F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UPPER_RIGHT_SHADOWED_WHITE_CIRCLE\n"
+"LngText.text"
+msgid "circle4"
+msgstr ""
+
+#. 🕫 (U+1F56B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BULLHORN\n"
+"LngText.text"
+msgid "bullhorn"
+msgstr ""
+
+#. 🕬 (U+1F56C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BULLHORN_WITH_SOUND_WAVES\n"
+"LngText.text"
+msgid "bullhorn2"
+msgstr ""
+
+#. 🕻 (U+1F57B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_HAND_TELEPHONE_RECEIVER\n"
+"LngText.text"
+msgid "receiver2"
+msgstr ""
+
+#. 🕾 (U+1F57E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_TOUCHTONE_TELEPHONE\n"
+"LngText.text"
+msgid "phone3"
+msgstr ""
+
+#. 🕼 (U+1F57C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TELEPHONE_RECEIVER_WITH_PAGE\n"
+"LngText.text"
+msgid "receiver4"
+msgstr ""
+
+#. 🕽 (U+1F57D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_HAND_TELEPHONE_RECEIVER\n"
+"LngText.text"
+msgid "receiver3"
+msgstr ""
+
+#. 🕿 (U+1F57F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_TOUCHTONE_TELEPHONE\n"
+"LngText.text"
+msgid "phone4"
+msgstr ""
+
+#. 🖚 (U+1F59A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_LEFT_POINTING_INDEX\n"
+"LngText.text"
+msgid "left4"
+msgstr ""
+
+#. 🖏 (U+1F58F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TURNED_OK_HAND_SIGN\n"
+"LngText.text"
+msgid "ok2"
+msgstr ""
+
+#. 🖜 (U+1F59C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_LEFT_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "left5"
+msgstr ""
+
+#. 🗥 (U+1F5E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_BELOW\n"
+"LngText.text"
+msgid "rays2"
+msgstr ""
+
+#. 🖛 (U+1F59B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_RIGHT_POINTING_INDEX\n"
+"LngText.text"
+msgid "right4"
+msgstr ""
+
+#. 🖟 (U+1F59F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_DOWN_POINTING_INDEX\n"
+"LngText.text"
+msgid "down3"
+msgstr ""
+
+#. 🖞 (U+1F59E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_UP_POINTING_INDEX\n"
+"LngText.text"
+msgid "up3"
+msgstr ""
+
+#. 🌢 (U+1F322), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_DROPLET\n"
+"LngText.text"
+msgid "droplet2"
+msgstr ""
+
+#. 🎘 (U+1F398), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MUSICAL_KEYBOARD_WITH_JACKS\n"
+"LngText.text"
+msgid "synthesizer"
+msgstr ""
+
+#. 🎕 (U+1F395), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOUQUET_OF_FLOWERS\n"
+"LngText.text"
+msgid "bouquet2"
+msgstr ""
+
+#. 🎔 (U+1F394), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEART_WITH_TIP_ON_THE_LEFT\n"
+"LngText.text"
+msgid "heart2"
+msgstr ""
+
+#. 🕱 (U+1F571), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_SKULL_AND_CROSSBONES\n"
+"LngText.text"
+msgid "pirate"
+msgstr ""
+
+#. 🖀 (U+1F580), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TELEPHONE_ON_TOP_OF_MODEM\n"
+"LngText.text"
+msgid "modem"
+msgstr ""
+
+#. 🕲 (U+1F572), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NO_PIRACY\n"
+"LngText.text"
+msgid "no piracy"
+msgstr ""
+
+#. 🕅 (U+1F545), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SYMBOL_FOR_MARKS_CHAPTER\n"
+"LngText.text"
+msgid "marks chapter"
+msgstr ""
+
+#. 🕈 (U+1F548), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CELTIC_CROSS\n"
+"LngText.text"
+msgid "Celtic cross"
+msgstr ""
+
+#. 🖗 (U+1F597), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_DOWN_POINTING_LEFT_HAND_INDEX\n"
+"LngText.text"
+msgid "down4"
+msgstr ""
+
+#. 🖆 (U+1F586), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEN_OVER_STAMPED_ENVELOPE\n"
+"LngText.text"
+msgid "envelope4"
+msgstr ""
+
+#. 🖃 (U+1F583), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STAMPED_ENVELOPE\n"
+"LngText.text"
+msgid "envelope2"
+msgstr ""
+
+#. 🗤 (U+1F5E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_ABOVE\n"
+"LngText.text"
+msgid "rays3"
+msgstr ""
+
+#. 🖉 (U+1F589), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_PENCIL\n"
+"LngText.text"
+msgid "pencil4"
+msgstr ""
+
+#. 🖂 (U+1F582), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BACK_OF_ENVELOPE\n"
+"LngText.text"
+msgid "envelope3"
+msgstr ""
+
+#. 🖈 (U+1F588), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_PUSHPIN\n"
+"LngText.text"
+msgid "tack"
+msgstr ""
+
+#. 🖄 (U+1F584), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ENVELOPE_WITH_LIGHTNING\n"
+"LngText.text"
+msgid "envelope5"
+msgstr ""
+
+#. 🖁 (U+1F581), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLAMSHELL_MOBILE_PHONE\n"
+"LngText.text"
+msgid "mobile2"
+msgstr ""
+
+#. 🖅 (U+1F585), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FLYING_ENVELOPE\n"
+"LngText.text"
+msgid "envelope6"
+msgstr ""
+
+#. 🖘 (U+1F598), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_LEFT_POINTING_INDEX\n"
+"LngText.text"
+msgid "left6"
+msgstr ""
+
+#. 🖙 (U+1F599), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_RIGHT_POINTING_INDEX\n"
+"LngText.text"
+msgid "right5"
+msgstr ""
+
+#. 🗖 (U+1F5D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAXIMIZE\n"
+"LngText.text"
+msgid "maximize"
+msgstr ""
+
+#. 🗗 (U+1F5D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OVERLAP\n"
+"LngText.text"
+msgid "overlap"
+msgstr ""
+
+#. 🗏 (U+1F5CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGE\n"
+"LngText.text"
+msgid "page2"
+msgstr ""
+
+#. 🗐 (U+1F5D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGES\n"
+"LngText.text"
+msgid "pages"
+msgstr ""
+
+#. 🗘 (U+1F5D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOCKWISE_RIGHT_AND_LEFT_SEMICIRCLE_ARROWS\n"
+"LngText.text"
+msgid "arrows"
+msgstr ""
+
+#. 🗚 (U+1F5DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"INCREASE_FONT_SIZE_SYMBOL\n"
+"LngText.text"
+msgid "font2"
+msgstr ""
+
+#. 🗕 (U+1F5D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MINIMIZE\n"
+"LngText.text"
+msgid "minimize"
+msgstr ""
+
+#. 🗙 (U+1F5D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANCELLATION_X\n"
+"LngText.text"
+msgid "cancel"
+msgstr ""
+
+#. 🗔 (U+1F5D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESKTOP_WINDOW\n"
+"LngText.text"
+msgid "window"
+msgstr ""
+
+#. 🗌 (U+1F5CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_PAGE\n"
+"LngText.text"
+msgid "empty page"
+msgstr ""
+
+#. 🗋 (U+1F5CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_DOCUMENT\n"
+"LngText.text"
+msgid "empty document"
+msgstr ""
+
+#. 🗍 (U+1F5CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_PAGES\n"
+"LngText.text"
+msgid "empty pages"
+msgstr ""
+
+#. 🗎 (U+1F5CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT\n"
+"LngText.text"
+msgid "document"
+msgstr ""
+
+#. 🗆 (U+1F5C6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE_PAGE\n"
+"LngText.text"
+msgid "empty note page"
+msgstr ""
+
+#. 🗊 (U+1F5CA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE_PAD\n"
+"LngText.text"
+msgid "note pad"
+msgstr ""
+
+#. 🗈 (U+1F5C8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE\n"
+"LngText.text"
+msgid "note3"
+msgstr ""
+
+#. 🗇 (U+1F5C7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE_PAD\n"
+"LngText.text"
+msgid "empty note pad"
+msgstr ""
+
+#. 🗉 (U+1F5C9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE_PAGE\n"
+"LngText.text"
+msgid "note page"
+msgstr ""
+
+#. 🖸 (U+1F5B8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OPTICAL_DISC_ICON\n"
+"LngText.text"
+msgid "optical disc"
+msgstr ""
+
+#. 🗀 (U+1F5C0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOLDER\n"
+"LngText.text"
+msgid "folder3"
+msgstr ""
+
+#. 🖝 (U+1F59D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_RIGHT_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "right6"
+msgstr ""
+
+#. 🗁 (U+1F5C1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OPEN_FOLDER\n"
+"LngText.text"
+msgid "folder4"
+msgstr ""
+
+#. 🗅 (U+1F5C5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE\n"
+"LngText.text"
+msgid "empty note"
+msgstr ""
+
+#. 🖿 (U+1F5BF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_FOLDER\n"
+"LngText.text"
+msgid "folder5"
+msgstr ""
+
+#. 🖾 (U+1F5BE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_AN_X\n"
+"LngText.text"
+msgid "frame"
+msgstr ""
+
+#. 🖽 (U+1F5BD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_TILES\n"
+"LngText.text"
+msgid "frame2"
+msgstr ""
+
+#. 🖹 (U+1F5B9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_TEXT\n"
+"LngText.text"
+msgid "document2"
+msgstr ""
+
+#. 🖻 (U+1F5BB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_PICTURE\n"
+"LngText.text"
+msgid "document3"
+msgstr ""
+
+#. 🖺 (U+1F5BA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_TEXT_AND_PICTURE\n"
+"LngText.text"
+msgid "document4"
+msgstr ""
+
+#. 🖶 (U+1F5B6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINTER_ICON\n"
+"LngText.text"
+msgid "printer2"
+msgstr ""
+
+#. 🖷 (U+1F5B7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FAX_ICON\n"
+"LngText.text"
+msgid "fax2"
+msgstr ""
+
+#. 🖰 (U+1F5B0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TWO_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse4"
+msgstr ""
+
+#. 🖳 (U+1F5B3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLD_PERSONAL_COMPUTER\n"
+"LngText.text"
+msgid "pc"
+msgstr ""
+
+#. 🖵 (U+1F5B5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCREEN\n"
+"LngText.text"
+msgid "screen"
+msgstr ""
+
+#. 🖯 (U+1F5AF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ONE_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse5"
+msgstr ""
+
+#. 🖴 (U+1F5B4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HARD_DISK\n"
+"LngText.text"
+msgid "hard disk"
+msgstr ""
+
+#. 🖩 (U+1F5A9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POCKET_CALCULATOR\n"
+"LngText.text"
+msgid "calculator"
+msgstr ""
+
+#. 🖭 (U+1F5AD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TAPE_CARTRIDGE\n"
+"LngText.text"
+msgid "cartridge"
+msgstr ""
+
+#. 🖬 (U+1F5AC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SOFT_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy2"
+msgstr ""
+
+#. 🖫 (U+1F5AB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_HARD_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy3"
+msgstr ""
+
+#. 🖮 (U+1F5AE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WIRED_KEYBOARD\n"
+"LngText.text"
+msgid "keyboard2"
+msgstr ""
+
+#. 🖔 (U+1F594), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_VICTORY_HAND\n"
+"LngText.text"
+msgid "victory2"
+msgstr ""
+
+#. 🖧 (U+1F5A7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_NETWORKED_COMPUTERS\n"
+"LngText.text"
+msgid "network"
+msgstr ""
+
+#. 🖪 (U+1F5AA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_HARD_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy4"
+msgstr ""
+
+#. 🗢 (U+1F5E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIPS\n"
+"LngText.text"
+msgid "lips"
+msgstr ""
+
+#. 🖦 (U+1F5A6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KEYBOARD_AND_MOUSE\n"
+"LngText.text"
+msgid "keyboard3"
+msgstr ""
+
+#. 🖣 (U+1F5A3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_DOWN_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "down5"
+msgstr ""
+
+#. 🖡 (U+1F5A1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_DOWN_POINTING_INDEX\n"
+"LngText.text"
+msgid "down6"
+msgstr ""
+
+#. 📾 (U+1F4FE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PORTABLE_STEREO\n"
+"LngText.text"
+msgid "stereo"
+msgstr ""
+
+#. 🏶 (U+1F3F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_ROSETTE\n"
+"LngText.text"
+msgid "rosette2"
+msgstr ""
+
+#. 🏲 (U+1F3F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_PENNANT\n"
+"LngText.text"
+msgid "pennant"
+msgstr ""
+
+#. 🖠 (U+1F5A0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_UP_POINTING_INDEX\n"
+"LngText.text"
+msgid "up4"
+msgstr ""
+
+#. 🖢 (U+1F5A2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_UP_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "up5"
+msgstr ""
+
+#. 🏱 (U+1F3F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_PENNANT\n"
+"LngText.text"
+msgid "pennant2"
+msgstr ""
+
+#. 🕄 (U+1F544), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTCHED_RIGHT_SEMICIRCLE_WITH_THREE_DOTS\n"
+"LngText.text"
+msgid "feast2"
+msgstr ""
+
+#. 🖓 (U+1F593), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_THUMBS_DOWN_SIGN\n"
+"LngText.text"
+msgid "no2"
+msgstr ""
+
+#. 🖑 (U+1F591), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_RAISED_HAND_WITH_FINGERS_SPLAYED\n"
+"LngText.text"
+msgid "hand3"
+msgstr ""
+
+#. 🖒 (U+1F592), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_THUMBS_UP_SIGN\n"
+"LngText.text"
+msgid "yes2"
+msgstr ""
+
+#. 🕩 (U+1F569), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER_WITH_ONE_SOUND_WAVE\n"
+"LngText.text"
+msgid "speaker2"
+msgstr ""
+
+#. 🕆 (U+1F546), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_LATIN_CROSS\n"
+"LngText.text"
+msgid "Latin cross2"
+msgstr ""
+
+#. 🕇 (U+1F547), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEAVY_LATIN_CROSS\n"
+"LngText.text"
+msgid "Latin cross3"
+msgstr ""
+
+#. 🕨 (U+1F568), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER\n"
+"LngText.text"
+msgid "speaker3"
+msgstr ""
+
+#. 🕭 (U+1F56D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RINGING_BELL\n"
+"LngText.text"
+msgid "bell3"
+msgstr ""
+
+#. 🌣 (U+1F323), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN\n"
+"LngText.text"
+msgid "sun2"
+msgstr ""
+
+#. 🛇 (U+1F6C7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PROHIBITED_SIGN\n"
+"LngText.text"
+msgid "prohibited"
+msgstr ""
+
+#. 🛆 (U+1F6C6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TRIANGLE_WITH_ROUNDED_CORNERS\n"
+"LngText.text"
+msgid "triangle3"
+msgstr ""
+
+#. 🗫 (U+1F5EB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_SPEECH_BUBBLES\n"
+"LngText.text"
+msgid "bubble3"
+msgstr ""
+
+#. 🕪 (U+1F56A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER_WITH_THREE_SOUND_WAVES\n"
+"LngText.text"
+msgid "speaker4"
+msgstr ""
+
+#. 🗮 (U+1F5EE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_ANGER_BUBBLE\n"
+"LngText.text"
+msgid "bubble8"
+msgstr ""
+
+#. 🗧 (U+1F5E7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_RIGHT\n"
+"LngText.text"
+msgid "rays4"
+msgstr ""
+
+#. 🗲 (U+1F5F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHTNING_MOOD\n"
+"LngText.text"
+msgid "lightning2"
+msgstr ""
+
+#. 🗰 (U+1F5F0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOOD_BUBBLE\n"
+"LngText.text"
+msgid "bubble9"
+msgstr ""
+
+#. 🗹 (U+1F5F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BOLD_CHECK\n"
+"LngText.text"
+msgid "checkbox5"
+msgstr ""
+
+#. 🗴 (U+1F5F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_SCRIPT_X\n"
+"LngText.text"
+msgid "check mark4"
+msgstr ""
+
+#. 🗪 (U+1F5EA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TWO_SPEECH_BUBBLES\n"
+"LngText.text"
+msgid "bubble2"
+msgstr ""
+
+#. 🗶 (U+1F5F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOLD_SCRIPT_X\n"
+"LngText.text"
+msgid "x4"
+msgstr ""
+
+#. 🗩 (U+1F5E9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEECH_BUBBLE\n"
+"LngText.text"
+msgid "bubble10"
+msgstr ""
+
+#. 🗵 (U+1F5F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_SCRIPT_X\n"
+"LngText.text"
+msgid "checkbox6"
+msgstr ""
+
+#. 🗸 (U+1F5F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHT_CHECK_MARK\n"
+"LngText.text"
+msgid "check mark5"
+msgstr ""
+
+#. 🤗 (U+1F917), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HUGGING_FACE\n"
+"LngText.text"
+msgid "hugging"
+msgstr ""
+
+#. 🤔 (U+1F914), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THINKING_FACE\n"
+"LngText.text"
+msgid "thinking"
+msgstr ""
+
+#. 🙄 (U+1F644), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_ROLLING_EYES\n"
+"LngText.text"
+msgid "eye roll"
+msgstr ""
+
+#. 🤐 (U+1F910), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZIPPER-MOUTH_FACE\n"
+"LngText.text"
+msgid "zipper"
+msgstr ""
+
+#. 🙃 (U+1F643), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UPSIDE-DOWN_FACE\n"
+"LngText.text"
+msgid "upside-down"
+msgstr ""
+
+#. 🤑 (U+1F911), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MONEY-MOUTH_FACE\n"
+"LngText.text"
+msgid "money3"
+msgstr ""
+
+#. 🤒 (U+1F912), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_THERMOMETER\n"
+"LngText.text"
+msgid "thermometer2"
+msgstr ""
+
+#. 🤕 (U+1F915), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_HEAD-BANDAGE\n"
+"LngText.text"
+msgid "bandage"
+msgstr ""
+
+#. 🤓 (U+1F913), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NERD_FACE\n"
+"LngText.text"
+msgid "nerd"
+msgstr ""
+
+#. 🤖 (U+1F916), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROBOT_FACE\n"
+"LngText.text"
+msgid "robot"
+msgstr ""
+
+#. 🏻 (U+1F3FB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-1-2\n"
+"LngText.text"
+msgid "skin1"
+msgstr ""
+
+#. 🏼 (U+1F3FC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-3\n"
+"LngText.text"
+msgid "skin2"
+msgstr ""
+
+#. 🏽 (U+1F3FD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-4\n"
+"LngText.text"
+msgid "skin3"
+msgstr ""
+
+#. 🏾 (U+1F3FE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-5\n"
+"LngText.text"
+msgid "skin4"
+msgstr ""
+
+#. 🏿 (U+1F3FF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-6\n"
+"LngText.text"
+msgid "skin5"
+msgstr ""
+
+#. 🤘 (U+1F918), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIGN_OF_THE_HORNS\n"
+"LngText.text"
+msgid "horns"
+msgstr ""
+
+#. 📿 (U+1F4FF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRAYER_BEADS\n"
+"LngText.text"
+msgid "beads"
+msgstr ""
+
+#. 🦁 (U+1F981), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LION_FACE\n"
+"LngText.text"
+msgid "lion"
+msgstr ""
+
+#. 🦄 (U+1F984), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UNICORN_FACE\n"
+"LngText.text"
+msgid "unicorn"
+msgstr ""
+
+#. 🦃 (U+1F983), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TURKEY\n"
+"LngText.text"
+msgid "turkey"
+msgstr ""
+
+#. 🦀 (U+1F980), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRAB\n"
+"LngText.text"
+msgid "crab"
+msgstr ""
+
+#. 🦂 (U+1F982), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCORPION\n"
+"LngText.text"
+msgid "scorpion"
+msgstr ""
+
+#. 🧀 (U+1F9C0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHEESE_WEDGE\n"
+"LngText.text"
+msgid "cheese"
+msgstr ""
+
+#. 🌭 (U+1F32D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOT_DOG\n"
+"LngText.text"
+msgid "hot dog"
+msgstr ""
+
+#. 🌮 (U+1F32E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TACO\n"
+"LngText.text"
+msgid "taco"
+msgstr ""
+
+#. 🌯 (U+1F32F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BURRITO\n"
+"LngText.text"
+msgid "burrito"
+msgstr ""
+
+#. 🍿 (U+1F37F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POPCORN\n"
+"LngText.text"
+msgid "popcorn"
+msgstr ""
+
+#. 🍾 (U+1F37E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOTTLE_WITH_POPPING_CORK\n"
+"LngText.text"
+msgid "party4"
+msgstr ""
+
+#. 🏺 (U+1F3FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AMPHORA\n"
+"LngText.text"
+msgid "amphora"
+msgstr ""
+
+#. 🕌 (U+1F54C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOSQUE\n"
+"LngText.text"
+msgid "mosque"
+msgstr ""
+
+#. 🕍 (U+1F54D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SYNAGOGUE\n"
+"LngText.text"
+msgid "synagogue"
+msgstr ""
+
+#. 🕋 (U+1F54B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KAABA\n"
+"LngText.text"
+msgid "Kaaba"
+msgstr ""
+
+#. 🏐 (U+1F3D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"VOLLEYBALL\n"
+"LngText.text"
+msgid "volleyball"
+msgstr ""
+
+#. 🏏 (U+1F3CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRICKET_BAT_AND_BALL\n"
+"LngText.text"
+msgid "cricket"
+msgstr ""
+
+#. 🏑 (U+1F3D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FIELD_HOCKEY_STICK_AND_BALL\n"
+"LngText.text"
+msgid "hockey2"
+msgstr ""
+
+#. 🏒 (U+1F3D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ICE_HOCKEY_STICK_AND_PUCK\n"
+"LngText.text"
+msgid "hockey"
+msgstr ""
+
+#. 🏓 (U+1F3D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TABLE_TENNIS_PADDLE_AND_BALL\n"
+"LngText.text"
+msgid "ping pong"
+msgstr ""
+
+#. 🏸 (U+1F3F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BADMINTON_RACQUET_AND_SHUTTLECOCK\n"
+"LngText.text"
+msgid "badminton"
+msgstr ""
+
+#. 🏹 (U+1F3F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOW_AND_ARROW\n"
+"LngText.text"
+msgid "bow"
+msgstr ""
+
+#. 🛐 (U+1F6D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PLACE_OF_WORSHIP\n"
+"LngText.text"
+msgid "worship"
+msgstr ""
+
+#. 🕎 (U+1F54E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MENORAH_WITH_NINE_BRANCHES\n"
+"LngText.text"
+msgid "menorah"
+msgstr ""
+
+#. 🤣 (U+1F923), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROLLING_ON_THE_FLOOR_LAUGHING\n"
+"LngText.text"
+msgid "lol"
+msgstr ""
+
+#. 🤤 (U+1F924), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DROOLING_FACE\n"
+"LngText.text"
+msgid "drool"
+msgstr ""
+
+#. 🤢 (U+1F922), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NAUSEATED_FACE\n"
+"LngText.text"
+msgid "nausea"
+msgstr ""
+
+#. 🤧 (U+1F927), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SNEEZING_FACE\n"
+"LngText.text"
+msgid "sneeze"
+msgstr ""
+
+#. 🤠 (U+1F920), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COWBOY_HAT_FACE\n"
+"LngText.text"
+msgid "cowboy"
+msgstr ""
+
+#. 🤡 (U+1F921), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOWN_FACE\n"
+"LngText.text"
+msgid "clown"
+msgstr ""
+
+#. 🤥 (U+1F925), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LYING_FACE\n"
+"LngText.text"
+msgid "liar"
+msgstr ""
+
+#. 🤴 (U+1F934), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINCE\n"
+"LngText.text"
+msgid "prince"
+msgstr ""
+
+#. 🤵 (U+1F935), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_IN_TUXEDO\n"
+"LngText.text"
+msgid "groom"
+msgstr ""
+
+#. 🤰 (U+1F930), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PREGNANT_WOMAN\n"
+"LngText.text"
+msgid "pregnant"
+msgstr ""
+
+#. 🤶 (U+1F936), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MRS._CLAUS\n"
+"LngText.text"
+msgid "mrs. claus"
+msgstr ""
+
+#. 🤦 (U+1F926), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_FACEPALMING\n"
+"LngText.text"
+msgid "facepalm"
+msgstr ""
+
+#. 🤷 (U+1F937), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_SHRUGGING\n"
+"LngText.text"
+msgid "shrugging"
+msgstr ""
+
+#. 🕺 (U+1F57A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_DANCING\n"
+"LngText.text"
+msgid "dancer2"
+msgstr ""
+
+#. 🤺 (U+1F93A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_FENCING\n"
+"LngText.text"
+msgid "fencer"
+msgstr ""
+
+#. 🤸 (U+1F938), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_CARTWHEELING\n"
+"LngText.text"
+msgid "gymnast"
+msgstr ""
+
+#. 🤼 (U+1F93C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEOPLE_WRESTLING\n"
+"LngText.text"
+msgid "wrestling"
+msgstr ""
+
+#. 🤽 (U+1F93D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_PLAYING_WATER_POLO\n"
+"LngText.text"
+msgid "water polo"
+msgstr ""
+
+#. 🤾 (U+1F93E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_PLAYING_HANDBALL\n"
+"LngText.text"
+msgid "handball"
+msgstr ""
+
+#. 🤹 (U+1F939), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_JUGGLING\n"
+"LngText.text"
+msgid "juggling"
+msgstr ""
+
+#. 🤳 (U+1F933), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SELFIE\n"
+"LngText.text"
+msgid "selfie"
+msgstr ""
+
+#. 🤞 (U+1F91E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CROSSED_FINGERS\n"
+"LngText.text"
+msgid "good luck"
+msgstr ""
+
+#. 🤙 (U+1F919), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CALL_ME_HAND\n"
+"LngText.text"
+msgid "call"
+msgstr ""
+
+#. 🤛 (U+1F91B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT-FACING_FIST\n"
+"LngText.text"
+msgid "fist3"
+msgstr ""
+
+#. 🤜 (U+1F91C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT-FACING_FIST\n"
+"LngText.text"
+msgid "fist4"
+msgstr ""
+
+#. 🤚 (U+1F91A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_BACK_OF_HAND\n"
+"LngText.text"
+msgid "hand4"
+msgstr ""
+
+#. 🤝 (U+1F91D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HANDSHAKE\n"
+"LngText.text"
+msgid "handshake"
+msgstr ""
+
+#. 🖤 (U+1F5A4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_HEART\n"
+"LngText.text"
+msgid "black heart"
+msgstr ""
+
+#. 🦍 (U+1F98D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GORILLA\n"
+"LngText.text"
+msgid "gorilla"
+msgstr ""
+
+#. 🦊 (U+1F98A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOX_FACE\n"
+"LngText.text"
+msgid "fox"
+msgstr ""
+
+#. 🦌 (U+1F98C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DEER\n"
+"LngText.text"
+msgid "deer"
+msgstr ""
+
+#. 🦏 (U+1F98F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RHINOCEROS\n"
+"LngText.text"
+msgid "rhinoceros"
+msgstr ""
+
+#. 🦇 (U+1F987), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BAT\n"
+"LngText.text"
+msgid "bat"
+msgstr ""
+
+#. 🦅 (U+1F985), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EAGLE\n"
+"LngText.text"
+msgid "eagle"
+msgstr ""
+
+#. 🦆 (U+1F986), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DUCK\n"
+"LngText.text"
+msgid "duck"
+msgstr ""
+
+#. 🦉 (U+1F989), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OWL\n"
+"LngText.text"
+msgid "owl"
+msgstr ""
+
+#. 🦎 (U+1F98E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIZARD\n"
+"LngText.text"
+msgid "lizard"
+msgstr ""
+
+#. 🦈 (U+1F988), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHARK\n"
+"LngText.text"
+msgid "shark"
+msgstr ""
+
+#. 🦐 (U+1F990), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHRIMP\n"
+"LngText.text"
+msgid "shrimp"
+msgstr ""
+
+#. 🦑 (U+1F991), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SQUID\n"
+"LngText.text"
+msgid "squid"
+msgstr ""
+
+#. 🦋 (U+1F98B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BUTTERFLY\n"
+"LngText.text"
+msgid "butterfly"
+msgstr ""
+
+#. 🥀 (U+1F940), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WILTED_FLOWER\n"
+"LngText.text"
+msgid "flower2"
+msgstr ""
+
+#. 🥝 (U+1F95D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KIWI_FRUIT\n"
+"LngText.text"
+msgid "kiwi"
+msgstr ""
+
+#. 🥑 (U+1F951), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AVOCADO\n"
+"LngText.text"
+msgid "avocado"
+msgstr ""
+
+#. 🥔 (U+1F954), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POTATO\n"
+"LngText.text"
+msgid "potato"
+msgstr ""
+
+#. 🥕 (U+1F955), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARROT\n"
+"LngText.text"
+msgid "carrot"
+msgstr ""
+
+#. 🥒 (U+1F952), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUCUMBER\n"
+"LngText.text"
+msgid "cucumber"
+msgstr ""
+
+#. 🥜 (U+1F95C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEANUTS\n"
+"LngText.text"
+msgid "peanuts"
+msgstr ""
+
+#. 🥐 (U+1F950), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CROISSANT\n"
+"LngText.text"
+msgid "croissant"
+msgstr ""
+
+#. 🥖 (U+1F956), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BAGUETTE_BREAD\n"
+"LngText.text"
+msgid "bread2"
+msgstr ""
+
+#. 🥞 (U+1F95E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PANCAKES\n"
+"LngText.text"
+msgid "pancakes"
+msgstr ""
+
+#. 🥓 (U+1F953), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BACON\n"
+"LngText.text"
+msgid "bacon"
+msgstr ""
+
+#. 🥙 (U+1F959), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STUFFED_FLATBREAD\n"
+"LngText.text"
+msgid "flatbread"
+msgstr ""
+
+#. 🥚 (U+1F95A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EGG\n"
+"LngText.text"
+msgid "egg"
+msgstr ""
+
+#. 🥘 (U+1F958), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHALLOW_PAN_OF_FOOD\n"
+"LngText.text"
+msgid "food"
+msgstr ""
+
+#. 🥗 (U+1F957), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GREEN_SALAD\n"
+"LngText.text"
+msgid "salad"
+msgstr ""
+
+#. 🥛 (U+1F95B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GLASS_OF_MILK\n"
+"LngText.text"
+msgid "milk"
+msgstr ""
+
+#. 🥂 (U+1F942), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLINKING_GLASSES\n"
+"LngText.text"
+msgid "party3"
+msgstr ""
+
+#. 🥃 (U+1F943), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TUMBLER_GLASS\n"
+"LngText.text"
+msgid "glass3"
+msgstr ""
+
+#. 🥄 (U+1F944), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPOON\n"
+"LngText.text"
+msgid "spoon"
+msgstr ""
+
+#. 🛴 (U+1F6F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCOOTER\n"
+"LngText.text"
+msgid "scooter"
+msgstr ""
+
+#. 🛵 (U+1F6F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTOR_SCOOTER\n"
+"LngText.text"
+msgid "scooter2"
+msgstr ""
+
+#. 🛑 (U+1F6D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OCTAGONAL_SIGN\n"
+"LngText.text"
+msgid "stop"
+msgstr ""
+
+#. 🛶 (U+1F6F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANOE\n"
+"LngText.text"
+msgid "canoe"
+msgstr ""
+
+#. 🥇 (U+1F947), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"1ST_PLACE_MEDAL\n"
+"LngText.text"
+msgid "gold"
+msgstr ""
+
+#. 🥈 (U+1F948), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"2ND_PLACE_MEDAL\n"
+"LngText.text"
+msgid "silver"
+msgstr ""
+
+#. 🥉 (U+1F949), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"3RD_PLACE_MEDAL\n"
+"LngText.text"
+msgid "bronze"
+msgstr ""
+
+#. 🥊 (U+1F94A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOXING_GLOVE\n"
+"LngText.text"
+msgid "boxing"
+msgstr ""
+
+#. 🥋 (U+1F94B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MARTIAL_ARTS_UNIFORM\n"
+"LngText.text"
+msgid "judo"
+msgstr ""
+
+#. 🥅 (U+1F945), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GOAL_NET\n"
+"LngText.text"
+msgid "soccer2"
+msgstr ""
+
+#. 🥁 (U+1F941), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DRUM_WITH_DRUMSTICKS\n"
+"LngText.text"
+msgid "drum2"
+msgstr ""
+
+#. 🛒 (U+1F6D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOPPING_TROLLEY\n"
+"LngText.text"
+msgid "cart"
+msgstr ""
+
+#. 🤩 (U+1F929), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GRINNING_FACE_WITH_STAR_EYES\n"
+"LngText.text"
+msgid "excited"
+msgstr ""
+
+#. 🤨 (U+1F928), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_ONE_EYEBROW_RAISED\n"
+"LngText.text"
+msgid "eyebrow"
+msgstr ""
+
+#. 🤯 (U+1F92F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOCKED_FACE_WITH_EXPLODING_HEAD\n"
+"LngText.text"
+msgid "shocked"
+msgstr ""
+
+#. 🤪 (U+1F92A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GRINNING_FACE_WITH_ONE_LARGE_AND_ONE_SMALL_EYE\n"
+"LngText.text"
+msgid "zany"
+msgstr ""
+
+#. 🤬 (U+1F92C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SERIOUS_FACE_WITH_SYMBOLS_COVERING_MOUTH\n"
+"LngText.text"
+msgid "cursing"
+msgstr ""
+
+#. 🤮 (U+1F92E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_OPEN_MOUTH_VOMITING\n"
+"LngText.text"
+msgid "vomit"
+msgstr ""
+
+#. 🤫 (U+1F92B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_FINGER_COVERING_CLOSED_LIPS\n"
+"LngText.text"
+msgid "hush"
+msgstr ""
+
+#. 🤭 (U+1F92D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SMILING_FACE_WITH_SMILING_EYES_AND_HAND_COVERING_MOUTH\n"
+"LngText.text"
+msgid "smiling4"
+msgstr ""
+
+#. 🧐 (U+1F9D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_MONOCLE\n"
+"LngText.text"
+msgid "monocle"
+msgstr ""
+
+#. 🧒 (U+1F9D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHILD\n"
+"LngText.text"
+msgid "child"
+msgstr ""
+
+#. 🧑 (U+1F9D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ADULT\n"
+"LngText.text"
+msgid "adult"
+msgstr ""
+
+#. 🧓 (U+1F9D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLDER_ADULT\n"
+"LngText.text"
+msgid "old"
+msgstr ""
+
+#. 🧕 (U+1F9D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_WITH_HEADSCARF\n"
+"LngText.text"
+msgid "headscarf"
+msgstr ""
+
+#. 🧔 (U+1F9D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEARDED_PERSON\n"
+"LngText.text"
+msgid "beard"
+msgstr ""
+
+#. 🤱 (U+1F931), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BREAST-FEEDING\n"
+"LngText.text"
+msgid "baby3"
+msgstr ""
+
+#. 🧙 (U+1F9D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAGE\n"
+"LngText.text"
+msgid "mage"
+msgstr ""
+
+#. 🧚 (U+1F9DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FAIRY\n"
+"LngText.text"
+msgid "fairy"
+msgstr ""
+
+#. 🧛 (U+1F9DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"VAMPIRE\n"
+"LngText.text"
+msgid "vampire"
+msgstr ""
+
+#. 🧜 (U+1F9DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MERPERSON\n"
+"LngText.text"
+msgid "merperson"
+msgstr ""
+
+#. 🧝 (U+1F9DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ELF\n"
+"LngText.text"
+msgid "elf"
+msgstr ""
+
+#. 🧞 (U+1F9DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GENIE\n"
+"LngText.text"
+msgid "genie"
+msgstr ""
+
+#. 🧟 (U+1F9DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZOMBIE\n"
+"LngText.text"
+msgid "zombie"
+msgstr ""
+
+#. 🧖 (U+1F9D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_IN_STEAMY_ROOM\n"
+"LngText.text"
+msgid "sauna"
+msgstr ""
+
+#. 🧗 (U+1F9D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_CLIMBING\n"
+"LngText.text"
+msgid "climber"
+msgstr ""
+
+#. 🧘 (U+1F9D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_IN_LOTUS_POSITION\n"
+"LngText.text"
+msgid "yoga"
+msgstr ""
+
+#. 🤟 (U+1F91F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"I_LOVE_YOU_HAND_SIGN\n"
+"LngText.text"
+msgid "love2"
+msgstr ""
+
+#. 🤲 (U+1F932), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PALMS_UP_TOGETHER\n"
+"LngText.text"
+msgid "palm2"
+msgstr ""
+
+#. 🧠 (U+1F9E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BRAIN\n"
+"LngText.text"
+msgid "brain"
+msgstr ""
+
+#. 🧡 (U+1F9E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ORANGE_HEART\n"
+"LngText.text"
+msgid "orange heart"
+msgstr ""
+
+#. 🧣 (U+1F9E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCARF\n"
+"LngText.text"
+msgid "scarf"
+msgstr ""
+
+#. 🧤 (U+1F9E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GLOVES\n"
+"LngText.text"
+msgid "gloves"
+msgstr ""
+
+#. 🧥 (U+1F9E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COAT\n"
+"LngText.text"
+msgid "coat"
+msgstr ""
+
+#. 🧦 (U+1F9E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SOCKS\n"
+"LngText.text"
+msgid "socks"
+msgstr ""
+
+#. 🧢 (U+1F9E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BILLED_CAP\n"
+"LngText.text"
+msgid "cap"
+msgstr ""
+
+#. 🦓 (U+1F993), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZEBRA\n"
+"LngText.text"
+msgid "zebra"
+msgstr ""
+
+#. 🦒 (U+1F992), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GIRAFFE\n"
+"LngText.text"
+msgid "giraffe"
+msgstr ""
+
+#. 🦔 (U+1F994), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEDGEHOG\n"
+"LngText.text"
+msgid "hedgehog"
+msgstr ""
+
+#. 🦕 (U+1F995), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SAUROPOD\n"
+"LngText.text"
+msgid "dinosaur"
+msgstr ""
+
+#. 🦖 (U+1F996), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"T-REX\n"
+"LngText.text"
+msgid "dinosaur2"
+msgstr ""
+
+#. 🦗 (U+1F997), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRICKET\n"
+"LngText.text"
+msgid "cricket2"
+msgstr ""
+
+#. 🥥 (U+1F965), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COCONUT\n"
+"LngText.text"
+msgid "coconut"
+msgstr ""
+
+#. 🥦 (U+1F966), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BROCCOLI\n"
+"LngText.text"
+msgid "broccoli"
+msgstr ""
+
+#. 🥨 (U+1F968), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRETZEL\n"
+"LngText.text"
+msgid "pretzel"
+msgstr ""
+
+#. 🥩 (U+1F969), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUT_OF_MEAT\n"
+"LngText.text"
+msgid "steak"
+msgstr ""
+
+#. 🥪 (U+1F96A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SANDWICH\n"
+"LngText.text"
+msgid "sandwich"
+msgstr ""
+
+#. 🥣 (U+1F963), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOWL_WITH_SPOON\n"
+"LngText.text"
+msgid "bowl"
+msgstr ""
+
+#. 🥫 (U+1F96B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANNED_FOOD\n"
+"LngText.text"
+msgid "can"
+msgstr ""
+
+#. 🥟 (U+1F95F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DUMPLING\n"
+"LngText.text"
+msgid "dumpling"
+msgstr ""
+
+#. 🥠 (U+1F960), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FORTUNE_COOKIE\n"
+"LngText.text"
+msgid "cookie2"
+msgstr ""
+
+#. 🥡 (U+1F961), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TAKEOUT_BOX\n"
+"LngText.text"
+msgid "takeout"
+msgstr ""
+
+#. 🥧 (U+1F967), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PIE\n"
+"LngText.text"
+msgid "pie"
+msgstr ""
+
+#. 🥤 (U+1F964), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUP_WITH_STRAW\n"
+"LngText.text"
+msgid "drink"
+msgstr ""
+
+#. 🥢 (U+1F962), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHOPSTICKS\n"
+"LngText.text"
+msgid "chopsticks"
+msgstr ""
+
+#. 🛸 (U+1F6F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FLYING_SAUCER\n"
+"LngText.text"
+msgid "ufo"
+msgstr ""
+
+#. 🛷 (U+1F6F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLED\n"
+"LngText.text"
+msgid "sled"
+msgstr ""
+
+#. 🥌 (U+1F94C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CURLING_STONE\n"
+"LngText.text"
+msgid "curling"
+msgstr ""
+
+#. ₿ (U+20BF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BITCOIN_SIGN\n"
+"LngText.text"
+msgid "bitcoin"
+msgstr ""
+
#. ½ (U+000BD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
msgctxt ""
diff --git a/source/as/officecfg/registry/data/org/openoffice/Office/UI.po b/source/as/officecfg/registry/data/org/openoffice/Office/UI.po
index 43a470307ff..b26bc8da6af 100644
--- a/source/as/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/as/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ 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: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2016-12-01 12:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Assamese <kde-i18n-doc@kde.org>\n"
@@ -2824,8 +2824,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:Hide\n"
"Label\n"
"value.text"
-msgid "~Hide Sheets"
-msgstr "শ্বিটসমূহ লুকুৱাওক (~H)"
+msgid "~Hide Sheet"
+msgstr ""
#: CalcCommands.xcu
#, fuzzy
@@ -3588,17 +3588,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:EditLinks\n"
"Label\n"
"value.text"
-msgid "Edit Lin~ks..."
-msgstr "সংযোগসমূহ সম্পাদন কৰক (~k)..."
-
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:EditLinks\n"
-"ContextLabel\n"
-"value.text"
-msgid "Lin~ks..."
-msgstr "সংযোগসমূহ (~k)..."
+msgid "Lin~ks to External Files..."
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -6980,16 +6971,6 @@ msgstr "স্লাইড (~e)"
#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Commands..uno:SlideNavigateMenu\n"
-"Label\n"
-"value.text"
-msgid "Navigate"
-msgstr "নেভিগেট"
-
-#: DrawImpressCommands.xcu
-#, fuzzy
-msgctxt ""
-"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:SlideMoveMenu\n"
"Label\n"
"value.text"
@@ -7604,6 +7585,15 @@ msgstr "পৃষ্ঠা সংখ্যা (~P)"
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlideField\n"
+"Label\n"
+"value.text"
+msgid "~Slide Number"
+msgstr ""
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:InsertPageTitleField\n"
"Label\n"
"value.text"
@@ -7613,6 +7603,15 @@ msgstr ""
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlideTitleField\n"
+"Label\n"
+"value.text"
+msgid "Slide Tit~le"
+msgstr ""
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:InsertPagesField\n"
"Label\n"
"value.text"
@@ -7622,6 +7621,15 @@ msgstr "পৃষ্ঠা গণনা (~C)"
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlidesField\n"
+"Label\n"
+"value.text"
+msgid "Slide ~Count"
+msgstr ""
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:ModifyField\n"
"Label\n"
"value.text"
@@ -7844,8 +7852,8 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:ManageLinks\n"
"Label\n"
"value.text"
-msgid "Lin~ks..."
-msgstr "সংযোগসমূহ (~k)..."
+msgid "Lin~ks to External Files..."
+msgstr ""
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7936,7 +7944,7 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:ImportSlideFromFile\n"
"Label\n"
"value.text"
-msgid "Import Slides..."
+msgid "Insert Slide from File..."
msgstr ""
#: DrawImpressCommands.xcu
@@ -9169,6 +9177,15 @@ msgstr "পৃষ্ঠাৰ সংখ্যা (~a)..."
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Popups..uno:InsertSlideNumber\n"
+"Label\n"
+"value.text"
+msgid "S~lide Number..."
+msgstr ""
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:InsertDateAndTime\n"
"Label\n"
"value.text"
@@ -17735,14 +17752,13 @@ msgid "H~alf-width"
msgstr "অৰ্ধ প্ৰস্থ (~a)"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:InsertDoc\n"
"Label\n"
"value.text"
-msgid "Doc~ument..."
-msgstr "দস্তাবেজ (~D)..."
+msgid "Text from File..."
+msgstr ""
#: GenericCommands.xcu
msgctxt ""
@@ -17920,6 +17936,15 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ViewSidebarStyles\n"
+"Label\n"
+"value.text"
+msgid "Styles"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:OutlineRight\n"
"Label\n"
"value.text"
@@ -19568,25 +19593,6 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
-"Label\n"
-"value.text"
-msgid "Charmap"
-msgstr ""
-
-#: GenericCommands.xcu
-#, fuzzy
-msgctxt ""
-"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
-"TooltipLabel\n"
-"value.text"
-msgid "Insert Special Characters"
-msgstr "বিশেষ সংখ্যা ভৰাওক"
-
-#: GenericCommands.xcu
-msgctxt ""
-"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:TransformRotationX\n"
"Label\n"
"value.text"
@@ -20749,6 +20755,34 @@ msgstr "বিশেষ সংখ্যা ভৰাওক"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"Label\n"
+"value.text"
+msgid "Symbol"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"ContextLabel\n"
+"value.text"
+msgid "S~pecial Character..."
+msgstr ""
+
+#: GenericCommands.xcu
+#, fuzzy
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Insert Special Characters"
+msgstr "বিশেষ সংখ্যা ভৰাওক"
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ViewDataSourceBrowser\n"
"Label\n"
"value.text"
@@ -20793,6 +20827,15 @@ msgid "Send via ~Bluetooth..."
msgstr "ব্লুটুথৰ সহায়ত পঠাওক (~B)..."
#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ExportAsMenu\n"
+"Label\n"
+"value.text"
+msgid "~Export As"
+msgstr ""
+
+#: GenericCommands.xcu
#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
@@ -20862,14 +20905,13 @@ msgid "EPUB"
msgstr ""
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportToEPUB\n"
"ContextLabel\n"
"value.text"
-msgid "~Export as EPUB..."
-msgstr "PDF হিচাপে ৰপ্তানী কৰক (~D)..."
+msgid "Export as E~PUB..."
+msgstr ""
#: GenericCommands.xcu
#, fuzzy
@@ -23264,6 +23306,15 @@ msgctxt ""
msgid "~Restart in Safe Mode..."
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:NavigateMenu\n"
+"Label\n"
+"value.text"
+msgid "Navigate"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -25948,8 +25999,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:ShowHiddenParagraphs\n"
"Label\n"
"value.text"
-msgid "~Hidden Paragraphs"
-msgstr "লুকোৱাই থোৱা দফাসমূহ (~H)"
+msgid "Field ~Hidden Paragraphs"
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
@@ -27963,8 +28014,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:LinkDialog\n"
"Label\n"
"value.text"
-msgid "Lin~ks..."
-msgstr "সংযোগসমূহ (~k)..."
+msgid "Lin~ks to External Files..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
@@ -30724,7 +30775,7 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 1&amp;FamilyName:string=NumberingStyles\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 123&amp;FamilyName:string=NumberingStyles\n"
"Label\n"
"value.text"
msgid "Number List"
@@ -30751,10 +30802,64 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 4&amp;FamilyName:string=NumberingStyles\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering ABC&amp;FamilyName:string=NumberingStyles\n"
"Label\n"
"value.text"
-msgid "Roman List"
+msgid "Alphabet Uppercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaListStyle\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Uppercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Alphabet Uppercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering abc&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaLowListStyle\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaLowListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Alphabet Lowercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering IVX&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Roman Uppercase List"
msgstr ""
#: WriterCommands.xcu
@@ -30763,7 +30868,7 @@ msgctxt ""
"..WriterCommands.UserInterface.Popups..uno:RomanListStyle\n"
"Label\n"
"value.text"
-msgid "Roman List"
+msgid "Roman Uppercase List"
msgstr ""
#: WriterCommands.xcu
@@ -30772,7 +30877,34 @@ msgctxt ""
"..WriterCommands.UserInterface.Popups..uno:RomanListStyle\n"
"TooltipLabel\n"
"value.text"
-msgid "Roman List Style"
+msgid "Roman Uppercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering ivx&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Roman Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:RomanLowListStyle\n"
+"Label\n"
+"value.text"
+msgid "Roman Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:RomanLowListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Roman Lowercase List Style"
msgstr ""
#: WriterCommands.xcu
diff --git a/source/as/sd/messages.po b/source/as/sd/messages.po
index 8a5046807a7..361c5d611fa 100644
--- a/source/as/sd/messages.po
+++ b/source/as/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 15:29+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1586,899 +1586,909 @@ msgid "Master Slide"
msgstr ""
#: strings.hrc:287
+msgctxt "STR_MASTERSLIDE_LABEL"
+msgid "Master Slide:"
+msgstr ""
+
+#: strings.hrc:288
#, fuzzy
msgctxt "STR_MASTERPAGE_NAME"
msgid "Master Page"
msgstr "মাস্টাৰ পৃষ্ঠাসমূহ"
-#: strings.hrc:288
+#: strings.hrc:289
+msgctxt "STR_MASTERPAGE_LABEL"
+msgid "Master Page:"
+msgstr ""
+
+#: strings.hrc:290
msgctxt "STR_NOTES"
msgid "(Notes)"
msgstr "(টিপ্পনীবোৰ)"
-#: strings.hrc:289
+#: strings.hrc:291
msgctxt "STR_HANDOUT"
msgid "Handouts"
msgstr "হেণ্ডআউটবোৰ"
-#: strings.hrc:290
+#: strings.hrc:292
msgctxt "STR_PRESOBJ_MPTITLE"
msgid "Click to edit the title text format"
msgstr "শিৰোনাম টেক্সট ফৰমেট সম্পাদনা কৰিবলৈ ক্লিক কৰক"
-#: strings.hrc:291
+#: strings.hrc:293
msgctxt "STR_PRESOBJ_MPOUTLINE"
msgid "Click to edit the outline text format"
msgstr "ৰূপৰেখা টেক্সট ফৰমেট সম্পাদনা কৰিবলৈ ক্লিক কৰক"
-#: strings.hrc:292
+#: strings.hrc:294
msgctxt "STR_PRESOBJ_MPOUTLLAYER2"
msgid "Second Outline Level"
msgstr "দ্বিতীয় ৰূপৰেখা স্তৰ"
-#: strings.hrc:293
+#: strings.hrc:295
msgctxt "STR_PRESOBJ_MPOUTLLAYER3"
msgid "Third Outline Level"
msgstr "তৃতীয় ৰূপৰেখা স্তৰ"
-#: strings.hrc:294
+#: strings.hrc:296
msgctxt "STR_PRESOBJ_MPOUTLLAYER4"
msgid "Fourth Outline Level"
msgstr "চতুর্থ ৰূপৰেখা স্তৰ"
-#: strings.hrc:295
+#: strings.hrc:297
msgctxt "STR_PRESOBJ_MPOUTLLAYER5"
msgid "Fifth Outline Level"
msgstr "পঞ্চম ৰূপৰেখা স্তৰ"
-#: strings.hrc:296
+#: strings.hrc:298
msgctxt "STR_PRESOBJ_MPOUTLLAYER6"
msgid "Sixth Outline Level"
msgstr "ষষ্ঠ ৰূপৰেখা স্তৰ"
-#: strings.hrc:297
+#: strings.hrc:299
msgctxt "STR_PRESOBJ_MPOUTLLAYER7"
msgid "Seventh Outline Level"
msgstr "সপ্তম ৰূপৰেখা স্তৰ"
-#: strings.hrc:298
+#: strings.hrc:300
msgctxt "STR_PRESOBJ_MPNOTESTITLE"
msgid "Click to move the slide"
msgstr "শ্লাইডৰ স্থান পৰিৱর্তন কৰিবলৈ ক্লিক কৰক"
-#: strings.hrc:299
+#: strings.hrc:301
msgctxt "STR_PRESOBJ_MPNOTESTEXT"
msgid "Click to edit the notes format"
msgstr "টিপ্পনীবোৰৰ ফৰমেট সম্পাদনা কৰিবলৈ ক্লিক কৰক"
-#: strings.hrc:300
+#: strings.hrc:302
msgctxt "STR_PRESOBJ_TITLE"
msgid "Click to add Title"
msgstr "শীৰ্ষক যোগ কৰিবলৈ ক্লিক কৰক"
-#: strings.hrc:301
+#: strings.hrc:303
msgctxt "STR_PRESOBJ_OUTLINE"
msgid "Click to add Text"
msgstr "টেক্সট যোগ কৰিবলৈ ক্লিক কৰক"
-#: strings.hrc:302
+#: strings.hrc:304
msgctxt "STR_PRESOBJ_TEXT"
msgid "Click to add Text"
msgstr "টেক্সট যোগ কৰিবলৈ ক্লিক কৰক"
-#: strings.hrc:303
+#: strings.hrc:305
msgctxt "STR_PRESOBJ_NOTESTEXT"
msgid "Click to add Notes"
msgstr "টোকাসমূহ যোগ কৰিবলে ক্লিক কৰক"
-#: strings.hrc:304
+#: strings.hrc:306
msgctxt "STR_PRESOBJ_GRAPHIC"
msgid "Double-click to add an Image"
msgstr "এটা ছবি যোগ কৰিবলে দুবাৰ-ক্লিক কৰক"
-#: strings.hrc:305
+#: strings.hrc:307
msgctxt "STR_PRESOBJ_OBJECT"
msgid "Double-click to add an Object"
msgstr "এটা অবজেক্ট যোগ কৰিবলে দুবাৰ-ক্লিক কৰক"
-#: strings.hrc:306
+#: strings.hrc:308
msgctxt "STR_PRESOBJ_CHART"
msgid "Double-click to add a Chart"
msgstr "এটা চাৰ্ট যোগ কৰিবলে দুবাৰ-ক্লিক কৰক"
-#: strings.hrc:307
+#: strings.hrc:309
msgctxt "STR_PRESOBJ_ORGCHART"
msgid "Double-click to add an Organization Chart"
msgstr "এটা সংঘঠন চাৰ্ট যোগ কৰিবলৈ দুবাৰ-ক্লিক কৰক"
-#: strings.hrc:308
+#: strings.hrc:310
msgctxt "STR_PRESOBJ_TABLE"
msgid "Double-click to add a Spreadsheet"
msgstr "এটা স্প্ৰেডশ্বীট যোগ কৰিবলৈ দুবাৰ ক্লিক কৰক"
-#: strings.hrc:309
+#: strings.hrc:311
msgctxt "STR_LAYOUT_DEFAULT_NAME"
msgid "Default"
msgstr "ডিফল্ট"
-#: strings.hrc:310
+#: strings.hrc:312
msgctxt "STR_LAYOUT_DEFAULT_TITLE_NAME"
msgid "Title"
msgstr "শিৰোনাম"
-#: strings.hrc:311
+#: strings.hrc:313
msgctxt "STR_STANDARD_STYLESHEET_NAME"
msgid "Default"
msgstr "ডিফল্ট"
-#: strings.hrc:312
+#: strings.hrc:314
msgctxt "STR_UNDO_MOVEPAGES"
msgid "Move slides"
msgstr "শ্লাইডবোৰৰ স্থান পৰিৱর্তন কৰক"
-#: strings.hrc:313
+#: strings.hrc:315
msgctxt "STR_POOLSHEET_MEASURE"
msgid "Dimension Line"
msgstr "মাত্রা ৰেখা"
-#: strings.hrc:314
+#: strings.hrc:316
msgctxt "STR_POOLSHEET_OBJNOLINENOFILL"
msgid "Object with no fill and no line"
msgstr "কোনো পূৰ্ণ আৰু কোনো শাৰী নহোৱাকৈ অবজেক্ট"
-#: strings.hrc:315
+#: strings.hrc:317
msgctxt "STR_POOLSHEET_OBJWITHARROW"
msgid "Object with arrow"
msgstr "কাঁড়ৰ সৈতে বস্তু"
-#: strings.hrc:316
+#: strings.hrc:318
msgctxt "STR_POOLSHEET_OBJWITHSHADOW"
msgid "Object with shadow"
msgstr "ছাঁৰ সৈতে বস্তু"
-#: strings.hrc:317
+#: strings.hrc:319
msgctxt "STR_POOLSHEET_OBJWITHOUTFILL"
msgid "Object without fill"
msgstr "পূর্ণ নকৰা বস্তু"
-#: strings.hrc:318
+#: strings.hrc:320
msgctxt "STR_POOLSHEET_TEXT"
msgid "Text"
msgstr "টেক্সট"
-#: strings.hrc:319
+#: strings.hrc:321
msgctxt "STR_POOLSHEET_TEXTBODY"
msgid "Text body"
msgstr "টেক্সটৰ বডি"
-#: strings.hrc:320
+#: strings.hrc:322
msgctxt "STR_POOLSHEET_TEXTBODY_JUSTIFY"
msgid "Text body justified"
msgstr "টেক্সটৰ বডি নায্য প্ৰতিপন্ন কৰা হ'ল"
-#: strings.hrc:321
+#: strings.hrc:323
msgctxt "STR_POOLSHEET_TEXTBODY_INDENT"
msgid "First line indent"
msgstr "প্রথম ৰেখা ইণ্ডেণ্ট"
-#: strings.hrc:322
+#: strings.hrc:324
msgctxt "STR_POOLSHEET_TITLE"
msgid "Title"
msgstr "শিৰোনাম"
-#: strings.hrc:323
+#: strings.hrc:325
msgctxt "STR_POOLSHEET_TITLE1"
msgid "Title1"
msgstr "শিৰোনাম 1"
-#: strings.hrc:324
+#: strings.hrc:326
msgctxt "STR_POOLSHEET_TITLE2"
msgid "Title2"
msgstr "শিৰোনাম 2"
-#: strings.hrc:325
+#: strings.hrc:327
msgctxt "STR_POOLSHEET_HEADLINE"
msgid "Heading"
msgstr "শিৰোনাম"
-#: strings.hrc:326
+#: strings.hrc:328
msgctxt "STR_POOLSHEET_HEADLINE1"
msgid "Heading1"
msgstr "শিৰোনাম1"
-#: strings.hrc:327
+#: strings.hrc:329
msgctxt "STR_POOLSHEET_HEADLINE2"
msgid "Heading2"
msgstr "শিৰোনাম 2"
-#: strings.hrc:328
+#: strings.hrc:330
msgctxt "STR_PSEUDOSHEET_TITLE"
msgid "Title"
msgstr "শিৰোনাম"
-#: strings.hrc:329
+#: strings.hrc:331
msgctxt "STR_PSEUDOSHEET_SUBTITLE"
msgid "Subtitle"
msgstr "উপশিৰোনাম"
-#: strings.hrc:330
+#: strings.hrc:332
msgctxt "STR_PSEUDOSHEET_OUTLINE"
msgid "Outline"
msgstr "ৰূপৰেখা"
-#: strings.hrc:331
+#: strings.hrc:333
msgctxt "STR_PSEUDOSHEET_BACKGROUNDOBJECTS"
msgid "Background objects"
msgstr "পৃষ্ঠভূমিৰ বস্তুবোৰ"
-#: strings.hrc:332
+#: strings.hrc:334
msgctxt "STR_PSEUDOSHEET_BACKGROUND"
msgid "Background"
msgstr "পৃষ্ঠভূমি"
-#: strings.hrc:333
+#: strings.hrc:335
msgctxt "STR_PSEUDOSHEET_NOTES"
msgid "Notes"
msgstr "টিপ্পনীবোৰ"
-#: strings.hrc:334
+#: strings.hrc:336
msgctxt "STR_POWERPOINT_IMPORT"
msgid "PowerPoint Import"
msgstr "পাৱাৰ পইণ্ট আমদানি"
-#: strings.hrc:335
+#: strings.hrc:337
msgctxt "STR_SAVE_DOC"
msgid "Save Document"
msgstr "ডকুমেন্ট ছেভ কৰক"
-#: strings.hrc:336
+#: strings.hrc:338
msgctxt "STR_POOLSHEET_BANDED_CELL"
msgid "Banding cell"
msgstr "কক্ষ"
-#: strings.hrc:337
+#: strings.hrc:339
msgctxt "STR_POOLSHEET_HEADER"
msgid "Header"
msgstr "হেডাৰ"
-#: strings.hrc:338
+#: strings.hrc:340
msgctxt "STR_POOLSHEET_TOTAL"
msgid "Total line"
msgstr "ৰেখা"
-#: strings.hrc:339
+#: strings.hrc:341
msgctxt "STR_POOLSHEET_FIRST_COLUMN"
msgid "First column"
msgstr "লেবেল হিচাপে প্ৰথম শাৰী"
-#: strings.hrc:340
+#: strings.hrc:342
msgctxt "STR_POOLSHEET_LAST_COLUMN"
msgid "Last column"
msgstr "স্তম্ভ"
-#: strings.hrc:341
+#: strings.hrc:343
msgctxt "STR_ENTER_PIN"
msgid "Enter PIN:"
msgstr "PIN সুমুৱাওক:"
-#: strings.hrc:342
+#: strings.hrc:344
msgctxt "STR_DEAUTHORISE_CLIENT"
msgid "Remove client authorisation"
msgstr ""
-#: strings.hrc:343
+#: strings.hrc:345
msgctxt "STR_SHRINK_FONT_SIZE"
msgid "Shrink font size"
msgstr ""
-#: strings.hrc:344
+#: strings.hrc:346
msgctxt "STR_GROW_FONT_SIZE"
msgid "Grow font size"
msgstr ""
#. Names and descriptions of the Draw/Impress accessibility views
#. ==============================================================
-#: strings.hrc:349
+#: strings.hrc:351
msgctxt "SID_SD_A11Y_D_DRAWVIEW_N"
msgid "Drawing View"
msgstr "ড্ৰয়িং দৃশ্য"
-#: strings.hrc:350
+#: strings.hrc:352
msgctxt "SID_SD_A11Y_D_DRAWVIEW_D"
msgid "This is where you create and edit drawings."
msgstr "এইখিনিতেই আপুনি ড্ৰয়িংবোৰ সৃষ্টি আৰু সম্পাদনা কৰে."
-#: strings.hrc:351
+#: strings.hrc:353
msgctxt "SID_SD_A11Y_I_DRAWVIEW_N"
msgid "Drawing View"
msgstr "ড্ৰয়িং দৃশ্য"
-#: strings.hrc:352
+#: strings.hrc:354
msgctxt "SID_SD_A11Y_I_DRAWVIEW_D"
msgid "This is where you create and edit slides."
msgstr "এইখিনিতেই আপুনি শ্লাইডবোৰ সৃষ্টি আৰু সম্পাদনা কৰে."
-#: strings.hrc:353
+#: strings.hrc:355
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_N"
msgid "Outline View"
msgstr "ৰূপৰেখা দৃশ্য"
-#: strings.hrc:354
+#: strings.hrc:356
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_D"
msgid "This is where you enter or edit text in list form."
msgstr "এইটোৱেই য'ত আপুনি টেক্সট তালিকাৰ ৰূপত ভৰায় বা সম্পাদনা কৰে।"
-#: strings.hrc:355
+#: strings.hrc:357
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_N"
msgid "Slides View"
msgstr "শ্লাইডবোৰৰ দৰ্শন"
-#: strings.hrc:356
+#: strings.hrc:358
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_D"
msgid "This is where you sort slides."
msgstr "এইখিনিতেই আপুনি শ্লাইডবোৰৰ বৰ্গীকৰণ কৰে."
-#: strings.hrc:357
+#: strings.hrc:359
msgctxt "SID_SD_A11Y_I_NOTESVIEW_N"
msgid "Notes View"
msgstr "টিপ্পনী দৃশ্য"
-#: strings.hrc:358
+#: strings.hrc:360
msgctxt "SID_SD_A11Y_I_NOTESVIEW_D"
msgid "This is where you enter and view notes."
msgstr "এইখিনিতেই আপুনি টিপ্পনীবোৰ ভৰায় আৰু দৰ্শন কৰে."
-#: strings.hrc:359
+#: strings.hrc:361
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_N"
msgid "Handout View"
msgstr "এইখিনিতেই দৃশ্য"
-#: strings.hrc:360
+#: strings.hrc:362
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_D"
msgid "This is where you decide on the layout for handouts."
msgstr "এইখিনিতেই আপুনি হেণ্ডআউটৰ কাৰণে খচৰাৰ ওপৰত সিদ্ধান্ত লয়."
-#: strings.hrc:361
+#: strings.hrc:363
msgctxt "SID_SD_A11Y_P_TITLE_N"
msgid "PresentationTitle"
msgstr "উপস্থাপন শীৰ্ষক"
-#: strings.hrc:362
+#: strings.hrc:364
msgctxt "SID_SD_A11Y_P_OUTLINER_N"
msgid "PresentationOutliner"
msgstr "PresentationOutliner"
-#: strings.hrc:363
+#: strings.hrc:365
msgctxt "SID_SD_A11Y_P_SUBTITLE_N"
msgid "PresentationSubtitle"
msgstr "PresentationSubtitle"
-#: strings.hrc:364
+#: strings.hrc:366
msgctxt "SID_SD_A11Y_P_PAGE_N"
msgid "PresentationPage"
msgstr "PresentationPage"
-#: strings.hrc:365
+#: strings.hrc:367
msgctxt "SID_SD_A11Y_P_NOTES_N"
msgid "PresentationNotes"
msgstr "PresentationNotes"
-#: strings.hrc:366
+#: strings.hrc:368
msgctxt "SID_SD_A11Y_P_HANDOUT_N"
msgid "Handout"
msgstr "হেণ্ডআউট"
-#: strings.hrc:367
+#: strings.hrc:369
msgctxt "SID_SD_A11Y_P_UNKNOWN_N"
msgid "UnknownAccessiblePresentationShape"
msgstr "UnknownAccessiblePresentationShape"
-#: strings.hrc:368
+#: strings.hrc:370
msgctxt "SID_SD_A11Y_P_TITLE_D"
msgid "PresentationTitleShape"
msgstr "PresentationTitleShape"
-#: strings.hrc:369
+#: strings.hrc:371
msgctxt "SID_SD_A11Y_P_OUTLINER_D"
msgid "PresentationOutlinerShape"
msgstr "PresentationOutlinerShape"
-#: strings.hrc:370
+#: strings.hrc:372
msgctxt "SID_SD_A11Y_P_SUBTITLE_D"
msgid "PresentationSubtitleShape"
msgstr "PresentationSubtitleShape"
-#: strings.hrc:371
+#: strings.hrc:373
msgctxt "SID_SD_A11Y_P_PAGE_D"
msgid "PresentationPageShape"
msgstr "PresentationPageShape"
-#: strings.hrc:372
+#: strings.hrc:374
msgctxt "SID_SD_A11Y_P_NOTES_D"
msgid "PresentationNotesShape"
msgstr "PresentationNotesShape"
-#: strings.hrc:373
+#: strings.hrc:375
msgctxt "SID_SD_A11Y_P_HANDOUT_D"
msgid "PresentationHandoutShape"
msgstr "PresentationHandoutShape"
-#: strings.hrc:374
+#: strings.hrc:376
msgctxt "SID_SD_A11Y_P_UNKNOWN_D"
msgid "Unknown accessible presentation shape"
msgstr "অজ্ঞাত অভিগম্য উপস্থাপন আকৃতি"
-#: strings.hrc:375
+#: strings.hrc:377
msgctxt "SID_SD_A11Y_P_FOOTER_N"
msgid "PresentationFooter"
msgstr "PresentationFooter"
-#: strings.hrc:376
+#: strings.hrc:378
msgctxt "SID_SD_A11Y_P_FOOTER_D"
msgid "PresentationFooterShape"
msgstr "PresentationFooterShape"
-#: strings.hrc:377
+#: strings.hrc:379
msgctxt "SID_SD_A11Y_P_HEADER_N"
msgid "PresentationHeader"
msgstr "PresentationHeader"
-#: strings.hrc:378
+#: strings.hrc:380
msgctxt "SID_SD_A11Y_P_HEADER_D"
msgid "PresentationHeaderShape"
msgstr "PresentationHeaderShape"
-#: strings.hrc:379
+#: strings.hrc:381
msgctxt "SID_SD_A11Y_P_DATE_N"
msgid "PresentationDateAndTime"
msgstr "PresentationDateAndTime"
-#: strings.hrc:380
+#: strings.hrc:382
msgctxt "SID_SD_A11Y_P_DATE_D"
msgid "PresentationDateAndTimeShape"
msgstr "PresentationDateAndTimeShape"
-#: strings.hrc:381
+#: strings.hrc:383
msgctxt "SID_SD_A11Y_P_NUMBER_N"
msgid "PresentationPageNumber"
msgstr "PresentationPageNumber"
-#: strings.hrc:382
+#: strings.hrc:384
msgctxt "SID_SD_A11Y_P_NUMBER_D"
msgid "PresentationPageNumberShape"
msgstr "PresentationPageNumberShape"
-#: strings.hrc:383
+#: strings.hrc:385
msgctxt "SID_SD_A11Y_D_PRESENTATION"
msgid "%PRODUCTNAME Presentation"
msgstr "%PRODUCTNAME উপস্থাপন"
-#: strings.hrc:384
+#: strings.hrc:386
msgctxt "SID_SD_A11Y_P_TITLE_N_STYLE"
msgid "Title"
msgstr "শীৰ্ষক"
-#: strings.hrc:385
+#: strings.hrc:387
msgctxt "SID_SD_A11Y_P_OUTLINER_N_STYLE"
msgid "Outliner"
msgstr "আউটলাইনাৰ"
-#: strings.hrc:386
+#: strings.hrc:388
msgctxt "SID_SD_A11Y_P_SUBTITLE_N_STYLE"
msgid "Subtitle"
msgstr "উপশীৰ্ষক"
-#: strings.hrc:387
+#: strings.hrc:389
msgctxt "SID_SD_A11Y_P_PAGE_N_STYLE"
msgid "Page"
msgstr "পৃষ্ঠা"
-#: strings.hrc:388
+#: strings.hrc:390
msgctxt "SID_SD_A11Y_P_NOTES_N_STYLE"
msgid "Notes"
msgstr "টোকাসমূহ"
-#: strings.hrc:389
+#: strings.hrc:391
msgctxt "SID_SD_A11Y_P_HANDOUT_N_STYLE"
msgid "Handout"
msgstr "হেণ্ডআউট"
-#: strings.hrc:390
+#: strings.hrc:392
msgctxt "SID_SD_A11Y_P_UNKNOWN_N_STYLE"
msgid "Unknown Accessible Presentation Shape"
msgstr "অজ্ঞাত অভিগম্য উপস্থাপন আকৃতি"
-#: strings.hrc:391
+#: strings.hrc:393
msgctxt "SID_SD_A11Y_P_FOOTER_N_STYLE"
msgid "Footer"
msgstr "ফুটাৰ"
-#: strings.hrc:392
+#: strings.hrc:394
msgctxt "SID_SD_A11Y_P_HEADER_N_STYLE"
msgid "Header"
msgstr "হেডাৰ"
-#: strings.hrc:393
+#: strings.hrc:395
msgctxt "SID_SD_A11Y_P_DATE_N_STYLE"
msgid "Date"
msgstr "তাৰিখ"
-#: strings.hrc:394
+#: strings.hrc:396
msgctxt "SID_SD_A11Y_P_NUMBER_N_STYLE"
msgid "Number"
msgstr "সংখ্যা"
-#: strings.hrc:395
+#: strings.hrc:397
msgctxt "SID_SD_A11Y_D_PRESENTATION_READONLY"
msgid "(read-only)"
msgstr "(কেৱল-পঢ়িব পৰা)"
-#: strings.hrc:397
+#: strings.hrc:399
msgctxt "STR_CUSTOMANIMATION_REPEAT_NONE"
msgid "none"
msgstr "কোনো নহয়"
-#: strings.hrc:398
+#: strings.hrc:400
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_NEXT_CLICK"
msgid "Until next click"
msgstr "পৰৱৰ্তী ক্লিক পৰ্যন্ত"
-#: strings.hrc:399
+#: strings.hrc:401
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_END_OF_SLIDE"
msgid "Until end of slide"
msgstr "শ্লাইড শেষ নোহোৱা পৰ্যন্ত"
-#: strings.hrc:400
+#: strings.hrc:402
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_DIRECTION_PROPERTY"
msgid "Direction:"
msgstr "দিশ (_D):"
-#: strings.hrc:401
+#: strings.hrc:403
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_ZOOM_PROPERTY"
msgid "Zoom:"
msgstr "জুম"
-#: strings.hrc:402
+#: strings.hrc:404
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SPOKES_PROPERTY"
msgid "Spokes:"
msgstr "স্প'কবোৰ"
-#: strings.hrc:403
+#: strings.hrc:405
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY"
msgid "First color:"
msgstr "লেবেল হিচাপে প্ৰথম শাৰী"
-#: strings.hrc:404
+#: strings.hrc:406
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY"
msgid "Second color:"
msgstr "দ্বিতীয় ৰং"
-#: strings.hrc:405
+#: strings.hrc:407
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY"
msgid "Fill color:"
msgstr "লেবেল হিচাপে প্ৰথম শাৰী"
-#: strings.hrc:406
+#: strings.hrc:408
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_STYLE_PROPERTY"
msgid "Style:"
msgstr "শৈলী:"
-#: strings.hrc:407
+#: strings.hrc:409
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_PROPERTY"
msgid "Font:"
msgstr "ফণ্ট"
-#: strings.hrc:408
+#: strings.hrc:410
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY"
msgid "Font color:"
msgstr "লেবেল হিচাপে প্ৰথম শাৰী"
-#: strings.hrc:409
+#: strings.hrc:411
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_SIZE_STYLE_PROPERTY"
msgid "Style:"
msgstr "শৈলী:"
-#: strings.hrc:410
+#: strings.hrc:412
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY"
msgid "Typeface:"
msgstr "টাইপফেচ"
-#: strings.hrc:411
+#: strings.hrc:413
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY"
msgid "Line color:"
msgstr "ৰেখাৰ ৰং"
-#: strings.hrc:412
+#: strings.hrc:414
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SIZE_PROPERTY"
msgid "Font size:"
msgstr "আখৰৰ আকাৰ"
-#: strings.hrc:413
+#: strings.hrc:415
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SCALE_PROPERTY"
msgid "Size:"
msgstr "আকাৰ"
-#: strings.hrc:414
+#: strings.hrc:416
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_AMOUNT_PROPERTY"
msgid "Amount:"
msgstr "পৰিমাণ"
-#: strings.hrc:415
+#: strings.hrc:417
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_COLOR_PROPERTY"
msgid "Color:"
msgstr "ৰং"
-#: strings.hrc:416
+#: strings.hrc:418
msgctxt "STR_CUSTOMANIMATION_NO_SOUND"
msgid "(No sound)"
msgstr "(ধ্বনি নাই)"
-#: strings.hrc:417
+#: strings.hrc:419
msgctxt "STR_CUSTOMANIMATION_STOP_PREVIOUS_SOUND"
msgid "(Stop previous sound)"
msgstr "(পূৰ্বৱৰ্তী ধ্বনি বন্ধ কৰক)"
-#: strings.hrc:418
+#: strings.hrc:420
msgctxt "STR_CUSTOMANIMATION_BROWSE_SOUND"
msgid "Other sound..."
msgstr "অন্য ধ্বনি..."
-#: strings.hrc:419
+#: strings.hrc:421
msgctxt "STR_CUSTOMANIMATION_SAMPLE"
msgid "Sample"
msgstr "নমুনা"
-#: strings.hrc:420
+#: strings.hrc:422
msgctxt "STR_CUSTOMANIMATION_TRIGGER"
msgid "Trigger"
msgstr "ট্ৰিগাৰ"
-#: strings.hrc:421
+#: strings.hrc:423
msgctxt "STR_CUSTOMANIMATION_LIST_HELPTEXT"
msgid "First select the slide element and then click 'Add...' to add an animation effect."
msgstr "এটা এনিমেশ্বন প্ৰভাৱ যোগ কৰিবলৈ প্ৰথমতে শ্লাইড উপাদান বাছনী কৰক আৰু তাৰ পাছত 'যোগ...' ক্লিক কৰক."
-#: strings.hrc:422
+#: strings.hrc:424
msgctxt "STR_CUSTOMANIMATION_USERPATH"
msgid "User paths"
msgstr "ব্যৱহাৰকাৰী পথসমূহ"
-#: strings.hrc:423
+#: strings.hrc:425
msgctxt "STR_CUSTOMANIMATION_ENTRANCE"
msgid "Entrance: %1"
msgstr ""
-#: strings.hrc:424
+#: strings.hrc:426
msgctxt "STR_CUSTOMANIMATION_EMPHASIS"
msgid "Emphasis: %1"
msgstr ""
-#: strings.hrc:425
+#: strings.hrc:427
msgctxt "STR_CUSTOMANIMATION_EXIT"
msgid "Exit: %1"
msgstr ""
-#: strings.hrc:426
+#: strings.hrc:428
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_MOTION_PATHS"
msgid "Motion Paths: %1"
msgstr "গতিৰ পথবোৰ"
-#: strings.hrc:427
+#: strings.hrc:429
#, fuzzy
msgctxt "STR_SLIDETRANSITION_NONE"
msgid "None"
msgstr "কোনো নহয়"
-#: strings.hrc:429
+#: strings.hrc:431
msgctxt "STR_ANNOTATION_TODAY"
msgid "Today,"
msgstr "Today,"
-#: strings.hrc:430
+#: strings.hrc:432
msgctxt "STR_ANNOTATION_YESTERDAY"
msgid "Yesterday,"
msgstr "Yesterday,"
-#: strings.hrc:431
+#: strings.hrc:433
msgctxt "STR_ANNOTATION_NOAUTHOR"
msgid "(no author)"
msgstr "লেখক"
-#: strings.hrc:432
+#: strings.hrc:434
msgctxt "STR_ANNOTATION_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress reached the end of the presentation. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Impress প্ৰদৰ্শনৰ শেষত আহি পাইছে। আপুনি আৰম্ভণীৰ পৰা চলাব বিচাৰে নে?"
-#: strings.hrc:433
+#: strings.hrc:435
msgctxt "STR_ANNOTATION_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress reached the beginning of the presentation. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Impress প্ৰদৰ্শনৰ আৰম্ভণীত আহি পাইছে। আপুনি শেষৰ পৰা চলাব বিচাৰে নে?"
-#: strings.hrc:434
+#: strings.hrc:436
msgctxt "STR_ANNOTATION_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the end of the document. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Draw দস্তাবেজৰ শেষত আহি পাইছে। আপুনি আৰম্ভনীৰ পৰা চলাব বিচাৰে নে?"
-#: strings.hrc:435
+#: strings.hrc:437
msgctxt "STR_ANNOTATION_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the beginning of the document. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Draw দস্তাবেজৰ আৰম্ভণীত আহি পাইছে। আপুনি শেষৰ পৰা চলাব বিচাৰে নে?"
-#: strings.hrc:436
+#: strings.hrc:438
msgctxt "STR_ANNOTATION_UNDO_INSERT"
msgid "Insert Comment"
msgstr "মন্তব্য সোমাওক"
-#: strings.hrc:437
+#: strings.hrc:439
msgctxt "STR_ANNOTATION_UNDO_DELETE"
msgid "Delete Comment(s)"
msgstr "মন্তব্য(সমূহ) মচি দিয়ক"
-#: strings.hrc:438
+#: strings.hrc:440
msgctxt "STR_ANNOTATION_UNDO_MOVE"
msgid "Move Comment"
msgstr "মন্তব্য সঞ্চলন কৰক"
-#: strings.hrc:439
+#: strings.hrc:441
msgctxt "STR_ANNOTATION_UNDO_EDIT"
msgid "Edit Comment"
msgstr "মন্তব্য সম্পাদন কৰক"
-#: strings.hrc:440
+#: strings.hrc:442
msgctxt "STR_ANNOTATION_REPLY"
msgid "Reply to %1"
msgstr "%1 লে উত্তৰ দিয়ক"
-#: strings.hrc:442
+#: strings.hrc:444
msgctxt "RID_DRAW_MEDIA_TOOLBOX"
msgid "Media Playback"
msgstr "মেডিয়া পুনৰ বজাওক"
-#: strings.hrc:443
+#: strings.hrc:445
msgctxt "RID_DRAW_TABLE_TOOLBOX"
msgid "Table"
msgstr "টেবুল"
-#: strings.hrc:445
+#: strings.hrc:447
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_GROUP_NAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: strings.hrc:446
+#: strings.hrc:448
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PRINT_GROUP"
msgid "Print"
msgstr "প্ৰিন্ট কৰক"
-#: strings.hrc:447
+#: strings.hrc:449
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT"
msgid "Document"
msgstr "দস্তাবেজ"
-#: strings.hrc:448
+#: strings.hrc:450
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE"
msgid "Slides per page"
msgstr "স্লাইড প্ৰতি পৃষ্ঠা"
-#: strings.hrc:449
+#: strings.hrc:451
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER"
msgid "Order"
msgstr "ক্ৰম"
-#: strings.hrc:450
+#: strings.hrc:452
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT"
msgid "~Contents"
msgstr "সমলসমূহ"
-#: strings.hrc:451
+#: strings.hrc:453
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_NAME"
msgid "~Slide name"
msgstr "স্লাইডৰ নাম"
-#: strings.hrc:452
+#: strings.hrc:454
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_IS_PRINT_NAME"
msgid "P~age name"
msgstr "পৃষ্টাৰ নাম"
-#: strings.hrc:453
+#: strings.hrc:455
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_DATE"
msgid "~Date and time"
msgstr "তাৰিখ আৰু সময়"
-#: strings.hrc:454
+#: strings.hrc:456
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_HIDDEN"
msgid "Hidden pages"
msgstr "লুকাই থকা পৃষ্টাসমূহ"
-#: strings.hrc:455
+#: strings.hrc:457
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY"
msgid "Color"
msgstr "ৰং"
-#: strings.hrc:456
+#: strings.hrc:458
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS"
msgid "~Size"
msgstr "আকাৰ"
-#: strings.hrc:457
+#: strings.hrc:459
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE"
msgid "Brochure"
msgstr "পুস্তিকা (_r)"
-#: strings.hrc:458
+#: strings.hrc:460
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_SIDES"
msgid "Page sides"
msgstr "পৃষ্ঠাৰ কাষবোৰ"
-#: strings.hrc:459
+#: strings.hrc:461
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE"
msgid "Include"
msgstr "অন্তর্ভূক্ত কৰক"
-#: strings.hrc:460
+#: strings.hrc:462
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAPER_TRAY"
msgid "~Use only paper tray from printer preferences"
msgstr "প্ৰিন্টাৰ পছন্দসমূহৰ পৰা কেৱল পৃষ্ঠা ট্ৰে ব্যৱহাৰ কৰক (~U)"
-#: strings.hrc:461
+#: strings.hrc:463
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE"
msgid "Print range"
msgstr "মুদ্ৰণৰ শ্ৰেণী"
-#: strings.hrc:463
+#: strings.hrc:465
msgctxt "STR_SAR_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress has searched to the end of the presentation. Do you want to continue at the beginning?"
msgstr "উপস্থাপনটোৰ শেষলৈকে %PRODUCTNAME ইম্প্ৰেছে সন্ধান কৰিছে. আপুনি আৰম্ভণিত সন্ধান অব্যাহত ৰাখিব বিচাৰেনেকি ?"
-#: strings.hrc:464
+#: strings.hrc:466
msgctxt "STR_SAR_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress has searched to the beginning of the presentation. Do you want to continue at the end?"
msgstr "উপস্থাপনটোৰ আৰম্ভণিলৈকে %PRODUCTNAME ইম্প্ৰেছে সন্ধান কৰিছে. আপুনি শেষত সন্ধান অব্যাহত ৰাখিব বিচাৰেনেকি ?"
-#: strings.hrc:465
+#: strings.hrc:467
msgctxt "STR_SAR_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the end of the document. Do you want to continue at the beginning?"
msgstr "দস্তাবেজটোৰ শেষলৈকে %PRODUCTNAME ইম্প্ৰেছে সন্ধান কৰিছে. আপুনি আৰম্ভণিত সন্ধান অব্যাহত ৰাখিব বিচাৰেনেকি ?"
-#: strings.hrc:466
+#: strings.hrc:468
msgctxt "STR_SAR_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the beginning of the document. Do you want to continue at the end?"
msgstr "দস্তাবেজটোৰ আৰম্ভণিলৈকে %PRODUCTNAME ইম্প্ৰেছে সন্ধান কৰিছে. আপুনি শেষত সন্ধান অব্যাহত ৰাখিব বিচাৰেনেকি ?"
-#: strings.hrc:468
+#: strings.hrc:470
#, fuzzy
msgctxt "STR_SD_NONE"
msgid "- None -"
@@ -4710,8 +4720,8 @@ msgstr "দস্তাবেজ ফৰ্মেটিংৰ বাবে প্
#: optimpressgeneralpage.ui:622
msgctxt "optimpressgeneralpage|cbCompatibility"
-msgid "Add _spacing between paragraphs and tables (in current document)"
-msgstr "দফা আৰু টেবুলবোৰৰ মাজত (বৰ্তমানৰ দস্তাবেজত) ব্যৱধান যোগ কৰক (_s)"
+msgid "Add _spacing between paragraphs and tables"
+msgstr ""
#: optimpressgeneralpage.ui:645
msgctxt "optimpressgeneralpage|label1"
@@ -5503,14 +5513,13 @@ msgid "Master Background"
msgstr ""
#: sidebarslidebackground.ui:197
-#, fuzzy
msgctxt "sidebarslidebackground|label4"
-msgid "Orientation: "
-msgstr "অনুস্থাপন"
+msgid "Orientation:"
+msgstr ""
#: sidebarslidebackground.ui:212
msgctxt "sidebarslidebackground|masterslidebutton"
-msgid "Master Slide"
+msgid "Master View"
msgstr ""
#: sidebarslidebackground.ui:226
@@ -5559,10 +5568,9 @@ msgid "Wide"
msgstr "বহল"
#: sidebarslidebackground.ui:267
-#, fuzzy
msgctxt "sidebarslidebackground|labelmargin"
-msgid "Margin: "
-msgstr "সীমা"
+msgid "Margin:"
+msgstr ""
#: sidebarslidebackground.ui:277
#, fuzzy
diff --git a/source/as/sfx2/messages.po b/source/as/sfx2/messages.po
index 8a1d2fc7cc9..fb99c1dc0ec 100644
--- a/source/as/sfx2/messages.po
+++ b/source/as/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -840,28 +840,33 @@ msgctxt "RID_SVXSTR_INCORRECT_PASSWORD"
msgid "Incorrect password"
msgstr "ভুল পাছৱাৰ্ড"
-#: strings.hrc:173
+#: strings.hrc:172
+msgctxt "RID_SVXSTR_GPG_ENCRYPT_FAILURE"
+msgid "OpenPGP key not trusted, damaged, or encryption failure. Please try again."
+msgstr ""
+
+#: strings.hrc:174
msgctxt "STR_PASSWD_MIN_LEN"
msgid "(Minimum $(MINLEN) characters)"
msgstr "(নূন্যতম $(MINLEN) আখৰসমূহ)"
-#: strings.hrc:174
+#: strings.hrc:175
msgctxt "STR_PASSWD_MIN_LEN1"
msgid "(Minimum 1 character)"
msgstr ""
-#: strings.hrc:175
+#: strings.hrc:176
msgctxt "STR_PASSWD_EMPTY"
msgid "(The password can be empty)"
msgstr "(পাছৱাৰ্ড ৰিক্ত হব পাৰে)"
-#: strings.hrc:176
+#: strings.hrc:177
#, fuzzy
msgctxt "STR_MODULENOTINSTALLED"
msgid "The action could not be executed. The %PRODUCTNAME program module needed for this action is currently not installed."
msgstr "কাৰ্যটো কাৰ্যকৰী কৰিব পৰা নগল. এই কাৰ্যটোৰ কাৰণে প্ৰয়োজনীয় %PRODUCTNAME প্ৰগ্ৰেম মডিউলটো বৰ্তমান ইনষ্টল নাই।"
-#: strings.hrc:178
+#: strings.hrc:179
msgctxt "STR_FILTER_NOT_INSTALLED"
msgid ""
"The selected filter $(FILTER) has not been installed.\n"
@@ -870,7 +875,7 @@ msgstr ""
"নিৰ্বাচিত ফিল্টাৰ $(FILTER) টো ইনষ্টল কৰা হোৱা নাই.\n"
"আপুনি এইটো এতিয়াই কৰিবলৈ বিচাৰেনেকি?"
-#: strings.hrc:179
+#: strings.hrc:180
msgctxt "STR_FILTER_CONSULT_SERVICE"
msgid ""
"The selected filter $(FILTER) is not included in your edition.\n"
@@ -879,73 +884,73 @@ msgstr ""
"নিৰ্বাচিত $(FILTER) ফাইলটো আপোনাৰ সম্পাদনাত অন্তৰ্ভুক্ত কৰা হোৱা নাই.\n"
"আমাৰ মুখ্য পৃষ্ঠাত আপুনি নিৰ্দেশবোৰৰ বিষয়ে তথ্য বিচাৰিব পাৰে."
-#: strings.hrc:181
+#: strings.hrc:182
msgctxt "STR_WELCOME_LINE1"
msgid "Welcome to %PRODUCTNAME."
msgstr ""
-#: strings.hrc:182
+#: strings.hrc:183
msgctxt "STR_WELCOME_LINE2"
msgid "Drop a document here or pick an app from the left side to create one."
msgstr ""
-#: strings.hrc:184
+#: strings.hrc:185
msgctxt "STR_SFX_FILEDLG_ACTUALVERSION"
msgid "Current version"
msgstr "বর্তমানৰ সংস্কৰণ"
-#: strings.hrc:185
+#: strings.hrc:186
msgctxt "STR_SFX_EXPLORERFILE_EXPORT"
msgid "Export"
msgstr "ৰপ্তানি"
-#: strings.hrc:186
+#: strings.hrc:187
msgctxt "STR_SFX_EXPLORERFILE_INSERT"
msgid "Insert"
msgstr "ভৰাওক"
-#: strings.hrc:187
+#: strings.hrc:188
msgctxt "STR_SFX_EXPLORERFILE_BUTTONINSERT"
msgid "~Insert"
msgstr "সুমুৱাওক (~I)"
-#: strings.hrc:188
+#: strings.hrc:189
msgctxt "STR_SFX_IMPORT_ALL"
msgid "<All formats>"
msgstr "<All formats>"
-#: strings.hrc:189
+#: strings.hrc:190
msgctxt "STR_PB_SAVEACOPY"
msgid "Save a Copy"
msgstr "এটা কপি সংৰক্ষণ কৰক"
-#: strings.hrc:190
+#: strings.hrc:191
#, fuzzy
msgctxt "STR_PB_COMPAREDOC"
msgid "Compare to"
msgstr "তুলনা #"
-#: strings.hrc:191
+#: strings.hrc:192
msgctxt "STR_PB_MERGEDOC"
msgid "Merge with"
msgstr ""
-#: strings.hrc:193
+#: strings.hrc:194
msgctxt "STR_SFX_NEWOFFICEDOC"
msgid "%PRODUCTNAME document"
msgstr "%PRODUCTNAME দস্তাবেজ"
-#: strings.hrc:194
+#: strings.hrc:195
msgctxt "SFX_ST_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
-#: strings.hrc:195
+#: strings.hrc:196
msgctxt "STR_SFX_REMOVE_PROPERTY"
msgid "Remove Property"
msgstr "বৈশিষ্ট্যবোৰ ছেট কৰক"
-#: strings.hrc:196
+#: strings.hrc:197
#, fuzzy
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
@@ -955,28 +960,28 @@ msgstr ""
"দিয়া মান নিৰ্ধাৰিত ধৰণৰ লগত নিমিলে ।\n"
"মান টেকস্ট হিচাপে ৰখা হ'ব ।"
-#: strings.hrc:198
+#: strings.hrc:199
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "এই ফাইলটো ইতিমধ্যে আছে. পুনৰ লিখিবলৈ বিচাৰেনেকি?"
-#: strings.hrc:200
+#: strings.hrc:201
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "পুনৰ স্থাপন কৰক (~R)"
-#: strings.hrc:201
+#: strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "এই নামটো ইতিমধ্যে ব্যৱহাৰ হৈছে."
-#: strings.hrc:202
+#: strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "এই শৈলীটোৰ অস্তিত্ব নাই."
-#: strings.hrc:203
+#: strings.hrc:204
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -986,7 +991,7 @@ msgstr ""
"এই শৈলীটো এটা আধাৰ শৈলী হিচাপে ব্যৱহাৰ কৰিব পৰা নাযাব,\n"
"কাৰণ এইটো আকৌ আগৰ প্ৰসংগ হিচাপে ওলাব."
-#: strings.hrc:204
+#: strings.hrc:205
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -995,7 +1000,7 @@ msgstr ""
"অবিকল্পিত শৈলী হিচাপে নামটো ইতিমধ্যে বৰ্তি আছে.\n"
"অনুগ্ৰহ কৰি অন্য নাম নিৰ্বাচন কৰক."
-#: strings.hrc:205
+#: strings.hrc:206
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -1003,97 +1008,97 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: strings.hrc:206
+#: strings.hrc:207
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "ব্যৱহৃত শৈলীবোৰ: "
-#: strings.hrc:207
+#: strings.hrc:208
#, fuzzy
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "নেভিগেটৰ"
-#: strings.hrc:208
+#: strings.hrc:209
#, fuzzy
msgctxt "STR_SID_SIDEBAR"
msgid "Sidebar"
msgstr "কাষবাৰ"
-#: strings.hrc:209
+#: strings.hrc:210
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "দোষযুক্ত পাছৱর্ডৰ সন্মতিকৰণ"
-#: strings.hrc:210
+#: strings.hrc:211
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "পথাওক"
-#: strings.hrc:211
+#: strings.hrc:212
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "আখৰ"
-#: strings.hrc:212
+#: strings.hrc:213
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show Previews"
msgstr ""
-#: strings.hrc:214
+#: strings.hrc:215
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "সংস্কৰণ মন্তব্য দৰ্শন কৰক"
-#: strings.hrc:215
+#: strings.hrc:216
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: strings.hrc:217
+#: strings.hrc:218
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "শৈলী তালিকা"
-#: strings.hrc:218
+#: strings.hrc:219
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "ওপৰৰ পৰা তললৈকে ক্ৰমানুসাৰে"
-#: strings.hrc:219
+#: strings.hrc:220
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "ফাইল ফৰমেট প্রকাৰ"
-#: strings.hrc:220
+#: strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "নিৰ্বাচনৰ পৰা নতুন শৈলী"
-#: strings.hrc:221
+#: strings.hrc:222
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "শৈলীসমূহ আপডেইট কৰক (‌~U)"
-#: strings.hrc:223
+#: strings.hrc:224
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "আপুনি সঁচাকৈয়ে ৰেকৰ্ডিংটো বাতিল কৰিবলৈ বিচাৰেনেকি? এই মুহূৰ্তলৈকে ৰেকৰ্ড কৰা যিকোনো ষ্টেপ হেৰাই যাব."
-#: strings.hrc:224
+#: strings.hrc:225
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "ৰেকর্ডিং বাতিল কৰক"
-#: strings.hrc:226
+#: strings.hrc:227
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "প্ৰথম ব্যৱহাৰৰ কাৰণে নমুনাবোৰ ইনিশ্বিয়েলাইজ কৰা হৈছে."
-#: strings.hrc:228
+#: strings.hrc:229
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1102,7 +1107,7 @@ msgstr ""
"কোনো অবিকল্পিত প্ৰিন্টাৰ পোৱা নগ'ল।\n"
"অনুগ্ৰহ কৰি এটা প্ৰিন্টাৰ নিৰ্বাচন কৰক আৰু পুনৰ চেষ্টা কৰক।"
-#: strings.hrc:229
+#: strings.hrc:230
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1111,17 +1116,17 @@ msgstr ""
"প্ৰিন্টাৰ আৰম্ভ কৰিব পৰা নগ'ল।\n"
"অনুগ্ৰহ কৰি আপোনাৰ প্ৰিন্টাৰৰ সংৰূপ পৰীক্ষা কৰক।"
-#: strings.hrc:230
+#: strings.hrc:231
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "প্ৰিন্টাৰ ব্যস্ত হৈ আছে"
-#: strings.hrc:231
+#: strings.hrc:232
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (কেৱল পঢ়িবৰ বাবে)"
-#: strings.hrc:232
+#: strings.hrc:233
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1132,7 +1137,7 @@ msgstr ""
"সক্ৰিয় দস্তাবেজটোত \n"
"নতুন ছেটিংছবোৰ ছেভ কৰিব লাগিবনেকি?"
-#: strings.hrc:233
+#: strings.hrc:234
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1143,7 +1148,7 @@ msgstr ""
"সক্ৰিয় দস্তাবেজটোত \n"
"নতুন ছেটিংছবোৰ ছেভ কৰিব লাগিবনেকি?"
-#: strings.hrc:234
+#: strings.hrc:235
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1154,7 +1159,7 @@ msgstr ""
"সক্ৰিয় দস্তাবেজটোত \n"
"নতুন ছেটিংছবোৰ ছেভ কৰিব লাগিবনেকি?"
-#: strings.hrc:235
+#: strings.hrc:236
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1164,7 +1169,7 @@ msgstr ""
"এটা ছপা কাৰ্য চলাই থকা হৈছে কাৰণে \n"
" দস্তাবেজটো বন্ধ কৰিব নোৱাৰি."
-#: strings.hrc:236
+#: strings.hrc:237
#, fuzzy
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
@@ -1174,216 +1179,318 @@ msgstr ""
"খবৰটো পথাওতে এটা ভুল ওলাইছিল। সম্ভাৱ্য ভুলবোৰ এটা হেৰোৱা ব্যৱহাৰকৰ্তাৰ একাউন্ট বা এটা ত্ৰুটিযুক্ত ছেটআপ হ'ব পাৰে।\n"
"অনুগ্ৰহ কৰি %PRODUCTNAME ছেটিংছবোৰ বা আপোনাৰ ই-মেইল প্ৰগ্ৰেম ছেটিংছবোৰ পৰীক্ষা কৰক।"
-#: strings.hrc:237
+#: strings.hrc:238
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "প্ৰবেশৰ অধিকাৰ হেৰুৱাৰ বাবে সম্ভৱতঃ এই দস্তাবেজটো সম্পাদনা কৰিব নোৱাৰি. আপুনি দস্তাবেজটোৰ এটা প্ৰতিলিপি সম্পাদনা কৰিবলৈ বিচাৰেনেকি?"
-#: strings.hrc:238
+#: strings.hrc:239
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (দস্তাবেজ মেৰামতি কৰা হ'ল)"
-#: strings.hrc:239
+#: strings.hrc:240
#, fuzzy
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "দস্তাবেজক চাৰ্ভাৰত চেক আউট কৰা হোৱা নাই"
-#: strings.hrc:240
+#: strings.hrc:241
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: strings.hrc:241
+#: strings.hrc:242
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: strings.hrc:242
+#: strings.hrc:243
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: strings.hrc:243
+#: strings.hrc:244
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: strings.hrc:244
+#: strings.hrc:245
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: strings.hrc:245
+#: strings.hrc:246
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Intellectual Property:"
msgstr ""
-#: strings.hrc:246
+#: strings.hrc:247
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: strings.hrc:247
+#: strings.hrc:248
#, fuzzy
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "সংবাদ নিয়ন্ত্ৰণসমূহ"
-#: strings.hrc:248
+#: strings.hrc:249
#, fuzzy
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "চেক-আউট"
-#: strings.hrc:249
+#: strings.hrc:250
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "দস্তাবেজ সম্পাদনা কৰক"
-#: strings.hrc:250
+#: strings.hrc:251
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "দস্তাবেজ স্বাক্ষৰ কৰক..."
-#: strings.hrc:251
+#: strings.hrc:252
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: strings.hrc:252
+#: strings.hrc:253
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: strings.hrc:253
+#: strings.hrc:254
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: strings.hrc:254
+#: strings.hrc:255
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: strings.hrc:255
+#: strings.hrc:256
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: strings.hrc:256
+#: strings.hrc:257
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: strings.hrc:258
+#: strings.hrc:259
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: strings.hrc:259
+#: strings.hrc:260
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "ডক"
-#: strings.hrc:260
+#: strings.hrc:261
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "আনডক"
-#: strings.hrc:262
+#: strings.hrc:263
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "অধিক বিকল্প"
-#: strings.hrc:263
+#: strings.hrc:264
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "কাষবাৰ ডেক বন্ধ কৰক"
-#: strings.hrc:264
+#: strings.hrc:265
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: strings.hrc:265
+#: strings.hrc:266
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "স্বনিৰ্বাচন"
-#: strings.hrc:266
+#: strings.hrc:267
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "অবিকল্পিত পুনৰুদ্ধাৰ কৰক"
-#: strings.hrc:267
+#: strings.hrc:268
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
-#: strings.hrc:269
+#. Translators: default Impress template names
+#: strings.hrc:271
msgctxt "STR_TEMPLATE_NAME1"
-msgid "Abstract Green"
-msgstr "এবস্ট্ৰেক্ট সেউজীয়া"
+msgid "Alizarin"
+msgstr ""
-#: strings.hrc:270
+#: strings.hrc:272
msgctxt "STR_TEMPLATE_NAME2"
-msgid "Abstract Red"
-msgstr "এবস্ট্ৰেক্ট ৰঙা"
+msgid "Beehive"
+msgstr ""
-#: strings.hrc:271
+#: strings.hrc:273
msgctxt "STR_TEMPLATE_NAME3"
-msgid "Abstract Yellow"
-msgstr "এবস্ট্ৰেক্ট হালধীয়া"
+msgid "Blue Curve"
+msgstr ""
-#: strings.hrc:272
+#: strings.hrc:274
msgctxt "STR_TEMPLATE_NAME4"
-msgid "Bright Blue"
-msgstr "উজ্জ্বল নীলা"
+msgid "Blueprint Plans"
+msgstr ""
-#: strings.hrc:273
+#: strings.hrc:275
msgctxt "STR_TEMPLATE_NAME5"
-msgid "DNA"
-msgstr "DNA"
+msgid "Bright Blue"
+msgstr ""
-#: strings.hrc:274
+#: strings.hrc:276
msgctxt "STR_TEMPLATE_NAME6"
-msgid "Inspiration"
-msgstr "প্ৰেৰণা"
+msgid "Classy Red"
+msgstr ""
-#: strings.hrc:275
+#: strings.hrc:277
msgctxt "STR_TEMPLATE_NAME7"
-msgid "Lush Green"
-msgstr "লাশ সেউজীয়া"
+msgid "DNA"
+msgstr ""
-#: strings.hrc:276
+#: strings.hrc:278
msgctxt "STR_TEMPLATE_NAME8"
-msgid "Metropolis"
-msgstr "মেট্ৰপলিচ"
+msgid "Focus"
+msgstr ""
-#: strings.hrc:277
+#: strings.hrc:279
msgctxt "STR_TEMPLATE_NAME9"
-msgid "Sunset"
-msgstr "সূৰ্যাস্ত"
+msgid "Forestbird"
+msgstr ""
-#: strings.hrc:278
+#: strings.hrc:280
msgctxt "STR_TEMPLATE_NAME10"
+msgid "Impress"
+msgstr ""
+
+#: strings.hrc:281
+msgctxt "STR_TEMPLATE_NAME11"
+msgid "Inspiration"
+msgstr ""
+
+#: strings.hrc:282
+msgctxt "STR_TEMPLATE_NAME12"
+msgid "Lights"
+msgstr ""
+
+#: strings.hrc:283
+msgctxt "STR_TEMPLATE_NAME13"
+msgid "Lush Green"
+msgstr ""
+
+#: strings.hrc:284
+msgctxt "STR_TEMPLATE_NAME14"
+msgid "Metropolis"
+msgstr ""
+
+#: strings.hrc:285
+msgctxt "STR_TEMPLATE_NAME15"
+msgid "Midnightblue"
+msgstr ""
+
+#: strings.hrc:286
+msgctxt "STR_TEMPLATE_NAME16"
+msgid "Nature Illustration"
+msgstr ""
+
+#: strings.hrc:287
+msgctxt "STR_TEMPLATE_NAME17"
+msgid "Pencil"
+msgstr ""
+
+#: strings.hrc:288
+msgctxt "STR_TEMPLATE_NAME18"
+msgid "Piano"
+msgstr ""
+
+#: strings.hrc:289
+msgctxt "STR_TEMPLATE_NAME19"
+msgid "Portfolio"
+msgstr ""
+
+#: strings.hrc:290
+msgctxt "STR_TEMPLATE_NAME20"
+msgid "Progress"
+msgstr ""
+
+#: strings.hrc:291
+msgctxt "STR_TEMPLATE_NAME21"
+msgid "Sunset"
+msgstr ""
+
+#: strings.hrc:292
+msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
-msgstr "ভিনটেইজ"
+msgstr ""
-#: strings.hrc:280
+#: strings.hrc:293
+msgctxt "STR_TEMPLATE_NAME23"
+msgid "Vivid"
+msgstr ""
+
+#. Translators: default Writer template names
+#: strings.hrc:295
+msgctxt "STR_TEMPLATE_NAME24"
+msgid "CV"
+msgstr ""
+
+#: strings.hrc:296
+msgctxt "STR_TEMPLATE_NAME25"
+msgid "Resume"
+msgstr ""
+
+#: strings.hrc:297
+msgctxt "STR_TEMPLATE_NAME26"
+msgid "Default"
+msgstr ""
+
+#: strings.hrc:298
+msgctxt "STR_TEMPLATE_NAME27"
+msgid "Modern"
+msgstr ""
+
+#: strings.hrc:299
+msgctxt "STR_TEMPLATE_NAME28"
+msgid "Modern business letter sans-serif"
+msgstr ""
+
+#: strings.hrc:300
+msgctxt "STR_TEMPLATE_NAME29"
+msgid "Modern business letter serif"
+msgstr ""
+
+#: strings.hrc:301
+msgctxt "STR_TEMPLATE_NAME30"
+msgid "Businesscard with logo"
+msgstr ""
+
+#: strings.hrc:303
#, fuzzy
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "আতৰাওক"
-#: strings.hrc:281
+#: strings.hrc:304
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
diff --git a/source/as/sw/messages.po b/source/as/sw/messages.po
index 57751d8771f..47cd617d283 100644
--- a/source/as/sw/messages.po
+++ b/source/as/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-20 08:17+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -86,10 +86,9 @@ msgid "Conditional Styles"
msgstr "চৰ্তসাপেক্ষ শৈলীবোৰ"
#: app.hrc:47
-#, fuzzy
msgctxt "RID_CHARACTERSTYLEFAMILY"
-msgid "All"
-msgstr "সকলো"
+msgid "All Styles"
+msgstr ""
#: app.hrc:48
#, fuzzy
@@ -110,10 +109,9 @@ msgid "Custom Styles"
msgstr "স্বনিৰ্বাচিত শৈলীবোৰ"
#: app.hrc:56
-#, fuzzy
msgctxt "RID_FRAMESTYLEFAMILY"
-msgid "All"
-msgstr "সকলো"
+msgid "All Styles"
+msgstr ""
#: app.hrc:57
#, fuzzy
@@ -134,10 +132,9 @@ msgid "Custom Styles"
msgstr "স্বনিৰ্বাচিত শৈলীবোৰ"
#: app.hrc:65
-#, fuzzy
msgctxt "RID_PAGESTYLEFAMILY"
-msgid "All"
-msgstr "সকলো"
+msgid "All Styles"
+msgstr ""
#: app.hrc:66
#, fuzzy
@@ -158,10 +155,9 @@ msgid "Custom Styles"
msgstr "স্বনিৰ্বাচিত শৈলীবোৰ"
#: app.hrc:74
-#, fuzzy
msgctxt "RID_LISTSTYLEFAMILY"
-msgid "All"
-msgstr "সকলো"
+msgid "All Styles"
+msgstr ""
#: app.hrc:75
#, fuzzy
@@ -182,10 +178,9 @@ msgid "Custom Styles"
msgstr "স্বনিৰ্বাচিত শৈলীবোৰ"
#: app.hrc:83
-#, fuzzy
msgctxt "RID_TABLESTYLEFAMILY"
-msgid "All"
-msgstr "সকলো"
+msgid "All Styles"
+msgstr ""
#: app.hrc:84
#, fuzzy
@@ -1354,28 +1349,28 @@ msgstr "নৈসর্গিক দৃশ্য"
#. Numbering rules
#: strings.hrc:199
msgctxt "STR_POOLNUMRULE_NUM1"
-msgid "Numbering 1"
-msgstr "নাম্বাৰিং ১"
+msgid "Numbering 123"
+msgstr ""
#: strings.hrc:200
msgctxt "STR_POOLNUMRULE_NUM2"
-msgid "Numbering 2"
-msgstr "নাম্বাৰিং ২"
+msgid "Numbering ABC"
+msgstr ""
#: strings.hrc:201
msgctxt "STR_POOLNUMRULE_NUM3"
-msgid "Numbering 3"
-msgstr "নাম্বাৰিং ৩"
+msgid "Numbering abc"
+msgstr ""
#: strings.hrc:202
msgctxt "STR_POOLNUMRULE_NUM4"
-msgid "Numbering 4"
-msgstr "নাম্বাৰিং ৪"
+msgid "Numbering IVX"
+msgstr ""
#: strings.hrc:203
msgctxt "STR_POOLNUMRULE_NUM5"
-msgid "Numbering 5"
-msgstr "নাম্বাৰিং ৫"
+msgid "Numbering ivx"
+msgstr ""
#: strings.hrc:204
msgctxt "STR_POOLNUMRULE_BUL1"
@@ -14570,14 +14565,13 @@ msgid "Use printer metrics for document formatting"
msgstr "দস্তাবেজ ফৰ্মেটিংৰ বাবে প্ৰিন্টাৰ মেট্ৰিক্স ব্যৱহাৰ কৰক"
#: optcompatpage.ui:57
-#, fuzzy
msgctxt "optcompatpage|format"
-msgid "Add spacing between paragraphs and tables (in current document)"
-msgstr "দফা আৰু টেবুলবোৰৰ মাজত (বৰ্তমানৰ দস্তাবেজত) ব্যৱধান যোগ কৰক (_s)"
+msgid "Add spacing between paragraphs and tables"
+msgstr ""
#: optcompatpage.ui:58
msgctxt "optcompatpage|format"
-msgid "Add paragraph and table spacing at tops of pages (in current document)"
+msgid "Add paragraph and table spacing at tops of pages"
msgstr ""
#: optcompatpage.ui:59
@@ -14632,7 +14626,7 @@ msgstr ""
#: optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Tolerate white lines of PDF page backgrounds for compatibility with old documents (in current document)"
+msgid "Tolerate white lines of PDF page backgrounds for compatibility with old documents"
msgstr ""
#: optcompatpage.ui:70
@@ -14648,7 +14642,7 @@ msgstr ""
#: optcompatpage.ui:104
msgctxt "optcompatpage|label11"
-msgid "Compatibility options for %DOCNAME"
+msgid "Compatibility options for '%DOCNAME'"
msgstr ""
#: optfonttabpage.ui:103
@@ -18065,21 +18059,11 @@ msgctxt "textgridpage|labelFT_CHARSPERLINE"
msgid "Characters per line:"
msgstr "প্ৰতি শাৰী আখৰসমূহ:"
-#: textgridpage.ui:223
-msgctxt "textgridpage|labelFT_CHARRANGE"
-msgid "(1-45)"
-msgstr ""
-
#: textgridpage.ui:236
msgctxt "textgridpage|labelFT_LINESPERPAGE"
msgid "Lines per page:"
msgstr "প্ৰতি পৃষ্ঠা শাৰীবোৰ:"
-#: textgridpage.ui:265
-msgctxt "textgridpage|labelFT_LINERANGE"
-msgid "(1-48)"
-msgstr ""
-
#: textgridpage.ui:303
msgctxt "textgridpage|labelFT_CHARWIDTH"
msgid "Character _width:"
diff --git a/source/ast/cui/messages.po b/source/ast/cui/messages.po
index c172f44cf80..1c43d5c0600 100644
--- a/source/ast/cui/messages.po
+++ b/source/ast/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8262,78 +8262,78 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Ayuda"
-#: optgeneralpage.ui:77
+#: optgeneralpage.ui:76
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Usar los diálogos de %PRODUCTNAME"
-#: optgeneralpage.ui:111
+#: optgeneralpage.ui:110
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Diálogos p'abrir/guardar"
-#: optgeneralpage.ui:137
+#: optgeneralpage.ui:136
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Usar los _diálogos de %PRODUCTNAME"
-#: optgeneralpage.ui:152
+#: optgeneralpage.ui:151
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Diálogos d'imprentación"
-#: optgeneralpage.ui:178
+#: optgeneralpage.ui:177
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Im_prentar afita l'estáu de \"documentu camudáu\""
-#: optgeneralpage.ui:193
+#: optgeneralpage.ui:192
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Estáu del documentu"
-#: optgeneralpage.ui:226
+#: optgeneralpage.ui:225
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretar como años ente "
-#: optgeneralpage.ui:252
+#: optgeneralpage.ui:251
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "y "
-#: optgeneralpage.ui:267
+#: optgeneralpage.ui:266
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Añu (con dos díxitos)"
-#: optgeneralpage.ui:293
+#: optgeneralpage.ui:292
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: optgeneralpage.ui:308
+#: optgeneralpage.ui:307
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: optgeneralpage.ui:339
+#: optgeneralpage.ui:338
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Cargar %PRODUCTNAME nel arranque del sistema"
-#: optgeneralpage.ui:353
+#: optgeneralpage.ui:352
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Activar l'aniciu rápidu nel área de notificación"
-#: optgeneralpage.ui:373
+#: optgeneralpage.ui:372
#, fuzzy
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
@@ -9182,250 +9182,254 @@ msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr "Opciones de seguridá y alertes"
-#: optuserpage.ui:34
+#: optuserpage.ui:12
+msgctxt "optuserpage|liststore1"
+msgid "No key"
+msgstr ""
+
+#: optuserpage.ui:45
#, fuzzy
msgctxt "optuserpage|companyft"
msgid "_Company:"
msgstr "_Empresa"
-#: optuserpage.ui:48
+#: optuserpage.ui:59
#, fuzzy
msgctxt "optuserpage|nameft"
msgid "First/last _name/initials:"
msgstr "_Nome/Apellíos/Iniciales"
-#: optuserpage.ui:62
+#: optuserpage.ui:73
#, fuzzy
msgctxt "optuserpage|streetft"
msgid "_Street:"
msgstr "_Cai"
-#: optuserpage.ui:76
+#: optuserpage.ui:87
#, fuzzy
msgctxt "optuserpage|cityft"
msgid "City/state/_zip:"
msgstr "Ciudá/Estáu/C._P."
-#: optuserpage.ui:90
+#: optuserpage.ui:101
#, fuzzy
msgctxt "optuserpage|countryft"
msgid "Country/re_gion:"
msgstr "País/Re_xón"
-#: optuserpage.ui:104
+#: optuserpage.ui:115
#, fuzzy
msgctxt "optuserpage|titleft"
msgid "_Title/position:"
msgstr "_Títulu/Posición"
-#: optuserpage.ui:118
+#: optuserpage.ui:129
msgctxt "optuserpage|phoneft"
msgid "Telephone (home/_work):"
msgstr ""
-#: optuserpage.ui:123
+#: optuserpage.ui:134
#, fuzzy
msgctxt "phoneft-atkobject"
msgid "Home telephone number"
msgstr "Númberu de teléfonu priváu"
-#: optuserpage.ui:137
+#: optuserpage.ui:148
#, fuzzy
msgctxt "optuserpage|faxft"
msgid "Fa_x/e-mail:"
msgstr "Fa_x / corréu electrónicu"
-#: optuserpage.ui:160
+#: optuserpage.ui:171
msgctxt "optuserpage|firstname-atkobject"
msgid "First name"
msgstr "Nome"
-#: optuserpage.ui:178
+#: optuserpage.ui:189
#, fuzzy
msgctxt "lastname-atkobject"
msgid "Last name"
msgstr "Nome"
-#: optuserpage.ui:196
+#: optuserpage.ui:207
#, fuzzy
msgctxt "shortname-atkobject"
msgid "Initials"
msgstr "Iniciales"
-#: optuserpage.ui:225
+#: optuserpage.ui:236
#, fuzzy
msgctxt "city-atkobject"
msgid "City"
msgstr "Ciudá"
-#: optuserpage.ui:243
+#: optuserpage.ui:254
#, fuzzy
msgctxt "state-atkobject"
msgid "State"
msgstr "Estáu"
-#: optuserpage.ui:261
+#: optuserpage.ui:272
#, fuzzy
msgctxt "zip-atkobject"
msgid "Zip code"
msgstr "Códigu postal"
-#: optuserpage.ui:291
+#: optuserpage.ui:302
#, fuzzy
msgctxt "title-atkobject"
msgid "Title"
msgstr "Títulu"
-#: optuserpage.ui:309
+#: optuserpage.ui:320
#, fuzzy
msgctxt "position-atkobject"
msgid "Position"
msgstr "Allugamientu"
-#: optuserpage.ui:338
+#: optuserpage.ui:349
#, fuzzy
msgctxt "home-atkobject"
msgid "Home telephone number"
msgstr "Númberu de teléfonu priváu"
-#: optuserpage.ui:356
+#: optuserpage.ui:367
#, fuzzy
msgctxt "work-atkobject"
msgid "Work telephone number"
msgstr "Númberu de teléfonu del trabayu"
-#: optuserpage.ui:386
+#: optuserpage.ui:397
#, fuzzy
msgctxt "fax-atkobject"
msgid "FAX number"
msgstr "Númberu de fax"
-#: optuserpage.ui:404
+#: optuserpage.ui:415
#, fuzzy
msgctxt "email-atkobject"
msgid "email address"
msgstr "direición de corréu electrónicu"
-#: optuserpage.ui:421
+#: optuserpage.ui:432
msgctxt "optuserpage|usefordocprop"
msgid "Use data for document properties"
msgstr "Usar datos pa les propiedaes del documentu"
-#: optuserpage.ui:438
+#: optuserpage.ui:449
#, fuzzy
msgctxt "optuserpage|rusnameft"
msgid "Last name/first _name/father’s name/initials:"
msgstr "Apellíos/_Nome/Nome del pa/Iniciales"
-#: optuserpage.ui:461
+#: optuserpage.ui:472
#, fuzzy
msgctxt "ruslastname-atkobject"
msgid "Last name"
msgstr "Nome"
-#: optuserpage.ui:479
+#: optuserpage.ui:490
#, fuzzy
msgctxt "rusfathersname-atkobject"
msgid "Father's name"
msgstr "Nome del padre"
-#: optuserpage.ui:497
+#: optuserpage.ui:508
#, fuzzy
msgctxt "russhortname-atkobject"
msgid "Initials"
msgstr "Iniciales"
-#: optuserpage.ui:515
+#: optuserpage.ui:526
#, fuzzy
msgctxt "rusfirstname-atkobject"
msgid "First name"
msgstr "Nome"
-#: optuserpage.ui:535
+#: optuserpage.ui:546
#, fuzzy
msgctxt "optuserpage|eastnameft"
msgid "Last/first _name/initials:"
msgstr "_Nome/Apellíos/Iniciales"
-#: optuserpage.ui:558
+#: optuserpage.ui:569
#, fuzzy
msgctxt "eastlastname-atkobject"
msgid "Last name"
msgstr "Nome"
-#: optuserpage.ui:576
+#: optuserpage.ui:587
#, fuzzy
msgctxt "eastfirstname-atkobject"
msgid "First name"
msgstr "Nome"
-#: optuserpage.ui:594
+#: optuserpage.ui:605
#, fuzzy
msgctxt "eastshortname-atkobject"
msgid "Initials"
msgstr "Iniciales"
-#: optuserpage.ui:614
+#: optuserpage.ui:625
#, fuzzy
msgctxt "optuserpage|russtreetft"
msgid "_Street/apartment number:"
msgstr "Cai/Númberu de pi_su"
-#: optuserpage.ui:637
+#: optuserpage.ui:648
#, fuzzy
msgctxt "russtreet-atkobject"
msgid "Street"
msgstr "Cai"
-#: optuserpage.ui:655
+#: optuserpage.ui:666
#, fuzzy
msgctxt "ruslastname-atkobject"
msgid "Apartment number"
msgstr "Númberu de pisu"
-#: optuserpage.ui:675
+#: optuserpage.ui:686
#, fuzzy
msgctxt "optuserpage|icityft"
msgid "_Zip/city:"
msgstr "_C.P./Ciudá"
-#: optuserpage.ui:698
+#: optuserpage.ui:709
#, fuzzy
msgctxt "icity-atkobject"
msgid "City"
msgstr "Ciudá"
-#: optuserpage.ui:716
+#: optuserpage.ui:727
#, fuzzy
msgctxt "izip-atkobject"
msgid "Zip code"
msgstr "Códigu postal"
-#: optuserpage.ui:814
+#: optuserpage.ui:825
msgctxt "optuserpage|label1"
msgid "Address"
msgstr "Direición"
-#: optuserpage.ui:847
+#: optuserpage.ui:861
msgctxt "optuserpage|signingkeylabel"
msgid "OpenPGP signing key:"
msgstr ""
-#: optuserpage.ui:860
+#: optuserpage.ui:875
msgctxt "optuserpage|encryptionkeylabel"
msgid "OpenPGP encryption key:"
msgstr ""
-#: optuserpage.ui:889
+#: optuserpage.ui:908
msgctxt "optuserpage|encrypttoself"
msgid "When encrypting documents, always encrypt to self"
msgstr ""
-#: optuserpage.ui:909
-#, fuzzy
-msgctxt "optuserpage|label2"
+#: optuserpage.ui:930
+msgctxt "optuserpage|cryptographylabel"
msgid "Cryptography"
-msgstr "Tipografía"
+msgstr ""
#: optviewpage.ui:47
msgctxt "optviewpage|grid3|tooltip_text"
diff --git a/source/ast/extras/source/autocorr/emoji.po b/source/ast/extras/source/autocorr/emoji.po
index f7d15c97c75..28241f6d5a0 100644
--- a/source/ast/extras/source/autocorr/emoji.po
+++ b/source/ast/extras/source/autocorr/emoji.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: 2016-10-18 13:02+0200\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2016-12-01 12:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1801,13 +1801,12 @@ msgstr "entamu"
#. ☇ (U+02607), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"LIGHTNING\n"
"LngText.text"
-msgid "lighting"
-msgstr "Illuminación"
+msgid "lightning3"
+msgstr ""
#. ☈ (U+02608), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1815,7 +1814,7 @@ msgctxt ""
"emoji.ulf\n"
"THUNDERSTORM\n"
"LngText.text"
-msgid "storm"
+msgid "storm2"
msgstr ""
#. ☉ (U+02609), see http://wiki.documentfoundation.org/Emoji
@@ -2164,13 +2163,12 @@ msgstr "Lluna"
#. ☿ (U+0263F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"MERCURY\n"
"LngText.text"
-msgid "Mercury"
-msgstr "Mercuriu"
+msgid "mercury"
+msgstr ""
#. ♀ (U+02640), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2187,7 +2185,7 @@ msgctxt ""
"emoji.ulf\n"
"EARTH\n"
"LngText.text"
-msgid "Earth"
+msgid "earth"
msgstr ""
#. ♂ (U+02642), see http://wiki.documentfoundation.org/Emoji
@@ -2206,7 +2204,7 @@ msgctxt ""
"emoji.ulf\n"
"JUPITER\n"
"LngText.text"
-msgid "Jupiter"
+msgid "jupiter"
msgstr ""
#. ♄ (U+02644), see http://wiki.documentfoundation.org/Emoji
@@ -2215,7 +2213,7 @@ msgctxt ""
"emoji.ulf\n"
"SATURN\n"
"LngText.text"
-msgid "Saturn"
+msgid "saturn"
msgstr ""
#. ♅ (U+02645), see http://wiki.documentfoundation.org/Emoji
@@ -2224,7 +2222,7 @@ msgctxt ""
"emoji.ulf\n"
"URANUS\n"
"LngText.text"
-msgid "Uranus"
+msgid "uranus"
msgstr ""
#. ♆ (U+02646), see http://wiki.documentfoundation.org/Emoji
@@ -2233,7 +2231,7 @@ msgctxt ""
"emoji.ulf\n"
"NEPTUNE\n"
"LngText.text"
-msgid "Neptune"
+msgid "neptune"
msgstr ""
#. ♇ (U+02647), see http://wiki.documentfoundation.org/Emoji
@@ -2242,7 +2240,7 @@ msgctxt ""
"emoji.ulf\n"
"PLUTO\n"
"LngText.text"
-msgid "Pluto"
+msgid "pluto"
msgstr ""
#. ♈ (U+02648), see http://wiki.documentfoundation.org/Emoji
@@ -2251,7 +2249,7 @@ msgctxt ""
"emoji.ulf\n"
"ARIES\n"
"LngText.text"
-msgid "Aries"
+msgid "aries"
msgstr ""
#. ♉ (U+02649), see http://wiki.documentfoundation.org/Emoji
@@ -2260,7 +2258,7 @@ msgctxt ""
"emoji.ulf\n"
"TAURUS\n"
"LngText.text"
-msgid "Taurus"
+msgid "taurus"
msgstr ""
#. ♊ (U+0264A), see http://wiki.documentfoundation.org/Emoji
@@ -2269,18 +2267,17 @@ msgctxt ""
"emoji.ulf\n"
"GEMINI\n"
"LngText.text"
-msgid "Gemini"
+msgid "gemini"
msgstr ""
#. ♋ (U+0264B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CANCER\n"
"LngText.text"
-msgid "Cancer"
-msgstr "Encaboxar"
+msgid "cancer"
+msgstr ""
#. ♌ (U+0264C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2288,7 +2285,7 @@ msgctxt ""
"emoji.ulf\n"
"LEO\n"
"LngText.text"
-msgid "Leo"
+msgid "leo"
msgstr ""
#. ♍ (U+0264D), see http://wiki.documentfoundation.org/Emoji
@@ -2297,7 +2294,7 @@ msgctxt ""
"emoji.ulf\n"
"VIRGO\n"
"LngText.text"
-msgid "Virgo"
+msgid "virgo"
msgstr ""
#. ♎ (U+0264E), see http://wiki.documentfoundation.org/Emoji
@@ -2306,7 +2303,7 @@ msgctxt ""
"emoji.ulf\n"
"LIBRA\n"
"LngText.text"
-msgid "Libra"
+msgid "libra"
msgstr ""
#. ♏ (U+0264F), see http://wiki.documentfoundation.org/Emoji
@@ -2315,7 +2312,7 @@ msgctxt ""
"emoji.ulf\n"
"SCORPIUS\n"
"LngText.text"
-msgid "Scorpius"
+msgid "scorpius"
msgstr ""
#. ♐ (U+02650), see http://wiki.documentfoundation.org/Emoji
@@ -2324,7 +2321,7 @@ msgctxt ""
"emoji.ulf\n"
"SAGITTARIUS\n"
"LngText.text"
-msgid "Sagittarius"
+msgid "sagittarius"
msgstr ""
#. ♑ (U+02651), see http://wiki.documentfoundation.org/Emoji
@@ -2333,7 +2330,7 @@ msgctxt ""
"emoji.ulf\n"
"CAPRICORN\n"
"LngText.text"
-msgid "Capricorn"
+msgid "capricorn"
msgstr ""
#. ♒ (U+02652), see http://wiki.documentfoundation.org/Emoji
@@ -2342,7 +2339,7 @@ msgctxt ""
"emoji.ulf\n"
"AQUARIUS\n"
"LngText.text"
-msgid "Aquarius"
+msgid "aquarius"
msgstr ""
#. ♓ (U+02653), see http://wiki.documentfoundation.org/Emoji
@@ -2351,7 +2348,7 @@ msgctxt ""
"emoji.ulf\n"
"PISCES\n"
"LngText.text"
-msgid "Pisces"
+msgid "pisces"
msgstr ""
#. ♔ (U+02654), see http://wiki.documentfoundation.org/Emoji
@@ -2715,7 +2712,7 @@ msgctxt ""
"emoji.ulf\n"
"WHITE_FLAG\n"
"LngText.text"
-msgid "flag"
+msgid "flag4"
msgstr ""
#. ⚑ (U+02691), see http://wiki.documentfoundation.org/Emoji
@@ -2724,7 +2721,7 @@ msgctxt ""
"emoji.ulf\n"
"BLACK_FLAG\n"
"LngText.text"
-msgid "flag2"
+msgid "flag3"
msgstr ""
#. ⚒ (U+02692), see http://wiki.documentfoundation.org/Emoji
@@ -3036,7 +3033,7 @@ msgctxt ""
"emoji.ulf\n"
"BLACK_CROSS_ON_SHIELD\n"
"LngText.text"
-msgid "shield"
+msgid "shield2"
msgstr ""
#. ⛪ (U+026EA), see http://wiki.documentfoundation.org/Emoji
@@ -3077,13 +3074,12 @@ msgstr ""
#. ⛳ (U+026F3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"FLAG_IN_HOLE\n"
"LngText.text"
-msgid "golf"
-msgstr "doráu"
+msgid "golf2"
+msgstr ""
#. ⛴ (U+026F4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3827,7 +3823,7 @@ msgctxt ""
"emoji.ulf\n"
"FOGGY\n"
"LngText.text"
-msgid "fog"
+msgid "foggy"
msgstr ""
#. 🌂 (U+1F302), see http://wiki.documentfoundation.org/Emoji
@@ -3928,7 +3924,7 @@ msgctxt ""
"emoji.ulf\n"
"MILKY_WAY\n"
"LngText.text"
-msgid "Milky way"
+msgid "milky way"
msgstr ""
#. 🌍 (U+1F30D), see http://wiki.documentfoundation.org/Emoji
@@ -4186,7 +4182,7 @@ msgctxt ""
"emoji.ulf\n"
"CHERRY_BLOSSOM\n"
"LngText.text"
-msgid "cherry blossom"
+msgid "blossom2"
msgstr ""
#. 🌹 (U+1F339), see http://wiki.documentfoundation.org/Emoji
@@ -4423,7 +4419,7 @@ msgctxt ""
"emoji.ulf\n"
"CHERRIES\n"
"LngText.text"
-msgid "cherries"
+msgid "cherry"
msgstr ""
#. 🍓 (U+1F353), see http://wiki.documentfoundation.org/Emoji
@@ -4727,7 +4723,7 @@ msgctxt ""
"emoji.ulf\n"
"COOKING\n"
"LngText.text"
-msgid "egg"
+msgid "cooking"
msgstr ""
#. 🍴 (U+1F374), see http://wiki.documentfoundation.org/Emoji
@@ -4765,7 +4761,7 @@ msgctxt ""
"emoji.ulf\n"
"WINE_GLASS\n"
"LngText.text"
-msgid "wine glass"
+msgid "glass"
msgstr ""
#. 🍸 (U+1F378), see http://wiki.documentfoundation.org/Emoji
@@ -4783,7 +4779,7 @@ msgctxt ""
"emoji.ulf\n"
"TROPICAL_DRINK\n"
"LngText.text"
-msgid "tropical drink"
+msgid "drink2"
msgstr ""
#. 🍺 (U+1F37A), see http://wiki.documentfoundation.org/Emoji
@@ -4819,7 +4815,7 @@ msgctxt ""
"emoji.ulf\n"
"RIBBON\n"
"LngText.text"
-msgid "ribbon"
+msgid "ribbon2"
msgstr ""
#. 🎁 (U+1F381), see http://wiki.documentfoundation.org/Emoji
@@ -4846,7 +4842,7 @@ msgctxt ""
"emoji.ulf\n"
"JACK-O-LANTERN\n"
"LngText.text"
-msgid "Halloween"
+msgid "halloween"
msgstr ""
#. 🎄 (U+1F384), see http://wiki.documentfoundation.org/Emoji
@@ -4855,7 +4851,7 @@ msgctxt ""
"emoji.ulf\n"
"CHRISTMAS_TREE\n"
"LngText.text"
-msgid "Christmas"
+msgid "christmas"
msgstr ""
#. 🎅 (U+1F385), see http://wiki.documentfoundation.org/Emoji
@@ -4864,7 +4860,7 @@ msgctxt ""
"emoji.ulf\n"
"FATHER_CHRISTMAS\n"
"LngText.text"
-msgid "Santa"
+msgid "santa"
msgstr ""
#. 🎆 (U+1F386), see http://wiki.documentfoundation.org/Emoji
@@ -4910,7 +4906,7 @@ msgctxt ""
"emoji.ulf\n"
"CONFETTI_BALL\n"
"LngText.text"
-msgid "confetti ball"
+msgid "party2"
msgstr ""
#. 🎋 (U+1F38B), see http://wiki.documentfoundation.org/Emoji
@@ -5001,7 +4997,7 @@ msgctxt ""
"emoji.ulf\n"
"CAROUSEL_HORSE\n"
"LngText.text"
-msgid "carousel horse"
+msgid "fair2"
msgstr ""
#. 🎡 (U+1F3A1), see http://wiki.documentfoundation.org/Emoji
@@ -5010,7 +5006,7 @@ msgctxt ""
"emoji.ulf\n"
"FERRIS_WHEEL\n"
"LngText.text"
-msgid "ferris wheel"
+msgid "fair"
msgstr ""
#. 🎢 (U+1F3A2), see http://wiki.documentfoundation.org/Emoji
@@ -5092,7 +5088,7 @@ msgctxt ""
"emoji.ulf\n"
"CIRCUS_TENT\n"
"LngText.text"
-msgid "circus tent"
+msgid "circus"
msgstr ""
#. 🎫 (U+1F3AB), see http://wiki.documentfoundation.org/Emoji
@@ -5299,7 +5295,7 @@ msgctxt ""
"emoji.ulf\n"
"CHEQUERED_FLAG\n"
"LngText.text"
-msgid "flag3"
+msgid "race"
msgstr ""
#. 🏂 (U+1F3C2), see http://wiki.documentfoundation.org/Emoji
@@ -5344,7 +5340,7 @@ msgctxt ""
"emoji.ulf\n"
"HORSE_RACING\n"
"LngText.text"
-msgid "horse racing"
+msgid "horse3"
msgstr ""
#. 🏈 (U+1F3C8), see http://wiki.documentfoundation.org/Emoji
@@ -7095,7 +7091,7 @@ msgctxt ""
"emoji.ulf\n"
"MONEY_BAG\n"
"LngText.text"
-msgid "moneybag"
+msgid "money2"
msgstr ""
#. 💱 (U+1F4B1), see http://wiki.documentfoundation.org/Emoji
@@ -7104,7 +7100,7 @@ msgctxt ""
"emoji.ulf\n"
"CURRENCY_EXCHANGE\n"
"LngText.text"
-msgid "currency exchange"
+msgid "exchange"
msgstr ""
#. 💲 (U+1F4B2), see http://wiki.documentfoundation.org/Emoji
@@ -7172,13 +7168,12 @@ msgstr ""
#. 💹 (U+1F4B9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CHART_WITH_UPWARDS_TREND_AND_YEN_SIGN\n"
"LngText.text"
-msgid "chart"
-msgstr "gráfica"
+msgid "chart4"
+msgstr ""
#. 💺 (U+1F4BA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7270,7 +7265,7 @@ msgctxt ""
"emoji.ulf\n"
"PAGE_WITH_CURL\n"
"LngText.text"
-msgid "page with curl"
+msgid "page3"
msgstr ""
#. 📄 (U+1F4C4), see http://wiki.documentfoundation.org/Emoji
@@ -7279,7 +7274,7 @@ msgctxt ""
"emoji.ulf\n"
"PAGE_FACING_UP\n"
"LngText.text"
-msgid "page facing up"
+msgid "page"
msgstr ""
#. 📅 (U+1F4C5), see http://wiki.documentfoundation.org/Emoji
@@ -7313,13 +7308,12 @@ msgstr ""
#. 📈 (U+1F4C8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CHART_WITH_UPWARDS_TREND\n"
"LngText.text"
-msgid "char"
-msgstr "gráfica"
+msgid "chart"
+msgstr ""
#. 📉 (U+1F4C9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7436,13 +7430,12 @@ msgstr ""
#. 📕 (U+1F4D5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CLOSED_BOOK\n"
"LngText.text"
-msgid "book"
-msgstr "Llibru"
+msgid "book2"
+msgstr ""
#. 📖 (U+1F4D6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7450,7 +7443,7 @@ msgctxt ""
"emoji.ulf\n"
"OPEN_BOOK\n"
"LngText.text"
-msgid "book2"
+msgid "book3"
msgstr ""
#. 📚 (U+1F4DA), see http://wiki.documentfoundation.org/Emoji
@@ -7524,7 +7517,7 @@ msgctxt ""
"emoji.ulf\n"
"SATELLITE_ANTENNA\n"
"LngText.text"
-msgid "satellite"
+msgid "antenna"
msgstr ""
#. 📢 (U+1F4E2), see http://wiki.documentfoundation.org/Emoji
@@ -7586,23 +7579,21 @@ msgstr "corréu electrónicu"
#. 📨 (U+1F4E8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"INCOMING_ENVELOPE\n"
"LngText.text"
-msgid "envelope2"
-msgstr "Sobre"
+msgid "envelope7"
+msgstr ""
#. 📩 (U+1F4E9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"ENVELOPE_WITH_DOWNWARDS_ARROW_ABOVE\n"
"LngText.text"
-msgid "envelope3"
-msgstr "Sobre"
+msgid "envelope8"
+msgstr ""
#. 📪 (U+1F4EA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8429,7 +8420,7 @@ msgctxt ""
"emoji.ulf\n"
"SMILING_FACE_WITH_OPEN_MOUTH_AND_TIGHTLY-CLOSED_EYES\n"
"LngText.text"
-msgid "laughing"
+msgid "laugh"
msgstr ""
#. 😇 (U+1F607), see http://wiki.documentfoundation.org/Emoji
@@ -8502,7 +8493,7 @@ msgctxt ""
"emoji.ulf\n"
"SMILING_FACE_WITH_SUNGLASSES\n"
"LngText.text"
-msgid "sunglasses"
+msgid "sunglasses2"
msgstr ""
#. 😏 (U+1F60F), see http://wiki.documentfoundation.org/Emoji
@@ -8972,7 +8963,7 @@ msgctxt ""
"emoji.ulf\n"
"FACE_WITH_OK_GESTURE\n"
"LngText.text"
-msgid "ok2"
+msgid "ok3"
msgstr ""
#. 🙇 (U+1F647), see http://wiki.documentfoundation.org/Emoji
@@ -8981,7 +8972,7 @@ msgctxt ""
"emoji.ulf\n"
"PERSON_BOWING_DEEPLY\n"
"LngText.text"
-msgid "bow"
+msgid "prostration"
msgstr ""
#. 🙈 (U+1F648), see http://wiki.documentfoundation.org/Emoji
@@ -9082,7 +9073,7 @@ msgctxt ""
"emoji.ulf\n"
"STEAM_LOCOMOTIVE\n"
"LngText.text"
-msgid "steam locomotive"
+msgid "locomotive"
msgstr ""
#. 🚃 (U+1F683), see http://wiki.documentfoundation.org/Emoji
@@ -9572,7 +9563,7 @@ msgctxt ""
"emoji.ulf\n"
"CHILDREN_CROSSING\n"
"LngText.text"
-msgid "children crossing"
+msgid "crosswalk"
msgstr ""
#. 🚹 (U+1F6B9), see http://wiki.documentfoundation.org/Emoji
@@ -9694,6 +9685,3714 @@ msgctxt ""
msgid "left luggage"
msgstr ""
+#. 🕃 (U+1F543), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTCHED_LEFT_SEMICIRCLE_WITH_THREE_DOTS\n"
+"LngText.text"
+msgid "feast"
+msgstr ""
+
+#. 🙂 (U+1F642), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLIGHTLY_SMILING_FACE\n"
+"LngText.text"
+msgid "smiling3"
+msgstr ""
+
+#. 🙁 (U+1F641), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLIGHTLY_FROWNING_FACE\n"
+"LngText.text"
+msgid "frowning2"
+msgstr ""
+
+#. 🕵 (U+1F575), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLEUTH_OR_SPY\n"
+"LngText.text"
+msgid "detective"
+msgstr ""
+
+#. 🛌 (U+1F6CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLEEPING_ACCOMMODATION\n"
+"LngText.text"
+msgid "sleep"
+msgstr ""
+
+#. 🕴 (U+1F574), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_IN_BUSINESS_SUIT_LEVITATING\n"
+"LngText.text"
+msgid "suit"
+msgstr ""
+
+#. 🗣 (U+1F5E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPEAKING_HEAD_IN_SILHOUETTE\n"
+"LngText.text"
+msgid "head"
+msgstr ""
+
+#. 🏌 (U+1F3CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GOLFER\n"
+"LngText.text"
+msgid "golf"
+msgstr ""
+
+#. 🏋 (U+1F3CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WEIGHT_LIFTER\n"
+"LngText.text"
+msgid "weight lifter"
+msgstr ""
+
+#. 🏎 (U+1F3CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RACING_CAR\n"
+"LngText.text"
+msgid "car4"
+msgstr ""
+
+#. 🏍 (U+1F3CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RACING_MOTORCYCLE\n"
+"LngText.text"
+msgid "motorcycle"
+msgstr ""
+
+#. 🖕 (U+1F595), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_HAND_WITH_MIDDLE_FINGER_EXTENDED\n"
+"LngText.text"
+msgid "finger"
+msgstr ""
+
+#. 🖖 (U+1F596), Mr. Spock's Vulcan salute from Star Trek, see also http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_HAND_WITH_PART_BETWEEN_MIDDLE_AND_RING_FINGERS\n"
+"LngText.text"
+msgid "spock"
+msgstr ""
+
+#. 🖐 (U+1F590), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_HAND_WITH_FINGERS_SPLAYED\n"
+"LngText.text"
+msgid "hand2"
+msgstr ""
+
+#. 👁 (U+1F441), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EYE\n"
+"LngText.text"
+msgid "eye"
+msgstr ""
+
+#. 🗨 (U+1F5E8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_SPEECH_BUBBLE\n"
+"LngText.text"
+msgid "bubble"
+msgstr ""
+
+#. 🗯 (U+1F5EF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_ANGER_BUBBLE\n"
+"LngText.text"
+msgid "bubble4"
+msgstr ""
+
+#. 🕳 (U+1F573), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOLE\n"
+"LngText.text"
+msgid "hole"
+msgstr ""
+
+#. 🕶 (U+1F576), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DARK_SUNGLASSES\n"
+"LngText.text"
+msgid "sunglasses"
+msgstr ""
+
+#. 🛍 (U+1F6CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOPPING_BAGS\n"
+"LngText.text"
+msgid "shop"
+msgstr ""
+
+#. 🐿 (U+1F43F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHIPMUNK\n"
+"LngText.text"
+msgid "chipmunk"
+msgstr ""
+
+#. 🕊 (U+1F54A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOVE_OF_PEACE\n"
+"LngText.text"
+msgid "dove"
+msgstr ""
+
+#. 🕷 (U+1F577), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIDER\n"
+"LngText.text"
+msgid "spider"
+msgstr ""
+
+#. 🕸 (U+1F578), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIDER_WEB\n"
+"LngText.text"
+msgid "web"
+msgstr ""
+
+#. 🏵 (U+1F3F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROSETTE\n"
+"LngText.text"
+msgid "rosette"
+msgstr ""
+
+#. 🌶 (U+1F336), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOT_PEPPER\n"
+"LngText.text"
+msgid "pepper"
+msgstr ""
+
+#. 🍽 (U+1F37D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FORK_AND_KNIFE_WITH_PLATE\n"
+"LngText.text"
+msgid "plate"
+msgstr ""
+
+#. 🗺 (U+1F5FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WORLD_MAP\n"
+"LngText.text"
+msgid "map"
+msgstr ""
+
+#. 🏔 (U+1F3D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SNOW_CAPPED_MOUNTAIN\n"
+"LngText.text"
+msgid "mountain2"
+msgstr ""
+
+#. 🏕 (U+1F3D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CAMPING\n"
+"LngText.text"
+msgid "camping"
+msgstr ""
+
+#. 🏖 (U+1F3D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEACH_WITH_UMBRELLA\n"
+"LngText.text"
+msgid "beach"
+msgstr ""
+
+#. 🏜 (U+1F3DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESERT\n"
+"LngText.text"
+msgid "desert"
+msgstr ""
+
+#. 🏝 (U+1F3DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESERT_ISLAND\n"
+"LngText.text"
+msgid "island"
+msgstr ""
+
+#. 🏞 (U+1F3DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NATIONAL_PARK\n"
+"LngText.text"
+msgid "park"
+msgstr ""
+
+#. 🏟 (U+1F3DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STADIUM\n"
+"LngText.text"
+msgid "stadium"
+msgstr ""
+
+#. 🏛 (U+1F3DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLASSICAL_BUILDING\n"
+"LngText.text"
+msgid "museum"
+msgstr ""
+
+#. 🏗 (U+1F3D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BUILDING_CONSTRUCTION\n"
+"LngText.text"
+msgid "crane"
+msgstr ""
+
+#. 🏘 (U+1F3D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOUSE_BUILDINGS\n"
+"LngText.text"
+msgid "houses"
+msgstr ""
+
+#. 🏚 (U+1F3DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DERELICT_HOUSE_BUILDING\n"
+"LngText.text"
+msgid "house3"
+msgstr ""
+
+#. 🏙 (U+1F3D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CITYSCAPE\n"
+"LngText.text"
+msgid "city"
+msgstr ""
+
+#. 🛣 (U+1F6E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTORWAY\n"
+"LngText.text"
+msgid "motorway"
+msgstr ""
+
+#. 🛤 (U+1F6E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAILWAY_TRACK\n"
+"LngText.text"
+msgid "track"
+msgstr ""
+
+#. 🛢 (U+1F6E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OIL_DRUM\n"
+"LngText.text"
+msgid "drum"
+msgstr ""
+
+#. 🛳 (U+1F6F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PASSENGER_SHIP\n"
+"LngText.text"
+msgid "ship2"
+msgstr ""
+
+#. 🛥 (U+1F6E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTOR_BOAT\n"
+"LngText.text"
+msgid "motor boat"
+msgstr ""
+
+#. 🛩 (U+1F6E9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SMALL_AIRPLANE\n"
+"LngText.text"
+msgid "airplane2"
+msgstr ""
+
+#. 🛫 (U+1F6EB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AIRPLANE_DEPARTURE\n"
+"LngText.text"
+msgid "departure"
+msgstr ""
+
+#. 🛬 (U+1F6EC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AIRPLANE_ARRIVING\n"
+"LngText.text"
+msgid "arrival"
+msgstr ""
+
+#. 🛰 (U+1F6F0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SATELLITE\n"
+"LngText.text"
+msgid "satellite"
+msgstr ""
+
+#. 🛎 (U+1F6CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BELLHOP_BELL\n"
+"LngText.text"
+msgid "bell2"
+msgstr ""
+
+#. 🕰 (U+1F570), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MANTELPIECE_CLOCK\n"
+"LngText.text"
+msgid "clock"
+msgstr ""
+
+#. 🌡 (U+1F321), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THERMOMETER\n"
+"LngText.text"
+msgid "thermometer"
+msgstr ""
+
+#. 🌤 (U+1F324), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_WITH_SMALL_CLOUD\n"
+"LngText.text"
+msgid "cloudy"
+msgstr ""
+
+#. 🌥 (U+1F325), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_BEHIND_CLOUD\n"
+"LngText.text"
+msgid "cloudy2"
+msgstr ""
+
+#. 🌦 (U+1F326), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_BEHIND_CLOUD_WITH_RAIN\n"
+"LngText.text"
+msgid "rainy"
+msgstr ""
+
+#. 🌧 (U+1F327), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_RAIN\n"
+"LngText.text"
+msgid "storm"
+msgstr ""
+
+#. 🌨 (U+1F328), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_SNOW\n"
+"LngText.text"
+msgid "snow"
+msgstr ""
+
+#. 🌩 (U+1F329), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_LIGHTNING\n"
+"LngText.text"
+msgid "lightning"
+msgstr ""
+
+#. 🌪 (U+1F32A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_TORNADO\n"
+"LngText.text"
+msgid "tornado"
+msgstr ""
+
+#. 🌫 (U+1F32B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOG\n"
+"LngText.text"
+msgid "fog"
+msgstr ""
+
+#. 🌬 (U+1F32C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WIND_BLOWING_FACE\n"
+"LngText.text"
+msgid "wind"
+msgstr ""
+
+#. 🎗 (U+1F397), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REMINDER_RIBBON\n"
+"LngText.text"
+msgid "ribbon"
+msgstr ""
+
+#. 🎟 (U+1F39F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ADMISSION_TICKETS\n"
+"LngText.text"
+msgid "ticket2"
+msgstr ""
+
+#. 🎖 (U+1F396), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MILITARY_MEDAL\n"
+"LngText.text"
+msgid "medal2"
+msgstr ""
+
+#. 🏅 (U+1F3C5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPORTS_MEDAL\n"
+"LngText.text"
+msgid "medal"
+msgstr ""
+
+#. 🕹 (U+1F579), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"JOYSTICK\n"
+"LngText.text"
+msgid "joystick"
+msgstr ""
+
+#. 🖼 (U+1F5BC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_PICTURE\n"
+"LngText.text"
+msgid "picture"
+msgstr ""
+
+#. 🎙 (U+1F399), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STUDIO_MICROPHONE\n"
+"LngText.text"
+msgid "microphone2"
+msgstr ""
+
+#. 🎚 (U+1F39A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEVEL_SLIDER\n"
+"LngText.text"
+msgid "slider"
+msgstr ""
+
+#. 🎛 (U+1F39B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CONTROL_KNOBS\n"
+"LngText.text"
+msgid "control"
+msgstr ""
+
+#. 🖥 (U+1F5A5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESKTOP_COMPUTER\n"
+"LngText.text"
+msgid "computer2"
+msgstr ""
+
+#. 🖨 (U+1F5A8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINTER\n"
+"LngText.text"
+msgid "printer"
+msgstr ""
+
+#. 🖱 (U+1F5B1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse3"
+msgstr ""
+
+#. 🖲 (U+1F5B2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TRACKBALL\n"
+"LngText.text"
+msgid "trackball"
+msgstr ""
+
+#. 🎞 (U+1F39E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILM_FRAMES\n"
+"LngText.text"
+msgid "film"
+msgstr ""
+
+#. 📽 (U+1F4FD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILM_PROJECTOR\n"
+"LngText.text"
+msgid "projector"
+msgstr ""
+
+#. 📸 (U+1F4F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CAMERA_WITH_FLASH\n"
+"LngText.text"
+msgid "flash"
+msgstr ""
+
+#. 🕯 (U+1F56F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANDLE\n"
+"LngText.text"
+msgid "candle"
+msgstr ""
+
+#. 🗞 (U+1F5DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROLLED-UP_NEWSPAPER\n"
+"LngText.text"
+msgid "newspaper2"
+msgstr ""
+
+#. 🏷 (U+1F3F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LABEL\n"
+"LngText.text"
+msgid "label"
+msgstr ""
+
+#. 🗳 (U+1F5F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BALLOT\n"
+"LngText.text"
+msgid "ballot"
+msgstr ""
+
+#. 🖋 (U+1F58B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_FOUNTAIN_PEN\n"
+"LngText.text"
+msgid "pen2"
+msgstr ""
+
+#. 🖊 (U+1F58A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_BALLPOINT_PEN\n"
+"LngText.text"
+msgid "pen"
+msgstr ""
+
+#. 🖌 (U+1F58C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_PAINTBRUSH\n"
+"LngText.text"
+msgid "paintbrush"
+msgstr ""
+
+#. 🖍 (U+1F58D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_CRAYON\n"
+"LngText.text"
+msgid "crayon"
+msgstr ""
+
+#. 🗂 (U+1F5C2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARD_INDEX_DIVIDERS\n"
+"LngText.text"
+msgid "index"
+msgstr ""
+
+#. 🗒 (U+1F5D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIRAL_NOTE_PAD\n"
+"LngText.text"
+msgid "notepad"
+msgstr ""
+
+#. 🗓 (U+1F5D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIRAL_CALENDAR_PAD\n"
+"LngText.text"
+msgid "calendar3"
+msgstr ""
+
+#. 🖇 (U+1F587), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LINKED_PAPERCLIPS\n"
+"LngText.text"
+msgid "paperclip2"
+msgstr ""
+
+#. 🗃 (U+1F5C3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARD_FILE_BOX\n"
+"LngText.text"
+msgid "box"
+msgstr ""
+
+#. 🗄 (U+1F5C4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILE_CABINET\n"
+"LngText.text"
+msgid "cabinet"
+msgstr ""
+
+#. 🗑 (U+1F5D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WASTEBASKET\n"
+"LngText.text"
+msgid "wastebasket"
+msgstr ""
+
+#. 🗝 (U+1F5DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLD_KEY\n"
+"LngText.text"
+msgid "key2"
+msgstr ""
+
+#. 🛠 (U+1F6E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HAMMER_AND_WRENCH\n"
+"LngText.text"
+msgid "hammer and wrench"
+msgstr ""
+
+#. 🗡 (U+1F5E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DAGGER_KNIFE\n"
+"LngText.text"
+msgid "knife2"
+msgstr ""
+
+#. 🛡 (U+1F6E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHIELD\n"
+"LngText.text"
+msgid "shield"
+msgstr ""
+
+#. 🗜 (U+1F5DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COMPRESSION\n"
+"LngText.text"
+msgid "clamp"
+msgstr ""
+
+#. 🛏 (U+1F6CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BED\n"
+"LngText.text"
+msgid "bed"
+msgstr ""
+
+#. 🛋 (U+1F6CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COUCH_AND_LAMP\n"
+"LngText.text"
+msgid "couch"
+msgstr ""
+
+#. 🕉 (U+1F549), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OM_SYMBOL\n"
+"LngText.text"
+msgid "om"
+msgstr ""
+
+#. ⏸ (U+23F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOUBLE_VERTICAL_BAR\n"
+"LngText.text"
+msgid "pause"
+msgstr ""
+
+#. ⏹ (U+23F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_SQUARE_FOR_STOP\n"
+"LngText.text"
+msgid "stop2"
+msgstr ""
+
+#. ⏺ (U+23FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_CIRCLE_FOR_RECORD\n"
+"LngText.text"
+msgid "record"
+msgstr ""
+
+#. 🏴 (U+1F3F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WAVING_BLACK_FLAG\n"
+"LngText.text"
+msgid "flag"
+msgstr ""
+
+#. 🏳 (U+1F3F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WAVING_WHITE_FLAG\n"
+"LngText.text"
+msgid "flag2"
+msgstr ""
+
+#. 🗷 (U+1F5F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BOLD_SCRIPT_X\n"
+"LngText.text"
+msgid "checkbox4"
+msgstr ""
+
+#. 🛉 (U+1F6C9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOYS_SYMBOL\n"
+"LngText.text"
+msgid "boys"
+msgstr ""
+
+#. 🛈 (U+1F6C8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CIRCLED_INFORMATION_SOURCE\n"
+"LngText.text"
+msgid "information3"
+msgstr ""
+
+#. 🛊 (U+1F6CA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GIRLS_SYMBOL\n"
+"LngText.text"
+msgid "girls"
+msgstr ""
+
+#. 🛨 (U+1F6E8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_SMALL_AIRPLANE\n"
+"LngText.text"
+msgid "airplane4"
+msgstr ""
+
+#. 🛲 (U+1F6F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DIESEL_LOCOMOTIVE\n"
+"LngText.text"
+msgid "locomotive2"
+msgstr ""
+
+#. 🛧 (U+1F6E7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_AIRPLANE\n"
+"LngText.text"
+msgid "airplane3"
+msgstr ""
+
+#. 🛱 (U+1F6F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ONCOMING_FIRE_ENGINE\n"
+"LngText.text"
+msgid "fire engine2"
+msgstr ""
+
+#. 🛦 (U+1F6E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_MILITARY_AIRPLANE\n"
+"LngText.text"
+msgid "airplane5"
+msgstr ""
+
+#. 🛪 (U+1F6EA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NORTHEAST-POINTING_AIRPLANE\n"
+"LngText.text"
+msgid "airplane6"
+msgstr ""
+
+#. 🗭 (U+1F5ED), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_THOUGHT_BUBBLE\n"
+"LngText.text"
+msgid "bubble5"
+msgstr ""
+
+#. 🗱 (U+1F5F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHTNING_MOOD_BUBBLE\n"
+"LngText.text"
+msgid "bubble6"
+msgstr ""
+
+#. 🗬 (U+1F5EC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_THOUGHT_BUBBLE\n"
+"LngText.text"
+msgid "bubble7"
+msgstr ""
+
+#. 🗠 (U+1F5E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STOCK_CHART\n"
+"LngText.text"
+msgid "chart5"
+msgstr ""
+
+#. 🗟 (U+1F5DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGE_WITH_CIRCLED_TEXT\n"
+"LngText.text"
+msgid "page4"
+msgstr ""
+
+#. 🖎 (U+1F58E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_WRITING_HAND\n"
+"LngText.text"
+msgid "writing2"
+msgstr ""
+
+#. 🗦 (U+1F5E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_LEFT\n"
+"LngText.text"
+msgid "rays"
+msgstr ""
+
+#. 🎝 (U+1F39D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEAMED_DESCENDING_MUSICAL_NOTES\n"
+"LngText.text"
+msgid "notes3"
+msgstr ""
+
+#. 🔾 (U+1F53E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_RIGHT_SHADOWED_WHITE_CIRCLE\n"
+"LngText.text"
+msgid "circle3"
+msgstr ""
+
+#. 🎜 (U+1F39C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEAMED_ASCENDING_MUSICAL_NOTES\n"
+"LngText.text"
+msgid "notes4"
+msgstr ""
+
+#. 🕮 (U+1F56E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOOK\n"
+"LngText.text"
+msgid "book"
+msgstr ""
+
+#. 🗛 (U+1F5DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DECREASE_FONT_SIZE_SYMBOL\n"
+"LngText.text"
+msgid "font"
+msgstr ""
+
+#. 🔿 (U+1F53F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UPPER_RIGHT_SHADOWED_WHITE_CIRCLE\n"
+"LngText.text"
+msgid "circle4"
+msgstr ""
+
+#. 🕫 (U+1F56B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BULLHORN\n"
+"LngText.text"
+msgid "bullhorn"
+msgstr ""
+
+#. 🕬 (U+1F56C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BULLHORN_WITH_SOUND_WAVES\n"
+"LngText.text"
+msgid "bullhorn2"
+msgstr ""
+
+#. 🕻 (U+1F57B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_HAND_TELEPHONE_RECEIVER\n"
+"LngText.text"
+msgid "receiver2"
+msgstr ""
+
+#. 🕾 (U+1F57E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_TOUCHTONE_TELEPHONE\n"
+"LngText.text"
+msgid "phone3"
+msgstr ""
+
+#. 🕼 (U+1F57C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TELEPHONE_RECEIVER_WITH_PAGE\n"
+"LngText.text"
+msgid "receiver4"
+msgstr ""
+
+#. 🕽 (U+1F57D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_HAND_TELEPHONE_RECEIVER\n"
+"LngText.text"
+msgid "receiver3"
+msgstr ""
+
+#. 🕿 (U+1F57F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_TOUCHTONE_TELEPHONE\n"
+"LngText.text"
+msgid "phone4"
+msgstr ""
+
+#. 🖚 (U+1F59A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_LEFT_POINTING_INDEX\n"
+"LngText.text"
+msgid "left4"
+msgstr ""
+
+#. 🖏 (U+1F58F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TURNED_OK_HAND_SIGN\n"
+"LngText.text"
+msgid "ok2"
+msgstr ""
+
+#. 🖜 (U+1F59C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_LEFT_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "left5"
+msgstr ""
+
+#. 🗥 (U+1F5E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_BELOW\n"
+"LngText.text"
+msgid "rays2"
+msgstr ""
+
+#. 🖛 (U+1F59B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_RIGHT_POINTING_INDEX\n"
+"LngText.text"
+msgid "right4"
+msgstr ""
+
+#. 🖟 (U+1F59F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_DOWN_POINTING_INDEX\n"
+"LngText.text"
+msgid "down3"
+msgstr ""
+
+#. 🖞 (U+1F59E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_UP_POINTING_INDEX\n"
+"LngText.text"
+msgid "up3"
+msgstr ""
+
+#. 🌢 (U+1F322), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_DROPLET\n"
+"LngText.text"
+msgid "droplet2"
+msgstr ""
+
+#. 🎘 (U+1F398), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MUSICAL_KEYBOARD_WITH_JACKS\n"
+"LngText.text"
+msgid "synthesizer"
+msgstr ""
+
+#. 🎕 (U+1F395), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOUQUET_OF_FLOWERS\n"
+"LngText.text"
+msgid "bouquet2"
+msgstr ""
+
+#. 🎔 (U+1F394), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEART_WITH_TIP_ON_THE_LEFT\n"
+"LngText.text"
+msgid "heart2"
+msgstr ""
+
+#. 🕱 (U+1F571), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_SKULL_AND_CROSSBONES\n"
+"LngText.text"
+msgid "pirate"
+msgstr ""
+
+#. 🖀 (U+1F580), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TELEPHONE_ON_TOP_OF_MODEM\n"
+"LngText.text"
+msgid "modem"
+msgstr ""
+
+#. 🕲 (U+1F572), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NO_PIRACY\n"
+"LngText.text"
+msgid "no piracy"
+msgstr ""
+
+#. 🕅 (U+1F545), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SYMBOL_FOR_MARKS_CHAPTER\n"
+"LngText.text"
+msgid "marks chapter"
+msgstr ""
+
+#. 🕈 (U+1F548), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CELTIC_CROSS\n"
+"LngText.text"
+msgid "Celtic cross"
+msgstr ""
+
+#. 🖗 (U+1F597), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_DOWN_POINTING_LEFT_HAND_INDEX\n"
+"LngText.text"
+msgid "down4"
+msgstr ""
+
+#. 🖆 (U+1F586), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEN_OVER_STAMPED_ENVELOPE\n"
+"LngText.text"
+msgid "envelope4"
+msgstr ""
+
+#. 🖃 (U+1F583), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STAMPED_ENVELOPE\n"
+"LngText.text"
+msgid "envelope2"
+msgstr ""
+
+#. 🗤 (U+1F5E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_ABOVE\n"
+"LngText.text"
+msgid "rays3"
+msgstr ""
+
+#. 🖉 (U+1F589), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_PENCIL\n"
+"LngText.text"
+msgid "pencil4"
+msgstr ""
+
+#. 🖂 (U+1F582), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BACK_OF_ENVELOPE\n"
+"LngText.text"
+msgid "envelope3"
+msgstr ""
+
+#. 🖈 (U+1F588), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_PUSHPIN\n"
+"LngText.text"
+msgid "tack"
+msgstr ""
+
+#. 🖄 (U+1F584), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ENVELOPE_WITH_LIGHTNING\n"
+"LngText.text"
+msgid "envelope5"
+msgstr ""
+
+#. 🖁 (U+1F581), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLAMSHELL_MOBILE_PHONE\n"
+"LngText.text"
+msgid "mobile2"
+msgstr ""
+
+#. 🖅 (U+1F585), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FLYING_ENVELOPE\n"
+"LngText.text"
+msgid "envelope6"
+msgstr ""
+
+#. 🖘 (U+1F598), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_LEFT_POINTING_INDEX\n"
+"LngText.text"
+msgid "left6"
+msgstr ""
+
+#. 🖙 (U+1F599), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_RIGHT_POINTING_INDEX\n"
+"LngText.text"
+msgid "right5"
+msgstr ""
+
+#. 🗖 (U+1F5D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAXIMIZE\n"
+"LngText.text"
+msgid "maximize"
+msgstr ""
+
+#. 🗗 (U+1F5D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OVERLAP\n"
+"LngText.text"
+msgid "overlap"
+msgstr ""
+
+#. 🗏 (U+1F5CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGE\n"
+"LngText.text"
+msgid "page2"
+msgstr ""
+
+#. 🗐 (U+1F5D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGES\n"
+"LngText.text"
+msgid "pages"
+msgstr ""
+
+#. 🗘 (U+1F5D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOCKWISE_RIGHT_AND_LEFT_SEMICIRCLE_ARROWS\n"
+"LngText.text"
+msgid "arrows"
+msgstr ""
+
+#. 🗚 (U+1F5DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"INCREASE_FONT_SIZE_SYMBOL\n"
+"LngText.text"
+msgid "font2"
+msgstr ""
+
+#. 🗕 (U+1F5D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MINIMIZE\n"
+"LngText.text"
+msgid "minimize"
+msgstr ""
+
+#. 🗙 (U+1F5D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANCELLATION_X\n"
+"LngText.text"
+msgid "cancel"
+msgstr ""
+
+#. 🗔 (U+1F5D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESKTOP_WINDOW\n"
+"LngText.text"
+msgid "window"
+msgstr ""
+
+#. 🗌 (U+1F5CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_PAGE\n"
+"LngText.text"
+msgid "empty page"
+msgstr ""
+
+#. 🗋 (U+1F5CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_DOCUMENT\n"
+"LngText.text"
+msgid "empty document"
+msgstr ""
+
+#. 🗍 (U+1F5CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_PAGES\n"
+"LngText.text"
+msgid "empty pages"
+msgstr ""
+
+#. 🗎 (U+1F5CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT\n"
+"LngText.text"
+msgid "document"
+msgstr ""
+
+#. 🗆 (U+1F5C6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE_PAGE\n"
+"LngText.text"
+msgid "empty note page"
+msgstr ""
+
+#. 🗊 (U+1F5CA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE_PAD\n"
+"LngText.text"
+msgid "note pad"
+msgstr ""
+
+#. 🗈 (U+1F5C8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE\n"
+"LngText.text"
+msgid "note3"
+msgstr ""
+
+#. 🗇 (U+1F5C7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE_PAD\n"
+"LngText.text"
+msgid "empty note pad"
+msgstr ""
+
+#. 🗉 (U+1F5C9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE_PAGE\n"
+"LngText.text"
+msgid "note page"
+msgstr ""
+
+#. 🖸 (U+1F5B8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OPTICAL_DISC_ICON\n"
+"LngText.text"
+msgid "optical disc"
+msgstr ""
+
+#. 🗀 (U+1F5C0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOLDER\n"
+"LngText.text"
+msgid "folder3"
+msgstr ""
+
+#. 🖝 (U+1F59D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_RIGHT_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "right6"
+msgstr ""
+
+#. 🗁 (U+1F5C1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OPEN_FOLDER\n"
+"LngText.text"
+msgid "folder4"
+msgstr ""
+
+#. 🗅 (U+1F5C5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE\n"
+"LngText.text"
+msgid "empty note"
+msgstr ""
+
+#. 🖿 (U+1F5BF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_FOLDER\n"
+"LngText.text"
+msgid "folder5"
+msgstr ""
+
+#. 🖾 (U+1F5BE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_AN_X\n"
+"LngText.text"
+msgid "frame"
+msgstr ""
+
+#. 🖽 (U+1F5BD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_TILES\n"
+"LngText.text"
+msgid "frame2"
+msgstr ""
+
+#. 🖹 (U+1F5B9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_TEXT\n"
+"LngText.text"
+msgid "document2"
+msgstr ""
+
+#. 🖻 (U+1F5BB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_PICTURE\n"
+"LngText.text"
+msgid "document3"
+msgstr ""
+
+#. 🖺 (U+1F5BA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_TEXT_AND_PICTURE\n"
+"LngText.text"
+msgid "document4"
+msgstr ""
+
+#. 🖶 (U+1F5B6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINTER_ICON\n"
+"LngText.text"
+msgid "printer2"
+msgstr ""
+
+#. 🖷 (U+1F5B7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FAX_ICON\n"
+"LngText.text"
+msgid "fax2"
+msgstr ""
+
+#. 🖰 (U+1F5B0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TWO_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse4"
+msgstr ""
+
+#. 🖳 (U+1F5B3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLD_PERSONAL_COMPUTER\n"
+"LngText.text"
+msgid "pc"
+msgstr ""
+
+#. 🖵 (U+1F5B5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCREEN\n"
+"LngText.text"
+msgid "screen"
+msgstr ""
+
+#. 🖯 (U+1F5AF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ONE_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse5"
+msgstr ""
+
+#. 🖴 (U+1F5B4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HARD_DISK\n"
+"LngText.text"
+msgid "hard disk"
+msgstr ""
+
+#. 🖩 (U+1F5A9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POCKET_CALCULATOR\n"
+"LngText.text"
+msgid "calculator"
+msgstr ""
+
+#. 🖭 (U+1F5AD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TAPE_CARTRIDGE\n"
+"LngText.text"
+msgid "cartridge"
+msgstr ""
+
+#. 🖬 (U+1F5AC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SOFT_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy2"
+msgstr ""
+
+#. 🖫 (U+1F5AB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_HARD_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy3"
+msgstr ""
+
+#. 🖮 (U+1F5AE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WIRED_KEYBOARD\n"
+"LngText.text"
+msgid "keyboard2"
+msgstr ""
+
+#. 🖔 (U+1F594), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_VICTORY_HAND\n"
+"LngText.text"
+msgid "victory2"
+msgstr ""
+
+#. 🖧 (U+1F5A7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_NETWORKED_COMPUTERS\n"
+"LngText.text"
+msgid "network"
+msgstr ""
+
+#. 🖪 (U+1F5AA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_HARD_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy4"
+msgstr ""
+
+#. 🗢 (U+1F5E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIPS\n"
+"LngText.text"
+msgid "lips"
+msgstr ""
+
+#. 🖦 (U+1F5A6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KEYBOARD_AND_MOUSE\n"
+"LngText.text"
+msgid "keyboard3"
+msgstr ""
+
+#. 🖣 (U+1F5A3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_DOWN_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "down5"
+msgstr ""
+
+#. 🖡 (U+1F5A1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_DOWN_POINTING_INDEX\n"
+"LngText.text"
+msgid "down6"
+msgstr ""
+
+#. 📾 (U+1F4FE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PORTABLE_STEREO\n"
+"LngText.text"
+msgid "stereo"
+msgstr ""
+
+#. 🏶 (U+1F3F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_ROSETTE\n"
+"LngText.text"
+msgid "rosette2"
+msgstr ""
+
+#. 🏲 (U+1F3F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_PENNANT\n"
+"LngText.text"
+msgid "pennant"
+msgstr ""
+
+#. 🖠 (U+1F5A0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_UP_POINTING_INDEX\n"
+"LngText.text"
+msgid "up4"
+msgstr ""
+
+#. 🖢 (U+1F5A2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_UP_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "up5"
+msgstr ""
+
+#. 🏱 (U+1F3F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_PENNANT\n"
+"LngText.text"
+msgid "pennant2"
+msgstr ""
+
+#. 🕄 (U+1F544), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTCHED_RIGHT_SEMICIRCLE_WITH_THREE_DOTS\n"
+"LngText.text"
+msgid "feast2"
+msgstr ""
+
+#. 🖓 (U+1F593), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_THUMBS_DOWN_SIGN\n"
+"LngText.text"
+msgid "no2"
+msgstr ""
+
+#. 🖑 (U+1F591), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_RAISED_HAND_WITH_FINGERS_SPLAYED\n"
+"LngText.text"
+msgid "hand3"
+msgstr ""
+
+#. 🖒 (U+1F592), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_THUMBS_UP_SIGN\n"
+"LngText.text"
+msgid "yes2"
+msgstr ""
+
+#. 🕩 (U+1F569), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER_WITH_ONE_SOUND_WAVE\n"
+"LngText.text"
+msgid "speaker2"
+msgstr ""
+
+#. 🕆 (U+1F546), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_LATIN_CROSS\n"
+"LngText.text"
+msgid "Latin cross2"
+msgstr ""
+
+#. 🕇 (U+1F547), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEAVY_LATIN_CROSS\n"
+"LngText.text"
+msgid "Latin cross3"
+msgstr ""
+
+#. 🕨 (U+1F568), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER\n"
+"LngText.text"
+msgid "speaker3"
+msgstr ""
+
+#. 🕭 (U+1F56D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RINGING_BELL\n"
+"LngText.text"
+msgid "bell3"
+msgstr ""
+
+#. 🌣 (U+1F323), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN\n"
+"LngText.text"
+msgid "sun2"
+msgstr ""
+
+#. 🛇 (U+1F6C7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PROHIBITED_SIGN\n"
+"LngText.text"
+msgid "prohibited"
+msgstr ""
+
+#. 🛆 (U+1F6C6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TRIANGLE_WITH_ROUNDED_CORNERS\n"
+"LngText.text"
+msgid "triangle3"
+msgstr ""
+
+#. 🗫 (U+1F5EB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_SPEECH_BUBBLES\n"
+"LngText.text"
+msgid "bubble3"
+msgstr ""
+
+#. 🕪 (U+1F56A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER_WITH_THREE_SOUND_WAVES\n"
+"LngText.text"
+msgid "speaker4"
+msgstr ""
+
+#. 🗮 (U+1F5EE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_ANGER_BUBBLE\n"
+"LngText.text"
+msgid "bubble8"
+msgstr ""
+
+#. 🗧 (U+1F5E7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_RIGHT\n"
+"LngText.text"
+msgid "rays4"
+msgstr ""
+
+#. 🗲 (U+1F5F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHTNING_MOOD\n"
+"LngText.text"
+msgid "lightning2"
+msgstr ""
+
+#. 🗰 (U+1F5F0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOOD_BUBBLE\n"
+"LngText.text"
+msgid "bubble9"
+msgstr ""
+
+#. 🗹 (U+1F5F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BOLD_CHECK\n"
+"LngText.text"
+msgid "checkbox5"
+msgstr ""
+
+#. 🗴 (U+1F5F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_SCRIPT_X\n"
+"LngText.text"
+msgid "check mark4"
+msgstr ""
+
+#. 🗪 (U+1F5EA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TWO_SPEECH_BUBBLES\n"
+"LngText.text"
+msgid "bubble2"
+msgstr ""
+
+#. 🗶 (U+1F5F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOLD_SCRIPT_X\n"
+"LngText.text"
+msgid "x4"
+msgstr ""
+
+#. 🗩 (U+1F5E9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEECH_BUBBLE\n"
+"LngText.text"
+msgid "bubble10"
+msgstr ""
+
+#. 🗵 (U+1F5F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_SCRIPT_X\n"
+"LngText.text"
+msgid "checkbox6"
+msgstr ""
+
+#. 🗸 (U+1F5F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHT_CHECK_MARK\n"
+"LngText.text"
+msgid "check mark5"
+msgstr ""
+
+#. 🤗 (U+1F917), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HUGGING_FACE\n"
+"LngText.text"
+msgid "hugging"
+msgstr ""
+
+#. 🤔 (U+1F914), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THINKING_FACE\n"
+"LngText.text"
+msgid "thinking"
+msgstr ""
+
+#. 🙄 (U+1F644), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_ROLLING_EYES\n"
+"LngText.text"
+msgid "eye roll"
+msgstr ""
+
+#. 🤐 (U+1F910), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZIPPER-MOUTH_FACE\n"
+"LngText.text"
+msgid "zipper"
+msgstr ""
+
+#. 🙃 (U+1F643), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UPSIDE-DOWN_FACE\n"
+"LngText.text"
+msgid "upside-down"
+msgstr ""
+
+#. 🤑 (U+1F911), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MONEY-MOUTH_FACE\n"
+"LngText.text"
+msgid "money3"
+msgstr ""
+
+#. 🤒 (U+1F912), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_THERMOMETER\n"
+"LngText.text"
+msgid "thermometer2"
+msgstr ""
+
+#. 🤕 (U+1F915), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_HEAD-BANDAGE\n"
+"LngText.text"
+msgid "bandage"
+msgstr ""
+
+#. 🤓 (U+1F913), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NERD_FACE\n"
+"LngText.text"
+msgid "nerd"
+msgstr ""
+
+#. 🤖 (U+1F916), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROBOT_FACE\n"
+"LngText.text"
+msgid "robot"
+msgstr ""
+
+#. 🏻 (U+1F3FB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-1-2\n"
+"LngText.text"
+msgid "skin1"
+msgstr ""
+
+#. 🏼 (U+1F3FC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-3\n"
+"LngText.text"
+msgid "skin2"
+msgstr ""
+
+#. 🏽 (U+1F3FD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-4\n"
+"LngText.text"
+msgid "skin3"
+msgstr ""
+
+#. 🏾 (U+1F3FE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-5\n"
+"LngText.text"
+msgid "skin4"
+msgstr ""
+
+#. 🏿 (U+1F3FF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-6\n"
+"LngText.text"
+msgid "skin5"
+msgstr ""
+
+#. 🤘 (U+1F918), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIGN_OF_THE_HORNS\n"
+"LngText.text"
+msgid "horns"
+msgstr ""
+
+#. 📿 (U+1F4FF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRAYER_BEADS\n"
+"LngText.text"
+msgid "beads"
+msgstr ""
+
+#. 🦁 (U+1F981), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LION_FACE\n"
+"LngText.text"
+msgid "lion"
+msgstr ""
+
+#. 🦄 (U+1F984), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UNICORN_FACE\n"
+"LngText.text"
+msgid "unicorn"
+msgstr ""
+
+#. 🦃 (U+1F983), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TURKEY\n"
+"LngText.text"
+msgid "turkey"
+msgstr ""
+
+#. 🦀 (U+1F980), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRAB\n"
+"LngText.text"
+msgid "crab"
+msgstr ""
+
+#. 🦂 (U+1F982), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCORPION\n"
+"LngText.text"
+msgid "scorpion"
+msgstr ""
+
+#. 🧀 (U+1F9C0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHEESE_WEDGE\n"
+"LngText.text"
+msgid "cheese"
+msgstr ""
+
+#. 🌭 (U+1F32D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOT_DOG\n"
+"LngText.text"
+msgid "hot dog"
+msgstr ""
+
+#. 🌮 (U+1F32E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TACO\n"
+"LngText.text"
+msgid "taco"
+msgstr ""
+
+#. 🌯 (U+1F32F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BURRITO\n"
+"LngText.text"
+msgid "burrito"
+msgstr ""
+
+#. 🍿 (U+1F37F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POPCORN\n"
+"LngText.text"
+msgid "popcorn"
+msgstr ""
+
+#. 🍾 (U+1F37E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOTTLE_WITH_POPPING_CORK\n"
+"LngText.text"
+msgid "party4"
+msgstr ""
+
+#. 🏺 (U+1F3FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AMPHORA\n"
+"LngText.text"
+msgid "amphora"
+msgstr ""
+
+#. 🕌 (U+1F54C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOSQUE\n"
+"LngText.text"
+msgid "mosque"
+msgstr ""
+
+#. 🕍 (U+1F54D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SYNAGOGUE\n"
+"LngText.text"
+msgid "synagogue"
+msgstr ""
+
+#. 🕋 (U+1F54B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KAABA\n"
+"LngText.text"
+msgid "Kaaba"
+msgstr ""
+
+#. 🏐 (U+1F3D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"VOLLEYBALL\n"
+"LngText.text"
+msgid "volleyball"
+msgstr ""
+
+#. 🏏 (U+1F3CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRICKET_BAT_AND_BALL\n"
+"LngText.text"
+msgid "cricket"
+msgstr ""
+
+#. 🏑 (U+1F3D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FIELD_HOCKEY_STICK_AND_BALL\n"
+"LngText.text"
+msgid "hockey2"
+msgstr ""
+
+#. 🏒 (U+1F3D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ICE_HOCKEY_STICK_AND_PUCK\n"
+"LngText.text"
+msgid "hockey"
+msgstr ""
+
+#. 🏓 (U+1F3D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TABLE_TENNIS_PADDLE_AND_BALL\n"
+"LngText.text"
+msgid "ping pong"
+msgstr ""
+
+#. 🏸 (U+1F3F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BADMINTON_RACQUET_AND_SHUTTLECOCK\n"
+"LngText.text"
+msgid "badminton"
+msgstr ""
+
+#. 🏹 (U+1F3F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOW_AND_ARROW\n"
+"LngText.text"
+msgid "bow"
+msgstr ""
+
+#. 🛐 (U+1F6D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PLACE_OF_WORSHIP\n"
+"LngText.text"
+msgid "worship"
+msgstr ""
+
+#. 🕎 (U+1F54E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MENORAH_WITH_NINE_BRANCHES\n"
+"LngText.text"
+msgid "menorah"
+msgstr ""
+
+#. 🤣 (U+1F923), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROLLING_ON_THE_FLOOR_LAUGHING\n"
+"LngText.text"
+msgid "lol"
+msgstr ""
+
+#. 🤤 (U+1F924), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DROOLING_FACE\n"
+"LngText.text"
+msgid "drool"
+msgstr ""
+
+#. 🤢 (U+1F922), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NAUSEATED_FACE\n"
+"LngText.text"
+msgid "nausea"
+msgstr ""
+
+#. 🤧 (U+1F927), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SNEEZING_FACE\n"
+"LngText.text"
+msgid "sneeze"
+msgstr ""
+
+#. 🤠 (U+1F920), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COWBOY_HAT_FACE\n"
+"LngText.text"
+msgid "cowboy"
+msgstr ""
+
+#. 🤡 (U+1F921), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOWN_FACE\n"
+"LngText.text"
+msgid "clown"
+msgstr ""
+
+#. 🤥 (U+1F925), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LYING_FACE\n"
+"LngText.text"
+msgid "liar"
+msgstr ""
+
+#. 🤴 (U+1F934), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINCE\n"
+"LngText.text"
+msgid "prince"
+msgstr ""
+
+#. 🤵 (U+1F935), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_IN_TUXEDO\n"
+"LngText.text"
+msgid "groom"
+msgstr ""
+
+#. 🤰 (U+1F930), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PREGNANT_WOMAN\n"
+"LngText.text"
+msgid "pregnant"
+msgstr ""
+
+#. 🤶 (U+1F936), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MRS._CLAUS\n"
+"LngText.text"
+msgid "mrs. claus"
+msgstr ""
+
+#. 🤦 (U+1F926), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_FACEPALMING\n"
+"LngText.text"
+msgid "facepalm"
+msgstr ""
+
+#. 🤷 (U+1F937), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_SHRUGGING\n"
+"LngText.text"
+msgid "shrugging"
+msgstr ""
+
+#. 🕺 (U+1F57A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_DANCING\n"
+"LngText.text"
+msgid "dancer2"
+msgstr ""
+
+#. 🤺 (U+1F93A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_FENCING\n"
+"LngText.text"
+msgid "fencer"
+msgstr ""
+
+#. 🤸 (U+1F938), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_CARTWHEELING\n"
+"LngText.text"
+msgid "gymnast"
+msgstr ""
+
+#. 🤼 (U+1F93C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEOPLE_WRESTLING\n"
+"LngText.text"
+msgid "wrestling"
+msgstr ""
+
+#. 🤽 (U+1F93D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_PLAYING_WATER_POLO\n"
+"LngText.text"
+msgid "water polo"
+msgstr ""
+
+#. 🤾 (U+1F93E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_PLAYING_HANDBALL\n"
+"LngText.text"
+msgid "handball"
+msgstr ""
+
+#. 🤹 (U+1F939), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_JUGGLING\n"
+"LngText.text"
+msgid "juggling"
+msgstr ""
+
+#. 🤳 (U+1F933), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SELFIE\n"
+"LngText.text"
+msgid "selfie"
+msgstr ""
+
+#. 🤞 (U+1F91E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CROSSED_FINGERS\n"
+"LngText.text"
+msgid "good luck"
+msgstr ""
+
+#. 🤙 (U+1F919), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CALL_ME_HAND\n"
+"LngText.text"
+msgid "call"
+msgstr ""
+
+#. 🤛 (U+1F91B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT-FACING_FIST\n"
+"LngText.text"
+msgid "fist3"
+msgstr ""
+
+#. 🤜 (U+1F91C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT-FACING_FIST\n"
+"LngText.text"
+msgid "fist4"
+msgstr ""
+
+#. 🤚 (U+1F91A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_BACK_OF_HAND\n"
+"LngText.text"
+msgid "hand4"
+msgstr ""
+
+#. 🤝 (U+1F91D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HANDSHAKE\n"
+"LngText.text"
+msgid "handshake"
+msgstr ""
+
+#. 🖤 (U+1F5A4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_HEART\n"
+"LngText.text"
+msgid "black heart"
+msgstr ""
+
+#. 🦍 (U+1F98D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GORILLA\n"
+"LngText.text"
+msgid "gorilla"
+msgstr ""
+
+#. 🦊 (U+1F98A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOX_FACE\n"
+"LngText.text"
+msgid "fox"
+msgstr ""
+
+#. 🦌 (U+1F98C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DEER\n"
+"LngText.text"
+msgid "deer"
+msgstr ""
+
+#. 🦏 (U+1F98F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RHINOCEROS\n"
+"LngText.text"
+msgid "rhinoceros"
+msgstr ""
+
+#. 🦇 (U+1F987), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BAT\n"
+"LngText.text"
+msgid "bat"
+msgstr ""
+
+#. 🦅 (U+1F985), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EAGLE\n"
+"LngText.text"
+msgid "eagle"
+msgstr ""
+
+#. 🦆 (U+1F986), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DUCK\n"
+"LngText.text"
+msgid "duck"
+msgstr ""
+
+#. 🦉 (U+1F989), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OWL\n"
+"LngText.text"
+msgid "owl"
+msgstr ""
+
+#. 🦎 (U+1F98E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIZARD\n"
+"LngText.text"
+msgid "lizard"
+msgstr ""
+
+#. 🦈 (U+1F988), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHARK\n"
+"LngText.text"
+msgid "shark"
+msgstr ""
+
+#. 🦐 (U+1F990), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHRIMP\n"
+"LngText.text"
+msgid "shrimp"
+msgstr ""
+
+#. 🦑 (U+1F991), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SQUID\n"
+"LngText.text"
+msgid "squid"
+msgstr ""
+
+#. 🦋 (U+1F98B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BUTTERFLY\n"
+"LngText.text"
+msgid "butterfly"
+msgstr ""
+
+#. 🥀 (U+1F940), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WILTED_FLOWER\n"
+"LngText.text"
+msgid "flower2"
+msgstr ""
+
+#. 🥝 (U+1F95D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KIWI_FRUIT\n"
+"LngText.text"
+msgid "kiwi"
+msgstr ""
+
+#. 🥑 (U+1F951), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AVOCADO\n"
+"LngText.text"
+msgid "avocado"
+msgstr ""
+
+#. 🥔 (U+1F954), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POTATO\n"
+"LngText.text"
+msgid "potato"
+msgstr ""
+
+#. 🥕 (U+1F955), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARROT\n"
+"LngText.text"
+msgid "carrot"
+msgstr ""
+
+#. 🥒 (U+1F952), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUCUMBER\n"
+"LngText.text"
+msgid "cucumber"
+msgstr ""
+
+#. 🥜 (U+1F95C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEANUTS\n"
+"LngText.text"
+msgid "peanuts"
+msgstr ""
+
+#. 🥐 (U+1F950), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CROISSANT\n"
+"LngText.text"
+msgid "croissant"
+msgstr ""
+
+#. 🥖 (U+1F956), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BAGUETTE_BREAD\n"
+"LngText.text"
+msgid "bread2"
+msgstr ""
+
+#. 🥞 (U+1F95E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PANCAKES\n"
+"LngText.text"
+msgid "pancakes"
+msgstr ""
+
+#. 🥓 (U+1F953), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BACON\n"
+"LngText.text"
+msgid "bacon"
+msgstr ""
+
+#. 🥙 (U+1F959), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STUFFED_FLATBREAD\n"
+"LngText.text"
+msgid "flatbread"
+msgstr ""
+
+#. 🥚 (U+1F95A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EGG\n"
+"LngText.text"
+msgid "egg"
+msgstr ""
+
+#. 🥘 (U+1F958), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHALLOW_PAN_OF_FOOD\n"
+"LngText.text"
+msgid "food"
+msgstr ""
+
+#. 🥗 (U+1F957), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GREEN_SALAD\n"
+"LngText.text"
+msgid "salad"
+msgstr ""
+
+#. 🥛 (U+1F95B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GLASS_OF_MILK\n"
+"LngText.text"
+msgid "milk"
+msgstr ""
+
+#. 🥂 (U+1F942), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLINKING_GLASSES\n"
+"LngText.text"
+msgid "party3"
+msgstr ""
+
+#. 🥃 (U+1F943), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TUMBLER_GLASS\n"
+"LngText.text"
+msgid "glass3"
+msgstr ""
+
+#. 🥄 (U+1F944), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPOON\n"
+"LngText.text"
+msgid "spoon"
+msgstr ""
+
+#. 🛴 (U+1F6F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCOOTER\n"
+"LngText.text"
+msgid "scooter"
+msgstr ""
+
+#. 🛵 (U+1F6F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTOR_SCOOTER\n"
+"LngText.text"
+msgid "scooter2"
+msgstr ""
+
+#. 🛑 (U+1F6D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OCTAGONAL_SIGN\n"
+"LngText.text"
+msgid "stop"
+msgstr ""
+
+#. 🛶 (U+1F6F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANOE\n"
+"LngText.text"
+msgid "canoe"
+msgstr ""
+
+#. 🥇 (U+1F947), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"1ST_PLACE_MEDAL\n"
+"LngText.text"
+msgid "gold"
+msgstr ""
+
+#. 🥈 (U+1F948), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"2ND_PLACE_MEDAL\n"
+"LngText.text"
+msgid "silver"
+msgstr ""
+
+#. 🥉 (U+1F949), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"3RD_PLACE_MEDAL\n"
+"LngText.text"
+msgid "bronze"
+msgstr ""
+
+#. 🥊 (U+1F94A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOXING_GLOVE\n"
+"LngText.text"
+msgid "boxing"
+msgstr ""
+
+#. 🥋 (U+1F94B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MARTIAL_ARTS_UNIFORM\n"
+"LngText.text"
+msgid "judo"
+msgstr ""
+
+#. 🥅 (U+1F945), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GOAL_NET\n"
+"LngText.text"
+msgid "soccer2"
+msgstr ""
+
+#. 🥁 (U+1F941), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DRUM_WITH_DRUMSTICKS\n"
+"LngText.text"
+msgid "drum2"
+msgstr ""
+
+#. 🛒 (U+1F6D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOPPING_TROLLEY\n"
+"LngText.text"
+msgid "cart"
+msgstr ""
+
+#. 🤩 (U+1F929), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GRINNING_FACE_WITH_STAR_EYES\n"
+"LngText.text"
+msgid "excited"
+msgstr ""
+
+#. 🤨 (U+1F928), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_ONE_EYEBROW_RAISED\n"
+"LngText.text"
+msgid "eyebrow"
+msgstr ""
+
+#. 🤯 (U+1F92F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOCKED_FACE_WITH_EXPLODING_HEAD\n"
+"LngText.text"
+msgid "shocked"
+msgstr ""
+
+#. 🤪 (U+1F92A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GRINNING_FACE_WITH_ONE_LARGE_AND_ONE_SMALL_EYE\n"
+"LngText.text"
+msgid "zany"
+msgstr ""
+
+#. 🤬 (U+1F92C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SERIOUS_FACE_WITH_SYMBOLS_COVERING_MOUTH\n"
+"LngText.text"
+msgid "cursing"
+msgstr ""
+
+#. 🤮 (U+1F92E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_OPEN_MOUTH_VOMITING\n"
+"LngText.text"
+msgid "vomit"
+msgstr ""
+
+#. 🤫 (U+1F92B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_FINGER_COVERING_CLOSED_LIPS\n"
+"LngText.text"
+msgid "hush"
+msgstr ""
+
+#. 🤭 (U+1F92D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SMILING_FACE_WITH_SMILING_EYES_AND_HAND_COVERING_MOUTH\n"
+"LngText.text"
+msgid "smiling4"
+msgstr ""
+
+#. 🧐 (U+1F9D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_MONOCLE\n"
+"LngText.text"
+msgid "monocle"
+msgstr ""
+
+#. 🧒 (U+1F9D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHILD\n"
+"LngText.text"
+msgid "child"
+msgstr ""
+
+#. 🧑 (U+1F9D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ADULT\n"
+"LngText.text"
+msgid "adult"
+msgstr ""
+
+#. 🧓 (U+1F9D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLDER_ADULT\n"
+"LngText.text"
+msgid "old"
+msgstr ""
+
+#. 🧕 (U+1F9D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_WITH_HEADSCARF\n"
+"LngText.text"
+msgid "headscarf"
+msgstr ""
+
+#. 🧔 (U+1F9D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEARDED_PERSON\n"
+"LngText.text"
+msgid "beard"
+msgstr ""
+
+#. 🤱 (U+1F931), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BREAST-FEEDING\n"
+"LngText.text"
+msgid "baby3"
+msgstr ""
+
+#. 🧙 (U+1F9D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAGE\n"
+"LngText.text"
+msgid "mage"
+msgstr ""
+
+#. 🧚 (U+1F9DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FAIRY\n"
+"LngText.text"
+msgid "fairy"
+msgstr ""
+
+#. 🧛 (U+1F9DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"VAMPIRE\n"
+"LngText.text"
+msgid "vampire"
+msgstr ""
+
+#. 🧜 (U+1F9DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MERPERSON\n"
+"LngText.text"
+msgid "merperson"
+msgstr ""
+
+#. 🧝 (U+1F9DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ELF\n"
+"LngText.text"
+msgid "elf"
+msgstr ""
+
+#. 🧞 (U+1F9DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GENIE\n"
+"LngText.text"
+msgid "genie"
+msgstr ""
+
+#. 🧟 (U+1F9DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZOMBIE\n"
+"LngText.text"
+msgid "zombie"
+msgstr ""
+
+#. 🧖 (U+1F9D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_IN_STEAMY_ROOM\n"
+"LngText.text"
+msgid "sauna"
+msgstr ""
+
+#. 🧗 (U+1F9D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_CLIMBING\n"
+"LngText.text"
+msgid "climber"
+msgstr ""
+
+#. 🧘 (U+1F9D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_IN_LOTUS_POSITION\n"
+"LngText.text"
+msgid "yoga"
+msgstr ""
+
+#. 🤟 (U+1F91F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"I_LOVE_YOU_HAND_SIGN\n"
+"LngText.text"
+msgid "love2"
+msgstr ""
+
+#. 🤲 (U+1F932), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PALMS_UP_TOGETHER\n"
+"LngText.text"
+msgid "palm2"
+msgstr ""
+
+#. 🧠 (U+1F9E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BRAIN\n"
+"LngText.text"
+msgid "brain"
+msgstr ""
+
+#. 🧡 (U+1F9E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ORANGE_HEART\n"
+"LngText.text"
+msgid "orange heart"
+msgstr ""
+
+#. 🧣 (U+1F9E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCARF\n"
+"LngText.text"
+msgid "scarf"
+msgstr ""
+
+#. 🧤 (U+1F9E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GLOVES\n"
+"LngText.text"
+msgid "gloves"
+msgstr ""
+
+#. 🧥 (U+1F9E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COAT\n"
+"LngText.text"
+msgid "coat"
+msgstr ""
+
+#. 🧦 (U+1F9E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SOCKS\n"
+"LngText.text"
+msgid "socks"
+msgstr ""
+
+#. 🧢 (U+1F9E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BILLED_CAP\n"
+"LngText.text"
+msgid "cap"
+msgstr ""
+
+#. 🦓 (U+1F993), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZEBRA\n"
+"LngText.text"
+msgid "zebra"
+msgstr ""
+
+#. 🦒 (U+1F992), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GIRAFFE\n"
+"LngText.text"
+msgid "giraffe"
+msgstr ""
+
+#. 🦔 (U+1F994), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEDGEHOG\n"
+"LngText.text"
+msgid "hedgehog"
+msgstr ""
+
+#. 🦕 (U+1F995), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SAUROPOD\n"
+"LngText.text"
+msgid "dinosaur"
+msgstr ""
+
+#. 🦖 (U+1F996), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"T-REX\n"
+"LngText.text"
+msgid "dinosaur2"
+msgstr ""
+
+#. 🦗 (U+1F997), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRICKET\n"
+"LngText.text"
+msgid "cricket2"
+msgstr ""
+
+#. 🥥 (U+1F965), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COCONUT\n"
+"LngText.text"
+msgid "coconut"
+msgstr ""
+
+#. 🥦 (U+1F966), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BROCCOLI\n"
+"LngText.text"
+msgid "broccoli"
+msgstr ""
+
+#. 🥨 (U+1F968), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRETZEL\n"
+"LngText.text"
+msgid "pretzel"
+msgstr ""
+
+#. 🥩 (U+1F969), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUT_OF_MEAT\n"
+"LngText.text"
+msgid "steak"
+msgstr ""
+
+#. 🥪 (U+1F96A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SANDWICH\n"
+"LngText.text"
+msgid "sandwich"
+msgstr ""
+
+#. 🥣 (U+1F963), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOWL_WITH_SPOON\n"
+"LngText.text"
+msgid "bowl"
+msgstr ""
+
+#. 🥫 (U+1F96B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANNED_FOOD\n"
+"LngText.text"
+msgid "can"
+msgstr ""
+
+#. 🥟 (U+1F95F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DUMPLING\n"
+"LngText.text"
+msgid "dumpling"
+msgstr ""
+
+#. 🥠 (U+1F960), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FORTUNE_COOKIE\n"
+"LngText.text"
+msgid "cookie2"
+msgstr ""
+
+#. 🥡 (U+1F961), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TAKEOUT_BOX\n"
+"LngText.text"
+msgid "takeout"
+msgstr ""
+
+#. 🥧 (U+1F967), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PIE\n"
+"LngText.text"
+msgid "pie"
+msgstr ""
+
+#. 🥤 (U+1F964), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUP_WITH_STRAW\n"
+"LngText.text"
+msgid "drink"
+msgstr ""
+
+#. 🥢 (U+1F962), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHOPSTICKS\n"
+"LngText.text"
+msgid "chopsticks"
+msgstr ""
+
+#. 🛸 (U+1F6F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FLYING_SAUCER\n"
+"LngText.text"
+msgid "ufo"
+msgstr ""
+
+#. 🛷 (U+1F6F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLED\n"
+"LngText.text"
+msgid "sled"
+msgstr ""
+
+#. 🥌 (U+1F94C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CURLING_STONE\n"
+"LngText.text"
+msgid "curling"
+msgstr ""
+
+#. ₿ (U+20BF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BITCOIN_SIGN\n"
+"LngText.text"
+msgid "bitcoin"
+msgstr ""
+
#. ½ (U+000BD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/sbasic/shared.po b/source/ast/helpcontent2/source/text/sbasic/shared.po
index 8df66e83273..4534589a32f 100644
--- a/source/ast/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ast/helpcontent2/source/text/sbasic/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: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: 2016-11-22 16:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -15229,7 +15229,7 @@ msgctxt ""
"03040000.xhp\n"
"par_id111512312705893\n"
"help.text"
-msgid "The following constants are avalable when VBA compatibility mode is enabled"
+msgid "The following constants are available when VBA compatibility mode is enabled"
msgstr ""
#: 03040000.xhp
@@ -15253,15 +15253,7 @@ msgctxt ""
"03040000.xhp\n"
"par_id991512312965968\n"
"help.text"
-msgid "Desccription"
-msgstr ""
-
-#: 03040000.xhp
-msgctxt ""
-"03040000.xhp\n"
-"par_id241512313723033\n"
-"help.text"
-msgid "\\x0D (13)"
+msgid "Description"
msgstr ""
#: 03040000.xhp
@@ -16109,8 +16101,8 @@ msgctxt ""
"03060300.xhp\n"
"tit\n"
"help.text"
-msgid "Imp-Operator [Runtime]"
-msgstr "Operador Imp [Execución]"
+msgid "Imp Operator [Runtime]"
+msgstr ""
#: 03060300.xhp
msgctxt ""
@@ -16125,8 +16117,8 @@ msgctxt ""
"03060300.xhp\n"
"hd_id3156024\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Imp-Operator [Runtime]\">Imp Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Imp-Operator [Runtime]\">Operador Imp [Execución]</link>"
+msgid "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Imp Operator [Runtime]\">Imp Operator [Runtime]</link>"
+msgstr ""
#: 03060300.xhp
msgctxt ""
@@ -16245,8 +16237,8 @@ msgctxt ""
"03060400.xhp\n"
"tit\n"
"help.text"
-msgid "Not-Operator [Runtime]"
-msgstr "Operador Not [Execución]"
+msgid "Not Operator [Runtime]"
+msgstr ""
#: 03060400.xhp
msgctxt ""
@@ -16261,8 +16253,8 @@ msgctxt ""
"03060400.xhp\n"
"hd_id3156024\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Not-Operator [Runtime]\">Not-Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Not-Operator [Runtime]\">Operador Not [Execución]</link>"
+msgid "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Not Operator [Runtime]\">Not Operator [Runtime]</link>"
+msgstr ""
#: 03060400.xhp
msgctxt ""
@@ -16373,8 +16365,8 @@ msgctxt ""
"03060500.xhp\n"
"tit\n"
"help.text"
-msgid "Or-Operator [Runtime]"
-msgstr "Operador Or [Execución]"
+msgid "Or Operator [Runtime]"
+msgstr ""
#: 03060500.xhp
msgctxt ""
@@ -16389,8 +16381,8 @@ msgctxt ""
"03060500.xhp\n"
"hd_id3150986\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060500.xhp\" name=\"Or-Operator [Runtime]\">Or Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03060500.xhp\" name=\"Or-Operator [Runtime]\">Operador Or [Execución]</link>"
+msgid "<link href=\"text/sbasic/shared/03060500.xhp\" name=\"Or Operator [Runtime]\">Or Operator [Runtime]</link>"
+msgstr ""
#: 03060500.xhp
msgctxt ""
@@ -17053,8 +17045,8 @@ msgctxt ""
"03070600.xhp\n"
"tit\n"
"help.text"
-msgid "Mod-Operator [Runtime]"
-msgstr "Operador Mod [Execución]"
+msgid "Mod Operator [Runtime]"
+msgstr ""
#: 03070600.xhp
msgctxt ""
@@ -17069,8 +17061,8 @@ msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod-Operator [Runtime]\">Mod Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod-Operator [Runtime]\">Operador Mod [Execución]</link>"
+msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator [Runtime]\">Mod Operator [Runtime]</link>"
+msgstr ""
#: 03070600.xhp
msgctxt ""
@@ -20477,8 +20469,8 @@ msgctxt ""
"03090203.xhp\n"
"tit\n"
"help.text"
-msgid "While...Wend Statement[Runtime]"
-msgstr "Instrucción While...Wend [Execución]"
+msgid "While...Wend Statement [Runtime]"
+msgstr ""
#: 03090203.xhp
msgctxt ""
@@ -20493,8 +20485,8 @@ msgctxt ""
"03090203.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement[Runtime]\">While...Wend Statement[Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement[Runtime]\">Instrucción While...Wend [Execución]</link>"
+msgid "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement [Runtime]\">While...Wend Statement [Runtime]</link>"
+msgstr ""
#: 03090203.xhp
msgctxt ""
@@ -26085,7 +26077,7 @@ msgctxt ""
"03103350.xhp\n"
"hd_id3145090\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement [Runtime]\">Option VBASupport Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option VBASupport Statement [Runtime]\">Option VBASupport Statement [Runtime]</link>"
msgstr ""
#: 03103350.xhp
@@ -26397,8 +26389,8 @@ msgctxt ""
"03103600.xhp\n"
"hd_id3143267\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function[Runtime]\">TypeName Function; VarType Function[Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function[Runtime]\">Función TypeName; Función VarType [Execución]</link>"
+msgid "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function [Runtime]\">TypeName Function; VarType Function [Runtime]</link>"
+msgstr ""
#: 03103600.xhp
msgctxt ""
@@ -26621,8 +26613,8 @@ msgctxt ""
"03103700.xhp\n"
"hd_id3154422\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement[Runtime]\">Set Statement[Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement[Runtime]\">Instrucción Set [Execución]</link>"
+msgid "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement [Runtime]\">Set Statement [Runtime]</link>"
+msgstr ""
#: 03103700.xhp
msgctxt ""
@@ -26877,8 +26869,8 @@ msgctxt ""
"03104000.xhp\n"
"hd_id3153527\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing function [Runtime]\">IsMissing function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing function [Runtime]\">Función IsMissing [Execución]</link>"
+msgid "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing Function [Runtime]\">IsMissing Function [Runtime]</link>"
+msgstr ""
#: 03104000.xhp
msgctxt ""
@@ -29144,6 +29136,14 @@ msgctxt ""
msgid "' displays for example 6,328.20 in English locale, 6.328,20 in German locale."
msgstr "' por exemplu, amuesa 6,328.20 n'entornu llocal inglés y 6.328,20 n'entornu llocal alemán"
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id381513082126889\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020301.xhp\" name=\"number format code\">Number format codes in Calc</link>"
+msgstr ""
+
#: 03120302.xhp
msgctxt ""
"03120302.xhp\n"
@@ -32853,8 +32853,8 @@ msgctxt ""
"03132200.xhp\n"
"hd_id3155342\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent [Runtime]\">ThisComponent [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent [Runtime]\">Instrucción ThisComponent [Execución]</link>"
+msgid "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent Statement [Runtime]\">ThisComponent Statement [Runtime]</link>"
+msgstr ""
#: 03132200.xhp
msgctxt ""
@@ -34709,7 +34709,7 @@ msgctxt ""
"03150001.xhp\n"
"par_id801512153944376\n"
"help.text"
-msgid "Tueday"
+msgid "Tuesday"
msgstr ""
#: 03150001.xhp
diff --git a/source/ast/helpcontent2/source/text/scalc/01.po b/source/ast/helpcontent2/source/text/scalc/01.po
index 10b62c78416..83d2f3cd4fe 100644
--- a/source/ast/helpcontent2/source/text/scalc/01.po
+++ b/source/ast/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ 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: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
"PO-Revision-Date: 2016-12-22 18:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -7124,6 +7124,14 @@ msgstr "Sol supuestu de que los conteníos de les caxelles sían: A1=<item type=
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
+"par_id461513468030965\n"
+"help.text"
+msgid "Because of the iterative method used, it is possible for IRR to fail and return <link href=\"text/scalc/05/02140000.xhp\" name=\"Error 523\">Error 523</link>, with \"Error: Calculation does not converge\" in the status bar. In that case, try another value for Guess."
+msgstr ""
+
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
"bm_id3151012\n"
"help.text"
msgid "<bookmark_value>calculating; interests for unchanged amortization installments</bookmark_value> <bookmark_value>interests for unchanged amortization installments</bookmark_value> <bookmark_value>ISPMT function</bookmark_value>"
@@ -52198,8 +52206,8 @@ msgctxt ""
"12040201.xhp\n"
"hd_id3148492\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">More</link>"
-msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">Más</link>"
+msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"Options\">Options</link>"
+msgstr ""
#: 12040201.xhp
msgctxt ""
@@ -56302,7 +56310,7 @@ msgctxt ""
"data_form.xhp\n"
"par_id221512503284514\n"
"help.text"
-msgid "To be effective, the Calc data table should have a header row, where each cell contents is the label of the column. The header cells contents becomes the label of each data field in the form."
+msgid "To be effective, the Calc data table should have a header row, where each cell contents is the label of the column. The header cells contents become the label of each data field in the form."
msgstr ""
#: data_form.xhp
@@ -56326,7 +56334,7 @@ msgctxt ""
"data_form.xhp\n"
"par_id11512503369875\n"
"help.text"
-msgid "Choose <item type=\"menutiem\">Data - Form...</item>."
+msgid "Choose <item type=\"menuitem\">Data - Form...</item>."
msgstr ""
#: data_form.xhp
@@ -56430,7 +56438,7 @@ msgctxt ""
"data_form.xhp\n"
"par_id181512558987528\n"
"help.text"
-msgid "To reopen the form dialog, place the cursor on the header row and open the form. The displayed record in the form dialog is the fisrt data record. Move to the last record before entering new data otherwise the current record will be edited."
+msgid "To reopen the form dialog, place the cursor on the header row and open the form. The displayed record in the form dialog is the first data record. Move to the last record before entering new data otherwise the current record will be edited."
msgstr ""
#: data_form.xhp
@@ -65542,7 +65550,7 @@ msgctxt ""
"statistics.xhp\n"
"bm_id05001\n"
"help.text"
-msgid "<bookmark_value>Analysis toolpack;t-test</bookmark_value><bookmark_value>t-test;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;t-test</bookmark_value>"
+msgid "<bookmark_value>Analysis toolpack;t-test</bookmark_value><bookmark_value>Analysis toolpack;paired t-test</bookmark_value><bookmark_value>t-test;Analysis toolpack</bookmark_value><bookmark_value>paired t-test;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;paired t-test</bookmark_value>"
msgstr ""
#: statistics.xhp
@@ -65550,7 +65558,7 @@ msgctxt ""
"statistics.xhp\n"
"hd_id1000150\n"
"help.text"
-msgid "t-test"
+msgid "Paired t-test"
msgstr ""
#: statistics.xhp
@@ -65558,7 +65566,7 @@ msgctxt ""
"statistics.xhp\n"
"par_id1002820\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/ttestdialog/TTestDialog\">Calculates the t-Test of two data samples.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/ttestdialog/TTestDialog\">Calculates the paired t-Test of two data samples.</ahelp>"
msgstr ""
#: statistics.xhp
@@ -65566,7 +65574,7 @@ msgctxt ""
"statistics.xhp\n"
"par_id1002830\n"
"help.text"
-msgid "<variable id=\"sam01\">Choose <emph>Data - Statistics - t-test</emph></variable>"
+msgid "<variable id=\"sam01\">Choose <emph>Data - Statistics - Paired t-test</emph></variable>"
msgstr ""
#: statistics.xhp
@@ -65574,7 +65582,7 @@ msgctxt ""
"statistics.xhp\n"
"par_id1002840\n"
"help.text"
-msgid "A <emph>t-test</emph> is any statistical hypothesis test that follows a Student's t distribution."
+msgid "A <emph>paired t-test</emph> is any statistical hypothesis test that follows a Student's t distribution."
msgstr ""
#: statistics.xhp
@@ -65582,7 +65590,7 @@ msgctxt ""
"statistics.xhp\n"
"par_id1002850\n"
"help.text"
-msgid "For more information on t-tests, refer to the <link href=\"http://en.wikipedia.org/wiki/T-test\">corresponding Wikipedia article</link>."
+msgid "For more information on paired t-tests, refer to the <link href=\"http://en.wikipedia.org/wiki/T-test\">corresponding Wikipedia article</link>."
msgstr ""
#: statistics.xhp
@@ -65622,7 +65630,7 @@ msgctxt ""
"statistics.xhp\n"
"hd_id1000170\n"
"help.text"
-msgid "Results for t-Test:"
+msgid "Results for paired t-test:"
msgstr ""
#: statistics.xhp
@@ -65630,7 +65638,7 @@ msgctxt ""
"statistics.xhp\n"
"par_id1002890\n"
"help.text"
-msgid "The following table shows the <emph>t-Test</emph> for the data series above:"
+msgid "The following table shows the <emph>paired t-test</emph> for the data series above:"
msgstr ""
#: statistics.xhp
@@ -65638,7 +65646,7 @@ msgctxt ""
"statistics.xhp\n"
"par_id1002900\n"
"help.text"
-msgid "t-test"
+msgid "paired t-test"
msgstr ""
#: statistics.xhp
@@ -66510,7 +66518,7 @@ msgctxt ""
"statistics_regression.xhp\n"
"par_id14337286612130\n"
"help.text"
-msgid "<link href=\"text/scalc/01/statistics.xhp#datasampling\">Sampling</link>, <link href=\"text/scalc/01/statistics.xhp#descriptivestatistics\">Descriptive Statistics</link>, <link href=\"text/scalc/01/statistics.xhp#anova\">Analysis of Variance (ANOVA)</link>, <link href=\"text/scalc/01/statistics.xhp#correlation\">Correlation</link>, <link href=\"text/scalc/01/statistics.xhp#covariance\">Covariance</link>, <link href=\"text/scalc/01/statistics.xhp#exponentialsmoothing\">Exponential Smoothing</link>, <link href=\"text/scalc/01/statistics.xhp#movingaverage\">Moving Average</link>, <link href=\"text/scalc/01/statistics.xhp#ttest\">t-test</link>, <link href=\"text/scalc/01/statistics.xhp#ftest\">F-test</link>, <link href=\"text/scalc/01/statistics.xhp#ztest\">Z-test</link>, <link href=\"text/scalc/01/statistics.xhp#chisqtest\">Chi-square test</link>."
+msgid "<link href=\"text/scalc/01/statistics.xhp#datasampling\">Sampling</link>, <link href=\"text/scalc/01/statistics.xhp#descriptivestatistics\">Descriptive Statistics</link>, <link href=\"text/scalc/01/statistics.xhp#anova\">Analysis of Variance (ANOVA)</link>, <link href=\"text/scalc/01/statistics.xhp#correlation\">Correlation</link>, <link href=\"text/scalc/01/statistics.xhp#covariance\">Covariance</link>, <link href=\"text/scalc/01/statistics.xhp#exponentialsmoothing\">Exponential Smoothing</link>, <link href=\"text/scalc/01/statistics.xhp#movingaverage\">Moving Average</link>, <link href=\"text/scalc/01/statistics.xhp#ttest\">Paired t-test</link>, <link href=\"text/scalc/01/statistics.xhp#ftest\">F-test</link>, <link href=\"text/scalc/01/statistics.xhp#ztest\">Z-test</link>, <link href=\"text/scalc/01/statistics.xhp#chisqtest\">Chi-square test</link>."
msgstr ""
#: text2columns.xhp
diff --git a/source/ast/helpcontent2/source/text/sdraw.po b/source/ast/helpcontent2/source/text/sdraw.po
index 5862f5873ea..d753fc7dc5e 100644
--- a/source/ast/helpcontent2/source/text/sdraw.po
+++ b/source/ast/helpcontent2/source/text/sdraw.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: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2016-05-02 07:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -104,62 +104,6 @@ msgctxt ""
msgid "This menu contains general commands for working with Draw documents, such as open, close and print. To close $[officename] Draw, click <emph>Exit</emph>."
msgstr "Esti menú contién comandos pa remanar documentos polo xeneral. Con él ye posible crear un documentu nuevu, abrir, zarrar, imprentar un documentu, introducir les propiedaes del documentu y muncho más. Pa finar la so xera con $[officename] Impress basta con calcar el comandu de menú <emph>Terminar</emph>."
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3156441\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
-msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Abrir</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3153876\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
-msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Guardar como</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3150718\n"
-"help.text"
-msgid "<link href=\"text/simpress/01/01170000.xhp\" name=\"Export\">Export</link>"
-msgstr "<link href=\"text/simpress/01/01170000.xhp\" name=\"Export\">Esportar</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3154754\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
-msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versiones</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3150044\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
-msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Propiedaes</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3149127\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
-msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Imprentar</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3145790\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\">Printer Settings</link>"
-msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\">Configuración de la imprentadora</link>"
-
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
diff --git a/source/ast/helpcontent2/source/text/shared.po b/source/ast/helpcontent2/source/text/shared.po
index 0bcf1a78d0c..24bcaf3d1b1 100644
--- a/source/ast/helpcontent2/source/text/shared.po
+++ b/source/ast/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: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
"PO-Revision-Date: 2016-04-16 21:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -1936,70 +1936,6 @@ msgctxt ""
msgid "This section provides a general glossary of technical terms used in $[officename], along with a list of Internet terms."
msgstr "Esta seición ufierta un glosariu xeneral de términos téunicos usaos en $[officename], según una llista de términos d'Internet."
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"tit\n"
-"help.text"
-msgid "Programming $[officename]"
-msgstr "Programar $[officename]"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"bm_id3154232\n"
-"help.text"
-msgid "<bookmark_value>programming;$[officename]</bookmark_value><bookmark_value>Basic;programming</bookmark_value>"
-msgstr "<bookmark_value>programar;$[officename]</bookmark_value><bookmark_value>Basic;programar</bookmark_value>"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"hd_id3154232\n"
-"help.text"
-msgid "<variable id=\"programming\"><link href=\"text/shared/main0600.xhp\" name=\"Programming $[officename]\">Programming $[officename]</link></variable>"
-msgstr "<variable id=\"programming\"><link href=\"text/shared/main0600.xhp\" name=\"Programming $[officename]\">Programar $[officename]</link></variable>"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3149760\n"
-"help.text"
-msgid "<variable id=\"basic\">$[officename] can be controlled by using the $[officename] API. </variable>"
-msgstr "<variable id=\"basic\">$[officename] pue controlase por aciu la API de $[officename]. </variable>"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3151111\n"
-"help.text"
-msgid "$[officename] provides an Application Programming Interface (API) that enables you to control $[officename] components by using various programming languages. A $[officename] Software Development Kit is available for the programming interface."
-msgstr "$[officename] utiliza un nuevu componente API (Application Programming Interface) que dexa controlar diversos componentes de $[officename] al traviés de diversos llinguaxes. Pa les nueves interfaces esiste un $[officename] Software Development Kit."
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3156346\n"
-"help.text"
-msgid "For more information about $[officename] API reference, please visit http://api.libreoffice.org/"
-msgstr "Pa mas información sobre la referencia del API de $[officename], por favor visite http://api.libreoffice.org/"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3153825\n"
-"help.text"
-msgid "Macros created with $[officename] Basic based on the old programming interface will no longer be supported by the current version."
-msgstr "Les macros creaes con $[officename] Basic na interfaz de programación antigua nun son compatibles cola versión actual."
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3149795\n"
-"help.text"
-msgid "For more information on $[officename] Basic, select \"$[officename] Basic\" in the list box."
-msgstr "Pa llograr más información sobre $[officename] Basic, escueya \"$[officename] Basic\" nel cuadru de llista."
-
#: main0650.xhp
msgctxt ""
"main0650.xhp\n"
diff --git a/source/ast/helpcontent2/source/text/shared/00.po b/source/ast/helpcontent2/source/text/shared/00.po
index 87310bc585d..4f24b6e6741 100644
--- a/source/ast/helpcontent2/source/text/shared/00.po
+++ b/source/ast/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: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: 2016-05-24 02:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -2597,8 +2597,8 @@ msgctxt ""
"00000010.xhp\n"
"par_id3154317\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">Deletes the current selection. If multiple objects are selected, all will be deleted. In most cases, a <link href=\"text/shared/01/03150100.xhp\" name=\"security query\">security query</link> appears before objects are deleted.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">Desanicia la seleición actual. En casu d'una seleición múltiple van desaniciase tolos oxetos escoyíos. Xeneralmente va apaecer una <link href=\"text/shared/01/03150100.xhp\" name=\"pregunta de seguridad\">entruga de seguridá</link> enantes de la eliminación.</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">Deletes the current selection. If multiple objects are selected, all will be deleted. In most cases, a confirmation question appears before objects are deleted.</ahelp>"
+msgstr ""
#: 00000010.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/shared/01.po b/source/ast/helpcontent2/source/text/shared/01.po
index e37c48f29e2..4c9ff068547 100644
--- a/source/ast/helpcontent2/source/text/shared/01.po
+++ b/source/ast/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: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2016-12-24 12:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1045,7 +1045,7 @@ msgctxt ""
"01010203.xhp\n"
"par_id3155355\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/labeloptionspage/entirepage\" visibility=\"visible\">Creates a full page of labels or business cards.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/labeloptionspage/entirepage\" visibility=\"visible\">Creates a full page of labels or business cards.</ahelp>"
msgstr ""
#: 01010203.xhp
@@ -1061,7 +1061,7 @@ msgctxt ""
"01010203.xhp\n"
"par_id3155535\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/labeloptionspage/singlelabel\" visibility=\"visible\">Prints a single label or business card on a page.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/labeloptionspage/singlelabel\" visibility=\"visible\">Prints a single label or business card on a page.</ahelp>"
msgstr ""
#: 01010203.xhp
@@ -2080,6 +2080,78 @@ msgctxt ""
msgid "<link href=\"text/shared/00/00000020.xhp\" name=\"Import and Export Filters\">Import and Export Filters</link>"
msgstr ""
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"tit\n"
+"help.text"
+msgid "Open Remote..."
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"bm_id1001513636856122\n"
+"help.text"
+msgid "<bookmark_value>remote file;open</bookmark_value> <bookmark_value>open;remote file</bookmark_value>"
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"hd_id151513629025611\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01020001.xhp\" name=\"Open Remote...\">Open Remote...</link>"
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"par_id771513629025613\n"
+"help.text"
+msgid "<variable id=\"openremote1\"><ahelp hid=\".uno:OpenRemote\"/>Opens a document located in a remote file service.</variable>"
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"par_id611513629210220\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">File - Open Remote..</item>"
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"par_id151513629855154\n"
+"help.text"
+msgid "Click the <emph>Remote Files</emph> button in the <emph>Start Center</emph>"
+msgstr ""
+
+#: 01020001.xhp
+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>"
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"par_id531513630220632\n"
+"help.text"
+msgid "A remote file server is web service that stores documents with or without check-in, check-out, version controls and backups."
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"par_id951513629981585\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/cmis-remote-files.xhp\" name=\"CMIS\">Opening and saving files in remote servers</link>"
+msgstr ""
+
#: 01020101.xhp
msgctxt ""
"01020101.xhp\n"
@@ -2320,6 +2392,142 @@ msgctxt ""
msgid "When you edit an AutoText entry, this command changes to <emph>Save AutoText</emph>."
msgstr ""
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"tit\n"
+"help.text"
+msgid "Save Remote..."
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"bm_id381513636896997\n"
+"help.text"
+msgid "<bookmark_value>remote file;save</bookmark_value> <bookmark_value>save;remote file</bookmark_value>"
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"hd_id151513629025611\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01060001.xhp\" name=\"Save Remote...\">Save Remote...</link>"
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"par_id771513629025613\n"
+"help.text"
+msgid "<variable id=\"saveremote1\"><ahelp hid=\".uno:SaveRemote\"/>Saves a document located in a remote file service.</variable>"
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"par_id611513629210220\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">File - Save Remote..</item>"
+msgstr ""
+
+#: 01060001.xhp
+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>"
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"par_id531513630220632\n"
+"help.text"
+msgid "A remote file server is web service that stores documents with or without check-in, check-out, version controls and backups."
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"par_id951513629981585\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/cmis-remote-files.xhp\" name=\"CMIS\">Opening and saving files in remote servers</link>"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"tit\n"
+"help.text"
+msgid "Save a Copy"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"bm_id241513636774794\n"
+"help.text"
+msgid "<bookmark_value>save;save a copy</bookmark_value> <bookmark_value>save a copy</bookmark_value>"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id391513471676787\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01060002.xhp\" name=\"Save a Copy\">Save a Copy</link>"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id1001513471674465\n"
+"help.text"
+msgid "<variable id=\"saveacopy1\"><ahelp hid=\".uno:SaveACopy\">Save a copy of the actual document with another name or location.</ahelp></variable>"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id701513472080716\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">File - Save a Copy</item>"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id881513473450156\n"
+"help.text"
+msgid "Creates another file with same contents of the current file. The current file is kept opened for edition."
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id21513472326060\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01060000.xhp\" name=\"Save\">Save</link>"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id411513472333495\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save as</link>"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id681513472341081\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01070001.xhp\" name=\"Export\">Export</link>"
+msgstr ""
+
#: 01070000.xhp
msgctxt ""
"01070000.xhp\n"
@@ -2664,6 +2872,78 @@ msgctxt ""
msgid "Export"
msgstr ""
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"tit\n"
+"help.text"
+msgid "Export As"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"bm_id781513636674523\n"
+"help.text"
+msgid "<bookmark_value>export as;PDF</bookmark_value> <bookmark_value>export as;EPUB</bookmark_value>"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"hd_id751513634008094\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01070002.xhp\" name=\"Export As...\">Export As...</link>"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"par_id791513634008095\n"
+"help.text"
+msgid "<variable id=\"exportas1\"><ahelp hid=\".\">Export the document in PDF or EPUB formats</ahelp></variable>"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"par_id971513634212601\n"
+"help.text"
+msgid "Choose <emph>File - Export As...</emph>"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"hd_id71513635341099\n"
+"help.text"
+msgid "Export Directly as PDF"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"par_id961513635511473\n"
+"help.text"
+msgid "Export the entire document using your default PDF settings."
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"hd_id851513635358546\n"
+"help.text"
+msgid "Export Directly as EPUB"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"par_id811513635541682\n"
+"help.text"
+msgid "Export the entire document using your default EPUB settings."
+msgstr ""
+
#: 01100000.xhp
msgctxt ""
"01100000.xhp\n"
@@ -11752,94 +12032,6 @@ msgctxt ""
msgid "You can still use shortcut keys in <emph>Full Screen</emph> mode, even though the menus are unavailable. <switchinline select=\"sys\"><caseinline select=\"WIN\">To open the <emph>View</emph> menu, press Alt+V. </caseinline></switchinline>"
msgstr ""
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Confirm Delete"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"hd_id3150278\n"
-"help.text"
-msgid "Confirm Delete"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"par_id3148668\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:MODALDIALOG:DLG_SFX_QUERYDELETE\" visibility=\"visible\">Confirms or cancels the deletion.</ahelp>"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"hd_id3152821\n"
-"help.text"
-msgid "Delete"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"par_id3150040\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_YES\" visibility=\"visible\">Performs the deletion in the current file.</ahelp>"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"hd_id3149999\n"
-"help.text"
-msgid "Delete All"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"par_id3155616\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_ALL\" visibility=\"visible\">Performs the deletion in all selected files.</ahelp>"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"hd_id3157991\n"
-"help.text"
-msgid "Do Not Delete"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"par_id3147043\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_NO\" visibility=\"visible\">Rejects the deletion for the current file.</ahelp>"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"hd_id3149346\n"
-"help.text"
-msgid "Cancel"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"par_id3148620\n"
-"help.text"
-msgid "Cancels the deletion in the current file and any other selected files."
-msgstr ""
-
#: 03170000.xhp
msgctxt ""
"03170000.xhp\n"
@@ -22125,7 +22317,15 @@ msgctxt ""
"05110600m.xhp\n"
"tit\n"
"help.text"
-msgid "Space Rows Equally"
+msgid "Distribute Rows Equally"
+msgstr ""
+
+#: 05110600m.xhp
+msgctxt ""
+"05110600m.xhp\n"
+"bm_id431513359599959\n"
+"help.text"
+msgid "<bookmark_value>table rows;distribute height equally</bookmark_value> <bookmark_value>row height;distribute equally</bookmark_value>"
msgstr ""
#: 05110600m.xhp
@@ -22133,7 +22333,7 @@ msgctxt ""
"05110600m.xhp\n"
"hd_id3149871\n"
"help.text"
-msgid "<link href=\"text/shared/01/05110600m.xhp\" name=\"Space Equally\">Space Rows Equally</link>"
+msgid "<link href=\"text/shared/01/05110600m.xhp\" name=\"Distribute Equally\">Distribute Rows Equally</link>"
msgstr ""
#: 05110600m.xhp
@@ -22149,7 +22349,7 @@ msgctxt ""
"05110600m.xhp\n"
"par_id3153569\n"
"help.text"
-msgid "Choose <emph>Table - Autofit - Distribute Rows Equally</emph>"
+msgid "Choose <emph>Table - Size - Distribute Rows Equally</emph>"
msgstr ""
#: 05110600m.xhp
@@ -22341,7 +22541,15 @@ msgctxt ""
"05120600.xhp\n"
"tit\n"
"help.text"
-msgid "Space Columns Equally"
+msgid "Distribute Columns Equally"
+msgstr ""
+
+#: 05120600.xhp
+msgctxt ""
+"05120600.xhp\n"
+"bm_id431513359599959\n"
+"help.text"
+msgid "<bookmark_value>table columns;distribute columns equally</bookmark_value> <bookmark_value>column width;distribute equally</bookmark_value>"
msgstr ""
#: 05120600.xhp
@@ -22349,7 +22557,7 @@ msgctxt ""
"05120600.xhp\n"
"hd_id3153811\n"
"help.text"
-msgid "<link href=\"text/shared/01/05120600.xhp\" name=\"Space Equally\">Space Columns Equally</link>"
+msgid "<link href=\"text/shared/01/05120600.xhp\" name=\"Distribute Equally\">Distribute Columns Equally</link>"
msgstr ""
#: 05120600.xhp
@@ -22365,7 +22573,7 @@ msgctxt ""
"05120600.xhp\n"
"par_id3159219\n"
"help.text"
-msgid "Choose <emph>Table - Autofit - Distribute Columns Equally</emph>"
+msgid "Choose <emph>Table - Size - Distribute Columns Equally</emph>"
msgstr ""
#: 05120600.xhp
@@ -22389,7 +22597,7 @@ msgctxt ""
"05120600.xhp\n"
"par_id3151364\n"
"help.text"
-msgid "Space Columns Equally"
+msgid "Distribute Columns Equally"
msgstr ""
#: 05140100.xhp
@@ -33789,7 +33997,7 @@ msgctxt ""
"06130000.xhp\n"
"par_idN10A39\n"
"help.text"
-msgid "<variable id=\"script\">Scripts </variable>"
+msgid "<variable id=\"script\">Scripts</variable>"
msgstr ""
#: 06130000.xhp
@@ -33960,14 +34168,6 @@ msgctxt ""
msgid "Click a script, and then click a command button."
msgstr ""
-#: 06130000.xhp
-msgctxt ""
-"06130000.xhp\n"
-"par_id3153138\n"
-"help.text"
-msgid "<link href=\"text/shared/main0600.xhp\" name=\"Macro programming in $[officename]\">Macro programming in $[officename]</link>"
-msgstr ""
-
#: 06130001.xhp
msgctxt ""
"06130001.xhp\n"
diff --git a/source/ast/helpcontent2/source/text/shared/02.po b/source/ast/helpcontent2/source/text/shared/02.po
index 9807cf68e25..cb3ebe25476 100644
--- a/source/ast/helpcontent2/source/text/shared/02.po
+++ b/source/ast/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ 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: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
"PO-Revision-Date: 2016-05-24 02:54+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -9494,16 +9494,16 @@ msgctxt ""
"02010000.xhp\n"
"tit\n"
"help.text"
-msgid "Apply Style"
-msgstr "Aplicar estilu"
+msgid "Set Paragrph Style"
+msgstr ""
#: 02010000.xhp
msgctxt ""
"02010000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02010000.xhp\" name=\"Apply Style\">Apply Style</link>"
-msgstr "<link href=\"text/shared/02/02010000.xhp\" name=\"Apply Style\">Aplicar estilos</link>"
+msgid "<link href=\"text/shared/02/02010000.xhp\" name=\"Set Paragraph Style\">Set Paragraph Style</link>"
+msgstr ""
#: 02010000.xhp
msgctxt ""
@@ -9534,16 +9534,16 @@ msgctxt ""
"02010000.xhp\n"
"par_id3155552\n"
"help.text"
-msgid "<image id=\"img_id3152801\" src=\"media/helpimg/zellvor.png\" width=\"2.642cm\" height=\"0.533cm\" localize=\"true\"><alt id=\"alt_id3152801\">Apply Style</alt></image>"
-msgstr "<image id=\"img_id3152801\" src=\"media/helpimg/zellvor.png\" width=\"1.0402in\" height=\"0.2098in\" localize=\"true\"><alt id=\"alt_id3152801\">Aplicar estilu</alt></image>"
+msgid "<image id=\"img_id3152801\" src=\"media/helpimg/zellvor.png\" width=\"2.642cm\" height=\"0.533cm\" localize=\"true\"><alt id=\"alt_id3152801\">Set Paragraph Style</alt></image>"
+msgstr ""
#: 02010000.xhp
msgctxt ""
"02010000.xhp\n"
"par_id3145345\n"
"help.text"
-msgid "Apply Style"
-msgstr "Aplicar estilu"
+msgid "Set Paragraph Style"
+msgstr ""
#: 02020000.xhp
msgctxt ""
@@ -13326,8 +13326,8 @@ msgctxt ""
"12090100.xhp\n"
"hd_id3153061\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More Options\">More Options</link>"
-msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"More Options\">Más opciones</link>"
+msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"Options\">Options</link>"
+msgstr ""
#: 12090101.xhp
msgctxt ""
@@ -15766,8 +15766,8 @@ msgctxt ""
"20050000.xhp\n"
"bm_id3148668\n"
"help.text"
-msgid "<bookmark_value>selection modes in text</bookmark_value><bookmark_value>text; selection modes</bookmark_value><bookmark_value>extending selection mode</bookmark_value><bookmark_value>adding selection mode</bookmark_value><bookmark_value>block selection mode</bookmark_value>"
-msgstr "<bookmark_value>moos de seleición en testu</bookmark_value><bookmark_value>testu; moos de seleición</bookmark_value><bookmark_value>mou de seleición por estensión</bookmark_value><bookmark_value>mou de seleición por adición</bookmark_value><bookmark_value>mou de seleición en bloque</bookmark_value>"
+msgid "<bookmark_value>selection modes in text</bookmark_value> <bookmark_value>text; selection modes</bookmark_value> <bookmark_value>extending selection mode</bookmark_value> <bookmark_value>adding selection mode</bookmark_value> <bookmark_value>block selection mode</bookmark_value>"
+msgstr ""
#: 20050000.xhp
msgctxt ""
@@ -15822,8 +15822,8 @@ msgctxt ""
"20050000.xhp\n"
"par_id3147209\n"
"help.text"
-msgid "Click in text where you want to position the cursor; click in a cell to make it the active cell. Any other selection is then deselected."
-msgstr "Calque nun llugar del testu p'asitiar el cursor ellí; con una pulsación nuna caxella convertir na caxella actual. va desaniciase la seleición esistente."
+msgid "This is the default selection mode for text documents. With the keyboard, selections can be performed by Shift+NavigationKey (<item type=\"keycode\">arrows, Home, End, Page Up, Page Down</item>). With the mouse, click in the text where the selection is to start, hold the left mouse button and move to the end of the selection. Release the mouse key to end selection."
+msgstr ""
#: 20050000.xhp
msgctxt ""
@@ -15838,8 +15838,8 @@ msgctxt ""
"20050000.xhp\n"
"par_id3153717\n"
"help.text"
-msgid "Clicking in the text extends or crops the current selection."
-msgstr "Una pulsación nel testu amplía o amenorga la seleición."
+msgid "By using the arrow keys or the <item type=\"keycode\">Home</item> and <item type=\"keycode\">End</item> keys you can extend or crop the current selection. Clicking into the text selects the text between the current cursor position and the click position. You also can use (with or without <item type=\"keycode\">Shift</item> key) the arrow keys and the keys <item type=\"keycode\">Home</item> and <item type=\"keycode\">End</item> to increase or decrease the current selection."
+msgstr ""
#: 20050000.xhp
msgctxt ""
@@ -15881,6 +15881,14 @@ msgctxt ""
msgid "On Windows systems, you can hold down the <item type=\"keycode\">Alt</item> key while dragging to select a block of text. You don't need to enter the block selection mode."
msgstr "En sistema Windows, pue caltener primida la tecla <item type=\"keycode\">Alt</item> mientres abasna'l mur pa escoyer un bloque de testu. Nun se riquir camudar a el mou de seleición per bloque."
+#: 20050000.xhp
+msgctxt ""
+"20050000.xhp\n"
+"par_id901513465638512\n"
+"help.text"
+msgid "<link href=\"text/swriter/guide/text_nav_keyb.xhp\" name=\"Navigating and Selecting With the Keyboard\">Navigating and Selecting With the Keyboard</link>"
+msgstr ""
+
#: 20060000.xhp
msgctxt ""
"20060000.xhp\n"
diff --git a/source/ast/helpcontent2/source/text/shared/05.po b/source/ast/helpcontent2/source/text/shared/05.po
index cacc2db5e78..11368a66395 100644
--- a/source/ast/helpcontent2/source/text/shared/05.po
+++ b/source/ast/helpcontent2/source/text/shared/05.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: 2016-04-16 22:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -149,7 +149,7 @@ msgctxt ""
"00000001.xhp\n"
"par_id3497211\n"
"help.text"
-msgid "You can download documentation as PDF files, how-tos, and guides from the %PRODUCTNAME documentation website at <link href=\"http://documentation.libreoffice.org\">documentation.libreoffice.org</link>. You can also access the documentation website choosing the menu <item type=\"menuitem\">Help – User Guides…</item> ."
+msgid "You can download documentation as PDF files, how-tos, and guides from the %PRODUCTNAME documentation website at <link href=\"http://documentation.libreoffice.org\">documentation.libreoffice.org</link>. You can also access the documentation website choosing the menu <item type=\"menuitem\">Help – User Guides…</item>"
msgstr ""
#: 00000001.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/autopi.po b/source/ast/helpcontent2/source/text/shared/autopi.po
index ca4738a3007..49b306785cd 100644
--- a/source/ast/helpcontent2/source/text/shared/autopi.po
+++ b/source/ast/helpcontent2/source/text/shared/autopi.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: autopi\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"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
"PO-Revision-Date: 2016-05-24 02:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: asturian <alministradores@softastur.org>\n"
@@ -6230,8 +6230,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3149140\n"
"help.text"
-msgid "<variable id=\"eurokonv\"><ahelp hid=\".uno:EuroConverter\">Converts the currency amounts found in $[officename] Calc documents and in fields and tables of $[officename] Writer documents into euros.</ahelp></variable>"
-msgstr "<variable id=\"eurokonv\"><ahelp hid=\".uno:EuroConverter\">Convierte les cantidaes monetaries de los documentos de $[officename] Calc y de los campos y tables de documentos de $[officename] Writer n'euros.</ahelp></variable>"
+msgid "<variable id=\"eurokonv\"><ahelp hid=\".\">Converts the currency amounts found in $[officename] Calc documents and in fields and tables of $[officename] Writer documents into euros.</ahelp></variable>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6270,8 +6270,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3155420\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OBFILE\">Converts a single $[officename] Calc file.</ahelp> To convert fields and tables in $[officename] Writer, first mark the <emph>Also convert fields and tables in text documents </emph>check box."
-msgstr "<ahelp hid=\"HID_DLGCONVERT_OBFILE\">Convertir a un documentu de $[officename] Calc.</ahelp> Pa convertir campos y tables de $[officename] Writer, primero marcar el caxellu <emph>Tamién convertir campos y documentos testos</emph>."
+msgid "<ahelp hid=\".\">Converts a single $[officename] Calc file.</ahelp> To convert fields and tables in $[officename] Writer, first mark the <emph>Also convert fields and tables in text documents </emph>check box."
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6286,8 +6286,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3150670\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OBDIR\">Converts all $[officename] Calc and $[officename] Writer documents and templates in the selected directory.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_OBDIR\">Convierte tolos documentos y plantíes de $[officename] Calc y $[officename] Writer del directoriu escoyíu.</ahelp>"
+msgid "<ahelp hid=\".\">Converts all $[officename] Calc and $[officename] Writer documents and templates in the selected directory.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6302,8 +6302,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3156002\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_COMBOBOX1\">Specifies the currency to be converted into euros.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_COMBOBOX1\">Especifica la moneda que tien de convertise n'euros.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies the currency to be converted into euros.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6318,8 +6318,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3154898\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_TBSOURCE\">Indicates the directory or the name of the single document to be converted.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_TBSOURCE\">Indica'l directoriu o'l nome del documentu individual que se debe convertir.</ahelp>"
+msgid "<ahelp hid=\".\">Indicates the directory or the name of the single document to be converted.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6334,8 +6334,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3147264\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBSOURCEOPEN\">Opens a dialog to select the desired directory or document.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBSOURCEOPEN\">Abre un diálogu pa escoyer el directoriu o documentu deseyáu.</ahelp>"
+msgid "<ahelp hid=\".\">Opens a dialog to select the desired directory or document.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6350,8 +6350,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3152771\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CHECKRECURSIVE\">Specifies whether all subfolders of the selected directory are included.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CHECKRECURSIVE\">Especifica si inclúyense toles subcarpetas del directoriu escoyíu.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies whether all subfolders of the selected directory are included.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6366,8 +6366,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3150398\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CHKTEXTDOCUMENTS\">Converts currency amounts found in fields and tables of $[officename] Writer documents.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CHKTEXTDOCUMENTS\">Convierte les cantidaes monetaries que s'atopen nos campos y tables de los documentos de $[officename] Writer.</ahelp>"
+msgid "<ahelp hid=\".\">Converts currency amounts found in fields and tables of $[officename] Writer documents.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6390,8 +6390,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CHKPROTECT\">Specifies that sheet protection will be disabled during conversion and thereafter re-enabled. If sheet protection is covered by a password, you will see a dialog for entering the password.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CHKPROTECT\">Especifica que la protección de la fueya va desactivar mientres la conversión y va reactivase dempués. Si la protección de la fueya inclúi una contraseña, va abrise un diálogu pa introducila.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies that sheet protection will be disabled during conversion and thereafter re-enabled. If sheet protection is covered by a password, you will see a dialog for entering the password.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6406,8 +6406,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3153771\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_TBTARGET\">Specifies the folder and path in which the converted files are to be saved.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_TBTARGET\">Especifica la carpeta y la ruta onde guardar los ficheros convertíos.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies the folder and path in which the converted files are to be saved.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6422,8 +6422,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3147427\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBTARGETOPEN\">Opens a dialog in which you can select a directory to hold the converted files.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBTARGETOPEN\">Abre un diálogu nel que pue escoyese un directoriu p'agospiar los ficheros convertíos.</ahelp>"
+msgid "<ahelp hid=\".\">Opens a dialog in which you can select a directory to hold the converted files.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6438,8 +6438,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3153190\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBCANCEL\">Closes the Euro Converter.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBCANCEL\">Zarra'l Convertidor d'euros.</ahelp>"
+msgid "<ahelp hid=\".\">Closes the Euro Converter.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6454,8 +6454,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3155413\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBHELP\">Activates the help for the dialog.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBHELP\">Activa l'ayuda del díalogo.</ahelp>"
+msgid "<ahelp hid=\".\">Activates the help for the dialog.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6470,8 +6470,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBGOON\">Starts the conversion.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBGOON\">Empecipia la conversión.</ahelp>"
+msgid "<ahelp hid=\".\">Starts the conversion.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6494,16 +6494,16 @@ msgctxt ""
"01150000.xhp\n"
"par_id3153953\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBBACK\">Returns to the first page of the Euro Converter.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBBACK\">Vuelve a la primer páxina del Convertidor d'euros.</ahelp>"
+msgid "<ahelp hid=\".\">Returns to the first page of the Euro Converter.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
"01150000.xhp\n"
"par_id3154640\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBBACK\">If the current document is a $[officename] Calc document or template, you can call up the Euro Converter using the corresponding icon in the Tools bar.</ahelp> This icon is hidden by default. To display the Euro Converter icon, click the arrow at the end of the Tools bar, select the <emph>Visible Buttons</emph> command and activate the <emph>Euro Converter</emph> icon."
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBBACK\">Si'l documentu actual ye una plantía o un documentu de $[officename] Calc, pue abrir el Convertidor d'euros por aciu l'iconu correspondiente de barra de Ferramientes.</ahelp> Esti iconu ta ocultu de forma predeterminada. P'amosar l'iconu del Convertidor d'euros, faiga clic na flecha qu'hai a la fin de barra de Ferramientes, escueya'l comandu <emph>Botones visibles</emph> y active l'iconu <emph>Convertidor d'euros</emph>."
+msgid "If the current document is a $[officename] Calc document or template, you can call up the Euro Converter using the corresponding icon in the Tools bar. This icon is hidden by default. To display the Euro Converter icon, click the arrow at the end of the Tools bar, select the <emph>Visible Buttons</emph> command and activate the <emph>Euro Converter</emph> icon."
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6542,8 +6542,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3150113\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CHECKBOX1\">Converts the entire document.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CHECKBOX1\">Convierte'l documentu completu.</ahelp>"
+msgid "<ahelp hid=\".\">Converts the entire document.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6558,8 +6558,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3148834\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_COMBOBOX1\">Specifies the currency to be converted into euros.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_COMBOBOX1\">Especifica la moneda que tien de convertise n'euros.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies the currency to be converted into euros.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6590,8 +6590,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3145162\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON1\">All cells with the selected Cell Styles are converted.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON1\">Conviértense toles caxelles col estilu escoyíu.</ahelp>"
+msgid "<ahelp hid=\".\">All cells with the selected Cell Styles are converted.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6606,8 +6606,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3154479\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON2\">All currency cells in the active spreadsheet will be converted.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON2\">Conviértense toles caxelles de moneda de la fueya de cálculu activa.</ahelp>"
+msgid "<ahelp hid=\".\">All currency cells in the active spreadsheet will be converted.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6622,8 +6622,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3146912\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON3\">All currency cells in the active document will be converted.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON3\">Conviértense toles caxelles de moneda del documentu activu.</ahelp>"
+msgid "<ahelp hid=\".\">All currency cells in the active document will be converted.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6638,8 +6638,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3153736\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON4\">All currency cells in the range selected before the converter was called will be converted.</ahelp> All cells must have the same format so that they can be recognized as a selected range."
-msgstr "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON4\">van convertise toles caxelles de moneda del área escoyida enantes de llamar al convertidor.</ahelp> El formatu de toles caxelles tien de ser el mesmu pa poder reconoceles como rangu escoyíu."
+msgid "<ahelp hid=\".\">All currency cells in the range selected before the converter was called will be converted.</ahelp> All cells must have the same format so that they can be recognized as a selected range."
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6654,8 +6654,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3154756\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_LISTBOX1\">Displays the ranges to be converted from the list.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_LISTBOX1\">Amuesa los rangos que se deben convertir de la llista.</ahelp>"
+msgid "<ahelp hid=\".\">Displays the ranges to be converted from the list.</ahelp>"
+msgstr ""
#: 01170000.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/shared/explorer/database.po b/source/ast/helpcontent2/source/text/shared/explorer/database.po
index 78712faf18d..049f0efe8e2 100644
--- a/source/ast/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/ast/helpcontent2/source/text/shared/explorer/database.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: 2017-07-20 11:52+0200\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
"PO-Revision-Date: 2016-05-24 03:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -7581,8 +7581,8 @@ msgctxt ""
"dabawiz02ado.xhp\n"
"par_idN10568\n"
"help.text"
-msgid "$[officename] requires the Microsoft Data Access Components (MDAC) to use the ADO interface. Microsoft Windows 2000 and XP include these components by default. For earlier visions of Windows, you need to install MDAC separately. You can download MDAC from the Microsoft web site."
-msgstr "Pa utilizar la interfaz ADO, $[officename] precisa Microsoft Data Access Components (MDAC). Microsoft Windows 2000 y XP inclúin estos componentes de forma predeterminada. Pa les versiones anteriores de Windows, tien d'instalar MDAC por separáu. Pue descargar MDAC de la páxina web de Microsoft."
+msgid "$[officename] requires the Microsoft Data Access Components (MDAC) to use the ADO interface. Microsoft Windows 2000 and XP include these components by default."
+msgstr ""
#: dabawiz02ado.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/shared/guide.po b/source/ast/helpcontent2/source/text/shared/guide.po
index 4d41f841c0f..34551dacd69 100644
--- a/source/ast/helpcontent2/source/text/shared/guide.po
+++ b/source/ast/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: 2016-07-05 17:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -12661,16 +12661,24 @@ msgctxt ""
"macro_recording.xhp\n"
"bm_id3093440\n"
"help.text"
-msgid "<bookmark_value>macros; recording</bookmark_value><bookmark_value>recording; macros</bookmark_value><bookmark_value>Basic; recording macros</bookmark_value>"
-msgstr "<bookmark_value>macros;rexistrar</bookmark_value><bookmark_value>rexistrar;macros</bookmark_value><bookmark_value>Basic;rexistrar macros</bookmark_value>"
+msgid "<bookmark_value>macros; recording</bookmark_value> <bookmark_value>recording; macros</bookmark_value> <bookmark_value>Basic; recording macros</bookmark_value>"
+msgstr ""
#: macro_recording.xhp
msgctxt ""
"macro_recording.xhp\n"
"hd_id3093440\n"
"help.text"
-msgid "<variable id=\"macro_recording\"><link href=\"text/shared/guide/macro_recording.xhp\" name=\"Recording a Macro\">Recording a Macro</link></variable>"
-msgstr "<variable id=\"macro_recording\"><link href=\"text/shared/guide/macro_recording.xhp\" name=\"Grabar una macro\">Grabar una macro</link></variable>"
+msgid "<variable id=\"macro_recording\"><link href=\"text/shared/guide/macro_recording.xhp\" name=\"Recording a Macro\">Recording a Macro</link> </variable>"
+msgstr ""
+
+#: macro_recording.xhp
+msgctxt ""
+"macro_recording.xhp\n"
+"par_id101513461219184\n"
+"help.text"
+msgid "%PRODUCTNAME can record commands executed with the keyboard and mouse in Writer and Calc"
+msgstr ""
#: macro_recording.xhp
msgctxt ""
@@ -12779,6 +12787,14 @@ msgstr "Calque en <emph>Guardar</emph>."
#: macro_recording.xhp
msgctxt ""
"macro_recording.xhp\n"
+"bm_id131513460596344\n"
+"help.text"
+msgid "<bookmark_value>macro recording;limitations</bookmark_value>"
+msgstr ""
+
+#: macro_recording.xhp
+msgctxt ""
+"macro_recording.xhp\n"
"hd_id2486342\n"
"help.text"
msgid "Limitations of the macro recorder"
@@ -12848,14 +12864,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">Macro</link>"
msgstr "<link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">Macro</link>"
-#: macro_recording.xhp
-msgctxt ""
-"macro_recording.xhp\n"
-"par_id3147576\n"
-"help.text"
-msgid "<link href=\"text/shared/main0600.xhp\" name=\"macro programming in $[officename]\">Programming in %PRODUCTNAME</link>"
-msgstr "<link href=\"text/shared/main0600.xhp\" name=\"programación de macros en $[officename]\">Programación en %PRODUCTNAME</link>"
-
#: main.xhp
msgctxt ""
"main.xhp\n"
diff --git a/source/ast/helpcontent2/source/text/shared/optionen.po b/source/ast/helpcontent2/source/text/shared/optionen.po
index b280232ce08..556a7b78d61 100644
--- a/source/ast/helpcontent2/source/text/shared/optionen.po
+++ b/source/ast/helpcontent2/source/text/shared/optionen.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: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
"PO-Revision-Date: 2016-07-05 17:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -107,14 +107,6 @@ msgstr "<link href=\"text/shared/optionen/01150000.xhp\" name=\"Language Setting
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
-"hd_id3150872\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/01030000.xhp\" name=\"Internet\">Internet</link>"
-msgstr "<link href=\"text/shared/optionen/01030000.xhp\" name=\"Internet\">Internet</link>"
-
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
"hd_id3153188\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01040000.xhp\" name=\"Text Document\">%PRODUCTNAME Writer</link>"
@@ -163,6 +155,14 @@ msgstr "<link href=\"text/shared/optionen/01090000.xhp\" name=\"Formula\">%PRODU
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id3149420\n"
+"help.text"
+msgid "<link href=\"text/shared/optionen/01160000.xhp\" name=\"Data Sources\">%PRODUCTNAME Base</link>"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3155418\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01110000.xhp\" name=\"Chart\">Charts</link>"
@@ -171,10 +171,10 @@ msgstr "<link href=\"text/shared/optionen/01110000.xhp\" name=\"Chart\">Gráfico
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
-"hd_id3149420\n"
+"hd_id3150872\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01160000.xhp\" name=\"Data Sources\">%PRODUCTNAME Database</link>"
-msgstr "<link href=\"text/shared/optionen/01160000.xhp\" name=\"Data Sources\">Base de datos de %PRODUCTNAME</link>"
+msgid "<link href=\"text/shared/optionen/01030000.xhp\" name=\"Internet\">Internet</link>"
+msgstr "<link href=\"text/shared/optionen/01030000.xhp\" name=\"Internet\">Internet</link>"
#: 01010000.xhp
msgctxt ""
@@ -197,8 +197,8 @@ msgctxt ""
"01010000.xhp\n"
"par_id3149177\n"
"help.text"
-msgid "<variable id=\"optionenallgemein\"><ahelp hid=\"SID_GENERAL_OPTIONS\">Use this dialog to create general settings for working with $[officename]. The information covers topics such as user data, saving, printing, paths to important files and directories, and color defaults.</ahelp></variable> These settings are saved automatically."
-msgstr "<variable id=\"optionenallgemein\"><ahelp hid=\"SID_GENERAL_OPTIONS\">Use esti cuadru de diálogu pa crear una configuración xeneral col fin de trabayar con $[officename]. La información cubre aspeutos como los datos del usuariu, la grabación, la impresión, les rutes de ficheros y directorios importantes, según el colores predeterminaos.</ahelp></variable> guardar automáticamente."
+msgid "<variable id=\"optionenallgemein\">Use this dialog to create general settings for working with $[officename]. The information covers topics such as user data, saving, printing, paths to important files and directories, and color defaults.</variable> These settings are saved automatically."
+msgstr ""
#: 01010100.xhp
msgctxt ""
@@ -1437,7 +1437,7 @@ msgctxt ""
"01010400.xhp\n"
"par_id3145673\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optlingupage/lingumodulesedit\">To edit a language module, select it and click <emph>Edit</emph>.</ahelp> The <link href=\"text/shared/optionen/01010401.xhp\" name=\"Edit Modules\"><emph>Edit </emph><emph>Modules</emph></link> dialog appears."
+msgid "<ahelp hid=\"cui/ui/optlingupage/lingumodulesedit\">To edit a language module, select it and click <emph>Edit</emph>.</ahelp> The <link href=\"text/shared/optionen/01010401.xhp\" name=\"Edit Modules\"><emph>Edit Modules</emph></link> dialog appears."
msgstr ""
#: 01010400.xhp
@@ -10973,8 +10973,8 @@ msgctxt ""
"01070500.xhp\n"
"par_id3154138\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>In a presentation or drawing document, you can also activate the text editing mode through the <emph>Allow Quick Editing</emph> <link href=\"text/simpress/02/13180000.xhp\" name=\"icon\">icon</link> in the <emph>Option</emph> bar.</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>Nuna presentación o documentu de dibuxu, tamién pue activase el mou d'edición de testu por aciu l'iconu<emph> Permitir edición rápida</emph><link href=\"text/simpress/02/13180000.xhp\" name=\"icono\">iconu</link> de la <emph>barra d'opciones</emph>.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>In a presentation or drawing document, you can also activate the text editing mode through the <emph>Allow Quick Editing</emph> <link href=\"text/simpress/02/13180000.xhp\" name=\"icon\">icon</link> in the <emph>Options</emph> bar.</defaultinline></switchinline>"
+msgstr ""
#: 01070500.xhp
msgctxt ""
@@ -11005,8 +11005,8 @@ msgctxt ""
"01070500.xhp\n"
"par_id3153367\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>In a presentation or drawing document, you can also activate this mode through the<emph> Select Text Area Only </emph><link href=\"text/simpress/02/13190000.xhp\" name=\"icon\">icon</link> in the <emph>Option</emph> bar.</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>Nuna presentación o documentu de dibuxu tamién pue activase esti mou por aciu l'iconu <emph> Namái área de testu seleicionable</emph><link href=\"text/simpress/02/13190000.xhp\" name=\"icono\">iconu</link> na <emph>barra d'opciones</emph>.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>In a presentation or drawing document, you can also activate this mode through the<emph> Select Text Area Only </emph><link href=\"text/simpress/02/13190000.xhp\" name=\"icon\">icon</link> in the <emph>Options</emph> bar.</defaultinline></switchinline>"
+msgstr ""
#: 01070500.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/simpress.po b/source/ast/helpcontent2/source/text/simpress.po
index 48432e91fa0..a767fa2e5f6 100644
--- a/source/ast/helpcontent2/source/text/simpress.po
+++ b/source/ast/helpcontent2/source/text/simpress.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: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: 2016-04-16 22:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -1615,307 +1615,3 @@ msgctxt ""
"help.text"
msgid "$[officename] Impress gives you the choice of running a slide show automatically or manually."
msgstr "En $[officename] Impress les diapositives puen proxectase automáticamente o manualmente."
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"tit\n"
-"help.text"
-msgid "Presenter Console Keyboard Shortcuts"
-msgstr "Atayos de tecláu pa la Consola del presentador"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"bm_id0921200912285678\n"
-"help.text"
-msgid "<bookmark_value>Presenter Console shortcuts</bookmark_value>"
-msgstr "<bookmark_value>Atayos pa la Consola del presentador</bookmark_value>"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"hd_id0921201912165661\n"
-"help.text"
-msgid "Presenter Console Keyboard Shortcuts"
-msgstr "Atayos de tecláu pa la Consola del presentador"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921201912165656\n"
-"help.text"
-msgid "When running a slide show using the Presenter Console, you can use the following keys:"
-msgstr "Cuando executes una presentación de diapositives con la Consola del presentador, pues usar les tecles siguientes:"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104028\n"
-"help.text"
-msgid "Action"
-msgstr "Aición"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104093\n"
-"help.text"
-msgid "Key or Keys"
-msgstr "Tecla o tecles"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110418\n"
-"help.text"
-msgid "Next slide, or next effect"
-msgstr "Próxima diapositiva, o próximu efeutu"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104120\n"
-"help.text"
-msgid "Left click, right arrow, down arrow, spacebar, page down, enter, return, 'N'"
-msgstr "Clic esquierdu, flecha drecha, flecha abaxo, espaciu, Av Páx, Intro, Retornu, 'N'"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104165\n"
-"help.text"
-msgid "Previous slide, or previous effect"
-msgstr "Diapositiva previa, o efeutu previu"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104115\n"
-"help.text"
-msgid "Right click, left arrow, up arrow, page up, backspace, 'P'"
-msgstr "Clic drechu, flecha izquierda, flecha arriba, Re Páx, retrocesu, 'P'"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104164\n"
-"help.text"
-msgid "First slide"
-msgstr "Primera diapositiva"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104148\n"
-"help.text"
-msgid "Home"
-msgstr "Aniciu"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104221\n"
-"help.text"
-msgid "Last slide"
-msgstr "Cabera diapositiva"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104277\n"
-"help.text"
-msgid "End"
-msgstr "Fin"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104279\n"
-"help.text"
-msgid "Previous slide without effects"
-msgstr "Diapositiva previa ensin efeutos"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110423\n"
-"help.text"
-msgid "Alt+Page Up"
-msgstr "Alt+Re Páx"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110427\n"
-"help.text"
-msgid "Next slide without effects"
-msgstr "Diapositiva siguiente ensin efeutos"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104261\n"
-"help.text"
-msgid "Alt+Page Down"
-msgstr "Alt+Av Páx"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104383\n"
-"help.text"
-msgid "Black/Unblack the screen"
-msgstr "Escurecer/Non Escurecer la pantalla"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110431\n"
-"help.text"
-msgid "'B', '.'"
-msgstr "'B', '.'"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104311\n"
-"help.text"
-msgid "White/Unwhite the screen"
-msgstr "Aclara/Nun aclara la pantalla"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104359\n"
-"help.text"
-msgid "'W', ','"
-msgstr "'W', ','"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104336\n"
-"help.text"
-msgid "End slide show"
-msgstr "Finar la presentación"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104419\n"
-"help.text"
-msgid "Esc, '-'"
-msgstr "Esc, '-'"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104460\n"
-"help.text"
-msgid "Go to slide number"
-msgstr "Dir a númberu de diapositiva"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110440\n"
-"help.text"
-msgid "Number followed by Enter"
-msgstr "Númberu siguíu de Enter"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104427\n"
-"help.text"
-msgid "Grow/Shrink size of notes font"
-msgstr "Crecer/Encoyer el tamañu de la tipografía de les notes"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104442\n"
-"help.text"
-msgid "'G', 'S'"
-msgstr "'G', 'S'"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104473\n"
-"help.text"
-msgid "Scroll notes up/down"
-msgstr "Desplazar notes arriba/abaxo"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110459\n"
-"help.text"
-msgid "'A', 'Z'"
-msgstr "'A', 'Z'"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110456\n"
-"help.text"
-msgid "Move caret in notes view backward/forward"
-msgstr "Mover el punteru alantre/atrás na vista de notes"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110457\n"
-"help.text"
-msgid "'H', 'L'"
-msgstr "'H', 'L'"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104566\n"
-"help.text"
-msgid "Show the Presenter Console"
-msgstr "Amosar la Consola del presentador"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104544\n"
-"help.text"
-msgid "Ctrl-'1'"
-msgstr "Ctrl-'1'"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104535\n"
-"help.text"
-msgid "Show the Presentation Notes"
-msgstr "Amosar notes de la presentación"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104680\n"
-"help.text"
-msgid "Ctrl-'2'"
-msgstr "Ctrl-'2'"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104634\n"
-"help.text"
-msgid "Show the Slides Overview"
-msgstr "Amosar la vista xeneral de les diapositives"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104632\n"
-"help.text"
-msgid "Ctrl-'3'"
-msgstr "Ctrl-'3'"
diff --git a/source/ast/helpcontent2/source/text/simpress/04.po b/source/ast/helpcontent2/source/text/simpress/04.po
index 405988bee7f..1368c417d6e 100644
--- a/source/ast/helpcontent2/source/text/simpress/04.po
+++ b/source/ast/helpcontent2/source/text/simpress/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: 2016-01-08 13:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -1623,3 +1623,307 @@ msgctxt ""
"help.text"
msgid "Change to Normal Mode with the active slide."
msgstr "Cambiar al Mou normal cola diapositiva activa."
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"tit\n"
+"help.text"
+msgid "Presenter Console Keyboard Shortcuts"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"bm_id0921200912285678\n"
+"help.text"
+msgid "<bookmark_value>Presenter Console shortcuts</bookmark_value>"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"hd_id0921201912165661\n"
+"help.text"
+msgid "Presenter Console Keyboard Shortcuts"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921201912165656\n"
+"help.text"
+msgid "When running a slide show using the Presenter Console, you can use the following keys:"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104028\n"
+"help.text"
+msgid "Action"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104093\n"
+"help.text"
+msgid "Key or Keys"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110418\n"
+"help.text"
+msgid "Next slide, or next effect"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104120\n"
+"help.text"
+msgid "Left click, right arrow, down arrow, spacebar, page down, enter, return, 'N'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104165\n"
+"help.text"
+msgid "Previous slide, or previous effect"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104115\n"
+"help.text"
+msgid "Right click, left arrow, up arrow, page up, backspace, 'P'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104164\n"
+"help.text"
+msgid "First slide"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104148\n"
+"help.text"
+msgid "Home"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104221\n"
+"help.text"
+msgid "Last slide"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104277\n"
+"help.text"
+msgid "End"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104279\n"
+"help.text"
+msgid "Previous slide without effects"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110423\n"
+"help.text"
+msgid "Alt+Page Up"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110427\n"
+"help.text"
+msgid "Next slide without effects"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104261\n"
+"help.text"
+msgid "Alt+Page Down"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104383\n"
+"help.text"
+msgid "Black/Unblack the screen"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110431\n"
+"help.text"
+msgid "'B', '.'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104311\n"
+"help.text"
+msgid "White/Unwhite the screen"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104359\n"
+"help.text"
+msgid "'W', ','"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104336\n"
+"help.text"
+msgid "End slide show"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104419\n"
+"help.text"
+msgid "Esc, '-'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104460\n"
+"help.text"
+msgid "Go to slide number"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110440\n"
+"help.text"
+msgid "Number followed by Enter"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104427\n"
+"help.text"
+msgid "Grow/Shrink size of notes font"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104442\n"
+"help.text"
+msgid "'G', 'S'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104473\n"
+"help.text"
+msgid "Scroll notes up/down"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110459\n"
+"help.text"
+msgid "'A', 'Z'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110456\n"
+"help.text"
+msgid "Move caret in notes view backward/forward"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110457\n"
+"help.text"
+msgid "'H', 'L'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104566\n"
+"help.text"
+msgid "Show the Presenter Console"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104544\n"
+"help.text"
+msgid "Ctrl-'1'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104535\n"
+"help.text"
+msgid "Show the Presentation Notes"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104680\n"
+"help.text"
+msgid "Ctrl-'2'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104634\n"
+"help.text"
+msgid "Show the Slides Overview"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104632\n"
+"help.text"
+msgid "Ctrl-'3'"
+msgstr ""
diff --git a/source/ast/helpcontent2/source/text/simpress/guide.po b/source/ast/helpcontent2/source/text/simpress/guide.po
index 5b61d7d9eae..069cdda94f3 100644
--- a/source/ast/helpcontent2/source/text/simpress/guide.po
+++ b/source/ast/helpcontent2/source/text/simpress/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: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: 2016-05-07 23:54+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -2160,6 +2160,14 @@ msgctxt ""
msgid "<link href=\"https://itunes.apple.com/us/app/libreoffice-remote-for-impress/id806879890?mt=8\" name=\"Impress Remote in Apple Itunes Store\">Impress Remote in Apple iTunes Store</link>"
msgstr ""
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id631512838846263\n"
+"help.text"
+msgid "<link href=\"text/simpress/guide/presenter_console.xhp\" name=\"The Presenter Console\">The Presenter Console</link>"
+msgstr ""
+
#: individual.xhp
msgctxt ""
"individual.xhp\n"
@@ -4648,6 +4656,278 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/insert_bitmap.xhp\">Insert images</link>"
msgstr ""
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"tit\n"
+"help.text"
+msgid "Using the Presenter Console"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id190820172252141064\n"
+"help.text"
+msgid "<link href=\"text/simpress/guide/presenter_console.xhp\">Using the Presenter Console</link>"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id190820172252291885\n"
+"help.text"
+msgid "<ahelp hid=\".\">The Presenter Console displays the slide show in an external screen (projector or large television), while the presentation controls are shown in the computer screen.</ahelp>"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id190820172252291668\n"
+"help.text"
+msgid "The Presenter Console provides extra control over slide shows by using different views on your computer display and on the display seen by the audience. The view you see on your computer display includes the current slide, the upcoming slide, optionally the slide notes, and a presentation timer."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id91512579485395\n"
+"help.text"
+msgid "The Presenter Console works only on an operating system that supports multiple displays and only when two displays are connected (one may be the laptop built-in display)."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id391512577186778\n"
+"help.text"
+msgid "Presenter console activation"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id21512577205388\n"
+"help.text"
+msgid "To enable the Presenter Console:"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id351512577323192\n"
+"help.text"
+msgid "<item type=\"item_type\">Tools - Options - %PRODUCTNAME Impres - General</item>"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id411512577389978\n"
+"help.text"
+msgid "Select <emph>Enable Presenter Console</emph> in the Presentation area."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id261512578116942\n"
+"help.text"
+msgid "<image src=\"media/screenshots/cui/ui/optionsdialog/impressoptionsgeneraldialog.png\" width=\"793px\" height=\"538px\"> <alt id=\"alt_id821512578116950\">Enable Presenter Console option</alt> </image>"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id371512836579028\n"
+"help.text"
+msgid "To activate the Presenter Console:"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id101512577717469\n"
+"help.text"
+msgid "Connect an auxiliary display to your computer,"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id391512577726275\n"
+"help.text"
+msgid "Run the slide show. Press F5 or Shift-F5 or choose <item type=\"menuitem\">Slide Show - Start from First Slide</item> or <item type=\"menuitem\">Start from Current Slide</item>."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id911512577777440\n"
+"help.text"
+msgid "Presenter console controls"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id721512827886185\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sd_PresenterConsole04.png\" id=\"img_id401512827886185\" width=\"640\" height=\"72\"> <alt id=\"alt_id71512827886185\">Presenter Console Controls</alt> </image>"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id71512828085688\n"
+"help.text"
+msgid "<emph>Previous</emph>: move to previous slide"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id61512828110394\n"
+"help.text"
+msgid "<emph>Next</emph>: move to next slide"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id981512828129990\n"
+"help.text"
+msgid "<emph>Notes</emph>: display the Presenter Console Notes mode"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id101512828220096\n"
+"help.text"
+msgid "<emph>Slide</emph>: display the Presenter Console Slide sorter mode"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id241512828268769\n"
+"help.text"
+msgid "<emph>Restart</emph>: restart the presentation from slide one."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id731512828322875\n"
+"help.text"
+msgid "<emph>Exchange</emph>: Switch the displays between the computer and the presentation display."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id891512828892146\n"
+"help.text"
+msgid "<emph>Close</emph>: In the Notes and Slide Sorter mode, return to the Normal mode."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id281512836182615\n"
+"help.text"
+msgid "Presenter Console Keyboard Shortcuts"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id791512827206666\n"
+"help.text"
+msgid "Presenter Console modes"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id181512827240072\n"
+"help.text"
+msgid "Normal Mode"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id341512828780413\n"
+"help.text"
+msgid "The Normal mode shows the current slide on the left and the next slide on the right of the computer display."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id311512825411947\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sd_PresenterConsole01.png\" id=\"img_id481512825411947\" width=\"640\" height=\"360\"> <alt id=\"alt_id151512825411947\">resenter console normal mode</alt> </image>"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id51512827289580\n"
+"help.text"
+msgid "Notes mode"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id711512828774884\n"
+"help.text"
+msgid "The Notes mode displays the current slide on the left, the slides notes on the right and the next slide below the current slide."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id961512827293400\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sd_PresenterConsole03.png\" id=\"img_id651512827293401\" width=\"640\" height=\"360\"> <alt id=\"alt_id881512827293401\">Notes mode</alt> </image>"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id801512827429345\n"
+"help.text"
+msgid "Slide sorter mode"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id571512828767315\n"
+"help.text"
+msgid "The Slide Sorter mode displays all slides in the computer screen and allows to display the selected slide out of the presentation order."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id721512827434997\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sd_PresenterConsole02.png\" id=\"img_id831512827434997\" width=\"640\" height=\"360\"> <alt id=\"alt_id221512827434997\">Slide sorter mode</alt> </image>"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id311512837936329\n"
+"help.text"
+msgid "<link href=\"text/simpress/guide/impress_remote.xhp\" name=\"Impress Remote User Guide\">Impress Remote User Guide</link>"
+msgstr ""
+
#: print_tofit.xhp
msgctxt ""
"print_tofit.xhp\n"
diff --git a/source/ast/helpcontent2/source/text/smath.po b/source/ast/helpcontent2/source/text/smath.po
index 976d5c91cc4..6f5dd7be206 100644
--- a/source/ast/helpcontent2/source/text/smath.po
+++ b/source/ast/helpcontent2/source/text/smath.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: smath\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-09 16:45+0200\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2015-08-25 13:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: softastur <LL@li.org>\n"
@@ -120,70 +120,6 @@ msgctxt ""
msgid "This menu contains the general commands for working with formula documents, such as open, save and print."
msgstr "Esti menú contién los comandos xenerales pa trabayar con documentos de fórmula, como por exemplu, abrir, guardar ya imprentar los documentos."
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3148489\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
-msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Abrir\">Abrir</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3149501\n"
-"help.text"
-msgid "<link href=\"text/shared/autopi/01000000.xhp\" name=\"AutoPilot\">Wizards</link>"
-msgstr "<link href=\"text/shared/autopi/01000000.xhp\" name=\"Asistentes\">Asistentes</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"par_id3148840\n"
-"help.text"
-msgid "Use a Wizard to create interactive documents, such as professional letters and faxes, into which you can insert your saved formulas."
-msgstr "Use un asistente pa crear documentos interactivos, como cartes y faxes profesionales, nos que pueda inxerar les fórmules que guardara."
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3153251\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
-msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Guardar como\">Guardar como</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3149871\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
-msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Versiones\">Versiones</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3146325\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
-msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"Propiedaes\">Propiedaes</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3155621\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
-msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"Imprentar\">Imprentar</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3145826\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">Printer Setup</link>"
-msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"Configuración de la imprentadora\">Configuración de la imprentadora</link>"
-
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
diff --git a/source/ast/helpcontent2/source/text/swriter/guide.po b/source/ast/helpcontent2/source/text/swriter/guide.po
index 9d962e581e1..0c08fe5fe90 100644
--- a/source/ast/helpcontent2/source/text/swriter/guide.po
+++ b/source/ast/helpcontent2/source/text/swriter/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: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
"PO-Revision-Date: 2016-07-05 17:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -7213,7 +7213,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item> and click the <emph>Numbering</emph> tab."
msgstr ""
#: indices_enter.xhp
@@ -15704,6 +15704,14 @@ msgctxt ""
msgid "Moves the cursor to the footer."
msgstr "Mueve'l cursor al pie de páxina."
+#: text_nav_keyb.xhp
+msgctxt ""
+"text_nav_keyb.xhp\n"
+"par_id921513466017508\n"
+"help.text"
+msgid "<link href=\"text/shared/02/20050000.xhp\" name=\"Selection modes\">Selection Modes</link>"
+msgstr ""
+
#: text_rotate.xhp
msgctxt ""
"text_rotate.xhp\n"
diff --git a/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
index 036c6e61a30..0397e1d9ef2 100644
--- a/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ast/officecfg/registry/data/org/openoffice/Office/UI.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: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2016-12-01 12:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2826,8 +2826,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:Hide\n"
"Label\n"
"value.text"
-msgid "~Hide Sheets"
-msgstr "Tapecer ~Fueyes"
+msgid "~Hide Sheet"
+msgstr ""
#: CalcCommands.xcu
#, fuzzy
@@ -3590,17 +3590,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:EditLinks\n"
"Label\n"
"value.text"
-msgid "Edit Lin~ks..."
-msgstr "Editar Enlla~ces..."
-
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:EditLinks\n"
-"ContextLabel\n"
-"value.text"
-msgid "Lin~ks..."
-msgstr "~Enllaces..."
+msgid "Lin~ks to External Files..."
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -6982,16 +6973,6 @@ msgstr "D~iapositiva"
#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Commands..uno:SlideNavigateMenu\n"
-"Label\n"
-"value.text"
-msgid "Navigate"
-msgstr "Restolar"
-
-#: DrawImpressCommands.xcu
-#, fuzzy
-msgctxt ""
-"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:SlideMoveMenu\n"
"Label\n"
"value.text"
@@ -7607,6 +7588,15 @@ msgstr "Númberu de páx~ina"
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlideField\n"
+"Label\n"
+"value.text"
+msgid "~Slide Number"
+msgstr ""
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:InsertPageTitleField\n"
"Label\n"
"value.text"
@@ -7616,6 +7606,15 @@ msgstr ""
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlideTitleField\n"
+"Label\n"
+"value.text"
+msgid "Slide Tit~le"
+msgstr ""
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:InsertPagesField\n"
"Label\n"
"value.text"
@@ -7625,6 +7624,15 @@ msgstr "~Cuntar páxines"
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlidesField\n"
+"Label\n"
+"value.text"
+msgid "Slide ~Count"
+msgstr ""
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:ModifyField\n"
"Label\n"
"value.text"
@@ -7847,8 +7855,8 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:ManageLinks\n"
"Label\n"
"value.text"
-msgid "Lin~ks..."
-msgstr "~Enllaces..."
+msgid "Lin~ks to External Files..."
+msgstr ""
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7939,7 +7947,7 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:ImportSlideFromFile\n"
"Label\n"
"value.text"
-msgid "Import Slides..."
+msgid "Insert Slide from File..."
msgstr ""
#: DrawImpressCommands.xcu
@@ -9172,6 +9180,15 @@ msgstr "Númberu de páx~ina..."
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Popups..uno:InsertSlideNumber\n"
+"Label\n"
+"value.text"
+msgid "S~lide Number..."
+msgstr ""
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:InsertDateAndTime\n"
"Label\n"
"value.text"
@@ -17740,14 +17757,13 @@ msgid "H~alf-width"
msgstr "Metada del ~anchor"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:InsertDoc\n"
"Label\n"
"value.text"
-msgid "Doc~ument..."
-msgstr "~Documentu..."
+msgid "Text from File..."
+msgstr ""
#: GenericCommands.xcu
msgctxt ""
@@ -17925,6 +17941,15 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ViewSidebarStyles\n"
+"Label\n"
+"value.text"
+msgid "Styles"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:OutlineRight\n"
"Label\n"
"value.text"
@@ -19573,25 +19598,6 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
-"Label\n"
-"value.text"
-msgid "Charmap"
-msgstr ""
-
-#: GenericCommands.xcu
-#, fuzzy
-msgctxt ""
-"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
-"TooltipLabel\n"
-"value.text"
-msgid "Insert Special Characters"
-msgstr "Inxertar caráuter especial"
-
-#: GenericCommands.xcu
-msgctxt ""
-"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:TransformRotationX\n"
"Label\n"
"value.text"
@@ -20754,6 +20760,34 @@ msgstr "Inxertar caráuter especial"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"Label\n"
+"value.text"
+msgid "Symbol"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"ContextLabel\n"
+"value.text"
+msgid "S~pecial Character..."
+msgstr ""
+
+#: GenericCommands.xcu
+#, fuzzy
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Insert Special Characters"
+msgstr "Inxertar caráuter especial"
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ViewDataSourceBrowser\n"
"Label\n"
"value.text"
@@ -20798,6 +20832,15 @@ msgid "Send via ~Bluetooth..."
msgstr "Unviar per ~Bluetooth..."
#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ExportAsMenu\n"
+"Label\n"
+"value.text"
+msgid "~Export As"
+msgstr ""
+
+#: GenericCommands.xcu
#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
@@ -20867,14 +20910,13 @@ msgid "EPUB"
msgstr ""
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportToEPUB\n"
"ContextLabel\n"
"value.text"
-msgid "~Export as EPUB..."
-msgstr "Esportar como P~DF..."
+msgid "Export as E~PUB..."
+msgstr ""
#: GenericCommands.xcu
#, fuzzy
@@ -23272,6 +23314,15 @@ msgctxt ""
msgid "~Restart in Safe Mode..."
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:NavigateMenu\n"
+"Label\n"
+"value.text"
+msgid "Navigate"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -25956,8 +26007,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:ShowHiddenParagraphs\n"
"Label\n"
"value.text"
-msgid "~Hidden Paragraphs"
-msgstr "Párrafos ~Tapecíos"
+msgid "Field ~Hidden Paragraphs"
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
@@ -27971,8 +28022,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:LinkDialog\n"
"Label\n"
"value.text"
-msgid "Lin~ks..."
-msgstr "~Enllaces..."
+msgid "Lin~ks to External Files..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
@@ -30732,7 +30783,7 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 1&amp;FamilyName:string=NumberingStyles\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 123&amp;FamilyName:string=NumberingStyles\n"
"Label\n"
"value.text"
msgid "Number List"
@@ -30760,10 +30811,64 @@ msgstr "Estilu de numberación"
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 4&amp;FamilyName:string=NumberingStyles\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering ABC&amp;FamilyName:string=NumberingStyles\n"
"Label\n"
"value.text"
-msgid "Roman List"
+msgid "Alphabet Uppercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaListStyle\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Uppercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Alphabet Uppercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering abc&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaLowListStyle\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaLowListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Alphabet Lowercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering IVX&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Roman Uppercase List"
msgstr ""
#: WriterCommands.xcu
@@ -30772,7 +30877,7 @@ msgctxt ""
"..WriterCommands.UserInterface.Popups..uno:RomanListStyle\n"
"Label\n"
"value.text"
-msgid "Roman List"
+msgid "Roman Uppercase List"
msgstr ""
#: WriterCommands.xcu
@@ -30781,7 +30886,34 @@ msgctxt ""
"..WriterCommands.UserInterface.Popups..uno:RomanListStyle\n"
"TooltipLabel\n"
"value.text"
-msgid "Roman List Style"
+msgid "Roman Uppercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering ivx&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Roman Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:RomanLowListStyle\n"
+"Label\n"
+"value.text"
+msgid "Roman Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:RomanLowListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Roman Lowercase List Style"
msgstr ""
#: WriterCommands.xcu
diff --git a/source/ast/sd/messages.po b/source/ast/sd/messages.po
index 2475456d7be..d636d25402f 100644
--- a/source/ast/sd/messages.po
+++ b/source/ast/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 15:29+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1587,918 +1587,928 @@ msgid "Master Slide"
msgstr ""
#: strings.hrc:287
+msgctxt "STR_MASTERSLIDE_LABEL"
+msgid "Master Slide:"
+msgstr ""
+
+#: strings.hrc:288
#, fuzzy
msgctxt "STR_MASTERPAGE_NAME"
msgid "Master Page"
msgstr "Páxines maestres"
-#: strings.hrc:288
+#: strings.hrc:289
+msgctxt "STR_MASTERPAGE_LABEL"
+msgid "Master Page:"
+msgstr ""
+
+#: strings.hrc:290
msgctxt "STR_NOTES"
msgid "(Notes)"
msgstr "(Notes)"
-#: strings.hrc:289
+#: strings.hrc:291
msgctxt "STR_HANDOUT"
msgid "Handouts"
msgstr "Folletu"
-#: strings.hrc:290
+#: strings.hrc:292
msgctxt "STR_PRESOBJ_MPTITLE"
msgid "Click to edit the title text format"
msgstr "Calca pa editar el formatu del testu del títulu"
-#: strings.hrc:291
+#: strings.hrc:293
msgctxt "STR_PRESOBJ_MPOUTLINE"
msgid "Click to edit the outline text format"
msgstr "Calca pa editar el formatu del testu del esquema"
-#: strings.hrc:292
+#: strings.hrc:294
msgctxt "STR_PRESOBJ_MPOUTLLAYER2"
msgid "Second Outline Level"
msgstr "Nivel segundu del esquema"
-#: strings.hrc:293
+#: strings.hrc:295
msgctxt "STR_PRESOBJ_MPOUTLLAYER3"
msgid "Third Outline Level"
msgstr "Nivel terceru del esquema"
-#: strings.hrc:294
+#: strings.hrc:296
msgctxt "STR_PRESOBJ_MPOUTLLAYER4"
msgid "Fourth Outline Level"
msgstr "Nivel cuartu del esquema"
-#: strings.hrc:295
+#: strings.hrc:297
msgctxt "STR_PRESOBJ_MPOUTLLAYER5"
msgid "Fifth Outline Level"
msgstr "Nivel quintu del esquema"
-#: strings.hrc:296
+#: strings.hrc:298
msgctxt "STR_PRESOBJ_MPOUTLLAYER6"
msgid "Sixth Outline Level"
msgstr "Nivel sestu del esquema"
-#: strings.hrc:297
+#: strings.hrc:299
msgctxt "STR_PRESOBJ_MPOUTLLAYER7"
msgid "Seventh Outline Level"
msgstr "Nivel sétimu del esquema"
-#: strings.hrc:298
+#: strings.hrc:300
msgctxt "STR_PRESOBJ_MPNOTESTITLE"
msgid "Click to move the slide"
msgstr "Calca pa mover la diapositiva"
-#: strings.hrc:299
+#: strings.hrc:301
msgctxt "STR_PRESOBJ_MPNOTESTEXT"
msgid "Click to edit the notes format"
msgstr "Calca pa editar el formatu de les notes"
-#: strings.hrc:300
+#: strings.hrc:302
msgctxt "STR_PRESOBJ_TITLE"
msgid "Click to add Title"
msgstr "Calque p'amestar un títulu"
-#: strings.hrc:301
+#: strings.hrc:303
msgctxt "STR_PRESOBJ_OUTLINE"
msgid "Click to add Text"
msgstr "Calque p'amestar testu"
-#: strings.hrc:302
+#: strings.hrc:304
msgctxt "STR_PRESOBJ_TEXT"
msgid "Click to add Text"
msgstr "Calque p'amestar testu"
-#: strings.hrc:303
+#: strings.hrc:305
msgctxt "STR_PRESOBJ_NOTESTEXT"
msgid "Click to add Notes"
msgstr "Calque p'amestar notes"
-#: strings.hrc:304
+#: strings.hrc:306
msgctxt "STR_PRESOBJ_GRAPHIC"
msgid "Double-click to add an Image"
msgstr "Faiga doble clic p'amestar una imaxe"
-#: strings.hrc:305
+#: strings.hrc:307
msgctxt "STR_PRESOBJ_OBJECT"
msgid "Double-click to add an Object"
msgstr "Faiga doble clic p'amestar un oxetu"
-#: strings.hrc:306
+#: strings.hrc:308
msgctxt "STR_PRESOBJ_CHART"
msgid "Double-click to add a Chart"
msgstr "Faiga doble clic p'amestar una gráfica"
-#: strings.hrc:307
+#: strings.hrc:309
msgctxt "STR_PRESOBJ_ORGCHART"
msgid "Double-click to add an Organization Chart"
msgstr "Faiga doble clic p'amestar un organigrama"
-#: strings.hrc:308
+#: strings.hrc:310
msgctxt "STR_PRESOBJ_TABLE"
msgid "Double-click to add a Spreadsheet"
msgstr "Faiga doble clic p'amestar una fueya de cálculu"
-#: strings.hrc:309
+#: strings.hrc:311
msgctxt "STR_LAYOUT_DEFAULT_NAME"
msgid "Default"
msgstr "Predetermináu"
-#: strings.hrc:310
+#: strings.hrc:312
msgctxt "STR_LAYOUT_DEFAULT_TITLE_NAME"
msgid "Title"
msgstr "Títulu"
-#: strings.hrc:311
+#: strings.hrc:313
msgctxt "STR_STANDARD_STYLESHEET_NAME"
msgid "Default"
msgstr "Predetermináu"
-#: strings.hrc:312
+#: strings.hrc:314
msgctxt "STR_UNDO_MOVEPAGES"
msgid "Move slides"
msgstr "Mover diapositives"
-#: strings.hrc:313
+#: strings.hrc:315
msgctxt "STR_POOLSHEET_MEASURE"
msgid "Dimension Line"
msgstr "Llinia de dimensiones"
-#: strings.hrc:314
+#: strings.hrc:316
msgctxt "STR_POOLSHEET_OBJNOLINENOFILL"
msgid "Object with no fill and no line"
msgstr "Oxetu ensin rellenu nin llinia"
-#: strings.hrc:315
+#: strings.hrc:317
msgctxt "STR_POOLSHEET_OBJWITHARROW"
msgid "Object with arrow"
msgstr "Oxetu con flecha"
-#: strings.hrc:316
+#: strings.hrc:318
msgctxt "STR_POOLSHEET_OBJWITHSHADOW"
msgid "Object with shadow"
msgstr "Oxetu con solombra"
-#: strings.hrc:317
+#: strings.hrc:319
msgctxt "STR_POOLSHEET_OBJWITHOUTFILL"
msgid "Object without fill"
msgstr "Oxetu ensin rellenu"
-#: strings.hrc:318
+#: strings.hrc:320
msgctxt "STR_POOLSHEET_TEXT"
msgid "Text"
msgstr "Testu"
-#: strings.hrc:319
+#: strings.hrc:321
msgctxt "STR_POOLSHEET_TEXTBODY"
msgid "Text body"
msgstr "Cuerpu'l testu"
-#: strings.hrc:320
+#: strings.hrc:322
msgctxt "STR_POOLSHEET_TEXTBODY_JUSTIFY"
msgid "Text body justified"
msgstr "Cuerpu'l testu xustificáu"
-#: strings.hrc:321
+#: strings.hrc:323
msgctxt "STR_POOLSHEET_TEXTBODY_INDENT"
msgid "First line indent"
msgstr "Indentáu de primer llinia"
-#: strings.hrc:322
+#: strings.hrc:324
msgctxt "STR_POOLSHEET_TITLE"
msgid "Title"
msgstr "Títulu"
-#: strings.hrc:323
+#: strings.hrc:325
msgctxt "STR_POOLSHEET_TITLE1"
msgid "Title1"
msgstr "Títulu 1"
-#: strings.hrc:324
+#: strings.hrc:326
msgctxt "STR_POOLSHEET_TITLE2"
msgid "Title2"
msgstr "Títulu 2"
-#: strings.hrc:325
+#: strings.hrc:327
msgctxt "STR_POOLSHEET_HEADLINE"
msgid "Heading"
msgstr "Encabezáu"
-#: strings.hrc:326
+#: strings.hrc:328
msgctxt "STR_POOLSHEET_HEADLINE1"
msgid "Heading1"
msgstr "Encabezáu1"
-#: strings.hrc:327
+#: strings.hrc:329
msgctxt "STR_POOLSHEET_HEADLINE2"
msgid "Heading2"
msgstr "Encabezáu2"
-#: strings.hrc:328
+#: strings.hrc:330
msgctxt "STR_PSEUDOSHEET_TITLE"
msgid "Title"
msgstr "Títulu"
-#: strings.hrc:329
+#: strings.hrc:331
msgctxt "STR_PSEUDOSHEET_SUBTITLE"
msgid "Subtitle"
msgstr "Sotítulu"
-#: strings.hrc:330
+#: strings.hrc:332
msgctxt "STR_PSEUDOSHEET_OUTLINE"
msgid "Outline"
msgstr "Esquema"
-#: strings.hrc:331
+#: strings.hrc:333
msgctxt "STR_PSEUDOSHEET_BACKGROUNDOBJECTS"
msgid "Background objects"
msgstr "Oxetos de fondu"
-#: strings.hrc:332
+#: strings.hrc:334
msgctxt "STR_PSEUDOSHEET_BACKGROUND"
msgid "Background"
msgstr "Fondu"
-#: strings.hrc:333
+#: strings.hrc:335
msgctxt "STR_PSEUDOSHEET_NOTES"
msgid "Notes"
msgstr "Notes"
-#: strings.hrc:334
+#: strings.hrc:336
msgctxt "STR_POWERPOINT_IMPORT"
msgid "PowerPoint Import"
msgstr "Importación de PowerPoint"
-#: strings.hrc:335
+#: strings.hrc:337
msgctxt "STR_SAVE_DOC"
msgid "Save Document"
msgstr "Guardar documentu"
-#: strings.hrc:336
+#: strings.hrc:338
msgctxt "STR_POOLSHEET_BANDED_CELL"
msgid "Banding cell"
msgstr "Cuadrilla de la caxella"
-#: strings.hrc:337
+#: strings.hrc:339
msgctxt "STR_POOLSHEET_HEADER"
msgid "Header"
msgstr "Encabezáu"
-#: strings.hrc:338
+#: strings.hrc:340
msgctxt "STR_POOLSHEET_TOTAL"
msgid "Total line"
msgstr "Total de llinia"
-#: strings.hrc:339
+#: strings.hrc:341
msgctxt "STR_POOLSHEET_FIRST_COLUMN"
msgid "First column"
msgstr "Primer columna"
-#: strings.hrc:340
+#: strings.hrc:342
msgctxt "STR_POOLSHEET_LAST_COLUMN"
msgid "Last column"
msgstr "Cabera columna"
-#: strings.hrc:341
+#: strings.hrc:343
msgctxt "STR_ENTER_PIN"
msgid "Enter PIN:"
msgstr "Escriba'l códigu PIN:"
-#: strings.hrc:342
+#: strings.hrc:344
msgctxt "STR_DEAUTHORISE_CLIENT"
msgid "Remove client authorisation"
msgstr ""
-#: strings.hrc:343
+#: strings.hrc:345
msgctxt "STR_SHRINK_FONT_SIZE"
msgid "Shrink font size"
msgstr ""
-#: strings.hrc:344
+#: strings.hrc:346
msgctxt "STR_GROW_FONT_SIZE"
msgid "Grow font size"
msgstr ""
#. Names and descriptions of the Draw/Impress accessibility views
#. ==============================================================
-#: strings.hrc:349
+#: strings.hrc:351
msgctxt "SID_SD_A11Y_D_DRAWVIEW_N"
msgid "Drawing View"
msgstr "Mou Dibuxu"
-#: strings.hrc:350
+#: strings.hrc:352
msgctxt "SID_SD_A11Y_D_DRAWVIEW_D"
msgid "This is where you create and edit drawings."
msgstr "Equí ye onde crees y edites dibuxos."
-#: strings.hrc:351
+#: strings.hrc:353
msgctxt "SID_SD_A11Y_I_DRAWVIEW_N"
msgid "Drawing View"
msgstr "Mou Dibuxu"
-#: strings.hrc:352
+#: strings.hrc:354
msgctxt "SID_SD_A11Y_I_DRAWVIEW_D"
msgid "This is where you create and edit slides."
msgstr "Equí ye onde se creen y editen les diapositives."
-#: strings.hrc:353
+#: strings.hrc:355
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_N"
msgid "Outline View"
msgstr "Ver esquema"
-#: strings.hrc:354
+#: strings.hrc:356
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_D"
msgid "This is where you enter or edit text in list form."
msgstr "Equí ye onde inxertes y edites testu en forma de llista."
-#: strings.hrc:355
+#: strings.hrc:357
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_N"
msgid "Slides View"
msgstr "Vista de diapositives"
-#: strings.hrc:356
+#: strings.hrc:358
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_D"
msgid "This is where you sort slides."
msgstr "Equí ye onde ordenes les diapositives."
-#: strings.hrc:357
+#: strings.hrc:359
msgctxt "SID_SD_A11Y_I_NOTESVIEW_N"
msgid "Notes View"
msgstr "Ver notes"
-#: strings.hrc:358
+#: strings.hrc:360
msgctxt "SID_SD_A11Y_I_NOTESVIEW_D"
msgid "This is where you enter and view notes."
msgstr "Equí ye onde escribes y ves les notes."
-#: strings.hrc:359
+#: strings.hrc:361
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_N"
msgid "Handout View"
msgstr "Vista de papeleta"
-#: strings.hrc:360
+#: strings.hrc:362
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_D"
msgid "This is where you decide on the layout for handouts."
msgstr "Equí decides el diseñu de les papeletes."
-#: strings.hrc:361
+#: strings.hrc:363
#, fuzzy
msgctxt "SID_SD_A11Y_P_TITLE_N"
msgid "PresentationTitle"
msgstr "Presentación"
-#: strings.hrc:362
+#: strings.hrc:364
msgctxt "SID_SD_A11Y_P_OUTLINER_N"
msgid "PresentationOutliner"
msgstr ""
-#: strings.hrc:363
+#: strings.hrc:365
msgctxt "SID_SD_A11Y_P_SUBTITLE_N"
msgid "PresentationSubtitle"
msgstr ""
-#: strings.hrc:364
+#: strings.hrc:366
#, fuzzy
msgctxt "SID_SD_A11Y_P_PAGE_N"
msgid "PresentationPage"
msgstr "Presentación"
-#: strings.hrc:365
+#: strings.hrc:367
#, fuzzy
msgctxt "SID_SD_A11Y_P_NOTES_N"
msgid "PresentationNotes"
msgstr "Presentación"
-#: strings.hrc:366
+#: strings.hrc:368
#, fuzzy
msgctxt "SID_SD_A11Y_P_HANDOUT_N"
msgid "Handout"
msgstr "Documentu"
-#: strings.hrc:367
+#: strings.hrc:369
msgctxt "SID_SD_A11Y_P_UNKNOWN_N"
msgid "UnknownAccessiblePresentationShape"
msgstr ""
-#: strings.hrc:368
+#: strings.hrc:370
msgctxt "SID_SD_A11Y_P_TITLE_D"
msgid "PresentationTitleShape"
msgstr ""
-#: strings.hrc:369
+#: strings.hrc:371
msgctxt "SID_SD_A11Y_P_OUTLINER_D"
msgid "PresentationOutlinerShape"
msgstr ""
-#: strings.hrc:370
+#: strings.hrc:372
msgctxt "SID_SD_A11Y_P_SUBTITLE_D"
msgid "PresentationSubtitleShape"
msgstr ""
-#: strings.hrc:371
+#: strings.hrc:373
#, fuzzy
msgctxt "SID_SD_A11Y_P_PAGE_D"
msgid "PresentationPageShape"
msgstr "Presentación"
-#: strings.hrc:372
+#: strings.hrc:374
msgctxt "SID_SD_A11Y_P_NOTES_D"
msgid "PresentationNotesShape"
msgstr ""
-#: strings.hrc:373
+#: strings.hrc:375
msgctxt "SID_SD_A11Y_P_HANDOUT_D"
msgid "PresentationHandoutShape"
msgstr ""
-#: strings.hrc:374
+#: strings.hrc:376
msgctxt "SID_SD_A11Y_P_UNKNOWN_D"
msgid "Unknown accessible presentation shape"
msgstr ""
-#: strings.hrc:375
+#: strings.hrc:377
#, fuzzy
msgctxt "SID_SD_A11Y_P_FOOTER_N"
msgid "PresentationFooter"
msgstr "Mou presentación"
-#: strings.hrc:376
+#: strings.hrc:378
msgctxt "SID_SD_A11Y_P_FOOTER_D"
msgid "PresentationFooterShape"
msgstr ""
-#: strings.hrc:377
+#: strings.hrc:379
#, fuzzy
msgctxt "SID_SD_A11Y_P_HEADER_N"
msgid "PresentationHeader"
msgstr "Presentación"
-#: strings.hrc:378
+#: strings.hrc:380
msgctxt "SID_SD_A11Y_P_HEADER_D"
msgid "PresentationHeaderShape"
msgstr ""
-#: strings.hrc:379
+#: strings.hrc:381
msgctxt "SID_SD_A11Y_P_DATE_N"
msgid "PresentationDateAndTime"
msgstr ""
-#: strings.hrc:380
+#: strings.hrc:382
msgctxt "SID_SD_A11Y_P_DATE_D"
msgid "PresentationDateAndTimeShape"
msgstr ""
-#: strings.hrc:381
+#: strings.hrc:383
msgctxt "SID_SD_A11Y_P_NUMBER_N"
msgid "PresentationPageNumber"
msgstr ""
-#: strings.hrc:382
+#: strings.hrc:384
msgctxt "SID_SD_A11Y_P_NUMBER_D"
msgid "PresentationPageNumberShape"
msgstr ""
-#: strings.hrc:383
+#: strings.hrc:385
#, fuzzy
msgctxt "SID_SD_A11Y_D_PRESENTATION"
msgid "%PRODUCTNAME Presentation"
msgstr "Presentación de %PRODUCTNAME"
-#: strings.hrc:384
+#: strings.hrc:386
#, fuzzy
msgctxt "SID_SD_A11Y_P_TITLE_N_STYLE"
msgid "Title"
msgstr "Títulu"
-#: strings.hrc:385
+#: strings.hrc:387
#, fuzzy
msgctxt "SID_SD_A11Y_P_OUTLINER_N_STYLE"
msgid "Outliner"
msgstr "Fuera de llinia"
-#: strings.hrc:386
+#: strings.hrc:388
#, fuzzy
msgctxt "SID_SD_A11Y_P_SUBTITLE_N_STYLE"
msgid "Subtitle"
msgstr "Sotítulu"
-#: strings.hrc:387
+#: strings.hrc:389
#, fuzzy
msgctxt "SID_SD_A11Y_P_PAGE_N_STYLE"
msgid "Page"
msgstr "Páxina"
-#: strings.hrc:388
+#: strings.hrc:390
#, fuzzy
msgctxt "SID_SD_A11Y_P_NOTES_N_STYLE"
msgid "Notes"
msgstr "Notes"
-#: strings.hrc:389
+#: strings.hrc:391
#, fuzzy
msgctxt "SID_SD_A11Y_P_HANDOUT_N_STYLE"
msgid "Handout"
msgstr "Documentu"
-#: strings.hrc:390
+#: strings.hrc:392
msgctxt "SID_SD_A11Y_P_UNKNOWN_N_STYLE"
msgid "Unknown Accessible Presentation Shape"
msgstr ""
-#: strings.hrc:391
+#: strings.hrc:393
#, fuzzy
msgctxt "SID_SD_A11Y_P_FOOTER_N_STYLE"
msgid "Footer"
msgstr "_Pie"
-#: strings.hrc:392
+#: strings.hrc:394
#, fuzzy
msgctxt "SID_SD_A11Y_P_HEADER_N_STYLE"
msgid "Header"
msgstr "Encabezáu"
-#: strings.hrc:393
+#: strings.hrc:395
#, fuzzy
msgctxt "SID_SD_A11Y_P_DATE_N_STYLE"
msgid "Date"
msgstr "D_ata"
-#: strings.hrc:394
+#: strings.hrc:396
#, fuzzy
msgctxt "SID_SD_A11Y_P_NUMBER_N_STYLE"
msgid "Number"
msgstr "Númberu"
-#: strings.hrc:395
+#: strings.hrc:397
#, fuzzy
msgctxt "SID_SD_A11Y_D_PRESENTATION_READONLY"
msgid "(read-only)"
msgstr "(namái llectura)"
-#: strings.hrc:397
+#: strings.hrc:399
msgctxt "STR_CUSTOMANIMATION_REPEAT_NONE"
msgid "none"
msgstr "dengún"
-#: strings.hrc:398
+#: strings.hrc:400
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_NEXT_CLICK"
msgid "Until next click"
msgstr "Hasta'l siguiente clic"
-#: strings.hrc:399
+#: strings.hrc:401
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_END_OF_SLIDE"
msgid "Until end of slide"
msgstr "Hasta'l final de la diapositiva"
-#: strings.hrc:400
+#: strings.hrc:402
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_DIRECTION_PROPERTY"
msgid "Direction:"
msgstr "_Direición:"
-#: strings.hrc:401
+#: strings.hrc:403
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_ZOOM_PROPERTY"
msgid "Zoom:"
msgstr "Ampliación"
-#: strings.hrc:402
+#: strings.hrc:404
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SPOKES_PROPERTY"
msgid "Spokes:"
msgstr "Radios"
-#: strings.hrc:403
+#: strings.hrc:405
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY"
msgid "First color:"
msgstr "Primer columna"
-#: strings.hrc:404
+#: strings.hrc:406
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY"
msgid "Second color:"
msgstr "Segundu color"
-#: strings.hrc:405
+#: strings.hrc:407
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY"
msgid "Fill color:"
msgstr "Primer columna"
-#: strings.hrc:406
+#: strings.hrc:408
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_STYLE_PROPERTY"
msgid "Style:"
msgstr "Estilu:"
-#: strings.hrc:407
+#: strings.hrc:409
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_PROPERTY"
msgid "Font:"
msgstr "Tipografía"
-#: strings.hrc:408
+#: strings.hrc:410
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY"
msgid "Font color:"
msgstr "Primer columna"
-#: strings.hrc:409
+#: strings.hrc:411
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_SIZE_STYLE_PROPERTY"
msgid "Style:"
msgstr "Estilu:"
-#: strings.hrc:410
+#: strings.hrc:412
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY"
msgid "Typeface:"
msgstr "Tipu de lletra"
-#: strings.hrc:411
+#: strings.hrc:413
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY"
msgid "Line color:"
msgstr "Color de la llinia"
-#: strings.hrc:412
+#: strings.hrc:414
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SIZE_PROPERTY"
msgid "Font size:"
msgstr "Tamañu de fonte"
-#: strings.hrc:413
+#: strings.hrc:415
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SCALE_PROPERTY"
msgid "Size:"
msgstr "Tamañu"
-#: strings.hrc:414
+#: strings.hrc:416
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_AMOUNT_PROPERTY"
msgid "Amount:"
msgstr "Importe"
-#: strings.hrc:415
+#: strings.hrc:417
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_COLOR_PROPERTY"
msgid "Color:"
msgstr "Color"
-#: strings.hrc:416
+#: strings.hrc:418
msgctxt "STR_CUSTOMANIMATION_NO_SOUND"
msgid "(No sound)"
msgstr "(Ensin soníu)"
-#: strings.hrc:417
+#: strings.hrc:419
msgctxt "STR_CUSTOMANIMATION_STOP_PREVIOUS_SOUND"
msgid "(Stop previous sound)"
msgstr "(Parar soníu anterior)"
-#: strings.hrc:418
+#: strings.hrc:420
msgctxt "STR_CUSTOMANIMATION_BROWSE_SOUND"
msgid "Other sound..."
msgstr "Otru soníu..."
-#: strings.hrc:419
+#: strings.hrc:421
msgctxt "STR_CUSTOMANIMATION_SAMPLE"
msgid "Sample"
msgstr "Exemplu"
-#: strings.hrc:420
+#: strings.hrc:422
msgctxt "STR_CUSTOMANIMATION_TRIGGER"
msgid "Trigger"
msgstr "Activar"
-#: strings.hrc:421
+#: strings.hrc:423
msgctxt "STR_CUSTOMANIMATION_LIST_HELPTEXT"
msgid "First select the slide element and then click 'Add...' to add an animation effect."
msgstr "Esbille l'elementu de diapositiva y faiga clic en 'Amestar...' pa incorporar un efeutu d'animación."
-#: strings.hrc:422
+#: strings.hrc:424
msgctxt "STR_CUSTOMANIMATION_USERPATH"
msgid "User paths"
msgstr "Camín del usuariu"
-#: strings.hrc:423
+#: strings.hrc:425
msgctxt "STR_CUSTOMANIMATION_ENTRANCE"
msgid "Entrance: %1"
msgstr ""
-#: strings.hrc:424
+#: strings.hrc:426
msgctxt "STR_CUSTOMANIMATION_EMPHASIS"
msgid "Emphasis: %1"
msgstr ""
-#: strings.hrc:425
+#: strings.hrc:427
msgctxt "STR_CUSTOMANIMATION_EXIT"
msgid "Exit: %1"
msgstr ""
-#: strings.hrc:426
+#: strings.hrc:428
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_MOTION_PATHS"
msgid "Motion Paths: %1"
msgstr "Caminos de movimientu"
-#: strings.hrc:427
+#: strings.hrc:429
#, fuzzy
msgctxt "STR_SLIDETRANSITION_NONE"
msgid "None"
msgstr "dengún"
-#: strings.hrc:429
+#: strings.hrc:431
msgctxt "STR_ANNOTATION_TODAY"
msgid "Today,"
msgstr "Güéi,"
-#: strings.hrc:430
+#: strings.hrc:432
msgctxt "STR_ANNOTATION_YESTERDAY"
msgid "Yesterday,"
msgstr "Ayeri,"
-#: strings.hrc:431
+#: strings.hrc:433
msgctxt "STR_ANNOTATION_NOAUTHOR"
msgid "(no author)"
msgstr "(ensin autor)"
-#: strings.hrc:432
+#: strings.hrc:434
msgctxt "STR_ANNOTATION_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress reached the end of the presentation. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Impress aportó al final de la presentación. Quies continuar fasta l'entamu?"
-#: strings.hrc:433
+#: strings.hrc:435
msgctxt "STR_ANNOTATION_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress reached the beginning of the presentation. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Impress aportó al entamu de la presentación. Quies continuar fasta'l final?"
-#: strings.hrc:434
+#: strings.hrc:436
msgctxt "STR_ANNOTATION_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the end of the document. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Draw aportó al final del documentu. Quies continuar fasta l'entamu?"
-#: strings.hrc:435
+#: strings.hrc:437
msgctxt "STR_ANNOTATION_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the beginning of the document. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Draw aportó al entamu del documentu. Quies continuar fasta'l final?"
-#: strings.hrc:436
+#: strings.hrc:438
msgctxt "STR_ANNOTATION_UNDO_INSERT"
msgid "Insert Comment"
msgstr "Inxertar Comentariu"
-#: strings.hrc:437
+#: strings.hrc:439
msgctxt "STR_ANNOTATION_UNDO_DELETE"
msgid "Delete Comment(s)"
msgstr "Desaniciar comentariu(os)"
-#: strings.hrc:438
+#: strings.hrc:440
msgctxt "STR_ANNOTATION_UNDO_MOVE"
msgid "Move Comment"
msgstr "Mover Comentariu"
-#: strings.hrc:439
+#: strings.hrc:441
msgctxt "STR_ANNOTATION_UNDO_EDIT"
msgid "Edit Comment"
msgstr "Editar Comentariu"
-#: strings.hrc:440
+#: strings.hrc:442
msgctxt "STR_ANNOTATION_REPLY"
msgid "Reply to %1"
msgstr "Retrucar a %1"
-#: strings.hrc:442
+#: strings.hrc:444
msgctxt "RID_DRAW_MEDIA_TOOLBOX"
msgid "Media Playback"
msgstr "Reproducción de ficheros multimedia"
-#: strings.hrc:443
+#: strings.hrc:445
msgctxt "RID_DRAW_TABLE_TOOLBOX"
msgid "Table"
msgstr "Tabla"
-#: strings.hrc:445
+#: strings.hrc:447
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_GROUP_NAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: strings.hrc:446
+#: strings.hrc:448
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PRINT_GROUP"
msgid "Print"
msgstr "Imprimir"
-#: strings.hrc:447
+#: strings.hrc:449
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT"
msgid "Document"
msgstr "Documentu"
-#: strings.hrc:448
+#: strings.hrc:450
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE"
msgid "Slides per page"
msgstr "Diapositives por páxina"
-#: strings.hrc:449
+#: strings.hrc:451
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER"
msgid "Order"
msgstr "Orde"
-#: strings.hrc:450
+#: strings.hrc:452
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT"
msgid "~Contents"
msgstr "Conteníu"
-#: strings.hrc:451
+#: strings.hrc:453
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_NAME"
msgid "~Slide name"
msgstr "Nome de la diapositiva"
-#: strings.hrc:452
+#: strings.hrc:454
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_IS_PRINT_NAME"
msgid "P~age name"
msgstr "Nome de páxina"
-#: strings.hrc:453
+#: strings.hrc:455
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_DATE"
msgid "~Date and time"
msgstr "Data y tiempu"
-#: strings.hrc:454
+#: strings.hrc:456
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_HIDDEN"
msgid "Hidden pages"
msgstr "Páxines anubríes"
-#: strings.hrc:455
+#: strings.hrc:457
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY"
msgid "Color"
msgstr "Color"
-#: strings.hrc:456
+#: strings.hrc:458
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS"
msgid "~Size"
msgstr "Tamañu"
-#: strings.hrc:457
+#: strings.hrc:459
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE"
msgid "Brochure"
msgstr "_Folletu"
-#: strings.hrc:458
+#: strings.hrc:460
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_SIDES"
msgid "Page sides"
msgstr "Cares de la páxina"
-#: strings.hrc:459
+#: strings.hrc:461
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE"
msgid "Include"
msgstr "Incluir"
-#: strings.hrc:460
+#: strings.hrc:462
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAPER_TRAY"
msgid "~Use only paper tray from printer preferences"
msgstr "~Usa namái la bandexa de papel de les preferencies d'impresora"
-#: strings.hrc:461
+#: strings.hrc:463
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE"
msgid "Print range"
msgstr "Rangu d'imprentación"
-#: strings.hrc:463
+#: strings.hrc:465
msgctxt "STR_SAR_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress has searched to the end of the presentation. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Impress guetó al final de la presentación. Quies siguir fasta l'entamu?"
-#: strings.hrc:464
+#: strings.hrc:466
msgctxt "STR_SAR_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress has searched to the beginning of the presentation. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Impress guetó al entamu de la presentación. Quies siguir fasta'l final?"
-#: strings.hrc:465
+#: strings.hrc:467
msgctxt "STR_SAR_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the end of the document. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Draw guetó al final de la presentación. Quies siguir fasta l'entamu?"
-#: strings.hrc:466
+#: strings.hrc:468
msgctxt "STR_SAR_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the beginning of the document. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Draw guetó al entamu de la presentación. Quies siguir fasta'l final?"
-#: strings.hrc:468
+#: strings.hrc:470
#, fuzzy
msgctxt "STR_SD_NONE"
msgid "- None -"
@@ -4736,8 +4746,8 @@ msgstr "Usar les métriques d'impr_esora pal formatu del documentu"
#: optimpressgeneralpage.ui:622
msgctxt "optimpressgeneralpage|cbCompatibility"
-msgid "Add _spacing between paragraphs and tables (in current document)"
-msgstr "Amestar e_spaciu ente párrafos y tables (nel documentu actual)"
+msgid "Add _spacing between paragraphs and tables"
+msgstr ""
#: optimpressgeneralpage.ui:645
msgctxt "optimpressgeneralpage|label1"
@@ -5532,14 +5542,13 @@ msgid "Master Background"
msgstr ""
#: sidebarslidebackground.ui:197
-#, fuzzy
msgctxt "sidebarslidebackground|label4"
-msgid "Orientation: "
-msgstr "Orientación"
+msgid "Orientation:"
+msgstr ""
#: sidebarslidebackground.ui:212
msgctxt "sidebarslidebackground|masterslidebutton"
-msgid "Master Slide"
+msgid "Master View"
msgstr ""
#: sidebarslidebackground.ui:226
@@ -5588,10 +5597,9 @@ msgid "Wide"
msgstr "Ancha"
#: sidebarslidebackground.ui:267
-#, fuzzy
msgctxt "sidebarslidebackground|labelmargin"
-msgid "Margin: "
-msgstr "Marxe"
+msgid "Margin:"
+msgstr ""
#: sidebarslidebackground.ui:277
#, fuzzy
diff --git a/source/ast/sfx2/messages.po b/source/ast/sfx2/messages.po
index d41f38dc9d2..758122fd7e4 100644
--- a/source/ast/sfx2/messages.po
+++ b/source/ast/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -835,28 +835,33 @@ msgctxt "RID_SVXSTR_INCORRECT_PASSWORD"
msgid "Incorrect password"
msgstr "Contraseña incorreuta"
-#: strings.hrc:173
+#: strings.hrc:172
+msgctxt "RID_SVXSTR_GPG_ENCRYPT_FAILURE"
+msgid "OpenPGP key not trusted, damaged, or encryption failure. Please try again."
+msgstr ""
+
+#: strings.hrc:174
msgctxt "STR_PASSWD_MIN_LEN"
msgid "(Minimum $(MINLEN) characters)"
msgstr "(Mínimu $(MINLEN) caráuteres)"
-#: strings.hrc:174
+#: strings.hrc:175
msgctxt "STR_PASSWD_MIN_LEN1"
msgid "(Minimum 1 character)"
msgstr ""
-#: strings.hrc:175
+#: strings.hrc:176
msgctxt "STR_PASSWD_EMPTY"
msgid "(The password can be empty)"
msgstr "(La contraseña pue tar balera)"
-#: strings.hrc:176
+#: strings.hrc:177
#, fuzzy
msgctxt "STR_MODULENOTINSTALLED"
msgid "The action could not be executed. The %PRODUCTNAME program module needed for this action is currently not installed."
msgstr "Nun pudo executase l'aición. El módulu de programa %PRODUCTNAME necesariu pa esta aición anguaño nun ta instaláu."
-#: strings.hrc:178
+#: strings.hrc:179
msgctxt "STR_FILTER_NOT_INSTALLED"
msgid ""
"The selected filter $(FILTER) has not been installed.\n"
@@ -865,7 +870,7 @@ msgstr ""
"La peñera seleicionada $(FILTER) nun ta instalada.\n"
"¿Quies facelo agora?"
-#: strings.hrc:179
+#: strings.hrc:180
msgctxt "STR_FILTER_CONSULT_SERVICE"
msgid ""
"The selected filter $(FILTER) is not included in your edition.\n"
@@ -874,73 +879,73 @@ msgstr ""
"El filtru esbilláu $(FILTER) nun ta incluyíu na to edición.\n"
"Na nuesa páxina d'Internet alcontrarás les informaciones pa poder pidilos."
-#: strings.hrc:181
+#: strings.hrc:182
msgctxt "STR_WELCOME_LINE1"
msgid "Welcome to %PRODUCTNAME."
msgstr "Damos-y la bienvenida a %PRODUCTNAME."
-#: strings.hrc:182
+#: strings.hrc:183
msgctxt "STR_WELCOME_LINE2"
msgid "Drop a document here or pick an app from the left side to create one."
msgstr ""
-#: strings.hrc:184
+#: strings.hrc:185
msgctxt "STR_SFX_FILEDLG_ACTUALVERSION"
msgid "Current version"
msgstr "Versión actual"
-#: strings.hrc:185
+#: strings.hrc:186
msgctxt "STR_SFX_EXPLORERFILE_EXPORT"
msgid "Export"
msgstr "Esportar"
-#: strings.hrc:186
+#: strings.hrc:187
msgctxt "STR_SFX_EXPLORERFILE_INSERT"
msgid "Insert"
msgstr "Inxertar"
-#: strings.hrc:187
+#: strings.hrc:188
msgctxt "STR_SFX_EXPLORERFILE_BUTTONINSERT"
msgid "~Insert"
msgstr "~Inxertar"
-#: strings.hrc:188
+#: strings.hrc:189
msgctxt "STR_SFX_IMPORT_ALL"
msgid "<All formats>"
msgstr "<Tolos formatos>"
-#: strings.hrc:189
+#: strings.hrc:190
msgctxt "STR_PB_SAVEACOPY"
msgid "Save a Copy"
msgstr "Guardar una copia"
-#: strings.hrc:190
+#: strings.hrc:191
#, fuzzy
msgctxt "STR_PB_COMPAREDOC"
msgid "Compare to"
msgstr "Comparar #"
-#: strings.hrc:191
+#: strings.hrc:192
msgctxt "STR_PB_MERGEDOC"
msgid "Merge with"
msgstr ""
-#: strings.hrc:193
+#: strings.hrc:194
msgctxt "STR_SFX_NEWOFFICEDOC"
msgid "%PRODUCTNAME document"
msgstr "Documentu de %PRODUCTNAME"
-#: strings.hrc:194
+#: strings.hrc:195
msgctxt "SFX_ST_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
-#: strings.hrc:195
+#: strings.hrc:196
msgctxt "STR_SFX_REMOVE_PROPERTY"
msgid "Remove Property"
msgstr "Quitar propiedaes"
-#: strings.hrc:196
+#: strings.hrc:197
#, fuzzy
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
@@ -950,27 +955,27 @@ msgstr ""
"El valor ingresáu nun concasa cola triba especificada.\n"
"El valor atroxaráse como testu."
-#: strings.hrc:198
+#: strings.hrc:199
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "L'estilu yá esiste. ¿Sustituilu?"
-#: strings.hrc:200
+#: strings.hrc:201
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Resetear"
-#: strings.hrc:201
+#: strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Esti nome yá s'usa pa una plantía."
-#: strings.hrc:202
+#: strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Esti estilu nun esiste."
-#: strings.hrc:203
+#: strings.hrc:204
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -980,7 +985,7 @@ msgstr ""
"Esti estilu nun pue usase como estilu base,\n"
"porque produciría una referencia recursiva."
-#: strings.hrc:204
+#: strings.hrc:205
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -989,7 +994,7 @@ msgstr ""
"El nome yá esiste como estilu predetermináu.\n"
"Escueyi otru nome, por favor."
-#: strings.hrc:205
+#: strings.hrc:206
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -997,97 +1002,97 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: strings.hrc:206
+#: strings.hrc:207
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Estilos n'usu: "
-#: strings.hrc:207
+#: strings.hrc:208
#, fuzzy
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Restolador"
-#: strings.hrc:208
+#: strings.hrc:209
#, fuzzy
msgctxt "STR_SID_SIDEBAR"
msgid "Sidebar"
msgstr "Barra llateral"
-#: strings.hrc:209
+#: strings.hrc:210
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Confirmación incorreuta de la contraseña"
-#: strings.hrc:210
+#: strings.hrc:211
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Unviar"
-#: strings.hrc:211
+#: strings.hrc:212
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Fonte"
-#: strings.hrc:212
+#: strings.hrc:213
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show Previews"
msgstr ""
-#: strings.hrc:214
+#: strings.hrc:215
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Ver comentariu de la versión"
-#: strings.hrc:215
+#: strings.hrc:216
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: strings.hrc:217
+#: strings.hrc:218
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Llista d'estilos"
-#: strings.hrc:218
+#: strings.hrc:219
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Xerárquicu"
-#: strings.hrc:219
+#: strings.hrc:220
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Mou Rellenu Formatu"
-#: strings.hrc:220
+#: strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Nuevu estilu dende escoyeta"
-#: strings.hrc:221
+#: strings.hrc:222
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "~Anovar Estilos"
-#: strings.hrc:223
+#: strings.hrc:224
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "¿Daveres quier encaboxar la grabación? Tolos pasos grabaos fasta esti momentu van perdese."
-#: strings.hrc:224
+#: strings.hrc:225
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Encaboxar grabación"
-#: strings.hrc:226
+#: strings.hrc:227
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Les plantíes tán anicializándose pal primer usu."
-#: strings.hrc:228
+#: strings.hrc:229
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1096,7 +1101,7 @@ msgstr ""
"Nun s'atopó denguna impresora predefinida.\n"
"Escueya una impresora y torne a intentalo."
-#: strings.hrc:229
+#: strings.hrc:230
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1105,17 +1110,17 @@ msgstr ""
"Nun se pue aniciar la imprentadora.\n"
"Por favor verifique la configuración de la so imprentadora."
-#: strings.hrc:230
+#: strings.hrc:231
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Impresora ocupada"
-#: strings.hrc:231
+#: strings.hrc:232
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (sólo llectura)"
-#: strings.hrc:232
+#: strings.hrc:233
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1126,7 +1131,7 @@ msgstr ""
"¿Quier guardar los axustes nuevos\n"
"nel documentu activu?"
-#: strings.hrc:233
+#: strings.hrc:234
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1137,7 +1142,7 @@ msgstr ""
"¿Quier guardar los axustes nuevos\n"
"nel documentu activu?"
-#: strings.hrc:234
+#: strings.hrc:235
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1148,7 +1153,7 @@ msgstr ""
"¿Quier guardar los axustes nuevos\n"
"nel documentu activu?"
-#: strings.hrc:235
+#: strings.hrc:236
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1158,7 +1163,7 @@ msgstr ""
"El documentu nun se pue pesllar agora\n"
"darréu qu'entá se ta imprentando."
-#: strings.hrc:236
+#: strings.hrc:237
#, fuzzy
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
@@ -1168,216 +1173,318 @@ msgstr ""
"Fallu al unviar el mensax. La xida pue ser una cuenta d'usuariu o una instalación defeutuosa.\n"
"Comprueba la configuración de %PRODUCTNAME o la del programa de corréu electrónicu."
-#: strings.hrc:237
+#: strings.hrc:238
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Esti documentu nun se pue editar, dablemente porque nun tienes drechos d'accesu. ¿Quies editar una copia del documentu?"
-#: strings.hrc:238
+#: strings.hrc:239
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (documentu reparáu)"
-#: strings.hrc:239
+#: strings.hrc:240
#, fuzzy
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "El documentu nun ta baxáu del sirvidor"
-#: strings.hrc:240
+#: strings.hrc:241
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: strings.hrc:241
+#: strings.hrc:242
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: strings.hrc:242
+#: strings.hrc:243
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: strings.hrc:243
+#: strings.hrc:244
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: strings.hrc:244
+#: strings.hrc:245
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: strings.hrc:245
+#: strings.hrc:246
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Intellectual Property:"
msgstr ""
-#: strings.hrc:246
+#: strings.hrc:247
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: strings.hrc:247
+#: strings.hrc:248
#, fuzzy
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Controles d'informe"
-#: strings.hrc:248
+#: strings.hrc:249
#, fuzzy
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Baxada"
-#: strings.hrc:249
+#: strings.hrc:250
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Editar documentu"
-#: strings.hrc:250
+#: strings.hrc:251
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Firmar el documentu..."
-#: strings.hrc:251
+#: strings.hrc:252
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: strings.hrc:252
+#: strings.hrc:253
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: strings.hrc:253
+#: strings.hrc:254
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: strings.hrc:254
+#: strings.hrc:255
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: strings.hrc:255
+#: strings.hrc:256
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: strings.hrc:256
+#: strings.hrc:257
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: strings.hrc:258
+#: strings.hrc:259
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: strings.hrc:259
+#: strings.hrc:260
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Anclar"
-#: strings.hrc:260
+#: strings.hrc:261
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Desanclar"
-#: strings.hrc:262
+#: strings.hrc:263
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Más opciones"
-#: strings.hrc:263
+#: strings.hrc:264
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Zarrar el panel llateral"
-#: strings.hrc:264
+#: strings.hrc:265
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: strings.hrc:265
+#: strings.hrc:266
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Personalización"
-#: strings.hrc:266
+#: strings.hrc:267
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Restaurar los predeterminaos"
-#: strings.hrc:267
+#: strings.hrc:268
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
-#: strings.hrc:269
+#. Translators: default Impress template names
+#: strings.hrc:271
msgctxt "STR_TEMPLATE_NAME1"
-msgid "Abstract Green"
-msgstr "Verde astractu"
+msgid "Alizarin"
+msgstr ""
-#: strings.hrc:270
+#: strings.hrc:272
msgctxt "STR_TEMPLATE_NAME2"
-msgid "Abstract Red"
-msgstr "Bermeyo astractu"
+msgid "Beehive"
+msgstr ""
-#: strings.hrc:271
+#: strings.hrc:273
msgctxt "STR_TEMPLATE_NAME3"
-msgid "Abstract Yellow"
-msgstr "Mariello astractu"
+msgid "Blue Curve"
+msgstr ""
-#: strings.hrc:272
+#: strings.hrc:274
msgctxt "STR_TEMPLATE_NAME4"
-msgid "Bright Blue"
-msgstr "Azul brillante"
+msgid "Blueprint Plans"
+msgstr ""
-#: strings.hrc:273
+#: strings.hrc:275
msgctxt "STR_TEMPLATE_NAME5"
-msgid "DNA"
-msgstr "ADN"
+msgid "Bright Blue"
+msgstr ""
-#: strings.hrc:274
+#: strings.hrc:276
msgctxt "STR_TEMPLATE_NAME6"
-msgid "Inspiration"
-msgstr "Inspiración"
+msgid "Classy Red"
+msgstr ""
-#: strings.hrc:275
+#: strings.hrc:277
msgctxt "STR_TEMPLATE_NAME7"
-msgid "Lush Green"
-msgstr "Verde tupíu"
+msgid "DNA"
+msgstr ""
-#: strings.hrc:276
+#: strings.hrc:278
msgctxt "STR_TEMPLATE_NAME8"
-msgid "Metropolis"
-msgstr "Metrópolis"
+msgid "Focus"
+msgstr ""
-#: strings.hrc:277
+#: strings.hrc:279
msgctxt "STR_TEMPLATE_NAME9"
-msgid "Sunset"
-msgstr "Atapecer"
+msgid "Forestbird"
+msgstr ""
-#: strings.hrc:278
+#: strings.hrc:280
msgctxt "STR_TEMPLATE_NAME10"
+msgid "Impress"
+msgstr ""
+
+#: strings.hrc:281
+msgctxt "STR_TEMPLATE_NAME11"
+msgid "Inspiration"
+msgstr ""
+
+#: strings.hrc:282
+msgctxt "STR_TEMPLATE_NAME12"
+msgid "Lights"
+msgstr ""
+
+#: strings.hrc:283
+msgctxt "STR_TEMPLATE_NAME13"
+msgid "Lush Green"
+msgstr ""
+
+#: strings.hrc:284
+msgctxt "STR_TEMPLATE_NAME14"
+msgid "Metropolis"
+msgstr ""
+
+#: strings.hrc:285
+msgctxt "STR_TEMPLATE_NAME15"
+msgid "Midnightblue"
+msgstr ""
+
+#: strings.hrc:286
+msgctxt "STR_TEMPLATE_NAME16"
+msgid "Nature Illustration"
+msgstr ""
+
+#: strings.hrc:287
+msgctxt "STR_TEMPLATE_NAME17"
+msgid "Pencil"
+msgstr ""
+
+#: strings.hrc:288
+msgctxt "STR_TEMPLATE_NAME18"
+msgid "Piano"
+msgstr ""
+
+#: strings.hrc:289
+msgctxt "STR_TEMPLATE_NAME19"
+msgid "Portfolio"
+msgstr ""
+
+#: strings.hrc:290
+msgctxt "STR_TEMPLATE_NAME20"
+msgid "Progress"
+msgstr ""
+
+#: strings.hrc:291
+msgctxt "STR_TEMPLATE_NAME21"
+msgid "Sunset"
+msgstr ""
+
+#: strings.hrc:292
+msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
-msgstr "Antiguu"
+msgstr ""
-#: strings.hrc:280
+#: strings.hrc:293
+msgctxt "STR_TEMPLATE_NAME23"
+msgid "Vivid"
+msgstr ""
+
+#. Translators: default Writer template names
+#: strings.hrc:295
+msgctxt "STR_TEMPLATE_NAME24"
+msgid "CV"
+msgstr ""
+
+#: strings.hrc:296
+msgctxt "STR_TEMPLATE_NAME25"
+msgid "Resume"
+msgstr ""
+
+#: strings.hrc:297
+msgctxt "STR_TEMPLATE_NAME26"
+msgid "Default"
+msgstr ""
+
+#: strings.hrc:298
+msgctxt "STR_TEMPLATE_NAME27"
+msgid "Modern"
+msgstr ""
+
+#: strings.hrc:299
+msgctxt "STR_TEMPLATE_NAME28"
+msgid "Modern business letter sans-serif"
+msgstr ""
+
+#: strings.hrc:300
+msgctxt "STR_TEMPLATE_NAME29"
+msgid "Modern business letter serif"
+msgstr ""
+
+#: strings.hrc:301
+msgctxt "STR_TEMPLATE_NAME30"
+msgid "Businesscard with logo"
+msgstr ""
+
+#: strings.hrc:303
#, fuzzy
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Desaniciar"
-#: strings.hrc:281
+#: strings.hrc:304
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
diff --git a/source/ast/sw/messages.po b/source/ast/sw/messages.po
index a3b655aad05..a944a925d2b 100644
--- a/source/ast/sw/messages.po
+++ b/source/ast/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-20 08:17+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -86,10 +86,9 @@ msgid "Conditional Styles"
msgstr "Estilu _condicional"
#: app.hrc:47
-#, fuzzy
msgctxt "RID_CHARACTERSTYLEFAMILY"
-msgid "All"
-msgstr "_Too"
+msgid "All Styles"
+msgstr ""
#: app.hrc:48
#, fuzzy
@@ -110,10 +109,9 @@ msgid "Custom Styles"
msgstr "Estilos personalizaos"
#: app.hrc:56
-#, fuzzy
msgctxt "RID_FRAMESTYLEFAMILY"
-msgid "All"
-msgstr "_Too"
+msgid "All Styles"
+msgstr ""
#: app.hrc:57
#, fuzzy
@@ -134,10 +132,9 @@ msgid "Custom Styles"
msgstr "Estilos personalizaos"
#: app.hrc:65
-#, fuzzy
msgctxt "RID_PAGESTYLEFAMILY"
-msgid "All"
-msgstr "_Too"
+msgid "All Styles"
+msgstr ""
#: app.hrc:66
#, fuzzy
@@ -158,10 +155,9 @@ msgid "Custom Styles"
msgstr "Estilos personalizaos"
#: app.hrc:74
-#, fuzzy
msgctxt "RID_LISTSTYLEFAMILY"
-msgid "All"
-msgstr "_Too"
+msgid "All Styles"
+msgstr ""
#: app.hrc:75
#, fuzzy
@@ -182,10 +178,9 @@ msgid "Custom Styles"
msgstr "Estilos personalizaos"
#: app.hrc:83
-#, fuzzy
msgctxt "RID_TABLESTYLEFAMILY"
-msgid "All"
-msgstr "_Too"
+msgid "All Styles"
+msgstr ""
#: app.hrc:84
#, fuzzy
@@ -1355,28 +1350,28 @@ msgstr "Horizontal"
#. Numbering rules
#: strings.hrc:199
msgctxt "STR_POOLNUMRULE_NUM1"
-msgid "Numbering 1"
-msgstr "Numberación 1"
+msgid "Numbering 123"
+msgstr ""
#: strings.hrc:200
msgctxt "STR_POOLNUMRULE_NUM2"
-msgid "Numbering 2"
-msgstr "Numberación 2"
+msgid "Numbering ABC"
+msgstr ""
#: strings.hrc:201
msgctxt "STR_POOLNUMRULE_NUM3"
-msgid "Numbering 3"
-msgstr "Numberación 3"
+msgid "Numbering abc"
+msgstr ""
#: strings.hrc:202
msgctxt "STR_POOLNUMRULE_NUM4"
-msgid "Numbering 4"
-msgstr "Numberación 4"
+msgid "Numbering IVX"
+msgstr ""
#: strings.hrc:203
msgctxt "STR_POOLNUMRULE_NUM5"
-msgid "Numbering 5"
-msgstr "Numberación 5"
+msgid "Numbering ivx"
+msgstr ""
#: strings.hrc:204
msgctxt "STR_POOLNUMRULE_BUL1"
@@ -14380,13 +14375,13 @@ msgstr "Usar les métriques de la impresora pal formatu del documentu"
#: optcompatpage.ui:57
msgctxt "optcompatpage|format"
-msgid "Add spacing between paragraphs and tables (in current document)"
-msgstr "Amestar espaciu ente párrafos y tables (nel documentu actual)"
+msgid "Add spacing between paragraphs and tables"
+msgstr ""
#: optcompatpage.ui:58
msgctxt "optcompatpage|format"
-msgid "Add paragraph and table spacing at tops of pages (in current document)"
-msgstr "Amestar espaciu de párrafu y tabla na parte superior de les páxines (nel documentu actual)"
+msgid "Add paragraph and table spacing at tops of pages"
+msgstr ""
#: optcompatpage.ui:59
msgctxt "optcompatpage|format"
@@ -14440,7 +14435,7 @@ msgstr ""
#: optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Tolerate white lines of PDF page backgrounds for compatibility with old documents (in current document)"
+msgid "Tolerate white lines of PDF page backgrounds for compatibility with old documents"
msgstr ""
#: optcompatpage.ui:70
@@ -14455,8 +14450,8 @@ msgstr "Usar como pre_determinao"
#: optcompatpage.ui:104
msgctxt "optcompatpage|label11"
-msgid "Compatibility options for %DOCNAME"
-msgstr "Opciones de compatibilidá de %DOCNAME"
+msgid "Compatibility options for '%DOCNAME'"
+msgstr ""
#: optfonttabpage.ui:103
msgctxt "optfonttabpage|font_label"
@@ -17768,21 +17763,11 @@ msgctxt "textgridpage|labelFT_CHARSPERLINE"
msgid "Characters per line:"
msgstr "Caráuteres por llinia:"
-#: textgridpage.ui:223
-msgctxt "textgridpage|labelFT_CHARRANGE"
-msgid "(1-45)"
-msgstr ""
-
#: textgridpage.ui:236
msgctxt "textgridpage|labelFT_LINESPERPAGE"
msgid "Lines per page:"
msgstr "Llinies por páxina:"
-#: textgridpage.ui:265
-msgctxt "textgridpage|labelFT_LINERANGE"
-msgid "(1-48)"
-msgstr ""
-
#: textgridpage.ui:303
msgctxt "textgridpage|labelFT_CHARWIDTH"
msgid "Character _width:"
diff --git a/source/az/cui/messages.po b/source/az/cui/messages.po
index 3025c1a13b0..1f1730e73ba 100644
--- a/source/az/cui/messages.po
+++ b/source/az/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7900,75 +7900,75 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Yardım"
-#: optgeneralpage.ui:77
+#: optgeneralpage.ui:76
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME Dialoqları"
-#: optgeneralpage.ui:111
+#: optgeneralpage.ui:110
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: optgeneralpage.ui:137
+#: optgeneralpage.ui:136
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME Dialoqları"
-#: optgeneralpage.ui:152
+#: optgeneralpage.ui:151
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: optgeneralpage.ui:178
+#: optgeneralpage.ui:177
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: optgeneralpage.ui:193
+#: optgeneralpage.ui:192
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr ""
-#: optgeneralpage.ui:226
+#: optgeneralpage.ui:225
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: optgeneralpage.ui:252
+#: optgeneralpage.ui:251
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "və"
-#: optgeneralpage.ui:267
+#: optgeneralpage.ui:266
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: optgeneralpage.ui:293
+#: optgeneralpage.ui:292
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: optgeneralpage.ui:308
+#: optgeneralpage.ui:307
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: optgeneralpage.ui:339
+#: optgeneralpage.ui:338
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr ""
-#: optgeneralpage.ui:353
+#: optgeneralpage.ui:352
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
-#: optgeneralpage.ui:373
+#: optgeneralpage.ui:372
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -8778,214 +8778,219 @@ msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr ""
-#: optuserpage.ui:34
+#: optuserpage.ui:12
+msgctxt "optuserpage|liststore1"
+msgid "No key"
+msgstr ""
+
+#: optuserpage.ui:45
msgctxt "optuserpage|companyft"
msgid "_Company:"
msgstr ""
-#: optuserpage.ui:48
+#: optuserpage.ui:59
msgctxt "optuserpage|nameft"
msgid "First/last _name/initials:"
msgstr ""
-#: optuserpage.ui:62
+#: optuserpage.ui:73
msgctxt "optuserpage|streetft"
msgid "_Street:"
msgstr ""
-#: optuserpage.ui:76
+#: optuserpage.ui:87
msgctxt "optuserpage|cityft"
msgid "City/state/_zip:"
msgstr ""
-#: optuserpage.ui:90
+#: optuserpage.ui:101
msgctxt "optuserpage|countryft"
msgid "Country/re_gion:"
msgstr ""
-#: optuserpage.ui:104
+#: optuserpage.ui:115
msgctxt "optuserpage|titleft"
msgid "_Title/position:"
msgstr ""
-#: optuserpage.ui:118
+#: optuserpage.ui:129
msgctxt "optuserpage|phoneft"
msgid "Telephone (home/_work):"
msgstr ""
-#: optuserpage.ui:123
+#: optuserpage.ui:134
msgctxt "phoneft-atkobject"
msgid "Home telephone number"
msgstr ""
-#: optuserpage.ui:137
+#: optuserpage.ui:148
msgctxt "optuserpage|faxft"
msgid "Fa_x/e-mail:"
msgstr ""
-#: optuserpage.ui:160
+#: optuserpage.ui:171
msgctxt "optuserpage|firstname-atkobject"
msgid "First name"
msgstr ""
-#: optuserpage.ui:178
+#: optuserpage.ui:189
msgctxt "lastname-atkobject"
msgid "Last name"
msgstr ""
-#: optuserpage.ui:196
+#: optuserpage.ui:207
msgctxt "shortname-atkobject"
msgid "Initials"
msgstr ""
-#: optuserpage.ui:225
+#: optuserpage.ui:236
msgctxt "city-atkobject"
msgid "City"
msgstr ""
-#: optuserpage.ui:243
+#: optuserpage.ui:254
msgctxt "state-atkobject"
msgid "State"
msgstr ""
-#: optuserpage.ui:261
+#: optuserpage.ui:272
msgctxt "zip-atkobject"
msgid "Zip code"
msgstr ""
-#: optuserpage.ui:291
+#: optuserpage.ui:302
#, fuzzy
msgctxt "title-atkobject"
msgid "Title"
msgstr "Başlıq"
-#: optuserpage.ui:309
+#: optuserpage.ui:320
msgctxt "position-atkobject"
msgid "Position"
msgstr ""
-#: optuserpage.ui:338
+#: optuserpage.ui:349
msgctxt "home-atkobject"
msgid "Home telephone number"
msgstr ""
-#: optuserpage.ui:356
+#: optuserpage.ui:367
msgctxt "work-atkobject"
msgid "Work telephone number"
msgstr ""
-#: optuserpage.ui:386
+#: optuserpage.ui:397
msgctxt "fax-atkobject"
msgid "FAX number"
msgstr ""
-#: optuserpage.ui:404
+#: optuserpage.ui:415
msgctxt "email-atkobject"
msgid "email address"
msgstr ""
-#: optuserpage.ui:421
+#: optuserpage.ui:432
msgctxt "optuserpage|usefordocprop"
msgid "Use data for document properties"
msgstr ""
-#: optuserpage.ui:438
+#: optuserpage.ui:449
msgctxt "optuserpage|rusnameft"
msgid "Last name/first _name/father’s name/initials:"
msgstr ""
-#: optuserpage.ui:461
+#: optuserpage.ui:472
msgctxt "ruslastname-atkobject"
msgid "Last name"
msgstr ""
-#: optuserpage.ui:479
+#: optuserpage.ui:490
msgctxt "rusfathersname-atkobject"
msgid "Father's name"
msgstr ""
-#: optuserpage.ui:497
+#: optuserpage.ui:508
msgctxt "russhortname-atkobject"
msgid "Initials"
msgstr ""
-#: optuserpage.ui:515
+#: optuserpage.ui:526
msgctxt "rusfirstname-atkobject"
msgid "First name"
msgstr ""
-#: optuserpage.ui:535
+#: optuserpage.ui:546
msgctxt "optuserpage|eastnameft"
msgid "Last/first _name/initials:"
msgstr ""
-#: optuserpage.ui:558
+#: optuserpage.ui:569
msgctxt "eastlastname-atkobject"
msgid "Last name"
msgstr ""
-#: optuserpage.ui:576
+#: optuserpage.ui:587
msgctxt "eastfirstname-atkobject"
msgid "First name"
msgstr ""
-#: optuserpage.ui:594
+#: optuserpage.ui:605
msgctxt "eastshortname-atkobject"
msgid "Initials"
msgstr ""
-#: optuserpage.ui:614
+#: optuserpage.ui:625
msgctxt "optuserpage|russtreetft"
msgid "_Street/apartment number:"
msgstr ""
-#: optuserpage.ui:637
+#: optuserpage.ui:648
msgctxt "russtreet-atkobject"
msgid "Street"
msgstr ""
-#: optuserpage.ui:655
+#: optuserpage.ui:666
msgctxt "ruslastname-atkobject"
msgid "Apartment number"
msgstr ""
-#: optuserpage.ui:675
+#: optuserpage.ui:686
msgctxt "optuserpage|icityft"
msgid "_Zip/city:"
msgstr ""
-#: optuserpage.ui:698
+#: optuserpage.ui:709
msgctxt "icity-atkobject"
msgid "City"
msgstr ""
-#: optuserpage.ui:716
+#: optuserpage.ui:727
msgctxt "izip-atkobject"
msgid "Zip code"
msgstr ""
-#: optuserpage.ui:814
+#: optuserpage.ui:825
msgctxt "optuserpage|label1"
msgid "Address"
msgstr ""
-#: optuserpage.ui:847
+#: optuserpage.ui:861
msgctxt "optuserpage|signingkeylabel"
msgid "OpenPGP signing key:"
msgstr ""
-#: optuserpage.ui:860
+#: optuserpage.ui:875
msgctxt "optuserpage|encryptionkeylabel"
msgid "OpenPGP encryption key:"
msgstr ""
-#: optuserpage.ui:889
+#: optuserpage.ui:908
msgctxt "optuserpage|encrypttoself"
msgid "When encrypting documents, always encrypt to self"
msgstr ""
-#: optuserpage.ui:909
-msgctxt "optuserpage|label2"
+#: optuserpage.ui:930
+msgctxt "optuserpage|cryptographylabel"
msgid "Cryptography"
msgstr ""
diff --git a/source/az/extras/source/autocorr/emoji.po b/source/az/extras/source/autocorr/emoji.po
index 2c23e1efdc3..30da0f51870 100644
--- a/source/az/extras/source/autocorr/emoji.po
+++ b/source/az/extras/source/autocorr/emoji.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: 2016-10-18 13:02+0200\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2016-12-01 11:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1708,7 +1708,7 @@ msgctxt ""
"emoji.ulf\n"
"LIGHTNING\n"
"LngText.text"
-msgid "lighting"
+msgid "lightning3"
msgstr ""
#. ☈ (U+02608), see http://wiki.documentfoundation.org/Emoji
@@ -1717,7 +1717,7 @@ msgctxt ""
"emoji.ulf\n"
"THUNDERSTORM\n"
"LngText.text"
-msgid "storm"
+msgid "storm2"
msgstr ""
#. ☉ (U+02609), see http://wiki.documentfoundation.org/Emoji
@@ -2059,7 +2059,7 @@ msgctxt ""
"emoji.ulf\n"
"MERCURY\n"
"LngText.text"
-msgid "Mercury"
+msgid "mercury"
msgstr ""
#. ♀ (U+02640), see http://wiki.documentfoundation.org/Emoji
@@ -2077,8 +2077,8 @@ msgctxt ""
"emoji.ulf\n"
"EARTH\n"
"LngText.text"
-msgid "Earth"
-msgstr "Yer"
+msgid "earth"
+msgstr ""
#. ♂ (U+02642), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2095,8 +2095,8 @@ msgctxt ""
"emoji.ulf\n"
"JUPITER\n"
"LngText.text"
-msgid "Jupiter"
-msgstr "Yupiter"
+msgid "jupiter"
+msgstr ""
#. ♄ (U+02644), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2104,8 +2104,8 @@ msgctxt ""
"emoji.ulf\n"
"SATURN\n"
"LngText.text"
-msgid "Saturn"
-msgstr "Saturn"
+msgid "saturn"
+msgstr ""
#. ♅ (U+02645), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2113,8 +2113,8 @@ msgctxt ""
"emoji.ulf\n"
"URANUS\n"
"LngText.text"
-msgid "Uranus"
-msgstr "Uran"
+msgid "uranus"
+msgstr ""
#. ♆ (U+02646), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2122,8 +2122,8 @@ msgctxt ""
"emoji.ulf\n"
"NEPTUNE\n"
"LngText.text"
-msgid "Neptune"
-msgstr "Neptun"
+msgid "neptune"
+msgstr ""
#. ♇ (U+02647), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2131,8 +2131,8 @@ msgctxt ""
"emoji.ulf\n"
"PLUTO\n"
"LngText.text"
-msgid "Pluto"
-msgstr "Pluton"
+msgid "pluto"
+msgstr ""
#. ♈ (U+02648), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2140,8 +2140,8 @@ msgctxt ""
"emoji.ulf\n"
"ARIES\n"
"LngText.text"
-msgid "Aries"
-msgstr "Aries"
+msgid "aries"
+msgstr ""
#. ♉ (U+02649), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2149,8 +2149,8 @@ msgctxt ""
"emoji.ulf\n"
"TAURUS\n"
"LngText.text"
-msgid "Taurus"
-msgstr "Taurus"
+msgid "taurus"
+msgstr ""
#. ♊ (U+0264A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2158,8 +2158,8 @@ msgctxt ""
"emoji.ulf\n"
"GEMINI\n"
"LngText.text"
-msgid "Gemini"
-msgstr "Gemini"
+msgid "gemini"
+msgstr ""
#. ♋ (U+0264B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2167,8 +2167,8 @@ msgctxt ""
"emoji.ulf\n"
"CANCER\n"
"LngText.text"
-msgid "Cancer"
-msgstr "Xərçəng"
+msgid "cancer"
+msgstr ""
#. ♌ (U+0264C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2176,8 +2176,8 @@ msgctxt ""
"emoji.ulf\n"
"LEO\n"
"LngText.text"
-msgid "Leo"
-msgstr "Leo"
+msgid "leo"
+msgstr ""
#. ♍ (U+0264D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2185,8 +2185,8 @@ msgctxt ""
"emoji.ulf\n"
"VIRGO\n"
"LngText.text"
-msgid "Virgo"
-msgstr "Virqo"
+msgid "virgo"
+msgstr ""
#. ♎ (U+0264E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2194,8 +2194,8 @@ msgctxt ""
"emoji.ulf\n"
"LIBRA\n"
"LngText.text"
-msgid "Libra"
-msgstr "Libra"
+msgid "libra"
+msgstr ""
#. ♏ (U+0264F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2203,7 +2203,7 @@ msgctxt ""
"emoji.ulf\n"
"SCORPIUS\n"
"LngText.text"
-msgid "Scorpius"
+msgid "scorpius"
msgstr ""
#. ♐ (U+02650), see http://wiki.documentfoundation.org/Emoji
@@ -2212,7 +2212,7 @@ msgctxt ""
"emoji.ulf\n"
"SAGITTARIUS\n"
"LngText.text"
-msgid "Sagittarius"
+msgid "sagittarius"
msgstr ""
#. ♑ (U+02651), see http://wiki.documentfoundation.org/Emoji
@@ -2221,7 +2221,7 @@ msgctxt ""
"emoji.ulf\n"
"CAPRICORN\n"
"LngText.text"
-msgid "Capricorn"
+msgid "capricorn"
msgstr ""
#. ♒ (U+02652), see http://wiki.documentfoundation.org/Emoji
@@ -2230,7 +2230,7 @@ msgctxt ""
"emoji.ulf\n"
"AQUARIUS\n"
"LngText.text"
-msgid "Aquarius"
+msgid "aquarius"
msgstr ""
#. ♓ (U+02653), see http://wiki.documentfoundation.org/Emoji
@@ -2239,7 +2239,7 @@ msgctxt ""
"emoji.ulf\n"
"PISCES\n"
"LngText.text"
-msgid "Pisces"
+msgid "pisces"
msgstr ""
#. ♔ (U+02654), see http://wiki.documentfoundation.org/Emoji
@@ -2602,8 +2602,8 @@ msgctxt ""
"emoji.ulf\n"
"WHITE_FLAG\n"
"LngText.text"
-msgid "flag"
-msgstr "bayraq"
+msgid "flag4"
+msgstr ""
#. ⚑ (U+02691), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2611,8 +2611,8 @@ msgctxt ""
"emoji.ulf\n"
"BLACK_FLAG\n"
"LngText.text"
-msgid "flag2"
-msgstr "bayraq2"
+msgid "flag3"
+msgstr ""
#. ⚒ (U+02692), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2918,8 +2918,8 @@ msgctxt ""
"emoji.ulf\n"
"BLACK_CROSS_ON_SHIELD\n"
"LngText.text"
-msgid "shield"
-msgstr "qalxan"
+msgid "shield2"
+msgstr ""
#. ⛪ (U+026EA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2964,8 +2964,8 @@ msgctxt ""
"emoji.ulf\n"
"FLAG_IN_HOLE\n"
"LngText.text"
-msgid "golf"
-msgstr "qolf"
+msgid "golf2"
+msgstr ""
#. ⛴ (U+026F4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3697,7 +3697,7 @@ msgctxt ""
"emoji.ulf\n"
"FOGGY\n"
"LngText.text"
-msgid "fog"
+msgid "foggy"
msgstr ""
#. 🌂 (U+1F302), see http://wiki.documentfoundation.org/Emoji
@@ -3799,7 +3799,7 @@ msgctxt ""
"emoji.ulf\n"
"MILKY_WAY\n"
"LngText.text"
-msgid "Milky way"
+msgid "milky way"
msgstr ""
#. 🌍 (U+1F30D), see http://wiki.documentfoundation.org/Emoji
@@ -4055,7 +4055,7 @@ msgctxt ""
"emoji.ulf\n"
"CHERRY_BLOSSOM\n"
"LngText.text"
-msgid "cherry blossom"
+msgid "blossom2"
msgstr ""
#. 🌹 (U+1F339), see http://wiki.documentfoundation.org/Emoji
@@ -4290,7 +4290,7 @@ msgctxt ""
"emoji.ulf\n"
"CHERRIES\n"
"LngText.text"
-msgid "cherries"
+msgid "cherry"
msgstr ""
#. 🍓 (U+1F353), see http://wiki.documentfoundation.org/Emoji
@@ -4589,8 +4589,8 @@ msgctxt ""
"emoji.ulf\n"
"COOKING\n"
"LngText.text"
-msgid "egg"
-msgstr "yumurta"
+msgid "cooking"
+msgstr ""
#. 🍴 (U+1F374), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4626,7 +4626,7 @@ msgctxt ""
"emoji.ulf\n"
"WINE_GLASS\n"
"LngText.text"
-msgid "wine glass"
+msgid "glass"
msgstr ""
#. 🍸 (U+1F378), see http://wiki.documentfoundation.org/Emoji
@@ -4644,7 +4644,7 @@ msgctxt ""
"emoji.ulf\n"
"TROPICAL_DRINK\n"
"LngText.text"
-msgid "tropical drink"
+msgid "drink2"
msgstr ""
#. 🍺 (U+1F37A), see http://wiki.documentfoundation.org/Emoji
@@ -4680,7 +4680,7 @@ msgctxt ""
"emoji.ulf\n"
"RIBBON\n"
"LngText.text"
-msgid "ribbon"
+msgid "ribbon2"
msgstr ""
#. 🎁 (U+1F381), see http://wiki.documentfoundation.org/Emoji
@@ -4707,7 +4707,7 @@ msgctxt ""
"emoji.ulf\n"
"JACK-O-LANTERN\n"
"LngText.text"
-msgid "Halloween"
+msgid "halloween"
msgstr ""
#. 🎄 (U+1F384), see http://wiki.documentfoundation.org/Emoji
@@ -4716,7 +4716,7 @@ msgctxt ""
"emoji.ulf\n"
"CHRISTMAS_TREE\n"
"LngText.text"
-msgid "Christmas"
+msgid "christmas"
msgstr ""
#. 🎅 (U+1F385), see http://wiki.documentfoundation.org/Emoji
@@ -4725,7 +4725,7 @@ msgctxt ""
"emoji.ulf\n"
"FATHER_CHRISTMAS\n"
"LngText.text"
-msgid "Santa"
+msgid "santa"
msgstr ""
#. 🎆 (U+1F386), see http://wiki.documentfoundation.org/Emoji
@@ -4770,7 +4770,7 @@ msgctxt ""
"emoji.ulf\n"
"CONFETTI_BALL\n"
"LngText.text"
-msgid "confetti ball"
+msgid "party2"
msgstr ""
#. 🎋 (U+1F38B), see http://wiki.documentfoundation.org/Emoji
@@ -4862,7 +4862,7 @@ msgctxt ""
"emoji.ulf\n"
"CAROUSEL_HORSE\n"
"LngText.text"
-msgid "carousel horse"
+msgid "fair2"
msgstr ""
#. 🎡 (U+1F3A1), see http://wiki.documentfoundation.org/Emoji
@@ -4871,7 +4871,7 @@ msgctxt ""
"emoji.ulf\n"
"FERRIS_WHEEL\n"
"LngText.text"
-msgid "ferris wheel"
+msgid "fair"
msgstr ""
#. 🎢 (U+1F3A2), see http://wiki.documentfoundation.org/Emoji
@@ -4952,7 +4952,7 @@ msgctxt ""
"emoji.ulf\n"
"CIRCUS_TENT\n"
"LngText.text"
-msgid "circus tent"
+msgid "circus"
msgstr ""
#. 🎫 (U+1F3AB), see http://wiki.documentfoundation.org/Emoji
@@ -5155,13 +5155,12 @@ msgstr ""
#. 🏁 (U+1F3C1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CHEQUERED_FLAG\n"
"LngText.text"
-msgid "flag3"
-msgstr "bayraq"
+msgid "race"
+msgstr ""
#. 🏂 (U+1F3C2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5205,7 +5204,7 @@ msgctxt ""
"emoji.ulf\n"
"HORSE_RACING\n"
"LngText.text"
-msgid "horse racing"
+msgid "horse3"
msgstr ""
#. 🏈 (U+1F3C8), see http://wiki.documentfoundation.org/Emoji
@@ -6947,7 +6946,7 @@ msgctxt ""
"emoji.ulf\n"
"MONEY_BAG\n"
"LngText.text"
-msgid "moneybag"
+msgid "money2"
msgstr ""
#. 💱 (U+1F4B1), see http://wiki.documentfoundation.org/Emoji
@@ -6956,7 +6955,7 @@ msgctxt ""
"emoji.ulf\n"
"CURRENCY_EXCHANGE\n"
"LngText.text"
-msgid "currency exchange"
+msgid "exchange"
msgstr ""
#. 💲 (U+1F4B2), see http://wiki.documentfoundation.org/Emoji
@@ -7032,7 +7031,7 @@ msgctxt ""
"emoji.ulf\n"
"CHART_WITH_UPWARDS_TREND_AND_YEN_SIGN\n"
"LngText.text"
-msgid "chart"
+msgid "chart4"
msgstr ""
#. 💺 (U+1F4BA), see http://wiki.documentfoundation.org/Emoji
@@ -7124,7 +7123,7 @@ msgctxt ""
"emoji.ulf\n"
"PAGE_WITH_CURL\n"
"LngText.text"
-msgid "page with curl"
+msgid "page3"
msgstr ""
#. 📄 (U+1F4C4), see http://wiki.documentfoundation.org/Emoji
@@ -7133,7 +7132,7 @@ msgctxt ""
"emoji.ulf\n"
"PAGE_FACING_UP\n"
"LngText.text"
-msgid "page facing up"
+msgid "page"
msgstr ""
#. 📅 (U+1F4C5), see http://wiki.documentfoundation.org/Emoji
@@ -7165,13 +7164,12 @@ msgstr ""
#. 📈 (U+1F4C8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CHART_WITH_UPWARDS_TREND\n"
"LngText.text"
-msgid "char"
-msgstr "pişik"
+msgid "chart"
+msgstr ""
#. 📉 (U+1F4C9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7287,7 +7285,7 @@ msgctxt ""
"emoji.ulf\n"
"CLOSED_BOOK\n"
"LngText.text"
-msgid "book"
+msgid "book2"
msgstr ""
#. 📖 (U+1F4D6), see http://wiki.documentfoundation.org/Emoji
@@ -7296,7 +7294,7 @@ msgctxt ""
"emoji.ulf\n"
"OPEN_BOOK\n"
"LngText.text"
-msgid "book2"
+msgid "book3"
msgstr ""
#. 📚 (U+1F4DA), see http://wiki.documentfoundation.org/Emoji
@@ -7368,7 +7366,7 @@ msgctxt ""
"emoji.ulf\n"
"SATELLITE_ANTENNA\n"
"LngText.text"
-msgid "satellite"
+msgid "antenna"
msgstr ""
#. 📢 (U+1F4E2), see http://wiki.documentfoundation.org/Emoji
@@ -7432,7 +7430,7 @@ msgctxt ""
"emoji.ulf\n"
"INCOMING_ENVELOPE\n"
"LngText.text"
-msgid "envelope2"
+msgid "envelope7"
msgstr ""
#. 📩 (U+1F4E9), see http://wiki.documentfoundation.org/Emoji
@@ -7441,7 +7439,7 @@ msgctxt ""
"emoji.ulf\n"
"ENVELOPE_WITH_DOWNWARDS_ARROW_ABOVE\n"
"LngText.text"
-msgid "envelope3"
+msgid "envelope8"
msgstr ""
#. 📪 (U+1F4EA), see http://wiki.documentfoundation.org/Emoji
@@ -8254,7 +8252,7 @@ msgctxt ""
"emoji.ulf\n"
"SMILING_FACE_WITH_OPEN_MOUTH_AND_TIGHTLY-CLOSED_EYES\n"
"LngText.text"
-msgid "laughing"
+msgid "laugh"
msgstr ""
#. 😇 (U+1F607), see http://wiki.documentfoundation.org/Emoji
@@ -8326,7 +8324,7 @@ msgctxt ""
"emoji.ulf\n"
"SMILING_FACE_WITH_SUNGLASSES\n"
"LngText.text"
-msgid "sunglasses"
+msgid "sunglasses2"
msgstr ""
#. 😏 (U+1F60F), see http://wiki.documentfoundation.org/Emoji
@@ -8796,7 +8794,7 @@ msgctxt ""
"emoji.ulf\n"
"FACE_WITH_OK_GESTURE\n"
"LngText.text"
-msgid "ok2"
+msgid "ok3"
msgstr ""
#. 🙇 (U+1F647), see http://wiki.documentfoundation.org/Emoji
@@ -8805,7 +8803,7 @@ msgctxt ""
"emoji.ulf\n"
"PERSON_BOWING_DEEPLY\n"
"LngText.text"
-msgid "bow"
+msgid "prostration"
msgstr ""
#. 🙈 (U+1F648), see http://wiki.documentfoundation.org/Emoji
@@ -8904,7 +8902,7 @@ msgctxt ""
"emoji.ulf\n"
"STEAM_LOCOMOTIVE\n"
"LngText.text"
-msgid "steam locomotive"
+msgid "locomotive"
msgstr ""
#. 🚃 (U+1F683), see http://wiki.documentfoundation.org/Emoji
@@ -9396,7 +9394,7 @@ msgctxt ""
"emoji.ulf\n"
"CHILDREN_CROSSING\n"
"LngText.text"
-msgid "children crossing"
+msgid "crosswalk"
msgstr ""
#. 🚹 (U+1F6B9), see http://wiki.documentfoundation.org/Emoji
@@ -9516,6 +9514,3714 @@ msgctxt ""
msgid "left luggage"
msgstr ""
+#. 🕃 (U+1F543), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTCHED_LEFT_SEMICIRCLE_WITH_THREE_DOTS\n"
+"LngText.text"
+msgid "feast"
+msgstr ""
+
+#. 🙂 (U+1F642), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLIGHTLY_SMILING_FACE\n"
+"LngText.text"
+msgid "smiling3"
+msgstr ""
+
+#. 🙁 (U+1F641), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLIGHTLY_FROWNING_FACE\n"
+"LngText.text"
+msgid "frowning2"
+msgstr ""
+
+#. 🕵 (U+1F575), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLEUTH_OR_SPY\n"
+"LngText.text"
+msgid "detective"
+msgstr ""
+
+#. 🛌 (U+1F6CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLEEPING_ACCOMMODATION\n"
+"LngText.text"
+msgid "sleep"
+msgstr ""
+
+#. 🕴 (U+1F574), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_IN_BUSINESS_SUIT_LEVITATING\n"
+"LngText.text"
+msgid "suit"
+msgstr ""
+
+#. 🗣 (U+1F5E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPEAKING_HEAD_IN_SILHOUETTE\n"
+"LngText.text"
+msgid "head"
+msgstr ""
+
+#. 🏌 (U+1F3CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GOLFER\n"
+"LngText.text"
+msgid "golf"
+msgstr ""
+
+#. 🏋 (U+1F3CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WEIGHT_LIFTER\n"
+"LngText.text"
+msgid "weight lifter"
+msgstr ""
+
+#. 🏎 (U+1F3CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RACING_CAR\n"
+"LngText.text"
+msgid "car4"
+msgstr ""
+
+#. 🏍 (U+1F3CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RACING_MOTORCYCLE\n"
+"LngText.text"
+msgid "motorcycle"
+msgstr ""
+
+#. 🖕 (U+1F595), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_HAND_WITH_MIDDLE_FINGER_EXTENDED\n"
+"LngText.text"
+msgid "finger"
+msgstr ""
+
+#. 🖖 (U+1F596), Mr. Spock's Vulcan salute from Star Trek, see also http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_HAND_WITH_PART_BETWEEN_MIDDLE_AND_RING_FINGERS\n"
+"LngText.text"
+msgid "spock"
+msgstr ""
+
+#. 🖐 (U+1F590), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_HAND_WITH_FINGERS_SPLAYED\n"
+"LngText.text"
+msgid "hand2"
+msgstr ""
+
+#. 👁 (U+1F441), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EYE\n"
+"LngText.text"
+msgid "eye"
+msgstr ""
+
+#. 🗨 (U+1F5E8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_SPEECH_BUBBLE\n"
+"LngText.text"
+msgid "bubble"
+msgstr ""
+
+#. 🗯 (U+1F5EF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_ANGER_BUBBLE\n"
+"LngText.text"
+msgid "bubble4"
+msgstr ""
+
+#. 🕳 (U+1F573), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOLE\n"
+"LngText.text"
+msgid "hole"
+msgstr ""
+
+#. 🕶 (U+1F576), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DARK_SUNGLASSES\n"
+"LngText.text"
+msgid "sunglasses"
+msgstr ""
+
+#. 🛍 (U+1F6CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOPPING_BAGS\n"
+"LngText.text"
+msgid "shop"
+msgstr ""
+
+#. 🐿 (U+1F43F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHIPMUNK\n"
+"LngText.text"
+msgid "chipmunk"
+msgstr ""
+
+#. 🕊 (U+1F54A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOVE_OF_PEACE\n"
+"LngText.text"
+msgid "dove"
+msgstr ""
+
+#. 🕷 (U+1F577), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIDER\n"
+"LngText.text"
+msgid "spider"
+msgstr ""
+
+#. 🕸 (U+1F578), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIDER_WEB\n"
+"LngText.text"
+msgid "web"
+msgstr ""
+
+#. 🏵 (U+1F3F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROSETTE\n"
+"LngText.text"
+msgid "rosette"
+msgstr ""
+
+#. 🌶 (U+1F336), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOT_PEPPER\n"
+"LngText.text"
+msgid "pepper"
+msgstr ""
+
+#. 🍽 (U+1F37D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FORK_AND_KNIFE_WITH_PLATE\n"
+"LngText.text"
+msgid "plate"
+msgstr ""
+
+#. 🗺 (U+1F5FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WORLD_MAP\n"
+"LngText.text"
+msgid "map"
+msgstr ""
+
+#. 🏔 (U+1F3D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SNOW_CAPPED_MOUNTAIN\n"
+"LngText.text"
+msgid "mountain2"
+msgstr ""
+
+#. 🏕 (U+1F3D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CAMPING\n"
+"LngText.text"
+msgid "camping"
+msgstr ""
+
+#. 🏖 (U+1F3D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEACH_WITH_UMBRELLA\n"
+"LngText.text"
+msgid "beach"
+msgstr ""
+
+#. 🏜 (U+1F3DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESERT\n"
+"LngText.text"
+msgid "desert"
+msgstr ""
+
+#. 🏝 (U+1F3DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESERT_ISLAND\n"
+"LngText.text"
+msgid "island"
+msgstr ""
+
+#. 🏞 (U+1F3DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NATIONAL_PARK\n"
+"LngText.text"
+msgid "park"
+msgstr ""
+
+#. 🏟 (U+1F3DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STADIUM\n"
+"LngText.text"
+msgid "stadium"
+msgstr ""
+
+#. 🏛 (U+1F3DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLASSICAL_BUILDING\n"
+"LngText.text"
+msgid "museum"
+msgstr ""
+
+#. 🏗 (U+1F3D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BUILDING_CONSTRUCTION\n"
+"LngText.text"
+msgid "crane"
+msgstr ""
+
+#. 🏘 (U+1F3D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOUSE_BUILDINGS\n"
+"LngText.text"
+msgid "houses"
+msgstr ""
+
+#. 🏚 (U+1F3DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DERELICT_HOUSE_BUILDING\n"
+"LngText.text"
+msgid "house3"
+msgstr ""
+
+#. 🏙 (U+1F3D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CITYSCAPE\n"
+"LngText.text"
+msgid "city"
+msgstr ""
+
+#. 🛣 (U+1F6E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTORWAY\n"
+"LngText.text"
+msgid "motorway"
+msgstr ""
+
+#. 🛤 (U+1F6E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAILWAY_TRACK\n"
+"LngText.text"
+msgid "track"
+msgstr ""
+
+#. 🛢 (U+1F6E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OIL_DRUM\n"
+"LngText.text"
+msgid "drum"
+msgstr ""
+
+#. 🛳 (U+1F6F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PASSENGER_SHIP\n"
+"LngText.text"
+msgid "ship2"
+msgstr ""
+
+#. 🛥 (U+1F6E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTOR_BOAT\n"
+"LngText.text"
+msgid "motor boat"
+msgstr ""
+
+#. 🛩 (U+1F6E9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SMALL_AIRPLANE\n"
+"LngText.text"
+msgid "airplane2"
+msgstr ""
+
+#. 🛫 (U+1F6EB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AIRPLANE_DEPARTURE\n"
+"LngText.text"
+msgid "departure"
+msgstr ""
+
+#. 🛬 (U+1F6EC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AIRPLANE_ARRIVING\n"
+"LngText.text"
+msgid "arrival"
+msgstr ""
+
+#. 🛰 (U+1F6F0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SATELLITE\n"
+"LngText.text"
+msgid "satellite"
+msgstr ""
+
+#. 🛎 (U+1F6CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BELLHOP_BELL\n"
+"LngText.text"
+msgid "bell2"
+msgstr ""
+
+#. 🕰 (U+1F570), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MANTELPIECE_CLOCK\n"
+"LngText.text"
+msgid "clock"
+msgstr ""
+
+#. 🌡 (U+1F321), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THERMOMETER\n"
+"LngText.text"
+msgid "thermometer"
+msgstr ""
+
+#. 🌤 (U+1F324), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_WITH_SMALL_CLOUD\n"
+"LngText.text"
+msgid "cloudy"
+msgstr ""
+
+#. 🌥 (U+1F325), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_BEHIND_CLOUD\n"
+"LngText.text"
+msgid "cloudy2"
+msgstr ""
+
+#. 🌦 (U+1F326), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_BEHIND_CLOUD_WITH_RAIN\n"
+"LngText.text"
+msgid "rainy"
+msgstr ""
+
+#. 🌧 (U+1F327), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_RAIN\n"
+"LngText.text"
+msgid "storm"
+msgstr ""
+
+#. 🌨 (U+1F328), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_SNOW\n"
+"LngText.text"
+msgid "snow"
+msgstr ""
+
+#. 🌩 (U+1F329), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_LIGHTNING\n"
+"LngText.text"
+msgid "lightning"
+msgstr ""
+
+#. 🌪 (U+1F32A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_TORNADO\n"
+"LngText.text"
+msgid "tornado"
+msgstr ""
+
+#. 🌫 (U+1F32B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOG\n"
+"LngText.text"
+msgid "fog"
+msgstr ""
+
+#. 🌬 (U+1F32C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WIND_BLOWING_FACE\n"
+"LngText.text"
+msgid "wind"
+msgstr ""
+
+#. 🎗 (U+1F397), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REMINDER_RIBBON\n"
+"LngText.text"
+msgid "ribbon"
+msgstr ""
+
+#. 🎟 (U+1F39F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ADMISSION_TICKETS\n"
+"LngText.text"
+msgid "ticket2"
+msgstr ""
+
+#. 🎖 (U+1F396), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MILITARY_MEDAL\n"
+"LngText.text"
+msgid "medal2"
+msgstr ""
+
+#. 🏅 (U+1F3C5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPORTS_MEDAL\n"
+"LngText.text"
+msgid "medal"
+msgstr ""
+
+#. 🕹 (U+1F579), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"JOYSTICK\n"
+"LngText.text"
+msgid "joystick"
+msgstr ""
+
+#. 🖼 (U+1F5BC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_PICTURE\n"
+"LngText.text"
+msgid "picture"
+msgstr ""
+
+#. 🎙 (U+1F399), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STUDIO_MICROPHONE\n"
+"LngText.text"
+msgid "microphone2"
+msgstr ""
+
+#. 🎚 (U+1F39A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEVEL_SLIDER\n"
+"LngText.text"
+msgid "slider"
+msgstr ""
+
+#. 🎛 (U+1F39B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CONTROL_KNOBS\n"
+"LngText.text"
+msgid "control"
+msgstr ""
+
+#. 🖥 (U+1F5A5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESKTOP_COMPUTER\n"
+"LngText.text"
+msgid "computer2"
+msgstr ""
+
+#. 🖨 (U+1F5A8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINTER\n"
+"LngText.text"
+msgid "printer"
+msgstr ""
+
+#. 🖱 (U+1F5B1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse3"
+msgstr ""
+
+#. 🖲 (U+1F5B2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TRACKBALL\n"
+"LngText.text"
+msgid "trackball"
+msgstr ""
+
+#. 🎞 (U+1F39E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILM_FRAMES\n"
+"LngText.text"
+msgid "film"
+msgstr ""
+
+#. 📽 (U+1F4FD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILM_PROJECTOR\n"
+"LngText.text"
+msgid "projector"
+msgstr ""
+
+#. 📸 (U+1F4F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CAMERA_WITH_FLASH\n"
+"LngText.text"
+msgid "flash"
+msgstr ""
+
+#. 🕯 (U+1F56F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANDLE\n"
+"LngText.text"
+msgid "candle"
+msgstr ""
+
+#. 🗞 (U+1F5DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROLLED-UP_NEWSPAPER\n"
+"LngText.text"
+msgid "newspaper2"
+msgstr ""
+
+#. 🏷 (U+1F3F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LABEL\n"
+"LngText.text"
+msgid "label"
+msgstr ""
+
+#. 🗳 (U+1F5F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BALLOT\n"
+"LngText.text"
+msgid "ballot"
+msgstr ""
+
+#. 🖋 (U+1F58B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_FOUNTAIN_PEN\n"
+"LngText.text"
+msgid "pen2"
+msgstr ""
+
+#. 🖊 (U+1F58A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_BALLPOINT_PEN\n"
+"LngText.text"
+msgid "pen"
+msgstr ""
+
+#. 🖌 (U+1F58C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_PAINTBRUSH\n"
+"LngText.text"
+msgid "paintbrush"
+msgstr ""
+
+#. 🖍 (U+1F58D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_CRAYON\n"
+"LngText.text"
+msgid "crayon"
+msgstr ""
+
+#. 🗂 (U+1F5C2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARD_INDEX_DIVIDERS\n"
+"LngText.text"
+msgid "index"
+msgstr ""
+
+#. 🗒 (U+1F5D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIRAL_NOTE_PAD\n"
+"LngText.text"
+msgid "notepad"
+msgstr ""
+
+#. 🗓 (U+1F5D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIRAL_CALENDAR_PAD\n"
+"LngText.text"
+msgid "calendar3"
+msgstr ""
+
+#. 🖇 (U+1F587), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LINKED_PAPERCLIPS\n"
+"LngText.text"
+msgid "paperclip2"
+msgstr ""
+
+#. 🗃 (U+1F5C3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARD_FILE_BOX\n"
+"LngText.text"
+msgid "box"
+msgstr ""
+
+#. 🗄 (U+1F5C4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILE_CABINET\n"
+"LngText.text"
+msgid "cabinet"
+msgstr ""
+
+#. 🗑 (U+1F5D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WASTEBASKET\n"
+"LngText.text"
+msgid "wastebasket"
+msgstr ""
+
+#. 🗝 (U+1F5DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLD_KEY\n"
+"LngText.text"
+msgid "key2"
+msgstr ""
+
+#. 🛠 (U+1F6E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HAMMER_AND_WRENCH\n"
+"LngText.text"
+msgid "hammer and wrench"
+msgstr ""
+
+#. 🗡 (U+1F5E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DAGGER_KNIFE\n"
+"LngText.text"
+msgid "knife2"
+msgstr ""
+
+#. 🛡 (U+1F6E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHIELD\n"
+"LngText.text"
+msgid "shield"
+msgstr ""
+
+#. 🗜 (U+1F5DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COMPRESSION\n"
+"LngText.text"
+msgid "clamp"
+msgstr ""
+
+#. 🛏 (U+1F6CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BED\n"
+"LngText.text"
+msgid "bed"
+msgstr ""
+
+#. 🛋 (U+1F6CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COUCH_AND_LAMP\n"
+"LngText.text"
+msgid "couch"
+msgstr ""
+
+#. 🕉 (U+1F549), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OM_SYMBOL\n"
+"LngText.text"
+msgid "om"
+msgstr ""
+
+#. ⏸ (U+23F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOUBLE_VERTICAL_BAR\n"
+"LngText.text"
+msgid "pause"
+msgstr ""
+
+#. ⏹ (U+23F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_SQUARE_FOR_STOP\n"
+"LngText.text"
+msgid "stop2"
+msgstr ""
+
+#. ⏺ (U+23FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_CIRCLE_FOR_RECORD\n"
+"LngText.text"
+msgid "record"
+msgstr ""
+
+#. 🏴 (U+1F3F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WAVING_BLACK_FLAG\n"
+"LngText.text"
+msgid "flag"
+msgstr ""
+
+#. 🏳 (U+1F3F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WAVING_WHITE_FLAG\n"
+"LngText.text"
+msgid "flag2"
+msgstr ""
+
+#. 🗷 (U+1F5F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BOLD_SCRIPT_X\n"
+"LngText.text"
+msgid "checkbox4"
+msgstr ""
+
+#. 🛉 (U+1F6C9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOYS_SYMBOL\n"
+"LngText.text"
+msgid "boys"
+msgstr ""
+
+#. 🛈 (U+1F6C8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CIRCLED_INFORMATION_SOURCE\n"
+"LngText.text"
+msgid "information3"
+msgstr ""
+
+#. 🛊 (U+1F6CA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GIRLS_SYMBOL\n"
+"LngText.text"
+msgid "girls"
+msgstr ""
+
+#. 🛨 (U+1F6E8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_SMALL_AIRPLANE\n"
+"LngText.text"
+msgid "airplane4"
+msgstr ""
+
+#. 🛲 (U+1F6F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DIESEL_LOCOMOTIVE\n"
+"LngText.text"
+msgid "locomotive2"
+msgstr ""
+
+#. 🛧 (U+1F6E7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_AIRPLANE\n"
+"LngText.text"
+msgid "airplane3"
+msgstr ""
+
+#. 🛱 (U+1F6F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ONCOMING_FIRE_ENGINE\n"
+"LngText.text"
+msgid "fire engine2"
+msgstr ""
+
+#. 🛦 (U+1F6E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_MILITARY_AIRPLANE\n"
+"LngText.text"
+msgid "airplane5"
+msgstr ""
+
+#. 🛪 (U+1F6EA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NORTHEAST-POINTING_AIRPLANE\n"
+"LngText.text"
+msgid "airplane6"
+msgstr ""
+
+#. 🗭 (U+1F5ED), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_THOUGHT_BUBBLE\n"
+"LngText.text"
+msgid "bubble5"
+msgstr ""
+
+#. 🗱 (U+1F5F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHTNING_MOOD_BUBBLE\n"
+"LngText.text"
+msgid "bubble6"
+msgstr ""
+
+#. 🗬 (U+1F5EC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_THOUGHT_BUBBLE\n"
+"LngText.text"
+msgid "bubble7"
+msgstr ""
+
+#. 🗠 (U+1F5E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STOCK_CHART\n"
+"LngText.text"
+msgid "chart5"
+msgstr ""
+
+#. 🗟 (U+1F5DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGE_WITH_CIRCLED_TEXT\n"
+"LngText.text"
+msgid "page4"
+msgstr ""
+
+#. 🖎 (U+1F58E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_WRITING_HAND\n"
+"LngText.text"
+msgid "writing2"
+msgstr ""
+
+#. 🗦 (U+1F5E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_LEFT\n"
+"LngText.text"
+msgid "rays"
+msgstr ""
+
+#. 🎝 (U+1F39D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEAMED_DESCENDING_MUSICAL_NOTES\n"
+"LngText.text"
+msgid "notes3"
+msgstr ""
+
+#. 🔾 (U+1F53E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_RIGHT_SHADOWED_WHITE_CIRCLE\n"
+"LngText.text"
+msgid "circle3"
+msgstr ""
+
+#. 🎜 (U+1F39C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEAMED_ASCENDING_MUSICAL_NOTES\n"
+"LngText.text"
+msgid "notes4"
+msgstr ""
+
+#. 🕮 (U+1F56E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOOK\n"
+"LngText.text"
+msgid "book"
+msgstr ""
+
+#. 🗛 (U+1F5DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DECREASE_FONT_SIZE_SYMBOL\n"
+"LngText.text"
+msgid "font"
+msgstr ""
+
+#. 🔿 (U+1F53F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UPPER_RIGHT_SHADOWED_WHITE_CIRCLE\n"
+"LngText.text"
+msgid "circle4"
+msgstr ""
+
+#. 🕫 (U+1F56B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BULLHORN\n"
+"LngText.text"
+msgid "bullhorn"
+msgstr ""
+
+#. 🕬 (U+1F56C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BULLHORN_WITH_SOUND_WAVES\n"
+"LngText.text"
+msgid "bullhorn2"
+msgstr ""
+
+#. 🕻 (U+1F57B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_HAND_TELEPHONE_RECEIVER\n"
+"LngText.text"
+msgid "receiver2"
+msgstr ""
+
+#. 🕾 (U+1F57E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_TOUCHTONE_TELEPHONE\n"
+"LngText.text"
+msgid "phone3"
+msgstr ""
+
+#. 🕼 (U+1F57C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TELEPHONE_RECEIVER_WITH_PAGE\n"
+"LngText.text"
+msgid "receiver4"
+msgstr ""
+
+#. 🕽 (U+1F57D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_HAND_TELEPHONE_RECEIVER\n"
+"LngText.text"
+msgid "receiver3"
+msgstr ""
+
+#. 🕿 (U+1F57F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_TOUCHTONE_TELEPHONE\n"
+"LngText.text"
+msgid "phone4"
+msgstr ""
+
+#. 🖚 (U+1F59A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_LEFT_POINTING_INDEX\n"
+"LngText.text"
+msgid "left4"
+msgstr ""
+
+#. 🖏 (U+1F58F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TURNED_OK_HAND_SIGN\n"
+"LngText.text"
+msgid "ok2"
+msgstr ""
+
+#. 🖜 (U+1F59C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_LEFT_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "left5"
+msgstr ""
+
+#. 🗥 (U+1F5E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_BELOW\n"
+"LngText.text"
+msgid "rays2"
+msgstr ""
+
+#. 🖛 (U+1F59B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_RIGHT_POINTING_INDEX\n"
+"LngText.text"
+msgid "right4"
+msgstr ""
+
+#. 🖟 (U+1F59F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_DOWN_POINTING_INDEX\n"
+"LngText.text"
+msgid "down3"
+msgstr ""
+
+#. 🖞 (U+1F59E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_UP_POINTING_INDEX\n"
+"LngText.text"
+msgid "up3"
+msgstr ""
+
+#. 🌢 (U+1F322), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_DROPLET\n"
+"LngText.text"
+msgid "droplet2"
+msgstr ""
+
+#. 🎘 (U+1F398), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MUSICAL_KEYBOARD_WITH_JACKS\n"
+"LngText.text"
+msgid "synthesizer"
+msgstr ""
+
+#. 🎕 (U+1F395), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOUQUET_OF_FLOWERS\n"
+"LngText.text"
+msgid "bouquet2"
+msgstr ""
+
+#. 🎔 (U+1F394), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEART_WITH_TIP_ON_THE_LEFT\n"
+"LngText.text"
+msgid "heart2"
+msgstr ""
+
+#. 🕱 (U+1F571), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_SKULL_AND_CROSSBONES\n"
+"LngText.text"
+msgid "pirate"
+msgstr ""
+
+#. 🖀 (U+1F580), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TELEPHONE_ON_TOP_OF_MODEM\n"
+"LngText.text"
+msgid "modem"
+msgstr ""
+
+#. 🕲 (U+1F572), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NO_PIRACY\n"
+"LngText.text"
+msgid "no piracy"
+msgstr ""
+
+#. 🕅 (U+1F545), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SYMBOL_FOR_MARKS_CHAPTER\n"
+"LngText.text"
+msgid "marks chapter"
+msgstr ""
+
+#. 🕈 (U+1F548), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CELTIC_CROSS\n"
+"LngText.text"
+msgid "Celtic cross"
+msgstr ""
+
+#. 🖗 (U+1F597), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_DOWN_POINTING_LEFT_HAND_INDEX\n"
+"LngText.text"
+msgid "down4"
+msgstr ""
+
+#. 🖆 (U+1F586), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEN_OVER_STAMPED_ENVELOPE\n"
+"LngText.text"
+msgid "envelope4"
+msgstr ""
+
+#. 🖃 (U+1F583), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STAMPED_ENVELOPE\n"
+"LngText.text"
+msgid "envelope2"
+msgstr ""
+
+#. 🗤 (U+1F5E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_ABOVE\n"
+"LngText.text"
+msgid "rays3"
+msgstr ""
+
+#. 🖉 (U+1F589), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_PENCIL\n"
+"LngText.text"
+msgid "pencil4"
+msgstr ""
+
+#. 🖂 (U+1F582), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BACK_OF_ENVELOPE\n"
+"LngText.text"
+msgid "envelope3"
+msgstr ""
+
+#. 🖈 (U+1F588), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_PUSHPIN\n"
+"LngText.text"
+msgid "tack"
+msgstr ""
+
+#. 🖄 (U+1F584), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ENVELOPE_WITH_LIGHTNING\n"
+"LngText.text"
+msgid "envelope5"
+msgstr ""
+
+#. 🖁 (U+1F581), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLAMSHELL_MOBILE_PHONE\n"
+"LngText.text"
+msgid "mobile2"
+msgstr ""
+
+#. 🖅 (U+1F585), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FLYING_ENVELOPE\n"
+"LngText.text"
+msgid "envelope6"
+msgstr ""
+
+#. 🖘 (U+1F598), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_LEFT_POINTING_INDEX\n"
+"LngText.text"
+msgid "left6"
+msgstr ""
+
+#. 🖙 (U+1F599), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_RIGHT_POINTING_INDEX\n"
+"LngText.text"
+msgid "right5"
+msgstr ""
+
+#. 🗖 (U+1F5D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAXIMIZE\n"
+"LngText.text"
+msgid "maximize"
+msgstr ""
+
+#. 🗗 (U+1F5D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OVERLAP\n"
+"LngText.text"
+msgid "overlap"
+msgstr ""
+
+#. 🗏 (U+1F5CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGE\n"
+"LngText.text"
+msgid "page2"
+msgstr ""
+
+#. 🗐 (U+1F5D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGES\n"
+"LngText.text"
+msgid "pages"
+msgstr ""
+
+#. 🗘 (U+1F5D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOCKWISE_RIGHT_AND_LEFT_SEMICIRCLE_ARROWS\n"
+"LngText.text"
+msgid "arrows"
+msgstr ""
+
+#. 🗚 (U+1F5DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"INCREASE_FONT_SIZE_SYMBOL\n"
+"LngText.text"
+msgid "font2"
+msgstr ""
+
+#. 🗕 (U+1F5D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MINIMIZE\n"
+"LngText.text"
+msgid "minimize"
+msgstr ""
+
+#. 🗙 (U+1F5D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANCELLATION_X\n"
+"LngText.text"
+msgid "cancel"
+msgstr ""
+
+#. 🗔 (U+1F5D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESKTOP_WINDOW\n"
+"LngText.text"
+msgid "window"
+msgstr ""
+
+#. 🗌 (U+1F5CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_PAGE\n"
+"LngText.text"
+msgid "empty page"
+msgstr ""
+
+#. 🗋 (U+1F5CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_DOCUMENT\n"
+"LngText.text"
+msgid "empty document"
+msgstr ""
+
+#. 🗍 (U+1F5CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_PAGES\n"
+"LngText.text"
+msgid "empty pages"
+msgstr ""
+
+#. 🗎 (U+1F5CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT\n"
+"LngText.text"
+msgid "document"
+msgstr ""
+
+#. 🗆 (U+1F5C6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE_PAGE\n"
+"LngText.text"
+msgid "empty note page"
+msgstr ""
+
+#. 🗊 (U+1F5CA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE_PAD\n"
+"LngText.text"
+msgid "note pad"
+msgstr ""
+
+#. 🗈 (U+1F5C8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE\n"
+"LngText.text"
+msgid "note3"
+msgstr ""
+
+#. 🗇 (U+1F5C7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE_PAD\n"
+"LngText.text"
+msgid "empty note pad"
+msgstr ""
+
+#. 🗉 (U+1F5C9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE_PAGE\n"
+"LngText.text"
+msgid "note page"
+msgstr ""
+
+#. 🖸 (U+1F5B8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OPTICAL_DISC_ICON\n"
+"LngText.text"
+msgid "optical disc"
+msgstr ""
+
+#. 🗀 (U+1F5C0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOLDER\n"
+"LngText.text"
+msgid "folder3"
+msgstr ""
+
+#. 🖝 (U+1F59D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_RIGHT_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "right6"
+msgstr ""
+
+#. 🗁 (U+1F5C1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OPEN_FOLDER\n"
+"LngText.text"
+msgid "folder4"
+msgstr ""
+
+#. 🗅 (U+1F5C5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE\n"
+"LngText.text"
+msgid "empty note"
+msgstr ""
+
+#. 🖿 (U+1F5BF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_FOLDER\n"
+"LngText.text"
+msgid "folder5"
+msgstr ""
+
+#. 🖾 (U+1F5BE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_AN_X\n"
+"LngText.text"
+msgid "frame"
+msgstr ""
+
+#. 🖽 (U+1F5BD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_TILES\n"
+"LngText.text"
+msgid "frame2"
+msgstr ""
+
+#. 🖹 (U+1F5B9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_TEXT\n"
+"LngText.text"
+msgid "document2"
+msgstr ""
+
+#. 🖻 (U+1F5BB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_PICTURE\n"
+"LngText.text"
+msgid "document3"
+msgstr ""
+
+#. 🖺 (U+1F5BA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_TEXT_AND_PICTURE\n"
+"LngText.text"
+msgid "document4"
+msgstr ""
+
+#. 🖶 (U+1F5B6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINTER_ICON\n"
+"LngText.text"
+msgid "printer2"
+msgstr ""
+
+#. 🖷 (U+1F5B7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FAX_ICON\n"
+"LngText.text"
+msgid "fax2"
+msgstr ""
+
+#. 🖰 (U+1F5B0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TWO_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse4"
+msgstr ""
+
+#. 🖳 (U+1F5B3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLD_PERSONAL_COMPUTER\n"
+"LngText.text"
+msgid "pc"
+msgstr ""
+
+#. 🖵 (U+1F5B5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCREEN\n"
+"LngText.text"
+msgid "screen"
+msgstr ""
+
+#. 🖯 (U+1F5AF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ONE_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse5"
+msgstr ""
+
+#. 🖴 (U+1F5B4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HARD_DISK\n"
+"LngText.text"
+msgid "hard disk"
+msgstr ""
+
+#. 🖩 (U+1F5A9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POCKET_CALCULATOR\n"
+"LngText.text"
+msgid "calculator"
+msgstr ""
+
+#. 🖭 (U+1F5AD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TAPE_CARTRIDGE\n"
+"LngText.text"
+msgid "cartridge"
+msgstr ""
+
+#. 🖬 (U+1F5AC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SOFT_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy2"
+msgstr ""
+
+#. 🖫 (U+1F5AB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_HARD_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy3"
+msgstr ""
+
+#. 🖮 (U+1F5AE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WIRED_KEYBOARD\n"
+"LngText.text"
+msgid "keyboard2"
+msgstr ""
+
+#. 🖔 (U+1F594), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_VICTORY_HAND\n"
+"LngText.text"
+msgid "victory2"
+msgstr ""
+
+#. 🖧 (U+1F5A7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_NETWORKED_COMPUTERS\n"
+"LngText.text"
+msgid "network"
+msgstr ""
+
+#. 🖪 (U+1F5AA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_HARD_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy4"
+msgstr ""
+
+#. 🗢 (U+1F5E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIPS\n"
+"LngText.text"
+msgid "lips"
+msgstr ""
+
+#. 🖦 (U+1F5A6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KEYBOARD_AND_MOUSE\n"
+"LngText.text"
+msgid "keyboard3"
+msgstr ""
+
+#. 🖣 (U+1F5A3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_DOWN_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "down5"
+msgstr ""
+
+#. 🖡 (U+1F5A1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_DOWN_POINTING_INDEX\n"
+"LngText.text"
+msgid "down6"
+msgstr ""
+
+#. 📾 (U+1F4FE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PORTABLE_STEREO\n"
+"LngText.text"
+msgid "stereo"
+msgstr ""
+
+#. 🏶 (U+1F3F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_ROSETTE\n"
+"LngText.text"
+msgid "rosette2"
+msgstr ""
+
+#. 🏲 (U+1F3F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_PENNANT\n"
+"LngText.text"
+msgid "pennant"
+msgstr ""
+
+#. 🖠 (U+1F5A0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_UP_POINTING_INDEX\n"
+"LngText.text"
+msgid "up4"
+msgstr ""
+
+#. 🖢 (U+1F5A2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_UP_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "up5"
+msgstr ""
+
+#. 🏱 (U+1F3F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_PENNANT\n"
+"LngText.text"
+msgid "pennant2"
+msgstr ""
+
+#. 🕄 (U+1F544), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTCHED_RIGHT_SEMICIRCLE_WITH_THREE_DOTS\n"
+"LngText.text"
+msgid "feast2"
+msgstr ""
+
+#. 🖓 (U+1F593), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_THUMBS_DOWN_SIGN\n"
+"LngText.text"
+msgid "no2"
+msgstr ""
+
+#. 🖑 (U+1F591), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_RAISED_HAND_WITH_FINGERS_SPLAYED\n"
+"LngText.text"
+msgid "hand3"
+msgstr ""
+
+#. 🖒 (U+1F592), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_THUMBS_UP_SIGN\n"
+"LngText.text"
+msgid "yes2"
+msgstr ""
+
+#. 🕩 (U+1F569), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER_WITH_ONE_SOUND_WAVE\n"
+"LngText.text"
+msgid "speaker2"
+msgstr ""
+
+#. 🕆 (U+1F546), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_LATIN_CROSS\n"
+"LngText.text"
+msgid "Latin cross2"
+msgstr ""
+
+#. 🕇 (U+1F547), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEAVY_LATIN_CROSS\n"
+"LngText.text"
+msgid "Latin cross3"
+msgstr ""
+
+#. 🕨 (U+1F568), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER\n"
+"LngText.text"
+msgid "speaker3"
+msgstr ""
+
+#. 🕭 (U+1F56D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RINGING_BELL\n"
+"LngText.text"
+msgid "bell3"
+msgstr ""
+
+#. 🌣 (U+1F323), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN\n"
+"LngText.text"
+msgid "sun2"
+msgstr ""
+
+#. 🛇 (U+1F6C7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PROHIBITED_SIGN\n"
+"LngText.text"
+msgid "prohibited"
+msgstr ""
+
+#. 🛆 (U+1F6C6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TRIANGLE_WITH_ROUNDED_CORNERS\n"
+"LngText.text"
+msgid "triangle3"
+msgstr ""
+
+#. 🗫 (U+1F5EB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_SPEECH_BUBBLES\n"
+"LngText.text"
+msgid "bubble3"
+msgstr ""
+
+#. 🕪 (U+1F56A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER_WITH_THREE_SOUND_WAVES\n"
+"LngText.text"
+msgid "speaker4"
+msgstr ""
+
+#. 🗮 (U+1F5EE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_ANGER_BUBBLE\n"
+"LngText.text"
+msgid "bubble8"
+msgstr ""
+
+#. 🗧 (U+1F5E7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_RIGHT\n"
+"LngText.text"
+msgid "rays4"
+msgstr ""
+
+#. 🗲 (U+1F5F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHTNING_MOOD\n"
+"LngText.text"
+msgid "lightning2"
+msgstr ""
+
+#. 🗰 (U+1F5F0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOOD_BUBBLE\n"
+"LngText.text"
+msgid "bubble9"
+msgstr ""
+
+#. 🗹 (U+1F5F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BOLD_CHECK\n"
+"LngText.text"
+msgid "checkbox5"
+msgstr ""
+
+#. 🗴 (U+1F5F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_SCRIPT_X\n"
+"LngText.text"
+msgid "check mark4"
+msgstr ""
+
+#. 🗪 (U+1F5EA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TWO_SPEECH_BUBBLES\n"
+"LngText.text"
+msgid "bubble2"
+msgstr ""
+
+#. 🗶 (U+1F5F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOLD_SCRIPT_X\n"
+"LngText.text"
+msgid "x4"
+msgstr ""
+
+#. 🗩 (U+1F5E9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEECH_BUBBLE\n"
+"LngText.text"
+msgid "bubble10"
+msgstr ""
+
+#. 🗵 (U+1F5F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_SCRIPT_X\n"
+"LngText.text"
+msgid "checkbox6"
+msgstr ""
+
+#. 🗸 (U+1F5F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHT_CHECK_MARK\n"
+"LngText.text"
+msgid "check mark5"
+msgstr ""
+
+#. 🤗 (U+1F917), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HUGGING_FACE\n"
+"LngText.text"
+msgid "hugging"
+msgstr ""
+
+#. 🤔 (U+1F914), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THINKING_FACE\n"
+"LngText.text"
+msgid "thinking"
+msgstr ""
+
+#. 🙄 (U+1F644), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_ROLLING_EYES\n"
+"LngText.text"
+msgid "eye roll"
+msgstr ""
+
+#. 🤐 (U+1F910), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZIPPER-MOUTH_FACE\n"
+"LngText.text"
+msgid "zipper"
+msgstr ""
+
+#. 🙃 (U+1F643), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UPSIDE-DOWN_FACE\n"
+"LngText.text"
+msgid "upside-down"
+msgstr ""
+
+#. 🤑 (U+1F911), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MONEY-MOUTH_FACE\n"
+"LngText.text"
+msgid "money3"
+msgstr ""
+
+#. 🤒 (U+1F912), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_THERMOMETER\n"
+"LngText.text"
+msgid "thermometer2"
+msgstr ""
+
+#. 🤕 (U+1F915), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_HEAD-BANDAGE\n"
+"LngText.text"
+msgid "bandage"
+msgstr ""
+
+#. 🤓 (U+1F913), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NERD_FACE\n"
+"LngText.text"
+msgid "nerd"
+msgstr ""
+
+#. 🤖 (U+1F916), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROBOT_FACE\n"
+"LngText.text"
+msgid "robot"
+msgstr ""
+
+#. 🏻 (U+1F3FB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-1-2\n"
+"LngText.text"
+msgid "skin1"
+msgstr ""
+
+#. 🏼 (U+1F3FC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-3\n"
+"LngText.text"
+msgid "skin2"
+msgstr ""
+
+#. 🏽 (U+1F3FD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-4\n"
+"LngText.text"
+msgid "skin3"
+msgstr ""
+
+#. 🏾 (U+1F3FE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-5\n"
+"LngText.text"
+msgid "skin4"
+msgstr ""
+
+#. 🏿 (U+1F3FF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-6\n"
+"LngText.text"
+msgid "skin5"
+msgstr ""
+
+#. 🤘 (U+1F918), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIGN_OF_THE_HORNS\n"
+"LngText.text"
+msgid "horns"
+msgstr ""
+
+#. 📿 (U+1F4FF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRAYER_BEADS\n"
+"LngText.text"
+msgid "beads"
+msgstr ""
+
+#. 🦁 (U+1F981), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LION_FACE\n"
+"LngText.text"
+msgid "lion"
+msgstr ""
+
+#. 🦄 (U+1F984), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UNICORN_FACE\n"
+"LngText.text"
+msgid "unicorn"
+msgstr ""
+
+#. 🦃 (U+1F983), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TURKEY\n"
+"LngText.text"
+msgid "turkey"
+msgstr ""
+
+#. 🦀 (U+1F980), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRAB\n"
+"LngText.text"
+msgid "crab"
+msgstr ""
+
+#. 🦂 (U+1F982), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCORPION\n"
+"LngText.text"
+msgid "scorpion"
+msgstr ""
+
+#. 🧀 (U+1F9C0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHEESE_WEDGE\n"
+"LngText.text"
+msgid "cheese"
+msgstr ""
+
+#. 🌭 (U+1F32D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOT_DOG\n"
+"LngText.text"
+msgid "hot dog"
+msgstr ""
+
+#. 🌮 (U+1F32E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TACO\n"
+"LngText.text"
+msgid "taco"
+msgstr ""
+
+#. 🌯 (U+1F32F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BURRITO\n"
+"LngText.text"
+msgid "burrito"
+msgstr ""
+
+#. 🍿 (U+1F37F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POPCORN\n"
+"LngText.text"
+msgid "popcorn"
+msgstr ""
+
+#. 🍾 (U+1F37E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOTTLE_WITH_POPPING_CORK\n"
+"LngText.text"
+msgid "party4"
+msgstr ""
+
+#. 🏺 (U+1F3FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AMPHORA\n"
+"LngText.text"
+msgid "amphora"
+msgstr ""
+
+#. 🕌 (U+1F54C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOSQUE\n"
+"LngText.text"
+msgid "mosque"
+msgstr ""
+
+#. 🕍 (U+1F54D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SYNAGOGUE\n"
+"LngText.text"
+msgid "synagogue"
+msgstr ""
+
+#. 🕋 (U+1F54B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KAABA\n"
+"LngText.text"
+msgid "Kaaba"
+msgstr ""
+
+#. 🏐 (U+1F3D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"VOLLEYBALL\n"
+"LngText.text"
+msgid "volleyball"
+msgstr ""
+
+#. 🏏 (U+1F3CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRICKET_BAT_AND_BALL\n"
+"LngText.text"
+msgid "cricket"
+msgstr ""
+
+#. 🏑 (U+1F3D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FIELD_HOCKEY_STICK_AND_BALL\n"
+"LngText.text"
+msgid "hockey2"
+msgstr ""
+
+#. 🏒 (U+1F3D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ICE_HOCKEY_STICK_AND_PUCK\n"
+"LngText.text"
+msgid "hockey"
+msgstr ""
+
+#. 🏓 (U+1F3D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TABLE_TENNIS_PADDLE_AND_BALL\n"
+"LngText.text"
+msgid "ping pong"
+msgstr ""
+
+#. 🏸 (U+1F3F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BADMINTON_RACQUET_AND_SHUTTLECOCK\n"
+"LngText.text"
+msgid "badminton"
+msgstr ""
+
+#. 🏹 (U+1F3F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOW_AND_ARROW\n"
+"LngText.text"
+msgid "bow"
+msgstr ""
+
+#. 🛐 (U+1F6D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PLACE_OF_WORSHIP\n"
+"LngText.text"
+msgid "worship"
+msgstr ""
+
+#. 🕎 (U+1F54E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MENORAH_WITH_NINE_BRANCHES\n"
+"LngText.text"
+msgid "menorah"
+msgstr ""
+
+#. 🤣 (U+1F923), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROLLING_ON_THE_FLOOR_LAUGHING\n"
+"LngText.text"
+msgid "lol"
+msgstr ""
+
+#. 🤤 (U+1F924), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DROOLING_FACE\n"
+"LngText.text"
+msgid "drool"
+msgstr ""
+
+#. 🤢 (U+1F922), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NAUSEATED_FACE\n"
+"LngText.text"
+msgid "nausea"
+msgstr ""
+
+#. 🤧 (U+1F927), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SNEEZING_FACE\n"
+"LngText.text"
+msgid "sneeze"
+msgstr ""
+
+#. 🤠 (U+1F920), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COWBOY_HAT_FACE\n"
+"LngText.text"
+msgid "cowboy"
+msgstr ""
+
+#. 🤡 (U+1F921), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOWN_FACE\n"
+"LngText.text"
+msgid "clown"
+msgstr ""
+
+#. 🤥 (U+1F925), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LYING_FACE\n"
+"LngText.text"
+msgid "liar"
+msgstr ""
+
+#. 🤴 (U+1F934), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINCE\n"
+"LngText.text"
+msgid "prince"
+msgstr ""
+
+#. 🤵 (U+1F935), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_IN_TUXEDO\n"
+"LngText.text"
+msgid "groom"
+msgstr ""
+
+#. 🤰 (U+1F930), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PREGNANT_WOMAN\n"
+"LngText.text"
+msgid "pregnant"
+msgstr ""
+
+#. 🤶 (U+1F936), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MRS._CLAUS\n"
+"LngText.text"
+msgid "mrs. claus"
+msgstr ""
+
+#. 🤦 (U+1F926), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_FACEPALMING\n"
+"LngText.text"
+msgid "facepalm"
+msgstr ""
+
+#. 🤷 (U+1F937), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_SHRUGGING\n"
+"LngText.text"
+msgid "shrugging"
+msgstr ""
+
+#. 🕺 (U+1F57A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_DANCING\n"
+"LngText.text"
+msgid "dancer2"
+msgstr ""
+
+#. 🤺 (U+1F93A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_FENCING\n"
+"LngText.text"
+msgid "fencer"
+msgstr ""
+
+#. 🤸 (U+1F938), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_CARTWHEELING\n"
+"LngText.text"
+msgid "gymnast"
+msgstr ""
+
+#. 🤼 (U+1F93C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEOPLE_WRESTLING\n"
+"LngText.text"
+msgid "wrestling"
+msgstr ""
+
+#. 🤽 (U+1F93D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_PLAYING_WATER_POLO\n"
+"LngText.text"
+msgid "water polo"
+msgstr ""
+
+#. 🤾 (U+1F93E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_PLAYING_HANDBALL\n"
+"LngText.text"
+msgid "handball"
+msgstr ""
+
+#. 🤹 (U+1F939), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_JUGGLING\n"
+"LngText.text"
+msgid "juggling"
+msgstr ""
+
+#. 🤳 (U+1F933), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SELFIE\n"
+"LngText.text"
+msgid "selfie"
+msgstr ""
+
+#. 🤞 (U+1F91E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CROSSED_FINGERS\n"
+"LngText.text"
+msgid "good luck"
+msgstr ""
+
+#. 🤙 (U+1F919), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CALL_ME_HAND\n"
+"LngText.text"
+msgid "call"
+msgstr ""
+
+#. 🤛 (U+1F91B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT-FACING_FIST\n"
+"LngText.text"
+msgid "fist3"
+msgstr ""
+
+#. 🤜 (U+1F91C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT-FACING_FIST\n"
+"LngText.text"
+msgid "fist4"
+msgstr ""
+
+#. 🤚 (U+1F91A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_BACK_OF_HAND\n"
+"LngText.text"
+msgid "hand4"
+msgstr ""
+
+#. 🤝 (U+1F91D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HANDSHAKE\n"
+"LngText.text"
+msgid "handshake"
+msgstr ""
+
+#. 🖤 (U+1F5A4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_HEART\n"
+"LngText.text"
+msgid "black heart"
+msgstr ""
+
+#. 🦍 (U+1F98D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GORILLA\n"
+"LngText.text"
+msgid "gorilla"
+msgstr ""
+
+#. 🦊 (U+1F98A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOX_FACE\n"
+"LngText.text"
+msgid "fox"
+msgstr ""
+
+#. 🦌 (U+1F98C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DEER\n"
+"LngText.text"
+msgid "deer"
+msgstr ""
+
+#. 🦏 (U+1F98F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RHINOCEROS\n"
+"LngText.text"
+msgid "rhinoceros"
+msgstr ""
+
+#. 🦇 (U+1F987), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BAT\n"
+"LngText.text"
+msgid "bat"
+msgstr ""
+
+#. 🦅 (U+1F985), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EAGLE\n"
+"LngText.text"
+msgid "eagle"
+msgstr ""
+
+#. 🦆 (U+1F986), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DUCK\n"
+"LngText.text"
+msgid "duck"
+msgstr ""
+
+#. 🦉 (U+1F989), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OWL\n"
+"LngText.text"
+msgid "owl"
+msgstr ""
+
+#. 🦎 (U+1F98E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIZARD\n"
+"LngText.text"
+msgid "lizard"
+msgstr ""
+
+#. 🦈 (U+1F988), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHARK\n"
+"LngText.text"
+msgid "shark"
+msgstr ""
+
+#. 🦐 (U+1F990), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHRIMP\n"
+"LngText.text"
+msgid "shrimp"
+msgstr ""
+
+#. 🦑 (U+1F991), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SQUID\n"
+"LngText.text"
+msgid "squid"
+msgstr ""
+
+#. 🦋 (U+1F98B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BUTTERFLY\n"
+"LngText.text"
+msgid "butterfly"
+msgstr ""
+
+#. 🥀 (U+1F940), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WILTED_FLOWER\n"
+"LngText.text"
+msgid "flower2"
+msgstr ""
+
+#. 🥝 (U+1F95D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KIWI_FRUIT\n"
+"LngText.text"
+msgid "kiwi"
+msgstr ""
+
+#. 🥑 (U+1F951), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AVOCADO\n"
+"LngText.text"
+msgid "avocado"
+msgstr ""
+
+#. 🥔 (U+1F954), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POTATO\n"
+"LngText.text"
+msgid "potato"
+msgstr ""
+
+#. 🥕 (U+1F955), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARROT\n"
+"LngText.text"
+msgid "carrot"
+msgstr ""
+
+#. 🥒 (U+1F952), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUCUMBER\n"
+"LngText.text"
+msgid "cucumber"
+msgstr ""
+
+#. 🥜 (U+1F95C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEANUTS\n"
+"LngText.text"
+msgid "peanuts"
+msgstr ""
+
+#. 🥐 (U+1F950), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CROISSANT\n"
+"LngText.text"
+msgid "croissant"
+msgstr ""
+
+#. 🥖 (U+1F956), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BAGUETTE_BREAD\n"
+"LngText.text"
+msgid "bread2"
+msgstr ""
+
+#. 🥞 (U+1F95E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PANCAKES\n"
+"LngText.text"
+msgid "pancakes"
+msgstr ""
+
+#. 🥓 (U+1F953), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BACON\n"
+"LngText.text"
+msgid "bacon"
+msgstr ""
+
+#. 🥙 (U+1F959), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STUFFED_FLATBREAD\n"
+"LngText.text"
+msgid "flatbread"
+msgstr ""
+
+#. 🥚 (U+1F95A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EGG\n"
+"LngText.text"
+msgid "egg"
+msgstr ""
+
+#. 🥘 (U+1F958), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHALLOW_PAN_OF_FOOD\n"
+"LngText.text"
+msgid "food"
+msgstr ""
+
+#. 🥗 (U+1F957), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GREEN_SALAD\n"
+"LngText.text"
+msgid "salad"
+msgstr ""
+
+#. 🥛 (U+1F95B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GLASS_OF_MILK\n"
+"LngText.text"
+msgid "milk"
+msgstr ""
+
+#. 🥂 (U+1F942), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLINKING_GLASSES\n"
+"LngText.text"
+msgid "party3"
+msgstr ""
+
+#. 🥃 (U+1F943), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TUMBLER_GLASS\n"
+"LngText.text"
+msgid "glass3"
+msgstr ""
+
+#. 🥄 (U+1F944), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPOON\n"
+"LngText.text"
+msgid "spoon"
+msgstr ""
+
+#. 🛴 (U+1F6F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCOOTER\n"
+"LngText.text"
+msgid "scooter"
+msgstr ""
+
+#. 🛵 (U+1F6F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTOR_SCOOTER\n"
+"LngText.text"
+msgid "scooter2"
+msgstr ""
+
+#. 🛑 (U+1F6D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OCTAGONAL_SIGN\n"
+"LngText.text"
+msgid "stop"
+msgstr ""
+
+#. 🛶 (U+1F6F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANOE\n"
+"LngText.text"
+msgid "canoe"
+msgstr ""
+
+#. 🥇 (U+1F947), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"1ST_PLACE_MEDAL\n"
+"LngText.text"
+msgid "gold"
+msgstr ""
+
+#. 🥈 (U+1F948), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"2ND_PLACE_MEDAL\n"
+"LngText.text"
+msgid "silver"
+msgstr ""
+
+#. 🥉 (U+1F949), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"3RD_PLACE_MEDAL\n"
+"LngText.text"
+msgid "bronze"
+msgstr ""
+
+#. 🥊 (U+1F94A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOXING_GLOVE\n"
+"LngText.text"
+msgid "boxing"
+msgstr ""
+
+#. 🥋 (U+1F94B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MARTIAL_ARTS_UNIFORM\n"
+"LngText.text"
+msgid "judo"
+msgstr ""
+
+#. 🥅 (U+1F945), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GOAL_NET\n"
+"LngText.text"
+msgid "soccer2"
+msgstr ""
+
+#. 🥁 (U+1F941), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DRUM_WITH_DRUMSTICKS\n"
+"LngText.text"
+msgid "drum2"
+msgstr ""
+
+#. 🛒 (U+1F6D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOPPING_TROLLEY\n"
+"LngText.text"
+msgid "cart"
+msgstr ""
+
+#. 🤩 (U+1F929), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GRINNING_FACE_WITH_STAR_EYES\n"
+"LngText.text"
+msgid "excited"
+msgstr ""
+
+#. 🤨 (U+1F928), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_ONE_EYEBROW_RAISED\n"
+"LngText.text"
+msgid "eyebrow"
+msgstr ""
+
+#. 🤯 (U+1F92F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOCKED_FACE_WITH_EXPLODING_HEAD\n"
+"LngText.text"
+msgid "shocked"
+msgstr ""
+
+#. 🤪 (U+1F92A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GRINNING_FACE_WITH_ONE_LARGE_AND_ONE_SMALL_EYE\n"
+"LngText.text"
+msgid "zany"
+msgstr ""
+
+#. 🤬 (U+1F92C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SERIOUS_FACE_WITH_SYMBOLS_COVERING_MOUTH\n"
+"LngText.text"
+msgid "cursing"
+msgstr ""
+
+#. 🤮 (U+1F92E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_OPEN_MOUTH_VOMITING\n"
+"LngText.text"
+msgid "vomit"
+msgstr ""
+
+#. 🤫 (U+1F92B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_FINGER_COVERING_CLOSED_LIPS\n"
+"LngText.text"
+msgid "hush"
+msgstr ""
+
+#. 🤭 (U+1F92D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SMILING_FACE_WITH_SMILING_EYES_AND_HAND_COVERING_MOUTH\n"
+"LngText.text"
+msgid "smiling4"
+msgstr ""
+
+#. 🧐 (U+1F9D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_MONOCLE\n"
+"LngText.text"
+msgid "monocle"
+msgstr ""
+
+#. 🧒 (U+1F9D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHILD\n"
+"LngText.text"
+msgid "child"
+msgstr ""
+
+#. 🧑 (U+1F9D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ADULT\n"
+"LngText.text"
+msgid "adult"
+msgstr ""
+
+#. 🧓 (U+1F9D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLDER_ADULT\n"
+"LngText.text"
+msgid "old"
+msgstr ""
+
+#. 🧕 (U+1F9D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_WITH_HEADSCARF\n"
+"LngText.text"
+msgid "headscarf"
+msgstr ""
+
+#. 🧔 (U+1F9D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEARDED_PERSON\n"
+"LngText.text"
+msgid "beard"
+msgstr ""
+
+#. 🤱 (U+1F931), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BREAST-FEEDING\n"
+"LngText.text"
+msgid "baby3"
+msgstr ""
+
+#. 🧙 (U+1F9D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAGE\n"
+"LngText.text"
+msgid "mage"
+msgstr ""
+
+#. 🧚 (U+1F9DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FAIRY\n"
+"LngText.text"
+msgid "fairy"
+msgstr ""
+
+#. 🧛 (U+1F9DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"VAMPIRE\n"
+"LngText.text"
+msgid "vampire"
+msgstr ""
+
+#. 🧜 (U+1F9DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MERPERSON\n"
+"LngText.text"
+msgid "merperson"
+msgstr ""
+
+#. 🧝 (U+1F9DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ELF\n"
+"LngText.text"
+msgid "elf"
+msgstr ""
+
+#. 🧞 (U+1F9DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GENIE\n"
+"LngText.text"
+msgid "genie"
+msgstr ""
+
+#. 🧟 (U+1F9DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZOMBIE\n"
+"LngText.text"
+msgid "zombie"
+msgstr ""
+
+#. 🧖 (U+1F9D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_IN_STEAMY_ROOM\n"
+"LngText.text"
+msgid "sauna"
+msgstr ""
+
+#. 🧗 (U+1F9D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_CLIMBING\n"
+"LngText.text"
+msgid "climber"
+msgstr ""
+
+#. 🧘 (U+1F9D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_IN_LOTUS_POSITION\n"
+"LngText.text"
+msgid "yoga"
+msgstr ""
+
+#. 🤟 (U+1F91F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"I_LOVE_YOU_HAND_SIGN\n"
+"LngText.text"
+msgid "love2"
+msgstr ""
+
+#. 🤲 (U+1F932), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PALMS_UP_TOGETHER\n"
+"LngText.text"
+msgid "palm2"
+msgstr ""
+
+#. 🧠 (U+1F9E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BRAIN\n"
+"LngText.text"
+msgid "brain"
+msgstr ""
+
+#. 🧡 (U+1F9E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ORANGE_HEART\n"
+"LngText.text"
+msgid "orange heart"
+msgstr ""
+
+#. 🧣 (U+1F9E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCARF\n"
+"LngText.text"
+msgid "scarf"
+msgstr ""
+
+#. 🧤 (U+1F9E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GLOVES\n"
+"LngText.text"
+msgid "gloves"
+msgstr ""
+
+#. 🧥 (U+1F9E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COAT\n"
+"LngText.text"
+msgid "coat"
+msgstr ""
+
+#. 🧦 (U+1F9E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SOCKS\n"
+"LngText.text"
+msgid "socks"
+msgstr ""
+
+#. 🧢 (U+1F9E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BILLED_CAP\n"
+"LngText.text"
+msgid "cap"
+msgstr ""
+
+#. 🦓 (U+1F993), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZEBRA\n"
+"LngText.text"
+msgid "zebra"
+msgstr ""
+
+#. 🦒 (U+1F992), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GIRAFFE\n"
+"LngText.text"
+msgid "giraffe"
+msgstr ""
+
+#. 🦔 (U+1F994), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEDGEHOG\n"
+"LngText.text"
+msgid "hedgehog"
+msgstr ""
+
+#. 🦕 (U+1F995), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SAUROPOD\n"
+"LngText.text"
+msgid "dinosaur"
+msgstr ""
+
+#. 🦖 (U+1F996), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"T-REX\n"
+"LngText.text"
+msgid "dinosaur2"
+msgstr ""
+
+#. 🦗 (U+1F997), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRICKET\n"
+"LngText.text"
+msgid "cricket2"
+msgstr ""
+
+#. 🥥 (U+1F965), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COCONUT\n"
+"LngText.text"
+msgid "coconut"
+msgstr ""
+
+#. 🥦 (U+1F966), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BROCCOLI\n"
+"LngText.text"
+msgid "broccoli"
+msgstr ""
+
+#. 🥨 (U+1F968), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRETZEL\n"
+"LngText.text"
+msgid "pretzel"
+msgstr ""
+
+#. 🥩 (U+1F969), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUT_OF_MEAT\n"
+"LngText.text"
+msgid "steak"
+msgstr ""
+
+#. 🥪 (U+1F96A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SANDWICH\n"
+"LngText.text"
+msgid "sandwich"
+msgstr ""
+
+#. 🥣 (U+1F963), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOWL_WITH_SPOON\n"
+"LngText.text"
+msgid "bowl"
+msgstr ""
+
+#. 🥫 (U+1F96B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANNED_FOOD\n"
+"LngText.text"
+msgid "can"
+msgstr ""
+
+#. 🥟 (U+1F95F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DUMPLING\n"
+"LngText.text"
+msgid "dumpling"
+msgstr ""
+
+#. 🥠 (U+1F960), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FORTUNE_COOKIE\n"
+"LngText.text"
+msgid "cookie2"
+msgstr ""
+
+#. 🥡 (U+1F961), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TAKEOUT_BOX\n"
+"LngText.text"
+msgid "takeout"
+msgstr ""
+
+#. 🥧 (U+1F967), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PIE\n"
+"LngText.text"
+msgid "pie"
+msgstr ""
+
+#. 🥤 (U+1F964), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUP_WITH_STRAW\n"
+"LngText.text"
+msgid "drink"
+msgstr ""
+
+#. 🥢 (U+1F962), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHOPSTICKS\n"
+"LngText.text"
+msgid "chopsticks"
+msgstr ""
+
+#. 🛸 (U+1F6F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FLYING_SAUCER\n"
+"LngText.text"
+msgid "ufo"
+msgstr ""
+
+#. 🛷 (U+1F6F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLED\n"
+"LngText.text"
+msgid "sled"
+msgstr ""
+
+#. 🥌 (U+1F94C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CURLING_STONE\n"
+"LngText.text"
+msgid "curling"
+msgstr ""
+
+#. ₿ (U+20BF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BITCOIN_SIGN\n"
+"LngText.text"
+msgid "bitcoin"
+msgstr ""
+
#. ½ (U+000BD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
msgctxt ""
diff --git a/source/az/officecfg/registry/data/org/openoffice/Office/UI.po b/source/az/officecfg/registry/data/org/openoffice/Office/UI.po
index 09f5009a74e..8e1248193b9 100644
--- a/source/az/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/az/officecfg/registry/data/org/openoffice/Office/UI.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: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2016-12-01 11:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2789,7 +2789,7 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:Hide\n"
"Label\n"
"value.text"
-msgid "~Hide Sheets"
+msgid "~Hide Sheet"
msgstr ""
#: CalcCommands.xcu
@@ -3538,16 +3538,7 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:EditLinks\n"
"Label\n"
"value.text"
-msgid "Edit Lin~ks..."
-msgstr ""
-
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:EditLinks\n"
-"ContextLabel\n"
-"value.text"
-msgid "Lin~ks..."
+msgid "Lin~ks to External Files..."
msgstr ""
#: CalcCommands.xcu
@@ -6889,15 +6880,6 @@ msgstr ""
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Commands..uno:SlideNavigateMenu\n"
-"Label\n"
-"value.text"
-msgid "Navigate"
-msgstr ""
-
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:SlideMoveMenu\n"
"Label\n"
"value.text"
@@ -7503,6 +7485,15 @@ msgstr ""
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlideField\n"
+"Label\n"
+"value.text"
+msgid "~Slide Number"
+msgstr ""
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:InsertPageTitleField\n"
"Label\n"
"value.text"
@@ -7512,6 +7503,15 @@ msgstr ""
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlideTitleField\n"
+"Label\n"
+"value.text"
+msgid "Slide Tit~le"
+msgstr ""
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:InsertPagesField\n"
"Label\n"
"value.text"
@@ -7521,6 +7521,15 @@ msgstr ""
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlidesField\n"
+"Label\n"
+"value.text"
+msgid "Slide ~Count"
+msgstr ""
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:ModifyField\n"
"Label\n"
"value.text"
@@ -7742,7 +7751,7 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:ManageLinks\n"
"Label\n"
"value.text"
-msgid "Lin~ks..."
+msgid "Lin~ks to External Files..."
msgstr ""
#: DrawImpressCommands.xcu
@@ -7832,7 +7841,7 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:ImportSlideFromFile\n"
"Label\n"
"value.text"
-msgid "Import Slides..."
+msgid "Insert Slide from File..."
msgstr ""
#: DrawImpressCommands.xcu
@@ -9045,6 +9054,15 @@ msgstr ""
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Popups..uno:InsertSlideNumber\n"
+"Label\n"
+"value.text"
+msgid "S~lide Number..."
+msgstr ""
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:InsertDateAndTime\n"
"Label\n"
"value.text"
@@ -17489,7 +17507,7 @@ msgctxt ""
"..GenericCommands.UserInterface.Commands..uno:InsertDoc\n"
"Label\n"
"value.text"
-msgid "Doc~ument..."
+msgid "Text from File..."
msgstr ""
#: GenericCommands.xcu
@@ -17668,6 +17686,15 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ViewSidebarStyles\n"
+"Label\n"
+"value.text"
+msgid "Styles"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:OutlineRight\n"
"Label\n"
"value.text"
@@ -19282,24 +19309,6 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
-"Label\n"
-"value.text"
-msgid "Charmap"
-msgstr ""
-
-#: GenericCommands.xcu
-msgctxt ""
-"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
-"TooltipLabel\n"
-"value.text"
-msgid "Insert Special Characters"
-msgstr ""
-
-#: GenericCommands.xcu
-msgctxt ""
-"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:TransformRotationX\n"
"Label\n"
"value.text"
@@ -20448,6 +20457,33 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"Label\n"
+"value.text"
+msgid "Symbol"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"ContextLabel\n"
+"value.text"
+msgid "S~pecial Character..."
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Insert Special Characters"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ViewDataSourceBrowser\n"
"Label\n"
"value.text"
@@ -20493,6 +20529,15 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ExportAsMenu\n"
+"Label\n"
+"value.text"
+msgid "~Export As"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportToPDF\n"
"Label\n"
"value.text"
@@ -20559,7 +20604,7 @@ msgctxt ""
"..GenericCommands.UserInterface.Commands..uno:ExportToEPUB\n"
"ContextLabel\n"
"value.text"
-msgid "~Export as EPUB..."
+msgid "Export as E~PUB..."
msgstr ""
#: GenericCommands.xcu
@@ -22932,6 +22977,15 @@ msgctxt ""
msgid "~Restart in Safe Mode..."
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:NavigateMenu\n"
+"Label\n"
+"value.text"
+msgid "Navigate"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25563,7 +25617,7 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:ShowHiddenParagraphs\n"
"Label\n"
"value.text"
-msgid "~Hidden Paragraphs"
+msgid "Field ~Hidden Paragraphs"
msgstr ""
#: WriterCommands.xcu
@@ -27536,7 +27590,7 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:LinkDialog\n"
"Label\n"
"value.text"
-msgid "Lin~ks..."
+msgid "Lin~ks to External Files..."
msgstr ""
#: WriterCommands.xcu
@@ -30252,7 +30306,7 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 1&amp;FamilyName:string=NumberingStyles\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 123&amp;FamilyName:string=NumberingStyles\n"
"Label\n"
"value.text"
msgid "Number List"
@@ -30279,10 +30333,64 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 4&amp;FamilyName:string=NumberingStyles\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering ABC&amp;FamilyName:string=NumberingStyles\n"
"Label\n"
"value.text"
-msgid "Roman List"
+msgid "Alphabet Uppercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaListStyle\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Uppercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Alphabet Uppercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering abc&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaLowListStyle\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaLowListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Alphabet Lowercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering IVX&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Roman Uppercase List"
msgstr ""
#: WriterCommands.xcu
@@ -30291,7 +30399,7 @@ msgctxt ""
"..WriterCommands.UserInterface.Popups..uno:RomanListStyle\n"
"Label\n"
"value.text"
-msgid "Roman List"
+msgid "Roman Uppercase List"
msgstr ""
#: WriterCommands.xcu
@@ -30300,7 +30408,34 @@ msgctxt ""
"..WriterCommands.UserInterface.Popups..uno:RomanListStyle\n"
"TooltipLabel\n"
"value.text"
-msgid "Roman List Style"
+msgid "Roman Uppercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering ivx&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Roman Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:RomanLowListStyle\n"
+"Label\n"
+"value.text"
+msgid "Roman Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:RomanLowListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Roman Lowercase List Style"
msgstr ""
#: WriterCommands.xcu
diff --git a/source/az/sd/messages.po b/source/az/sd/messages.po
index 98c6e1084ee..1ba0279a6ab 100644
--- a/source/az/sd/messages.po
+++ b/source/az/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 15:29+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1562,879 +1562,889 @@ msgid "Master Slide"
msgstr ""
#: strings.hrc:287
+msgctxt "STR_MASTERSLIDE_LABEL"
+msgid "Master Slide:"
+msgstr ""
+
+#: strings.hrc:288
msgctxt "STR_MASTERPAGE_NAME"
msgid "Master Page"
msgstr ""
-#: strings.hrc:288
+#: strings.hrc:289
+msgctxt "STR_MASTERPAGE_LABEL"
+msgid "Master Page:"
+msgstr ""
+
+#: strings.hrc:290
msgctxt "STR_NOTES"
msgid "(Notes)"
msgstr ""
-#: strings.hrc:289
+#: strings.hrc:291
msgctxt "STR_HANDOUT"
msgid "Handouts"
msgstr ""
-#: strings.hrc:290
+#: strings.hrc:292
msgctxt "STR_PRESOBJ_MPTITLE"
msgid "Click to edit the title text format"
msgstr ""
-#: strings.hrc:291
+#: strings.hrc:293
msgctxt "STR_PRESOBJ_MPOUTLINE"
msgid "Click to edit the outline text format"
msgstr ""
-#: strings.hrc:292
+#: strings.hrc:294
msgctxt "STR_PRESOBJ_MPOUTLLAYER2"
msgid "Second Outline Level"
msgstr ""
-#: strings.hrc:293
+#: strings.hrc:295
msgctxt "STR_PRESOBJ_MPOUTLLAYER3"
msgid "Third Outline Level"
msgstr ""
-#: strings.hrc:294
+#: strings.hrc:296
msgctxt "STR_PRESOBJ_MPOUTLLAYER4"
msgid "Fourth Outline Level"
msgstr ""
-#: strings.hrc:295
+#: strings.hrc:297
msgctxt "STR_PRESOBJ_MPOUTLLAYER5"
msgid "Fifth Outline Level"
msgstr ""
-#: strings.hrc:296
+#: strings.hrc:298
msgctxt "STR_PRESOBJ_MPOUTLLAYER6"
msgid "Sixth Outline Level"
msgstr ""
-#: strings.hrc:297
+#: strings.hrc:299
msgctxt "STR_PRESOBJ_MPOUTLLAYER7"
msgid "Seventh Outline Level"
msgstr ""
-#: strings.hrc:298
+#: strings.hrc:300
msgctxt "STR_PRESOBJ_MPNOTESTITLE"
msgid "Click to move the slide"
msgstr ""
-#: strings.hrc:299
+#: strings.hrc:301
msgctxt "STR_PRESOBJ_MPNOTESTEXT"
msgid "Click to edit the notes format"
msgstr ""
-#: strings.hrc:300
+#: strings.hrc:302
msgctxt "STR_PRESOBJ_TITLE"
msgid "Click to add Title"
msgstr ""
-#: strings.hrc:301
+#: strings.hrc:303
msgctxt "STR_PRESOBJ_OUTLINE"
msgid "Click to add Text"
msgstr ""
-#: strings.hrc:302
+#: strings.hrc:304
msgctxt "STR_PRESOBJ_TEXT"
msgid "Click to add Text"
msgstr ""
-#: strings.hrc:303
+#: strings.hrc:305
msgctxt "STR_PRESOBJ_NOTESTEXT"
msgid "Click to add Notes"
msgstr ""
-#: strings.hrc:304
+#: strings.hrc:306
msgctxt "STR_PRESOBJ_GRAPHIC"
msgid "Double-click to add an Image"
msgstr ""
-#: strings.hrc:305
+#: strings.hrc:307
msgctxt "STR_PRESOBJ_OBJECT"
msgid "Double-click to add an Object"
msgstr ""
-#: strings.hrc:306
+#: strings.hrc:308
msgctxt "STR_PRESOBJ_CHART"
msgid "Double-click to add a Chart"
msgstr ""
-#: strings.hrc:307
+#: strings.hrc:309
msgctxt "STR_PRESOBJ_ORGCHART"
msgid "Double-click to add an Organization Chart"
msgstr ""
-#: strings.hrc:308
+#: strings.hrc:310
msgctxt "STR_PRESOBJ_TABLE"
msgid "Double-click to add a Spreadsheet"
msgstr ""
-#: strings.hrc:309
+#: strings.hrc:311
#, fuzzy
msgctxt "STR_LAYOUT_DEFAULT_NAME"
msgid "Default"
msgstr "Varsayılan"
-#: strings.hrc:310
+#: strings.hrc:312
#, fuzzy
msgctxt "STR_LAYOUT_DEFAULT_TITLE_NAME"
msgid "Title"
msgstr "Başlıq"
-#: strings.hrc:311
+#: strings.hrc:313
#, fuzzy
msgctxt "STR_STANDARD_STYLESHEET_NAME"
msgid "Default"
msgstr "Varsayılan"
-#: strings.hrc:312
+#: strings.hrc:314
msgctxt "STR_UNDO_MOVEPAGES"
msgid "Move slides"
msgstr ""
-#: strings.hrc:313
+#: strings.hrc:315
msgctxt "STR_POOLSHEET_MEASURE"
msgid "Dimension Line"
msgstr ""
-#: strings.hrc:314
+#: strings.hrc:316
msgctxt "STR_POOLSHEET_OBJNOLINENOFILL"
msgid "Object with no fill and no line"
msgstr ""
-#: strings.hrc:315
+#: strings.hrc:317
msgctxt "STR_POOLSHEET_OBJWITHARROW"
msgid "Object with arrow"
msgstr ""
-#: strings.hrc:316
+#: strings.hrc:318
msgctxt "STR_POOLSHEET_OBJWITHSHADOW"
msgid "Object with shadow"
msgstr ""
-#: strings.hrc:317
+#: strings.hrc:319
msgctxt "STR_POOLSHEET_OBJWITHOUTFILL"
msgid "Object without fill"
msgstr ""
-#: strings.hrc:318
+#: strings.hrc:320
msgctxt "STR_POOLSHEET_TEXT"
msgid "Text"
msgstr ""
-#: strings.hrc:319
+#: strings.hrc:321
msgctxt "STR_POOLSHEET_TEXTBODY"
msgid "Text body"
msgstr ""
-#: strings.hrc:320
+#: strings.hrc:322
msgctxt "STR_POOLSHEET_TEXTBODY_JUSTIFY"
msgid "Text body justified"
msgstr ""
-#: strings.hrc:321
+#: strings.hrc:323
msgctxt "STR_POOLSHEET_TEXTBODY_INDENT"
msgid "First line indent"
msgstr ""
-#: strings.hrc:322
+#: strings.hrc:324
#, fuzzy
msgctxt "STR_POOLSHEET_TITLE"
msgid "Title"
msgstr "Başlıq"
-#: strings.hrc:323
+#: strings.hrc:325
#, fuzzy
msgctxt "STR_POOLSHEET_TITLE1"
msgid "Title1"
msgstr "Başlıq"
-#: strings.hrc:324
+#: strings.hrc:326
#, fuzzy
msgctxt "STR_POOLSHEET_TITLE2"
msgid "Title2"
msgstr "Başlıq"
-#: strings.hrc:325
+#: strings.hrc:327
msgctxt "STR_POOLSHEET_HEADLINE"
msgid "Heading"
msgstr ""
-#: strings.hrc:326
+#: strings.hrc:328
msgctxt "STR_POOLSHEET_HEADLINE1"
msgid "Heading1"
msgstr ""
-#: strings.hrc:327
+#: strings.hrc:329
msgctxt "STR_POOLSHEET_HEADLINE2"
msgid "Heading2"
msgstr ""
-#: strings.hrc:328
+#: strings.hrc:330
#, fuzzy
msgctxt "STR_PSEUDOSHEET_TITLE"
msgid "Title"
msgstr "Başlıq"
-#: strings.hrc:329
+#: strings.hrc:331
msgctxt "STR_PSEUDOSHEET_SUBTITLE"
msgid "Subtitle"
msgstr ""
-#: strings.hrc:330
+#: strings.hrc:332
msgctxt "STR_PSEUDOSHEET_OUTLINE"
msgid "Outline"
msgstr ""
-#: strings.hrc:331
+#: strings.hrc:333
msgctxt "STR_PSEUDOSHEET_BACKGROUNDOBJECTS"
msgid "Background objects"
msgstr ""
-#: strings.hrc:332
+#: strings.hrc:334
msgctxt "STR_PSEUDOSHEET_BACKGROUND"
msgid "Background"
msgstr ""
-#: strings.hrc:333
+#: strings.hrc:335
#, fuzzy
msgctxt "STR_PSEUDOSHEET_NOTES"
msgid "Notes"
msgstr "notalar"
-#: strings.hrc:334
+#: strings.hrc:336
msgctxt "STR_POWERPOINT_IMPORT"
msgid "PowerPoint Import"
msgstr ""
-#: strings.hrc:335
+#: strings.hrc:337
msgctxt "STR_SAVE_DOC"
msgid "Save Document"
msgstr ""
-#: strings.hrc:336
+#: strings.hrc:338
msgctxt "STR_POOLSHEET_BANDED_CELL"
msgid "Banding cell"
msgstr ""
-#: strings.hrc:337
+#: strings.hrc:339
msgctxt "STR_POOLSHEET_HEADER"
msgid "Header"
msgstr ""
-#: strings.hrc:338
+#: strings.hrc:340
msgctxt "STR_POOLSHEET_TOTAL"
msgid "Total line"
msgstr ""
-#: strings.hrc:339
+#: strings.hrc:341
msgctxt "STR_POOLSHEET_FIRST_COLUMN"
msgid "First column"
msgstr ""
-#: strings.hrc:340
+#: strings.hrc:342
msgctxt "STR_POOLSHEET_LAST_COLUMN"
msgid "Last column"
msgstr ""
-#: strings.hrc:341
+#: strings.hrc:343
msgctxt "STR_ENTER_PIN"
msgid "Enter PIN:"
msgstr ""
-#: strings.hrc:342
+#: strings.hrc:344
msgctxt "STR_DEAUTHORISE_CLIENT"
msgid "Remove client authorisation"
msgstr ""
-#: strings.hrc:343
+#: strings.hrc:345
msgctxt "STR_SHRINK_FONT_SIZE"
msgid "Shrink font size"
msgstr ""
-#: strings.hrc:344
+#: strings.hrc:346
msgctxt "STR_GROW_FONT_SIZE"
msgid "Grow font size"
msgstr ""
#. Names and descriptions of the Draw/Impress accessibility views
#. ==============================================================
-#: strings.hrc:349
+#: strings.hrc:351
msgctxt "SID_SD_A11Y_D_DRAWVIEW_N"
msgid "Drawing View"
msgstr ""
-#: strings.hrc:350
+#: strings.hrc:352
msgctxt "SID_SD_A11Y_D_DRAWVIEW_D"
msgid "This is where you create and edit drawings."
msgstr ""
-#: strings.hrc:351
+#: strings.hrc:353
msgctxt "SID_SD_A11Y_I_DRAWVIEW_N"
msgid "Drawing View"
msgstr ""
-#: strings.hrc:352
+#: strings.hrc:354
msgctxt "SID_SD_A11Y_I_DRAWVIEW_D"
msgid "This is where you create and edit slides."
msgstr ""
-#: strings.hrc:353
+#: strings.hrc:355
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_N"
msgid "Outline View"
msgstr ""
-#: strings.hrc:354
+#: strings.hrc:356
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_D"
msgid "This is where you enter or edit text in list form."
msgstr ""
-#: strings.hrc:355
+#: strings.hrc:357
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_N"
msgid "Slides View"
msgstr ""
-#: strings.hrc:356
+#: strings.hrc:358
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_D"
msgid "This is where you sort slides."
msgstr ""
-#: strings.hrc:357
+#: strings.hrc:359
msgctxt "SID_SD_A11Y_I_NOTESVIEW_N"
msgid "Notes View"
msgstr ""
-#: strings.hrc:358
+#: strings.hrc:360
msgctxt "SID_SD_A11Y_I_NOTESVIEW_D"
msgid "This is where you enter and view notes."
msgstr ""
-#: strings.hrc:359
+#: strings.hrc:361
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_N"
msgid "Handout View"
msgstr ""
-#: strings.hrc:360
+#: strings.hrc:362
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_D"
msgid "This is where you decide on the layout for handouts."
msgstr ""
-#: strings.hrc:361
+#: strings.hrc:363
msgctxt "SID_SD_A11Y_P_TITLE_N"
msgid "PresentationTitle"
msgstr ""
-#: strings.hrc:362
+#: strings.hrc:364
msgctxt "SID_SD_A11Y_P_OUTLINER_N"
msgid "PresentationOutliner"
msgstr ""
-#: strings.hrc:363
+#: strings.hrc:365
msgctxt "SID_SD_A11Y_P_SUBTITLE_N"
msgid "PresentationSubtitle"
msgstr ""
-#: strings.hrc:364
+#: strings.hrc:366
msgctxt "SID_SD_A11Y_P_PAGE_N"
msgid "PresentationPage"
msgstr ""
-#: strings.hrc:365
+#: strings.hrc:367
msgctxt "SID_SD_A11Y_P_NOTES_N"
msgid "PresentationNotes"
msgstr ""
-#: strings.hrc:366
+#: strings.hrc:368
msgctxt "SID_SD_A11Y_P_HANDOUT_N"
msgid "Handout"
msgstr ""
-#: strings.hrc:367
+#: strings.hrc:369
msgctxt "SID_SD_A11Y_P_UNKNOWN_N"
msgid "UnknownAccessiblePresentationShape"
msgstr ""
-#: strings.hrc:368
+#: strings.hrc:370
msgctxt "SID_SD_A11Y_P_TITLE_D"
msgid "PresentationTitleShape"
msgstr ""
-#: strings.hrc:369
+#: strings.hrc:371
msgctxt "SID_SD_A11Y_P_OUTLINER_D"
msgid "PresentationOutlinerShape"
msgstr ""
-#: strings.hrc:370
+#: strings.hrc:372
msgctxt "SID_SD_A11Y_P_SUBTITLE_D"
msgid "PresentationSubtitleShape"
msgstr ""
-#: strings.hrc:371
+#: strings.hrc:373
msgctxt "SID_SD_A11Y_P_PAGE_D"
msgid "PresentationPageShape"
msgstr ""
-#: strings.hrc:372
+#: strings.hrc:374
msgctxt "SID_SD_A11Y_P_NOTES_D"
msgid "PresentationNotesShape"
msgstr ""
-#: strings.hrc:373
+#: strings.hrc:375
msgctxt "SID_SD_A11Y_P_HANDOUT_D"
msgid "PresentationHandoutShape"
msgstr ""
-#: strings.hrc:374
+#: strings.hrc:376
msgctxt "SID_SD_A11Y_P_UNKNOWN_D"
msgid "Unknown accessible presentation shape"
msgstr ""
-#: strings.hrc:375
+#: strings.hrc:377
msgctxt "SID_SD_A11Y_P_FOOTER_N"
msgid "PresentationFooter"
msgstr ""
-#: strings.hrc:376
+#: strings.hrc:378
msgctxt "SID_SD_A11Y_P_FOOTER_D"
msgid "PresentationFooterShape"
msgstr ""
-#: strings.hrc:377
+#: strings.hrc:379
msgctxt "SID_SD_A11Y_P_HEADER_N"
msgid "PresentationHeader"
msgstr ""
-#: strings.hrc:378
+#: strings.hrc:380
msgctxt "SID_SD_A11Y_P_HEADER_D"
msgid "PresentationHeaderShape"
msgstr ""
-#: strings.hrc:379
+#: strings.hrc:381
msgctxt "SID_SD_A11Y_P_DATE_N"
msgid "PresentationDateAndTime"
msgstr ""
-#: strings.hrc:380
+#: strings.hrc:382
msgctxt "SID_SD_A11Y_P_DATE_D"
msgid "PresentationDateAndTimeShape"
msgstr ""
-#: strings.hrc:381
+#: strings.hrc:383
msgctxt "SID_SD_A11Y_P_NUMBER_N"
msgid "PresentationPageNumber"
msgstr ""
-#: strings.hrc:382
+#: strings.hrc:384
msgctxt "SID_SD_A11Y_P_NUMBER_D"
msgid "PresentationPageNumberShape"
msgstr ""
-#: strings.hrc:383
+#: strings.hrc:385
msgctxt "SID_SD_A11Y_D_PRESENTATION"
msgid "%PRODUCTNAME Presentation"
msgstr ""
-#: strings.hrc:384
+#: strings.hrc:386
#, fuzzy
msgctxt "SID_SD_A11Y_P_TITLE_N_STYLE"
msgid "Title"
msgstr "Başlıq"
-#: strings.hrc:385
+#: strings.hrc:387
msgctxt "SID_SD_A11Y_P_OUTLINER_N_STYLE"
msgid "Outliner"
msgstr ""
-#: strings.hrc:386
+#: strings.hrc:388
msgctxt "SID_SD_A11Y_P_SUBTITLE_N_STYLE"
msgid "Subtitle"
msgstr ""
-#: strings.hrc:387
+#: strings.hrc:389
#, fuzzy
msgctxt "SID_SD_A11Y_P_PAGE_N_STYLE"
msgid "Page"
msgstr "Sәhifә"
-#: strings.hrc:388
+#: strings.hrc:390
#, fuzzy
msgctxt "SID_SD_A11Y_P_NOTES_N_STYLE"
msgid "Notes"
msgstr "notalar"
-#: strings.hrc:389
+#: strings.hrc:391
msgctxt "SID_SD_A11Y_P_HANDOUT_N_STYLE"
msgid "Handout"
msgstr ""
-#: strings.hrc:390
+#: strings.hrc:392
msgctxt "SID_SD_A11Y_P_UNKNOWN_N_STYLE"
msgid "Unknown Accessible Presentation Shape"
msgstr ""
-#: strings.hrc:391
+#: strings.hrc:393
msgctxt "SID_SD_A11Y_P_FOOTER_N_STYLE"
msgid "Footer"
msgstr ""
-#: strings.hrc:392
+#: strings.hrc:394
msgctxt "SID_SD_A11Y_P_HEADER_N_STYLE"
msgid "Header"
msgstr ""
-#: strings.hrc:393
+#: strings.hrc:395
msgctxt "SID_SD_A11Y_P_DATE_N_STYLE"
msgid "Date"
msgstr ""
-#: strings.hrc:394
+#: strings.hrc:396
msgctxt "SID_SD_A11Y_P_NUMBER_N_STYLE"
msgid "Number"
msgstr ""
-#: strings.hrc:395
+#: strings.hrc:397
msgctxt "SID_SD_A11Y_D_PRESENTATION_READONLY"
msgid "(read-only)"
msgstr ""
-#: strings.hrc:397
+#: strings.hrc:399
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_REPEAT_NONE"
msgid "none"
msgstr "nota"
-#: strings.hrc:398
+#: strings.hrc:400
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_NEXT_CLICK"
msgid "Until next click"
msgstr ""
-#: strings.hrc:399
+#: strings.hrc:401
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_END_OF_SLIDE"
msgid "Until end of slide"
msgstr ""
-#: strings.hrc:400
+#: strings.hrc:402
msgctxt "STR_CUSTOMANIMATION_DIRECTION_PROPERTY"
msgid "Direction:"
msgstr ""
-#: strings.hrc:401
+#: strings.hrc:403
msgctxt "STR_CUSTOMANIMATION_ZOOM_PROPERTY"
msgid "Zoom:"
msgstr ""
-#: strings.hrc:402
+#: strings.hrc:404
msgctxt "STR_CUSTOMANIMATION_SPOKES_PROPERTY"
msgid "Spokes:"
msgstr ""
-#: strings.hrc:403
+#: strings.hrc:405
msgctxt "STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY"
msgid "First color:"
msgstr ""
-#: strings.hrc:404
+#: strings.hrc:406
msgctxt "STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY"
msgid "Second color:"
msgstr ""
-#: strings.hrc:405
+#: strings.hrc:407
msgctxt "STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY"
msgid "Fill color:"
msgstr ""
-#: strings.hrc:406
+#: strings.hrc:408
msgctxt "STR_CUSTOMANIMATION_STYLE_PROPERTY"
msgid "Style:"
msgstr ""
-#: strings.hrc:407
+#: strings.hrc:409
msgctxt "STR_CUSTOMANIMATION_FONT_PROPERTY"
msgid "Font:"
msgstr ""
-#: strings.hrc:408
+#: strings.hrc:410
msgctxt "STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY"
msgid "Font color:"
msgstr ""
-#: strings.hrc:409
+#: strings.hrc:411
msgctxt "STR_CUSTOMANIMATION_FONT_SIZE_STYLE_PROPERTY"
msgid "Style:"
msgstr ""
-#: strings.hrc:410
+#: strings.hrc:412
msgctxt "STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY"
msgid "Typeface:"
msgstr ""
-#: strings.hrc:411
+#: strings.hrc:413
msgctxt "STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY"
msgid "Line color:"
msgstr ""
-#: strings.hrc:412
+#: strings.hrc:414
msgctxt "STR_CUSTOMANIMATION_SIZE_PROPERTY"
msgid "Font size:"
msgstr ""
-#: strings.hrc:413
+#: strings.hrc:415
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SCALE_PROPERTY"
msgid "Size:"
msgstr "Ölçü:"
-#: strings.hrc:414
+#: strings.hrc:416
msgctxt "STR_CUSTOMANIMATION_AMOUNT_PROPERTY"
msgid "Amount:"
msgstr ""
-#: strings.hrc:415
+#: strings.hrc:417
msgctxt "STR_CUSTOMANIMATION_COLOR_PROPERTY"
msgid "Color:"
msgstr ""
-#: strings.hrc:416
+#: strings.hrc:418
msgctxt "STR_CUSTOMANIMATION_NO_SOUND"
msgid "(No sound)"
msgstr ""
-#: strings.hrc:417
+#: strings.hrc:419
msgctxt "STR_CUSTOMANIMATION_STOP_PREVIOUS_SOUND"
msgid "(Stop previous sound)"
msgstr ""
-#: strings.hrc:418
+#: strings.hrc:420
msgctxt "STR_CUSTOMANIMATION_BROWSE_SOUND"
msgid "Other sound..."
msgstr ""
-#: strings.hrc:419
+#: strings.hrc:421
msgctxt "STR_CUSTOMANIMATION_SAMPLE"
msgid "Sample"
msgstr ""
-#: strings.hrc:420
+#: strings.hrc:422
msgctxt "STR_CUSTOMANIMATION_TRIGGER"
msgid "Trigger"
msgstr ""
-#: strings.hrc:421
+#: strings.hrc:423
msgctxt "STR_CUSTOMANIMATION_LIST_HELPTEXT"
msgid "First select the slide element and then click 'Add...' to add an animation effect."
msgstr ""
-#: strings.hrc:422
+#: strings.hrc:424
msgctxt "STR_CUSTOMANIMATION_USERPATH"
msgid "User paths"
msgstr ""
-#: strings.hrc:423
+#: strings.hrc:425
msgctxt "STR_CUSTOMANIMATION_ENTRANCE"
msgid "Entrance: %1"
msgstr ""
-#: strings.hrc:424
+#: strings.hrc:426
msgctxt "STR_CUSTOMANIMATION_EMPHASIS"
msgid "Emphasis: %1"
msgstr ""
-#: strings.hrc:425
+#: strings.hrc:427
msgctxt "STR_CUSTOMANIMATION_EXIT"
msgid "Exit: %1"
msgstr ""
-#: strings.hrc:426
+#: strings.hrc:428
msgctxt "STR_CUSTOMANIMATION_MOTION_PATHS"
msgid "Motion Paths: %1"
msgstr ""
-#: strings.hrc:427
+#: strings.hrc:429
msgctxt "STR_SLIDETRANSITION_NONE"
msgid "None"
msgstr ""
-#: strings.hrc:429
+#: strings.hrc:431
msgctxt "STR_ANNOTATION_TODAY"
msgid "Today,"
msgstr ""
-#: strings.hrc:430
+#: strings.hrc:432
msgctxt "STR_ANNOTATION_YESTERDAY"
msgid "Yesterday,"
msgstr ""
-#: strings.hrc:431
+#: strings.hrc:433
msgctxt "STR_ANNOTATION_NOAUTHOR"
msgid "(no author)"
msgstr ""
-#: strings.hrc:432
+#: strings.hrc:434
msgctxt "STR_ANNOTATION_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress reached the end of the presentation. Do you want to continue at the beginning?"
msgstr ""
-#: strings.hrc:433
+#: strings.hrc:435
msgctxt "STR_ANNOTATION_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress reached the beginning of the presentation. Do you want to continue at the end?"
msgstr ""
-#: strings.hrc:434
+#: strings.hrc:436
msgctxt "STR_ANNOTATION_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the end of the document. Do you want to continue at the beginning?"
msgstr ""
-#: strings.hrc:435
+#: strings.hrc:437
msgctxt "STR_ANNOTATION_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the beginning of the document. Do you want to continue at the end?"
msgstr ""
-#: strings.hrc:436
+#: strings.hrc:438
msgctxt "STR_ANNOTATION_UNDO_INSERT"
msgid "Insert Comment"
msgstr ""
-#: strings.hrc:437
+#: strings.hrc:439
msgctxt "STR_ANNOTATION_UNDO_DELETE"
msgid "Delete Comment(s)"
msgstr ""
-#: strings.hrc:438
+#: strings.hrc:440
msgctxt "STR_ANNOTATION_UNDO_MOVE"
msgid "Move Comment"
msgstr ""
-#: strings.hrc:439
+#: strings.hrc:441
msgctxt "STR_ANNOTATION_UNDO_EDIT"
msgid "Edit Comment"
msgstr ""
-#: strings.hrc:440
+#: strings.hrc:442
msgctxt "STR_ANNOTATION_REPLY"
msgid "Reply to %1"
msgstr ""
-#: strings.hrc:442
+#: strings.hrc:444
msgctxt "RID_DRAW_MEDIA_TOOLBOX"
msgid "Media Playback"
msgstr ""
-#: strings.hrc:443
+#: strings.hrc:445
#, fuzzy
msgctxt "RID_DRAW_TABLE_TOOLBOX"
msgid "Table"
msgstr "Cədvəllər"
-#: strings.hrc:445
+#: strings.hrc:447
msgctxt "STR_IMPRESS_PRINT_UI_GROUP_NAME"
msgid "%PRODUCTNAME %s"
msgstr ""
-#: strings.hrc:446
+#: strings.hrc:448
msgctxt "STR_IMPRESS_PRINT_UI_PRINT_GROUP"
msgid "Print"
msgstr ""
-#: strings.hrc:447
+#: strings.hrc:449
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT"
msgid "Document"
msgstr "Sәnәd"
-#: strings.hrc:448
+#: strings.hrc:450
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE"
msgid "Slides per page"
msgstr ""
-#: strings.hrc:449
+#: strings.hrc:451
msgctxt "STR_IMPRESS_PRINT_UI_ORDER"
msgid "Order"
msgstr ""
-#: strings.hrc:450
+#: strings.hrc:452
msgctxt "STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT"
msgid "~Contents"
msgstr ""
-#: strings.hrc:451
+#: strings.hrc:453
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_NAME"
msgid "~Slide name"
msgstr ""
-#: strings.hrc:452
+#: strings.hrc:454
msgctxt "STR_DRAW_PRINT_UI_IS_PRINT_NAME"
msgid "P~age name"
msgstr ""
-#: strings.hrc:453
+#: strings.hrc:455
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_DATE"
msgid "~Date and time"
msgstr ""
-#: strings.hrc:454
+#: strings.hrc:456
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_HIDDEN"
msgid "Hidden pages"
msgstr ""
-#: strings.hrc:455
+#: strings.hrc:457
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY"
msgid "Color"
msgstr ""
-#: strings.hrc:456
+#: strings.hrc:458
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS"
msgid "~Size"
msgstr ""
-#: strings.hrc:457
+#: strings.hrc:459
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE"
msgid "Brochure"
msgstr ""
-#: strings.hrc:458
+#: strings.hrc:460
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_SIDES"
msgid "Page sides"
msgstr ""
-#: strings.hrc:459
+#: strings.hrc:461
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE"
msgid "Include"
msgstr ""
-#: strings.hrc:460
+#: strings.hrc:462
msgctxt "STR_IMPRESS_PRINT_UI_PAPER_TRAY"
msgid "~Use only paper tray from printer preferences"
msgstr ""
-#: strings.hrc:461
+#: strings.hrc:463
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE"
msgid "Print range"
msgstr "Çap aralığı"
-#: strings.hrc:463
+#: strings.hrc:465
msgctxt "STR_SAR_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress has searched to the end of the presentation. Do you want to continue at the beginning?"
msgstr ""
-#: strings.hrc:464
+#: strings.hrc:466
msgctxt "STR_SAR_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress has searched to the beginning of the presentation. Do you want to continue at the end?"
msgstr ""
-#: strings.hrc:465
+#: strings.hrc:467
msgctxt "STR_SAR_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the end of the document. Do you want to continue at the beginning?"
msgstr ""
-#: strings.hrc:466
+#: strings.hrc:468
msgctxt "STR_SAR_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the beginning of the document. Do you want to continue at the end?"
msgstr ""
-#: strings.hrc:468
+#: strings.hrc:470
msgctxt "STR_SD_NONE"
msgid "- None -"
msgstr ""
@@ -4472,7 +4482,7 @@ msgstr ""
#: optimpressgeneralpage.ui:622
msgctxt "optimpressgeneralpage|cbCompatibility"
-msgid "Add _spacing between paragraphs and tables (in current document)"
+msgid "Add _spacing between paragraphs and tables"
msgstr ""
#: optimpressgeneralpage.ui:645
@@ -5227,12 +5237,12 @@ msgstr ""
#: sidebarslidebackground.ui:197
msgctxt "sidebarslidebackground|label4"
-msgid "Orientation: "
+msgid "Orientation:"
msgstr ""
#: sidebarslidebackground.ui:212
msgctxt "sidebarslidebackground|masterslidebutton"
-msgid "Master Slide"
+msgid "Master View"
msgstr ""
#: sidebarslidebackground.ui:226
@@ -5278,7 +5288,7 @@ msgstr "Gizlət"
#: sidebarslidebackground.ui:267
msgctxt "sidebarslidebackground|labelmargin"
-msgid "Margin: "
+msgid "Margin:"
msgstr ""
#: sidebarslidebackground.ui:277
diff --git a/source/az/sfx2/messages.po b/source/az/sfx2/messages.po
index d803ab4aa19..686b3d7c9ca 100644
--- a/source/az/sfx2/messages.po
+++ b/source/az/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -793,150 +793,155 @@ msgctxt "RID_SVXSTR_INCORRECT_PASSWORD"
msgid "Incorrect password"
msgstr "Yanlış Şifrә"
-#: strings.hrc:173
+#: strings.hrc:172
+msgctxt "RID_SVXSTR_GPG_ENCRYPT_FAILURE"
+msgid "OpenPGP key not trusted, damaged, or encryption failure. Please try again."
+msgstr ""
+
+#: strings.hrc:174
msgctxt "STR_PASSWD_MIN_LEN"
msgid "(Minimum $(MINLEN) characters)"
msgstr ""
-#: strings.hrc:174
+#: strings.hrc:175
msgctxt "STR_PASSWD_MIN_LEN1"
msgid "(Minimum 1 character)"
msgstr ""
-#: strings.hrc:175
+#: strings.hrc:176
msgctxt "STR_PASSWD_EMPTY"
msgid "(The password can be empty)"
msgstr ""
-#: strings.hrc:176
+#: strings.hrc:177
msgctxt "STR_MODULENOTINSTALLED"
msgid "The action could not be executed. The %PRODUCTNAME program module needed for this action is currently not installed."
msgstr ""
-#: strings.hrc:178
+#: strings.hrc:179
msgctxt "STR_FILTER_NOT_INSTALLED"
msgid ""
"The selected filter $(FILTER) has not been installed.\n"
"Would you like to do this now?"
msgstr ""
-#: strings.hrc:179
+#: strings.hrc:180
msgctxt "STR_FILTER_CONSULT_SERVICE"
msgid ""
"The selected filter $(FILTER) is not included in your edition.\n"
"You can find information about orders on our homepage."
msgstr ""
-#: strings.hrc:181
+#: strings.hrc:182
msgctxt "STR_WELCOME_LINE1"
msgid "Welcome to %PRODUCTNAME."
msgstr ""
-#: strings.hrc:182
+#: strings.hrc:183
msgctxt "STR_WELCOME_LINE2"
msgid "Drop a document here or pick an app from the left side to create one."
msgstr ""
-#: strings.hrc:184
+#: strings.hrc:185
msgctxt "STR_SFX_FILEDLG_ACTUALVERSION"
msgid "Current version"
msgstr ""
-#: strings.hrc:185
+#: strings.hrc:186
msgctxt "STR_SFX_EXPLORERFILE_EXPORT"
msgid "Export"
msgstr ""
-#: strings.hrc:186
+#: strings.hrc:187
#, fuzzy
msgctxt "STR_SFX_EXPLORERFILE_INSERT"
msgid "Insert"
msgstr "Daxil et"
-#: strings.hrc:187
+#: strings.hrc:188
#, fuzzy
msgctxt "STR_SFX_EXPLORERFILE_BUTTONINSERT"
msgid "~Insert"
msgstr "Daxil et"
-#: strings.hrc:188
+#: strings.hrc:189
msgctxt "STR_SFX_IMPORT_ALL"
msgid "<All formats>"
msgstr ""
-#: strings.hrc:189
+#: strings.hrc:190
msgctxt "STR_PB_SAVEACOPY"
msgid "Save a Copy"
msgstr ""
-#: strings.hrc:190
+#: strings.hrc:191
msgctxt "STR_PB_COMPAREDOC"
msgid "Compare to"
msgstr ""
-#: strings.hrc:191
+#: strings.hrc:192
msgctxt "STR_PB_MERGEDOC"
msgid "Merge with"
msgstr ""
-#: strings.hrc:193
+#: strings.hrc:194
msgctxt "STR_SFX_NEWOFFICEDOC"
msgid "%PRODUCTNAME document"
msgstr ""
-#: strings.hrc:194
+#: strings.hrc:195
msgctxt "SFX_ST_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
-#: strings.hrc:195
+#: strings.hrc:196
msgctxt "STR_SFX_REMOVE_PROPERTY"
msgid "Remove Property"
msgstr ""
-#: strings.hrc:196
+#: strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
"The value will be stored as text."
msgstr ""
-#: strings.hrc:198
+#: strings.hrc:199
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr ""
-#: strings.hrc:200
+#: strings.hrc:201
#, fuzzy
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Sıfırla"
-#: strings.hrc:201
+#: strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr ""
-#: strings.hrc:202
+#: strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr ""
-#: strings.hrc:203
+#: strings.hrc:204
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
"because it would result in a recursive reference."
msgstr ""
-#: strings.hrc:204
+#: strings.hrc:205
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
"Please choose another name."
msgstr ""
-#: strings.hrc:205
+#: strings.hrc:206
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -944,116 +949,116 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: strings.hrc:206
+#: strings.hrc:207
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: strings.hrc:207
+#: strings.hrc:208
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr ""
-#: strings.hrc:208
+#: strings.hrc:209
msgctxt "STR_SID_SIDEBAR"
msgid "Sidebar"
msgstr ""
-#: strings.hrc:209
+#: strings.hrc:210
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr ""
-#: strings.hrc:210
+#: strings.hrc:211
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr ""
-#: strings.hrc:211
+#: strings.hrc:212
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr ""
-#: strings.hrc:212
+#: strings.hrc:213
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show Previews"
msgstr ""
-#: strings.hrc:214
+#: strings.hrc:215
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr ""
-#: strings.hrc:215
+#: strings.hrc:216
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: strings.hrc:217
+#: strings.hrc:218
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr ""
-#: strings.hrc:218
+#: strings.hrc:219
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr ""
-#: strings.hrc:219
+#: strings.hrc:220
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr ""
-#: strings.hrc:220
+#: strings.hrc:221
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr ""
-#: strings.hrc:221
+#: strings.hrc:222
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr ""
-#: strings.hrc:223
+#: strings.hrc:224
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr ""
-#: strings.hrc:224
+#: strings.hrc:225
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr ""
-#: strings.hrc:226
+#: strings.hrc:227
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr ""
-#: strings.hrc:228
+#: strings.hrc:229
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
"Please choose a printer and try again."
msgstr ""
-#: strings.hrc:229
+#: strings.hrc:230
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
"Please check your printer configuration."
msgstr ""
-#: strings.hrc:230
+#: strings.hrc:231
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr ""
-#: strings.hrc:231
+#: strings.hrc:232
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr ""
-#: strings.hrc:232
+#: strings.hrc:233
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1061,7 +1066,7 @@ msgid ""
"active document?"
msgstr ""
-#: strings.hrc:233
+#: strings.hrc:234
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1069,7 +1074,7 @@ msgid ""
"in the active document?"
msgstr ""
-#: strings.hrc:234
+#: strings.hrc:235
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1077,222 +1082,324 @@ msgid ""
"active document?"
msgstr ""
-#: strings.hrc:235
+#: strings.hrc:236
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
" print job is being carried out."
msgstr ""
-#: strings.hrc:236
+#: strings.hrc:237
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
"Please check the %PRODUCTNAME settings or your e-mail program settings."
msgstr ""
-#: strings.hrc:237
+#: strings.hrc:238
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr ""
-#: strings.hrc:238
+#: strings.hrc:239
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr ""
-#: strings.hrc:239
+#: strings.hrc:240
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: strings.hrc:240
+#: strings.hrc:241
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: strings.hrc:241
+#: strings.hrc:242
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: strings.hrc:242
+#: strings.hrc:243
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: strings.hrc:243
+#: strings.hrc:244
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: strings.hrc:244
+#: strings.hrc:245
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: strings.hrc:245
+#: strings.hrc:246
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Intellectual Property:"
msgstr ""
-#: strings.hrc:246
+#: strings.hrc:247
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: strings.hrc:247
+#: strings.hrc:248
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: strings.hrc:248
+#: strings.hrc:249
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: strings.hrc:249
+#: strings.hrc:250
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr ""
-#: strings.hrc:250
+#: strings.hrc:251
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr ""
-#: strings.hrc:251
+#: strings.hrc:252
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: strings.hrc:252
+#: strings.hrc:253
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: strings.hrc:253
+#: strings.hrc:254
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: strings.hrc:254
+#: strings.hrc:255
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: strings.hrc:255
+#: strings.hrc:256
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: strings.hrc:256
+#: strings.hrc:257
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: strings.hrc:258
+#: strings.hrc:259
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: strings.hrc:259
+#: strings.hrc:260
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr ""
-#: strings.hrc:260
+#: strings.hrc:261
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr ""
-#: strings.hrc:262
+#: strings.hrc:263
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr ""
-#: strings.hrc:263
+#: strings.hrc:264
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: strings.hrc:264
+#: strings.hrc:265
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: strings.hrc:265
+#: strings.hrc:266
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr ""
-#: strings.hrc:266
+#: strings.hrc:267
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: strings.hrc:267
+#: strings.hrc:268
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
-#: strings.hrc:269
+#. Translators: default Impress template names
+#: strings.hrc:271
msgctxt "STR_TEMPLATE_NAME1"
-msgid "Abstract Green"
+msgid "Alizarin"
msgstr ""
-#: strings.hrc:270
+#: strings.hrc:272
msgctxt "STR_TEMPLATE_NAME2"
-msgid "Abstract Red"
+msgid "Beehive"
msgstr ""
-#: strings.hrc:271
+#: strings.hrc:273
msgctxt "STR_TEMPLATE_NAME3"
-msgid "Abstract Yellow"
+msgid "Blue Curve"
msgstr ""
-#: strings.hrc:272
+#: strings.hrc:274
msgctxt "STR_TEMPLATE_NAME4"
-msgid "Bright Blue"
+msgid "Blueprint Plans"
msgstr ""
-#: strings.hrc:273
+#: strings.hrc:275
msgctxt "STR_TEMPLATE_NAME5"
-msgid "DNA"
+msgid "Bright Blue"
msgstr ""
-#: strings.hrc:274
+#: strings.hrc:276
msgctxt "STR_TEMPLATE_NAME6"
-msgid "Inspiration"
+msgid "Classy Red"
msgstr ""
-#: strings.hrc:275
+#: strings.hrc:277
msgctxt "STR_TEMPLATE_NAME7"
-msgid "Lush Green"
+msgid "DNA"
msgstr ""
-#: strings.hrc:276
+#: strings.hrc:278
msgctxt "STR_TEMPLATE_NAME8"
-msgid "Metropolis"
+msgid "Focus"
msgstr ""
-#: strings.hrc:277
+#: strings.hrc:279
msgctxt "STR_TEMPLATE_NAME9"
-msgid "Sunset"
+msgid "Forestbird"
msgstr ""
-#: strings.hrc:278
+#: strings.hrc:280
msgctxt "STR_TEMPLATE_NAME10"
+msgid "Impress"
+msgstr ""
+
+#: strings.hrc:281
+msgctxt "STR_TEMPLATE_NAME11"
+msgid "Inspiration"
+msgstr ""
+
+#: strings.hrc:282
+msgctxt "STR_TEMPLATE_NAME12"
+msgid "Lights"
+msgstr ""
+
+#: strings.hrc:283
+msgctxt "STR_TEMPLATE_NAME13"
+msgid "Lush Green"
+msgstr ""
+
+#: strings.hrc:284
+msgctxt "STR_TEMPLATE_NAME14"
+msgid "Metropolis"
+msgstr ""
+
+#: strings.hrc:285
+msgctxt "STR_TEMPLATE_NAME15"
+msgid "Midnightblue"
+msgstr ""
+
+#: strings.hrc:286
+msgctxt "STR_TEMPLATE_NAME16"
+msgid "Nature Illustration"
+msgstr ""
+
+#: strings.hrc:287
+msgctxt "STR_TEMPLATE_NAME17"
+msgid "Pencil"
+msgstr ""
+
+#: strings.hrc:288
+msgctxt "STR_TEMPLATE_NAME18"
+msgid "Piano"
+msgstr ""
+
+#: strings.hrc:289
+msgctxt "STR_TEMPLATE_NAME19"
+msgid "Portfolio"
+msgstr ""
+
+#: strings.hrc:290
+msgctxt "STR_TEMPLATE_NAME20"
+msgid "Progress"
+msgstr ""
+
+#: strings.hrc:291
+msgctxt "STR_TEMPLATE_NAME21"
+msgid "Sunset"
+msgstr ""
+
+#: strings.hrc:292
+msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: strings.hrc:280
+#: strings.hrc:293
+msgctxt "STR_TEMPLATE_NAME23"
+msgid "Vivid"
+msgstr ""
+
+#. Translators: default Writer template names
+#: strings.hrc:295
+msgctxt "STR_TEMPLATE_NAME24"
+msgid "CV"
+msgstr ""
+
+#: strings.hrc:296
+msgctxt "STR_TEMPLATE_NAME25"
+msgid "Resume"
+msgstr ""
+
+#: strings.hrc:297
+msgctxt "STR_TEMPLATE_NAME26"
+msgid "Default"
+msgstr ""
+
+#: strings.hrc:298
+msgctxt "STR_TEMPLATE_NAME27"
+msgid "Modern"
+msgstr ""
+
+#: strings.hrc:299
+msgctxt "STR_TEMPLATE_NAME28"
+msgid "Modern business letter sans-serif"
+msgstr ""
+
+#: strings.hrc:300
+msgctxt "STR_TEMPLATE_NAME29"
+msgid "Modern business letter serif"
+msgstr ""
+
+#: strings.hrc:301
+msgctxt "STR_TEMPLATE_NAME30"
+msgid "Businesscard with logo"
+msgstr ""
+
+#: strings.hrc:303
#, fuzzy
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "~Sil"
-#: strings.hrc:281
+#: strings.hrc:304
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
diff --git a/source/az/sw/messages.po b/source/az/sw/messages.po
index 505b6d4e6bf..51d9409065e 100644
--- a/source/az/sw/messages.po
+++ b/source/az/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-20 08:17+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -74,10 +74,9 @@ msgid "Conditional Styles"
msgstr ""
#: app.hrc:47
-#, fuzzy
msgctxt "RID_CHARACTERSTYLEFAMILY"
-msgid "All"
-msgstr "Hamısı"
+msgid "All Styles"
+msgstr ""
#: app.hrc:48
msgctxt "RID_CHARACTERSTYLEFAMILY"
@@ -95,10 +94,9 @@ msgid "Custom Styles"
msgstr ""
#: app.hrc:56
-#, fuzzy
msgctxt "RID_FRAMESTYLEFAMILY"
-msgid "All"
-msgstr "Hamısı"
+msgid "All Styles"
+msgstr ""
#: app.hrc:57
msgctxt "RID_FRAMESTYLEFAMILY"
@@ -116,10 +114,9 @@ msgid "Custom Styles"
msgstr ""
#: app.hrc:65
-#, fuzzy
msgctxt "RID_PAGESTYLEFAMILY"
-msgid "All"
-msgstr "Hamısı"
+msgid "All Styles"
+msgstr ""
#: app.hrc:66
msgctxt "RID_PAGESTYLEFAMILY"
@@ -137,10 +134,9 @@ msgid "Custom Styles"
msgstr ""
#: app.hrc:74
-#, fuzzy
msgctxt "RID_LISTSTYLEFAMILY"
-msgid "All"
-msgstr "Hamısı"
+msgid "All Styles"
+msgstr ""
#: app.hrc:75
msgctxt "RID_LISTSTYLEFAMILY"
@@ -158,10 +154,9 @@ msgid "Custom Styles"
msgstr ""
#: app.hrc:83
-#, fuzzy
msgctxt "RID_TABLESTYLEFAMILY"
-msgid "All"
-msgstr "Hamısı"
+msgid "All Styles"
+msgstr ""
#: app.hrc:84
msgctxt "RID_TABLESTYLEFAMILY"
@@ -1311,27 +1306,27 @@ msgstr ""
#. Numbering rules
#: strings.hrc:199
msgctxt "STR_POOLNUMRULE_NUM1"
-msgid "Numbering 1"
+msgid "Numbering 123"
msgstr ""
#: strings.hrc:200
msgctxt "STR_POOLNUMRULE_NUM2"
-msgid "Numbering 2"
+msgid "Numbering ABC"
msgstr ""
#: strings.hrc:201
msgctxt "STR_POOLNUMRULE_NUM3"
-msgid "Numbering 3"
+msgid "Numbering abc"
msgstr ""
#: strings.hrc:202
msgctxt "STR_POOLNUMRULE_NUM4"
-msgid "Numbering 4"
+msgid "Numbering IVX"
msgstr ""
#: strings.hrc:203
msgctxt "STR_POOLNUMRULE_NUM5"
-msgid "Numbering 5"
+msgid "Numbering ivx"
msgstr ""
#: strings.hrc:204
@@ -13793,12 +13788,12 @@ msgstr ""
#: optcompatpage.ui:57
msgctxt "optcompatpage|format"
-msgid "Add spacing between paragraphs and tables (in current document)"
+msgid "Add spacing between paragraphs and tables"
msgstr ""
#: optcompatpage.ui:58
msgctxt "optcompatpage|format"
-msgid "Add paragraph and table spacing at tops of pages (in current document)"
+msgid "Add paragraph and table spacing at tops of pages"
msgstr ""
#: optcompatpage.ui:59
@@ -13853,7 +13848,7 @@ msgstr ""
#: optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Tolerate white lines of PDF page backgrounds for compatibility with old documents (in current document)"
+msgid "Tolerate white lines of PDF page backgrounds for compatibility with old documents"
msgstr ""
#: optcompatpage.ui:70
@@ -13868,7 +13863,7 @@ msgstr ""
#: optcompatpage.ui:104
msgctxt "optcompatpage|label11"
-msgid "Compatibility options for %DOCNAME"
+msgid "Compatibility options for '%DOCNAME'"
msgstr ""
#: optfonttabpage.ui:103
@@ -17072,21 +17067,11 @@ msgctxt "textgridpage|labelFT_CHARSPERLINE"
msgid "Characters per line:"
msgstr ""
-#: textgridpage.ui:223
-msgctxt "textgridpage|labelFT_CHARRANGE"
-msgid "(1-45)"
-msgstr ""
-
#: textgridpage.ui:236
msgctxt "textgridpage|labelFT_LINESPERPAGE"
msgid "Lines per page:"
msgstr ""
-#: textgridpage.ui:265
-msgctxt "textgridpage|labelFT_LINERANGE"
-msgid "(1-48)"
-msgstr ""
-
#: textgridpage.ui:303
msgctxt "textgridpage|labelFT_CHARWIDTH"
msgid "Character _width:"
diff --git a/source/be/cui/messages.po b/source/be/cui/messages.po
index 02e20611881..3a65b75c90c 100644
--- a/source/be/cui/messages.po
+++ b/source/be/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: 2017-12-06 15:59+0100\n"
-"PO-Revision-Date: 2017-12-10 14:13+0000\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
+"PO-Revision-Date: 2017-12-17 12:34+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1512915225.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1513514073.000000\n"
#: personalization.hrc:31
msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
@@ -1423,8 +1423,8 @@ msgid ""
"The line style was modified without saving. \n"
"Modify the selected line style or add a new line style."
msgstr ""
-"The line style was modified without saving. \n"
-"Modify the selected line style or add a new line style."
+"Стыль лініі быў зменены без запісвання. \n"
+"Праўце вылучаны стыль лініі або дадайце новы стыль."
#: strings.hrc:333
msgctxt "RID_SVXSTR_DESC_HATCH"
@@ -7720,72 +7720,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Даведка"
-#: optgeneralpage.ui:77
+#: optgeneralpage.ui:76
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Ужываць дыялогі %PRODUCTNAME"
-#: optgeneralpage.ui:111
+#: optgeneralpage.ui:110
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Дыялогі Адкрыцця і Запісу"
-#: optgeneralpage.ui:137
+#: optgeneralpage.ui:136
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Ужываць дыялогі %PRODUCTNAME"
-#: optgeneralpage.ui:152
+#: optgeneralpage.ui:151
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Дыялогі друкавання"
-#: optgeneralpage.ui:178
+#: optgeneralpage.ui:177
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Друкаванне азначае \"дакумент зменены\""
-#: optgeneralpage.ui:193
+#: optgeneralpage.ui:192
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Стан дакумента"
-#: optgeneralpage.ui:226
+#: optgeneralpage.ui:225
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Інтэрпрэтаваць як гады паміж "
-#: optgeneralpage.ui:252
+#: optgeneralpage.ui:251
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "і "
-#: optgeneralpage.ui:267
+#: optgeneralpage.ui:266
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Год (дзве лічбы)"
-#: optgeneralpage.ui:293
+#: optgeneralpage.ui:292
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Збіраць звесткі пра выкарыстанне і адпраўляць у The Document Foundation"
-#: optgeneralpage.ui:308
+#: optgeneralpage.ui:307
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Дапамажыце палепшыць %PRODUCTNAME"
-#: optgeneralpage.ui:339
+#: optgeneralpage.ui:338
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Пуск %PRODUCTNAME пры пуску сістэмы"
-#: optgeneralpage.ui:353
+#: optgeneralpage.ui:352
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Значок Хуткапуску ў сістэмным трэі"
-#: optgeneralpage.ui:373
+#: optgeneralpage.ui:372
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Хуткі Пускальнік %PRODUCTNAME"
@@ -8587,215 +8587,220 @@ msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr "Настаўленні бяспекі і папярэджанні"
-#: optuserpage.ui:34
+#: optuserpage.ui:12
+msgctxt "optuserpage|liststore1"
+msgid "No key"
+msgstr ""
+
+#: optuserpage.ui:45
msgctxt "optuserpage|companyft"
msgid "_Company:"
msgstr "Кампанія:"
-#: optuserpage.ui:48
+#: optuserpage.ui:59
msgctxt "optuserpage|nameft"
msgid "First/last _name/initials:"
msgstr "Імя/Прозвішча/Ініцыялы:"
-#: optuserpage.ui:62
+#: optuserpage.ui:73
msgctxt "optuserpage|streetft"
msgid "_Street:"
msgstr "Вуліца:"
-#: optuserpage.ui:76
+#: optuserpage.ui:87
msgctxt "optuserpage|cityft"
msgid "City/state/_zip:"
msgstr "Горад/Адм.адзінка/Індэкс:"
-#: optuserpage.ui:90
+#: optuserpage.ui:101
msgctxt "optuserpage|countryft"
msgid "Country/re_gion:"
msgstr "Краіна/рэгіён:"
-#: optuserpage.ui:104
+#: optuserpage.ui:115
msgctxt "optuserpage|titleft"
msgid "_Title/position:"
msgstr "Зварот/Пасада:"
-#: optuserpage.ui:118
+#: optuserpage.ui:129
msgctxt "optuserpage|phoneft"
msgid "Telephone (home/_work):"
msgstr "Тэлефон (хатні/працоўны):"
-#: optuserpage.ui:123
+#: optuserpage.ui:134
msgctxt "phoneft-atkobject"
msgid "Home telephone number"
msgstr "Тэлефон хатні"
-#: optuserpage.ui:137
+#: optuserpage.ui:148
msgctxt "optuserpage|faxft"
msgid "Fa_x/e-mail:"
msgstr "Факс/эл.пошта:"
-#: optuserpage.ui:160
+#: optuserpage.ui:171
msgctxt "optuserpage|firstname-atkobject"
msgid "First name"
msgstr "Імя"
-#: optuserpage.ui:178
+#: optuserpage.ui:189
msgctxt "lastname-atkobject"
msgid "Last name"
msgstr "Прозвішча"
-#: optuserpage.ui:196
+#: optuserpage.ui:207
msgctxt "shortname-atkobject"
msgid "Initials"
msgstr "Ініцыялы"
-#: optuserpage.ui:225
+#: optuserpage.ui:236
msgctxt "city-atkobject"
msgid "City"
msgstr "Горад"
-#: optuserpage.ui:243
+#: optuserpage.ui:254
msgctxt "state-atkobject"
msgid "State"
msgstr "Вобласць"
-#: optuserpage.ui:261
+#: optuserpage.ui:272
msgctxt "zip-atkobject"
msgid "Zip code"
msgstr "Паштовы індэкс"
-#: optuserpage.ui:291
+#: optuserpage.ui:302
msgctxt "title-atkobject"
msgid "Title"
msgstr "Званне"
-#: optuserpage.ui:309
+#: optuserpage.ui:320
msgctxt "position-atkobject"
msgid "Position"
msgstr "Пасада"
-#: optuserpage.ui:338
+#: optuserpage.ui:349
msgctxt "home-atkobject"
msgid "Home telephone number"
msgstr "Тэлефон хатні"
-#: optuserpage.ui:356
+#: optuserpage.ui:367
msgctxt "work-atkobject"
msgid "Work telephone number"
msgstr "Тэлефон на працы"
-#: optuserpage.ui:386
+#: optuserpage.ui:397
msgctxt "fax-atkobject"
msgid "FAX number"
msgstr "Нумар факса"
-#: optuserpage.ui:404
+#: optuserpage.ui:415
msgctxt "email-atkobject"
msgid "email address"
msgstr "адрас эл.пошты"
-#: optuserpage.ui:421
+#: optuserpage.ui:432
msgctxt "optuserpage|usefordocprop"
msgid "Use data for document properties"
msgstr "Ужываць звесткі ва ўласцівасцях дакументаў"
-#: optuserpage.ui:438
+#: optuserpage.ui:449
msgctxt "optuserpage|rusnameft"
msgid "Last name/first _name/father’s name/initials:"
msgstr "Прозвішча/Імя/Імя па бацьку/Ініцыялы:"
-#: optuserpage.ui:461
+#: optuserpage.ui:472
msgctxt "ruslastname-atkobject"
msgid "Last name"
msgstr "Прозвішча"
-#: optuserpage.ui:479
+#: optuserpage.ui:490
msgctxt "rusfathersname-atkobject"
msgid "Father's name"
msgstr "Імя па бацьку"
-#: optuserpage.ui:497
+#: optuserpage.ui:508
msgctxt "russhortname-atkobject"
msgid "Initials"
msgstr "Ініцыялы"
-#: optuserpage.ui:515
+#: optuserpage.ui:526
msgctxt "rusfirstname-atkobject"
msgid "First name"
msgstr "Імя"
-#: optuserpage.ui:535
+#: optuserpage.ui:546
msgctxt "optuserpage|eastnameft"
msgid "Last/first _name/initials:"
msgstr "Прозвішча/Імя/Ініцыялы:"
-#: optuserpage.ui:558
+#: optuserpage.ui:569
msgctxt "eastlastname-atkobject"
msgid "Last name"
msgstr "Прозвішча"
-#: optuserpage.ui:576
+#: optuserpage.ui:587
msgctxt "eastfirstname-atkobject"
msgid "First name"
msgstr "Імя"
-#: optuserpage.ui:594
+#: optuserpage.ui:605
msgctxt "eastshortname-atkobject"
msgid "Initials"
msgstr "Ініцыялы"
-#: optuserpage.ui:614
+#: optuserpage.ui:625
msgctxt "optuserpage|russtreetft"
msgid "_Street/apartment number:"
msgstr "Вуліца/кватэра:"
-#: optuserpage.ui:637
+#: optuserpage.ui:648
msgctxt "russtreet-atkobject"
msgid "Street"
msgstr "Вуліца"
-#: optuserpage.ui:655
+#: optuserpage.ui:666
msgctxt "ruslastname-atkobject"
msgid "Apartment number"
msgstr "Будынак"
-#: optuserpage.ui:675
+#: optuserpage.ui:686
msgctxt "optuserpage|icityft"
msgid "_Zip/city:"
msgstr "Індэкс/горад:"
-#: optuserpage.ui:698
+#: optuserpage.ui:709
msgctxt "icity-atkobject"
msgid "City"
msgstr "Горад"
-#: optuserpage.ui:716
+#: optuserpage.ui:727
msgctxt "izip-atkobject"
msgid "Zip code"
msgstr "Паштовы індэкс"
-#: optuserpage.ui:814
+#: optuserpage.ui:825
msgctxt "optuserpage|label1"
msgid "Address"
msgstr "Адрас"
-#: optuserpage.ui:847
+#: optuserpage.ui:861
msgctxt "optuserpage|signingkeylabel"
msgid "OpenPGP signing key:"
msgstr "Ключ OpenPGP для подпісу:"
-#: optuserpage.ui:860
+#: optuserpage.ui:875
msgctxt "optuserpage|encryptionkeylabel"
msgid "OpenPGP encryption key:"
msgstr "Ключ OpenPGP для шыфравання:"
-#: optuserpage.ui:889
+#: optuserpage.ui:908
msgctxt "optuserpage|encrypttoself"
msgid "When encrypting documents, always encrypt to self"
msgstr "Заўсёды дадаваць сябе пры шыфраванні дакументаў"
-#: optuserpage.ui:909
-msgctxt "optuserpage|label2"
+#: optuserpage.ui:930
+msgctxt "optuserpage|cryptographylabel"
msgid "Cryptography"
-msgstr "Крыптаграфія"
+msgstr ""
#: optviewpage.ui:47
msgctxt "optviewpage|grid3|tooltip_text"
diff --git a/source/be/dictionaries/cs_CZ.po b/source/be/dictionaries/cs_CZ.po
index 3d86078aa29..9d2f723f12c 100644
--- a/source/be/dictionaries/cs_CZ.po
+++ b/source/be/dictionaries/cs_CZ.po
@@ -4,20 +4,22 @@ 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: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2017-12-17 11:03+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: be\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%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1513508604.000000\n"
#: description.xml
-#, fuzzy
msgctxt ""
"description.xml\n"
"dispname\n"
"description.text"
msgid "Czech spell check dictionary, hyphenation rules and thesaurus"
-msgstr "Чэшскі правапісны слоўнік, правілы пераносаў і тэзаўрус"
+msgstr "Чэшскі правапісны слоўнік, правілы пераносу і тэзаўрус"
diff --git a/source/be/dictionaries/gd_GB.po b/source/be/dictionaries/gd_GB.po
index e261364b27d..ccb1cc00f70 100644
--- a/source/be/dictionaries/gd_GB.po
+++ b/source/be/dictionaries/gd_GB.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: 2017-10-04 11:48+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2017-12-17 11:04+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: be\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%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1513508648.000000\n"
#: description.xml
msgctxt ""
@@ -19,4 +22,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Scottish Gaelic spell checker"
-msgstr ""
+msgstr "Гэльскі (Шатландыя) правапісны слоўнік"
diff --git a/source/be/dictionaries/gug.po b/source/be/dictionaries/gug.po
index 430332f3a03..c53ff36ec36 100644
--- a/source/be/dictionaries/gug.po
+++ b/source/be/dictionaries/gug.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: 2017-10-04 11:48+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2017-12-17 11:05+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: be\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%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1513508706.000000\n"
#: description.xml
msgctxt ""
@@ -19,4 +22,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Guarani thesaurus and spell checker"
-msgstr ""
+msgstr "Гуарані правапісны слоўнік і тэзаўрус"
diff --git a/source/be/extensions/messages.po b/source/be/extensions/messages.po
index 18cb8bbf587..ace1c28b6fb 100644
--- a/source/be/extensions/messages.po
+++ b/source/be/extensions/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-12-10 14:19+0000\n"
+"PO-Revision-Date: 2017-12-17 11:37+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1512915562.000000\n"
+"X-POOTLE-MTIME: 1513510675.000000\n"
#: command.hrc:29
msgctxt "RID_RSC_ENUM_COMMAND_TYPE"
@@ -459,7 +459,7 @@ msgstr "Гарызантальна"
#: stringarrays.hrc:190
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Vertical"
-msgstr "Вэртыкальна"
+msgstr "Вертыкальна"
#: stringarrays.hrc:191
msgctxt "RID_RSC_ENUM_SCROLLBARS"
@@ -764,7 +764,7 @@ msgstr "Поле меткі"
#: strings.hrc:50
msgctxt "RID_STR_LABEL"
msgid "Label"
-msgstr "Label"
+msgstr "Метка"
#: strings.hrc:51
msgctxt "RID_STR_ALIGN"
@@ -854,7 +854,7 @@ msgstr "Назва"
#: strings.hrc:68
msgctxt "RID_STR_GROUP_NAME"
msgid "Group name"
-msgstr "Group name"
+msgstr "Назва групы"
#: strings.hrc:69
msgctxt "RID_STR_TABINDEX"
@@ -864,7 +864,7 @@ msgstr "Парадак табуляцый"
#: strings.hrc:70
msgctxt "RID_STR_WHEEL_BEHAVIOR"
msgid "Mouse wheel scroll"
-msgstr "Mouse wheel scroll"
+msgstr "Пракрутка колцам мышы"
#: strings.hrc:71
msgctxt "RID_STR_FILTER"
@@ -924,7 +924,7 @@ msgstr "Змесціва спісу"
#: strings.hrc:82
msgctxt "RID_STR_LISTSOURCETYPE"
msgid "Type of list contents"
-msgstr "Тып змесціва спісу "
+msgstr "Тып змесціва спісу"
#: strings.hrc:83
msgctxt "RID_STR_CURSORSOURCE"
@@ -1094,7 +1094,7 @@ msgstr "Складнікі спісу"
#: strings.hrc:116
msgctxt "RID_STR_BUTTONTYPE"
msgid "Action"
-msgstr "Action"
+msgstr "Дзеянне"
#: strings.hrc:117
msgctxt "RID_STR_SUBMIT_ACTION"
@@ -1194,7 +1194,7 @@ msgstr "Пры страчванні фокусу"
#: strings.hrc:136
msgctxt "RID_STR_EVT_ITEMSTATECHANGED"
msgid "Item status changed"
-msgstr "Статус элементу зменены"
+msgstr "Стан элемента зменены"
#: strings.hrc:137
msgctxt "RID_STR_EVT_KEYTYPED"
@@ -1314,12 +1314,12 @@ msgstr "Аналізаваць каманду SQL"
#: strings.hrc:160
msgctxt "RID_STR_POSITIONX"
msgid "PositionX"
-msgstr "PositionX"
+msgstr "ПазіцыяX"
#: strings.hrc:161
msgctxt "RID_STR_POSITIONY"
msgid "PositionY"
-msgstr "PositionY"
+msgstr "ПазіцыяY"
#: strings.hrc:162
msgctxt "RID_STR_TITLE"
@@ -1634,7 +1634,7 @@ msgstr "Тып азначанага"
#: strings.hrc:224
msgctxt "RID_STR_ROOT_DISPLAYED"
msgid "Root displayed"
-msgstr "Root displayed"
+msgstr "Паказваць корань"
#: strings.hrc:225
msgctxt "RID_STR_SHOWS_HANDLES"
@@ -1644,7 +1644,7 @@ msgstr "Паказваць дзяржанні"
#: strings.hrc:226
msgctxt "RID_STR_SHOWS_ROOT_HANDLES"
msgid "Show root handles"
-msgstr "Show root handles"
+msgstr "Паказваць каранёвыя дзяржанні"
#: strings.hrc:227
msgctxt "RID_STR_EDITABLE"
@@ -1654,7 +1654,7 @@ msgstr "Рэдагавальны"
#: strings.hrc:228
msgctxt "RID_STR_INVOKES_STOP_NOT_EDITING"
msgid "Invokes stop node editing"
-msgstr "Invokes stop node editing"
+msgstr "Выклікае рэдагаванне канцавых вузлоў"
#: strings.hrc:229
msgctxt "RID_STR_DECORATION"
@@ -1757,17 +1757,17 @@ msgstr ""
#: strings.hrc:254
msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
msgid "Button"
-msgstr "Button"
+msgstr "Кнопка"
#: strings.hrc:255
msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
msgid "Option Button"
-msgstr "Option Button"
+msgstr "Пераключальнік"
#: strings.hrc:256
msgctxt "RID_STR_PROPTITLE_CHECKBOX"
msgid "Check Box"
-msgstr "Check Box"
+msgstr "Так-бокс"
#: strings.hrc:257
msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
@@ -1777,7 +1777,7 @@ msgstr "Поле меткі"
#: strings.hrc:258
msgctxt "RID_STR_PROPTITLE_GROUPBOX"
msgid "Group Box"
-msgstr "Group Box"
+msgstr "Група"
#: strings.hrc:259
msgctxt "RID_STR_PROPTITLE_EDIT"
@@ -1792,7 +1792,7 @@ msgstr "Фарматаванае поле"
#: strings.hrc:261
msgctxt "RID_STR_PROPTITLE_LISTBOX"
msgid "List Box"
-msgstr "List Box"
+msgstr "Спісавы бокс"
#: strings.hrc:262
msgctxt "RID_STR_PROPTITLE_COMBOBOX"
@@ -2017,7 +2017,7 @@ msgstr "%PERCENT%"
#: strings.hrc:305
msgctxt "RID_UPDATE_FT_STATUS"
msgid "Status"
-msgstr "Status"
+msgstr "Стан"
#: strings.hrc:306
msgctxt "RID_UPDATE_FT_DESCRIPTION"
@@ -2092,7 +2092,7 @@ msgstr "Адбываецца атрыманне абнаўлення"
#: strings.hrc:320
msgctxt "RID_UPDATE_BUBBLE_DOWNLOADING"
msgid ""
-msgstr ""
+msgstr " "
#: strings.hrc:321
msgctxt "RID_UPDATE_BUBBLE_T_DOWNLOAD_PAUSED"
@@ -3431,7 +3431,7 @@ msgstr "Аб прыстасаванні"
#: sanedialog.ui:644
msgctxt "sanedialog|previewButton"
msgid "Create Previe_w"
-msgstr "Стварыць перадпрагляд"
+msgstr "Стварыць перадпаказ"
#: sanedialog.ui:659
msgctxt "sanedialog|scanButton"
diff --git a/source/be/extras/source/autocorr/emoji.po b/source/be/extras/source/autocorr/emoji.po
index a347ff8d20d..7aaf4a4ca07 100644
--- a/source/be/extras/source/autocorr/emoji.po
+++ b/source/be/extras/source/autocorr/emoji.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: 2016-10-18 13:02+0200\n"
-"PO-Revision-Date: 2017-12-10 17:05+0000\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
+"PO-Revision-Date: 2017-12-17 12:16+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1512925537.000000\n"
+"X-POOTLE-MTIME: 1513512973.000000\n"
#. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1705,8 +1705,8 @@ msgctxt ""
"emoji.ulf\n"
"LIGHTNING\n"
"LngText.text"
-msgid "lighting"
-msgstr "маланка"
+msgid "lightning3"
+msgstr ""
#. ☈ (U+02608), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1714,8 +1714,8 @@ msgctxt ""
"emoji.ulf\n"
"THUNDERSTORM\n"
"LngText.text"
-msgid "storm"
-msgstr "шторм"
+msgid "storm2"
+msgstr ""
#. ☉ (U+02609), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2056,8 +2056,8 @@ msgctxt ""
"emoji.ulf\n"
"MERCURY\n"
"LngText.text"
-msgid "Mercury"
-msgstr "Меркурый"
+msgid "mercury"
+msgstr ""
#. ♀ (U+02640), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2074,8 +2074,8 @@ msgctxt ""
"emoji.ulf\n"
"EARTH\n"
"LngText.text"
-msgid "Earth"
-msgstr "Зямля"
+msgid "earth"
+msgstr ""
#. ♂ (U+02642), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2092,8 +2092,8 @@ msgctxt ""
"emoji.ulf\n"
"JUPITER\n"
"LngText.text"
-msgid "Jupiter"
-msgstr "Юпітэр"
+msgid "jupiter"
+msgstr ""
#. ♄ (U+02644), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2101,8 +2101,8 @@ msgctxt ""
"emoji.ulf\n"
"SATURN\n"
"LngText.text"
-msgid "Saturn"
-msgstr "Сатурн"
+msgid "saturn"
+msgstr ""
#. ♅ (U+02645), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2110,8 +2110,8 @@ msgctxt ""
"emoji.ulf\n"
"URANUS\n"
"LngText.text"
-msgid "Uranus"
-msgstr "Уран"
+msgid "uranus"
+msgstr ""
#. ♆ (U+02646), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2119,8 +2119,8 @@ msgctxt ""
"emoji.ulf\n"
"NEPTUNE\n"
"LngText.text"
-msgid "Neptune"
-msgstr "Нэптун"
+msgid "neptune"
+msgstr ""
#. ♇ (U+02647), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2128,8 +2128,8 @@ msgctxt ""
"emoji.ulf\n"
"PLUTO\n"
"LngText.text"
-msgid "Pluto"
-msgstr "Плутон"
+msgid "pluto"
+msgstr ""
#. ♈ (U+02648), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2137,8 +2137,8 @@ msgctxt ""
"emoji.ulf\n"
"ARIES\n"
"LngText.text"
-msgid "Aries"
-msgstr "Авен"
+msgid "aries"
+msgstr ""
#. ♉ (U+02649), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2146,8 +2146,8 @@ msgctxt ""
"emoji.ulf\n"
"TAURUS\n"
"LngText.text"
-msgid "Taurus"
-msgstr "Цялец"
+msgid "taurus"
+msgstr ""
#. ♊ (U+0264A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2155,8 +2155,8 @@ msgctxt ""
"emoji.ulf\n"
"GEMINI\n"
"LngText.text"
-msgid "Gemini"
-msgstr "Блізняты"
+msgid "gemini"
+msgstr ""
#. ♋ (U+0264B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2164,8 +2164,8 @@ msgctxt ""
"emoji.ulf\n"
"CANCER\n"
"LngText.text"
-msgid "Cancer"
-msgstr "Рак"
+msgid "cancer"
+msgstr ""
#. ♌ (U+0264C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2173,8 +2173,8 @@ msgctxt ""
"emoji.ulf\n"
"LEO\n"
"LngText.text"
-msgid "Leo"
-msgstr "Леў"
+msgid "leo"
+msgstr ""
#. ♍ (U+0264D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2182,8 +2182,8 @@ msgctxt ""
"emoji.ulf\n"
"VIRGO\n"
"LngText.text"
-msgid "Virgo"
-msgstr "Дзева"
+msgid "virgo"
+msgstr ""
#. ♎ (U+0264E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2191,8 +2191,8 @@ msgctxt ""
"emoji.ulf\n"
"LIBRA\n"
"LngText.text"
-msgid "Libra"
-msgstr "Шалі"
+msgid "libra"
+msgstr ""
#. ♏ (U+0264F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2200,8 +2200,8 @@ msgctxt ""
"emoji.ulf\n"
"SCORPIUS\n"
"LngText.text"
-msgid "Scorpius"
-msgstr "Скарпіён"
+msgid "scorpius"
+msgstr ""
#. ♐ (U+02650), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2209,8 +2209,8 @@ msgctxt ""
"emoji.ulf\n"
"SAGITTARIUS\n"
"LngText.text"
-msgid "Sagittarius"
-msgstr "Стралец"
+msgid "sagittarius"
+msgstr ""
#. ♑ (U+02651), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2218,8 +2218,8 @@ msgctxt ""
"emoji.ulf\n"
"CAPRICORN\n"
"LngText.text"
-msgid "Capricorn"
-msgstr "Казярог"
+msgid "capricorn"
+msgstr ""
#. ♒ (U+02652), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2227,8 +2227,8 @@ msgctxt ""
"emoji.ulf\n"
"AQUARIUS\n"
"LngText.text"
-msgid "Aquarius"
-msgstr "Вадалей"
+msgid "aquarius"
+msgstr ""
#. ♓ (U+02653), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2236,8 +2236,8 @@ msgctxt ""
"emoji.ulf\n"
"PISCES\n"
"LngText.text"
-msgid "Pisces"
-msgstr "Рыбы"
+msgid "pisces"
+msgstr ""
#. ♔ (U+02654), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2596,8 +2596,8 @@ msgctxt ""
"emoji.ulf\n"
"WHITE_FLAG\n"
"LngText.text"
-msgid "flag"
-msgstr "сцяг"
+msgid "flag4"
+msgstr ""
#. ⚑ (U+02691), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2605,8 +2605,8 @@ msgctxt ""
"emoji.ulf\n"
"BLACK_FLAG\n"
"LngText.text"
-msgid "flag2"
-msgstr "сцяг2"
+msgid "flag3"
+msgstr ""
#. ⚒ (U+02692), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2911,8 +2911,8 @@ msgctxt ""
"emoji.ulf\n"
"BLACK_CROSS_ON_SHIELD\n"
"LngText.text"
-msgid "shield"
-msgstr "шчыт"
+msgid "shield2"
+msgstr ""
#. ⛪ (U+026EA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2956,8 +2956,8 @@ msgctxt ""
"emoji.ulf\n"
"FLAG_IN_HOLE\n"
"LngText.text"
-msgid "golf"
-msgstr "гольф"
+msgid "golf2"
+msgstr ""
#. ⛴ (U+026F4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3685,8 +3685,8 @@ msgctxt ""
"emoji.ulf\n"
"FOGGY\n"
"LngText.text"
-msgid "fog"
-msgstr "туман"
+msgid "foggy"
+msgstr ""
#. 🌂 (U+1F302), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3784,8 +3784,8 @@ msgctxt ""
"emoji.ulf\n"
"MILKY_WAY\n"
"LngText.text"
-msgid "Milky way"
-msgstr "Млечны Шлях"
+msgid "milky way"
+msgstr ""
#. 🌍 (U+1F30D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3830,7 +3830,7 @@ msgctxt ""
"NEW_MOON_SYMBOL\n"
"LngText.text"
msgid "new moon"
-msgstr ""
+msgstr "новы месяц"
#. 🌒 (U+1F312), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3839,7 +3839,7 @@ msgctxt ""
"WAXING_CRESCENT_MOON_SYMBOL\n"
"LngText.text"
msgid "waxing crescent moon"
-msgstr ""
+msgstr "рост сярпа"
#. 🌓 (U+1F313), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3857,7 +3857,7 @@ msgctxt ""
"WAXING_GIBBOUS_MOON_SYMBOL\n"
"LngText.text"
msgid "waxing gibbous moon"
-msgstr ""
+msgstr "рост гарба"
#. 🌕 (U+1F315), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3875,7 +3875,7 @@ msgctxt ""
"WANING_GIBBOUS_MOON_SYMBOL\n"
"LngText.text"
msgid "waning gibbous moon"
-msgstr ""
+msgstr "убыванне гарба"
#. 🌗 (U+1F317), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3893,7 +3893,7 @@ msgctxt ""
"WANING_CRESCENT_MOON_SYMBOL\n"
"LngText.text"
msgid "waning crescent moon"
-msgstr ""
+msgstr "убывання сярпа"
#. 🌙 (U+1F319), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3911,7 +3911,7 @@ msgctxt ""
"NEW_MOON_WITH_FACE\n"
"LngText.text"
msgid "new moon2"
-msgstr ""
+msgstr "новы месяц2"
#. 🌛 (U+1F31B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4036,8 +4036,8 @@ msgctxt ""
"emoji.ulf\n"
"CHERRY_BLOSSOM\n"
"LngText.text"
-msgid "cherry blossom"
-msgstr "цвіценне вішні"
+msgid "blossom2"
+msgstr ""
#. 🌹 (U+1F339), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4270,8 +4270,8 @@ msgctxt ""
"emoji.ulf\n"
"CHERRIES\n"
"LngText.text"
-msgid "cherries"
-msgstr "вішні"
+msgid "cherry"
+msgstr ""
#. 🍓 (U+1F353), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4567,8 +4567,8 @@ msgctxt ""
"emoji.ulf\n"
"COOKING\n"
"LngText.text"
-msgid "egg"
-msgstr "яйка"
+msgid "cooking"
+msgstr ""
#. 🍴 (U+1F374), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4603,8 +4603,8 @@ msgctxt ""
"emoji.ulf\n"
"WINE_GLASS\n"
"LngText.text"
-msgid "wine glass"
-msgstr "шклянка віна"
+msgid "glass"
+msgstr ""
#. 🍸 (U+1F378), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4621,8 +4621,8 @@ msgctxt ""
"emoji.ulf\n"
"TROPICAL_DRINK\n"
"LngText.text"
-msgid "tropical drink"
-msgstr "трапічны напой"
+msgid "drink2"
+msgstr ""
#. 🍺 (U+1F37A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4657,8 +4657,8 @@ msgctxt ""
"emoji.ulf\n"
"RIBBON\n"
"LngText.text"
-msgid "ribbon"
-msgstr "стужка"
+msgid "ribbon2"
+msgstr ""
#. 🎁 (U+1F381), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4684,8 +4684,8 @@ msgctxt ""
"emoji.ulf\n"
"JACK-O-LANTERN\n"
"LngText.text"
-msgid "Halloween"
-msgstr "Дзень усіх Святых"
+msgid "halloween"
+msgstr ""
#. 🎄 (U+1F384), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4693,8 +4693,8 @@ msgctxt ""
"emoji.ulf\n"
"CHRISTMAS_TREE\n"
"LngText.text"
-msgid "Christmas"
-msgstr "Каляды"
+msgid "christmas"
+msgstr ""
#. 🎅 (U+1F385), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4702,8 +4702,8 @@ msgctxt ""
"emoji.ulf\n"
"FATHER_CHRISTMAS\n"
"LngText.text"
-msgid "Santa"
-msgstr "Санта"
+msgid "santa"
+msgstr ""
#. 🎆 (U+1F386), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4747,8 +4747,8 @@ msgctxt ""
"emoji.ulf\n"
"CONFETTI_BALL\n"
"LngText.text"
-msgid "confetti ball"
-msgstr "канфеці"
+msgid "party2"
+msgstr ""
#. 🎋 (U+1F38B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4811,7 +4811,7 @@ msgctxt ""
"MOON_VIEWING_CEREMONY\n"
"LngText.text"
msgid "rice scene"
-msgstr ""
+msgstr "спагляданне месяца"
#. 🎒 (U+1F392), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4837,8 +4837,8 @@ msgctxt ""
"emoji.ulf\n"
"CAROUSEL_HORSE\n"
"LngText.text"
-msgid "carousel horse"
-msgstr "карусельны конь"
+msgid "fair2"
+msgstr ""
#. 🎡 (U+1F3A1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4846,8 +4846,8 @@ msgctxt ""
"emoji.ulf\n"
"FERRIS_WHEEL\n"
"LngText.text"
-msgid "ferris wheel"
-msgstr "чортава кола"
+msgid "fair"
+msgstr ""
#. 🎢 (U+1F3A2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4927,8 +4927,8 @@ msgctxt ""
"emoji.ulf\n"
"CIRCUS_TENT\n"
"LngText.text"
-msgid "circus tent"
-msgstr "цыркавы намёт"
+msgid "circus"
+msgstr ""
#. 🎫 (U+1F3AB), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5134,8 +5134,8 @@ msgctxt ""
"emoji.ulf\n"
"CHEQUERED_FLAG\n"
"LngText.text"
-msgid "flag3"
-msgstr "сцяг3"
+msgid "race"
+msgstr ""
#. 🏂 (U+1F3C2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5179,8 +5179,8 @@ msgctxt ""
"emoji.ulf\n"
"HORSE_RACING\n"
"LngText.text"
-msgid "horse racing"
-msgstr "конныя скачкі"
+msgid "horse3"
+msgstr ""
#. 🏈 (U+1F3C8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5918,17 +5918,16 @@ msgctxt ""
"PIG_NOSE\n"
"LngText.text"
msgid "pig nose"
-msgstr ""
+msgstr "свіны пятак"
#. 🐾 (U+1F43E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"PAW_PRINTS\n"
"LngText.text"
msgid "feet"
-msgstr "футы"
+msgstr "ступні"
#. 👀 (U+1F440), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6180,7 +6179,7 @@ msgctxt ""
"HANDBAG\n"
"LngText.text"
msgid "handbag"
-msgstr ""
+msgstr "торба"
#. 👝 (U+1F45D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6189,7 +6188,7 @@ msgctxt ""
"POUCH\n"
"LngText.text"
msgid "pouch"
-msgstr ""
+msgstr "клач"
#. 👞 (U+1F45E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6198,7 +6197,7 @@ msgctxt ""
"MANS_SHOE\n"
"LngText.text"
msgid "shoe"
-msgstr ""
+msgstr "бот"
#. 👟 (U+1F45F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6207,7 +6206,7 @@ msgctxt ""
"ATHLETIC_SHOE\n"
"LngText.text"
msgid "shoe2"
-msgstr ""
+msgstr "бот2"
#. 👠 (U+1F460), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6216,7 +6215,7 @@ msgctxt ""
"HIGH-HEELED_SHOE\n"
"LngText.text"
msgid "shoe3"
-msgstr ""
+msgstr "бот3"
#. 👡 (U+1F461), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6229,13 +6228,12 @@ msgstr "сандаль"
#. 👢 (U+1F462), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"WOMANS_BOOTS\n"
"LngText.text"
msgid "boot"
-msgstr "выбух"
+msgstr "чаравік"
#. 👣 (U+1F463), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6397,7 +6395,7 @@ msgctxt ""
"OLDER_MAN\n"
"LngText.text"
msgid "older man"
-msgstr ""
+msgstr "стары"
#. 👵 (U+1F475), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6406,7 +6404,7 @@ msgctxt ""
"OLDER_WOMAN\n"
"LngText.text"
msgid "older woman"
-msgstr ""
+msgstr "старая"
#. 👶 (U+1F476), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6550,7 +6548,7 @@ msgctxt ""
"NAIL_POLISH\n"
"LngText.text"
msgid "nail care"
-msgstr ""
+msgstr "лак для ногцяў"
#. 💆 (U+1F486), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6604,7 +6602,7 @@ msgctxt ""
"KISS_MARK\n"
"LngText.text"
msgid "kiss mark"
-msgstr ""
+msgstr "знак пацалунка"
#. 💌 (U+1F48C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6712,7 +6710,7 @@ msgctxt ""
"GROWING_HEART\n"
"LngText.text"
msgid "heartpulse"
-msgstr ""
+msgstr "пульс сэрца"
#. 💘 (U+1F498), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6730,7 +6728,7 @@ msgctxt ""
"HEART_WITH_RIBBON\n"
"LngText.text"
msgid "gift heart"
-msgstr ""
+msgstr "падарунак ад сэрца"
#. 💞 (U+1F49E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6838,7 +6836,7 @@ msgctxt ""
"PILE_OF_POO\n"
"LngText.text"
msgid "poo"
-msgstr ""
+msgstr "лайно"
#. 💪 (U+1F4AA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6865,7 +6863,7 @@ msgctxt ""
"SPEECH_BALLOON\n"
"LngText.text"
msgid "speech balloon"
-msgstr ""
+msgstr "хмарка тэксту"
#. 💭 (U+1F4AD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6874,7 +6872,7 @@ msgctxt ""
"THOUGHT_BALLOON\n"
"LngText.text"
msgid "thought balloon"
-msgstr ""
+msgstr "хмарка думкі"
#. 💮 (U+1F4AE), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6900,8 +6898,8 @@ msgctxt ""
"emoji.ulf\n"
"MONEY_BAG\n"
"LngText.text"
-msgid "moneybag"
-msgstr "мех з грашамі"
+msgid "money2"
+msgstr ""
#. 💱 (U+1F4B1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6909,8 +6907,8 @@ msgctxt ""
"emoji.ulf\n"
"CURRENCY_EXCHANGE\n"
"LngText.text"
-msgid "currency exchange"
-msgstr "абмен валюты"
+msgid "exchange"
+msgstr ""
#. 💲 (U+1F4B2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6981,8 +6979,8 @@ msgctxt ""
"emoji.ulf\n"
"CHART_WITH_UPWARDS_TREND_AND_YEN_SIGN\n"
"LngText.text"
-msgid "chart"
-msgstr "дыяграма"
+msgid "chart4"
+msgstr ""
#. 💺 (U+1F4BA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7071,8 +7069,8 @@ msgctxt ""
"emoji.ulf\n"
"PAGE_WITH_CURL\n"
"LngText.text"
-msgid "page with curl"
-msgstr "старонка з завітком"
+msgid "page3"
+msgstr ""
#. 📄 (U+1F4C4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7080,7 +7078,7 @@ msgctxt ""
"emoji.ulf\n"
"PAGE_FACING_UP\n"
"LngText.text"
-msgid "page facing up"
+msgid "page"
msgstr ""
#. 📅 (U+1F4C5), see http://wiki.documentfoundation.org/Emoji
@@ -7116,8 +7114,8 @@ msgctxt ""
"emoji.ulf\n"
"CHART_WITH_UPWARDS_TREND\n"
"LngText.text"
-msgid "char"
-msgstr "знак"
+msgid "chart"
+msgstr ""
#. 📉 (U+1F4C9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7233,8 +7231,8 @@ msgctxt ""
"emoji.ulf\n"
"CLOSED_BOOK\n"
"LngText.text"
-msgid "book"
-msgstr "кніга"
+msgid "book2"
+msgstr ""
#. 📖 (U+1F4D6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7242,8 +7240,8 @@ msgctxt ""
"emoji.ulf\n"
"OPEN_BOOK\n"
"LngText.text"
-msgid "book2"
-msgstr "кніга2"
+msgid "book3"
+msgstr ""
#. 📚 (U+1F4DA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7314,8 +7312,8 @@ msgctxt ""
"emoji.ulf\n"
"SATELLITE_ANTENNA\n"
"LngText.text"
-msgid "satellite"
-msgstr "спадарожнік"
+msgid "antenna"
+msgstr ""
#. 📢 (U+1F4E2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7377,8 +7375,8 @@ msgctxt ""
"emoji.ulf\n"
"INCOMING_ENVELOPE\n"
"LngText.text"
-msgid "envelope2"
-msgstr "канверт2"
+msgid "envelope7"
+msgstr ""
#. 📩 (U+1F4E9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7386,8 +7384,8 @@ msgctxt ""
"emoji.ulf\n"
"ENVELOPE_WITH_DOWNWARDS_ARROW_ABOVE\n"
"LngText.text"
-msgid "envelope3"
-msgstr "канверт3"
+msgid "envelope8"
+msgstr ""
#. 📪 (U+1F4EA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7486,7 +7484,7 @@ msgctxt ""
"MOBILE_PHONE_OFF\n"
"LngText.text"
msgid "mobile phone off"
-msgstr ""
+msgstr "выключаны мабільны тэлефон"
#. 📵 (U+1F4F5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8188,7 +8186,7 @@ msgctxt ""
"SMILING_FACE_WITH_OPEN_MOUTH_AND_COLD_SWEAT\n"
"LngText.text"
msgid "sweat smile"
-msgstr ""
+msgstr "нязручная ўсмешка"
#. 😆 (U+1F606), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8196,8 +8194,8 @@ msgctxt ""
"emoji.ulf\n"
"SMILING_FACE_WITH_OPEN_MOUTH_AND_TIGHTLY-CLOSED_EYES\n"
"LngText.text"
-msgid "laughing"
-msgstr "смех"
+msgid "laugh"
+msgstr ""
#. 😇 (U+1F607), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8215,17 +8213,16 @@ msgctxt ""
"SMILING_FACE_WITH_HORNS\n"
"LngText.text"
msgid "smiling imp"
-msgstr ""
+msgstr "чорцік смяецца"
#. 😉 (U+1F609), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"WINKING_FACE\n"
"LngText.text"
msgid "wink"
-msgstr "спасылка"
+msgstr "падміргванне"
#. 😊 (U+1F60A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8234,7 +8231,7 @@ msgctxt ""
"SMILING_FACE_WITH_SMILING_EYES\n"
"LngText.text"
msgid "blush"
-msgstr ""
+msgstr "румянец"
#. 😋 (U+1F60B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8261,7 +8258,7 @@ msgctxt ""
"SMILING_FACE_WITH_HEART-SHAPED_EYES\n"
"LngText.text"
msgid "heart eyes"
-msgstr ""
+msgstr "вочы-сэрцы"
#. 😎 (U+1F60E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8269,8 +8266,8 @@ msgctxt ""
"emoji.ulf\n"
"SMILING_FACE_WITH_SUNGLASSES\n"
"LngText.text"
-msgid "sunglasses"
-msgstr "сонечныя акуляры"
+msgid "sunglasses2"
+msgstr ""
#. 😏 (U+1F60F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8279,7 +8276,7 @@ msgctxt ""
"SMIRKING_FACE\n"
"LngText.text"
msgid "smirk"
-msgstr ""
+msgstr "ухмылка"
#. 😐 (U+1F610), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8288,7 +8285,7 @@ msgctxt ""
"NEUTRAL_FACE\n"
"LngText.text"
msgid "neutral face"
-msgstr ""
+msgstr "нейтральны твар"
#. 😑 (U+1F611), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8297,7 +8294,7 @@ msgctxt ""
"EXPRESSIONLESS_FACE\n"
"LngText.text"
msgid "expressionless"
-msgstr ""
+msgstr "нейтральны"
#. 😒 (U+1F612), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8306,17 +8303,16 @@ msgctxt ""
"UNAMUSED_FACE\n"
"LngText.text"
msgid "unamused"
-msgstr ""
+msgstr "незадаволены"
#. 😓 (U+1F613), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"FACE_WITH_COLD_SWEAT\n"
"LngText.text"
msgid "sweat"
-msgstr "фатэль"
+msgstr "хвалюецца"
#. 😔 (U+1F614), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8325,7 +8321,7 @@ msgctxt ""
"PENSIVE_FACE\n"
"LngText.text"
msgid "pensive"
-msgstr ""
+msgstr "задуменны"
#. 😕 (U+1F615), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8334,7 +8330,7 @@ msgctxt ""
"CONFUSED_FACE\n"
"LngText.text"
msgid "confused"
-msgstr ""
+msgstr "збянтэжаны"
#. 😖 (U+1F616), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8343,7 +8339,7 @@ msgctxt ""
"CONFOUNDED_FACE\n"
"LngText.text"
msgid "confounded"
-msgstr ""
+msgstr "прыганьбёны"
#. 😗 (U+1F617), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8352,7 +8348,7 @@ msgctxt ""
"KISSING_FACE\n"
"LngText.text"
msgid "kissing"
-msgstr ""
+msgstr "цалуе"
#. 😘 (U+1F618), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8487,7 +8483,7 @@ msgctxt ""
"FROWNING_FACE_WITH_OPEN_MOUTH\n"
"LngText.text"
msgid "frowning"
-msgstr ""
+msgstr "нахмураны"
#. 😧 (U+1F627), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8568,7 +8564,7 @@ msgctxt ""
"HUSHED_FACE\n"
"LngText.text"
msgid "hushed"
-msgstr ""
+msgstr "прыглушаны"
#. 😰 (U+1F630), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8613,7 +8609,7 @@ msgctxt ""
"SLEEPING_FACE\n"
"LngText.text"
msgid "sleeping"
-msgstr ""
+msgstr "спіць"
#. 😵 (U+1F635), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8622,7 +8618,7 @@ msgctxt ""
"DIZZY_FACE\n"
"LngText.text"
msgid "dizzy face"
-msgstr ""
+msgstr "ашаламляльны"
#. 😶 (U+1F636), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8631,7 +8627,7 @@ msgctxt ""
"FACE_WITHOUT_MOUTH\n"
"LngText.text"
msgid "no mouth"
-msgstr ""
+msgstr "без рота"
#. 😷 (U+1F637), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8649,7 +8645,7 @@ msgctxt ""
"GRINNING_CAT_FACE_WITH_SMILING_EYES\n"
"LngText.text"
msgid "smile cat"
-msgstr ""
+msgstr "кот усміхаецца"
#. 😹 (U+1F639), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8658,7 +8654,7 @@ msgctxt ""
"CAT_FACE_WITH_TEARS_OF_JOY\n"
"LngText.text"
msgid "joy cat"
-msgstr ""
+msgstr "вясёлы кот"
#. 😺 (U+1F63A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8667,7 +8663,7 @@ msgctxt ""
"SMILING_CAT_FACE_WITH_OPEN_MOUTH\n"
"LngText.text"
msgid "smiley cat"
-msgstr ""
+msgstr "усміхнёны кот"
#. 😻 (U+1F63B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8676,7 +8672,7 @@ msgctxt ""
"SMILING_CAT_FACE_WITH_HEART-SHAPED_EYES\n"
"LngText.text"
msgid "heart eyes cat"
-msgstr ""
+msgstr "закаханы кот"
#. 😼 (U+1F63C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8685,7 +8681,7 @@ msgctxt ""
"CAT_FACE_WITH_WRY_SMILE\n"
"LngText.text"
msgid "smirk cat"
-msgstr ""
+msgstr "кот ухмыляецца"
#. 😽 (U+1F63D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8694,7 +8690,7 @@ msgctxt ""
"KISSING_CAT_FACE_WITH_CLOSED_EYES\n"
"LngText.text"
msgid "kissing cat"
-msgstr ""
+msgstr "кот цалуе"
#. 😾 (U+1F63E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8738,8 +8734,8 @@ msgctxt ""
"emoji.ulf\n"
"FACE_WITH_OK_GESTURE\n"
"LngText.text"
-msgid "ok2"
-msgstr "ок2"
+msgid "ok3"
+msgstr ""
#. 🙇 (U+1F647), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8747,8 +8743,8 @@ msgctxt ""
"emoji.ulf\n"
"PERSON_BOWING_DEEPLY\n"
"LngText.text"
-msgid "bow"
-msgstr "паклон"
+msgid "prostration"
+msgstr ""
#. 🙈 (U+1F648), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8846,8 +8842,8 @@ msgctxt ""
"emoji.ulf\n"
"STEAM_LOCOMOTIVE\n"
"LngText.text"
-msgid "steam locomotive"
-msgstr "паравоз"
+msgid "locomotive"
+msgstr ""
#. 🚃 (U+1F683), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8901,7 +8897,7 @@ msgctxt ""
"LIGHT_RAIL\n"
"LngText.text"
msgid "light rail"
-msgstr ""
+msgstr "вузкакалейка"
#. 🚉 (U+1F689), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9332,8 +9328,8 @@ msgctxt ""
"emoji.ulf\n"
"CHILDREN_CROSSING\n"
"LngText.text"
-msgid "children crossing"
-msgstr "пераходзяць дзеці"
+msgid "crosswalk"
+msgstr ""
#. 🚹 (U+1F6B9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9452,6 +9448,3714 @@ msgctxt ""
msgid "left luggage"
msgstr "камера захоўвання"
+#. 🕃 (U+1F543), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTCHED_LEFT_SEMICIRCLE_WITH_THREE_DOTS\n"
+"LngText.text"
+msgid "feast"
+msgstr ""
+
+#. 🙂 (U+1F642), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLIGHTLY_SMILING_FACE\n"
+"LngText.text"
+msgid "smiling3"
+msgstr ""
+
+#. 🙁 (U+1F641), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLIGHTLY_FROWNING_FACE\n"
+"LngText.text"
+msgid "frowning2"
+msgstr ""
+
+#. 🕵 (U+1F575), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLEUTH_OR_SPY\n"
+"LngText.text"
+msgid "detective"
+msgstr ""
+
+#. 🛌 (U+1F6CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLEEPING_ACCOMMODATION\n"
+"LngText.text"
+msgid "sleep"
+msgstr ""
+
+#. 🕴 (U+1F574), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_IN_BUSINESS_SUIT_LEVITATING\n"
+"LngText.text"
+msgid "suit"
+msgstr ""
+
+#. 🗣 (U+1F5E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPEAKING_HEAD_IN_SILHOUETTE\n"
+"LngText.text"
+msgid "head"
+msgstr ""
+
+#. 🏌 (U+1F3CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GOLFER\n"
+"LngText.text"
+msgid "golf"
+msgstr ""
+
+#. 🏋 (U+1F3CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WEIGHT_LIFTER\n"
+"LngText.text"
+msgid "weight lifter"
+msgstr ""
+
+#. 🏎 (U+1F3CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RACING_CAR\n"
+"LngText.text"
+msgid "car4"
+msgstr ""
+
+#. 🏍 (U+1F3CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RACING_MOTORCYCLE\n"
+"LngText.text"
+msgid "motorcycle"
+msgstr ""
+
+#. 🖕 (U+1F595), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_HAND_WITH_MIDDLE_FINGER_EXTENDED\n"
+"LngText.text"
+msgid "finger"
+msgstr ""
+
+#. 🖖 (U+1F596), Mr. Spock's Vulcan salute from Star Trek, see also http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_HAND_WITH_PART_BETWEEN_MIDDLE_AND_RING_FINGERS\n"
+"LngText.text"
+msgid "spock"
+msgstr ""
+
+#. 🖐 (U+1F590), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_HAND_WITH_FINGERS_SPLAYED\n"
+"LngText.text"
+msgid "hand2"
+msgstr ""
+
+#. 👁 (U+1F441), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EYE\n"
+"LngText.text"
+msgid "eye"
+msgstr ""
+
+#. 🗨 (U+1F5E8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_SPEECH_BUBBLE\n"
+"LngText.text"
+msgid "bubble"
+msgstr ""
+
+#. 🗯 (U+1F5EF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_ANGER_BUBBLE\n"
+"LngText.text"
+msgid "bubble4"
+msgstr ""
+
+#. 🕳 (U+1F573), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOLE\n"
+"LngText.text"
+msgid "hole"
+msgstr ""
+
+#. 🕶 (U+1F576), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DARK_SUNGLASSES\n"
+"LngText.text"
+msgid "sunglasses"
+msgstr ""
+
+#. 🛍 (U+1F6CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOPPING_BAGS\n"
+"LngText.text"
+msgid "shop"
+msgstr ""
+
+#. 🐿 (U+1F43F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHIPMUNK\n"
+"LngText.text"
+msgid "chipmunk"
+msgstr ""
+
+#. 🕊 (U+1F54A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOVE_OF_PEACE\n"
+"LngText.text"
+msgid "dove"
+msgstr ""
+
+#. 🕷 (U+1F577), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIDER\n"
+"LngText.text"
+msgid "spider"
+msgstr ""
+
+#. 🕸 (U+1F578), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIDER_WEB\n"
+"LngText.text"
+msgid "web"
+msgstr ""
+
+#. 🏵 (U+1F3F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROSETTE\n"
+"LngText.text"
+msgid "rosette"
+msgstr ""
+
+#. 🌶 (U+1F336), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOT_PEPPER\n"
+"LngText.text"
+msgid "pepper"
+msgstr ""
+
+#. 🍽 (U+1F37D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FORK_AND_KNIFE_WITH_PLATE\n"
+"LngText.text"
+msgid "plate"
+msgstr ""
+
+#. 🗺 (U+1F5FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WORLD_MAP\n"
+"LngText.text"
+msgid "map"
+msgstr ""
+
+#. 🏔 (U+1F3D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SNOW_CAPPED_MOUNTAIN\n"
+"LngText.text"
+msgid "mountain2"
+msgstr ""
+
+#. 🏕 (U+1F3D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CAMPING\n"
+"LngText.text"
+msgid "camping"
+msgstr ""
+
+#. 🏖 (U+1F3D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEACH_WITH_UMBRELLA\n"
+"LngText.text"
+msgid "beach"
+msgstr ""
+
+#. 🏜 (U+1F3DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESERT\n"
+"LngText.text"
+msgid "desert"
+msgstr ""
+
+#. 🏝 (U+1F3DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESERT_ISLAND\n"
+"LngText.text"
+msgid "island"
+msgstr ""
+
+#. 🏞 (U+1F3DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NATIONAL_PARK\n"
+"LngText.text"
+msgid "park"
+msgstr ""
+
+#. 🏟 (U+1F3DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STADIUM\n"
+"LngText.text"
+msgid "stadium"
+msgstr ""
+
+#. 🏛 (U+1F3DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLASSICAL_BUILDING\n"
+"LngText.text"
+msgid "museum"
+msgstr ""
+
+#. 🏗 (U+1F3D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BUILDING_CONSTRUCTION\n"
+"LngText.text"
+msgid "crane"
+msgstr ""
+
+#. 🏘 (U+1F3D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOUSE_BUILDINGS\n"
+"LngText.text"
+msgid "houses"
+msgstr ""
+
+#. 🏚 (U+1F3DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DERELICT_HOUSE_BUILDING\n"
+"LngText.text"
+msgid "house3"
+msgstr ""
+
+#. 🏙 (U+1F3D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CITYSCAPE\n"
+"LngText.text"
+msgid "city"
+msgstr ""
+
+#. 🛣 (U+1F6E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTORWAY\n"
+"LngText.text"
+msgid "motorway"
+msgstr ""
+
+#. 🛤 (U+1F6E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAILWAY_TRACK\n"
+"LngText.text"
+msgid "track"
+msgstr ""
+
+#. 🛢 (U+1F6E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OIL_DRUM\n"
+"LngText.text"
+msgid "drum"
+msgstr ""
+
+#. 🛳 (U+1F6F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PASSENGER_SHIP\n"
+"LngText.text"
+msgid "ship2"
+msgstr ""
+
+#. 🛥 (U+1F6E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTOR_BOAT\n"
+"LngText.text"
+msgid "motor boat"
+msgstr ""
+
+#. 🛩 (U+1F6E9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SMALL_AIRPLANE\n"
+"LngText.text"
+msgid "airplane2"
+msgstr ""
+
+#. 🛫 (U+1F6EB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AIRPLANE_DEPARTURE\n"
+"LngText.text"
+msgid "departure"
+msgstr ""
+
+#. 🛬 (U+1F6EC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AIRPLANE_ARRIVING\n"
+"LngText.text"
+msgid "arrival"
+msgstr ""
+
+#. 🛰 (U+1F6F0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SATELLITE\n"
+"LngText.text"
+msgid "satellite"
+msgstr ""
+
+#. 🛎 (U+1F6CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BELLHOP_BELL\n"
+"LngText.text"
+msgid "bell2"
+msgstr ""
+
+#. 🕰 (U+1F570), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MANTELPIECE_CLOCK\n"
+"LngText.text"
+msgid "clock"
+msgstr ""
+
+#. 🌡 (U+1F321), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THERMOMETER\n"
+"LngText.text"
+msgid "thermometer"
+msgstr ""
+
+#. 🌤 (U+1F324), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_WITH_SMALL_CLOUD\n"
+"LngText.text"
+msgid "cloudy"
+msgstr ""
+
+#. 🌥 (U+1F325), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_BEHIND_CLOUD\n"
+"LngText.text"
+msgid "cloudy2"
+msgstr ""
+
+#. 🌦 (U+1F326), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_BEHIND_CLOUD_WITH_RAIN\n"
+"LngText.text"
+msgid "rainy"
+msgstr ""
+
+#. 🌧 (U+1F327), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_RAIN\n"
+"LngText.text"
+msgid "storm"
+msgstr ""
+
+#. 🌨 (U+1F328), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_SNOW\n"
+"LngText.text"
+msgid "snow"
+msgstr ""
+
+#. 🌩 (U+1F329), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_LIGHTNING\n"
+"LngText.text"
+msgid "lightning"
+msgstr ""
+
+#. 🌪 (U+1F32A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_TORNADO\n"
+"LngText.text"
+msgid "tornado"
+msgstr ""
+
+#. 🌫 (U+1F32B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOG\n"
+"LngText.text"
+msgid "fog"
+msgstr ""
+
+#. 🌬 (U+1F32C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WIND_BLOWING_FACE\n"
+"LngText.text"
+msgid "wind"
+msgstr ""
+
+#. 🎗 (U+1F397), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REMINDER_RIBBON\n"
+"LngText.text"
+msgid "ribbon"
+msgstr ""
+
+#. 🎟 (U+1F39F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ADMISSION_TICKETS\n"
+"LngText.text"
+msgid "ticket2"
+msgstr ""
+
+#. 🎖 (U+1F396), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MILITARY_MEDAL\n"
+"LngText.text"
+msgid "medal2"
+msgstr ""
+
+#. 🏅 (U+1F3C5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPORTS_MEDAL\n"
+"LngText.text"
+msgid "medal"
+msgstr ""
+
+#. 🕹 (U+1F579), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"JOYSTICK\n"
+"LngText.text"
+msgid "joystick"
+msgstr ""
+
+#. 🖼 (U+1F5BC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_PICTURE\n"
+"LngText.text"
+msgid "picture"
+msgstr ""
+
+#. 🎙 (U+1F399), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STUDIO_MICROPHONE\n"
+"LngText.text"
+msgid "microphone2"
+msgstr ""
+
+#. 🎚 (U+1F39A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEVEL_SLIDER\n"
+"LngText.text"
+msgid "slider"
+msgstr ""
+
+#. 🎛 (U+1F39B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CONTROL_KNOBS\n"
+"LngText.text"
+msgid "control"
+msgstr ""
+
+#. 🖥 (U+1F5A5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESKTOP_COMPUTER\n"
+"LngText.text"
+msgid "computer2"
+msgstr ""
+
+#. 🖨 (U+1F5A8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINTER\n"
+"LngText.text"
+msgid "printer"
+msgstr ""
+
+#. 🖱 (U+1F5B1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse3"
+msgstr ""
+
+#. 🖲 (U+1F5B2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TRACKBALL\n"
+"LngText.text"
+msgid "trackball"
+msgstr ""
+
+#. 🎞 (U+1F39E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILM_FRAMES\n"
+"LngText.text"
+msgid "film"
+msgstr ""
+
+#. 📽 (U+1F4FD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILM_PROJECTOR\n"
+"LngText.text"
+msgid "projector"
+msgstr ""
+
+#. 📸 (U+1F4F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CAMERA_WITH_FLASH\n"
+"LngText.text"
+msgid "flash"
+msgstr ""
+
+#. 🕯 (U+1F56F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANDLE\n"
+"LngText.text"
+msgid "candle"
+msgstr ""
+
+#. 🗞 (U+1F5DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROLLED-UP_NEWSPAPER\n"
+"LngText.text"
+msgid "newspaper2"
+msgstr ""
+
+#. 🏷 (U+1F3F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LABEL\n"
+"LngText.text"
+msgid "label"
+msgstr ""
+
+#. 🗳 (U+1F5F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BALLOT\n"
+"LngText.text"
+msgid "ballot"
+msgstr ""
+
+#. 🖋 (U+1F58B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_FOUNTAIN_PEN\n"
+"LngText.text"
+msgid "pen2"
+msgstr ""
+
+#. 🖊 (U+1F58A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_BALLPOINT_PEN\n"
+"LngText.text"
+msgid "pen"
+msgstr ""
+
+#. 🖌 (U+1F58C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_PAINTBRUSH\n"
+"LngText.text"
+msgid "paintbrush"
+msgstr ""
+
+#. 🖍 (U+1F58D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_CRAYON\n"
+"LngText.text"
+msgid "crayon"
+msgstr ""
+
+#. 🗂 (U+1F5C2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARD_INDEX_DIVIDERS\n"
+"LngText.text"
+msgid "index"
+msgstr ""
+
+#. 🗒 (U+1F5D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIRAL_NOTE_PAD\n"
+"LngText.text"
+msgid "notepad"
+msgstr ""
+
+#. 🗓 (U+1F5D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIRAL_CALENDAR_PAD\n"
+"LngText.text"
+msgid "calendar3"
+msgstr ""
+
+#. 🖇 (U+1F587), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LINKED_PAPERCLIPS\n"
+"LngText.text"
+msgid "paperclip2"
+msgstr ""
+
+#. 🗃 (U+1F5C3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARD_FILE_BOX\n"
+"LngText.text"
+msgid "box"
+msgstr ""
+
+#. 🗄 (U+1F5C4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILE_CABINET\n"
+"LngText.text"
+msgid "cabinet"
+msgstr ""
+
+#. 🗑 (U+1F5D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WASTEBASKET\n"
+"LngText.text"
+msgid "wastebasket"
+msgstr ""
+
+#. 🗝 (U+1F5DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLD_KEY\n"
+"LngText.text"
+msgid "key2"
+msgstr ""
+
+#. 🛠 (U+1F6E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HAMMER_AND_WRENCH\n"
+"LngText.text"
+msgid "hammer and wrench"
+msgstr ""
+
+#. 🗡 (U+1F5E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DAGGER_KNIFE\n"
+"LngText.text"
+msgid "knife2"
+msgstr ""
+
+#. 🛡 (U+1F6E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHIELD\n"
+"LngText.text"
+msgid "shield"
+msgstr ""
+
+#. 🗜 (U+1F5DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COMPRESSION\n"
+"LngText.text"
+msgid "clamp"
+msgstr ""
+
+#. 🛏 (U+1F6CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BED\n"
+"LngText.text"
+msgid "bed"
+msgstr ""
+
+#. 🛋 (U+1F6CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COUCH_AND_LAMP\n"
+"LngText.text"
+msgid "couch"
+msgstr ""
+
+#. 🕉 (U+1F549), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OM_SYMBOL\n"
+"LngText.text"
+msgid "om"
+msgstr ""
+
+#. ⏸ (U+23F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOUBLE_VERTICAL_BAR\n"
+"LngText.text"
+msgid "pause"
+msgstr ""
+
+#. ⏹ (U+23F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_SQUARE_FOR_STOP\n"
+"LngText.text"
+msgid "stop2"
+msgstr ""
+
+#. ⏺ (U+23FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_CIRCLE_FOR_RECORD\n"
+"LngText.text"
+msgid "record"
+msgstr ""
+
+#. 🏴 (U+1F3F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WAVING_BLACK_FLAG\n"
+"LngText.text"
+msgid "flag"
+msgstr ""
+
+#. 🏳 (U+1F3F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WAVING_WHITE_FLAG\n"
+"LngText.text"
+msgid "flag2"
+msgstr ""
+
+#. 🗷 (U+1F5F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BOLD_SCRIPT_X\n"
+"LngText.text"
+msgid "checkbox4"
+msgstr ""
+
+#. 🛉 (U+1F6C9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOYS_SYMBOL\n"
+"LngText.text"
+msgid "boys"
+msgstr ""
+
+#. 🛈 (U+1F6C8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CIRCLED_INFORMATION_SOURCE\n"
+"LngText.text"
+msgid "information3"
+msgstr ""
+
+#. 🛊 (U+1F6CA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GIRLS_SYMBOL\n"
+"LngText.text"
+msgid "girls"
+msgstr ""
+
+#. 🛨 (U+1F6E8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_SMALL_AIRPLANE\n"
+"LngText.text"
+msgid "airplane4"
+msgstr ""
+
+#. 🛲 (U+1F6F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DIESEL_LOCOMOTIVE\n"
+"LngText.text"
+msgid "locomotive2"
+msgstr ""
+
+#. 🛧 (U+1F6E7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_AIRPLANE\n"
+"LngText.text"
+msgid "airplane3"
+msgstr ""
+
+#. 🛱 (U+1F6F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ONCOMING_FIRE_ENGINE\n"
+"LngText.text"
+msgid "fire engine2"
+msgstr ""
+
+#. 🛦 (U+1F6E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_MILITARY_AIRPLANE\n"
+"LngText.text"
+msgid "airplane5"
+msgstr ""
+
+#. 🛪 (U+1F6EA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NORTHEAST-POINTING_AIRPLANE\n"
+"LngText.text"
+msgid "airplane6"
+msgstr ""
+
+#. 🗭 (U+1F5ED), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_THOUGHT_BUBBLE\n"
+"LngText.text"
+msgid "bubble5"
+msgstr ""
+
+#. 🗱 (U+1F5F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHTNING_MOOD_BUBBLE\n"
+"LngText.text"
+msgid "bubble6"
+msgstr ""
+
+#. 🗬 (U+1F5EC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_THOUGHT_BUBBLE\n"
+"LngText.text"
+msgid "bubble7"
+msgstr ""
+
+#. 🗠 (U+1F5E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STOCK_CHART\n"
+"LngText.text"
+msgid "chart5"
+msgstr ""
+
+#. 🗟 (U+1F5DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGE_WITH_CIRCLED_TEXT\n"
+"LngText.text"
+msgid "page4"
+msgstr ""
+
+#. 🖎 (U+1F58E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_WRITING_HAND\n"
+"LngText.text"
+msgid "writing2"
+msgstr ""
+
+#. 🗦 (U+1F5E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_LEFT\n"
+"LngText.text"
+msgid "rays"
+msgstr ""
+
+#. 🎝 (U+1F39D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEAMED_DESCENDING_MUSICAL_NOTES\n"
+"LngText.text"
+msgid "notes3"
+msgstr ""
+
+#. 🔾 (U+1F53E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_RIGHT_SHADOWED_WHITE_CIRCLE\n"
+"LngText.text"
+msgid "circle3"
+msgstr ""
+
+#. 🎜 (U+1F39C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEAMED_ASCENDING_MUSICAL_NOTES\n"
+"LngText.text"
+msgid "notes4"
+msgstr ""
+
+#. 🕮 (U+1F56E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOOK\n"
+"LngText.text"
+msgid "book"
+msgstr ""
+
+#. 🗛 (U+1F5DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DECREASE_FONT_SIZE_SYMBOL\n"
+"LngText.text"
+msgid "font"
+msgstr ""
+
+#. 🔿 (U+1F53F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UPPER_RIGHT_SHADOWED_WHITE_CIRCLE\n"
+"LngText.text"
+msgid "circle4"
+msgstr ""
+
+#. 🕫 (U+1F56B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BULLHORN\n"
+"LngText.text"
+msgid "bullhorn"
+msgstr ""
+
+#. 🕬 (U+1F56C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BULLHORN_WITH_SOUND_WAVES\n"
+"LngText.text"
+msgid "bullhorn2"
+msgstr ""
+
+#. 🕻 (U+1F57B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_HAND_TELEPHONE_RECEIVER\n"
+"LngText.text"
+msgid "receiver2"
+msgstr ""
+
+#. 🕾 (U+1F57E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_TOUCHTONE_TELEPHONE\n"
+"LngText.text"
+msgid "phone3"
+msgstr ""
+
+#. 🕼 (U+1F57C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TELEPHONE_RECEIVER_WITH_PAGE\n"
+"LngText.text"
+msgid "receiver4"
+msgstr ""
+
+#. 🕽 (U+1F57D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_HAND_TELEPHONE_RECEIVER\n"
+"LngText.text"
+msgid "receiver3"
+msgstr ""
+
+#. 🕿 (U+1F57F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_TOUCHTONE_TELEPHONE\n"
+"LngText.text"
+msgid "phone4"
+msgstr ""
+
+#. 🖚 (U+1F59A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_LEFT_POINTING_INDEX\n"
+"LngText.text"
+msgid "left4"
+msgstr ""
+
+#. 🖏 (U+1F58F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TURNED_OK_HAND_SIGN\n"
+"LngText.text"
+msgid "ok2"
+msgstr ""
+
+#. 🖜 (U+1F59C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_LEFT_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "left5"
+msgstr ""
+
+#. 🗥 (U+1F5E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_BELOW\n"
+"LngText.text"
+msgid "rays2"
+msgstr ""
+
+#. 🖛 (U+1F59B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_RIGHT_POINTING_INDEX\n"
+"LngText.text"
+msgid "right4"
+msgstr ""
+
+#. 🖟 (U+1F59F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_DOWN_POINTING_INDEX\n"
+"LngText.text"
+msgid "down3"
+msgstr ""
+
+#. 🖞 (U+1F59E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_UP_POINTING_INDEX\n"
+"LngText.text"
+msgid "up3"
+msgstr ""
+
+#. 🌢 (U+1F322), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_DROPLET\n"
+"LngText.text"
+msgid "droplet2"
+msgstr ""
+
+#. 🎘 (U+1F398), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MUSICAL_KEYBOARD_WITH_JACKS\n"
+"LngText.text"
+msgid "synthesizer"
+msgstr ""
+
+#. 🎕 (U+1F395), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOUQUET_OF_FLOWERS\n"
+"LngText.text"
+msgid "bouquet2"
+msgstr ""
+
+#. 🎔 (U+1F394), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEART_WITH_TIP_ON_THE_LEFT\n"
+"LngText.text"
+msgid "heart2"
+msgstr ""
+
+#. 🕱 (U+1F571), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_SKULL_AND_CROSSBONES\n"
+"LngText.text"
+msgid "pirate"
+msgstr ""
+
+#. 🖀 (U+1F580), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TELEPHONE_ON_TOP_OF_MODEM\n"
+"LngText.text"
+msgid "modem"
+msgstr ""
+
+#. 🕲 (U+1F572), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NO_PIRACY\n"
+"LngText.text"
+msgid "no piracy"
+msgstr ""
+
+#. 🕅 (U+1F545), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SYMBOL_FOR_MARKS_CHAPTER\n"
+"LngText.text"
+msgid "marks chapter"
+msgstr ""
+
+#. 🕈 (U+1F548), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CELTIC_CROSS\n"
+"LngText.text"
+msgid "Celtic cross"
+msgstr ""
+
+#. 🖗 (U+1F597), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_DOWN_POINTING_LEFT_HAND_INDEX\n"
+"LngText.text"
+msgid "down4"
+msgstr ""
+
+#. 🖆 (U+1F586), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEN_OVER_STAMPED_ENVELOPE\n"
+"LngText.text"
+msgid "envelope4"
+msgstr ""
+
+#. 🖃 (U+1F583), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STAMPED_ENVELOPE\n"
+"LngText.text"
+msgid "envelope2"
+msgstr ""
+
+#. 🗤 (U+1F5E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_ABOVE\n"
+"LngText.text"
+msgid "rays3"
+msgstr ""
+
+#. 🖉 (U+1F589), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_PENCIL\n"
+"LngText.text"
+msgid "pencil4"
+msgstr ""
+
+#. 🖂 (U+1F582), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BACK_OF_ENVELOPE\n"
+"LngText.text"
+msgid "envelope3"
+msgstr ""
+
+#. 🖈 (U+1F588), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_PUSHPIN\n"
+"LngText.text"
+msgid "tack"
+msgstr ""
+
+#. 🖄 (U+1F584), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ENVELOPE_WITH_LIGHTNING\n"
+"LngText.text"
+msgid "envelope5"
+msgstr ""
+
+#. 🖁 (U+1F581), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLAMSHELL_MOBILE_PHONE\n"
+"LngText.text"
+msgid "mobile2"
+msgstr ""
+
+#. 🖅 (U+1F585), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FLYING_ENVELOPE\n"
+"LngText.text"
+msgid "envelope6"
+msgstr ""
+
+#. 🖘 (U+1F598), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_LEFT_POINTING_INDEX\n"
+"LngText.text"
+msgid "left6"
+msgstr ""
+
+#. 🖙 (U+1F599), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_RIGHT_POINTING_INDEX\n"
+"LngText.text"
+msgid "right5"
+msgstr ""
+
+#. 🗖 (U+1F5D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAXIMIZE\n"
+"LngText.text"
+msgid "maximize"
+msgstr ""
+
+#. 🗗 (U+1F5D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OVERLAP\n"
+"LngText.text"
+msgid "overlap"
+msgstr ""
+
+#. 🗏 (U+1F5CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGE\n"
+"LngText.text"
+msgid "page2"
+msgstr ""
+
+#. 🗐 (U+1F5D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGES\n"
+"LngText.text"
+msgid "pages"
+msgstr ""
+
+#. 🗘 (U+1F5D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOCKWISE_RIGHT_AND_LEFT_SEMICIRCLE_ARROWS\n"
+"LngText.text"
+msgid "arrows"
+msgstr ""
+
+#. 🗚 (U+1F5DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"INCREASE_FONT_SIZE_SYMBOL\n"
+"LngText.text"
+msgid "font2"
+msgstr ""
+
+#. 🗕 (U+1F5D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MINIMIZE\n"
+"LngText.text"
+msgid "minimize"
+msgstr ""
+
+#. 🗙 (U+1F5D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANCELLATION_X\n"
+"LngText.text"
+msgid "cancel"
+msgstr ""
+
+#. 🗔 (U+1F5D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESKTOP_WINDOW\n"
+"LngText.text"
+msgid "window"
+msgstr ""
+
+#. 🗌 (U+1F5CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_PAGE\n"
+"LngText.text"
+msgid "empty page"
+msgstr ""
+
+#. 🗋 (U+1F5CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_DOCUMENT\n"
+"LngText.text"
+msgid "empty document"
+msgstr ""
+
+#. 🗍 (U+1F5CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_PAGES\n"
+"LngText.text"
+msgid "empty pages"
+msgstr ""
+
+#. 🗎 (U+1F5CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT\n"
+"LngText.text"
+msgid "document"
+msgstr ""
+
+#. 🗆 (U+1F5C6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE_PAGE\n"
+"LngText.text"
+msgid "empty note page"
+msgstr ""
+
+#. 🗊 (U+1F5CA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE_PAD\n"
+"LngText.text"
+msgid "note pad"
+msgstr ""
+
+#. 🗈 (U+1F5C8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE\n"
+"LngText.text"
+msgid "note3"
+msgstr ""
+
+#. 🗇 (U+1F5C7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE_PAD\n"
+"LngText.text"
+msgid "empty note pad"
+msgstr ""
+
+#. 🗉 (U+1F5C9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE_PAGE\n"
+"LngText.text"
+msgid "note page"
+msgstr ""
+
+#. 🖸 (U+1F5B8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OPTICAL_DISC_ICON\n"
+"LngText.text"
+msgid "optical disc"
+msgstr ""
+
+#. 🗀 (U+1F5C0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOLDER\n"
+"LngText.text"
+msgid "folder3"
+msgstr ""
+
+#. 🖝 (U+1F59D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_RIGHT_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "right6"
+msgstr ""
+
+#. 🗁 (U+1F5C1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OPEN_FOLDER\n"
+"LngText.text"
+msgid "folder4"
+msgstr ""
+
+#. 🗅 (U+1F5C5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE\n"
+"LngText.text"
+msgid "empty note"
+msgstr ""
+
+#. 🖿 (U+1F5BF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_FOLDER\n"
+"LngText.text"
+msgid "folder5"
+msgstr ""
+
+#. 🖾 (U+1F5BE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_AN_X\n"
+"LngText.text"
+msgid "frame"
+msgstr ""
+
+#. 🖽 (U+1F5BD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_TILES\n"
+"LngText.text"
+msgid "frame2"
+msgstr ""
+
+#. 🖹 (U+1F5B9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_TEXT\n"
+"LngText.text"
+msgid "document2"
+msgstr ""
+
+#. 🖻 (U+1F5BB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_PICTURE\n"
+"LngText.text"
+msgid "document3"
+msgstr ""
+
+#. 🖺 (U+1F5BA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_TEXT_AND_PICTURE\n"
+"LngText.text"
+msgid "document4"
+msgstr ""
+
+#. 🖶 (U+1F5B6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINTER_ICON\n"
+"LngText.text"
+msgid "printer2"
+msgstr ""
+
+#. 🖷 (U+1F5B7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FAX_ICON\n"
+"LngText.text"
+msgid "fax2"
+msgstr ""
+
+#. 🖰 (U+1F5B0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TWO_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse4"
+msgstr ""
+
+#. 🖳 (U+1F5B3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLD_PERSONAL_COMPUTER\n"
+"LngText.text"
+msgid "pc"
+msgstr ""
+
+#. 🖵 (U+1F5B5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCREEN\n"
+"LngText.text"
+msgid "screen"
+msgstr ""
+
+#. 🖯 (U+1F5AF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ONE_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse5"
+msgstr ""
+
+#. 🖴 (U+1F5B4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HARD_DISK\n"
+"LngText.text"
+msgid "hard disk"
+msgstr ""
+
+#. 🖩 (U+1F5A9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POCKET_CALCULATOR\n"
+"LngText.text"
+msgid "calculator"
+msgstr ""
+
+#. 🖭 (U+1F5AD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TAPE_CARTRIDGE\n"
+"LngText.text"
+msgid "cartridge"
+msgstr ""
+
+#. 🖬 (U+1F5AC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SOFT_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy2"
+msgstr ""
+
+#. 🖫 (U+1F5AB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_HARD_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy3"
+msgstr ""
+
+#. 🖮 (U+1F5AE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WIRED_KEYBOARD\n"
+"LngText.text"
+msgid "keyboard2"
+msgstr ""
+
+#. 🖔 (U+1F594), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_VICTORY_HAND\n"
+"LngText.text"
+msgid "victory2"
+msgstr ""
+
+#. 🖧 (U+1F5A7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_NETWORKED_COMPUTERS\n"
+"LngText.text"
+msgid "network"
+msgstr ""
+
+#. 🖪 (U+1F5AA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_HARD_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy4"
+msgstr ""
+
+#. 🗢 (U+1F5E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIPS\n"
+"LngText.text"
+msgid "lips"
+msgstr ""
+
+#. 🖦 (U+1F5A6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KEYBOARD_AND_MOUSE\n"
+"LngText.text"
+msgid "keyboard3"
+msgstr ""
+
+#. 🖣 (U+1F5A3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_DOWN_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "down5"
+msgstr ""
+
+#. 🖡 (U+1F5A1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_DOWN_POINTING_INDEX\n"
+"LngText.text"
+msgid "down6"
+msgstr ""
+
+#. 📾 (U+1F4FE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PORTABLE_STEREO\n"
+"LngText.text"
+msgid "stereo"
+msgstr ""
+
+#. 🏶 (U+1F3F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_ROSETTE\n"
+"LngText.text"
+msgid "rosette2"
+msgstr ""
+
+#. 🏲 (U+1F3F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_PENNANT\n"
+"LngText.text"
+msgid "pennant"
+msgstr ""
+
+#. 🖠 (U+1F5A0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_UP_POINTING_INDEX\n"
+"LngText.text"
+msgid "up4"
+msgstr ""
+
+#. 🖢 (U+1F5A2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_UP_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "up5"
+msgstr ""
+
+#. 🏱 (U+1F3F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_PENNANT\n"
+"LngText.text"
+msgid "pennant2"
+msgstr ""
+
+#. 🕄 (U+1F544), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTCHED_RIGHT_SEMICIRCLE_WITH_THREE_DOTS\n"
+"LngText.text"
+msgid "feast2"
+msgstr ""
+
+#. 🖓 (U+1F593), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_THUMBS_DOWN_SIGN\n"
+"LngText.text"
+msgid "no2"
+msgstr ""
+
+#. 🖑 (U+1F591), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_RAISED_HAND_WITH_FINGERS_SPLAYED\n"
+"LngText.text"
+msgid "hand3"
+msgstr ""
+
+#. 🖒 (U+1F592), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_THUMBS_UP_SIGN\n"
+"LngText.text"
+msgid "yes2"
+msgstr ""
+
+#. 🕩 (U+1F569), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER_WITH_ONE_SOUND_WAVE\n"
+"LngText.text"
+msgid "speaker2"
+msgstr ""
+
+#. 🕆 (U+1F546), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_LATIN_CROSS\n"
+"LngText.text"
+msgid "Latin cross2"
+msgstr ""
+
+#. 🕇 (U+1F547), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEAVY_LATIN_CROSS\n"
+"LngText.text"
+msgid "Latin cross3"
+msgstr ""
+
+#. 🕨 (U+1F568), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER\n"
+"LngText.text"
+msgid "speaker3"
+msgstr ""
+
+#. 🕭 (U+1F56D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RINGING_BELL\n"
+"LngText.text"
+msgid "bell3"
+msgstr ""
+
+#. 🌣 (U+1F323), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN\n"
+"LngText.text"
+msgid "sun2"
+msgstr ""
+
+#. 🛇 (U+1F6C7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PROHIBITED_SIGN\n"
+"LngText.text"
+msgid "prohibited"
+msgstr ""
+
+#. 🛆 (U+1F6C6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TRIANGLE_WITH_ROUNDED_CORNERS\n"
+"LngText.text"
+msgid "triangle3"
+msgstr ""
+
+#. 🗫 (U+1F5EB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_SPEECH_BUBBLES\n"
+"LngText.text"
+msgid "bubble3"
+msgstr ""
+
+#. 🕪 (U+1F56A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER_WITH_THREE_SOUND_WAVES\n"
+"LngText.text"
+msgid "speaker4"
+msgstr ""
+
+#. 🗮 (U+1F5EE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_ANGER_BUBBLE\n"
+"LngText.text"
+msgid "bubble8"
+msgstr ""
+
+#. 🗧 (U+1F5E7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_RIGHT\n"
+"LngText.text"
+msgid "rays4"
+msgstr ""
+
+#. 🗲 (U+1F5F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHTNING_MOOD\n"
+"LngText.text"
+msgid "lightning2"
+msgstr ""
+
+#. 🗰 (U+1F5F0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOOD_BUBBLE\n"
+"LngText.text"
+msgid "bubble9"
+msgstr ""
+
+#. 🗹 (U+1F5F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BOLD_CHECK\n"
+"LngText.text"
+msgid "checkbox5"
+msgstr ""
+
+#. 🗴 (U+1F5F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_SCRIPT_X\n"
+"LngText.text"
+msgid "check mark4"
+msgstr ""
+
+#. 🗪 (U+1F5EA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TWO_SPEECH_BUBBLES\n"
+"LngText.text"
+msgid "bubble2"
+msgstr ""
+
+#. 🗶 (U+1F5F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOLD_SCRIPT_X\n"
+"LngText.text"
+msgid "x4"
+msgstr ""
+
+#. 🗩 (U+1F5E9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEECH_BUBBLE\n"
+"LngText.text"
+msgid "bubble10"
+msgstr ""
+
+#. 🗵 (U+1F5F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_SCRIPT_X\n"
+"LngText.text"
+msgid "checkbox6"
+msgstr ""
+
+#. 🗸 (U+1F5F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHT_CHECK_MARK\n"
+"LngText.text"
+msgid "check mark5"
+msgstr ""
+
+#. 🤗 (U+1F917), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HUGGING_FACE\n"
+"LngText.text"
+msgid "hugging"
+msgstr ""
+
+#. 🤔 (U+1F914), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THINKING_FACE\n"
+"LngText.text"
+msgid "thinking"
+msgstr ""
+
+#. 🙄 (U+1F644), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_ROLLING_EYES\n"
+"LngText.text"
+msgid "eye roll"
+msgstr ""
+
+#. 🤐 (U+1F910), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZIPPER-MOUTH_FACE\n"
+"LngText.text"
+msgid "zipper"
+msgstr ""
+
+#. 🙃 (U+1F643), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UPSIDE-DOWN_FACE\n"
+"LngText.text"
+msgid "upside-down"
+msgstr ""
+
+#. 🤑 (U+1F911), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MONEY-MOUTH_FACE\n"
+"LngText.text"
+msgid "money3"
+msgstr ""
+
+#. 🤒 (U+1F912), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_THERMOMETER\n"
+"LngText.text"
+msgid "thermometer2"
+msgstr ""
+
+#. 🤕 (U+1F915), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_HEAD-BANDAGE\n"
+"LngText.text"
+msgid "bandage"
+msgstr ""
+
+#. 🤓 (U+1F913), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NERD_FACE\n"
+"LngText.text"
+msgid "nerd"
+msgstr ""
+
+#. 🤖 (U+1F916), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROBOT_FACE\n"
+"LngText.text"
+msgid "robot"
+msgstr ""
+
+#. 🏻 (U+1F3FB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-1-2\n"
+"LngText.text"
+msgid "skin1"
+msgstr ""
+
+#. 🏼 (U+1F3FC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-3\n"
+"LngText.text"
+msgid "skin2"
+msgstr ""
+
+#. 🏽 (U+1F3FD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-4\n"
+"LngText.text"
+msgid "skin3"
+msgstr ""
+
+#. 🏾 (U+1F3FE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-5\n"
+"LngText.text"
+msgid "skin4"
+msgstr ""
+
+#. 🏿 (U+1F3FF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-6\n"
+"LngText.text"
+msgid "skin5"
+msgstr ""
+
+#. 🤘 (U+1F918), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIGN_OF_THE_HORNS\n"
+"LngText.text"
+msgid "horns"
+msgstr ""
+
+#. 📿 (U+1F4FF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRAYER_BEADS\n"
+"LngText.text"
+msgid "beads"
+msgstr ""
+
+#. 🦁 (U+1F981), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LION_FACE\n"
+"LngText.text"
+msgid "lion"
+msgstr ""
+
+#. 🦄 (U+1F984), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UNICORN_FACE\n"
+"LngText.text"
+msgid "unicorn"
+msgstr ""
+
+#. 🦃 (U+1F983), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TURKEY\n"
+"LngText.text"
+msgid "turkey"
+msgstr ""
+
+#. 🦀 (U+1F980), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRAB\n"
+"LngText.text"
+msgid "crab"
+msgstr ""
+
+#. 🦂 (U+1F982), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCORPION\n"
+"LngText.text"
+msgid "scorpion"
+msgstr ""
+
+#. 🧀 (U+1F9C0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHEESE_WEDGE\n"
+"LngText.text"
+msgid "cheese"
+msgstr ""
+
+#. 🌭 (U+1F32D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOT_DOG\n"
+"LngText.text"
+msgid "hot dog"
+msgstr ""
+
+#. 🌮 (U+1F32E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TACO\n"
+"LngText.text"
+msgid "taco"
+msgstr ""
+
+#. 🌯 (U+1F32F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BURRITO\n"
+"LngText.text"
+msgid "burrito"
+msgstr ""
+
+#. 🍿 (U+1F37F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POPCORN\n"
+"LngText.text"
+msgid "popcorn"
+msgstr ""
+
+#. 🍾 (U+1F37E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOTTLE_WITH_POPPING_CORK\n"
+"LngText.text"
+msgid "party4"
+msgstr ""
+
+#. 🏺 (U+1F3FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AMPHORA\n"
+"LngText.text"
+msgid "amphora"
+msgstr ""
+
+#. 🕌 (U+1F54C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOSQUE\n"
+"LngText.text"
+msgid "mosque"
+msgstr ""
+
+#. 🕍 (U+1F54D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SYNAGOGUE\n"
+"LngText.text"
+msgid "synagogue"
+msgstr ""
+
+#. 🕋 (U+1F54B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KAABA\n"
+"LngText.text"
+msgid "Kaaba"
+msgstr ""
+
+#. 🏐 (U+1F3D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"VOLLEYBALL\n"
+"LngText.text"
+msgid "volleyball"
+msgstr ""
+
+#. 🏏 (U+1F3CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRICKET_BAT_AND_BALL\n"
+"LngText.text"
+msgid "cricket"
+msgstr ""
+
+#. 🏑 (U+1F3D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FIELD_HOCKEY_STICK_AND_BALL\n"
+"LngText.text"
+msgid "hockey2"
+msgstr ""
+
+#. 🏒 (U+1F3D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ICE_HOCKEY_STICK_AND_PUCK\n"
+"LngText.text"
+msgid "hockey"
+msgstr ""
+
+#. 🏓 (U+1F3D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TABLE_TENNIS_PADDLE_AND_BALL\n"
+"LngText.text"
+msgid "ping pong"
+msgstr ""
+
+#. 🏸 (U+1F3F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BADMINTON_RACQUET_AND_SHUTTLECOCK\n"
+"LngText.text"
+msgid "badminton"
+msgstr ""
+
+#. 🏹 (U+1F3F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOW_AND_ARROW\n"
+"LngText.text"
+msgid "bow"
+msgstr ""
+
+#. 🛐 (U+1F6D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PLACE_OF_WORSHIP\n"
+"LngText.text"
+msgid "worship"
+msgstr ""
+
+#. 🕎 (U+1F54E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MENORAH_WITH_NINE_BRANCHES\n"
+"LngText.text"
+msgid "menorah"
+msgstr ""
+
+#. 🤣 (U+1F923), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROLLING_ON_THE_FLOOR_LAUGHING\n"
+"LngText.text"
+msgid "lol"
+msgstr ""
+
+#. 🤤 (U+1F924), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DROOLING_FACE\n"
+"LngText.text"
+msgid "drool"
+msgstr ""
+
+#. 🤢 (U+1F922), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NAUSEATED_FACE\n"
+"LngText.text"
+msgid "nausea"
+msgstr ""
+
+#. 🤧 (U+1F927), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SNEEZING_FACE\n"
+"LngText.text"
+msgid "sneeze"
+msgstr ""
+
+#. 🤠 (U+1F920), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COWBOY_HAT_FACE\n"
+"LngText.text"
+msgid "cowboy"
+msgstr ""
+
+#. 🤡 (U+1F921), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOWN_FACE\n"
+"LngText.text"
+msgid "clown"
+msgstr ""
+
+#. 🤥 (U+1F925), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LYING_FACE\n"
+"LngText.text"
+msgid "liar"
+msgstr ""
+
+#. 🤴 (U+1F934), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINCE\n"
+"LngText.text"
+msgid "prince"
+msgstr ""
+
+#. 🤵 (U+1F935), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_IN_TUXEDO\n"
+"LngText.text"
+msgid "groom"
+msgstr ""
+
+#. 🤰 (U+1F930), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PREGNANT_WOMAN\n"
+"LngText.text"
+msgid "pregnant"
+msgstr ""
+
+#. 🤶 (U+1F936), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MRS._CLAUS\n"
+"LngText.text"
+msgid "mrs. claus"
+msgstr ""
+
+#. 🤦 (U+1F926), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_FACEPALMING\n"
+"LngText.text"
+msgid "facepalm"
+msgstr ""
+
+#. 🤷 (U+1F937), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_SHRUGGING\n"
+"LngText.text"
+msgid "shrugging"
+msgstr ""
+
+#. 🕺 (U+1F57A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_DANCING\n"
+"LngText.text"
+msgid "dancer2"
+msgstr ""
+
+#. 🤺 (U+1F93A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_FENCING\n"
+"LngText.text"
+msgid "fencer"
+msgstr ""
+
+#. 🤸 (U+1F938), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_CARTWHEELING\n"
+"LngText.text"
+msgid "gymnast"
+msgstr ""
+
+#. 🤼 (U+1F93C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEOPLE_WRESTLING\n"
+"LngText.text"
+msgid "wrestling"
+msgstr ""
+
+#. 🤽 (U+1F93D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_PLAYING_WATER_POLO\n"
+"LngText.text"
+msgid "water polo"
+msgstr ""
+
+#. 🤾 (U+1F93E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_PLAYING_HANDBALL\n"
+"LngText.text"
+msgid "handball"
+msgstr ""
+
+#. 🤹 (U+1F939), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_JUGGLING\n"
+"LngText.text"
+msgid "juggling"
+msgstr ""
+
+#. 🤳 (U+1F933), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SELFIE\n"
+"LngText.text"
+msgid "selfie"
+msgstr ""
+
+#. 🤞 (U+1F91E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CROSSED_FINGERS\n"
+"LngText.text"
+msgid "good luck"
+msgstr ""
+
+#. 🤙 (U+1F919), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CALL_ME_HAND\n"
+"LngText.text"
+msgid "call"
+msgstr ""
+
+#. 🤛 (U+1F91B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT-FACING_FIST\n"
+"LngText.text"
+msgid "fist3"
+msgstr ""
+
+#. 🤜 (U+1F91C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT-FACING_FIST\n"
+"LngText.text"
+msgid "fist4"
+msgstr ""
+
+#. 🤚 (U+1F91A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_BACK_OF_HAND\n"
+"LngText.text"
+msgid "hand4"
+msgstr ""
+
+#. 🤝 (U+1F91D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HANDSHAKE\n"
+"LngText.text"
+msgid "handshake"
+msgstr ""
+
+#. 🖤 (U+1F5A4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_HEART\n"
+"LngText.text"
+msgid "black heart"
+msgstr ""
+
+#. 🦍 (U+1F98D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GORILLA\n"
+"LngText.text"
+msgid "gorilla"
+msgstr ""
+
+#. 🦊 (U+1F98A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOX_FACE\n"
+"LngText.text"
+msgid "fox"
+msgstr ""
+
+#. 🦌 (U+1F98C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DEER\n"
+"LngText.text"
+msgid "deer"
+msgstr ""
+
+#. 🦏 (U+1F98F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RHINOCEROS\n"
+"LngText.text"
+msgid "rhinoceros"
+msgstr ""
+
+#. 🦇 (U+1F987), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BAT\n"
+"LngText.text"
+msgid "bat"
+msgstr ""
+
+#. 🦅 (U+1F985), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EAGLE\n"
+"LngText.text"
+msgid "eagle"
+msgstr ""
+
+#. 🦆 (U+1F986), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DUCK\n"
+"LngText.text"
+msgid "duck"
+msgstr ""
+
+#. 🦉 (U+1F989), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OWL\n"
+"LngText.text"
+msgid "owl"
+msgstr ""
+
+#. 🦎 (U+1F98E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIZARD\n"
+"LngText.text"
+msgid "lizard"
+msgstr ""
+
+#. 🦈 (U+1F988), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHARK\n"
+"LngText.text"
+msgid "shark"
+msgstr ""
+
+#. 🦐 (U+1F990), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHRIMP\n"
+"LngText.text"
+msgid "shrimp"
+msgstr ""
+
+#. 🦑 (U+1F991), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SQUID\n"
+"LngText.text"
+msgid "squid"
+msgstr ""
+
+#. 🦋 (U+1F98B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BUTTERFLY\n"
+"LngText.text"
+msgid "butterfly"
+msgstr ""
+
+#. 🥀 (U+1F940), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WILTED_FLOWER\n"
+"LngText.text"
+msgid "flower2"
+msgstr ""
+
+#. 🥝 (U+1F95D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KIWI_FRUIT\n"
+"LngText.text"
+msgid "kiwi"
+msgstr ""
+
+#. 🥑 (U+1F951), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AVOCADO\n"
+"LngText.text"
+msgid "avocado"
+msgstr ""
+
+#. 🥔 (U+1F954), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POTATO\n"
+"LngText.text"
+msgid "potato"
+msgstr ""
+
+#. 🥕 (U+1F955), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARROT\n"
+"LngText.text"
+msgid "carrot"
+msgstr ""
+
+#. 🥒 (U+1F952), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUCUMBER\n"
+"LngText.text"
+msgid "cucumber"
+msgstr ""
+
+#. 🥜 (U+1F95C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEANUTS\n"
+"LngText.text"
+msgid "peanuts"
+msgstr ""
+
+#. 🥐 (U+1F950), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CROISSANT\n"
+"LngText.text"
+msgid "croissant"
+msgstr ""
+
+#. 🥖 (U+1F956), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BAGUETTE_BREAD\n"
+"LngText.text"
+msgid "bread2"
+msgstr ""
+
+#. 🥞 (U+1F95E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PANCAKES\n"
+"LngText.text"
+msgid "pancakes"
+msgstr ""
+
+#. 🥓 (U+1F953), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BACON\n"
+"LngText.text"
+msgid "bacon"
+msgstr ""
+
+#. 🥙 (U+1F959), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STUFFED_FLATBREAD\n"
+"LngText.text"
+msgid "flatbread"
+msgstr ""
+
+#. 🥚 (U+1F95A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EGG\n"
+"LngText.text"
+msgid "egg"
+msgstr ""
+
+#. 🥘 (U+1F958), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHALLOW_PAN_OF_FOOD\n"
+"LngText.text"
+msgid "food"
+msgstr ""
+
+#. 🥗 (U+1F957), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GREEN_SALAD\n"
+"LngText.text"
+msgid "salad"
+msgstr ""
+
+#. 🥛 (U+1F95B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GLASS_OF_MILK\n"
+"LngText.text"
+msgid "milk"
+msgstr ""
+
+#. 🥂 (U+1F942), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLINKING_GLASSES\n"
+"LngText.text"
+msgid "party3"
+msgstr ""
+
+#. 🥃 (U+1F943), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TUMBLER_GLASS\n"
+"LngText.text"
+msgid "glass3"
+msgstr ""
+
+#. 🥄 (U+1F944), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPOON\n"
+"LngText.text"
+msgid "spoon"
+msgstr ""
+
+#. 🛴 (U+1F6F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCOOTER\n"
+"LngText.text"
+msgid "scooter"
+msgstr ""
+
+#. 🛵 (U+1F6F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTOR_SCOOTER\n"
+"LngText.text"
+msgid "scooter2"
+msgstr ""
+
+#. 🛑 (U+1F6D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OCTAGONAL_SIGN\n"
+"LngText.text"
+msgid "stop"
+msgstr ""
+
+#. 🛶 (U+1F6F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANOE\n"
+"LngText.text"
+msgid "canoe"
+msgstr ""
+
+#. 🥇 (U+1F947), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"1ST_PLACE_MEDAL\n"
+"LngText.text"
+msgid "gold"
+msgstr ""
+
+#. 🥈 (U+1F948), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"2ND_PLACE_MEDAL\n"
+"LngText.text"
+msgid "silver"
+msgstr ""
+
+#. 🥉 (U+1F949), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"3RD_PLACE_MEDAL\n"
+"LngText.text"
+msgid "bronze"
+msgstr ""
+
+#. 🥊 (U+1F94A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOXING_GLOVE\n"
+"LngText.text"
+msgid "boxing"
+msgstr ""
+
+#. 🥋 (U+1F94B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MARTIAL_ARTS_UNIFORM\n"
+"LngText.text"
+msgid "judo"
+msgstr ""
+
+#. 🥅 (U+1F945), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GOAL_NET\n"
+"LngText.text"
+msgid "soccer2"
+msgstr ""
+
+#. 🥁 (U+1F941), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DRUM_WITH_DRUMSTICKS\n"
+"LngText.text"
+msgid "drum2"
+msgstr ""
+
+#. 🛒 (U+1F6D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOPPING_TROLLEY\n"
+"LngText.text"
+msgid "cart"
+msgstr ""
+
+#. 🤩 (U+1F929), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GRINNING_FACE_WITH_STAR_EYES\n"
+"LngText.text"
+msgid "excited"
+msgstr ""
+
+#. 🤨 (U+1F928), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_ONE_EYEBROW_RAISED\n"
+"LngText.text"
+msgid "eyebrow"
+msgstr ""
+
+#. 🤯 (U+1F92F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOCKED_FACE_WITH_EXPLODING_HEAD\n"
+"LngText.text"
+msgid "shocked"
+msgstr ""
+
+#. 🤪 (U+1F92A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GRINNING_FACE_WITH_ONE_LARGE_AND_ONE_SMALL_EYE\n"
+"LngText.text"
+msgid "zany"
+msgstr ""
+
+#. 🤬 (U+1F92C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SERIOUS_FACE_WITH_SYMBOLS_COVERING_MOUTH\n"
+"LngText.text"
+msgid "cursing"
+msgstr ""
+
+#. 🤮 (U+1F92E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_OPEN_MOUTH_VOMITING\n"
+"LngText.text"
+msgid "vomit"
+msgstr ""
+
+#. 🤫 (U+1F92B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_FINGER_COVERING_CLOSED_LIPS\n"
+"LngText.text"
+msgid "hush"
+msgstr ""
+
+#. 🤭 (U+1F92D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SMILING_FACE_WITH_SMILING_EYES_AND_HAND_COVERING_MOUTH\n"
+"LngText.text"
+msgid "smiling4"
+msgstr ""
+
+#. 🧐 (U+1F9D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_MONOCLE\n"
+"LngText.text"
+msgid "monocle"
+msgstr ""
+
+#. 🧒 (U+1F9D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHILD\n"
+"LngText.text"
+msgid "child"
+msgstr ""
+
+#. 🧑 (U+1F9D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ADULT\n"
+"LngText.text"
+msgid "adult"
+msgstr ""
+
+#. 🧓 (U+1F9D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLDER_ADULT\n"
+"LngText.text"
+msgid "old"
+msgstr ""
+
+#. 🧕 (U+1F9D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_WITH_HEADSCARF\n"
+"LngText.text"
+msgid "headscarf"
+msgstr ""
+
+#. 🧔 (U+1F9D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEARDED_PERSON\n"
+"LngText.text"
+msgid "beard"
+msgstr ""
+
+#. 🤱 (U+1F931), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BREAST-FEEDING\n"
+"LngText.text"
+msgid "baby3"
+msgstr ""
+
+#. 🧙 (U+1F9D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAGE\n"
+"LngText.text"
+msgid "mage"
+msgstr ""
+
+#. 🧚 (U+1F9DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FAIRY\n"
+"LngText.text"
+msgid "fairy"
+msgstr ""
+
+#. 🧛 (U+1F9DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"VAMPIRE\n"
+"LngText.text"
+msgid "vampire"
+msgstr ""
+
+#. 🧜 (U+1F9DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MERPERSON\n"
+"LngText.text"
+msgid "merperson"
+msgstr ""
+
+#. 🧝 (U+1F9DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ELF\n"
+"LngText.text"
+msgid "elf"
+msgstr ""
+
+#. 🧞 (U+1F9DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GENIE\n"
+"LngText.text"
+msgid "genie"
+msgstr ""
+
+#. 🧟 (U+1F9DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZOMBIE\n"
+"LngText.text"
+msgid "zombie"
+msgstr ""
+
+#. 🧖 (U+1F9D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_IN_STEAMY_ROOM\n"
+"LngText.text"
+msgid "sauna"
+msgstr ""
+
+#. 🧗 (U+1F9D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_CLIMBING\n"
+"LngText.text"
+msgid "climber"
+msgstr ""
+
+#. 🧘 (U+1F9D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_IN_LOTUS_POSITION\n"
+"LngText.text"
+msgid "yoga"
+msgstr ""
+
+#. 🤟 (U+1F91F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"I_LOVE_YOU_HAND_SIGN\n"
+"LngText.text"
+msgid "love2"
+msgstr ""
+
+#. 🤲 (U+1F932), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PALMS_UP_TOGETHER\n"
+"LngText.text"
+msgid "palm2"
+msgstr ""
+
+#. 🧠 (U+1F9E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BRAIN\n"
+"LngText.text"
+msgid "brain"
+msgstr ""
+
+#. 🧡 (U+1F9E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ORANGE_HEART\n"
+"LngText.text"
+msgid "orange heart"
+msgstr ""
+
+#. 🧣 (U+1F9E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCARF\n"
+"LngText.text"
+msgid "scarf"
+msgstr ""
+
+#. 🧤 (U+1F9E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GLOVES\n"
+"LngText.text"
+msgid "gloves"
+msgstr ""
+
+#. 🧥 (U+1F9E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COAT\n"
+"LngText.text"
+msgid "coat"
+msgstr ""
+
+#. 🧦 (U+1F9E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SOCKS\n"
+"LngText.text"
+msgid "socks"
+msgstr ""
+
+#. 🧢 (U+1F9E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BILLED_CAP\n"
+"LngText.text"
+msgid "cap"
+msgstr ""
+
+#. 🦓 (U+1F993), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZEBRA\n"
+"LngText.text"
+msgid "zebra"
+msgstr ""
+
+#. 🦒 (U+1F992), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GIRAFFE\n"
+"LngText.text"
+msgid "giraffe"
+msgstr ""
+
+#. 🦔 (U+1F994), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEDGEHOG\n"
+"LngText.text"
+msgid "hedgehog"
+msgstr ""
+
+#. 🦕 (U+1F995), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SAUROPOD\n"
+"LngText.text"
+msgid "dinosaur"
+msgstr ""
+
+#. 🦖 (U+1F996), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"T-REX\n"
+"LngText.text"
+msgid "dinosaur2"
+msgstr ""
+
+#. 🦗 (U+1F997), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRICKET\n"
+"LngText.text"
+msgid "cricket2"
+msgstr ""
+
+#. 🥥 (U+1F965), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COCONUT\n"
+"LngText.text"
+msgid "coconut"
+msgstr ""
+
+#. 🥦 (U+1F966), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BROCCOLI\n"
+"LngText.text"
+msgid "broccoli"
+msgstr ""
+
+#. 🥨 (U+1F968), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRETZEL\n"
+"LngText.text"
+msgid "pretzel"
+msgstr ""
+
+#. 🥩 (U+1F969), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUT_OF_MEAT\n"
+"LngText.text"
+msgid "steak"
+msgstr ""
+
+#. 🥪 (U+1F96A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SANDWICH\n"
+"LngText.text"
+msgid "sandwich"
+msgstr ""
+
+#. 🥣 (U+1F963), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOWL_WITH_SPOON\n"
+"LngText.text"
+msgid "bowl"
+msgstr ""
+
+#. 🥫 (U+1F96B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANNED_FOOD\n"
+"LngText.text"
+msgid "can"
+msgstr ""
+
+#. 🥟 (U+1F95F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DUMPLING\n"
+"LngText.text"
+msgid "dumpling"
+msgstr ""
+
+#. 🥠 (U+1F960), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FORTUNE_COOKIE\n"
+"LngText.text"
+msgid "cookie2"
+msgstr ""
+
+#. 🥡 (U+1F961), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TAKEOUT_BOX\n"
+"LngText.text"
+msgid "takeout"
+msgstr ""
+
+#. 🥧 (U+1F967), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PIE\n"
+"LngText.text"
+msgid "pie"
+msgstr ""
+
+#. 🥤 (U+1F964), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUP_WITH_STRAW\n"
+"LngText.text"
+msgid "drink"
+msgstr ""
+
+#. 🥢 (U+1F962), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHOPSTICKS\n"
+"LngText.text"
+msgid "chopsticks"
+msgstr ""
+
+#. 🛸 (U+1F6F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FLYING_SAUCER\n"
+"LngText.text"
+msgid "ufo"
+msgstr ""
+
+#. 🛷 (U+1F6F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLED\n"
+"LngText.text"
+msgid "sled"
+msgstr ""
+
+#. 🥌 (U+1F94C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CURLING_STONE\n"
+"LngText.text"
+msgid "curling"
+msgstr ""
+
+#. ₿ (U+20BF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BITCOIN_SIGN\n"
+"LngText.text"
+msgid "bitcoin"
+msgstr ""
+
#. ½ (U+000BD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
msgctxt ""
diff --git a/source/be/formula/messages.po b/source/be/formula/messages.po
index ba20fb912df..ced6638e231 100644
--- a/source/be/formula/messages.po
+++ b/source/be/formula/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: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-12-12 17:28+0000\n"
+"PO-Revision-Date: 2017-12-17 12:22+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1513099734.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1513513355.000000\n"
#: core_resource.hrc:2258
msgctxt "RID_STRLIST_FUNCTION_NAMES"
@@ -47,19 +47,16 @@ msgid "#Headers"
msgstr "#Загалоўкі"
#: core_resource.hrc:2264
-#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#Data"
msgstr "#Даныя"
#: core_resource.hrc:2265
-#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#Totals"
msgstr "#Падсумаванні"
#: core_resource.hrc:2266
-#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#This Row"
msgstr "#Гэты радок"
@@ -491,10 +488,9 @@ msgid "NORMSDIST"
msgstr "NORMSDIST"
#: core_resource.hrc:2352
-#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORM.S.DIST"
-msgstr "NORMSDIST"
+msgstr "NORM.S.DIST"
#: core_resource.hrc:2353
msgctxt "RID_STRLIST_FUNCTION_NAMES"
@@ -512,10 +508,9 @@ msgid "NORMSINV"
msgstr "NORMSINV"
#: core_resource.hrc:2356
-#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NORM.S.INV"
-msgstr "NORMSINV"
+msgstr "NORM.S.INV"
#: core_resource.hrc:2357
msgctxt "RID_STRLIST_FUNCTION_NAMES"
@@ -525,7 +520,7 @@ msgstr "GAMMALN"
#: core_resource.hrc:2358
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "GAMMALN.PRECISE"
-msgstr ""
+msgstr "GAMMALN.PRECISE"
#: core_resource.hrc:2359
msgctxt "RID_STRLIST_FUNCTION_NAMES"
@@ -555,7 +550,7 @@ msgstr "ATAN2"
#: core_resource.hrc:2364
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CEILING.MATH"
-msgstr ""
+msgstr "CEILING.MATH"
#: core_resource.hrc:2365
msgctxt "RID_STRLIST_FUNCTION_NAMES"
@@ -565,17 +560,17 @@ msgstr "CEILING"
#: core_resource.hrc:2366
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CEILING.XCL"
-msgstr ""
+msgstr "CEILING.XCL"
#: core_resource.hrc:2367
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "CEILING.PRECISE"
-msgstr ""
+msgstr "CEILING.PRECISE"
#: core_resource.hrc:2368
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ISO.CEILING"
-msgstr ""
+msgstr "ISO.CEILING"
#: core_resource.hrc:2369
msgctxt "RID_STRLIST_FUNCTION_NAMES"
@@ -585,17 +580,17 @@ msgstr "FLOOR"
#: core_resource.hrc:2370
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FLOOR.XCL"
-msgstr ""
+msgstr "FLOOR.XCL"
#: core_resource.hrc:2371
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FLOOR.MATH"
-msgstr ""
+msgstr "FLOOR.MATH"
#: core_resource.hrc:2372
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FLOOR.PRECISE"
-msgstr ""
+msgstr "FLOOR.PRECISE"
#: core_resource.hrc:2373
msgctxt "RID_STRLIST_FUNCTION_NAMES"
@@ -783,16 +778,14 @@ msgid "VARPA"
msgstr "VARPA"
#: core_resource.hrc:2410
-#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VAR.P"
-msgstr "VARP"
+msgstr "VAR.P"
#: core_resource.hrc:2411
-#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "VAR.S"
-msgstr "VARP"
+msgstr "VAR.S"
#: core_resource.hrc:2412
msgctxt "RID_STRLIST_FUNCTION_NAMES"
@@ -815,16 +808,14 @@ msgid "STDEVPA"
msgstr "STDEVPA"
#: core_resource.hrc:2416
-#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STDEV.P"
-msgstr "STDEVP"
+msgstr "STDEV.P"
#: core_resource.hrc:2417
-#, fuzzy
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "STDEV.S"
-msgstr "STDEVP"
+msgstr "STDEV.S"
#: core_resource.hrc:2418
msgctxt "RID_STRLIST_FUNCTION_NAMES"
@@ -2148,16 +2139,14 @@ msgid "Array"
msgstr "Масіў"
#: formuladialog.ui:57
-#, fuzzy
msgctxt "formuladialog|back"
msgid "< _Back"
-msgstr "<< Назад"
+msgstr "< Назад"
#: formuladialog.ui:72
-#, fuzzy
msgctxt "formuladialog|next"
msgid "_Next >"
-msgstr "Наперад >>"
+msgstr "Наперад >"
#: formuladialog.ui:158
msgctxt "formuladialog|function"
@@ -2205,10 +2194,9 @@ msgid "_Category"
msgstr "Катэгорыя"
#: functionpage.ui:63
-#, fuzzy
msgctxt "functionpage|category"
msgid "Last Used"
-msgstr "Дата апошняга выкарыстання"
+msgstr "Апошняе выкарыстанне"
#: functionpage.ui:64
msgctxt "functionpage|category"
diff --git a/source/be/librelogo/source/pythonpath.po b/source/be/librelogo/source/pythonpath.po
index c9dafcbaa58..95c554f6287 100644
--- a/source/be/librelogo/source/pythonpath.po
+++ b/source/be/librelogo/source/pythonpath.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: pythonpath\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-04-12 14:14+0200\n"
-"PO-Revision-Date: 2017-09-01 20:15+0000\n"
+"PO-Revision-Date: 2017-12-17 12:28+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1504296911.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1513513699.000000\n"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -33,22 +33,20 @@ msgid "back|bk"
msgstr "назад|нз"
#: LibreLogo_en_US.properties
-#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"TURNLEFT\n"
"property.text"
msgid "left|turnleft|lt"
-msgstr "улева"
+msgstr "улева|паварот_улева|лв"
#: LibreLogo_en_US.properties
-#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"TURNRIGHT\n"
"property.text"
msgid "right|turnright|rt"
-msgstr "управа"
+msgstr "управа|паварот_управа|пр"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -67,13 +65,12 @@ msgid "pendown|pd"
msgstr ""
#: LibreLogo_en_US.properties
-#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"HOME\n"
"property.text"
msgid "home"
-msgstr "Некаторы"
+msgstr "пачатак"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -154,7 +151,7 @@ msgctxt ""
"PENSTYLE\n"
"property.text"
msgid "penstyle|linestyle"
-msgstr ""
+msgstr "стыль_пяра|стыль_лініі"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -270,13 +267,12 @@ msgid "pentransparency|linetransparency"
msgstr ""
#: LibreLogo_en_US.properties
-#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"FILLSTYLE\n"
"property.text"
msgid "fillstyle"
-msgstr "Стыль заліўкі"
+msgstr "стыль_заліўкі"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -309,7 +305,7 @@ msgctxt ""
"FONTSTYLE\n"
"property.text"
msgid "fontstyle"
-msgstr ""
+msgstr "стыль_шрыфту"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -469,40 +465,36 @@ msgid "break"
msgstr "хлеб"
#: LibreLogo_en_US.properties
-#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"CONTINUE\n"
"property.text"
msgid "continue"
-msgstr "Працягваць"
+msgstr "працягваць"
#: LibreLogo_en_US.properties
-#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"WHILE\n"
"property.text"
msgid "while"
-msgstr "белы"
+msgstr "пакуль"
#: LibreLogo_en_US.properties
-#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"FOR\n"
"property.text"
msgid "for"
-msgstr "for"
+msgstr "для"
#: LibreLogo_en_US.properties
-#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"IN\n"
"property.text"
msgid "in"
-msgstr "цаль"
+msgstr "у"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -510,16 +502,15 @@ msgctxt ""
"IF\n"
"property.text"
msgid "if"
-msgstr ""
+msgstr "калі"
#: LibreLogo_en_US.properties
-#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"OUTPUT\n"
"property.text"
msgid "output"
-msgstr "Выхад"
+msgstr "вывад"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -538,7 +529,6 @@ msgid "”|’"
msgstr "”|’"
#: LibreLogo_en_US.properties
-#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"TRUE\n"
@@ -547,7 +537,6 @@ msgid "true"
msgstr "сапраўдна"
#: LibreLogo_en_US.properties
-#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"FALSE\n"
@@ -564,7 +553,6 @@ msgid "not"
msgstr "не"
#: LibreLogo_en_US.properties
-#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"AND\n"
@@ -573,13 +561,12 @@ msgid "and"
msgstr "і"
#: LibreLogo_en_US.properties
-#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"OR\n"
"property.text"
msgid "or"
-msgstr "or"
+msgstr "або"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -598,13 +585,12 @@ msgid "print"
msgstr "друк"
#: LibreLogo_en_US.properties
-#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"SLEEP\n"
"property.text"
msgid "sleep"
-msgstr "сонны"
+msgstr "чакаць"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -612,16 +598,15 @@ msgctxt ""
"GLOBAL\n"
"property.text"
msgid "global"
-msgstr ""
+msgstr "агульны"
#: LibreLogo_en_US.properties
-#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"RANDOM\n"
"property.text"
msgid "random"
-msgstr "Выпадкова"
+msgstr "выпадкова"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -629,7 +614,7 @@ msgctxt ""
"INT\n"
"property.text"
msgid "int"
-msgstr ""
+msgstr "цэлае"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -648,7 +633,6 @@ msgid "str"
msgstr "радок"
#: LibreLogo_en_US.properties
-#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"SQRT\n"
@@ -670,7 +654,7 @@ msgctxt ""
"SIN\n"
"property.text"
msgid "sin"
-msgstr ""
+msgstr "sin"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -678,7 +662,7 @@ msgctxt ""
"COS\n"
"property.text"
msgid "cos"
-msgstr ""
+msgstr "cos"
#: LibreLogo_en_US.properties
#, fuzzy
@@ -800,7 +784,6 @@ msgid "pi|π"
msgstr "pi"
#: LibreLogo_en_US.properties
-#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DECIMAL\n"
@@ -825,7 +808,6 @@ msgid "h"
msgstr "h"
#: LibreLogo_en_US.properties
-#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"MM\n"
diff --git a/source/be/officecfg/registry/data/org/openoffice/Office.po b/source/be/officecfg/registry/data/org/openoffice/Office.po
index fc3686a319c..f8299d56819 100644
--- a/source/be/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/be/officecfg/registry/data/org/openoffice/Office.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: Office\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: 2017-12-16 19:19+0000\n"
+"PO-Revision-Date: 2017-12-18 20:01+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1513451941.000000\n"
+"X-POOTLE-MTIME: 1513627277.000000\n"
#: Addons.xcu
msgctxt ""
@@ -1383,7 +1383,7 @@ msgctxt ""
"STR_DUPLICATING_PRESENTATION\n"
"value.text"
msgid "Duplicating presentation..."
-msgstr ""
+msgstr "Дублікуецца прэзентацыя..."
#: PresentationMinimizer.xcu
msgctxt ""
@@ -1988,7 +1988,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CategoryID"
-msgstr "CategoryID"
+msgstr "КодКатэгорыі"
#: TableWizard.xcu
msgctxt ""
@@ -2180,14 +2180,13 @@ msgid "UnitPrice"
msgstr "UnitPrice"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.products.Fields.unitprice\n"
"ShortName\n"
"value.text"
msgid "UnitPrice"
-msgstr "UnitPrice"
+msgstr "ЦанаАдзінкі"
#: TableWizard.xcu
msgctxt ""
@@ -2232,17 +2231,16 @@ msgctxt ""
"Name\n"
"value.text"
msgid "LeadTime"
-msgstr "LeadTime"
+msgstr "ЧасВыканання"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.products.Fields.leadtime\n"
"ShortName\n"
"value.text"
msgid "LeadTime"
-msgstr "LeadTime"
+msgstr "ЧасВыканання"
#: TableWizard.xcu
msgctxt ""
@@ -2368,7 +2366,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PostalCode"
-msgstr "PostalCode"
+msgstr "ПаштовыІндэкс"
#: TableWizard.xcu
msgctxt ""
@@ -2386,7 +2384,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "StateOrProvince"
-msgstr "StateOrProvince"
+msgstr "ВобласцьАбоКрай"
#: TableWizard.xcu
msgctxt ""
@@ -2404,7 +2402,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CountryOrRegion"
-msgstr "CountryOrRegion"
+msgstr "КраінаАбоРэгіён"
#: TableWizard.xcu
msgctxt ""
@@ -2422,7 +2420,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PhoneNumber"
-msgstr "PhoneNumber"
+msgstr "НумарТэлефона"
#: TableWizard.xcu
msgctxt ""
@@ -2714,34 +2712,31 @@ msgid "PostalCode"
msgstr "ПаштовыІндэкс"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.stateorprovince\n"
"Name\n"
"value.text"
msgid "StateOrProvince"
-msgstr "StateOrProvince"
+msgstr "ВобласцьАбоКрай"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.stateorprovince\n"
"ShortName\n"
"value.text"
msgid "StateProvi"
-msgstr "StateProvi"
+msgstr "ВоблКрай"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.countryorregion\n"
"Name\n"
"value.text"
msgid "CountryOrRegion"
-msgstr "CountryOrRegion"
+msgstr "КраінаАбоРэгіён"
#: TableWizard.xcu
#, fuzzy
@@ -2754,14 +2749,13 @@ msgid "CountryReg"
msgstr "CountryReg"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.mailinglist.Fields.phonenumber\n"
"Name\n"
"value.text"
msgid "PhoneNumber"
-msgstr "PhoneNumber"
+msgstr "НумарТэлефона"
#: TableWizard.xcu
#, fuzzy
@@ -3186,14 +3180,13 @@ msgid "StateProvi"
msgstr "ВоблКрай"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.countryorregion\n"
"Name\n"
"value.text"
msgid "CountryOrRegion"
-msgstr "CountryOrRegion"
+msgstr "КраінаАбоРэгіён"
#: TableWizard.xcu
#, fuzzy
@@ -3206,14 +3199,13 @@ msgid "CountryReg"
msgstr "CountryReg"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.contacts.Fields.phonenumber\n"
"Name\n"
"value.text"
msgid "PhoneNumber"
-msgstr "PhoneNumber"
+msgstr "НумарТэлефона"
#: TableWizard.xcu
#, fuzzy
@@ -3480,17 +3472,16 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CustomerID"
-msgstr "CustomerID"
+msgstr "КодКліента"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.customerID\n"
"ShortName\n"
"value.text"
msgid "CustomerID"
-msgstr "CustomerID"
+msgstr "КодКліента"
#: TableWizard.xcu
msgctxt ""
@@ -3637,14 +3628,13 @@ msgid "StateProvi"
msgstr "ВоблКрай"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.countryorregion\n"
"Name\n"
"value.text"
msgid "CountryOrRegion"
-msgstr "CountryOrRegion"
+msgstr "КраінаАбоРэгіён"
#: TableWizard.xcu
#, fuzzy
@@ -3657,14 +3647,13 @@ msgid "CountryReg"
msgstr "CountryReg"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.customers.Fields.phonenumber\n"
"Name\n"
"value.text"
msgid "PhoneNumber"
-msgstr "PhoneNumber"
+msgstr "НумарТэлефона"
#: TableWizard.xcu
#, fuzzy
@@ -4003,34 +3992,31 @@ msgid "City"
msgstr "Горад"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.postalcode\n"
"Name\n"
"value.text"
msgid "PostalCode"
-msgstr "PostalCode"
+msgstr "ПаштовыІндэкс"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.postalcode\n"
"ShortName\n"
"value.text"
msgid "PostalCode"
-msgstr "PostalCode"
+msgstr "ПаштовыІндэкс"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.stateorprovince\n"
"Name\n"
"value.text"
msgid "StateOrProvince"
-msgstr "StateOrProvince"
+msgstr "ВобласцьАбоКрай"
#: TableWizard.xcu
#, fuzzy
@@ -4043,14 +4029,13 @@ msgid "StateProvi"
msgstr "StateProvi"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.countryorregion\n"
"Name\n"
"value.text"
msgid "CountryOrRegion"
-msgstr "CountryOrRegion"
+msgstr "КраінаАбоРэгіён"
#: TableWizard.xcu
#, fuzzy
@@ -4063,14 +4048,13 @@ msgid "CountryReg"
msgstr "CountryReg"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.employees.Fields.phonenumber\n"
"Name\n"
"value.text"
msgid "PhoneNumber"
-msgstr "PhoneNumber"
+msgstr "НумарТэлефона"
#: TableWizard.xcu
#, fuzzy
@@ -4355,24 +4339,22 @@ msgid "OrderID"
msgstr "OrderID"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.customerID\n"
"Name\n"
"value.text"
msgid "CustomerID"
-msgstr "CustomerID"
+msgstr "КодКліента"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orders.Fields.customerID\n"
"ShortName\n"
"value.text"
msgid "CustomerID"
-msgstr "CustomerID"
+msgstr "КодКліента"
#: TableWizard.xcu
#, fuzzy
@@ -4530,7 +4512,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ShipStateOrProvince"
-msgstr "ShipStateOrProvince"
+msgstr "ВобласцьАбоКрайДастаўкі"
#: TableWizard.xcu
msgctxt ""
@@ -4566,7 +4548,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ShipCountryOrRegion"
-msgstr "ShipCountryOrRegion"
+msgstr "КраінаАбоРэгіёнДастаўкі"
#: TableWizard.xcu
msgctxt ""
@@ -4771,24 +4753,22 @@ msgid "Quantity"
msgstr "Колькасць"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orderdetails.Fields.unitprice\n"
"Name\n"
"value.text"
msgid "UnitPrice"
-msgstr "UnitPrice"
+msgstr "ЦанаАдзінкі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orderdetails.Fields.unitprice\n"
"ShortName\n"
"value.text"
msgid "UnitPrice"
-msgstr "UnitPrice"
+msgstr "ЦанаАдзінкі"
#: TableWizard.xcu
msgctxt ""
@@ -4800,14 +4780,13 @@ msgid "Discount"
msgstr "Discount"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.orderdetails.Fields.discount\n"
"ShortName\n"
"value.text"
msgid "Discount"
-msgstr "Discount"
+msgstr "Зніжка"
#: TableWizard.xcu
msgctxt ""
@@ -4895,24 +4874,22 @@ msgid "PaymentID"
msgstr "PaymentID"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.customerID\n"
"Name\n"
"value.text"
msgid "CustomerID"
-msgstr "CustomerID"
+msgstr "КодКліента"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.customerID\n"
"ShortName\n"
"value.text"
msgid "CustomerID"
-msgstr "CustomerID"
+msgstr "КодКліента"
#: TableWizard.xcu
msgctxt ""
@@ -5014,17 +4991,16 @@ msgctxt ""
"Name\n"
"value.text"
msgid "ProjectID"
-msgstr "ProjectID"
+msgstr "КодПраекта"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.payments.Fields.projectID\n"
"ShortName\n"
"value.text"
msgid "ProjectID"
-msgstr "ProjectID"
+msgstr "КодПраекта"
#: TableWizard.xcu
msgctxt ""
@@ -5274,14 +5250,13 @@ msgid "InvoiceID"
msgstr "InvoiceID"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.invoices.Fields.customerID\n"
"Name\n"
"value.text"
msgid "CustomerID"
-msgstr "CustomerID"
+msgstr "КодКліента"
#: TableWizard.xcu
msgctxt ""
@@ -5649,24 +5624,22 @@ msgid "Projects"
msgstr "Projects"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.projects.Fields.projectID\n"
"Name\n"
"value.text"
msgid "ProjectID"
-msgstr "ProjectID"
+msgstr "КодПраекта"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.projects.Fields.projectID\n"
"ShortName\n"
"value.text"
msgid "ProjectID"
-msgstr "ProjectID"
+msgstr "КодПраекта"
#: TableWizard.xcu
msgctxt ""
@@ -5791,14 +5764,13 @@ msgid "BeginDate"
msgstr "BeginDate"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.projects.Fields.begindate\n"
"ShortName\n"
"value.text"
msgid "BeginDate"
-msgstr "BeginDate"
+msgstr "ДатаПачатку"
#: TableWizard.xcu
msgctxt ""
@@ -5957,14 +5929,13 @@ msgid "Location"
msgstr "Месца"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.events.Fields.begindate\n"
"Name\n"
"value.text"
msgid "BeginDate"
-msgstr "BeginDate"
+msgstr "ДатаПачатку"
#: TableWizard.xcu
msgctxt ""
@@ -6152,24 +6123,22 @@ msgid "ReservID"
msgstr "ReservID"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.reservations.Fields.customerID\n"
"Name\n"
"value.text"
msgid "CustomerID"
-msgstr "CustomerID"
+msgstr "КодКліента"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.reservations.Fields.customerID\n"
"ShortName\n"
"value.text"
msgid "CustomerID"
-msgstr "CustomerID"
+msgstr "КодКліента"
#: TableWizard.xcu
msgctxt ""
@@ -6496,7 +6465,6 @@ msgid "BillablHrs"
msgstr "BillablHrs"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.timebilled.Fields.notes\n"
@@ -6506,7 +6474,6 @@ msgid "Notes"
msgstr "Заўвагі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.timebilled.Fields.notes\n"
@@ -6571,14 +6538,13 @@ msgid "Purpose"
msgstr "Purpose"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.business.Tables.expenses.Fields.purpose\n"
"ShortName\n"
"value.text"
msgid "Purpose"
-msgstr "Purpose"
+msgstr "Прызначэнне"
#: TableWizard.xcu
#, fuzzy
@@ -6953,7 +6919,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "DestinationPostalCode"
-msgstr "DestinationPostalCode"
+msgstr "ПаштовыІндэксПрызначэння"
#: TableWizard.xcu
msgctxt ""
@@ -8088,34 +8054,31 @@ msgid "Categories"
msgstr "Катэгорыі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.categories.Fields.categoryID\n"
"Name\n"
"value.text"
msgid "CategoryID"
-msgstr "CategoryID"
+msgstr "КодКатэгорыі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.categories.Fields.categoryID\n"
"ShortName\n"
"value.text"
msgid "CategoryID"
-msgstr "CategoryID"
+msgstr "КодКатэгорыі"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.categories.Fields.categoryname\n"
"Name\n"
"value.text"
msgid "CategoryName"
-msgstr "CategoryName"
+msgstr "НазваКатэгорыі"
#: TableWizard.xcu
#, fuzzy
@@ -8247,34 +8210,31 @@ msgid "City"
msgstr "Горад"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.postalcode\n"
"Name\n"
"value.text"
msgid "PostalCode"
-msgstr "PostalCode"
+msgstr "ПаштовыІндэкс"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.postalcode\n"
"ShortName\n"
"value.text"
msgid "PostalCode"
-msgstr "PostalCode"
+msgstr "ПаштовыІндэкс"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.stateorprovince\n"
"Name\n"
"value.text"
msgid "StateOrProvince"
-msgstr "StateOrProvince"
+msgstr "ВобласцьАбоКрай"
#: TableWizard.xcu
#, fuzzy
@@ -8287,14 +8247,13 @@ msgid "StateProvi"
msgstr "StateProvi"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.countryorregion\n"
"Name\n"
"value.text"
msgid "CountryOrRegion"
-msgstr "CountryOrRegion"
+msgstr "КраінаАбоРэгіён"
#: TableWizard.xcu
#, fuzzy
@@ -8307,14 +8266,13 @@ msgid "CountryReg"
msgstr "CountryReg"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.addresses.Fields.phonenumber\n"
"Name\n"
"value.text"
msgid "PhoneNumber"
-msgstr "PhoneNumber"
+msgstr "НумарТэлефона"
#: TableWizard.xcu
#, fuzzy
@@ -9886,14 +9844,13 @@ msgid "Camera"
msgstr "Camera"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.miniaturefilms.Fields.camera\n"
"ShortName\n"
"value.text"
msgid "Camera"
-msgstr "Camera"
+msgstr "Камера"
#: TableWizard.xcu
msgctxt ""
@@ -10256,14 +10213,13 @@ msgid "Artist"
msgstr "Artist"
#: TableWizard.xcu
-#, fuzzy
msgctxt ""
"TableWizard.xcu\n"
"..TableWizard.TableWizard.private.Tables.cdcollection.Fields.artist\n"
"ShortName\n"
"value.text"
msgid "Artist"
-msgstr "Artist"
+msgstr "Выканаўца"
#: TableWizard.xcu
msgctxt ""
@@ -10272,7 +10228,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MusicCategoryID"
-msgstr "MusicCategoryID"
+msgstr "КодМузычнайКатэгорыі"
#: TableWizard.xcu
msgctxt ""
diff --git a/source/be/officecfg/registry/data/org/openoffice/Office/UI.po b/source/be/officecfg/registry/data/org/openoffice/Office/UI.po
index 72ef995fa40..b38f35bd8a0 100644
--- a/source/be/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/be/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: UI\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-06 15:59+0100\n"
-"PO-Revision-Date: 2017-12-10 18:41+0000\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
+"PO-Revision-Date: 2017-12-18 20:08+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1512931282.000000\n"
+"X-POOTLE-MTIME: 1513627702.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -2079,14 +2079,13 @@ msgid "Underline: Single"
msgstr "Падкрэсленне: адзіночнае"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:AcceptChanges\n"
"Label\n"
"value.text"
msgid "~Manage Changes..."
-msgstr "Вызначыць назвы..."
+msgstr "Распарадзіцца зменамі..."
#: CalcCommands.xcu
msgctxt ""
@@ -2125,14 +2124,13 @@ msgid "Cle~ar Cells..."
msgstr "Ачысціць клеткі..."
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:Delete\n"
"PopupLabel\n"
"value.text"
msgid "Cl~ear Contents..."
-msgstr "Clear Contents"
+msgstr "Ачысціць змест..."
#: CalcCommands.xcu
msgctxt ""
@@ -2477,14 +2475,13 @@ msgid "~Manage..."
msgstr "Арганізаваць..."
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:InsertName\n"
"Label\n"
"value.text"
msgid "~Insert Named Range or Expression..."
-msgstr "Названы абсяг або выраз..."
+msgstr "Уставіць названы абсяг або выраз..."
#: CalcCommands.xcu
msgctxt ""
@@ -2771,8 +2768,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:Hide\n"
"Label\n"
"value.text"
-msgid "~Hide Sheets"
-msgstr "Не паказваць аркушы"
+msgid "~Hide Sheet"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -3042,7 +3039,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Data Provider..."
-msgstr ""
+msgstr "Крыніца даных..."
#: CalcCommands.xcu
msgctxt ""
@@ -3051,7 +3048,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Refresh Data Provider"
-msgstr ""
+msgstr "Абнавіць крыніцу даных"
#: CalcCommands.xcu
msgctxt ""
@@ -3518,17 +3515,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:EditLinks\n"
"Label\n"
"value.text"
-msgid "Edit Lin~ks..."
-msgstr "Правіць спасылкі..."
-
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:EditLinks\n"
-"ContextLabel\n"
-"value.text"
-msgid "Lin~ks..."
-msgstr "Спасылкі..."
+msgid "Lin~ks to External Files..."
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -6848,15 +6836,6 @@ msgstr "Слайд"
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Commands..uno:SlideNavigateMenu\n"
-"Label\n"
-"value.text"
-msgid "Navigate"
-msgstr "Рух"
-
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:SlideMoveMenu\n"
"Label\n"
"value.text"
@@ -7262,7 +7241,6 @@ msgid "Grid to ~Front"
msgstr "Рашотка спераду"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:HelplinesVisible\n"
@@ -7272,7 +7250,6 @@ msgid "~Display Snap Guides"
msgstr "Паказваць лініі прыцягнення*"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:HelplinesFront\n"
@@ -7464,6 +7441,15 @@ msgstr "Нумар старонкі"
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlideField\n"
+"Label\n"
+"value.text"
+msgid "~Slide Number"
+msgstr "Нумар слайда"
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:InsertPageTitleField\n"
"Label\n"
"value.text"
@@ -7473,6 +7459,15 @@ msgstr "Загаловак старонкі"
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlideTitleField\n"
+"Label\n"
+"value.text"
+msgid "Slide Tit~le"
+msgstr "Загаловак слайда"
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:InsertPagesField\n"
"Label\n"
"value.text"
@@ -7482,6 +7477,15 @@ msgstr "Колькасць ~старонак"
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlidesField\n"
+"Label\n"
+"value.text"
+msgid "Slide ~Count"
+msgstr ""
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:ModifyField\n"
"Label\n"
"value.text"
@@ -7701,8 +7705,8 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:ManageLinks\n"
"Label\n"
"value.text"
-msgid "Lin~ks..."
-msgstr "Спасылкі..."
+msgid "Lin~ks to External Files..."
+msgstr ""
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7791,8 +7795,8 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:ImportSlideFromFile\n"
"Label\n"
"value.text"
-msgid "Import Slides..."
-msgstr "Імпарт слайдаў..."
+msgid "Insert Slide from File..."
+msgstr ""
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8237,14 +8241,13 @@ msgid "~Break"
msgstr "Разрыў"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:AdvancedMode\n"
"Label\n"
"value.text"
msgid "Transformations"
-msgstr "Ператварэнне"
+msgstr "Ператварэнні"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8607,14 +8610,13 @@ msgid "Modify Object with Attributes"
msgstr "Modify Object with Attributes"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:HelplinesUse\n"
"Label\n"
"value.text"
msgid "~Snap to Snap Guides"
-msgstr "Прыцягвацца да ліній прыцягнення"
+msgstr "Прыцягваць да ліній прыцягнення"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8933,14 +8935,13 @@ msgid "Styl~es"
msgstr "Стылі"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:SnapLinesMenu\n"
"Label\n"
"value.text"
msgid "~Snap Guides"
-msgstr "Лініі прыцягнення..."
+msgstr "Лініі прыцягнення"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9008,6 +9009,15 @@ msgstr "Нумар старонкі..."
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Popups..uno:InsertSlideNumber\n"
+"Label\n"
+"value.text"
+msgid "S~lide Number..."
+msgstr "Нумар слайда..."
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:InsertDateAndTime\n"
"Label\n"
"value.text"
@@ -10191,7 +10201,6 @@ msgid "Table Text"
msgstr "Тэкст табліцы"
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/popupmenu/textbox\n"
@@ -10300,7 +10309,6 @@ msgid "Edit Points"
msgstr "Правіць пункты"
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/toolbar/choosemodebar\n"
@@ -16793,14 +16801,13 @@ msgid "~Open..."
msgstr "Адкрыць..."
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:OpenRemote\n"
"Label\n"
"value.text"
msgid "Open ~Remote..."
-msgstr "Адкрыць адлеглы ф~айл..."
+msgstr "Адкрыць аддалена..."
#: GenericCommands.xcu
msgctxt ""
@@ -16812,24 +16819,22 @@ msgid "Open Remote File"
msgstr "Адкрыць адлеглы файл"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:OpenRemote\n"
"PopupLabel\n"
"value.text"
msgid "Open ~Remote File..."
-msgstr "Адкрыць адлеглы ф~айл..."
+msgstr "Адкрыць адлеглы файл..."
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:SaveAsRemote\n"
"Label\n"
"value.text"
msgid "Sa~ve Remote..."
-msgstr "~Запісаць адлеглы файл..."
+msgstr "Запісаць аддалена..."
#: GenericCommands.xcu
msgctxt ""
@@ -16841,7 +16846,6 @@ msgid "Save Remote File"
msgstr "Запісаць адлеглы файл"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:SaveAsRemote\n"
@@ -17402,8 +17406,8 @@ msgctxt ""
"..GenericCommands.UserInterface.Commands..uno:InsertDoc\n"
"Label\n"
"value.text"
-msgid "Doc~ument..."
-msgstr "Дакумент..."
+msgid "Text from File..."
+msgstr ""
#: GenericCommands.xcu
msgctxt ""
@@ -17574,6 +17578,15 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Show the Styles Sidebar"
+msgstr "Паказваць бакоўку Стылі"
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ViewSidebarStyles\n"
+"Label\n"
+"value.text"
+msgid "Styles"
msgstr ""
#: GenericCommands.xcu
@@ -19179,24 +19192,6 @@ msgid "Insert Emoji"
msgstr "Уставіць эмадзі"
#: GenericCommands.xcu
-msgctxt ""
-"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
-"Label\n"
-"value.text"
-msgid "Charmap"
-msgstr "Табліца знакаў"
-
-#: GenericCommands.xcu
-msgctxt ""
-"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
-"TooltipLabel\n"
-"value.text"
-msgid "Insert Special Characters"
-msgstr "Уставіць адвольны знак"
-
-#: GenericCommands.xcu
#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
@@ -20346,6 +20341,33 @@ msgstr "Уставіць адвольны знак"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"Label\n"
+"value.text"
+msgid "Symbol"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"ContextLabel\n"
+"value.text"
+msgid "S~pecial Character..."
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Insert Special Characters"
+msgstr "Уставіць адвольны знак"
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ViewDataSourceBrowser\n"
"Label\n"
"value.text"
@@ -20391,6 +20413,15 @@ msgstr "Адаслаць праз ~Bluetooth..."
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ExportAsMenu\n"
+"Label\n"
+"value.text"
+msgid "~Export As"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportToPDF\n"
"Label\n"
"value.text"
@@ -20452,27 +20483,24 @@ msgid "EPUB"
msgstr "EPUB"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportToEPUB\n"
"ContextLabel\n"
"value.text"
-msgid "~Export as EPUB..."
-msgstr "Экспартаваць як PDF"
+msgid "Export as E~PUB..."
+msgstr ""
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportToEPUB\n"
"TooltipLabel\n"
"value.text"
msgid "Export as EPUB"
-msgstr "Экспартаваць як PDF"
+msgstr "Экспартаваць як EPUB"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportDirectToEPUB\n"
@@ -20482,24 +20510,22 @@ msgid "EPUB"
msgstr "EPUB"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportDirectToEPUB\n"
"ContextLabel\n"
"value.text"
msgid "Export Directly as EPUB"
-msgstr "Экспартаваць як PDF беспасрэдна"
+msgstr "Экспартаваць як EPUB беспасрэдна"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportDirectToEPUB\n"
"TooltipLabel\n"
"value.text"
msgid "Export as EPUB"
-msgstr "Экспартаваць як PDF"
+msgstr "Экспартаваць як EPUB"
#: GenericCommands.xcu
msgctxt ""
@@ -22817,6 +22843,15 @@ msgctxt ""
msgid "~Restart in Safe Mode..."
msgstr "Перазапуск у бяспечным рэжыме..."
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:NavigateMenu\n"
+"Label\n"
+"value.text"
+msgid "Navigate"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -23106,14 +23141,13 @@ msgid "Arrows"
msgstr "Стрэлкі"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/choosemodebar\n"
"UIName\n"
"value.text"
msgid "Transformations"
-msgstr "Ператварэнне"
+msgstr "Ператварэнні"
#: ImpressWindowState.xcu
msgctxt ""
@@ -23521,7 +23555,6 @@ msgid "Standard (Single Mode)"
msgstr "Стандартна (аднарадковы рэжым)"
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/notebookbarshortcuts\n"
@@ -23861,7 +23894,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Edit Panel"
-msgstr ""
+msgstr "Панэль рэдагавання"
#: MathWindowState.xcu
msgctxt ""
@@ -23870,7 +23903,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "View Panel"
-msgstr ""
+msgstr "Панэль прагляду"
#: MathWindowState.xcu
msgctxt ""
@@ -24567,7 +24600,6 @@ msgid "Navigator"
msgstr "Навігатар"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.DeckList.StyleListDeck\n"
@@ -24902,7 +24934,6 @@ msgid "Manage Changes"
msgstr "Вызначыць назвы..."
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.StyleListPanel\n"
@@ -24927,7 +24958,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Style Presets"
-msgstr ""
+msgstr "Камплекты стыляў"
#: Sidebar.xcu
msgctxt ""
@@ -25431,8 +25462,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:ShowHiddenParagraphs\n"
"Label\n"
"value.text"
-msgid "~Hidden Paragraphs"
-msgstr "Нябачныя абзацы"
+msgid "Field ~Hidden Paragraphs"
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
@@ -27394,8 +27425,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:LinkDialog\n"
"Label\n"
"value.text"
-msgid "Lin~ks..."
-msgstr "Спасылкі..."
+msgid "Lin~ks to External Files..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
@@ -27659,7 +27690,6 @@ msgid "~Column Width..."
msgstr "Шырыня калонкі..."
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:OptimizeTable\n"
@@ -28287,7 +28317,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Jump To Specific Page"
-msgstr ""
+msgstr "Пераход да вызначанай старонкі"
#: WriterCommands.xcu
msgctxt ""
@@ -28308,14 +28338,13 @@ msgid "MultiSelection On"
msgstr "Множнае азначэнне"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:Repaginate\n"
"Label\n"
"value.text"
msgid "Page Formatting"
-msgstr "Page Formatting"
+msgstr "Фарматаванне старонкі"
#: WriterCommands.xcu
msgctxt ""
@@ -28327,14 +28356,13 @@ msgid "Extended Selection On"
msgstr "Пашыранае азначэнне"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:EditFootnote\n"
"Label\n"
"value.text"
msgid "~Footnote or Endnote..."
-msgstr "Зноскі..."
+msgstr "Зноска або затэкставая зноска..."
#: WriterCommands.xcu
msgctxt ""
@@ -29562,14 +29590,13 @@ msgid "Continue previous numbering"
msgstr "Continue previous numbering"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:NavElement\n"
"Label\n"
"value.text"
msgid "Navigate By"
-msgstr "Навігатар"
+msgstr "Навігацыя"
#: WriterCommands.xcu
msgctxt ""
@@ -30105,7 +30132,7 @@ msgstr "Стыль спісу з пунктаў"
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 1&amp;FamilyName:string=NumberingStyles\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 123&amp;FamilyName:string=NumberingStyles\n"
"Label\n"
"value.text"
msgid "Number List"
@@ -30132,11 +30159,65 @@ msgstr "Стыль нумараванага спісу"
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 4&amp;FamilyName:string=NumberingStyles\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering ABC&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Uppercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaListStyle\n"
"Label\n"
"value.text"
-msgid "Roman List"
-msgstr "Спіс з рымскімі лікамі"
+msgid "Alphabet Uppercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Alphabet Uppercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering abc&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaLowListStyle\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaLowListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Alphabet Lowercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering IVX&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Roman Uppercase List"
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
@@ -30144,8 +30225,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Popups..uno:RomanListStyle\n"
"Label\n"
"value.text"
-msgid "Roman List"
-msgstr "Спіс з рымскімі лікамі"
+msgid "Roman Uppercase List"
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
@@ -30153,8 +30234,35 @@ msgctxt ""
"..WriterCommands.UserInterface.Popups..uno:RomanListStyle\n"
"TooltipLabel\n"
"value.text"
-msgid "Roman List Style"
-msgstr "Стыль спісу з рымскімі лікамі"
+msgid "Roman Uppercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering ivx&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Roman Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:RomanLowListStyle\n"
+"Label\n"
+"value.text"
+msgid "Roman Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:RomanLowListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Roman Lowercase List Style"
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/be/reportdesign/messages.po b/source/be/reportdesign/messages.po
index 18e6789e772..3b25857779e 100644
--- a/source/be/reportdesign/messages.po
+++ b/source/be/reportdesign/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: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-12-10 17:14+0000\n"
+"PO-Revision-Date: 2017-12-17 10:33+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1512926068.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1513506814.000000\n"
#: stringarray.hrc:17
msgctxt "RID_STR_FORCENEWPAGE_CONST"
@@ -1069,10 +1069,9 @@ msgid "Insert"
msgstr "Уставіць"
#: floatingfield.ui:98
-#, fuzzy
msgctxt "floatingfield|helptext"
msgid "Highlight the fields to insert into the selected section of the template, then click Insert or press Enter."
-msgstr "Highlight the fields to insert into the selected section of the template, then click Insert or press Enter."
+msgstr "Пазначце палі для ўстаўкі ў выбраны раздзела шаблона, потым клікніце \"Уставіць\" або націсніце Enter."
#: floatingnavigator.ui:10
msgctxt "floatingnavigator|FloatingNavigator"
diff --git a/source/be/sc/messages.po b/source/be/sc/messages.po
index 67feb93a129..6bee06e9ce9 100644
--- a/source/be/sc/messages.po
+++ b/source/be/sc/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-12-06 15:58+0100\n"
-"PO-Revision-Date: 2017-12-11 18:38+0000\n"
+"PO-Revision-Date: 2017-12-17 12:30+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1513017512.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1513513830.000000\n"
#: compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -12469,13 +12469,11 @@ msgid "The time (in seconds) that the Style is to remain valid."
msgstr "Час (у секундах), на працягу якога стыль застаецца дапушчальным."
#: scfuncs.hrc:3467
-#, fuzzy
msgctxt "SC_OPCODE_STYLE"
msgid "Style 2"
msgstr "Стыль 2"
#: scfuncs.hrc:3468
-#, fuzzy
msgctxt "SC_OPCODE_STYLE"
msgid "The style to be applied after time expires."
msgstr "Стыль, які будзе выкарыстаны пасля сканчэння часу."
@@ -19810,10 +19808,9 @@ msgid "_View"
msgstr "Від"
#: notebookbar_groupedbar_compact.ui:7634
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|editdrawb"
msgid "_Styles"
-msgstr "Ст_ылі"
+msgstr "Стылі"
#: notebookbar_groupedbar_compact.ui:7850
#, fuzzy
@@ -19870,10 +19867,9 @@ msgid "_View"
msgstr "Від"
#: notebookbar_groupedbar_compact.ui:9080
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|paragraphstyles"
msgid "_Styles"
-msgstr "Ст_ылі"
+msgstr "Стылі"
#: notebookbar_groupedbar_compact.ui:9255
#, fuzzy
diff --git a/source/be/scaddins/messages.po b/source/be/scaddins/messages.po
index a253a46a625..d8fdd2d5cb4 100644
--- a/source/be/scaddins/messages.po
+++ b/source/be/scaddins/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-10-04 11:48+0200\n"
-"PO-Revision-Date: 2017-12-11 18:45+0000\n"
+"PO-Revision-Date: 2017-12-17 10:31+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1513017903.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1513506663.000000\n"
#: analysis.hrc:27
msgctxt "ANALYSIS_Workday"
@@ -136,10 +136,9 @@ msgid "Return type"
msgstr "Return type"
#: analysis.hrc:62
-#, fuzzy
msgctxt "ANALYSIS_Weeknum"
msgid "Indicates the first day of the week (1 = Sunday, 2 = Monday)"
-msgstr "Вяртае першы дзень тыдня (1 = нядзеля, іншае = панядзелак)."
+msgstr "Задае першы дзень тыдня (1 = нядзеля, 2 = панядзелак)"
#: analysis.hrc:67
msgctxt "ANALYSIS_Eomonth"
@@ -147,25 +146,21 @@ msgid "Returns the serial number of the last day of the month that comes a certa
msgstr "Вяртае парадкавы нумар апошняга дня таго месяца, які з'яўляецца адлеглым на пэўную колькасць месяцаў ад пачатковай даты"
#: analysis.hrc:68
-#, fuzzy
msgctxt "ANALYSIS_Eomonth"
msgid "Start date"
-msgstr "Start date"
+msgstr "Дата пачатку"
#: analysis.hrc:69
-#, fuzzy
msgctxt "ANALYSIS_Eomonth"
msgid "The start date"
msgstr "Пачатковая дата"
#: analysis.hrc:70
-#, fuzzy
msgctxt "ANALYSIS_Eomonth"
msgid "Months"
msgstr "Месяцы"
#: analysis.hrc:71
-#, fuzzy
msgctxt "ANALYSIS_Eomonth"
msgid "Number of months before or after the start date"
msgstr "Колькасць месяцаў перад ці пасля пачатковай даты"
@@ -187,7 +182,6 @@ msgid "Start date"
msgstr "Start date"
#: analysis.hrc:78
-#, fuzzy
msgctxt "ANALYSIS_Networkdays"
msgid "The start date"
msgstr "Пачатковая дата"
@@ -199,7 +193,6 @@ msgid "End date"
msgstr "End date"
#: analysis.hrc:80
-#, fuzzy
msgctxt "ANALYSIS_Networkdays"
msgid "The end date"
msgstr "Канчатковая дата"
@@ -252,10 +245,9 @@ msgid "Returns the multinomial coefficient of a set of numbers"
msgstr "Вяртае каэфіцыенты палінома мноства лікаў"
#: analysis.hrc:102
-#, fuzzy
msgctxt "ANALYSIS_Multinomial"
msgid "Number"
-msgstr "Number"
+msgstr "Лік"
#: analysis.hrc:103
msgctxt "ANALYSIS_Multinomial"
@@ -268,7 +260,6 @@ msgid "Returns the sum of a power series"
msgstr "Вяртае суму ступеневага раду"
#: analysis.hrc:109
-#, fuzzy
msgctxt "ANALYSIS_Seriessum"
msgid "X"
msgstr "X"
@@ -279,7 +270,6 @@ msgid "The independent variable of the power series"
msgstr "Незалежная зменная ступеневага раду"
#: analysis.hrc:111
-#, fuzzy
msgctxt "ANALYSIS_Seriessum"
msgid "N"
msgstr "N"
@@ -290,7 +280,6 @@ msgid "The initial power to which x is to be raised"
msgstr "Пачатковая ступень, да якой трэба падвысіць x"
#: analysis.hrc:113
-#, fuzzy
msgctxt "ANALYSIS_Seriessum"
msgid "M"
msgstr "M"
@@ -341,7 +330,6 @@ msgid "Returns a number rounded to a specified multiple"
msgstr "Вяртае лік, акруглены да пэўнага кратнага"
#: analysis.hrc:131
-#, fuzzy
msgctxt "ANALYSIS_Mround"
msgid "Number"
msgstr "Лік"
@@ -367,7 +355,6 @@ msgid "Returns the square root of a number which has been multiplied by pi"
msgstr "Вяртае квадратавы корань ліку памножанага на \"пі\""
#: analysis.hrc:140
-#, fuzzy
msgctxt "ANALYSIS_Sqrtpi"
msgid "Number"
msgstr "Лік"
@@ -403,7 +390,6 @@ msgid "The largest integer returned"
msgstr "Найбольшы магчымы цэлы лік"
#: analysis.hrc:155
-#, fuzzy
msgctxt "ANALYSIS_Gcd"
msgid ""
"Returns the greatest common divisor.\n"
@@ -413,10 +399,9 @@ msgstr ""
"Гэта функцыя прызначана для сумяшчальнасці са старымі дакументамі Microsoft Excel, для новых дакументаў ужывайце GCD."
#: analysis.hrc:156
-#, fuzzy
msgctxt "ANALYSIS_Gcd"
msgid "Number"
-msgstr "Number"
+msgstr "Лік"
#: analysis.hrc:157
msgctxt "ANALYSIS_Gcd"
@@ -424,7 +409,6 @@ msgid "Number or list of numbers"
msgstr "Лік або спіс лікаў"
#: analysis.hrc:162
-#, fuzzy
msgctxt "ANALYSIS_Lcm"
msgid ""
"Returns the least common multiple.\n"
@@ -434,10 +418,9 @@ msgstr ""
"Гэта функцыя прызначана для сумяшчальнасці са старымі дакументамі Microsoft Excel, для новых дакументаў ужывайце LCM."
#: analysis.hrc:163
-#, fuzzy
msgctxt "ANALYSIS_Lcm"
msgid "Number"
-msgstr "Number"
+msgstr "Лік"
#: analysis.hrc:164
msgctxt "ANALYSIS_Lcm"
@@ -450,7 +433,6 @@ msgid "Returns the modified Bessel function In(x)"
msgstr "Вяртае мадыфікаваную Беселеву функцыю In(x)"
#: analysis.hrc:170
-#, fuzzy
msgctxt "ANALYSIS_Besseli"
msgid "X"
msgstr "X"
@@ -461,7 +443,6 @@ msgid "The value at which the function is to be evaluated"
msgstr "Аргумент для вылічэння функцыі"
#: analysis.hrc:172
-#, fuzzy
msgctxt "ANALYSIS_Besseli"
msgid "N"
msgstr "N"
@@ -477,7 +458,6 @@ msgid "Returns the Bessel function Jn(x)"
msgstr "Вяртае Беселеву функцыю Jn(x)"
#: analysis.hrc:179
-#, fuzzy
msgctxt "ANALYSIS_Besselj"
msgid "X"
msgstr "X"
diff --git a/source/be/sccomp/messages.po b/source/be/sccomp/messages.po
index aadfdcb3b5c..28223078cba 100644
--- a/source/be/sccomp/messages.po
+++ b/source/be/sccomp/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: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2017-12-17 16:09+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: be\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%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1513526999.000000\n"
#: strings.hrc:25
msgctxt "RID_SOLVER_COMPONENT"
@@ -26,7 +29,7 @@ msgstr "%PRODUCTNAME CoinMP лінейны рашальнік"
#: strings.hrc:27
msgctxt "RID_SWARM_SOLVER_COMPONENT"
msgid "%PRODUCTNAME Swarm Non-Linear Solver (experimental)"
-msgstr ""
+msgstr "Нелінейны вырашальнік Рой %PRODUCTNAME (эксперыментальны)"
#: strings.hrc:28
msgctxt "RID_PROPERTY_NONNEGATIVE"
@@ -56,7 +59,7 @@ msgstr "Limit branch-and-bound depth"
#: strings.hrc:33
msgctxt "RID_PROPERTY_ALGORITHM"
msgid "Swarm algorithm (0 - Differential Evolution, 1 - Particle Swarm Optimization)"
-msgstr ""
+msgstr "Алгарытм рою (0 - дыферэнцыяльная эвалюцыя, 1 - аптымізацыя рою часцінак)"
#: strings.hrc:34
msgctxt "RID_ERROR_NONLINEAR"
diff --git a/source/be/sd/messages.po b/source/be/sd/messages.po
index 66d3cb35b98..a869ae738c1 100644
--- a/source/be/sd/messages.po
+++ b/source/be/sd/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: 2017-11-22 15:29+0100\n"
-"PO-Revision-Date: 2017-12-11 18:50+0000\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
+"PO-Revision-Date: 2017-12-19 16:17+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1513018234.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1513700236.000000\n"
#: DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
@@ -72,37 +72,31 @@ msgid "9"
msgstr "9"
#: DocumentRenderer.hrc:48
-#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
-msgstr "Left to right, then down"
+msgstr "Злева направа, затым уніз"
#: DocumentRenderer.hrc:49
-#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
-msgstr "Top to bottom, then right"
+msgstr "Зверху ўніз, затым направа"
#: DocumentRenderer.hrc:54
-#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Пачатковыя колеры"
#: DocumentRenderer.hrc:55
-#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Шэрыя адценні"
#: DocumentRenderer.hrc:56
-#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Чорна-белы"
#: DocumentRenderer.hrc:61
-#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Пачатковы памер"
@@ -113,7 +107,6 @@ msgid "Fit to printable page"
msgstr "Умяшчаць на друкавальны аркуш"
#: DocumentRenderer.hrc:63
-#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Размеркаваць на некалькі аркушаў"
@@ -124,7 +117,6 @@ msgid "Tile sheet of paper with repeated slides"
msgstr "Запоўніць аркуш паўторамі слайдаў"
#: DocumentRenderer.hrc:69
-#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Пачатковы памер"
@@ -135,7 +127,6 @@ msgid "Fit to printable page"
msgstr "Умясціць на друкавальны аркуш"
#: DocumentRenderer.hrc:71
-#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Размеркаваць на некалькі аркушаў"
@@ -161,19 +152,16 @@ msgid "Back sides / left pages"
msgstr "Заднія бакі / левыя старонкі"
#: DocumentRenderer.hrc:84
-#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "Усе слайды"
#: DocumentRenderer.hrc:85
-#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "Слайды"
#: DocumentRenderer.hrc:86
-#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Пазначанае"
@@ -184,13 +172,11 @@ msgid "~All pages"
msgstr "Усе старонкі"
#: DocumentRenderer.hrc:92
-#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Старонкі"
#: DocumentRenderer.hrc:93
-#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Пазначанае"
@@ -286,22 +272,19 @@ msgid "Close Polygon"
msgstr "Закрыць многавугольнік"
#: strings.hrc:35
-#, fuzzy
msgctxt "STR_SLIDE_SORTER_MODE"
msgid "Slide Sorter"
msgstr "Парадкавальнік слайдаў"
#: strings.hrc:36
-#, fuzzy
msgctxt "STR_NORMAL_MODE"
msgid "Normal"
msgstr "Звычайны"
#: strings.hrc:37
-#, fuzzy
msgctxt "STR_SLIDE_MASTER_MODE"
msgid "Master Slide"
-msgstr "Апошні слайд"
+msgstr "Майстар-слайд"
#: strings.hrc:38
msgctxt "STR_OUTLINE_MODE"
@@ -314,15 +297,14 @@ msgid "Notes"
msgstr "Заўвагі"
#: strings.hrc:40
-#, fuzzy
msgctxt "STR_NOTES_MASTER_MODE"
msgid "Master Notes"
-msgstr "Рэжымы майстра"
+msgstr "Майстар-нататка"
#: strings.hrc:41
msgctxt "STR_HANDOUT_MASTER_MODE"
msgid "Master Handout"
-msgstr ""
+msgstr "Майстар-тэзіс"
#: strings.hrc:42
msgctxt "STR_AUTOLAYOUT_NONE"
@@ -450,10 +432,9 @@ msgid "Notes"
msgstr "Заўвагі"
#: strings.hrc:67
-#, fuzzy
msgctxt "STR_TRANSFORM"
msgid "Transform"
-msgstr "Транспарт"
+msgstr "Трансфармаваць"
#: strings.hrc:68
msgctxt "STR_LINEEND"
@@ -576,7 +557,7 @@ msgstr "Правіць назву і структуру"
#: strings.hrc:90
msgctxt "STR_WAV_FILE"
msgid "Audio"
-msgstr ""
+msgstr "Гук"
#: strings.hrc:91
msgctxt "STR_MIDI_FILE"
@@ -611,17 +592,17 @@ msgstr "Слайд"
#: strings.hrc:97
msgctxt "STR_SD_PAGE_COUNT"
msgid "Slide %1 of %2"
-msgstr ""
+msgstr "Слайд %1 з %2"
#: strings.hrc:98
msgctxt "STR_SD_PAGE_COUNT_CUSTOM"
msgid "Slide %1 of %2 (%3)"
-msgstr ""
+msgstr "Слайд %1 з %2 (%3)"
#: strings.hrc:99
msgctxt "STR_ALL_SUPPORTED_FORMATS"
msgid "All supported formats"
-msgstr ""
+msgstr "Усе падтрыманыя фарматы"
#: strings.hrc:100
msgctxt "STR_ALL_FILES"
@@ -663,7 +644,7 @@ msgstr ""
#: strings.hrc:106
msgctxt "STR_CREATE_PAGES"
msgid "Create Slides"
-msgstr ""
+msgstr "Стварыць слайды"
#: strings.hrc:107
msgctxt "STR_UNDO_CHANGE_PAGEFORMAT"
@@ -681,7 +662,6 @@ msgid "~Edit"
msgstr "Правіць"
#: strings.hrc:110
-#, fuzzy
msgctxt "STR_DELETE_PAGES"
msgid "Delete Slides"
msgstr "Сцерці слайды"
@@ -712,16 +692,14 @@ msgid "This image file version is not supported"
msgstr "Не падтрымліваецца гэта версія графічнага файла"
#: strings.hrc:116
-#, fuzzy
msgctxt "STR_IMPORT_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "Фільтр відарысаў не знойдзены"
#: strings.hrc:117
-#, fuzzy
msgctxt "STR_IMPORT_GRFILTER_TOOBIG"
msgid "Not enough memory to import image"
-msgstr "Недастаткова памяці, каб імпартаваць відарыс."
+msgstr "Недастаткова памяці, каб імпартаваць відарыс"
#: strings.hrc:118
msgctxt "STR_OBJECTS"
@@ -830,7 +808,7 @@ msgstr "Да дакумента"
#: strings.hrc:138
msgctxt "STR_CLICK_ACTION_SOUND"
msgid "Play audio"
-msgstr ""
+msgstr "Прайграць гук"
#: strings.hrc:139
msgctxt "STR_CLICK_ACTION_VERB"
@@ -865,7 +843,7 @@ msgstr "Дзеянне"
#: strings.hrc:145
msgctxt "STR_EFFECTDLG_SOUND"
msgid "Audio"
-msgstr ""
+msgstr "Гук"
#: strings.hrc:146
msgctxt "STR_EFFECTDLG_PAGE_OBJECT"
@@ -1214,7 +1192,6 @@ msgid "Text"
msgstr "Тэкст"
#: strings.hrc:216
-#, fuzzy
msgctxt "STR_HTMLEXP_SETGRAPHIC"
msgid "Image"
msgstr "Відарыс"
@@ -1255,7 +1232,6 @@ msgid "Apply 3D favorite"
msgstr "Ужыць улюбёнае з 3D"
#: strings.hrc:224
-#, fuzzy
msgctxt "STR_UNDO_GRAFFILTER"
msgid "Image filter"
msgstr "Фільтр відарысаў"
@@ -1572,924 +1548,892 @@ msgid "Master Slide"
msgstr "Апошні слайд"
#: strings.hrc:287
+msgctxt "STR_MASTERSLIDE_LABEL"
+msgid "Master Slide:"
+msgstr ""
+
+#: strings.hrc:288
msgctxt "STR_MASTERPAGE_NAME"
msgid "Master Page"
msgstr "Майстар-старонка"
-#: strings.hrc:288
+#: strings.hrc:289
+msgctxt "STR_MASTERPAGE_LABEL"
+msgid "Master Page:"
+msgstr ""
+
+#: strings.hrc:290
msgctxt "STR_NOTES"
msgid "(Notes)"
msgstr "(Заўвагі)"
-#: strings.hrc:289
+#: strings.hrc:291
msgctxt "STR_HANDOUT"
msgid "Handouts"
msgstr "Раздаткі"
-#: strings.hrc:290
+#: strings.hrc:292
msgctxt "STR_PRESOBJ_MPTITLE"
msgid "Click to edit the title text format"
msgstr "Каб правіць фармат загалоўка, «клікніце» мышкай"
-#: strings.hrc:291
+#: strings.hrc:293
msgctxt "STR_PRESOBJ_MPOUTLINE"
msgid "Click to edit the outline text format"
msgstr "Каб правіць фармат структуры, «клікніце» мышкай"
-#: strings.hrc:292
+#: strings.hrc:294
msgctxt "STR_PRESOBJ_MPOUTLLAYER2"
msgid "Second Outline Level"
msgstr "Другі ўзровень структуры"
-#: strings.hrc:293
+#: strings.hrc:295
msgctxt "STR_PRESOBJ_MPOUTLLAYER3"
msgid "Third Outline Level"
msgstr "Трэці ўзровень структуры"
-#: strings.hrc:294
+#: strings.hrc:296
msgctxt "STR_PRESOBJ_MPOUTLLAYER4"
msgid "Fourth Outline Level"
msgstr "Чацвёрты ўзровень структуры"
-#: strings.hrc:295
+#: strings.hrc:297
msgctxt "STR_PRESOBJ_MPOUTLLAYER5"
msgid "Fifth Outline Level"
msgstr "Пяты ўзровень структуры"
-#: strings.hrc:296
+#: strings.hrc:298
msgctxt "STR_PRESOBJ_MPOUTLLAYER6"
msgid "Sixth Outline Level"
msgstr "Шосты ўзровень структуры"
-#: strings.hrc:297
+#: strings.hrc:299
msgctxt "STR_PRESOBJ_MPOUTLLAYER7"
msgid "Seventh Outline Level"
msgstr "Сёмы ўзровень структуры"
-#: strings.hrc:298
+#: strings.hrc:300
msgctxt "STR_PRESOBJ_MPNOTESTITLE"
msgid "Click to move the slide"
msgstr "Каб перамясціць слайд, «клікніце» мышкай"
-#: strings.hrc:299
+#: strings.hrc:301
msgctxt "STR_PRESOBJ_MPNOTESTEXT"
msgid "Click to edit the notes format"
msgstr "Каб правіць фармат заўваг, «клікніце» мышкай"
-#: strings.hrc:300
+#: strings.hrc:302
#, fuzzy
msgctxt "STR_PRESOBJ_TITLE"
msgid "Click to add Title"
msgstr "Клікніце, каб дадаць тэкст"
-#: strings.hrc:301
+#: strings.hrc:303
msgctxt "STR_PRESOBJ_OUTLINE"
msgid "Click to add Text"
msgstr "Клікніце, каб дадаць тэкст"
-#: strings.hrc:302
+#: strings.hrc:304
msgctxt "STR_PRESOBJ_TEXT"
msgid "Click to add Text"
msgstr "Клікніце, каб дадаць тэкст"
-#: strings.hrc:303
+#: strings.hrc:305
#, fuzzy
msgctxt "STR_PRESOBJ_NOTESTEXT"
msgid "Click to add Notes"
msgstr "Клікніце, каб дадаць тэкст"
-#: strings.hrc:304
+#: strings.hrc:306
msgctxt "STR_PRESOBJ_GRAPHIC"
msgid "Double-click to add an Image"
msgstr "Каб дадаць графіку, двойчы-«клікніце» мышкай"
-#: strings.hrc:305
+#: strings.hrc:307
#, fuzzy
msgctxt "STR_PRESOBJ_OBJECT"
msgid "Double-click to add an Object"
msgstr "Каб дадаць графіку, двойчы-«клікніце» мышкай"
-#: strings.hrc:306
+#: strings.hrc:308
#, fuzzy
msgctxt "STR_PRESOBJ_CHART"
msgid "Double-click to add a Chart"
msgstr "Каб дадаць графіку, двойчы-«клікніце» мышкай"
-#: strings.hrc:307
+#: strings.hrc:309
msgctxt "STR_PRESOBJ_ORGCHART"
msgid "Double-click to add an Organization Chart"
msgstr ""
-#: strings.hrc:308
+#: strings.hrc:310
msgctxt "STR_PRESOBJ_TABLE"
msgid "Double-click to add a Spreadsheet"
msgstr ""
-#: strings.hrc:309
+#: strings.hrc:311
msgctxt "STR_LAYOUT_DEFAULT_NAME"
msgid "Default"
msgstr "Прадвызначана"
-#: strings.hrc:310
+#: strings.hrc:312
msgctxt "STR_LAYOUT_DEFAULT_TITLE_NAME"
msgid "Title"
msgstr "Загаловак"
-#: strings.hrc:311
+#: strings.hrc:313
msgctxt "STR_STANDARD_STYLESHEET_NAME"
msgid "Default"
msgstr "Прадвызначана"
-#: strings.hrc:312
+#: strings.hrc:314
msgctxt "STR_UNDO_MOVEPAGES"
msgid "Move slides"
msgstr "Перамясціць слайды"
-#: strings.hrc:313
+#: strings.hrc:315
msgctxt "STR_POOLSHEET_MEASURE"
msgid "Dimension Line"
msgstr "Мерная лінія"
-#: strings.hrc:314
+#: strings.hrc:316
msgctxt "STR_POOLSHEET_OBJNOLINENOFILL"
msgid "Object with no fill and no line"
msgstr "Аб'ект без заліўкі і ліній"
-#: strings.hrc:315
+#: strings.hrc:317
msgctxt "STR_POOLSHEET_OBJWITHARROW"
msgid "Object with arrow"
msgstr "Аб'ект са стрэлкаю"
-#: strings.hrc:316
+#: strings.hrc:318
msgctxt "STR_POOLSHEET_OBJWITHSHADOW"
msgid "Object with shadow"
msgstr "Аб'ект з ценем"
-#: strings.hrc:317
+#: strings.hrc:319
msgctxt "STR_POOLSHEET_OBJWITHOUTFILL"
msgid "Object without fill"
msgstr "Аб'ект без заліўкі"
-#: strings.hrc:318
+#: strings.hrc:320
msgctxt "STR_POOLSHEET_TEXT"
msgid "Text"
msgstr "Тэкст"
-#: strings.hrc:319
+#: strings.hrc:321
msgctxt "STR_POOLSHEET_TEXTBODY"
msgid "Text body"
msgstr "Тэкст галоўны"
-#: strings.hrc:320
+#: strings.hrc:322
msgctxt "STR_POOLSHEET_TEXTBODY_JUSTIFY"
msgid "Text body justified"
msgstr "Тэкст галоўны, да шырыні"
-#: strings.hrc:321
+#: strings.hrc:323
msgctxt "STR_POOLSHEET_TEXTBODY_INDENT"
msgid "First line indent"
msgstr "Тэкст галоўны з чырвонага радка"
-#: strings.hrc:322
+#: strings.hrc:324
msgctxt "STR_POOLSHEET_TITLE"
msgid "Title"
msgstr "Назва"
-#: strings.hrc:323
+#: strings.hrc:325
msgctxt "STR_POOLSHEET_TITLE1"
msgid "Title1"
msgstr "Назва1"
-#: strings.hrc:324
+#: strings.hrc:326
msgctxt "STR_POOLSHEET_TITLE2"
msgid "Title2"
msgstr "Назва2"
-#: strings.hrc:325
+#: strings.hrc:327
msgctxt "STR_POOLSHEET_HEADLINE"
msgid "Heading"
msgstr "Загаловак"
-#: strings.hrc:326
+#: strings.hrc:328
msgctxt "STR_POOLSHEET_HEADLINE1"
msgid "Heading1"
msgstr "Загаловак1"
-#: strings.hrc:327
+#: strings.hrc:329
msgctxt "STR_POOLSHEET_HEADLINE2"
msgid "Heading2"
msgstr "Загаловак2"
-#: strings.hrc:328
+#: strings.hrc:330
msgctxt "STR_PSEUDOSHEET_TITLE"
msgid "Title"
msgstr "Назва"
-#: strings.hrc:329
+#: strings.hrc:331
msgctxt "STR_PSEUDOSHEET_SUBTITLE"
msgid "Subtitle"
msgstr "Падзагаловак"
-#: strings.hrc:330
+#: strings.hrc:332
msgctxt "STR_PSEUDOSHEET_OUTLINE"
msgid "Outline"
msgstr "Outline"
-#: strings.hrc:331
+#: strings.hrc:333
msgctxt "STR_PSEUDOSHEET_BACKGROUNDOBJECTS"
msgid "Background objects"
msgstr "Аб'екты фону"
-#: strings.hrc:332
+#: strings.hrc:334
msgctxt "STR_PSEUDOSHEET_BACKGROUND"
msgid "Background"
msgstr "Фон"
-#: strings.hrc:333
+#: strings.hrc:335
msgctxt "STR_PSEUDOSHEET_NOTES"
msgid "Notes"
msgstr "Заўвагі"
-#: strings.hrc:334
+#: strings.hrc:336
msgctxt "STR_POWERPOINT_IMPORT"
msgid "PowerPoint Import"
msgstr "Імпартаваць з PowerPoint"
-#: strings.hrc:335
+#: strings.hrc:337
msgctxt "STR_SAVE_DOC"
msgid "Save Document"
msgstr "Запісаць дакумент"
-#: strings.hrc:336
+#: strings.hrc:338
msgctxt "STR_POOLSHEET_BANDED_CELL"
msgid "Banding cell"
msgstr "Banding cell"
-#: strings.hrc:337
+#: strings.hrc:339
msgctxt "STR_POOLSHEET_HEADER"
msgid "Header"
msgstr "Калантытул верхні"
-#: strings.hrc:338
+#: strings.hrc:340
msgctxt "STR_POOLSHEET_TOTAL"
msgid "Total line"
msgstr "Радок выніку"
-#: strings.hrc:339
+#: strings.hrc:341
msgctxt "STR_POOLSHEET_FIRST_COLUMN"
msgid "First column"
msgstr "Першая калонка"
-#: strings.hrc:340
+#: strings.hrc:342
msgctxt "STR_POOLSHEET_LAST_COLUMN"
msgid "Last column"
msgstr "Апошняя калонка"
-#: strings.hrc:341
+#: strings.hrc:343
msgctxt "STR_ENTER_PIN"
msgid "Enter PIN:"
-msgstr ""
+msgstr "Увядзіце PIN:"
-#: strings.hrc:342
+#: strings.hrc:344
msgctxt "STR_DEAUTHORISE_CLIENT"
msgid "Remove client authorisation"
msgstr ""
-#: strings.hrc:343
-#, fuzzy
+#: strings.hrc:345
msgctxt "STR_SHRINK_FONT_SIZE"
msgid "Shrink font size"
msgstr "Зменшыць памер шрыфту"
-#: strings.hrc:344
-#, fuzzy
+#: strings.hrc:346
msgctxt "STR_GROW_FONT_SIZE"
msgid "Grow font size"
msgstr "Павялічыць памер шрыфту"
#. Names and descriptions of the Draw/Impress accessibility views
#. ==============================================================
-#: strings.hrc:349
+#: strings.hrc:351
msgctxt "SID_SD_A11Y_D_DRAWVIEW_N"
msgid "Drawing View"
msgstr "Від: рысункі"
-#: strings.hrc:350
+#: strings.hrc:352
msgctxt "SID_SD_A11Y_D_DRAWVIEW_D"
msgid "This is where you create and edit drawings."
msgstr "Тут можна ствараць і правіць рысункі."
-#: strings.hrc:351
+#: strings.hrc:353
msgctxt "SID_SD_A11Y_I_DRAWVIEW_N"
msgid "Drawing View"
msgstr "Від: рысункі"
-#: strings.hrc:352
+#: strings.hrc:354
msgctxt "SID_SD_A11Y_I_DRAWVIEW_D"
msgid "This is where you create and edit slides."
msgstr "Тут можна ствараць і правіць слайды."
-#: strings.hrc:353
+#: strings.hrc:355
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_N"
msgid "Outline View"
msgstr "Від: структура"
-#: strings.hrc:354
+#: strings.hrc:356
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_D"
msgid "This is where you enter or edit text in list form."
msgstr "Тут можна ўводзіць або правіць тэкст у выглядзе спісу."
-#: strings.hrc:355
+#: strings.hrc:357
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_N"
msgid "Slides View"
msgstr "Від: слайды"
-#: strings.hrc:356
+#: strings.hrc:358
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_D"
msgid "This is where you sort slides."
msgstr "Тут можна парадкаваць слайды."
-#: strings.hrc:357
+#: strings.hrc:359
msgctxt "SID_SD_A11Y_I_NOTESVIEW_N"
msgid "Notes View"
msgstr "Від: заўвагі"
-#: strings.hrc:358
+#: strings.hrc:360
msgctxt "SID_SD_A11Y_I_NOTESVIEW_D"
msgid "This is where you enter and view notes."
msgstr "Тут можна ўводзіць і праглядаць заўвагі."
-#: strings.hrc:359
+#: strings.hrc:361
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_N"
msgid "Handout View"
msgstr "Від: раздаткі"
-#: strings.hrc:360
+#: strings.hrc:362
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_D"
msgid "This is where you decide on the layout for handouts."
msgstr "Тут можна выбіраць выгляд раздаткаў."
-#: strings.hrc:361
-#, fuzzy
+#: strings.hrc:363
msgctxt "SID_SD_A11Y_P_TITLE_N"
msgid "PresentationTitle"
-msgstr "Стылі прэзентацый"
+msgstr "Загаловак прэзентацыі"
-#: strings.hrc:362
-#, fuzzy
+#: strings.hrc:364
msgctxt "SID_SD_A11Y_P_OUTLINER_N"
msgid "PresentationOutliner"
-msgstr "Стылі прэзентацый"
+msgstr "Структура прэзентацыі"
-#: strings.hrc:363
+#: strings.hrc:365
#, fuzzy
msgctxt "SID_SD_A11Y_P_SUBTITLE_N"
msgid "PresentationSubtitle"
msgstr "Стылі прэзентацый"
-#: strings.hrc:364
+#: strings.hrc:366
#, fuzzy
msgctxt "SID_SD_A11Y_P_PAGE_N"
msgid "PresentationPage"
msgstr "Рэжым прэзентацыі"
-#: strings.hrc:365
+#: strings.hrc:367
#, fuzzy
msgctxt "SID_SD_A11Y_P_NOTES_N"
msgid "PresentationNotes"
msgstr "Стылі прэзентацый"
-#: strings.hrc:366
+#: strings.hrc:368
#, fuzzy
msgctxt "SID_SD_A11Y_P_HANDOUT_N"
msgid "Handout"
msgstr "Раздатак"
-#: strings.hrc:367
+#: strings.hrc:369
msgctxt "SID_SD_A11Y_P_UNKNOWN_N"
msgid "UnknownAccessiblePresentationShape"
msgstr ""
-#: strings.hrc:368
+#: strings.hrc:370
#, fuzzy
msgctxt "SID_SD_A11Y_P_TITLE_D"
msgid "PresentationTitleShape"
msgstr "Стылі прэзентацый"
-#: strings.hrc:369
+#: strings.hrc:371
msgctxt "SID_SD_A11Y_P_OUTLINER_D"
msgid "PresentationOutlinerShape"
msgstr ""
-#: strings.hrc:370
+#: strings.hrc:372
msgctxt "SID_SD_A11Y_P_SUBTITLE_D"
msgid "PresentationSubtitleShape"
msgstr ""
-#: strings.hrc:371
+#: strings.hrc:373
#, fuzzy
msgctxt "SID_SD_A11Y_P_PAGE_D"
msgid "PresentationPageShape"
msgstr "Рэжым прэзентацыі"
-#: strings.hrc:372
+#: strings.hrc:374
#, fuzzy
msgctxt "SID_SD_A11Y_P_NOTES_D"
msgid "PresentationNotesShape"
msgstr "Стылі прэзентацый"
-#: strings.hrc:373
+#: strings.hrc:375
msgctxt "SID_SD_A11Y_P_HANDOUT_D"
msgid "PresentationHandoutShape"
msgstr ""
-#: strings.hrc:374
+#: strings.hrc:376
msgctxt "SID_SD_A11Y_P_UNKNOWN_D"
msgid "Unknown accessible presentation shape"
msgstr ""
-#: strings.hrc:375
+#: strings.hrc:377
#, fuzzy
msgctxt "SID_SD_A11Y_P_FOOTER_N"
msgid "PresentationFooter"
msgstr "Рэжым прэзентацыі"
-#: strings.hrc:376
+#: strings.hrc:378
#, fuzzy
msgctxt "SID_SD_A11Y_P_FOOTER_D"
msgid "PresentationFooterShape"
msgstr "Рэжым прэзентацыі"
-#: strings.hrc:377
+#: strings.hrc:379
#, fuzzy
msgctxt "SID_SD_A11Y_P_HEADER_N"
msgid "PresentationHeader"
msgstr "Рэжым прэзентацыі"
-#: strings.hrc:378
+#: strings.hrc:380
#, fuzzy
msgctxt "SID_SD_A11Y_P_HEADER_D"
msgid "PresentationHeaderShape"
msgstr "Рэжым прэзентацыі"
-#: strings.hrc:379
+#: strings.hrc:381
msgctxt "SID_SD_A11Y_P_DATE_N"
msgid "PresentationDateAndTime"
msgstr ""
-#: strings.hrc:380
+#: strings.hrc:382
msgctxt "SID_SD_A11Y_P_DATE_D"
msgid "PresentationDateAndTimeShape"
msgstr ""
-#: strings.hrc:381
+#: strings.hrc:383
msgctxt "SID_SD_A11Y_P_NUMBER_N"
msgid "PresentationPageNumber"
msgstr ""
-#: strings.hrc:382
+#: strings.hrc:384
msgctxt "SID_SD_A11Y_P_NUMBER_D"
msgid "PresentationPageNumberShape"
msgstr ""
-#: strings.hrc:383
+#: strings.hrc:385
#, fuzzy
msgctxt "SID_SD_A11Y_D_PRESENTATION"
msgid "%PRODUCTNAME Presentation"
msgstr "Прэзентацыя %PRODUCTNAME"
-#: strings.hrc:384
-#, fuzzy
+#: strings.hrc:386
msgctxt "SID_SD_A11Y_P_TITLE_N_STYLE"
msgid "Title"
msgstr "Загаловак"
-#: strings.hrc:385
-#, fuzzy
+#: strings.hrc:387
msgctxt "SID_SD_A11Y_P_OUTLINER_N_STYLE"
msgid "Outliner"
msgstr "Контур"
-#: strings.hrc:386
-#, fuzzy
+#: strings.hrc:388
msgctxt "SID_SD_A11Y_P_SUBTITLE_N_STYLE"
msgid "Subtitle"
msgstr "Падзагаловак"
-#: strings.hrc:387
+#: strings.hrc:389
msgctxt "SID_SD_A11Y_P_PAGE_N_STYLE"
msgid "Page"
msgstr "Старонка"
-#: strings.hrc:388
-#, fuzzy
+#: strings.hrc:390
msgctxt "SID_SD_A11Y_P_NOTES_N_STYLE"
msgid "Notes"
msgstr "Заўвагі"
-#: strings.hrc:389
-#, fuzzy
+#: strings.hrc:391
msgctxt "SID_SD_A11Y_P_HANDOUT_N_STYLE"
msgid "Handout"
msgstr "Раздатак"
-#: strings.hrc:390
+#: strings.hrc:392
msgctxt "SID_SD_A11Y_P_UNKNOWN_N_STYLE"
msgid "Unknown Accessible Presentation Shape"
msgstr ""
-#: strings.hrc:391
-#, fuzzy
+#: strings.hrc:393
msgctxt "SID_SD_A11Y_P_FOOTER_N_STYLE"
msgid "Footer"
msgstr "Калантытул ніжні"
-#: strings.hrc:392
-#, fuzzy
+#: strings.hrc:394
msgctxt "SID_SD_A11Y_P_HEADER_N_STYLE"
msgid "Header"
msgstr "Калантытул верхні"
-#: strings.hrc:393
-#, fuzzy
+#: strings.hrc:395
msgctxt "SID_SD_A11Y_P_DATE_N_STYLE"
msgid "Date"
msgstr "Дата"
-#: strings.hrc:394
-#, fuzzy
+#: strings.hrc:396
msgctxt "SID_SD_A11Y_P_NUMBER_N_STYLE"
msgid "Number"
msgstr "Лічба"
-#: strings.hrc:395
-#, fuzzy
+#: strings.hrc:397
msgctxt "SID_SD_A11Y_D_PRESENTATION_READONLY"
msgid "(read-only)"
msgstr "(толькі-чытаць)"
-#: strings.hrc:397
+#: strings.hrc:399
msgctxt "STR_CUSTOMANIMATION_REPEAT_NONE"
msgid "none"
msgstr "none"
-#: strings.hrc:398
+#: strings.hrc:400
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_NEXT_CLICK"
msgid "Until next click"
msgstr "Да наступнага націскання"
-#: strings.hrc:399
+#: strings.hrc:401
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_END_OF_SLIDE"
msgid "Until end of slide"
msgstr "Да заканчэння слайда"
-#: strings.hrc:400
+#: strings.hrc:402
msgctxt "STR_CUSTOMANIMATION_DIRECTION_PROPERTY"
msgid "Direction:"
msgstr "Накірунак:"
-#: strings.hrc:401
-#, fuzzy
+#: strings.hrc:403
msgctxt "STR_CUSTOMANIMATION_ZOOM_PROPERTY"
msgid "Zoom:"
msgstr "Маштаб:"
-#: strings.hrc:402
-#, fuzzy
+#: strings.hrc:404
msgctxt "STR_CUSTOMANIMATION_SPOKES_PROPERTY"
msgid "Spokes:"
-msgstr "Спіцы"
+msgstr "Спіцы:"
-#: strings.hrc:403
-#, fuzzy
+#: strings.hrc:405
msgctxt "STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY"
msgid "First color:"
-msgstr "Першая калонка"
+msgstr "Першы колер:"
-#: strings.hrc:404
-#, fuzzy
+#: strings.hrc:406
msgctxt "STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY"
msgid "Second color:"
-msgstr "Другі колер"
+msgstr "Другі колер:"
-#: strings.hrc:405
-#, fuzzy
+#: strings.hrc:407
msgctxt "STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY"
msgid "Fill color:"
-msgstr "Першая калонка"
+msgstr "Колер запаўнення:"
-#: strings.hrc:406
+#: strings.hrc:408
msgctxt "STR_CUSTOMANIMATION_STYLE_PROPERTY"
msgid "Style:"
msgstr "Стыль:"
-#: strings.hrc:407
-#, fuzzy
+#: strings.hrc:409
msgctxt "STR_CUSTOMANIMATION_FONT_PROPERTY"
msgid "Font:"
msgstr "Шрыфт:"
-#: strings.hrc:408
-#, fuzzy
+#: strings.hrc:410
msgctxt "STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY"
msgid "Font color:"
-msgstr "Першая калонка"
+msgstr "Колер шрыфту:"
-#: strings.hrc:409
+#: strings.hrc:411
msgctxt "STR_CUSTOMANIMATION_FONT_SIZE_STYLE_PROPERTY"
msgid "Style:"
msgstr "Стыль:"
-#: strings.hrc:410
+#: strings.hrc:412
msgctxt "STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY"
msgid "Typeface:"
msgstr "Гарнітура:"
-#: strings.hrc:411
-#, fuzzy
+#: strings.hrc:413
msgctxt "STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY"
msgid "Line color:"
msgstr "Колер лініі:"
-#: strings.hrc:412
-#, fuzzy
+#: strings.hrc:414
msgctxt "STR_CUSTOMANIMATION_SIZE_PROPERTY"
msgid "Font size:"
msgstr "Памер шрыфту:"
-#: strings.hrc:413
-#, fuzzy
+#: strings.hrc:415
msgctxt "STR_CUSTOMANIMATION_SCALE_PROPERTY"
msgid "Size:"
-msgstr "Памер"
+msgstr "Памер:"
-#: strings.hrc:414
-#, fuzzy
+#: strings.hrc:416
msgctxt "STR_CUSTOMANIMATION_AMOUNT_PROPERTY"
msgid "Amount:"
-msgstr "Колькасць"
+msgstr "Колькасць:"
-#: strings.hrc:415
-#, fuzzy
+#: strings.hrc:417
msgctxt "STR_CUSTOMANIMATION_COLOR_PROPERTY"
msgid "Color:"
-msgstr "Колер"
+msgstr "Колер:"
-#: strings.hrc:416
+#: strings.hrc:418
msgctxt "STR_CUSTOMANIMATION_NO_SOUND"
msgid "(No sound)"
msgstr "(без гуку)"
-#: strings.hrc:417
+#: strings.hrc:419
msgctxt "STR_CUSTOMANIMATION_STOP_PREVIOUS_SOUND"
msgid "(Stop previous sound)"
msgstr "(спыніць папярэдні гук)"
-#: strings.hrc:418
+#: strings.hrc:420
msgctxt "STR_CUSTOMANIMATION_BROWSE_SOUND"
msgid "Other sound..."
msgstr "Іншы гук..."
-#: strings.hrc:419
+#: strings.hrc:421
msgctxt "STR_CUSTOMANIMATION_SAMPLE"
msgid "Sample"
msgstr "Спроба"
-#: strings.hrc:420
+#: strings.hrc:422
msgctxt "STR_CUSTOMANIMATION_TRIGGER"
msgid "Trigger"
msgstr "Актываваць"
-#: strings.hrc:421
+#: strings.hrc:423
msgctxt "STR_CUSTOMANIMATION_LIST_HELPTEXT"
msgid "First select the slide element and then click 'Add...' to add an animation effect."
msgstr "Спачатку выберыце слайдавы элемент, тады націсніце \"Дадаць...\", каб дадаць анімавальны эфект."
-#: strings.hrc:422
+#: strings.hrc:424
msgctxt "STR_CUSTOMANIMATION_USERPATH"
msgid "User paths"
-msgstr ""
+msgstr "Адмысловыя шляхі"
-#: strings.hrc:423
+#: strings.hrc:425
msgctxt "STR_CUSTOMANIMATION_ENTRANCE"
msgid "Entrance: %1"
msgstr ""
-#: strings.hrc:424
-#, fuzzy
+#: strings.hrc:426
msgctxt "STR_CUSTOMANIMATION_EMPHASIS"
msgid "Emphasis: %1"
msgstr "Выдзяленне: %1"
-#: strings.hrc:425
+#: strings.hrc:427
msgctxt "STR_CUSTOMANIMATION_EXIT"
msgid "Exit: %1"
-msgstr ""
+msgstr "Выхад: %1"
-#: strings.hrc:426
-#, fuzzy
+#: strings.hrc:428
msgctxt "STR_CUSTOMANIMATION_MOTION_PATHS"
msgid "Motion Paths: %1"
-msgstr "Сцежкі руху"
+msgstr "Сцежкі руху: %1"
-#: strings.hrc:427
-#, fuzzy
+#: strings.hrc:429
msgctxt "STR_SLIDETRANSITION_NONE"
msgid "None"
-msgstr "none"
+msgstr "Няма"
-#: strings.hrc:429
+#: strings.hrc:431
msgctxt "STR_ANNOTATION_TODAY"
msgid "Today,"
msgstr "Сёння,"
-#: strings.hrc:430
+#: strings.hrc:432
msgctxt "STR_ANNOTATION_YESTERDAY"
msgid "Yesterday,"
msgstr "Учора,"
-#: strings.hrc:431
+#: strings.hrc:433
msgctxt "STR_ANNOTATION_NOAUTHOR"
msgid "(no author)"
msgstr "(без аўтара)"
-#: strings.hrc:432
+#: strings.hrc:434
msgctxt "STR_ANNOTATION_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress reached the end of the presentation. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Impress давёў пошук да заканчэння прэзентацыі. Ці працягваць пошук ад пачатку?"
-#: strings.hrc:433
+#: strings.hrc:435
msgctxt "STR_ANNOTATION_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress reached the beginning of the presentation. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Impress давёў пошук да пачатку прэзентацыі. Ці працягваць пошук ад заканчэння?"
-#: strings.hrc:434
+#: strings.hrc:436
msgctxt "STR_ANNOTATION_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the end of the document. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Draw reached the end of the document. Do you want to continue at the beginning?"
-#: strings.hrc:435
+#: strings.hrc:437
msgctxt "STR_ANNOTATION_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the beginning of the document. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Draw reached the beginning of the document. Do you want to continue at the end?"
-#: strings.hrc:436
+#: strings.hrc:438
msgctxt "STR_ANNOTATION_UNDO_INSERT"
msgid "Insert Comment"
msgstr "Уставіць заўвагу"
-#: strings.hrc:437
+#: strings.hrc:439
msgctxt "STR_ANNOTATION_UNDO_DELETE"
msgid "Delete Comment(s)"
msgstr "Сцерці заўвагу(-і)"
-#: strings.hrc:438
+#: strings.hrc:440
msgctxt "STR_ANNOTATION_UNDO_MOVE"
msgid "Move Comment"
msgstr "Перанесці заўвагу"
-#: strings.hrc:439
+#: strings.hrc:441
msgctxt "STR_ANNOTATION_UNDO_EDIT"
msgid "Edit Comment"
msgstr "Правіць заўвагу"
-#: strings.hrc:440
+#: strings.hrc:442
msgctxt "STR_ANNOTATION_REPLY"
msgid "Reply to %1"
msgstr "Заўвага на %1"
-#: strings.hrc:442
+#: strings.hrc:444
msgctxt "RID_DRAW_MEDIA_TOOLBOX"
msgid "Media Playback"
msgstr "Узнаўлянне мультымедый"
-#: strings.hrc:443
+#: strings.hrc:445
msgctxt "RID_DRAW_TABLE_TOOLBOX"
msgid "Table"
msgstr "Табліца"
-#: strings.hrc:445
-#, fuzzy
+#: strings.hrc:447
msgctxt "STR_IMPRESS_PRINT_UI_GROUP_NAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: strings.hrc:446
-#, fuzzy
+#: strings.hrc:448
msgctxt "STR_IMPRESS_PRINT_UI_PRINT_GROUP"
msgid "Print"
-msgstr "Друкаваць"
+msgstr "Друк"
-#: strings.hrc:447
+#: strings.hrc:449
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT"
msgid "Document"
msgstr "Дакумент"
-#: strings.hrc:448
+#: strings.hrc:450
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE"
msgid "Slides per page"
msgstr "Слайдаў на старонку"
-#: strings.hrc:449
+#: strings.hrc:451
msgctxt "STR_IMPRESS_PRINT_UI_ORDER"
msgid "Order"
msgstr "Парадак"
-#: strings.hrc:450
-#, fuzzy
+#: strings.hrc:452
msgctxt "STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT"
msgid "~Contents"
msgstr "Змесціва"
-#: strings.hrc:451
-#, fuzzy
+#: strings.hrc:453
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_NAME"
msgid "~Slide name"
msgstr "Назва слайда"
-#: strings.hrc:452
-#, fuzzy
+#: strings.hrc:454
msgctxt "STR_DRAW_PRINT_UI_IS_PRINT_NAME"
msgid "P~age name"
msgstr "Назва старонкі"
-#: strings.hrc:453
-#, fuzzy
+#: strings.hrc:455
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_DATE"
msgid "~Date and time"
msgstr "Дата і час"
-#: strings.hrc:454
+#: strings.hrc:456
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_HIDDEN"
msgid "Hidden pages"
msgstr "Прыхаваныя старонкі"
-#: strings.hrc:455
-#, fuzzy
+#: strings.hrc:457
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY"
msgid "Color"
msgstr "Колер"
-#: strings.hrc:456
-#, fuzzy
+#: strings.hrc:458
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS"
msgid "~Size"
msgstr "Памер"
-#: strings.hrc:457
-#, fuzzy
+#: strings.hrc:459
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE"
msgid "Brochure"
msgstr "Брашура"
-#: strings.hrc:458
+#: strings.hrc:460
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_SIDES"
msgid "Page sides"
msgstr "Бакі аркушаў"
-#: strings.hrc:459
-#, fuzzy
+#: strings.hrc:461
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE"
msgid "Include"
msgstr "Улучаць"
-#: strings.hrc:460
-#, fuzzy
+#: strings.hrc:462
msgctxt "STR_IMPRESS_PRINT_UI_PAPER_TRAY"
msgid "~Use only paper tray from printer preferences"
msgstr "Папера толькі з падачы, запісанай у настаўленнях прынтара"
-#: strings.hrc:461
-#, fuzzy
+#: strings.hrc:463
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE"
msgid "Print range"
msgstr "Абсяг друкавання"
-#: strings.hrc:463
+#: strings.hrc:465
msgctxt "STR_SAR_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress has searched to the end of the presentation. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Impress давёў пошук да заканчэння дакумента. Ці працягваць пошук ад пачатку дакумента?"
-#: strings.hrc:464
+#: strings.hrc:466
msgctxt "STR_SAR_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress has searched to the beginning of the presentation. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Impress давёў пошук да пачатку дакумента. Ці працягваць пошук ад заканчэння дакумента?"
-#: strings.hrc:465
+#: strings.hrc:467
msgctxt "STR_SAR_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the end of the document. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Draw давёў пошук да заканчэння дакумента. Ці працягваць пошук ад пачатку дакумента?"
-#: strings.hrc:466
+#: strings.hrc:468
msgctxt "STR_SAR_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the beginning of the document. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Draw давёў пошук да пачатку дакумента. Ці працягваць пошук ад заканчэння дакумента?"
-#: strings.hrc:468
-#, fuzzy
+#: strings.hrc:470
msgctxt "STR_SD_NONE"
msgid "- None -"
-msgstr "- няма -"
+msgstr "- Няма -"
#: annotationmenu.ui:13
msgctxt "annotationmenu|reply"
@@ -2497,31 +2441,26 @@ msgid "_Reply"
msgstr "_Адказаць"
#: annotationmenu.ui:28
-#, fuzzy
msgctxt "annotationmenu|bold"
msgid "_Bold"
msgstr "Цёмны"
#: annotationmenu.ui:37
-#, fuzzy
msgctxt "annotationmenu|italic"
msgid "_Italic"
msgstr "Курсіў"
#: annotationmenu.ui:46
-#, fuzzy
msgctxt "annotationmenu|underline"
msgid "_Underline"
msgstr "Падкрэслены"
#: annotationmenu.ui:55
-#, fuzzy
msgctxt "annotationmenu|strike"
msgid "_Strikethrough"
msgstr "Закрэслены"
#: annotationmenu.ui:70
-#, fuzzy
msgctxt "annotationmenu|copy"
msgid "_Copy"
msgstr "Капіраваць"
@@ -2532,19 +2471,16 @@ msgid "_Paste"
msgstr "Уставіць"
#: annotationmenu.ui:94
-#, fuzzy
msgctxt "annotationmenu|delete"
msgid "_Delete Comment"
-msgstr "Сцерці заўвагу(-і)"
+msgstr "Сцерці заўвагу"
#: annotationmenu.ui:103
-#, fuzzy
msgctxt "annotationmenu|deleteby"
msgid "Delete All Comments b_y %1"
msgstr "Сцерці ўсе заўвагі аўтарства %1"
#: annotationmenu.ui:112
-#, fuzzy
msgctxt "annotationmenu|deleteall"
msgid "Delete _All Comments"
msgstr "Сцерці ўсе заўвагі"
@@ -2555,19 +2491,16 @@ msgid "_Reply"
msgstr "_Адказаць"
#: annotationtagmenu.ui:26
-#, fuzzy
msgctxt "annotationtagmenu|delete"
msgid "_Delete Comment"
-msgstr "Сцерці заўвагу(-і)"
+msgstr "Сцерці заўвагу"
#: annotationtagmenu.ui:34
-#, fuzzy
msgctxt "annotationtagmenu|deleteby"
msgid "Delete All Comments b_y %1"
msgstr "Сцерці ўсе заўвагі аўтарства %1"
#: annotationtagmenu.ui:42
-#, fuzzy
msgctxt "annotationtagmenu|deleteall"
msgid "Delete _All Comments"
msgstr "Сцерці ўсе заўвагі"
@@ -2608,19 +2541,16 @@ msgid "_Direction:"
msgstr "Накірунак:"
#: customanimationeffecttab.ui:90
-#, fuzzy
msgctxt "customanimationeffecttab|smooth_start"
msgid "Accelerated start"
msgstr "Паскораны старт"
#: customanimationeffecttab.ui:104
-#, fuzzy
msgctxt "customanimationeffecttab|smooth_end"
msgid "Decelerated end"
msgstr "Запаволенае заканчэнне"
#: customanimationeffecttab.ui:131
-#, fuzzy
msgctxt "customanimationeffecttab|label3"
msgid "Settings"
msgstr "Настаўленні"
@@ -2628,10 +2558,9 @@ msgstr "Настаўленні"
#: customanimationeffecttab.ui:169
msgctxt "customanimationeffecttab|aeffect_label"
msgid "A_fter animation:"
-msgstr ""
+msgstr "Пасля анімавання:"
#: customanimationeffecttab.ui:183
-#, fuzzy
msgctxt "customanimationeffecttab|sound_label"
msgid "_Sound:"
msgstr "Гук:"
@@ -2647,7 +2576,6 @@ msgid "Di_m color:"
msgstr ""
#: customanimationeffecttab.ui:288
-#, fuzzy
msgctxt "customanimationeffecttab|text_delay_label"
msgid "delay between characters"
msgstr "затрымка між знакамі"
@@ -2655,22 +2583,22 @@ msgstr "затрымка між знакамі"
#: customanimationeffecttab.ui:307
msgctxt "customanimationeffecttab|aeffect_list"
msgid "Don't dim"
-msgstr ""
+msgstr "Не сцямняць"
#: customanimationeffecttab.ui:308
msgctxt "customanimationeffecttab|aeffect_list"
msgid "Dim with color"
-msgstr ""
+msgstr "Сцямняць праз колер"
#: customanimationeffecttab.ui:309
msgctxt "customanimationeffecttab|aeffect_list"
msgid "Hide after animation"
-msgstr ""
+msgstr "Не паказваць пасля анімавання"
#: customanimationeffecttab.ui:310
msgctxt "customanimationeffecttab|aeffect_list"
msgid "Hide on next animation"
-msgstr ""
+msgstr "Не паказваць пры наступным анімаванні"
#: customanimationeffecttab.ui:323
msgctxt "customanimationeffecttab|text_animation_list"
@@ -2678,7 +2606,6 @@ msgid "All at once"
msgstr ""
#: customanimationeffecttab.ui:324
-#, fuzzy
msgctxt "customanimationeffecttab|text_animation_list"
msgid "Word by word"
msgstr "Слова па слове"
@@ -2686,30 +2613,27 @@ msgstr "Слова па слове"
#: customanimationeffecttab.ui:325
msgctxt "customanimationeffecttab|text_animation_list"
msgid "Letter by letter"
-msgstr ""
+msgstr "Літара па літары"
#: customanimationeffecttab.ui:344
msgctxt "customanimationeffecttab|label4"
msgid "Enhancement"
-msgstr ""
+msgstr "Паляпшэнне"
#: customanimationproperties.ui:8
-#, fuzzy
msgctxt "customanimationproperties|CustomAnimationProperties"
msgid "Effect Options"
-msgstr "Настаўленні эфектаў..."
+msgstr "Настаўленні эфектаў"
#: customanimationproperties.ui:91
-#, fuzzy
msgctxt "customanimationproperties|effect"
msgid "Effect"
-msgstr "Эфект:"
+msgstr "Эфект"
#: customanimationproperties.ui:113
-#, fuzzy
msgctxt "customanimationproperties|timing"
msgid "Timing"
-msgstr "Працягласць"
+msgstr "Хранаметраж"
#: customanimationproperties.ui:136
msgctxt "customanimationproperties|textanim"
@@ -2717,49 +2641,41 @@ msgid "Text Animation"
msgstr "Анімаваны тэкст"
#: customanimationspanel.ui:91
-#, fuzzy
msgctxt "customanimationspanel|add_effect|tooltip_text"
msgid "Add Effect"
msgstr "Дадаць эфект"
#: customanimationspanel.ui:106
-#, fuzzy
msgctxt "customanimationspanel|remove_effect|tooltip_text"
msgid "Remove Effect"
msgstr "Прыбраць эфект"
#: customanimationspanel.ui:121
-#, fuzzy
msgctxt "customanimationspanel|move_up|tooltip_text"
msgid "Move Up"
msgstr "Пасунуць уверх"
#: customanimationspanel.ui:136
-#, fuzzy
msgctxt "customanimationspanel|move_down|tooltip_text"
msgid "Move Down"
msgstr "Пасунуць уніз"
#: customanimationspanel.ui:164
-#, fuzzy
msgctxt "customanimationspanel|categorylabel"
msgid "Category:"
msgstr "Катэгорыя:"
#: customanimationspanel.ui:178
-#, fuzzy
msgctxt "customanimationspanel|effectlabel"
msgid "Effect:"
msgstr "Эфект:"
#: customanimationspanel.ui:193
-#, fuzzy
msgctxt "customanimationspanel|categorylb"
msgid "Entrance"
msgstr "Уваход"
#: customanimationspanel.ui:194
-#, fuzzy
msgctxt "customanimationspanel|categorylb"
msgid "Emphasis"
msgstr "Выдзяленне"
@@ -2770,22 +2686,19 @@ msgid "Exit"
msgstr "Выйсці"
#: customanimationspanel.ui:196
-#, fuzzy
msgctxt "customanimationspanel|categorylb"
msgid "Motion Paths"
msgstr "Сцежкі руху"
#: customanimationspanel.ui:197
-#, fuzzy
msgctxt "customanimationspanel|categorylb"
msgid "Misc Effects"
msgstr "Розныя эфекты"
#: customanimationspanel.ui:242
-#, fuzzy
msgctxt "customanimationspanel|start_effect"
msgid "_Start:"
-msgstr "Пачатак"
+msgstr "Пачатак:"
#: customanimationspanel.ui:256
msgctxt "customanimationspanel|effect_property"
@@ -2793,106 +2706,89 @@ msgid "_Direction:"
msgstr "Накірунак:"
#: customanimationspanel.ui:270
-#, fuzzy
msgctxt "customanimationspanel|effect_duration"
msgid "D_uration:"
msgstr "Праця_гласць:"
#: customanimationspanel.ui:285
-#, fuzzy
msgctxt "customanimationspanel|start_effect_list"
msgid "On click"
msgstr "Па націсканні"
#: customanimationspanel.ui:286
-#, fuzzy
msgctxt "customanimationspanel|start_effect_list"
msgid "With previous"
msgstr "Разам з папярэднім"
#: customanimationspanel.ui:287
-#, fuzzy
msgctxt "customanimationspanel|start_effect_list"
msgid "After previous"
msgstr "Пасля папярэдняга"
#: customanimationspanel.ui:324
-#, fuzzy
msgctxt "customanimationspanel|more_properties|tooltip_text"
msgid "Options"
msgstr "Настаўленні"
#: customanimationspanel.ui:350
-#, fuzzy
msgctxt "customanimationspanel|delay_label"
msgid "_Delay:"
-msgstr "Затр_ымка:"
+msgstr "Затрымка:"
#: customanimationspanel.ui:387
-#, fuzzy
msgctxt "customanimationspanel|effect_label"
msgid "Effect"
msgstr "Эфект:"
#: customanimationspanel.ui:429
-#, fuzzy
msgctxt "customanimationspanel|auto_preview"
msgid "Automatic Preview"
msgstr "Аўтаматычны прагляд"
#: customanimationspanel.ui:446
-#, fuzzy
msgctxt "customanimationspanel|play"
msgid "Play"
msgstr "Узнавіць"
#: customanimationspanel.ui:451
-#, fuzzy
msgctxt "customanimationspanel|play|tooltip_text"
msgid "Preview Effect"
-msgstr "Перадпрагляд эфекту"
+msgstr "Перадпаказ эфекту"
#: customanimationspanel.ui:479
-#, fuzzy
msgctxt "customanimationspanel|box1_label"
msgid "Animation Deck"
msgstr "Панэль анімацыі"
#: customanimationspanel.ui:492
-#, fuzzy
msgctxt "customanimationspanel|custom_animation_list_label"
msgid "Animation List"
msgstr "Спіс анімацыі"
#: customanimationspanelhorizontal.ui:96
-#, fuzzy
msgctxt "customanimationspanelhorizontal|add_effect|tooltip_text"
msgid "Add Effect"
msgstr "Дадаць эфект"
#: customanimationspanelhorizontal.ui:110
-#, fuzzy
msgctxt "customanimationspanelhorizontal|remove_effect|tooltip_text"
msgid "Remove Effect"
msgstr "Прыбраць эфект"
#: customanimationspanelhorizontal.ui:124
-#, fuzzy
msgctxt "customanimationspanelhorizontal|move_up|tooltip_text"
msgid "Move Up"
msgstr "Пасунуць уверх"
#: customanimationspanelhorizontal.ui:138
-#, fuzzy
msgctxt "customanimationspanelhorizontal|move_down|tooltip_text"
msgid "Move Down"
msgstr "Пасунуць уніз"
#: customanimationspanelhorizontal.ui:166
-#, fuzzy
msgctxt "customanimationspanelhorizontal|start_effect"
msgid "_Start:"
-msgstr "Пачатак"
+msgstr "Пачатак:"
#: customanimationspanelhorizontal.ui:179
msgctxt "customanimationspanelhorizontal|effect_property"
@@ -2900,37 +2796,31 @@ msgid "_Direction:"
msgstr "Накірунак:"
#: customanimationspanelhorizontal.ui:193
-#, fuzzy
msgctxt "customanimationspanelhorizontal|start_effect_list"
msgid "On click"
msgstr "Па націсканні"
#: customanimationspanelhorizontal.ui:194
-#, fuzzy
msgctxt "customanimationspanelhorizontal|start_effect_list"
msgid "With previous"
msgstr "Разам з папярэднім"
#: customanimationspanelhorizontal.ui:195
-#, fuzzy
msgctxt "customanimationspanelhorizontal|start_effect_list"
msgid "After previous"
msgstr "Пасля папярэдняга"
#: customanimationspanelhorizontal.ui:247
-#, fuzzy
msgctxt "customanimationspanelhorizontal|categorylabel"
msgid "Category:"
msgstr "Катэгорыя:"
#: customanimationspanelhorizontal.ui:260
-#, fuzzy
msgctxt "customanimationspanelhorizontal|categorylb"
msgid "Entrance"
msgstr "Уваход"
#: customanimationspanelhorizontal.ui:261
-#, fuzzy
msgctxt "customanimationspanelhorizontal|categorylb"
msgid "Emphasis"
msgstr "Выдзяленне"
@@ -2941,7 +2831,6 @@ msgid "Exit"
msgstr "Выйсці"
#: customanimationspanelhorizontal.ui:263
-#, fuzzy
msgctxt "customanimationspanelhorizontal|categorylb"
msgid "Motion Paths"
msgstr "Сцежкі руху"
@@ -2977,7 +2866,6 @@ msgid "Automatic Preview"
msgstr "Аўтаматычны прагляд"
#: customanimationspanelhorizontal.ui:407
-#, fuzzy
msgctxt "customanimationspanelhorizontal|play"
msgid "Play"
msgstr "Узнавіць"
@@ -2993,49 +2881,41 @@ msgid "_Group text:"
msgstr "Згрупаваць тэкст:"
#: customanimationtexttab.ui:56
-#, fuzzy
msgctxt "customanimationtexttab|auto_after"
msgid "_Automatically after:"
msgstr "Аўтаматычна пасля:"
#: customanimationtexttab.ui:78
-#, fuzzy
msgctxt "customanimationtexttab|group_text_list"
msgid "As one object"
msgstr "Як адзін аб'ект"
#: customanimationtexttab.ui:79
-#, fuzzy
msgctxt "customanimationtexttab|group_text_list"
msgid "All paragraphs at once"
msgstr "Усе абзацы адразу"
#: customanimationtexttab.ui:80
-#, fuzzy
msgctxt "customanimationtexttab|group_text_list"
msgid "By 1st level paragraphs"
msgstr "Паводле абзацаў 1-га ўзроўню"
#: customanimationtexttab.ui:81
-#, fuzzy
msgctxt "customanimationtexttab|group_text_list"
msgid "By 2nd level paragraphs"
msgstr "Паводле абзацаў 2-га ўзроўню"
#: customanimationtexttab.ui:82
-#, fuzzy
msgctxt "customanimationtexttab|group_text_list"
msgid "By 3rd level paragraphs"
msgstr "Паводле абзацаў 3-га ўзроўню"
#: customanimationtexttab.ui:83
-#, fuzzy
msgctxt "customanimationtexttab|group_text_list"
msgid "By 4th level paragraphs"
msgstr "Паводле абзацаў 4-га ўзроўню"
#: customanimationtexttab.ui:84
-#, fuzzy
msgctxt "customanimationtexttab|group_text_list"
msgid "By 5th level paragraphs"
msgstr "Паводле абзацаў 5-га ўзроўню"
@@ -3046,25 +2926,21 @@ msgid "Animate attached _shape"
msgstr "Анімаваць прылучаны абрыс"
#: customanimationtexttab.ui:119
-#, fuzzy
msgctxt "customanimationtexttab|reverse_order"
msgid "_In reverse order"
msgstr "У адваротным парадку"
#: customanimationtimingtab.ui:29
-#, fuzzy
msgctxt "customanimationtimingtab|start_label"
msgid "_Start:"
-msgstr "Пачатак"
+msgstr "Пачатак:"
#: customanimationtimingtab.ui:42
-#, fuzzy
msgctxt "customanimationtimingtab|delay_label"
msgid "_Delay:"
-msgstr "Затр_ымка:"
+msgstr "Затрымка:"
#: customanimationtimingtab.ui:55
-#, fuzzy
msgctxt "customanimationtimingtab|duration_label"
msgid "D_uration:"
msgstr "Праця_гласць:"
@@ -3075,49 +2951,41 @@ msgid "_Repeat:"
msgstr "Паўтарэнне:"
#: customanimationtimingtab.ui:82
-#, fuzzy
msgctxt "customanimationtimingtab|start_list"
msgid "On click"
msgstr "Па націсканні"
#: customanimationtimingtab.ui:83
-#, fuzzy
msgctxt "customanimationtimingtab|start_list"
msgid "With previous"
msgstr "Разам з папярэднім"
#: customanimationtimingtab.ui:84
-#, fuzzy
msgctxt "customanimationtimingtab|start_list"
msgid "After previous"
msgstr "Пасля папярэдняга"
#: customanimationtimingtab.ui:111
-#, fuzzy
msgctxt "customanimationtimingtab|anim_duration|tooltip_text"
msgid "Select the speed of the Animation."
msgstr "Выберыце хуткасць анімацыі."
#: customanimationtimingtab.ui:133
-#, fuzzy
msgctxt "customanimationtimingtab|rewind"
msgid "Rewind _when done playing"
msgstr "Вярнуцца да пачатку па сканчэнні"
#: customanimationtimingtab.ui:174
-#, fuzzy
msgctxt "customanimationtimingtab|rb_click_sequence"
msgid "_Animate as part of click sequence"
msgstr "Анімаванне як частка паслядоўнасці націсканняў"
#: customanimationtimingtab.ui:192
-#, fuzzy
msgctxt "customanimationtimingtab|rb_interactive"
msgid "Start _effect on click of:"
msgstr "Стартаваць эфект пры націсканні:"
#: customanimationtimingtab.ui:228
-#, fuzzy
msgctxt "customanimationtimingtab|label11"
msgid "Trigger"
msgstr "Актываваць"
@@ -3133,7 +3001,6 @@ msgid "_Start"
msgstr "Пачатак"
#: customslideshows.ui:103
-#, fuzzy
msgctxt "customslideshows|usecustomshows"
msgid "_Use custom slide show"
msgstr "Ужыць адмысловы паказ слайдаў"
@@ -3179,13 +3046,11 @@ msgid "Edit Field"
msgstr "Змяніць поле"
#: dlgfield.ui:100
-#, fuzzy
msgctxt "dlgfield|fixedRB"
msgid "_Fixed"
msgstr "Замацавана"
#: dlgfield.ui:118
-#, fuzzy
msgctxt "dlgfield|varRB"
msgid "_Variable"
msgstr "Зменная"
@@ -3196,19 +3061,16 @@ msgid "Field Type"
msgstr "Тып поля"
#: dlgfield.ui:164
-#, fuzzy
msgctxt "dlgfield|label2"
msgid "_Language:"
msgstr "Мова:"
#: dlgfield.ui:216
-#, fuzzy
msgctxt "dlgfield|label3"
msgid "F_ormat"
msgstr "Фармат"
#: dockinganimation.ui:62
-#, fuzzy
msgctxt "dockinganimation|DockingAnimation"
msgid "Animation"
msgstr "Анімацыя"
@@ -3219,28 +3081,24 @@ msgid "Preview"
msgstr "Перадпаказ"
#: dockinganimation.ui:115
-#, fuzzy
msgctxt "dockinganimation|loopcount|tooltip_text"
msgid "Loop Count"
msgstr "Лік цыклаў"
#: dockinganimation.ui:135
-#, fuzzy
msgctxt "dockinganimation|loopcount"
msgid "Max."
msgstr "Макс."
#: dockinganimation.ui:149
-#, fuzzy
msgctxt "dockinganimation|duration|tooltip_text"
msgid "Duration"
-msgstr "Праця_гласць:"
+msgstr "Працягласць"
#: dockinganimation.ui:163
-#, fuzzy
msgctxt "dockinganimation|numbitmap|tooltip_text"
msgid "Image Number"
-msgstr "Нумар старонкі"
+msgstr "Нумар відарыса"
#: dockinganimation.ui:186
msgctxt "dockinganimation|first|tooltip_text"
@@ -3248,19 +3106,16 @@ msgid "First Image"
msgstr "Першая выява"
#: dockinganimation.ui:201
-#, fuzzy
msgctxt "dockinganimation|prev|tooltip_text"
msgid "Backwards"
msgstr "Назад"
#: dockinganimation.ui:216
-#, fuzzy
msgctxt "dockinganimation|stop|tooltip_text"
msgid "Stop"
msgstr "Спыніць"
#: dockinganimation.ui:231
-#, fuzzy
msgctxt "dockinganimation|next|tooltip_text"
msgid "Play"
msgstr "Узнавіць"
@@ -3271,73 +3126,61 @@ msgid "Last Image"
msgstr "Апошняя выява"
#: dockinganimation.ui:299
-#, fuzzy
msgctxt "dockinganimation|group"
msgid "Group object"
msgstr "Групавы аб'ект"
#: dockinganimation.ui:317
-#, fuzzy
msgctxt "dockinganimation|bitmap"
msgid "Bitmap object"
msgstr "Растравы аб'ект"
#: dockinganimation.ui:340
-#, fuzzy
msgctxt "dockinganimation|alignmentft"
msgid "Alignment"
msgstr "Раўнаванне"
#: dockinganimation.ui:355
-#, fuzzy
msgctxt "dockinganimation|alignment"
msgid "Top Left"
msgstr "Улева ўверх"
#: dockinganimation.ui:356
-#, fuzzy
msgctxt "dockinganimation|alignment"
msgid "Left"
msgstr "Злева"
#: dockinganimation.ui:357
-#, fuzzy
msgctxt "dockinganimation|alignment"
msgid "Bottom Left"
msgstr "Улева ўніз"
#: dockinganimation.ui:358
-#, fuzzy
msgctxt "dockinganimation|alignment"
msgid "Top"
msgstr "Зверху"
#: dockinganimation.ui:359
-#, fuzzy
msgctxt "dockinganimation|alignment"
msgid "Centered"
msgstr "У цэнтры"
#: dockinganimation.ui:360
-#, fuzzy
msgctxt "dockinganimation|alignment"
msgid "Bottom"
msgstr "Знізу"
#: dockinganimation.ui:361
-#, fuzzy
msgctxt "dockinganimation|alignment"
msgid "Top Right"
msgstr "Управа ўверх"
#: dockinganimation.ui:362
-#, fuzzy
msgctxt "dockinganimation|alignment"
msgid "Right"
msgstr "Справа"
#: dockinganimation.ui:363
-#, fuzzy
msgctxt "dockinganimation|alignment"
msgid "Bottom Right"
msgstr "Управа ўніз"
@@ -3345,13 +3188,12 @@ msgstr "Управа ўніз"
#: dockinganimation.ui:389
msgctxt "dockinganimation|label1"
msgid "Animation group"
-msgstr ""
+msgstr "Група анімаванняў"
#: dockinganimation.ui:433
-#, fuzzy
msgctxt "dockinganimation|getone|tooltip_text"
msgid "Apply Object"
-msgstr "Аплет (аб'ект)"
+msgstr "Ужыць аб'ект"
#: dockinganimation.ui:448
msgctxt "dockinganimation|getall|tooltip_text"
@@ -3384,96 +3226,81 @@ msgid "Create"
msgstr "Стварыць"
#: effectmenu.ui:12
-#, fuzzy
msgctxt "effectmenu|onclick"
msgid "Start On _Click"
msgstr "Стартаваць па націсканні"
#: effectmenu.ui:20
-#, fuzzy
msgctxt "effectmenu|withprev"
msgid "Start _With Previous"
msgstr "Стартаваць разам з папярэднім"
#: effectmenu.ui:28
-#, fuzzy
msgctxt "effectmenu|afterprev"
msgid "Start _After Previous"
msgstr "Стартаваць пасля папярэдняга"
#: effectmenu.ui:41
-#, fuzzy
msgctxt "effectmenu|options"
msgid "_Effect Options..."
msgstr "Настаўленні эфектаў..."
#: effectmenu.ui:49
-#, fuzzy
msgctxt "effectmenu|timing"
msgid "_Timing..."
-msgstr "Працягласць..."
+msgstr "Хранаметраж..."
#: effectmenu.ui:57
-#, fuzzy
msgctxt "effectmenu|remove"
msgid "_Remove"
msgstr "Сцерці"
#: fontsizemenu.ui:12
-#, fuzzy
msgctxt "fontsizemenu|25"
msgid "Tiny"
msgstr "Дробны"
#: fontsizemenu.ui:20
-#, fuzzy
msgctxt "fontsizemenu|50"
msgid "Smaller"
msgstr "Малы"
#: fontsizemenu.ui:28
-#, fuzzy
msgctxt "fontsizemenu|150"
msgid "Larger"
msgstr "Большы"
#: fontsizemenu.ui:36
-#, fuzzy
msgctxt "fontsizemenu|400"
msgid "Extra Large"
msgstr "Найбольшы"
#: fontstylemenu.ui:12
-#, fuzzy
msgctxt "fontstylemenu|bold"
msgid "Bold"
msgstr "Цёмны"
#: fontstylemenu.ui:20
-#, fuzzy
msgctxt "fontstylemenu|italic"
msgid "Italic"
msgstr "Курсіў"
#: fontstylemenu.ui:28
-#, fuzzy
msgctxt "fontstylemenu|underline"
msgid "Underlined"
msgstr "Падкрэслены"
#: headerfooterdialog.ui:8
-#, fuzzy
msgctxt "headerfooterdialog|HeaderFooterDialog"
msgid "Header and Footer"
-msgstr "Верхні і ніжні калантытулы..."
+msgstr "Верхні і ніжні калантытулы"
#: headerfooterdialog.ui:21
msgctxt "headerfooterdialog|apply_all"
msgid "Appl_y to All"
-msgstr ""
+msgstr "Ужыць для ўсіх"
#: headerfooterdialog.ui:106
-#, fuzzy
msgctxt "headerfooterdialog|slides"
msgid "Slides"
msgstr "Слайды"
@@ -3481,10 +3308,9 @@ msgstr "Слайды"
#: headerfooterdialog.ui:128
msgctxt "headerfooterdialog|notes"
msgid "Notes and Handouts"
-msgstr ""
+msgstr "Заўвагі і Раздаткі"
#: headerfootertab.ui:40
-#, fuzzy
msgctxt "headerfootertab|header_cb"
msgid "Heade_r"
msgstr "Калантытул верхні"
@@ -3495,37 +3321,31 @@ msgid "Header _text:"
msgstr "Тэкст верхняга калантытула:"
#: headerfootertab.ui:101
-#, fuzzy
msgctxt "headerfootertab|datetime_cb"
msgid "_Date and time"
msgstr "Дата і час"
#: headerfootertab.ui:132
-#, fuzzy
msgctxt "headerfootertab|rb_fixed"
msgid "Fi_xed"
msgstr "Замацавана"
#: headerfootertab.ui:180
-#, fuzzy
msgctxt "headerfootertab|rb_auto"
msgid "_Variable"
msgstr "Зменная"
#: headerfootertab.ui:223
-#, fuzzy
msgctxt "headerfootertab|language_label"
msgid "_Language:"
msgstr "Мова:"
#: headerfootertab.ui:247
-#, fuzzy
msgctxt "headerfootertab|language_label1"
msgid "_Format:"
msgstr "Фармат:"
#: headerfootertab.ui:292
-#, fuzzy
msgctxt "headerfootertab|footer_cb"
msgid "_Footer"
msgstr "Калантытул ніжні"
@@ -3536,19 +3356,16 @@ msgid "F_ooter text:"
msgstr "Тэкст ніжняга калантытула:"
#: headerfootertab.ui:360
-#, fuzzy
msgctxt "headerfootertab|slide_number"
msgid "_Slide number"
msgstr "Нумар слайда"
#: headerfootertab.ui:382
-#, fuzzy
msgctxt "headerfootertab|include_label"
msgid "Include on Slide"
-msgstr "Улучаць у старонку"
+msgstr "Улучаць у слайд"
#: headerfootertab.ui:397
-#, fuzzy
msgctxt "headerfootertab|not_on_title"
msgid "Do _not show on the first slide"
msgstr "Не паказваць на першым слайдзе"
@@ -3564,79 +3381,66 @@ msgid "Include on page"
msgstr "Улучаць у старонку"
#: impressprinteroptions.ui:32
-#, fuzzy
msgctxt "impressprinteroptions|printname"
msgid "Slide name"
msgstr "Назва слайда"
#: impressprinteroptions.ui:48
-#, fuzzy
msgctxt "impressprinteroptions|printdatetime"
msgid "Date and time"
msgstr "Дата і час"
#: impressprinteroptions.ui:64
-#, fuzzy
msgctxt "impressprinteroptions|printhidden"
msgid "Hidden pages"
msgstr "Прыхаваныя старонкі"
#: impressprinteroptions.ui:86
-#, fuzzy
msgctxt "impressprinteroptions|label4"
msgid "Contents"
msgstr "Змесціва"
#: impressprinteroptions.ui:119
-#, fuzzy
msgctxt "impressprinteroptions|originalcolors"
msgid "Original size"
msgstr "Пачатковы памер"
#: impressprinteroptions.ui:137
-#, fuzzy
msgctxt "impressprinteroptions|grayscale"
msgid "Grayscale"
msgstr "Шэрыя адценні"
#: impressprinteroptions.ui:155
-#, fuzzy
msgctxt "impressprinteroptions|blackandwhite"
msgid "Black & white"
msgstr "Чорна-белы"
#: impressprinteroptions.ui:179
-#, fuzzy
msgctxt "impressprinteroptions|label5"
msgid "Color"
msgstr "Колер"
#: impressprinteroptions.ui:212
-#, fuzzy
msgctxt "impressprinteroptions|originalsize"
msgid "Original size"
msgstr "Пачатковы памер"
#: impressprinteroptions.ui:230
-#, fuzzy
msgctxt "impressprinteroptions|fittoprintable"
msgid "Fit to printable page"
msgstr "Умяшчаць на друкавальны аркуш"
#: impressprinteroptions.ui:248
-#, fuzzy
msgctxt "impressprinteroptions|distributeonmultiple"
msgid "Distribute on multiple sheets of paper"
msgstr "Размеркаваць на некалькі аркушаў"
#: impressprinteroptions.ui:266
-#, fuzzy
msgctxt "impressprinteroptions|tilesheet"
msgid "Tile sheet of paper with repeated slides"
msgstr "Запоўніць аркуш паўторамі слайдаў"
#: impressprinteroptions.ui:290
-#, fuzzy
msgctxt "impressprinteroptions|label6"
msgid "Size"
msgstr "Памер"
@@ -3647,49 +3451,41 @@ msgid "Insert Slides"
msgstr "Уставіць слайды"
#: insertslides.ui:92
-#, fuzzy
msgctxt "insertslides|before"
msgid "_Before"
msgstr "Перад"
#: insertslides.ui:111
-#, fuzzy
msgctxt "insertslides|after"
msgid "A_fter"
msgstr "Пасля"
#: insertslides.ui:137
-#, fuzzy
msgctxt "insertslides|label1"
msgid "Position"
msgstr "Месца"
#: interactiondialog.ui:8
-#, fuzzy
msgctxt "interactiondialog|InteractionDialog"
msgid "Interaction"
msgstr "Узаемадзеянне"
#: interactionpage.ui:40
-#, fuzzy
msgctxt "interactionpage|label2"
msgid "Action at mouse click:"
msgstr "Дзеянне пры «кліканні» мышкай:"
#: interactionpage.ui:65
-#, fuzzy
msgctxt "interactionpage|fttree"
msgid "Target:"
-msgstr "Мэта"
+msgstr "Мэта:"
#: interactionpage.ui:143
-#, fuzzy
msgctxt "interactionpage|label1"
msgid "Interaction"
msgstr "Узаемадзеянне"
#: interactionpage.ui:183
-#, fuzzy
msgctxt "interactionpage|browse"
msgid "_Browse..."
msgstr "Агляд..."
@@ -3700,43 +3496,36 @@ msgid "_Find"
msgstr "Знайсці"
#: interactionpage.ui:229
-#, fuzzy
msgctxt "interactionpage|sound-atkobject"
msgid "Path Name"
-msgstr "Назва шляху:"
+msgstr "Назва шляху"
#: layoutmenu.ui:12
-#, fuzzy
msgctxt "layoutmenu|apply"
msgid "Apply to _Selected Slides"
msgstr "Ужыць над азначанымі слайдамі"
#: layoutmenu.ui:26
-#, fuzzy
msgctxt "layoutmenu|insert"
msgid "_Insert Slide"
msgstr "Уставіць слайд"
#: masterlayoutdlg.ui:8
-#, fuzzy
msgctxt "masterlayoutdlg|MasterLayoutDialog"
msgid "Master Elements"
msgstr "Майстар-элементы"
#: masterlayoutdlg.ui:92
-#, fuzzy
msgctxt "masterlayoutdlg|header"
msgid "_Header"
msgstr "Калантытул верхні"
#: masterlayoutdlg.ui:108
-#, fuzzy
msgctxt "masterlayoutdlg|datetime"
msgid "_Date/time"
msgstr "Дата/час"
#: masterlayoutdlg.ui:124
-#, fuzzy
msgctxt "masterlayoutdlg|footer"
msgid "_Footer"
msgstr "Калантытул ніжні"
@@ -3747,37 +3536,31 @@ msgid "_Page number"
msgstr "Нумар старонкі"
#: masterlayoutdlg.ui:156
-#, fuzzy
msgctxt "masterlayoutdlg|slidenumber"
msgid "_Slide number"
msgstr "Нумар слайда"
#: masterlayoutdlg.ui:178
-#, fuzzy
msgctxt "masterlayoutdlg|Placeholders"
msgid "Placeholders"
msgstr "Намеснікі"
#: mastermenu.ui:12
-#, fuzzy
msgctxt "mastermenu|applyall"
msgid "_Apply to All Slides"
msgstr "Ужыць над усімі слайдамі"
#: mastermenu.ui:20
-#, fuzzy
msgctxt "mastermenu|applyselect"
msgid "Apply to _Selected Slides"
msgstr "Ужыць над азначанымі слайдамі"
#: mastermenu.ui:34
-#, fuzzy
msgctxt "mastermenu|large"
msgid "Show _Large Preview"
msgstr "Паказваць вялікі перадпаказ"
#: mastermenu.ui:42
-#, fuzzy
msgctxt "mastermenu|small"
msgid "Show S_mall Preview"
msgstr "Паказваць малы перадпаказ"
@@ -3793,25 +3576,21 @@ msgid "Active Window"
msgstr "Актыўнае акно"
#: navigatorpanel.ui:58
-#, fuzzy
msgctxt "navigatorpanel|first|tooltip_text"
msgid "First Slide"
msgstr "Першы слайд"
#: navigatorpanel.ui:71
-#, fuzzy
msgctxt "navigatorpanel|previous|tooltip_text"
msgid "Previous Slide"
msgstr "Папярэдні слайд"
#: navigatorpanel.ui:84
-#, fuzzy
msgctxt "navigatorpanel|next|tooltip_text"
msgid "Next Slide"
-msgstr "Тэкставы слайд"
+msgstr "Наступны слайд"
#: navigatorpanel.ui:97
-#, fuzzy
msgctxt "navigatorpanel|last|tooltip_text"
msgid "Last Slide"
msgstr "Апошні слайд"
@@ -3832,7 +3611,6 @@ msgid "File"
msgstr "Файл"
#: notebookbar.ui:421
-#, fuzzy
msgctxt "notebookbar|FormatPaintbrush"
msgid "Clone"
msgstr "Кланаваць"
@@ -3843,31 +3621,26 @@ msgid "Bullets and Numbering"
msgstr "Пункты і нумараванне"
#: notebookbar.ui:961
-#, fuzzy
msgctxt "notebookbar|indent|tooltip_text"
msgid "Indent"
msgstr "Водступ"
#: notebookbar.ui:968
-#, fuzzy
msgctxt "notebookbar|increaseindent|tooltip_text"
msgid "Increase Indent"
msgstr "Павялічыць водступ"
#: notebookbar.ui:984
-#, fuzzy
msgctxt "notebookbar|decreaseindent|tooltip_text"
msgid "Decrease Indent"
msgstr "Паменшыць водступ"
#: notebookbar.ui:1018
-#, fuzzy
msgctxt "notebookbar|horizontalalignment|tooltip_text"
msgid "Horizontal Alignment"
msgstr "Гарызантальнае раўнаванне"
#: notebookbar.ui:1497
-#, fuzzy
msgctxt "notebookbar|ImpressLabel"
msgid "Home"
msgstr "Пачатак"
@@ -3878,7 +3651,6 @@ msgid "Insert Audio or Video"
msgstr "Уставіць гуказапіс ці відэа"
#: notebookbar.ui:1935
-#, fuzzy
msgctxt "notebookbar|InsertSymbol"
msgid "Symbol"
msgstr "Знак"
@@ -3889,43 +3661,36 @@ msgid "Insert"
msgstr "Уставіць"
#: notebookbar.ui:2033
-#, fuzzy
msgctxt "notebookbar|TransitionsLabel"
msgid "Transitions"
msgstr "Пераходы"
#: notebookbar.ui:2053
-#, fuzzy
msgctxt "notebookbar|AnimationLabel"
msgid "Animation"
msgstr "Анімацыя"
#: notebookbar.ui:2218
-#, fuzzy
msgctxt "notebookbar|SlideShowLabel"
msgid "Slide Show"
msgstr "Паказ слайдаў"
#: notebookbar.ui:2252
-#, fuzzy
msgctxt "notebookbar|SpellOnline"
msgid "Auto Spellcheck"
msgstr "Аўтаматычная праверка правапісу"
#: notebookbar.ui:2354
-#, fuzzy
msgctxt "notebookbar|ReviewLabel"
msgid "Review"
msgstr "Праверыць"
#: notebookbar.ui:2547
-#, fuzzy
msgctxt "notebookbar|GridVisible"
msgid "Grid"
msgstr "Сетка"
#: notebookbar.ui:2737
-#, fuzzy
msgctxt "notebookbar|ViewLabel"
msgid "View"
msgstr "Від"
@@ -3941,276 +3706,231 @@ msgid "Image"
msgstr "Выява"
#: notebookbar_groupedbar_compact.ui:466
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|menubarD1"
msgid "Menubar"
msgstr "Стужка меню"
#: notebookbar_groupedbar_compact.ui:1884
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|menubarD"
msgid "Menubar"
msgstr "Стужка меню"
#: notebookbar_groupedbar_compact.ui:2575
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|fileb"
msgid "_File"
msgstr "Файл"
#: notebookbar_groupedbar_compact.ui:2714
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|editb"
msgid "_Edit"
msgstr "Правіць"
#: notebookbar_groupedbar_compact.ui:2884
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|reviewb"
msgid "_Slide Show"
msgstr "Паказ слайдаў"
#: notebookbar_groupedbar_compact.ui:3012
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|paragraphstylet"
msgid "S_lide"
msgstr "Слайд"
#: notebookbar_groupedbar_compact.ui:3163
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|insertText"
msgid "_Insert"
msgstr "Уставіць"
#: notebookbar_groupedbar_compact.ui:3332
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|draw"
msgid "D_raw"
msgstr "Рысаваць"
#: notebookbar_groupedbar_compact.ui:3616
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|viewb"
msgid "_View"
msgstr "Від"
#: notebookbar_groupedbar_compact.ui:3767
#: /home/cl/vc/git/libo-core/sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4777
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|reviewb"
msgid "_Review"
msgstr "Праверыць"
#: notebookbar_groupedbar_compact.ui:3906
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|slideshowf"
msgid "_Slide Show"
msgstr "Паказ слайдаў"
#: notebookbar_groupedbar_compact.ui:4071
#: /home/cl/vc/git/libo-core/sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:5079
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|formatt"
msgid "F_ormat"
msgstr "Фармат"
#: notebookbar_groupedbar_compact.ui:4321
#: /home/cl/vc/git/libo-core/sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:5329
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|paragrapht"
msgid "_Paragraph"
msgstr "Абзац"
#: notebookbar_groupedbar_compact.ui:4492
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|insertTextO"
msgid "_Insert"
msgstr "Уставіць"
#: notebookbar_groupedbar_compact.ui:4626
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|viewT"
msgid "_View"
msgstr "Від"
#: notebookbar_groupedbar_compact.ui:4914
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|slideshowb"
msgid "_Slide Show"
msgstr "Паказ слайдаў"
#: notebookbar_groupedbar_compact.ui:5479
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|rowscolumnst"
msgid "R_ows"
msgstr "Радкі"
#: notebookbar_groupedbar_compact.ui:5795
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|calculatet"
msgid "_Calc"
msgstr "Аблічыць"
#: notebookbar_groupedbar_compact.ui:5987
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|editdrawb"
msgid "St_yles"
msgstr "Стылі"
#: notebookbar_groupedbar_compact.ui:6214
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|drawb"
msgid "D_raw"
msgstr "Рысаваць"
#: notebookbar_groupedbar_compact.ui:6585
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|viewDrawb"
msgid "Grou_p"
msgstr "Група"
#: notebookbar_groupedbar_compact.ui:6694
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|GridO"
msgid "_Grid"
msgstr "Рашотка"
#: notebookbar_groupedbar_compact.ui:6836
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|3Db"
msgid "3_D"
msgstr "3_D"
#: notebookbar_groupedbar_compact.ui:7008
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "_Graphic"
msgstr "Графіка"
#: notebookbar_groupedbar_compact.ui:7123
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|colorb"
msgid "C_olor"
msgstr "Колер"
#: notebookbar_groupedbar_compact.ui:7596
#: /home/cl/vc/git/libo-core/sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8350
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|GridB"
msgid "_Grid"
msgstr "Рашотка"
#: notebookbar_groupedbar_compact.ui:7732
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|slideshowOLE"
msgid "_Slide Show"
msgstr "Паказ слайдаў"
#: notebookbar_groupedbar_compact.ui:7957
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|oleB"
msgid "F_rame"
msgstr "Рам_ка"
#: notebookbar_groupedbar_compact.ui:8484
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|viewOLE"
msgid "_View"
msgstr "Від"
#: notebookbar_groupedbar_compact.ui:8663
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|oleB"
msgid "_Master Page"
msgstr "Майстар-старонка"
#: notebookbar_groupedbar_compact.ui:8808
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|insertTextb"
msgid "_Insert"
msgstr "Уставіць"
#: notebookbar_groupedbar_compact.ui:9016
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|drawMaster"
msgid "D_raw"
msgstr "Рысаваць"
#: notebookbar_groupedbar_compact.ui:9391
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|viewMaster"
msgid "_View"
msgstr "Від"
#: notebookbar_groupedbar_compact.ui:9526
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|menub"
msgid "_Menu"
msgstr "Меню"
#: notebookbar_groupedbar_compact.ui:9581
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|toolsb"
msgid "_Tools"
msgstr "Прылады"
#: notebookbar_groupedbar_full.ui:2372
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|menubarD"
msgid "Menubar"
msgstr "Стужка меню"
#: notebookbar_groupedbar_full.ui:2541
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|Quotation2"
msgid "Quotation"
msgstr "Цытаванне"
#: notebookbar_groupedbar_full.ui:3227
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|fileb"
msgid "_File"
msgstr "Файл"
#: notebookbar_groupedbar_full.ui:3449
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|editb"
msgid "_Edit"
msgstr "Правіць"
#: notebookbar_groupedbar_full.ui:3608
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowb"
msgid "_Slide Show"
msgstr "Паказ слайдаў"
#: notebookbar_groupedbar_full.ui:3805
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|paragraphstylet"
msgid "S_lide"
msgstr "Слайд"
#: notebookbar_groupedbar_full.ui:3956
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertText"
msgid "_Insert"
msgstr "Уставіць"
#: notebookbar_groupedbar_full.ui:4302
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|draw"
msgid "D_raw"
msgstr "Рысаваць"
#: notebookbar_groupedbar_full.ui:4486
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewb"
msgid "_View"
msgstr "Від"
#: notebookbar_groupedbar_full.ui:4632
#: /home/cl/vc/git/libo-core/sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:6202
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|reviewb"
msgid "_Review"
msgstr "Праверыць"
@@ -4220,75 +3940,63 @@ msgstr "Праверыць"
#: /home/cl/vc/git/libo-core/sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9790
#: /home/cl/vc/git/libo-core/sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11217
#: /home/cl/vc/git/libo-core/sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12467
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "Упарадкаваць"
#: notebookbar_groupedbar_full.ui:5075
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowt"
msgid "_Slide Show"
msgstr "Паказ слайдаў"
#: notebookbar_groupedbar_full.ui:5327
#: /home/cl/vc/git/libo-core/sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:6592
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ormat"
msgstr "Фармат"
#: notebookbar_groupedbar_full.ui:5651
#: /home/cl/vc/git/libo-core/sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:6918
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Paragraph"
msgstr "Абзац"
#: notebookbar_groupedbar_full.ui:5894
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextt"
msgid "_Insert"
msgstr "Уставіць"
#: notebookbar_groupedbar_full.ui:6056
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewt"
msgid "_View"
msgstr "Від"
#: notebookbar_groupedbar_full.ui:6339
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowtt"
msgid "_Slide Show"
msgstr "Паказ слайдаў"
#: notebookbar_groupedbar_full.ui:7097
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|tabled"
msgid "T_able"
msgstr "Табліца"
#: notebookbar_groupedbar_full.ui:7362
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|rowscolumnst"
msgid "R_ows"
msgstr "Радкі"
#: notebookbar_groupedbar_full.ui:7482
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|calculatet"
msgid "_Calc"
msgstr "Аблічыць"
#: notebookbar_groupedbar_full.ui:7818
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr "Рысаваць"
#: notebookbar_groupedbar_full.ui:8114
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr "Правіць"
@@ -4296,109 +4004,91 @@ msgstr "Правіць"
#: notebookbar_groupedbar_full.ui:8677
#: /home/cl/vc/git/libo-core/sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9941
#: /home/cl/vc/git/libo-core/sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11368
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
msgstr "Рашотка"
#: notebookbar_groupedbar_full.ui:8819
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr "Група"
#: notebookbar_groupedbar_full.ui:8958
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_D"
#: notebookbar_groupedbar_full.ui:9216
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "_Graphic"
msgstr "Графіка"
#: notebookbar_groupedbar_full.ui:9387
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "Колер"
#: notebookbar_groupedbar_full.ui:10344
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "Медыя"
#: notebookbar_groupedbar_full.ui:10520
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
msgstr "Паказ слайдаў"
#: notebookbar_groupedbar_full.ui:10805
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
msgstr "Рам_ка"
#: notebookbar_groupedbar_full.ui:11514
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewtOLE"
msgid "_View"
msgstr "Від"
#: notebookbar_groupedbar_full.ui:11674
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
msgstr "Майстар-старонка"
#: notebookbar_groupedbar_full.ui:11912
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextm"
msgid "_Insert"
msgstr "Уставіць"
#: notebookbar_groupedbar_full.ui:12141
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
msgstr "Рысаваць"
#: notebookbar_groupedbar_full.ui:12629
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|masterviewm"
msgid "_View"
msgstr "Від"
#: notebookbar_groupedbar_full.ui:12749
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|menub"
msgid "_Menu"
msgstr "Меню"
#: notebookbar_groupedbar_full.ui:12801
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|toolsb"
msgid "_Tools"
msgstr "Прылады"
#: notebookbar_groupedbar_full.ui:12855
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|helpb"
msgid "_Help"
msgstr "Даведка"
#: notebookbar_groups.ui:49
-#, fuzzy
msgctxt "notebookbar_groups|layout01"
msgid "Blank"
msgstr "Пусты"
#: notebookbar_groups.ui:57
-#, fuzzy
msgctxt "notebookbar_groups|layout02"
msgid "Title Slide"
msgstr "Тытульны слайд"
@@ -4409,7 +4099,6 @@ msgid "Title, Text"
msgstr "Загаловак, тэкст"
#: notebookbar_groups.ui:73
-#, fuzzy
msgctxt "notebookbar_groups|layout04"
msgid "Title, Content"
msgstr "Загаловак, змесціва"
@@ -4420,55 +4109,46 @@ msgid "Centered Text"
msgstr "Тэкст у цэнтры"
#: notebookbar_groups.ui:104
-#, fuzzy
msgctxt "notebookbar_groups|hyperlink"
msgid "Hyperlink"
msgstr "Сеціўная спасылка"
#: notebookbar_groups.ui:118
-#, fuzzy
msgctxt "notebookbar_groups|footnote"
msgid "Footnote"
msgstr "Падрадкоўнік"
#: notebookbar_groups.ui:127
-#, fuzzy
msgctxt "notebookbar_groups|endnote"
msgid "Endnote"
msgstr "Зноска затэкставая"
#: notebookbar_groups.ui:142
-#, fuzzy
msgctxt "notebookbar_groups|bookmark"
msgid "Bookmark"
msgstr "Закладка"
#: notebookbar_groups.ui:151
-#, fuzzy
msgctxt "notebookbar_groups|crossreference"
msgid "Cross-Reference"
msgstr "Крыжаваная спасылка"
#: notebookbar_groups.ui:168
-#, fuzzy
msgctxt "notebookbar_groups|master01"
msgid "Master 1"
msgstr "Майстар 1"
#: notebookbar_groups.ui:177
-#, fuzzy
msgctxt "notebookbar_groups|master02"
msgid "Master 2"
msgstr "Майстар 2"
#: notebookbar_groups.ui:257
-#, fuzzy
msgctxt "notebookbar_groups|shapestyledefault"
msgid "Default"
msgstr "Прадвызначана"
#: notebookbar_groups.ui:265
-#, fuzzy
msgctxt "notebookbar_groups|shapestylenofill"
msgid "No Fill"
msgstr "Без запаўнення"
@@ -4476,10 +4156,9 @@ msgstr "Без запаўнення"
#: notebookbar_groups.ui:273
msgctxt "notebookbar_groups|shapestyleshadow"
msgid "With Shadow"
-msgstr ""
+msgstr "З ценем"
#: notebookbar_groups.ui:287
-#, fuzzy
msgctxt "notebookbar_groups|shapestyletitle1"
msgid "Title 1"
msgstr "Назва1"
@@ -4507,12 +4186,12 @@ msgstr "Стыль"
#: notebookbar_groups.ui:849
msgctxt "notebookbar_groups|growb"
msgid " "
-msgstr ""
+msgstr "."
#: notebookbar_groups.ui:871
msgctxt "notebookbar_groups|shrinkb"
msgid " "
-msgstr ""
+msgstr "."
#: notebookbar_groups.ui:1201
msgctxt "notebookbar_groups|formatgrouplabel"
@@ -4520,37 +4199,31 @@ msgid "Text"
msgstr "Тэкст"
#: notebookbar_groups.ui:1251
-#, fuzzy
msgctxt "notebookbar_groups|startshowb"
msgid "Start"
msgstr "Пачатак"
#: notebookbar_groups.ui:1275
-#, fuzzy
msgctxt "notebookbar_groups|masterb"
msgid "Master"
-msgstr "Майстры"
+msgstr "Майстар"
#: notebookbar_groups.ui:1293
-#, fuzzy
msgctxt "notebookbar_groups|layoutb"
msgid "Layout"
msgstr "Выклад"
#: notebookbar_groups.ui:1323
-#, fuzzy
msgctxt "notebookbar_groups|animationb"
msgid "Animation"
msgstr "Анімацыя"
#: notebookbar_groups.ui:1340
-#, fuzzy
msgctxt "notebookbar_groups|transitionb"
msgid "Transition"
-msgstr "Пераходы"
+msgstr "Пераход"
#: notebookbar_groups.ui:1386
-#, fuzzy
msgctxt "notebookbar_groups|slidegrouplabel"
msgid "Slide"
msgstr "Слайд"
@@ -4561,7 +4234,6 @@ msgid "Shapes"
msgstr "Фігуры"
#: notebookbar_groups.ui:1476
-#, fuzzy
msgctxt "notebookbar_groups|linksb"
msgid "Links"
msgstr "Спасылкі"
@@ -4577,19 +4249,16 @@ msgid "Style"
msgstr "Стыль"
#: notebookbar_groups.ui:1659
-#, fuzzy
msgctxt "notebookbar_groups|resetb"
msgid "Reset"
msgstr "Да пачатковага"
#: notebookbar_groups.ui:1703
-#, fuzzy
msgctxt "notebookbar_groups|wrapb"
msgid "Wrap"
msgstr "Абгортванне"
#: notebookbar_groups.ui:1718
-#, fuzzy
msgctxt "notebookbar_groups|lockb"
msgid "Lock"
msgstr "Заблакіраваць"
@@ -4600,63 +4269,54 @@ msgid "Image"
msgstr "Выява"
#: notebookbar_groups.ui:1818
-#, fuzzy
msgctxt "notebookbar_groups|wrapoff"
msgid "None"
msgstr "Няма"
#: notebookbar_groups.ui:1827
-#, fuzzy
msgctxt "notebookbar_groups|wrapideal"
msgid "Optimal"
msgstr "Аптымальна"
#: notebookbar_groups.ui:1836
-#, fuzzy
msgctxt "notebookbar_groups|wrapon"
msgid "Parallel"
msgstr "Паралельна"
#: notebookbar_groups.ui:1845
-#, fuzzy
msgctxt "notebookbar_groups|wrapleft"
msgid "Before"
msgstr "Перад"
#: notebookbar_groups.ui:1854
-#, fuzzy
msgctxt "notebookbar_groups|wrapright"
msgid "After"
msgstr "Пасля"
#: notebookbar_groups.ui:1863
-#, fuzzy
msgctxt "notebookbar_groups|wrapthrough"
msgid "Through"
msgstr "Наскрозь"
#: notebookbar_groups.ui:1878
-#, fuzzy
msgctxt "notebookbar_groups|wrapcontour"
msgid "Contour"
msgstr "Контур"
#: notebookbar_groups.ui:1887
-#, fuzzy
msgctxt "notebookbar_groups|contourdialog"
msgid "Edit Contour"
msgstr "Змяніць контур"
#: optimpressgeneralpage.ui:40
-#, fuzzy
msgctxt "optimpressgeneralpage|qickedit"
msgid "Allow quick editing"
-msgstr "Allow Quick Editing"
+msgstr "Дазволіць хуткае змяненне"
#: optimpressgeneralpage.ui:56
msgctxt "optimpressgeneralpage|textselected"
msgid "Only text area selected"
-msgstr ""
+msgstr "Выбар толькі вобласці тэксту"
#: optimpressgeneralpage.ui:79
msgctxt "optimpressgeneralpage|label2"
@@ -4674,13 +4334,11 @@ msgid "New Document"
msgstr "Новы дакумент"
#: optimpressgeneralpage.ui:170
-#, fuzzy
msgctxt "optimpressgeneralpage|copywhenmove"
msgid "Copy when moving"
msgstr "Капіраваць пры перамяшчэнні"
#: optimpressgeneralpage.ui:193
-#, fuzzy
msgctxt "optimpressgeneralpage|label6"
msgid "Unit of _measurement:"
msgstr "Адзінка вымярэння:"
@@ -4691,25 +4349,21 @@ msgid "Ta_b stops:"
msgstr "Прыпынкі табуляцый:"
#: optimpressgeneralpage.ui:262
-#, fuzzy
msgctxt "optimpressgeneralpage|objalwymov"
msgid "Objects always moveable"
msgstr "Аб'екты заўсёды рухомыя"
#: optimpressgeneralpage.ui:277
-#, fuzzy
msgctxt "optimpressgeneralpage|distrotcb"
msgid "Do not distort objects in curve"
msgstr "Захоўваць форму аб'ектаў на крывой"
#: optimpressgeneralpage.ui:293
-#, fuzzy
msgctxt "optimpressgeneralpage|backgroundback"
msgid "Use background cache"
msgstr "Карыстацца кэшам фону"
#: optimpressgeneralpage.ui:315
-#, fuzzy
msgctxt "optimpressgeneralpage|label4"
msgid "Settings"
msgstr "Настаўленні"
@@ -4720,13 +4374,11 @@ msgid "Enable remote control"
msgstr "Уключыць дыстанцыйнае кіраванне"
#: optimpressgeneralpage.ui:365
-#, fuzzy
msgctxt "optimpressgeneralpage|enprsntcons"
msgid "Enable Presenter Console"
msgstr "Уключыць кансоль прэзентара"
#: optimpressgeneralpage.ui:386
-#, fuzzy
msgctxt "optimpressgeneralpage|label7"
msgid "Presentation"
msgstr "Прэзентацыя"
@@ -4747,7 +4399,6 @@ msgid "Page _height:"
msgstr "Вышыня старонкі:"
#: optimpressgeneralpage.ui:575
-#, fuzzy
msgctxt "optimpressgeneralpage|label5"
msgid "Scale"
msgstr "Маштаб"
@@ -4759,11 +4410,10 @@ msgstr "_Ужыць метрыку прынтара для фарматаван
#: optimpressgeneralpage.ui:622
msgctxt "optimpressgeneralpage|cbCompatibility"
-msgid "Add _spacing between paragraphs and tables (in current document)"
-msgstr "Дадаць інтэрвал_ы між абзацамі і табліцамі (у гэтым дакуменце)"
+msgid "Add _spacing between paragraphs and tables"
+msgstr "Дадаваць інтэрвалы паміж абзацамі і табліцамі"
#: optimpressgeneralpage.ui:645
-#, fuzzy
msgctxt "optimpressgeneralpage|label1"
msgid "Compatibility"
msgstr "Сумяшчальнасць"
@@ -4814,36 +4464,31 @@ msgid "Preview"
msgstr "Перадпаказ"
#: photoalbum.ui:306
-#, fuzzy
msgctxt "photoalbum|label7"
msgid "Slide layout:"
-msgstr "Выклад слайда"
+msgstr "Выклад слайда:"
#: photoalbum.ui:344
msgctxt "photoalbum|cap_check"
msgid "Add caption to each slide"
-msgstr ""
+msgstr "Дадаць подпіс да кожнага слайда"
#: photoalbum.ui:359
-#, fuzzy
msgctxt "photoalbum|asr_check"
msgid "Keep aspect ratio"
msgstr "Захоўваць прапорцыі"
#: photoalbum.ui:375
-#, fuzzy
msgctxt "photoalbum|asr_check_crop"
msgid "Fill Screen"
msgstr "Увесь экран"
#: photoalbum.ui:390
-#, fuzzy
msgctxt "photoalbum|insert_as_link_check"
msgid "Link images"
msgstr "Злучаныя выявы"
#: presentationdialog.ui:8
-#, fuzzy
msgctxt "presentationdialog|PresentationDialog"
msgid "Slide Show Settings"
msgstr "Настаўленні паказу слайдаў"
@@ -4864,7 +4509,6 @@ msgid "All _slides"
msgstr "Усе слайды"
#: presentationdialog.ui:110
-#, fuzzy
msgctxt "presentationdialog|customslideshow"
msgid "_Custom slide show:"
msgstr "Адмысловы паказ слайдаў:"
@@ -4897,16 +4541,14 @@ msgstr "Усе дысплеі"
#: presentationdialog.ui:256
msgctxt "presentationdialog|external_str"
msgid "Auto External (Display %1)"
-msgstr ""
+msgstr "Знешні аўтаматычна (дысплей %1)"
#: presentationdialog.ui:277
-#, fuzzy
msgctxt "presentationdialog|label3"
msgid "Multiple Displays"
msgstr "Некалькі дысплеяў"
#: presentationdialog.ui:317
-#, fuzzy
msgctxt "presentationdialog|default"
msgid "F_ull screen"
msgstr "Экран цалкам"
@@ -4919,7 +4561,7 @@ msgstr "У вакне"
#: presentationdialog.ui:350
msgctxt "presentationdialog|auto"
msgid "_Loop and repeat after:"
-msgstr ""
+msgstr "Цыкл і паўтор пасля:"
#: presentationdialog.ui:369
msgctxt "presentationdialog|showlogo"
@@ -4932,7 +4574,6 @@ msgid "Duration of pause"
msgstr "Працягласць паузы"
#: presentationdialog.ui:395
-#, fuzzy
msgctxt "presentationdialog|pauseduration-atkobject"
msgid "Pause Duration"
msgstr "Працягласць паўзы"
@@ -4983,13 +4624,11 @@ msgid "_Page name"
msgstr "Назва старонкі"
#: prntopts.ui:54
-#, fuzzy
msgctxt "prntopts|datecb"
msgid "D_ate"
msgstr "Дата"
#: prntopts.ui:71
-#, fuzzy
msgctxt "prntopts|timecb"
msgid "Ti_me"
msgstr "Час"
@@ -5000,13 +4639,11 @@ msgid "H_idden pages"
msgstr "Прыхаваныя старонкі"
#: prntopts.ui:111
-#, fuzzy
msgctxt "prntopts|printlbl"
msgid "Print"
msgstr "Друкаваць"
#: prntopts.ui:145
-#, fuzzy
msgctxt "prntopts|pagedefaultrb"
msgid "Default"
msgstr "Прадвызначана"
@@ -5022,25 +4659,21 @@ msgid "_Tile pages"
msgstr "Усе адразу"
#: prntopts.ui:199
-#, fuzzy
msgctxt "prntopts|brouchrb"
msgid "B_rochure"
msgstr "Брашура"
#: prntopts.ui:217
-#, fuzzy
msgctxt "prntopts|papertryfrmprntrcb"
msgid "Paper tray from printer s_ettings"
msgstr "Крыніца паперы як у настаўленнях прынтара"
#: prntopts.ui:240
-#, fuzzy
msgctxt "prntopts|frontcb"
msgid "Fr_ont"
msgstr "Шрыфт"
#: prntopts.ui:259
-#, fuzzy
msgctxt "prntopts|backcb"
msgid "Ba_ck"
msgstr "Назад"
@@ -5056,85 +4689,71 @@ msgid "Drawing"
msgstr "Рысунак"
#: prntopts.ui:355
-#, fuzzy
msgctxt "prntopts|notecb"
msgid "Notes"
msgstr "Заўвагі"
#: prntopts.ui:371
-#, fuzzy
msgctxt "prntopts|handoutcb"
msgid "Handouts"
msgstr "Раздаткі"
#: prntopts.ui:387
-#, fuzzy
msgctxt "prntopts|outlinecb"
msgid "Outline"
msgstr "Контур"
#: prntopts.ui:409
-#, fuzzy
msgctxt "prntopts|contentlbl"
msgid "Content"
msgstr "Змесціва"
#: prntopts.ui:442
-#, fuzzy
msgctxt "prntopts|defaultrb"
msgid "Default"
msgstr "Прадвызначана"
#: prntopts.ui:459
-#, fuzzy
msgctxt "prntopts|grayscalerb"
msgid "Gra_yscale"
msgstr "Шэрыя адценні"
#: prntopts.ui:477
-#, fuzzy
msgctxt "prntopts|blackwhiterb"
msgid "Black & _white"
msgstr "Чорна-белы"
#: prntopts.ui:501
-#, fuzzy
msgctxt "prntopts|label2"
msgid "Quality"
msgstr "Якасць"
#: publishingdialog.ui:9
-#, fuzzy
msgctxt "publishingdialog|PublishingDialog"
msgid "HTML Export"
-msgstr "Экспартаванне HTML"
+msgstr "Экспарт HTML"
#: publishingdialog.ui:42
-#, fuzzy
msgctxt "publishingdialog|newDesignRadiobutton"
msgid "New _design"
msgstr "Новы дызайн"
#: publishingdialog.ui:61
-#, fuzzy
msgctxt "publishingdialog|oldDesignRadiobutton"
msgid "Existing design"
msgstr "Наяўны дызайн"
#: publishingdialog.ui:109
-#, fuzzy
msgctxt "publishingdialog|delDesingButton"
msgid "Delete Selected Design"
msgstr "Сцерці азначаны дызайн"
#: publishingdialog.ui:136
-#, fuzzy
msgctxt "publishingdialog|descLabel"
msgid "Select an existing design or create a new one"
msgstr "Выберыце наяўны дызайн або стварыце новы"
#: publishingdialog.ui:155
-#, fuzzy
msgctxt "publishingdialog|assignLabel"
msgid "Assign Design"
msgstr "Прызначыць дызайн"
@@ -5145,31 +4764,26 @@ msgid "_Active Server Pages (ASP)"
msgstr "_Active Server Pages (ASP)"
#: publishingdialog.ui:218
-#, fuzzy
msgctxt "publishingdialog|perlRadiobutton"
msgid "Perl"
msgstr "Perl"
#: publishingdialog.ui:250
-#, fuzzy
msgctxt "publishingdialog|indexTxtLabel"
msgid "_URL for listeners:"
msgstr "_URL для слухачоў:"
#: publishingdialog.ui:276
-#, fuzzy
msgctxt "publishingdialog|URLTxtLabel"
msgid "URL for _presentation:"
msgstr "URL для прэзентацыі:"
#: publishingdialog.ui:302
-#, fuzzy
msgctxt "publishingdialog|CGITxtLabel"
msgid "URL for _Perl scripts:"
msgstr "URL для скрыптаў Perl:"
#: publishingdialog.ui:341
-#, fuzzy
msgctxt "publishingdialog|webCastLabel"
msgid "Webcast"
msgstr "Інтэрнэт-трансляцыя"
@@ -5180,19 +4794,16 @@ msgid "_As stated in document"
msgstr "Як у дакуменце"
#: publishingdialog.ui:394
-#, fuzzy
msgctxt "publishingdialog|chgAutoRadiobutton"
msgid "_Automatic"
msgstr "_Аўтаматычна"
#: publishingdialog.ui:431
-#, fuzzy
msgctxt "publishingdialog|durationTxtLabel"
msgid "_Slide view time:"
msgstr "Час аглядання слайда:"
#: publishingdialog.ui:461
-#, fuzzy
msgctxt "publishingdialog|endlessCheckbutton"
msgid "_Endless"
msgstr "Няспынна"
@@ -5200,7 +4811,7 @@ msgstr "Няспынна"
#: publishingdialog.ui:494
msgctxt "publishingdialog|kioskLabel"
msgid "Advance Slides"
-msgstr ""
+msgstr "Пракруціць* слайды"
#: publishingdialog.ui:532
msgctxt "publishingdialog|contentCheckbutton"
@@ -5210,7 +4821,7 @@ msgstr "Стварыць галоўную старонку"
#: publishingdialog.ui:549
msgctxt "publishingdialog|notesCheckbutton"
msgid "Show notes"
-msgstr ""
+msgstr "Паказаць заўвагі"
#: publishingdialog.ui:572
msgctxt "publishingdialog|htmlOptionsLabel"
@@ -5218,13 +4829,11 @@ msgid "Options"
msgstr "Настаўленні"
#: publishingdialog.ui:663
-#, fuzzy
msgctxt "publishingdialog|webCastRadiobutton"
msgid "_WebCast"
msgstr "Інтэрнэт-трансляцыя"
#: publishingdialog.ui:680
-#, fuzzy
msgctxt "publishingdialog|kioskRadiobutton"
msgid "_Automatic"
msgstr "_Аўтаматычна"
@@ -5235,7 +4844,6 @@ msgid "_Single-document HTML"
msgstr "Адзін дакумент HTML"
#: publishingdialog.ui:714
-#, fuzzy
msgctxt "publishingdialog|framesRadiobutton"
msgid "Standard HTML with _frames"
msgstr "Стандартны HTML з рамкамі"
@@ -5243,7 +4851,7 @@ msgstr "Стандартны HTML з рамкамі"
#: publishingdialog.ui:731
msgctxt "publishingdialog|standardRadiobutton"
msgid "Standard H_TML format"
-msgstr ""
+msgstr "Стандартны HTML"
#: publishingdialog.ui:754
msgctxt "publishingdialog|publicationLabel"
@@ -5253,22 +4861,19 @@ msgstr "Тып публікацыі"
#: publishingdialog.ui:812
msgctxt "publishingdialog|pngRadiobutton"
msgid "_PNG"
-msgstr ""
+msgstr "_PNG"
#: publishingdialog.ui:831
-#, fuzzy
msgctxt "publishingdialog|gifRadiobutton"
msgid "_GIF"
msgstr "_GIF"
#: publishingdialog.ui:849
-#, fuzzy
msgctxt "publishingdialog|jpgRadiobutton"
msgid "_JPG"
msgstr "_JPG"
#: publishingdialog.ui:876
-#, fuzzy
msgctxt "publishingdialog|qualityTxtLabel"
msgid "_Quality:"
msgstr "Якасць:"
@@ -5281,20 +4886,19 @@ msgstr "Запісаць відарысы як"
#: publishingdialog.ui:953
msgctxt "publishingdialog|resolution1Radiobutton"
msgid "Low (_640 × 480 pixels)"
-msgstr ""
+msgstr "Нізкая (_640 × 480 пікселяў)"
#: publishingdialog.ui:972
msgctxt "publishingdialog|resolution2Radiobutton"
msgid "Medium (_800 × 600 pixels)"
-msgstr ""
+msgstr "Сярэдняя (_800 × 600 пікселяў)"
#: publishingdialog.ui:990
msgctxt "publishingdialog|resolution3Radiobutton"
msgid "High (_1024 × 768 pixels)"
-msgstr ""
+msgstr "Высокая (_1024 × 768 пікселяў)"
#: publishingdialog.ui:1015
-#, fuzzy
msgctxt "publishingdialog|monitorResolutionLabel"
msgid "Monitor Resolution"
msgstr "Разрозненне экрана"
@@ -5302,28 +4906,24 @@ msgstr "Разрозненне экрана"
#: publishingdialog.ui:1055
msgctxt "publishingdialog|sldSoundCheckbutton"
msgid "_Export sounds when slide advances"
-msgstr ""
+msgstr "Экспартаваць гукі, калі слайд мяняецца"
#: publishingdialog.ui:1073
-#, fuzzy
msgctxt "publishingdialog|hiddenSlidesCheckbutton"
msgid "Export _hidden slides"
-msgstr "Экспартаваць схаваныя старонкі"
+msgstr "Экспартаваць схаваныя слайды"
#: publishingdialog.ui:1096
-#, fuzzy
msgctxt "publishingdialog|effectsLabel"
msgid "Effects"
-msgstr "Эфект:"
+msgstr "Эфекты"
#: publishingdialog.ui:1144
-#, fuzzy
msgctxt "publishingdialog|authorTxtLabel"
msgid "_Author:"
-msgstr "Аўтар"
+msgstr "Аўтар:"
#: publishingdialog.ui:1169
-#, fuzzy
msgctxt "publishingdialog|emailTxtLabel"
msgid "E-_mail address:"
msgstr "Адрас эл.пошты:"
@@ -5334,15 +4934,14 @@ msgid "Your hom_epage:"
msgstr "Хатняя старонка:"
#: publishingdialog.ui:1198
-#, fuzzy
msgctxt "publishingdialog|addInformLabel"
msgid "Additional _information:"
-msgstr "Дадатковыя звесткі"
+msgstr "Дадатковыя звесткі:"
#: publishingdialog.ui:1243
msgctxt "publishingdialog|downloadCheckbutton"
msgid "Link to a copy of the _original presentation"
-msgstr ""
+msgstr "Спасылка на копію арыгінальнай прэзентацыі"
#: publishingdialog.ui:1266
msgctxt "publishingdialog|infTitlePageLabel"
@@ -5367,27 +4966,24 @@ msgstr "Ужыць схему колераў з дакумента"
#: publishingdialog.ui:1400
msgctxt "publishingdialog|defaultRadiobutton"
msgid "Use _browser colors"
-msgstr ""
+msgstr "Ужыць колеры браўзера"
#: publishingdialog.ui:1418
msgctxt "publishingdialog|userRadiobutton"
msgid "_Use custom color scheme"
-msgstr ""
+msgstr "Ужыць адмысловую схему колераў"
#: publishingdialog.ui:1453
-#, fuzzy
msgctxt "publishingdialog|vLinkButton"
msgid "_Visited Link"
msgstr "Наведаная спасылка"
#: publishingdialog.ui:1467
-#, fuzzy
msgctxt "publishingdialog|aLinkButton"
msgid "Active Li_nk"
msgstr "Актыўная спасылка"
#: publishingdialog.ui:1481
-#, fuzzy
msgctxt "publishingdialog|linkButton"
msgid "Hyper_link"
msgstr "Сеціўная спасылка"
@@ -5398,7 +4994,6 @@ msgid "Text"
msgstr "Тэкст"
#: publishingdialog.ui:1528
-#, fuzzy
msgctxt "publishingdialog|backButton"
msgid "Bac_kground"
msgstr "Фон"
@@ -5406,22 +5001,19 @@ msgstr "Фон"
#: publishingdialog.ui:1559
msgctxt "publishingdialog|selectColorLabel"
msgid "Select Color Scheme"
-msgstr ""
+msgstr "Выберыце схему колераў"
#: publishingdialog.ui:1607
-#, fuzzy
msgctxt "publishingdialog|lastPageButton"
msgid "< Back"
msgstr "< Назад"
#: publishingdialog.ui:1621
-#, fuzzy
msgctxt "publishingdialog|nextPageButton"
msgid "Ne_xt >"
-msgstr "Наперад >>"
+msgstr "Наперад >"
#: publishingdialog.ui:1638
-#, fuzzy
msgctxt "publishingdialog|finishButton"
msgid "_Create"
msgstr "Стварыць"
@@ -5432,37 +5024,31 @@ msgid "Impress Remote"
msgstr "Дыстанцыйнае кіраванне Impress"
#: remotedialog.ui:102
-#, fuzzy
msgctxt "remotedialog|label1"
msgid "Connections"
msgstr "Далучэнні"
#: rotatemenu.ui:12
-#, fuzzy
msgctxt "rotatemenu|90"
msgid "Quarter Spin"
-msgstr "Чвэрць абарота"
+msgstr "Чвэрць абароту"
#: rotatemenu.ui:20
-#, fuzzy
msgctxt "rotatemenu|180"
msgid "Half Spin"
-msgstr "Палова абарота"
+msgstr "Палова абароту"
#: rotatemenu.ui:28
-#, fuzzy
msgctxt "rotatemenu|360"
msgid "Full Spin"
msgstr "Поўны абарот"
#: rotatemenu.ui:36
-#, fuzzy
msgctxt "rotatemenu|720"
msgid "Two Spins"
msgstr "Два абароты"
#: rotatemenu.ui:50
-#, fuzzy
msgctxt "rotatemenu|clockwise"
msgid "Clockwise"
msgstr "Па гадзінніку"
@@ -5483,85 +5069,71 @@ msgid "Smaller"
msgstr "Малы"
#: scalemenu.ui:28
-#, fuzzy
msgctxt "scalemenu|150"
msgid "Larger"
msgstr "Большы"
#: scalemenu.ui:36
-#, fuzzy
msgctxt "scalemenu|400"
msgid "Extra Large"
msgstr "Найбольшы"
#: scalemenu.ui:50
-#, fuzzy
msgctxt "scalemenu|hori"
msgid "Horizontal"
msgstr "Гарызантальна"
#: scalemenu.ui:58
-#, fuzzy
msgctxt "scalemenu|vert"
msgid "Vertical"
msgstr "Вертыкальна"
#: scalemenu.ui:66
-#, fuzzy
msgctxt "scalemenu|both"
msgid "Both"
msgstr "Абодва"
#: sdviewpage.ui:26
-#, fuzzy
msgctxt "sdviewpage|ruler"
msgid "_Rulers visible"
msgstr "Паказваць лінейкі"
#: sdviewpage.ui:42
-#, fuzzy
msgctxt "sdviewpage|dragstripes"
msgid "_Helplines while moving"
msgstr "Лініі-падказкі _пры перамяшчэнні"
#: sdviewpage.ui:58
-#, fuzzy
msgctxt "sdviewpage|handlesbezier"
msgid "_All control points in Bézier editor"
msgstr "Усе кантрольныя пункты пры рэдагаванні Безье"
#: sdviewpage.ui:74
-#, fuzzy
msgctxt "sdviewpage|moveoutline"
msgid "_Contour of each individual object"
msgstr "Контур кожнага асобнага аб'екта"
#: sdviewpage.ui:96
-#, fuzzy
msgctxt "sdviewpage|label1"
msgid "Display"
msgstr "Паказаць"
#: sidebarslidebackground.ui:31
-#, fuzzy
msgctxt "sidebarslidebackground|label2"
msgid "_Format:"
msgstr "Фармат:"
#: sidebarslidebackground.ui:44
-#, fuzzy
msgctxt "sidebarslidebackground|label3"
msgid "Background:"
-msgstr "Фон"
+msgstr "Фон:"
#: sidebarslidebackground.ui:57
-#, fuzzy
msgctxt "sidebarslidebackground|orientation"
msgid "Landscape"
msgstr "Альбом"
#: sidebarslidebackground.ui:58
-#, fuzzy
msgctxt "sidebarslidebackground|orientation"
msgid "Portrait"
msgstr "Кніга"
@@ -5569,7 +5141,7 @@ msgstr "Кніга"
#: sidebarslidebackground.ui:91
msgctxt "sidebarslidebackground|displaymasterobjects"
msgid "Master Objects"
-msgstr ""
+msgstr "Майстар-аб'екты"
#: sidebarslidebackground.ui:130
msgctxt "sidebarslidebackground|button2"
@@ -5579,19 +5151,17 @@ msgstr "Уставіць відарыс"
#: sidebarslidebackground.ui:168
msgctxt "sidebarslidebackground|displaymasterbackground"
msgid "Master Background"
-msgstr ""
+msgstr "Фон майстра"
#: sidebarslidebackground.ui:197
-#, fuzzy
msgctxt "sidebarslidebackground|label4"
-msgid "Orientation: "
-msgstr "Арыентацыя: "
+msgid "Orientation:"
+msgstr "Арыентацыя:"
#: sidebarslidebackground.ui:212
-#, fuzzy
msgctxt "sidebarslidebackground|masterslidebutton"
-msgid "Master Slide"
-msgstr "Апошні слайд"
+msgid "Master View"
+msgstr "Від майстра"
#: sidebarslidebackground.ui:226
msgctxt "sidebarslidebackground|closemasterslide"
@@ -5599,67 +5169,56 @@ msgid "Close Master View"
msgstr "Закрыць від: майстар-элементы"
#: sidebarslidebackground.ui:248
-#, fuzzy
msgctxt "sidebarslidebackground|marginLB"
msgid "None"
msgstr "Няма"
#: sidebarslidebackground.ui:249
-#, fuzzy
msgctxt "sidebarslidebackground|marginLB"
msgid "Narrow"
msgstr "Вузкія"
#: sidebarslidebackground.ui:250
-#, fuzzy
msgctxt "sidebarslidebackground|marginLB"
msgid "Moderate"
msgstr "Умеркавана"
#: sidebarslidebackground.ui:251
-#, fuzzy
msgctxt "sidebarslidebackground|marginLB"
msgid "Normal 0.75\""
msgstr "Звычайна 0,75\""
#: sidebarslidebackground.ui:252
-#, fuzzy
msgctxt "sidebarslidebackground|marginLB"
msgid "Normal 1\""
msgstr "Звычайна 1\""
#: sidebarslidebackground.ui:253
-#, fuzzy
msgctxt "sidebarslidebackground|marginLB"
msgid "Normal 1.25\""
msgstr "Звычайна 1.25\""
#: sidebarslidebackground.ui:254
-#, fuzzy
msgctxt "sidebarslidebackground|marginLB"
msgid "Wide"
msgstr "Шырокія"
#: sidebarslidebackground.ui:267
-#, fuzzy
msgctxt "sidebarslidebackground|labelmargin"
-msgid "Margin: "
-msgstr "Поле"
+msgid "Margin:"
+msgstr "Палі:"
#: sidebarslidebackground.ui:277
-#, fuzzy
msgctxt "sidebarslidebackground|customlabel"
msgid "Custom"
msgstr "Свой"
#: slidecontextmenu.ui:12
-#, fuzzy
msgctxt "slidecontextmenu|next"
msgid "_Next"
-msgstr "На_перад"
+msgstr "Наступны"
#: slidecontextmenu.ui:20
-#, fuzzy
msgctxt "slidecontextmenu|prev"
msgid "_Previous"
msgstr "Папярэдні"
@@ -5685,7 +5244,6 @@ msgid "Mouse Pointer as ~Pen"
msgstr "Курсор мышкі як пяро"
#: slidecontextmenu.ui:78
-#, fuzzy
msgctxt "slidecontextmenu|width"
msgid "_Pen Width"
msgstr "Шырыня пяра"
@@ -5693,58 +5251,54 @@ msgstr "Шырыня пяра"
#: slidecontextmenu.ui:88
msgctxt "slidecontextmenu|4"
msgid "_Very Thin"
-msgstr ""
+msgstr "Дужа тонка"
#: slidecontextmenu.ui:96
msgctxt "slidecontextmenu|100"
msgid "_Thin"
-msgstr ""
+msgstr "Тонка"
#: slidecontextmenu.ui:104
-#, fuzzy
msgctxt "slidecontextmenu|150"
msgid "_Normal"
-msgstr "Звычайны"
+msgstr "Звычайна"
#: slidecontextmenu.ui:112
msgctxt "slidecontextmenu|200"
msgid "_Thick"
-msgstr ""
+msgstr "Тоўста"
#: slidecontextmenu.ui:120
msgctxt "slidecontextmenu|400"
msgid "_Very Thick"
-msgstr ""
+msgstr "Дужа тоўста"
#: slidecontextmenu.ui:132
msgctxt "slidecontextmenu|color"
msgid "_Change Pen Color..."
-msgstr ""
+msgstr "Змяніць колер пяра..."
#: slidecontextmenu.ui:140
msgctxt "slidecontextmenu|erase"
msgid "_Erase All Ink on Slide"
-msgstr ""
+msgstr "Зняць усё чарніла на слайдзе"
#: slidecontextmenu.ui:154
msgctxt "slidecontextmenu|screen"
msgid "_Screen"
-msgstr ""
+msgstr "Экран"
#: slidecontextmenu.ui:164
-#, fuzzy
msgctxt "slidecontextmenu|black"
msgid "_Black"
msgstr "Чорны"
#: slidecontextmenu.ui:172
-#, fuzzy
msgctxt "slidecontextmenu|white"
msgid "_White"
msgstr "Белы"
#: slidecontextmenu.ui:184
-#, fuzzy
msgctxt "slidecontextmenu|edit"
msgid "E_dit Presentation"
msgstr "Выйсці з прэзентацыі"
@@ -5752,10 +5306,9 @@ msgstr "Выйсці з прэзентацыі"
#: slidecontextmenu.ui:192
msgctxt "slidecontextmenu|end"
msgid "_End Show"
-msgstr ""
+msgstr "Канец паказу"
#: slidedesigndialog.ui:9
-#, fuzzy
msgctxt "slidedesigndialog|SlideDesignDialog"
msgid "Slide Design"
msgstr "Дызайн слайда"
@@ -5771,66 +5324,56 @@ msgid "_Exchange background page"
msgstr "Змяніць фон старонак"
#: slidedesigndialog.ui:125
-#, fuzzy
msgctxt "slidedesigndialog|checkmasters"
msgid "_Delete unused backgrounds"
msgstr "Сцерці нявыкарыстаныя фоны"
#: slidedesigndialog.ui:158
-#, fuzzy
msgctxt "slidedesigndialog|label1"
msgid "Select a Slide Design"
msgstr "Выбраць дызайн слайда"
#: slidetransitionspanel.ui:71
-#, fuzzy
msgctxt "slidetransitionspanel|duration_label"
msgid "Duration:"
-msgstr "Праця_гласць:"
+msgstr "Працягласць:"
#: slidetransitionspanel.ui:84
msgctxt "slidetransitionspanel|transition_duration|tooltip_text"
msgid "Select the speed of Slide Transition."
-msgstr ""
+msgstr "Выбар хуткасці змены слайдаў."
#: slidetransitionspanel.ui:98
-#, fuzzy
msgctxt "slidetransitionspanel|sound_label"
msgid "Sound:"
msgstr "Гук:"
#: slidetransitionspanel.ui:111
-#, fuzzy
msgctxt "slidetransitionspanel|sound_list"
msgid "No sound"
msgstr "(без гуку)"
#: slidetransitionspanel.ui:112
-#, fuzzy
msgctxt "slidetransitionspanel|sound_list"
msgid "Stop previous sound"
msgstr "(спыніць папярэдні гук)"
#: slidetransitionspanel.ui:113
-#, fuzzy
msgctxt "slidetransitionspanel|sound_list"
msgid "Other sound..."
msgstr "Іншы гук..."
#: slidetransitionspanel.ui:123
-#, fuzzy
msgctxt "slidetransitionspanel|loop_sound"
msgid "Loop until next sound"
msgstr "Паўтараць да наступнага гуку"
#: slidetransitionspanel.ui:139
-#, fuzzy
msgctxt "slidetransitionspanel|variant_label"
msgid "Variant:"
msgstr "Варыянт:"
#: slidetransitionspanel.ui:167
-#, fuzzy
msgctxt "slidetransitionspanel|label1"
msgid "Modify Transition"
msgstr "Правіць пераход"
@@ -5838,10 +5381,9 @@ msgstr "Правіць пераход"
#: slidetransitionspanel.ui:200
msgctxt "slidetransitionspanel|rb_mouse_click"
msgid "On mouse click"
-msgstr ""
+msgstr "Па націсканні кнопкі мышкі"
#: slidetransitionspanel.ui:216
-#, fuzzy
msgctxt "slidetransitionspanel|rb_auto_after"
msgid "Automatically after:"
msgstr "Аўтаматычна пасля:"
@@ -5849,68 +5391,59 @@ msgstr "Аўтаматычна пасля:"
#: slidetransitionspanel.ui:249
msgctxt "slidetransitionspanel|label2"
msgid "Advance Slide"
-msgstr ""
+msgstr "Пракруціць* слайд"
#: slidetransitionspanel.ui:274
msgctxt "slidetransitionspanel|apply_to_all"
msgid "Apply Transition to All Slides"
-msgstr ""
+msgstr "Ужыць пераход для ўсіх слайдаў"
#: slidetransitionspanel.ui:312
-#, fuzzy
msgctxt "slidetransitionspanel|auto_preview"
msgid "Automatic Preview"
msgstr "Аўтаматычны прагляд"
#: slidetransitionspanel.ui:327
-#, fuzzy
msgctxt "slidetransitionspanel|play"
msgid "Play"
msgstr "Узнавіць"
#: slidetransitionspanelhorizontal.ui:56
-#, fuzzy
msgctxt "slidetransitionspanelhorizontal|duration_label"
msgid "Duration:"
-msgstr "Праця_гласць:"
+msgstr "Працягласць:"
#: slidetransitionspanelhorizontal.ui:69
msgctxt "slidetransitionspanelhorizontal|transition_duration|tooltip_text"
msgid "Select the speed of Slide Transition."
-msgstr ""
+msgstr "Выбар хуткасці змены слайдаў."
#: slidetransitionspanelhorizontal.ui:81
-#, fuzzy
msgctxt "slidetransitionspanelhorizontal|variant_label"
msgid "Variant:"
msgstr "Варыянт:"
#: slidetransitionspanelhorizontal.ui:103
-#, fuzzy
msgctxt "slidetransitionspanelhorizontal|sound_label"
msgid "Sound:"
msgstr "Гук:"
#: slidetransitionspanelhorizontal.ui:116
-#, fuzzy
msgctxt "slidetransitionspanelhorizontal|sound_list"
msgid "No sound"
msgstr "(без гуку)"
#: slidetransitionspanelhorizontal.ui:117
-#, fuzzy
msgctxt "slidetransitionspanelhorizontal|sound_list"
msgid "Stop previous sound"
msgstr "(спыніць папярэдні гук)"
#: slidetransitionspanelhorizontal.ui:118
-#, fuzzy
msgctxt "slidetransitionspanelhorizontal|sound_list"
msgid "Other sound..."
msgstr "Іншы гук..."
#: slidetransitionspanelhorizontal.ui:128
-#, fuzzy
msgctxt "slidetransitionspanelhorizontal|loop_sound"
msgid "Loop until next sound"
msgstr "Паўтараць да наступнага гуку"
@@ -5918,16 +5451,14 @@ msgstr "Паўтараць да наступнага гуку"
#: slidetransitionspanelhorizontal.ui:142
msgctxt "slidetransitionspanelhorizontal|rb_mouse_click"
msgid "On mouse click"
-msgstr ""
+msgstr "Па націсканні кнопкі мышкі"
#: slidetransitionspanelhorizontal.ui:159
-#, fuzzy
msgctxt "slidetransitionspanelhorizontal|rb_auto_after"
msgid "Automatically after:"
msgstr "Аўтаматычна пасля:"
#: slidetransitionspanelhorizontal.ui:186
-#, fuzzy
msgctxt "slidetransitionspanelhorizontal|auto_preview"
msgid "Automatic Preview"
msgstr "Аўтаматычны прагляд"
@@ -5935,82 +5466,69 @@ msgstr "Аўтаматычны прагляд"
#: slidetransitionspanelhorizontal.ui:205
msgctxt "slidetransitionspanelhorizontal|apply_to_all"
msgid "Apply Transition to All Slides"
-msgstr ""
+msgstr "Ужыць пераход для ўсіх слайдаў"
#: slidetransitionspanelhorizontal.ui:226
-#, fuzzy
msgctxt "slidetransitionspanelhorizontal|play"
msgid "Play"
msgstr "Узнавіць"
#: tabledesignpanel.ui:22
-#, fuzzy
msgctxt "tabledesignpanel|UseFirstRowStyle"
msgid "_Header row"
msgstr "Радок загалоўка"
#: tabledesignpanel.ui:37
-#, fuzzy
msgctxt "tabledesignpanel|UseLastRowStyle"
msgid "Tot_al row"
msgstr "Радок падсумавання"
#: tabledesignpanel.ui:52
-#, fuzzy
msgctxt "tabledesignpanel|UseBandingRowStyle"
msgid "_Banded rows"
msgstr "Чаргаванне радкоў"
#: tabledesignpanel.ui:67
-#, fuzzy
msgctxt "tabledesignpanel|UseFirstColumnStyle"
msgid "Fi_rst column"
msgstr "Першая калонка"
#: tabledesignpanel.ui:82
-#, fuzzy
msgctxt "tabledesignpanel|UseLastColumnStyle"
msgid "_Last column"
msgstr "Апошняя калонка"
#: tabledesignpanel.ui:97
-#, fuzzy
msgctxt "tabledesignpanel|UseBandingColumnStyle"
msgid "Ba_nded columns"
msgstr "Чаргаванне калонак"
#: tabledesignpanelhorizontal.ui:39
-#, fuzzy
msgctxt "tabledesignpanelhorizontal|UseFirstRowStyle"
msgid "_Header row"
msgstr "Радок загалоўка"
#: tabledesignpanelhorizontal.ui:54
-#, fuzzy
msgctxt "tabledesignpanelhorizontal|UseLastRowStyle"
msgid "Tot_al row"
msgstr "Радок падсумавання"
#: tabledesignpanelhorizontal.ui:69
-#, fuzzy
msgctxt "tabledesignpanelhorizontal|UseBandingRowStyle"
msgid "_Banded rows"
msgstr "Чаргаванне радкоў"
#: tabledesignpanelhorizontal.ui:84
-#, fuzzy
msgctxt "tabledesignpanelhorizontal|UseBandingColumnStyle"
msgid "Ba_nded columns"
msgstr "Чаргаванне калонак"
#: tabledesignpanelhorizontal.ui:99
-#, fuzzy
msgctxt "tabledesignpanelhorizontal|UseFirstColumnStyle"
msgid "Fi_rst column"
msgstr "Першая калонка"
#: tabledesignpanelhorizontal.ui:114
-#, fuzzy
msgctxt "tabledesignpanelhorizontal|UseLastColumnStyle"
msgid "_Last column"
msgstr "Апошняя калонка"
@@ -6021,55 +5539,46 @@ msgid "Graphic Styles"
msgstr "Стылі графікі"
#: templatedialog.ui:80
-#, fuzzy
msgctxt "templatedialog|standard"
msgid "_Standard"
-msgstr "Standard"
+msgstr "Стандарт"
#: templatedialog.ui:119
-#, fuzzy
msgctxt "templatedialog|organizer"
msgid "Organizer"
msgstr "Арганізатар"
#: templatedialog.ui:141
-#, fuzzy
msgctxt "templatedialog|line"
msgid "Line"
-msgstr "Радок"
+msgstr "Лінія"
#: templatedialog.ui:164
-#, fuzzy
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Абсяг"
#: templatedialog.ui:187
-#, fuzzy
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Ценяванне"
#: templatedialog.ui:210
-#, fuzzy
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Празрыстасць"
#: templatedialog.ui:233
-#, fuzzy
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Шрыфт"
#: templatedialog.ui:256
-#, fuzzy
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Шрыфтавыя эфекты"
#: templatedialog.ui:279
-#, fuzzy
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Водступы і інтэрвалы"
@@ -6085,43 +5594,36 @@ msgid "Text Animation"
msgstr "Анімаваны тэкст"
#: templatedialog.ui:348
-#, fuzzy
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Мерная лінія"
#: templatedialog.ui:371
-#, fuzzy
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Злучальнік"
#: templatedialog.ui:394
-#, fuzzy
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Раўнаванне"
#: templatedialog.ui:417
-#, fuzzy
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Азіяцкі лад друку"
#: templatedialog.ui:440
-#, fuzzy
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Табуляцыі"
#: templatedialog.ui:463
-#, fuzzy
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Падсвятленне"
#: breakdialog.ui:7
-#, fuzzy
msgctxt "breakdialog|BreakDialog"
msgid "Break"
msgstr "Разрыў"
@@ -6132,7 +5634,6 @@ msgid "Processing metafile:"
msgstr "Апрацоўваецца метафайл:"
#: breakdialog.ui:65
-#, fuzzy
msgctxt "breakdialog|label2"
msgid "Broken down metaobjects:"
msgstr "Раздробненыя мета-аб'екты:"
@@ -6148,7 +5649,6 @@ msgid "Bullets and Numbering"
msgstr "Пункты і нумараванне"
#: bulletsandnumbering.ui:67
-#, fuzzy
msgctxt "bulletsandnumbering|reset"
msgid "Reset"
msgstr "Да пачатковага"
@@ -6159,7 +5659,6 @@ msgid "Bullets"
msgstr "Маркёры"
#: bulletsandnumbering.ui:127
-#, fuzzy
msgctxt "bulletsandnumbering|singlenum"
msgid "Numbering"
msgstr "Нумараванне"
@@ -6175,7 +5674,6 @@ msgid "Position"
msgstr "Месца"
#: bulletsandnumbering.ui:196
-#, fuzzy
msgctxt "bulletsandnumbering|customize"
msgid "Customize"
msgstr "Уладкаваць"
@@ -6191,10 +5689,9 @@ msgid "_Default"
msgstr "Прадвызначана"
#: copydlg.ui:127
-#, fuzzy
msgctxt "copydlg|label4"
msgid "Number of _copies:"
-msgstr "Колькасць копій"
+msgstr "Колькасць копій:"
#: copydlg.ui:157
msgctxt "copydlg|viewdata|tooltip_text"
@@ -6202,28 +5699,24 @@ msgid "Values from Selection"
msgstr "Значэнні з пазначанага"
#: copydlg.ui:161
-#, fuzzy
msgctxt "copydlg|viewdata-atkobject"
msgid "Values from Selection"
msgstr "Значэнні з пазначанага"
#: copydlg.ui:203
-#, fuzzy
msgctxt "copydlg|label5"
msgid "_X axis:"
-msgstr "Вось _X"
+msgstr "Вось _X:"
#: copydlg.ui:217
-#, fuzzy
msgctxt "copydlg|label6"
msgid "_Y axis:"
-msgstr "Вось _Y"
+msgstr "Вось _Y:"
#: copydlg.ui:231
-#, fuzzy
msgctxt "copydlg|label7"
msgid "_Angle:"
-msgstr "Вугал"
+msgstr "Вугал:"
#: copydlg.ui:291
msgctxt "copydlg|label1"
@@ -6231,16 +5724,14 @@ msgid "Placement"
msgstr "Месца"
#: copydlg.ui:329
-#, fuzzy
msgctxt "copydlg|label8"
msgid "_Width:"
-msgstr "Шырыня"
+msgstr "Шырыня:"
#: copydlg.ui:343
-#, fuzzy
msgctxt "copydlg|label9"
msgid "_Height:"
-msgstr "Вышыня"
+msgstr "Вышыня:"
#: copydlg.ui:389
msgctxt "copydlg|label2"
@@ -6248,16 +5739,14 @@ msgid "Enlargement"
msgstr "Павелічэнне"
#: copydlg.ui:427
-#, fuzzy
msgctxt "copydlg|label10"
msgid "_Start:"
-msgstr "Пачатак"
+msgstr "Пачатак:"
#: copydlg.ui:441
-#, fuzzy
msgctxt "copydlg|endlabel"
msgid "_End:"
-msgstr "Канец"
+msgstr "Канец:"
#: copydlg.ui:481
msgctxt "copydlg|label3"
@@ -6265,31 +5754,26 @@ msgid "Colors"
msgstr "Колеры"
#: crossfadedialog.ui:15
-#, fuzzy
msgctxt "crossfadedialog|CrossFadeDialog"
msgid "Cross-fading"
msgstr "Узаемапераход"
#: crossfadedialog.ui:102
-#, fuzzy
msgctxt "crossfadedialog|orientation"
msgid "Same orientation"
msgstr "Аднолькава арыентавана"
#: crossfadedialog.ui:118
-#, fuzzy
msgctxt "crossfadedialog|attributes"
msgid "Cross-fade attributes"
msgstr "Атрыбуты ўзаемапераходу"
#: crossfadedialog.ui:137
-#, fuzzy
msgctxt "crossfadedialog|label2"
msgid "Increments:"
msgstr "Прырост:"
#: crossfadedialog.ui:166
-#, fuzzy
msgctxt "crossfadedialog|label1"
msgid "Settings"
msgstr "Настаўленні"
@@ -6300,13 +5784,11 @@ msgid "New Snap Object"
msgstr "Новы аб'ект прыцягнення"
#: dlgsnap.ui:170
-#, fuzzy
msgctxt "dlgsnap|xlabel"
msgid "_X:"
msgstr "_X:"
#: dlgsnap.ui:183
-#, fuzzy
msgctxt "dlgsnap|ylabel"
msgid "_Y:"
msgstr "_Y:"
@@ -6337,19 +5819,16 @@ msgid "Type"
msgstr "Тып"
#: drawchardialog.ui:8
-#, fuzzy
msgctxt "drawchardialog|DrawCharDialog"
msgid "Character"
msgstr "Знак"
#: drawchardialog.ui:105
-#, fuzzy
msgctxt "drawchardialog|RID_SVXPAGE_CHAR_NAME"
msgid "Fonts"
msgstr "Шрыфты"
#: drawchardialog.ui:127
-#, fuzzy
msgctxt "drawchardialog|RID_SVXPAGE_CHAR_EFFECTS"
msgid "Font Effects"
msgstr "Шрыфтавыя эфекты"
@@ -6360,7 +5839,6 @@ msgid "Position"
msgstr "Месца"
#: drawchardialog.ui:173
-#, fuzzy
msgctxt "drawchardialog|RID_SVXPAGE_BACKGROUND"
msgid "Highlighting"
msgstr "Падсвятленне"
@@ -6376,169 +5854,141 @@ msgid "Page"
msgstr "Старонка"
#: drawpagedialog.ui:127
-#, fuzzy
msgctxt "drawpagedialog|RID_SVXPAGE_AREA"
msgid "Background"
msgstr "Фон"
#: drawpagedialog.ui:150
-#, fuzzy
msgctxt "drawpagedialog|RID_SVXPAGE_TRANSPARENCE"
msgid "Transparency"
msgstr "Празрыстасць"
#: drawparadialog.ui:8
-#, fuzzy
msgctxt "drawparadialog|DrawParagraphPropertiesDialog"
msgid "Paragraph"
msgstr "Абзац"
#: drawparadialog.ui:105
-#, fuzzy
msgctxt "drawparadialog|labelTP_PARA_STD"
msgid "Indents & Spacing"
msgstr "Водступы і інтэрвалы"
#: drawparadialog.ui:127
-#, fuzzy
msgctxt "drawparadialog|labelTP_PARA_ASIAN"
msgid "Asian Typography"
msgstr "Азіяцкі лад друку"
#: drawparadialog.ui:150
-#, fuzzy
msgctxt "drawparadialog|labelTP_TABULATOR"
msgid "Tabs"
msgstr "Табуляцыі"
#: drawparadialog.ui:173
-#, fuzzy
msgctxt "drawparadialog|labelTP_PARA_ALIGN"
msgid "Alignment"
msgstr "Раўнаванне"
#: drawparadialog.ui:197
-#, fuzzy
msgctxt "drawparadialog|labelNUMBERING"
msgid "Numbering"
msgstr "Нумараванне"
#: drawprinteroptions.ui:32
-#, fuzzy
msgctxt "drawprinteroptions|printname"
msgid "Page name"
msgstr "Назва старонкі"
#: drawprinteroptions.ui:48
-#, fuzzy
msgctxt "drawprinteroptions|printdatetime"
msgid "Date and time"
msgstr "Дата і час"
#: drawprinteroptions.ui:70
-#, fuzzy
msgctxt "drawprinteroptions|label4"
msgid "Contents"
msgstr "Змесціва"
#: drawprinteroptions.ui:103
-#, fuzzy
msgctxt "drawprinteroptions|originalcolors"
msgid "Original size"
msgstr "Пачатковы памер"
#: drawprinteroptions.ui:121
-#, fuzzy
msgctxt "drawprinteroptions|grayscale"
msgid "Grayscale"
msgstr "Шэрыя адценні"
#: drawprinteroptions.ui:139
-#, fuzzy
msgctxt "drawprinteroptions|blackandwhite"
msgid "Black & white"
msgstr "Чорна-белы"
#: drawprinteroptions.ui:163
-#, fuzzy
msgctxt "drawprinteroptions|label5"
msgid "Color"
msgstr "Колер"
#: drawprinteroptions.ui:196
-#, fuzzy
msgctxt "drawprinteroptions|originalsize"
msgid "Original size"
msgstr "Пачатковы памер"
#: drawprinteroptions.ui:214
-#, fuzzy
msgctxt "drawprinteroptions|fittoprintable"
msgid "Fit to printable page"
msgstr "Умяшчаць на друкавальны аркуш"
#: drawprinteroptions.ui:232
-#, fuzzy
msgctxt "drawprinteroptions|distributeonmultiple"
msgid "Distribute on multiple sheets of paper"
msgstr "Размеркаваць на некалькі аркушаў"
#: drawprinteroptions.ui:250
-#, fuzzy
msgctxt "drawprinteroptions|tilesheet"
msgid "Tile sheet of paper with repeated pages"
msgstr "Запоўніць аркуш паўторамі старонак"
#: drawprinteroptions.ui:274
-#, fuzzy
msgctxt "drawprinteroptions|label6"
msgid "Size"
msgstr "Памер"
#: drawprtldialog.ui:8
-#, fuzzy
msgctxt "drawprtldialog|DrawPRTLDialog"
msgid "Presentation Layout"
msgstr "Выклад прэзентацыі"
#: drawprtldialog.ui:105
-#, fuzzy
msgctxt "drawprtldialog|RID_SVXPAGE_LINE"
msgid "Line"
msgstr "Радок"
#: drawprtldialog.ui:127
-#, fuzzy
msgctxt "drawprtldialog|RID_SVXPAGE_AREA"
msgid "Area"
msgstr "Абсяг"
#: drawprtldialog.ui:150
-#, fuzzy
msgctxt "drawprtldialog|RID_SVXPAGE_SHADOW"
msgid "Shadow"
msgstr "Цень"
#: drawprtldialog.ui:173
-#, fuzzy
msgctxt "drawprtldialog|RID_SVXPAGE_TRANSPARENCE"
msgid "Transparency"
msgstr "Празрыстасць"
#: drawprtldialog.ui:196
-#, fuzzy
msgctxt "drawprtldialog|RID_SVXPAGE_CHAR_NAME"
msgid "Font"
msgstr "Шрыфт"
#: drawprtldialog.ui:219
-#, fuzzy
msgctxt "drawprtldialog|RID_SVXPAGE_CHAR_EFFECTS"
msgid "Font Effects"
msgstr "Шрыфтавыя эфекты"
#: drawprtldialog.ui:242
-#, fuzzy
msgctxt "drawprtldialog|RID_SVXPAGE_STD_PARAGRAPH"
msgid "Indents & Spacing"
msgstr "Водступы і інтэрвалы"
@@ -6554,7 +6004,6 @@ msgid "Bullets"
msgstr "Пункты"
#: drawprtldialog.ui:311
-#, fuzzy
msgctxt "drawprtldialog|RID_SVXPAGE_PICK_SINGLE_NUM"
msgid "Numbering"
msgstr "Нумараванне"
@@ -6565,31 +6014,26 @@ msgid "Image"
msgstr "Выява"
#: drawprtldialog.ui:357
-#, fuzzy
msgctxt "drawprtldialog|RID_SVXPAGE_NUM_OPTIONS"
msgid "Customize"
msgstr "Уладкаваць"
#: drawprtldialog.ui:380
-#, fuzzy
msgctxt "drawprtldialog|RID_SVXPAGE_ALIGN_PARAGRAPH"
msgid "Alignment"
msgstr "Раўнаванне"
#: drawprtldialog.ui:403
-#, fuzzy
msgctxt "drawprtldialog|RID_SVXPAGE_PARA_ASIAN"
msgid "Asian Typography"
msgstr "Азіяцкі лад друку"
#: drawprtldialog.ui:426
-#, fuzzy
msgctxt "drawprtldialog|RID_SVXPAGE_TABULATOR"
msgid "Tabs"
msgstr "Табуляцыі"
#: drawprtldialog.ui:449
-#, fuzzy
msgctxt "drawprtldialog|RID_SVXPAGE_BACKGROUND"
msgid "Highlighting"
msgstr "Падсвятленне"
@@ -6610,7 +6054,6 @@ msgid "_Title"
msgstr "Загаловак"
#: insertlayer.ui:197
-#, fuzzy
msgctxt "insertlayer|description"
msgid "_Description"
msgstr "Апісанне"
@@ -6668,7 +6111,7 @@ msgstr "Нумараванне абзацаў"
#: queryunlinkimagedialog.ui:8
msgctxt "queryunlinkimagedialog|QueryUnlinkImageDialog"
msgid "Release image's link?"
-msgstr ""
+msgstr "Разарваць сувязь з выявай?"
#: queryunlinkimagedialog.ui:14
msgctxt "queryunlinkimagedialog|QueryUnlinkImageDialog"
@@ -6678,7 +6121,7 @@ msgstr "Гэты відарыс злучаны з дакументам."
#: queryunlinkimagedialog.ui:15
msgctxt "queryunlinkimagedialog|QueryUnlinkImageDialog"
msgid "Do you want to unlink the image in order to edit it?"
-msgstr ""
+msgstr "Разарваць сувязь з відарысам для яго праўкі?"
#: tabledesigndialog.ui:9
msgctxt "tabledesigndialog|TableDesignDialog"
@@ -6686,43 +6129,36 @@ msgid "Table Design"
msgstr "Дызайн табліцы"
#: tabledesigndialog.ui:85
-#, fuzzy
msgctxt "tabledesigndialog|UseFirstRowStyle"
msgid "_Header row"
msgstr "Радок загалоўка"
#: tabledesigndialog.ui:100
-#, fuzzy
msgctxt "tabledesigndialog|UseLastRowStyle"
msgid "Tot_al row"
msgstr "Радок падсумавання"
#: tabledesigndialog.ui:115
-#, fuzzy
msgctxt "tabledesigndialog|UseBandingRowStyle"
msgid "_Banded rows"
msgstr "Чаргаванне радкоў"
#: tabledesigndialog.ui:130
-#, fuzzy
msgctxt "tabledesigndialog|UseFirstColumnStyle"
msgid "Fi_rst column"
msgstr "Першая калонка"
#: tabledesigndialog.ui:145
-#, fuzzy
msgctxt "tabledesigndialog|UseLastColumnStyle"
msgid "_Last column"
msgstr "Апошняя калонка"
#: tabledesigndialog.ui:160
-#, fuzzy
msgctxt "tabledesigndialog|UseBandingColumnStyle"
msgid "Ba_nded columns"
msgstr "Чаргаванне калонак"
#: vectorize.ui:27
-#, fuzzy
msgctxt "vectorize|VectorizeDialog"
msgid "Convert to Polygon"
msgstr "Ператварыць у многавугольнік"
@@ -6733,19 +6169,16 @@ msgid "Preview"
msgstr "Перадпрагляд"
#: vectorize.ui:118
-#, fuzzy
msgctxt "vectorize|label2"
msgid "Number of colors:"
-msgstr "Колькасць копій"
+msgstr "Колькасць колераў:"
#: vectorize.ui:144
-#, fuzzy
msgctxt "vectorize|label3"
msgid "Point reduction:"
msgstr "Скарачэнне пунктаў:"
#: vectorize.ui:172
-#, fuzzy
msgctxt "vectorize|tilesft"
msgid "Tile size:"
msgstr "Памер плітак:"
@@ -6753,14 +6186,14 @@ msgstr "Памер плітак:"
#: vectorize.ui:195
msgctxt "vectorize|fillholes"
msgid "_Fill holes"
-msgstr ""
+msgstr "Запаўненне прамежкаў"
#: vectorize.ui:229
msgctxt "vectorize|label5"
msgid "Source image:"
-msgstr ""
+msgstr "Крыніца відарыса:"
#: vectorize.ui:243
msgctxt "vectorize|label6"
msgid "Vectorized image:"
-msgstr ""
+msgstr "Вектарызаваная выява:"
diff --git a/source/be/sfx2/messages.po b/source/be/sfx2/messages.po
index bfc2c60f78f..1d2caddcdee 100644
--- a/source/be/sfx2/messages.po
+++ b/source/be/sfx2/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: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-12-16 19:07+0000\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
+"PO-Revision-Date: 2017-12-19 15:36+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1513451267.000000\n"
+"X-POOTLE-MTIME: 1513697786.000000\n"
#: strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -811,27 +811,32 @@ msgctxt "RID_SVXSTR_INCORRECT_PASSWORD"
msgid "Incorrect password"
msgstr "Несапраўдны пароль"
-#: strings.hrc:173
+#: strings.hrc:172
+msgctxt "RID_SVXSTR_GPG_ENCRYPT_FAILURE"
+msgid "OpenPGP key not trusted, damaged, or encryption failure. Please try again."
+msgstr ""
+
+#: strings.hrc:174
msgctxt "STR_PASSWD_MIN_LEN"
msgid "(Minimum $(MINLEN) characters)"
msgstr "(Мінімум $(MINLEN) знакаў)"
-#: strings.hrc:174
+#: strings.hrc:175
msgctxt "STR_PASSWD_MIN_LEN1"
msgid "(Minimum 1 character)"
msgstr "(Мінімум 1 знак)"
-#: strings.hrc:175
+#: strings.hrc:176
msgctxt "STR_PASSWD_EMPTY"
msgid "(The password can be empty)"
msgstr "(Пароль можа быць пустым)"
-#: strings.hrc:176
+#: strings.hrc:177
msgctxt "STR_MODULENOTINSTALLED"
msgid "The action could not be executed. The %PRODUCTNAME program module needed for this action is currently not installed."
msgstr "Немагчыма выканаць. Не ўстаноўлены праграмны модуль %PRODUCTNAME, які патрэбны дзеля гэтага."
-#: strings.hrc:178
+#: strings.hrc:179
msgctxt "STR_FILTER_NOT_INSTALLED"
msgid ""
"The selected filter $(FILTER) has not been installed.\n"
@@ -840,7 +845,7 @@ msgstr ""
"Выбраны фільтр $(FILTER) не ўстаноўлены.\n"
"Ці жадаеце зрабіць гэта зараз?"
-#: strings.hrc:179
+#: strings.hrc:180
msgctxt "STR_FILTER_CONSULT_SERVICE"
msgid ""
"The selected filter $(FILTER) is not included in your edition.\n"
@@ -849,72 +854,72 @@ msgstr ""
"Выбраны фільтр $(FILTER) не ўлучаны ў ваш варыянт прадукта.\n"
"Вы можаце знайсці інфармацыю пра замовы на нашай пляцоўцы ў Сеціве."
-#: strings.hrc:181
+#: strings.hrc:182
msgctxt "STR_WELCOME_LINE1"
msgid "Welcome to %PRODUCTNAME."
msgstr "Вас вітае %PRODUCTNAME."
-#: strings.hrc:182
+#: strings.hrc:183
msgctxt "STR_WELCOME_LINE2"
msgid "Drop a document here or pick an app from the left side to create one."
msgstr ""
-#: strings.hrc:184
+#: strings.hrc:185
msgctxt "STR_SFX_FILEDLG_ACTUALVERSION"
msgid "Current version"
msgstr "Гэтая версія"
-#: strings.hrc:185
+#: strings.hrc:186
msgctxt "STR_SFX_EXPLORERFILE_EXPORT"
msgid "Export"
msgstr "Экспартаваць"
-#: strings.hrc:186
+#: strings.hrc:187
msgctxt "STR_SFX_EXPLORERFILE_INSERT"
msgid "Insert"
msgstr "Уставіць"
-#: strings.hrc:187
+#: strings.hrc:188
msgctxt "STR_SFX_EXPLORERFILE_BUTTONINSERT"
msgid "~Insert"
msgstr "Уставіць"
-#: strings.hrc:188
+#: strings.hrc:189
msgctxt "STR_SFX_IMPORT_ALL"
msgid "<All formats>"
msgstr "<усе фарматы>"
-#: strings.hrc:189
+#: strings.hrc:190
msgctxt "STR_PB_SAVEACOPY"
msgid "Save a Copy"
msgstr "Запісаць копію"
-#: strings.hrc:190
+#: strings.hrc:191
msgctxt "STR_PB_COMPAREDOC"
msgid "Compare to"
msgstr "Параўнаць з"
-#: strings.hrc:191
+#: strings.hrc:192
msgctxt "STR_PB_MERGEDOC"
msgid "Merge with"
msgstr "Аб'яднаць з"
-#: strings.hrc:193
+#: strings.hrc:194
msgctxt "STR_SFX_NEWOFFICEDOC"
msgid "%PRODUCTNAME document"
msgstr "Дакумент %PRODUCTNAME"
-#: strings.hrc:194
+#: strings.hrc:195
msgctxt "SFX_ST_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Г: %1 М: %2 Дз: %3 г: %4 м: %5 с: %6"
-#: strings.hrc:195
+#: strings.hrc:196
msgctxt "STR_SFX_REMOVE_PROPERTY"
msgid "Remove Property"
msgstr "Сцерці ўласцівасць"
-#: strings.hrc:196
+#: strings.hrc:197
#, fuzzy
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
@@ -924,27 +929,27 @@ msgstr ""
"The value entered does not match the specified type.\n"
"The value will be stored as text."
-#: strings.hrc:198
+#: strings.hrc:199
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Стыль ужо існуе. Ці замяніць яго?"
-#: strings.hrc:200
+#: strings.hrc:201
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "Да пачатковага"
-#: strings.hrc:201
+#: strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Гэта назва ўжо занятая."
-#: strings.hrc:202
+#: strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Гэты стыль не існуе."
-#: strings.hrc:203
+#: strings.hrc:204
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -953,7 +958,7 @@ msgstr ""
"Гэты стыль нельга прызначыць базавым стылем,\n"
"таму што гэта ўтварае рэкурсіўную спасылку (само на сябе)."
-#: strings.hrc:204
+#: strings.hrc:205
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -962,7 +967,7 @@ msgstr ""
"Стыль з такою назвай ужо існуе як прадвызначаны.\n"
"Выберыце іншую назву."
-#: strings.hrc:205
+#: strings.hrc:206
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -970,92 +975,92 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: strings.hrc:206
+#: strings.hrc:207
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Выкарыстаныя стылі: "
-#: strings.hrc:207
+#: strings.hrc:208
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Навігатар"
-#: strings.hrc:208
+#: strings.hrc:209
msgctxt "STR_SID_SIDEBAR"
msgid "Sidebar"
msgstr "Бакоўка"
-#: strings.hrc:209
+#: strings.hrc:210
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Некарэктнае пацверджанне пароля"
-#: strings.hrc:210
+#: strings.hrc:211
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Адаслаць"
-#: strings.hrc:211
+#: strings.hrc:212
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Шрыфт"
-#: strings.hrc:212
+#: strings.hrc:213
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show Previews"
msgstr "Паказваць прагляд"
-#: strings.hrc:214
+#: strings.hrc:215
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Уставіць каментар з версіяй"
-#: strings.hrc:215
+#: strings.hrc:216
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: strings.hrc:217
+#: strings.hrc:218
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Спіс стыляў"
-#: strings.hrc:218
+#: strings.hrc:219
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Іерархія"
-#: strings.hrc:219
+#: strings.hrc:220
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Рэжым фарматнай заліўкі"
-#: strings.hrc:220
+#: strings.hrc:221
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Новы стыль з пазначанага"
-#: strings.hrc:221
+#: strings.hrc:222
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Абнавіць стыль"
-#: strings.hrc:223
+#: strings.hrc:224
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Сапраўды адмовіцца ад занатоўвання? Усё, што было занатавана дагэтуль, будзе страчана."
-#: strings.hrc:224
+#: strings.hrc:225
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Адмовіцца ад запісу"
-#: strings.hrc:226
+#: strings.hrc:227
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Ініцыялізуюцца шаблоны, дзеля першага выкарыстання."
-#: strings.hrc:228
+#: strings.hrc:229
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1064,7 +1069,7 @@ msgstr ""
"Няма прадвызначанага прынтэра\n"
"Прызначце такі прынтэр і паспрабуйце нанова."
-#: strings.hrc:229
+#: strings.hrc:230
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1073,17 +1078,17 @@ msgstr ""
"Не ўдалося пачаць працу з прынтэрам.\n"
"Праверце настаўленні прынтэра."
-#: strings.hrc:230
+#: strings.hrc:231
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Прынтэр заняты"
-#: strings.hrc:231
+#: strings.hrc:232
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (read-only)"
-#: strings.hrc:232
+#: strings.hrc:233
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1094,7 +1099,7 @@ msgstr ""
"Ці хочаце запісаць новыя настаўленні ў\n"
"актыўны дакумент?"
-#: strings.hrc:233
+#: strings.hrc:234
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1105,7 +1110,7 @@ msgstr ""
"Ці хочаце запісаць новыя настаўленні ў\n"
"актыўны дакумент?"
-#: strings.hrc:234
+#: strings.hrc:235
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1116,7 +1121,7 @@ msgstr ""
"Ці хочаце запісаць новыя настаўленні \n"
"ў актыўны дакумент?"
-#: strings.hrc:235
+#: strings.hrc:236
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1125,7 +1130,7 @@ msgstr ""
"Нельга закрыць дакумент, таму што\n"
"зараз ён друкуецца."
-#: strings.hrc:236
+#: strings.hrc:237
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1134,208 +1139,310 @@ msgstr ""
"Памылка пры адсыланні паведамлення. Магчымыя прычыны - не вызначаны рахунак эл.пошты або настаўленні з'яўляюцца некарэктнымі.\n"
"Праверце настаўленні %PRODUCTNAME або настаўленні вашай паштовай праграмы."
-#: strings.hrc:237
+#: strings.hrc:238
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Немагчыма правіць гэты дакумент, магчыма з-за недастатковых правоў доступу. Ці будзеце працаваць з копіяй дакумента?"
-#: strings.hrc:238
+#: strings.hrc:239
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (адрамантаваны дакумент)"
-#: strings.hrc:239
+#: strings.hrc:240
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Не ўдалося выняць* дакумент з сервера"
-#: strings.hrc:240
+#: strings.hrc:241
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Дакумент адкрыты ў рэжыме толькі-чытанага."
-#: strings.hrc:241
+#: strings.hrc:242
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: strings.hrc:242
+#: strings.hrc:243
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: strings.hrc:243
+#: strings.hrc:244
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: strings.hrc:244
+#: strings.hrc:245
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: strings.hrc:245
+#: strings.hrc:246
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Intellectual Property:"
msgstr "Інтэлектуальная ўласнасць:"
-#: strings.hrc:246
+#: strings.hrc:247
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Нацыянальная бяспека:"
-#: strings.hrc:247
+#: strings.hrc:248
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Экспартныя абмежаванні:"
-#: strings.hrc:248
+#: strings.hrc:249
#, fuzzy
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Выняць"
-#: strings.hrc:249
+#: strings.hrc:250
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Правіць дакумент"
-#: strings.hrc:250
+#: strings.hrc:251
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Падпісаць дакумент"
-#: strings.hrc:251
+#: strings.hrc:252
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: strings.hrc:252
+#: strings.hrc:253
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: strings.hrc:253
+#: strings.hrc:254
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: strings.hrc:254
+#: strings.hrc:255
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: strings.hrc:255
+#: strings.hrc:256
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: strings.hrc:256
+#: strings.hrc:257
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
-msgstr ""
+msgstr "Паказаць подпісы"
-#: strings.hrc:258
+#: strings.hrc:259
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
-msgstr ""
+msgstr "Закрыць панэль"
-#: strings.hrc:259
+#: strings.hrc:260
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Прымацаваць*"
-#: strings.hrc:260
+#: strings.hrc:261
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Адмацаваць*"
-#: strings.hrc:262
+#: strings.hrc:263
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Дадатковыя настаўленні"
-#: strings.hrc:263
+#: strings.hrc:264
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Закрыць бакоўку"
-#: strings.hrc:264
+#: strings.hrc:265
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Настаўленні бакоўкі"
-#: strings.hrc:265
+#: strings.hrc:266
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Уладкаванне"
-#: strings.hrc:266
+#: strings.hrc:267
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Аднавіць прадвызначэнні"
-#: strings.hrc:267
+#: strings.hrc:268
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Закрыць бакавую панэль"
-#: strings.hrc:269
+#. Translators: default Impress template names
+#: strings.hrc:271
msgctxt "STR_TEMPLATE_NAME1"
-msgid "Abstract Green"
-msgstr "Абстрактны зялёны"
+msgid "Alizarin"
+msgstr ""
-#: strings.hrc:270
+#: strings.hrc:272
msgctxt "STR_TEMPLATE_NAME2"
-msgid "Abstract Red"
-msgstr "Абстрактны чырвоны"
+msgid "Beehive"
+msgstr ""
-#: strings.hrc:271
+#: strings.hrc:273
msgctxt "STR_TEMPLATE_NAME3"
-msgid "Abstract Yellow"
-msgstr "Абстрактны жоўты"
+msgid "Blue Curve"
+msgstr ""
-#: strings.hrc:272
+#: strings.hrc:274
msgctxt "STR_TEMPLATE_NAME4"
+msgid "Blueprint Plans"
+msgstr ""
+
+#: strings.hrc:275
+msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Яркі сіні"
-#: strings.hrc:273
-msgctxt "STR_TEMPLATE_NAME5"
+#: strings.hrc:276
+msgctxt "STR_TEMPLATE_NAME6"
+msgid "Classy Red"
+msgstr ""
+
+#: strings.hrc:277
+msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ДНК"
-#: strings.hrc:274
-msgctxt "STR_TEMPLATE_NAME6"
+#: strings.hrc:278
+msgctxt "STR_TEMPLATE_NAME8"
+msgid "Focus"
+msgstr "Фокус"
+
+#: strings.hrc:279
+msgctxt "STR_TEMPLATE_NAME9"
+msgid "Forestbird"
+msgstr ""
+
+#: strings.hrc:280
+msgctxt "STR_TEMPLATE_NAME10"
+msgid "Impress"
+msgstr ""
+
+#: strings.hrc:281
+msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
-msgstr "Натхненне"
+msgstr ""
-#: strings.hrc:275
-msgctxt "STR_TEMPLATE_NAME7"
+#: strings.hrc:282
+msgctxt "STR_TEMPLATE_NAME12"
+msgid "Lights"
+msgstr ""
+
+#: strings.hrc:283
+msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
-msgstr "Сакавіты зялёны"
+msgstr ""
-#: strings.hrc:276
-msgctxt "STR_TEMPLATE_NAME8"
+#: strings.hrc:284
+msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
-msgstr "Метраполія"
+msgstr ""
-#: strings.hrc:277
-msgctxt "STR_TEMPLATE_NAME9"
+#: strings.hrc:285
+msgctxt "STR_TEMPLATE_NAME15"
+msgid "Midnightblue"
+msgstr ""
+
+#: strings.hrc:286
+msgctxt "STR_TEMPLATE_NAME16"
+msgid "Nature Illustration"
+msgstr ""
+
+#: strings.hrc:287
+msgctxt "STR_TEMPLATE_NAME17"
+msgid "Pencil"
+msgstr ""
+
+#: strings.hrc:288
+msgctxt "STR_TEMPLATE_NAME18"
+msgid "Piano"
+msgstr ""
+
+#: strings.hrc:289
+msgctxt "STR_TEMPLATE_NAME19"
+msgid "Portfolio"
+msgstr ""
+
+#: strings.hrc:290
+msgctxt "STR_TEMPLATE_NAME20"
+msgid "Progress"
+msgstr ""
+
+#: strings.hrc:291
+msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Заход сонца"
-#: strings.hrc:278
-msgctxt "STR_TEMPLATE_NAME10"
+#: strings.hrc:292
+msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Рэтра"
-#: strings.hrc:280
+#: strings.hrc:293
+msgctxt "STR_TEMPLATE_NAME23"
+msgid "Vivid"
+msgstr ""
+
+#. Translators: default Writer template names
+#: strings.hrc:295
+msgctxt "STR_TEMPLATE_NAME24"
+msgid "CV"
+msgstr ""
+
+#: strings.hrc:296
+msgctxt "STR_TEMPLATE_NAME25"
+msgid "Resume"
+msgstr ""
+
+#: strings.hrc:297
+msgctxt "STR_TEMPLATE_NAME26"
+msgid "Default"
+msgstr ""
+
+#: strings.hrc:298
+msgctxt "STR_TEMPLATE_NAME27"
+msgid "Modern"
+msgstr ""
+
+#: strings.hrc:299
+msgctxt "STR_TEMPLATE_NAME28"
+msgid "Modern business letter sans-serif"
+msgstr ""
+
+#: strings.hrc:300
+msgctxt "STR_TEMPLATE_NAME29"
+msgid "Modern business letter serif"
+msgstr ""
+
+#: strings.hrc:301
+msgctxt "STR_TEMPLATE_NAME30"
+msgid "Businesscard with logo"
+msgstr ""
+
+#: strings.hrc:303
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Сцерці"
-#: strings.hrc:281
+#: strings.hrc:304
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Ачысціць усё"
@@ -1662,10 +1769,9 @@ msgid "Check-In"
msgstr "Адзначыць Унутр"
#: checkin.ui:84
-#, fuzzy
msgctxt "checkin|MajorVersion"
msgid "New major version"
-msgstr "Дадаць"
+msgstr "Новая асноўная версія"
#: checkin.ui:114
msgctxt "checkin|label2"
@@ -2430,7 +2536,7 @@ msgstr "Перазапуск"
#: safemodequerydialog.ui:63
msgctxt "safemodequerydialog|label"
msgid "Are you sure you want to restart %PRODUCTNAME and enter safe mode?"
-msgstr ""
+msgstr "Сапраўды перазапусціць %PRODUCTNAME і ўвайсці ў бяспечны рэжым?"
#: saveastemplatedlg.ui:13
msgctxt "saveastemplatedlg|categorylist"
diff --git a/source/be/svtools/messages.po b/source/be/svtools/messages.po
index ba330ed4490..5053f0cb6c3 100644
--- a/source/be/svtools/messages.po
+++ b/source/be/svtools/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-12-06 15:58+0100\n"
-"PO-Revision-Date: 2017-12-13 17:01+0000\n"
+"PO-Revision-Date: 2017-12-17 16:05+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1513184513.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1513526737.000000\n"
#: errtxt.hrc:30
msgctxt "RID_ERRCTX"
@@ -301,16 +301,14 @@ msgid "An invalid attempt was made to access the file."
msgstr "An invalid attempt was made to access the file."
#: errtxt.hrc:98
-#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The file could not be created."
-msgstr "Не ўдалося запісаць файл."
+msgstr "Не ўдалося стварыць файл."
#: errtxt.hrc:99
-#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The operation was started under an invalid parameter."
-msgstr "The operation was started under an invalid parameter."
+msgstr "Аперацыя запушчана з выкарыстаннем недапушчальнага параметра."
#: errtxt.hrc:100
#, fuzzy
@@ -343,16 +341,14 @@ msgid "The file cannot be used as template."
msgstr "The file cannot be used as template."
#: errtxt.hrc:105
-#, fuzzy
msgctxt "RID_ERRHDL"
msgid "This document has already been opened for editing."
msgstr "Дакумент ужо адкрыты для рэдагавання."
#: errtxt.hrc:106
-#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The wrong password has been entered."
-msgstr "The wrong password has been entered."
+msgstr "Уведзены няправільны пароль."
#: errtxt.hrc:107
msgctxt "RID_ERRHDL"
@@ -525,10 +521,9 @@ msgid "Function not possible: device (drive) not identical."
msgstr "Function not possible: device (drive) not identical."
#: errtxt.hrc:129
-#, fuzzy
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
-msgstr "Device (drive) not ready."
+msgstr "Прыстасаванне (дыск) не гатова."
#: errtxt.hrc:130
msgctxt "RID_ERRHDL"
@@ -1507,22 +1502,19 @@ msgid "Kurdish, Central (Iraq)"
msgstr "Цэнтральная курдская (Ірак)"
#: langtab.hrc:216
-#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Central (Iran)"
-msgstr "Цэнтральная курдская (Ірак)"
+msgstr "Цэнтральная курдская (Іран)"
#: langtab.hrc:217
-#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Southern (Iran)"
-msgstr "Паўночная курдская (Сірыя)"
+msgstr "Паўднёвая курдская (Іран)"
#: langtab.hrc:218
-#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Southern (Iraq)"
-msgstr "Паўночная курдская (Сірыя)"
+msgstr "Паўднёвая курдская (Ірак)"
#: langtab.hrc:219
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
@@ -1852,7 +1844,7 @@ msgstr "Саамі, Кальдзін (Расія)"
#: langtab.hrc:284
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Guarani (Paraguay)"
-msgstr ""
+msgstr "Гуарані, Парагвай"
#: langtab.hrc:285
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
@@ -2022,7 +2014,7 @@ msgstr "Русінская (Славакія)"
#: langtab.hrc:318
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kabyle Latin"
-msgstr ""
+msgstr "Кабыльская лацінка"
#: langtab.hrc:319
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
@@ -2062,7 +2054,7 @@ msgstr "Bekwel"
#: langtab.hrc:326
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kituba (Congo)"
-msgstr ""
+msgstr "Кітуба, Конга"
#: langtab.hrc:327
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
@@ -2150,13 +2142,11 @@ msgid "Papiamento (Bonaire)"
msgstr ""
#: langtab.hrc:344
-#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Khanty"
msgstr "Хантыйская"
#: langtab.hrc:345
-#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Livonian"
msgstr "Ліўская"
@@ -2172,19 +2162,16 @@ msgid "Mari, Hill"
msgstr ""
#: langtab.hrc:348
-#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nganasan"
msgstr "Нганасанская"
#: langtab.hrc:349
-#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Olonets"
msgstr "Аланецкая"
#: langtab.hrc:350
-#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Veps"
msgstr "Вепская"
@@ -2195,19 +2182,16 @@ msgid "Võro"
msgstr ""
#: langtab.hrc:352
-#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nenets"
msgstr "Ненецкая"
#: langtab.hrc:353
-#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Aka (Congo)"
-msgstr "Ака (Конга)"
+msgstr "Ака, Конга"
#: langtab.hrc:354
-#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dibole"
msgstr "Дыболе"
@@ -2215,21 +2199,19 @@ msgstr "Дыболе"
#: langtab.hrc:355
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Doondo"
-msgstr ""
+msgstr "Дундо"
#: langtab.hrc:356
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kaamba"
-msgstr ""
+msgstr "Каамба"
#: langtab.hrc:357
-#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Koongo (Congo)"
-msgstr "Кунга (Конга)"
+msgstr "Кунга, Конга"
#: langtab.hrc:358
-#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kunyi"
msgstr "Куный"
@@ -2237,16 +2219,14 @@ msgstr "Куный"
#: langtab.hrc:359
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ngungwel"
-msgstr ""
+msgstr "Нгунгвел"
#: langtab.hrc:360
-#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Njyem (Congo)"
-msgstr "Ньюем (Конга)"
+msgstr "Ньюем, Конга"
#: langtab.hrc:361
-#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Punu"
msgstr "Пуну"
@@ -2254,29 +2234,27 @@ msgstr "Пуну"
#: langtab.hrc:362
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Suundi"
-msgstr ""
+msgstr "Суунды"
#: langtab.hrc:363
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Teke-Kukuya"
-msgstr ""
+msgstr "Тэке-Кукуя"
#: langtab.hrc:364
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tsaangi"
-msgstr ""
+msgstr "Цаангі"
#: langtab.hrc:365
-#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yaka"
msgstr "Яка"
#: langtab.hrc:366
-#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yombe (Congo)"
-msgstr "Ёмбе (Конга)"
+msgstr "Ёмбе, Конга"
#: langtab.hrc:367
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
@@ -2284,13 +2262,11 @@ msgid "N'ko"
msgstr "Н'Ко"
#: langtab.hrc:368
-#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Udmurt"
msgstr "Удмурцкая"
#: langtab.hrc:369
-#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tibetan (India)"
msgstr "Тыбецкая (Індыя)"
@@ -2313,34 +2289,29 @@ msgstr ""
#: langtab.hrc:373
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kumyk"
-msgstr ""
+msgstr "Кумыцкая"
#: langtab.hrc:374
-#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nogai"
msgstr "Нагайская"
#: langtab.hrc:375
-#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Karakalpak Latin"
msgstr "Каракалпакская (лацініца)"
#: langtab.hrc:376
-#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ladin"
msgstr "Лацініца"
#: langtab.hrc:377
-#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Burkina Faso)"
msgstr "Французская (Буркіна Фасо)"
#: langtab.hrc:378
-#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Puinave"
msgstr "Пуйнаве"
@@ -2471,10 +2442,9 @@ msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
#: langtab.hrc:404
-#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Malaysia)"
-msgstr "Англійская (Малаві)"
+msgstr "Англійская (Малайзія)"
#: langtab.hrc:405
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
@@ -2492,10 +2462,9 @@ msgid "Kituba (Democratic Republic of the Congo)"
msgstr ""
#: langtab.hrc:408
-#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Fon"
-msgstr "Шрыфт"
+msgstr "Фон"
#: langtab.hrc:409
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
@@ -3323,40 +3292,34 @@ msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Аб'ект OpenOffice.org 1.0 Writer/Web"
#: strings.hrc:84
-#, fuzzy
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
-msgstr "Аб'ект OpenOffice.org 1.0 Writer/Web"
+msgstr "Аб'ект OpenOffice.org 1.0 Writer/Master"
#: strings.hrc:85
-#, fuzzy
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
-msgstr "Аб'ект OpenOffice.org 1.0 Writer"
+msgstr "Аб'ект OpenOffice.org 1.0 Draw"
#: strings.hrc:86
-#, fuzzy
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
-msgstr "Аб'ект OpenOffice.org 1.0 Writer"
+msgstr "Аб'ект OpenOffice.org 1.0 Impress"
#: strings.hrc:87
-#, fuzzy
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
-msgstr "Аб'ект OpenOffice.org 1.0 Writer"
+msgstr "Аб'ект OpenOffice.org 1.0 Calc"
#: strings.hrc:88
-#, fuzzy
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
-msgstr "Аб'ект OpenOffice.org 1.0 Writer"
+msgstr "Аб'ект OpenOffice.org 1.0 Chart"
#: strings.hrc:89
-#, fuzzy
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
-msgstr "Аб'ект OpenOffice.org 1.0 Writer"
+msgstr "Аб'ект OpenOffice.org 1.0 Math"
#: strings.hrc:90
msgctxt "STR_FORMAT_ID_WMF"
@@ -4283,7 +4246,7 @@ msgstr "Даведкавы файл"
#: strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
-msgstr "HTML document"
+msgstr "Дакумент HTML"
#: strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
@@ -4318,7 +4281,7 @@ msgstr "Тэкставы файл"
#: strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
-msgstr "Link"
+msgstr "Спасылка"
#: strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
@@ -4348,7 +4311,7 @@ msgstr "Файл"
#: strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
-msgstr "Folder"
+msgstr "Каталог"
#: strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
@@ -4413,7 +4376,7 @@ msgstr "Шаблон тэкставага дакумента OpenOffice.org 1.0"
#: strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
-msgstr "Local drive"
+msgstr "Тутэйшы дыск"
#: strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
@@ -4423,12 +4386,12 @@ msgstr "Дыскета"
#: strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
-msgstr "CD-ROM drive"
+msgstr "Дыскавод CD-ROM"
#: strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
-msgstr "Network connection"
+msgstr "Сеткавае далучэнне"
#: strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
@@ -4548,7 +4511,7 @@ msgstr "Прыстаўка %PRODUCTNAME"
#: strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
-msgstr ""
+msgstr "Праверка правапісу Hunspell"
#: strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
diff --git a/source/be/svx/messages.po b/source/be/svx/messages.po
index 53f02deb0b1..8ee0a0225f7 100644
--- a/source/be/svx/messages.po
+++ b/source/be/svx/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-12-06 15:59+0100\n"
-"PO-Revision-Date: 2017-12-17 09:24+0000\n"
+"PO-Revision-Date: 2017-12-19 16:24+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1513502644.000000\n"
+"X-POOTLE-MTIME: 1513700646.000000\n"
#: fieldunit.hrc:30
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
@@ -4765,7 +4765,7 @@ msgstr "Ці хочаце замацаваць змены?"
#: queryunlinkgraphicsdialog.ui:8
msgctxt "queryunlinkgraphicsdialog|QueryUnlinkGraphicsDialog"
msgid "Unlink the graphics?"
-msgstr ""
+msgstr "Разарваць сувязь з выявай?"
#: queryunlinkgraphicsdialog.ui:14
msgctxt "queryunlinkgraphicsdialog|QueryUnlinkGraphicsDialog"
@@ -5770,54 +5770,47 @@ msgstr "Выберыце вугал павароту."
#: sidebarpossize.ui:297
msgctxt "sidebarpossize|fliplabel"
msgid "_Flip:"
-msgstr ""
+msgstr "Перакуленне:"
#: sidebarpossize.ui:320
-#, fuzzy
msgctxt "sidebarpossize|flipvertical|tooltip_text"
msgid "Flip the selected object vertically."
msgstr "Перакуліць вылучаны аб'ект па гарызанталі."
#: sidebarpossize.ui:334
-#, fuzzy
msgctxt "sidebarpossize|fliphorizontal|tooltip_text"
msgid "Flip the selected object horizontally."
msgstr "Перакуліць вылучаны аб'ект па гарызанталі."
#: sidebarshadow.ui:34
-#, fuzzy
msgctxt "sidebarshadow|SHOW_SHADOW"
msgid "Enable"
msgstr "Уключыць"
#: sidebarshadow.ui:58
-#, fuzzy
msgctxt "sidebarshadow|angle"
msgid "Angle"
msgstr "Вугал"
#: sidebarshadow.ui:69
-#, fuzzy
msgctxt "sidebarshadow|distance"
msgid "Distance"
-msgstr "Увасабленне"
+msgstr "Адлегласць"
#: sidebarshadow.ui:116
-#, fuzzy
msgctxt "sidebarshadow|transparency_label"
msgid "Transparency:"
-msgstr "Празрыстасць"
+msgstr "Празрыстасць:"
#: sidebarshadow.ui:179
-#, fuzzy
msgctxt "sidebarshadow|color"
msgid "Color:"
-msgstr "Колер"
+msgstr "Колер:"
#: stylemenu.ui:12
msgctxt "stylemenu|update"
msgid "Update to Match Selection"
-msgstr ""
+msgstr "Абнавіць па вылучэнні"
#: stylemenu.ui:20
msgctxt "stylemenu|edit"
@@ -9863,53 +9856,52 @@ msgstr "Гарызантальны нахіл"
#: strings.hrc:805
msgctxt "RID_SVXSTR_BMP42"
msgid "Narrow Vertical"
-msgstr ""
+msgstr "Вузкая вертыкаль"
#: strings.hrc:806
msgctxt "RID_SVXSTR_BMP43"
msgid "Narrow Horizontal"
-msgstr ""
+msgstr "Вузкая гарызанталь"
#: strings.hrc:807
msgctxt "RID_SVXSTR_BMP44"
msgid "Dark Vertical"
-msgstr ""
+msgstr "Цёмная вертыкаль"
#: strings.hrc:808
-#, fuzzy
msgctxt "RID_SVXSTR_BMP45"
msgid "Dark Horizontal"
-msgstr "Гарызантальны нахіл"
+msgstr "Цёмная гарызанталь"
#: strings.hrc:809
msgctxt "RID_SVXSTR_BMP46"
msgid "Dashed Downward Diagonal"
-msgstr ""
+msgstr "Пункцірная гарызанталь уніз"
#: strings.hrc:810
msgctxt "RID_SVXSTR_BMP47"
msgid "Dashed Upward Diagonal"
-msgstr ""
+msgstr "Пункцірная гарызанталь уверх"
#: strings.hrc:811
msgctxt "RID_SVXSTR_BMP48"
msgid "Dashed Horizontal"
-msgstr ""
+msgstr "Пункцірная гарызанталь"
#: strings.hrc:812
msgctxt "RID_SVXSTR_BMP49"
msgid "Dashed Vertical"
-msgstr ""
+msgstr "Пункцірная вертыкаль"
#: strings.hrc:813
msgctxt "RID_SVXSTR_BMP50"
msgid "Small Confetti"
-msgstr ""
+msgstr "Дробныя канфеці"
#: strings.hrc:814
msgctxt "RID_SVXSTR_BMP51"
msgid "Large Confetti"
-msgstr ""
+msgstr "Вялікія канфеці"
#: strings.hrc:815
msgctxt "RID_SVXSTR_BMP52"
@@ -9917,38 +9909,34 @@ msgid "Zig Zag"
msgstr ""
#: strings.hrc:816
-#, fuzzy
msgctxt "RID_SVXSTR_BMP53"
msgid "Wave"
-msgstr "Хваліста"
+msgstr "Хваля"
#: strings.hrc:817
msgctxt "RID_SVXSTR_BMP54"
msgid "Diagonal Brick"
-msgstr ""
+msgstr "Дыяганальная цэгла"
#: strings.hrc:818
-#, fuzzy
msgctxt "RID_SVXSTR_BMP55"
msgid "Horizontal Brick"
-msgstr "гарызантальная лінія"
+msgstr "Гарызантальная цэгла"
#: strings.hrc:819
-#, fuzzy
msgctxt "RID_SVXSTR_BMP56"
msgid "Weave"
-msgstr "Хваліста"
+msgstr "Тканіна"
#: strings.hrc:820
-#, fuzzy
msgctxt "RID_SVXSTR_BMP57"
msgid "Plaid"
-msgstr "Проста"
+msgstr "Плед"
#: strings.hrc:821
msgctxt "RID_SVXSTR_BMP58"
msgid "Divot"
-msgstr ""
+msgstr "Дзёран"
#: strings.hrc:822
msgctxt "RID_SVXSTR_BMP59"
@@ -10007,29 +9995,26 @@ msgid "Solid Diamond"
msgstr ""
#: strings.hrc:833
-#, fuzzy
msgctxt "RID_SVXSTR_BMP70"
msgid "Vertical"
-msgstr "Вертыкальна"
+msgstr "Вертыкаль"
#: strings.hrc:834
-#, fuzzy
msgctxt "RID_SVXSTR_BMP71"
msgid "Horizontal"
-msgstr "Гарызантальна"
+msgstr "Гарызанталь"
#: strings.hrc:835
msgctxt "RID_SVXSTR_BMP72"
msgid "Downward Diagonal"
-msgstr ""
+msgstr "Гарызанталь уніз"
#: strings.hrc:836
msgctxt "RID_SVXSTR_BMP73"
msgid "Upward Diagonal"
-msgstr ""
+msgstr "Дыяганаль уверх"
#: strings.hrc:837
-#, fuzzy
msgctxt "RID_SVXSTR_BMP74"
msgid "Cross"
msgstr "Крыж"
@@ -10037,7 +10022,7 @@ msgstr "Крыж"
#: strings.hrc:838
msgctxt "RID_SVXSTR_BMP75"
msgid "Diagonal Cross"
-msgstr ""
+msgstr "Дыяганальны крыж"
#: strings.hrc:839
msgctxt "RID_SVXSTR_DASH0"
@@ -10050,10 +10035,9 @@ msgid "Fine Dashed"
msgstr "Часты пункцір"
#: strings.hrc:841
-#, fuzzy
msgctxt "RID_SVXSTR_DASH2"
msgid "2 Dots 3 Dashes"
-msgstr "2 кропкі 1 рыска"
+msgstr "2 кропкі 3 рыскі"
#: strings.hrc:842
msgctxt "RID_SVXSTR_DASH3"
@@ -10071,13 +10055,11 @@ msgid "Fine Dashed"
msgstr "Часты пункцір"
#: strings.hrc:845
-#, fuzzy
msgctxt "RID_SVXSTR_DASH6"
msgid "3 Dashes 3 Dots"
msgstr "3 рыскі 3 кропкі"
#: strings.hrc:846
-#, fuzzy
msgctxt "RID_SVXSTR_DASH7"
msgid "Ultrafine Dotted"
msgstr "Вельмі часты пункцір"
@@ -10259,50 +10241,49 @@ msgstr ""
#: strings.hrc:883
msgctxt "RID_SVXSTR_COLOR_TANGO_BUTTER"
msgid "Tango: Butter"
-msgstr ""
+msgstr "Танга: Масла"
#. Tango colors, see: http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines
#: strings.hrc:885
-#, fuzzy
msgctxt "RID_SVXSTR_COLOR_TANGO_ORANGE"
msgid "Tango: Orange"
-msgstr "Танга аранжавы"
+msgstr "Танга: Апельсін"
#. Tango colors, see: http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines
#: strings.hrc:887
msgctxt "RID_SVXSTR_COLOR_TANGO_CHOCOLATE"
msgid "Tango: Chocolate"
-msgstr ""
+msgstr "Танга: Шакалад"
#. Tango colors, see: http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines
#: strings.hrc:889
msgctxt "RID_SVXSTR_COLOR_TANGO_CHAMELEON"
msgid "Tango: Chameleon"
-msgstr ""
+msgstr "Танга: Хамелеон"
#. Tango colors, see: http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines
#: strings.hrc:891
msgctxt "RID_SVXSTR_COLOR_TANGO_SKY_BLUE"
msgid "Tango: Sky Blue"
-msgstr ""
+msgstr "Танга: Блакіт неба"
#. Tango colors, see: http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines
#: strings.hrc:893
msgctxt "RID_SVXSTR_COLOR_TANGO_PLUM"
msgid "Tango: Plum"
-msgstr ""
+msgstr "Танга: Сліва"
#. Tango colors, see: http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines
#: strings.hrc:895
msgctxt "RID_SVXSTR_COLOR_TANGO_SCARLET_RED"
msgid "Tango: Scarlet Red"
-msgstr ""
+msgstr "Танга: Пунсова-чырвоны"
#. Tango colors, see: http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines
#: strings.hrc:897
msgctxt "RID_SVXSTR_COLOR_TANGO_ALUMINIUM"
msgid "Tango: Aluminium"
-msgstr ""
+msgstr "Танга: Алюміній"
#: strings.hrc:898
msgctxt "RID_SVXSTR_GALLERYPROPS_GALTHEME"
@@ -13633,13 +13614,11 @@ msgid "Khudawadi"
msgstr ""
#: strings.hrc:1594
-#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-E"
-msgstr "Лацінскі пашыраны-A"
+msgstr "Лацінскі пашыраны-Е"
#: strings.hrc:1595
-#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Linear A"
msgstr "Лінейнае пісьмо А"
@@ -13647,23 +13626,22 @@ msgstr "Лінейнае пісьмо А"
#: strings.hrc:1596
msgctxt "RID_SUBSETMAP"
msgid "Mahajani"
-msgstr ""
+msgstr "Магаджані"
#: strings.hrc:1597
msgctxt "RID_SUBSETMAP"
msgid "Manichaean"
-msgstr ""
+msgstr "Маніхейская"
#: strings.hrc:1598
msgctxt "RID_SUBSETMAP"
msgid "Mende Kikakui"
-msgstr ""
+msgstr "Мендэ Кікакуй"
#: strings.hrc:1599
-#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Modi"
-msgstr "Лад"
+msgstr "Моды"
#: strings.hrc:1600
msgctxt "RID_SUBSETMAP"
@@ -13678,18 +13656,17 @@ msgstr "М'янма пашырана B"
#: strings.hrc:1602
msgctxt "RID_SUBSETMAP"
msgid "Nabataean"
-msgstr ""
+msgstr "Набатэйская"
#: strings.hrc:1603
-#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Old North Arabian"
-msgstr "Поўдзень"
+msgstr "Старажытная паўночнаарабская"
#: strings.hrc:1604
msgctxt "RID_SUBSETMAP"
msgid "Old Permic"
-msgstr ""
+msgstr "Старапермская"
#: strings.hrc:1605
msgctxt "RID_SUBSETMAP"
@@ -13732,10 +13709,9 @@ msgid "Sinhala Archaic Numbers"
msgstr ""
#: strings.hrc:1613
-#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-C"
-msgstr "Дадатковыя стрэлкі-A"
+msgstr "Дадатковыя стрэлкі-C"
#: strings.hrc:1614
msgctxt "RID_SUBSETMAP"
@@ -13776,12 +13752,12 @@ msgstr ""
#: strings.hrc:1621
msgctxt "RID_SUBSETMAP"
msgid "Hatran"
-msgstr ""
+msgstr "Хатран"
#: strings.hrc:1622
msgctxt "RID_SUBSETMAP"
msgid "Multani"
-msgstr ""
+msgstr "Мултані"
#: strings.hrc:1623
msgctxt "RID_SUBSETMAP"
@@ -13801,18 +13777,17 @@ msgstr ""
#: strings.hrc:1626
msgctxt "RID_SUBSETMAP"
msgid "Adlam"
-msgstr ""
+msgstr "Адлам"
#: strings.hrc:1627
msgctxt "RID_SUBSETMAP"
msgid "Bhaiksuki"
-msgstr ""
+msgstr "Бхайкшукі"
#: strings.hrc:1628
-#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-C"
-msgstr "Кірыліца A"
+msgstr "Пашыраная кірыліца-C"
#: strings.hrc:1629
msgctxt "RID_SUBSETMAP"
@@ -13836,32 +13811,29 @@ msgid "Mongolian Supplement"
msgstr "Грузінская"
#: strings.hrc:1633
-#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Newa"
-msgstr "Стварыць"
+msgstr "Неўа"
#: strings.hrc:1634
-#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Osage"
-msgstr "Выкарыстанне"
+msgstr "Осэйдж"
#: strings.hrc:1635
msgctxt "RID_SUBSETMAP"
msgid "Tangut"
-msgstr ""
+msgstr "Тангуцкая"
#: strings.hrc:1636
msgctxt "RID_SUBSETMAP"
msgid "Tangut Components"
-msgstr ""
+msgstr "Тангуцкія кампаненты"
#: strings.hrc:1637
-#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension F"
-msgstr "К.Я.К. уніфікаваныя ідэаграфы, пашырэнне A"
+msgstr "К.Я.К. уніфікаваныя ідэаграфы, пашырэнне F"
#: strings.hrc:1638
#, fuzzy
@@ -13877,12 +13849,12 @@ msgstr ""
#: strings.hrc:1640
msgctxt "RID_SUBSETMAP"
msgid "Nushu"
-msgstr ""
+msgstr "Нушу"
#: strings.hrc:1641
msgctxt "RID_SUBSETMAP"
msgid "Soyombo"
-msgstr ""
+msgstr "Соёмбо"
#: strings.hrc:1642
#, fuzzy
diff --git a/source/be/sw/messages.po b/source/be/sw/messages.po
index bf075981f78..de77b551689 100644
--- a/source/be/sw/messages.po
+++ b/source/be/sw/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: 2017-12-06 15:59+0100\n"
-"PO-Revision-Date: 2017-12-10 15:22+0000\n"
+"POT-Creation-Date: 2017-12-20 08:17+0100\n"
+"PO-Revision-Date: 2017-12-18 14:11+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1512919326.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1513606300.000000\n"
#: app.hrc:30
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -78,8 +78,8 @@ msgstr "Стылі ўзгодненыя"
#: app.hrc:47
msgctxt "RID_CHARACTERSTYLEFAMILY"
-msgid "All"
-msgstr "Усе"
+msgid "All Styles"
+msgstr "Усе стылі"
#: app.hrc:48
msgctxt "RID_CHARACTERSTYLEFAMILY"
@@ -98,8 +98,8 @@ msgstr "Адмысловыя стылі"
#: app.hrc:56
msgctxt "RID_FRAMESTYLEFAMILY"
-msgid "All"
-msgstr "Усе"
+msgid "All Styles"
+msgstr "Усе стылі"
#: app.hrc:57
msgctxt "RID_FRAMESTYLEFAMILY"
@@ -118,8 +118,8 @@ msgstr "Адмысловыя стылі"
#: app.hrc:65
msgctxt "RID_PAGESTYLEFAMILY"
-msgid "All"
-msgstr "Усе"
+msgid "All Styles"
+msgstr "Усе стылі"
#: app.hrc:66
msgctxt "RID_PAGESTYLEFAMILY"
@@ -138,8 +138,8 @@ msgstr "Адмысловыя стылі"
#: app.hrc:74
msgctxt "RID_LISTSTYLEFAMILY"
-msgid "All"
-msgstr "Усе"
+msgid "All Styles"
+msgstr "Усе стылі"
#: app.hrc:75
msgctxt "RID_LISTSTYLEFAMILY"
@@ -158,8 +158,8 @@ msgstr "Адмысловыя стылі"
#: app.hrc:83
msgctxt "RID_TABLESTYLEFAMILY"
-msgid "All"
-msgstr "Усе"
+msgid "All Styles"
+msgstr "Усе стылі"
#: app.hrc:84
msgctxt "RID_TABLESTYLEFAMILY"
@@ -1303,28 +1303,28 @@ msgstr "Альбом"
#. Numbering rules
#: strings.hrc:199
msgctxt "STR_POOLNUMRULE_NUM1"
-msgid "Numbering 1"
-msgstr "Нумараванне 1"
+msgid "Numbering 123"
+msgstr "Нумараванне 123"
#: strings.hrc:200
msgctxt "STR_POOLNUMRULE_NUM2"
-msgid "Numbering 2"
-msgstr "Нумараванне 2"
+msgid "Numbering ABC"
+msgstr "Нумараванне ABC"
#: strings.hrc:201
msgctxt "STR_POOLNUMRULE_NUM3"
-msgid "Numbering 3"
-msgstr "Нумараванне 3"
+msgid "Numbering abc"
+msgstr "Нумараванне abc"
#: strings.hrc:202
msgctxt "STR_POOLNUMRULE_NUM4"
-msgid "Numbering 4"
-msgstr "Нумараванне 4"
+msgid "Numbering IVX"
+msgstr "Нумараванне IVX"
#: strings.hrc:203
msgctxt "STR_POOLNUMRULE_NUM5"
-msgid "Numbering 5"
-msgstr "Нумараванне 5"
+msgid "Numbering ivx"
+msgstr "Нумараванне ivx"
#: strings.hrc:204
msgctxt "STR_POOLNUMRULE_BUL1"
@@ -13481,13 +13481,13 @@ msgstr "Ужыць метрыку прынтара для фарматаванн
#: optcompatpage.ui:57
msgctxt "optcompatpage|format"
-msgid "Add spacing between paragraphs and tables (in current document)"
-msgstr "Дадаць прагалы між абзацамі і табліцамі (у гэтым дакуменце)"
+msgid "Add spacing between paragraphs and tables"
+msgstr "Дадаць водступ паміж абзацамі і табліцамі"
#: optcompatpage.ui:58
msgctxt "optcompatpage|format"
-msgid "Add paragraph and table spacing at tops of pages (in current document)"
-msgstr "Дадаваць абзацавы і радковы прагалы ў версе старонак (у гэтым дакуменце)"
+msgid "Add paragraph and table spacing at tops of pages"
+msgstr "Дадаць водступ абзацаў і табліц уверсе старонкі"
#: optcompatpage.ui:59
msgctxt "optcompatpage|format"
@@ -13541,8 +13541,8 @@ msgstr "Канцавыя прабелы сумяшчальныя з MS Word"
#: optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Tolerate white lines of PDF page backgrounds for compatibility with old documents (in current document)"
-msgstr "Дапускаць белыя лініі фону старонак PDF для сумяшчальнасці з старымі дакументамі (бягучы дакумент)"
+msgid "Tolerate white lines of PDF page backgrounds for compatibility with old documents"
+msgstr "Дапускаць белыя лініі фону старонак PDF для сумяшчальнасці з старымі дакументамі"
#: optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -13556,8 +13556,8 @@ msgstr "У ролі прадвызначанага"
#: optcompatpage.ui:104
msgctxt "optcompatpage|label11"
-msgid "Compatibility options for %DOCNAME"
-msgstr "Магчымасці сумяшчальнасці для %DOCNAME"
+msgid "Compatibility options for '%DOCNAME'"
+msgstr "Магчымасці сумяшчальнасці для '%DOCNAME'"
#: optfonttabpage.ui:103
msgctxt "optfonttabpage|font_label"
@@ -16678,21 +16678,11 @@ msgctxt "textgridpage|labelFT_CHARSPERLINE"
msgid "Characters per line:"
msgstr "Знакаў на радок:"
-#: textgridpage.ui:223
-msgctxt "textgridpage|labelFT_CHARRANGE"
-msgid "(1-45)"
-msgstr "(1-45)"
-
#: textgridpage.ui:236
msgctxt "textgridpage|labelFT_LINESPERPAGE"
msgid "Lines per page:"
msgstr "Радкоў на старонку:"
-#: textgridpage.ui:265
-msgctxt "textgridpage|labelFT_LINERANGE"
-msgid "(1-48)"
-msgstr "(1-48)"
-
#: textgridpage.ui:303
msgctxt "textgridpage|labelFT_CHARWIDTH"
msgid "Character _width:"
diff --git a/source/be/uui/messages.po b/source/be/uui/messages.po
index 7face44bfb5..22b7082b5da 100644
--- a/source/be/uui/messages.po
+++ b/source/be/uui/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: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-12-10 15:29+0000\n"
+"PO-Revision-Date: 2017-12-17 16:03+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1512919792.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1513526614.000000\n"
#: ids.hrc:27
msgctxt "RID_UUI_ERRHDL"
@@ -394,16 +394,15 @@ msgstr ""
"Перад тым, як прыймаць гэты сертыфікат, трэба ўважліва праверыць сертыфікат гэтай пляцоўкі. Ці жадаеце прыняць гэты сертыфікат, каб атаясамліваць сеціўную пляцоўку $(ARG1)?"
#: ids.hrc:159
-#, fuzzy
msgctxt "STR_UUI_SSLWARN_EXPIRED"
msgid ""
"$(ARG1) is a site that uses a security certificate to encrypt data during transmission, but its certificate expired on $(ARG2).\n"
"\n"
"You should check to make sure that your computer's time is correct."
msgstr ""
-"$(ARG1) is a site that uses a security certificate to encrypt data during transmission, but its certificate expired on $(ARG2).\n"
+"Сайт $(ARG1) выкарыстоўвае сертыфікат бяспекі для шыфравання даных у час перадачы, але тэрмін дзеяння сертыфіката скончыўся $(ARG2).\n"
"\n"
-"You should check to make sure that your computer's time is correct."
+"Праверце, ці правільна выстаўлены час на вашым камп'ютары."
#: ids.hrc:160
msgctxt "STR_UUI_SSLWARN_EXPIRED_TITLE"
@@ -431,16 +430,15 @@ msgid "Security Warning: Server Certificate Expired"
msgstr "Папярэджанне бяспекі: сертыфікат сервера нядзейсны"
#: ids.hrc:163
-#, fuzzy
msgctxt "STR_UUI_SSLWARN_INVALID"
msgid ""
"The certificate could not be validated. You should examine this site's certificate carefully.\n"
"\n"
"If you suspect the certificate shown, please cancel the connection and notify the site administrator."
msgstr ""
-"The certificate could not be validated. You should examine this site's certificate carefully.\n"
+"Сертыфікат немагчыма праверыць. Клапатліва вывучыце сертыфікат гэтага сайта.\n"
"\n"
-"If you suspect the certificate shown, please cancel the connection and notify the site administrator."
+"Калі сертыфікат здаецца вам падазроным, скасуйце далучэнне і паведаміце адміністратару сайта."
#: ids.hrc:164
msgctxt "STR_UUI_SSLWARN_INVALID_TITLE"
@@ -554,10 +552,9 @@ msgid "Document Could Not Be Locked"
msgstr "Немагчыма заблакаваць дакумент"
#: strings.hrc:46
-#, fuzzy
msgctxt "STR_LOCKFAILED_MSG"
msgid "The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space."
-msgstr "The file could not be locked for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location."
+msgstr "%PRODUCTNAME не змог стварыць блакавальны файл для манапольнага доступу, бо там, дзе знаходзіцца файл, няма дазволу на стварэнне файла, або не хапае месца на дыску."
#: strings.hrc:47
msgctxt "STR_LOCKFAILED_OPENREADONLY_BTN"
diff --git a/source/bg/cui/messages.po b/source/bg/cui/messages.po
index dd0f302072c..bdcf0bb9168 100644
--- a/source/bg/cui/messages.po
+++ b/source/bg/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2017-12-14 21:38+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1513287489.000000\n"
#: personalization.hrc:31
@@ -7720,72 +7720,72 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Помощ"
-#: optgeneralpage.ui:77
+#: optgeneralpage.ui:76
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Диалогови прозорци на %PRODUCTNAME"
-#: optgeneralpage.ui:111
+#: optgeneralpage.ui:110
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Диалогови прозорци за отваряне/записване"
-#: optgeneralpage.ui:137
+#: optgeneralpage.ui:136
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "_Диалогови прозорци на %PRODUCTNAME"
-#: optgeneralpage.ui:152
+#: optgeneralpage.ui:151
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Диалогови прозорци за печат"
-#: optgeneralpage.ui:178
+#: optgeneralpage.ui:177
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Печатането установява състояние „променен документ“"
-#: optgeneralpage.ui:193
+#: optgeneralpage.ui:192
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Състояние на документа"
-#: optgeneralpage.ui:226
+#: optgeneralpage.ui:225
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Интерпретиране като години между "
-#: optgeneralpage.ui:252
+#: optgeneralpage.ui:251
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "и "
-#: optgeneralpage.ui:267
+#: optgeneralpage.ui:266
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Двуцифрени години"
-#: optgeneralpage.ui:293
+#: optgeneralpage.ui:292
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Събиране и изпращане на данни за употребата към TDF"
-#: optgeneralpage.ui:308
+#: optgeneralpage.ui:307
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Помогнете за подобряване на %PRODUCTNAME"
-#: optgeneralpage.ui:339
+#: optgeneralpage.ui:338
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Зареждане на %PRODUCTNAME при стартиране на системата"
-#: optgeneralpage.ui:353
+#: optgeneralpage.ui:352
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Икона за бързо стартиране"
-#: optgeneralpage.ui:373
+#: optgeneralpage.ui:372
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Quickstarter"
@@ -8587,215 +8587,220 @@ msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr "Настройки и предупреждения за сигурността"
-#: optuserpage.ui:34
+#: optuserpage.ui:12
+msgctxt "optuserpage|liststore1"
+msgid "No key"
+msgstr ""
+
+#: optuserpage.ui:45
msgctxt "optuserpage|companyft"
msgid "_Company:"
msgstr "Компания:"
-#: optuserpage.ui:48
+#: optuserpage.ui:59
msgctxt "optuserpage|nameft"
msgid "First/last _name/initials:"
msgstr "Име/фамилия/инициали:"
-#: optuserpage.ui:62
+#: optuserpage.ui:73
msgctxt "optuserpage|streetft"
msgid "_Street:"
msgstr "Улица:"
-#: optuserpage.ui:76
+#: optuserpage.ui:87
msgctxt "optuserpage|cityft"
msgid "City/state/_zip:"
msgstr "Град/област/пощ. код:"
-#: optuserpage.ui:90
+#: optuserpage.ui:101
msgctxt "optuserpage|countryft"
msgid "Country/re_gion:"
msgstr "Страна/област:"
-#: optuserpage.ui:104
+#: optuserpage.ui:115
msgctxt "optuserpage|titleft"
msgid "_Title/position:"
msgstr "Звание/длъжност:"
-#: optuserpage.ui:118
+#: optuserpage.ui:129
msgctxt "optuserpage|phoneft"
msgid "Telephone (home/_work):"
msgstr "Телефон (дом./служ.):"
-#: optuserpage.ui:123
+#: optuserpage.ui:134
msgctxt "phoneft-atkobject"
msgid "Home telephone number"
msgstr "Домашен телефонен номер"
-#: optuserpage.ui:137
+#: optuserpage.ui:148
msgctxt "optuserpage|faxft"
msgid "Fa_x/e-mail:"
msgstr "Факс/е-поща:"
-#: optuserpage.ui:160
+#: optuserpage.ui:171
msgctxt "optuserpage|firstname-atkobject"
msgid "First name"
msgstr "Собствено име"
-#: optuserpage.ui:178
+#: optuserpage.ui:189
msgctxt "lastname-atkobject"
msgid "Last name"
msgstr "Фамилно име"
-#: optuserpage.ui:196
+#: optuserpage.ui:207
msgctxt "shortname-atkobject"
msgid "Initials"
msgstr "Инициали"
-#: optuserpage.ui:225
+#: optuserpage.ui:236
msgctxt "city-atkobject"
msgid "City"
msgstr "Град"
-#: optuserpage.ui:243
+#: optuserpage.ui:254
msgctxt "state-atkobject"
msgid "State"
msgstr "Щат/област"
-#: optuserpage.ui:261
+#: optuserpage.ui:272
msgctxt "zip-atkobject"
msgid "Zip code"
msgstr "Пощенски код"
-#: optuserpage.ui:291
+#: optuserpage.ui:302
msgctxt "title-atkobject"
msgid "Title"
msgstr "Звание"
-#: optuserpage.ui:309
+#: optuserpage.ui:320
msgctxt "position-atkobject"
msgid "Position"
msgstr "Длъжност"
-#: optuserpage.ui:338
+#: optuserpage.ui:349
msgctxt "home-atkobject"
msgid "Home telephone number"
msgstr "Домашен телефонен номер"
-#: optuserpage.ui:356
+#: optuserpage.ui:367
msgctxt "work-atkobject"
msgid "Work telephone number"
msgstr "Служебен телефонен номер"
-#: optuserpage.ui:386
+#: optuserpage.ui:397
msgctxt "fax-atkobject"
msgid "FAX number"
msgstr "Номер на факс"
-#: optuserpage.ui:404
+#: optuserpage.ui:415
msgctxt "email-atkobject"
msgid "email address"
msgstr "Адрес за е-поща"
-#: optuserpage.ui:421
+#: optuserpage.ui:432
msgctxt "optuserpage|usefordocprop"
msgid "Use data for document properties"
msgstr "Лични данни в свойствата на документа"
-#: optuserpage.ui:438
+#: optuserpage.ui:449
msgctxt "optuserpage|rusnameft"
msgid "Last name/first _name/father’s name/initials:"
msgstr "Фамилия/име/презиме/инициали:"
-#: optuserpage.ui:461
+#: optuserpage.ui:472
msgctxt "ruslastname-atkobject"
msgid "Last name"
msgstr "Фамилно име"
-#: optuserpage.ui:479
+#: optuserpage.ui:490
msgctxt "rusfathersname-atkobject"
msgid "Father's name"
msgstr "Презиме"
-#: optuserpage.ui:497
+#: optuserpage.ui:508
msgctxt "russhortname-atkobject"
msgid "Initials"
msgstr "Инициали"
-#: optuserpage.ui:515
+#: optuserpage.ui:526
msgctxt "rusfirstname-atkobject"
msgid "First name"
msgstr "Собствено име"
-#: optuserpage.ui:535
+#: optuserpage.ui:546
msgctxt "optuserpage|eastnameft"
msgid "Last/first _name/initials:"
msgstr "Фамилия/име/инициали:"
-#: optuserpage.ui:558
+#: optuserpage.ui:569
msgctxt "eastlastname-atkobject"
msgid "Last name"
msgstr "Фамилно име"
-#: optuserpage.ui:576
+#: optuserpage.ui:587
msgctxt "eastfirstname-atkobject"
msgid "First name"
msgstr "Собствено име"
-#: optuserpage.ui:594
+#: optuserpage.ui:605
msgctxt "eastshortname-atkobject"
msgid "Initials"
msgstr "Инициали"
-#: optuserpage.ui:614
+#: optuserpage.ui:625
msgctxt "optuserpage|russtreetft"
msgid "_Street/apartment number:"
msgstr "Улица/номер на апартамент:"
-#: optuserpage.ui:637
+#: optuserpage.ui:648
msgctxt "russtreet-atkobject"
msgid "Street"
msgstr "Улица"
-#: optuserpage.ui:655
+#: optuserpage.ui:666
msgctxt "ruslastname-atkobject"
msgid "Apartment number"
msgstr "Номер на апартамент"
-#: optuserpage.ui:675
+#: optuserpage.ui:686
msgctxt "optuserpage|icityft"
msgid "_Zip/city:"
msgstr "Пощенски код/град:"
-#: optuserpage.ui:698
+#: optuserpage.ui:709
msgctxt "icity-atkobject"
msgid "City"
msgstr "Град"
-#: optuserpage.ui:716
+#: optuserpage.ui:727
msgctxt "izip-atkobject"
msgid "Zip code"
msgstr "Пощенски код"
-#: optuserpage.ui:814
+#: optuserpage.ui:825
msgctxt "optuserpage|label1"
msgid "Address"
msgstr "Адрес"
-#: optuserpage.ui:847
+#: optuserpage.ui:861
msgctxt "optuserpage|signingkeylabel"
msgid "OpenPGP signing key:"
msgstr "OpenPGP ключ за подписване:"
-#: optuserpage.ui:860
+#: optuserpage.ui:875
msgctxt "optuserpage|encryptionkeylabel"
msgid "OpenPGP encryption key:"
msgstr "OpenPGP ключ за шифроване:"
-#: optuserpage.ui:889
+#: optuserpage.ui:908
msgctxt "optuserpage|encrypttoself"
msgid "When encrypting documents, always encrypt to self"
msgstr "Шифроване до себе си при шифроване на документи"
-#: optuserpage.ui:909
-msgctxt "optuserpage|label2"
+#: optuserpage.ui:930
+msgctxt "optuserpage|cryptographylabel"
msgid "Cryptography"
-msgstr "Криптография"
+msgstr ""
#: optviewpage.ui:47
msgctxt "optviewpage|grid3|tooltip_text"
diff --git a/source/bg/extras/source/autocorr/emoji.po b/source/bg/extras/source/autocorr/emoji.po
index 09b0a86dd28..46c63a62ac1 100644
--- a/source/bg/extras/source/autocorr/emoji.po
+++ b/source/bg/extras/source/autocorr/emoji.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: 2016-10-18 13:02+0200\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2017-01-14 15:56+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484409367.000000\n"
#. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji
@@ -1705,8 +1705,8 @@ msgctxt ""
"emoji.ulf\n"
"LIGHTNING\n"
"LngText.text"
-msgid "lighting"
-msgstr "мълния"
+msgid "lightning3"
+msgstr ""
#. ☈ (U+02608), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1714,8 +1714,8 @@ msgctxt ""
"emoji.ulf\n"
"THUNDERSTORM\n"
"LngText.text"
-msgid "storm"
-msgstr "буря"
+msgid "storm2"
+msgstr ""
#. ☉ (U+02609), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2056,8 +2056,8 @@ msgctxt ""
"emoji.ulf\n"
"MERCURY\n"
"LngText.text"
-msgid "Mercury"
-msgstr "Меркурий"
+msgid "mercury"
+msgstr ""
#. ♀ (U+02640), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2074,8 +2074,8 @@ msgctxt ""
"emoji.ulf\n"
"EARTH\n"
"LngText.text"
-msgid "Earth"
-msgstr "Земя"
+msgid "earth"
+msgstr ""
#. ♂ (U+02642), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2092,8 +2092,8 @@ msgctxt ""
"emoji.ulf\n"
"JUPITER\n"
"LngText.text"
-msgid "Jupiter"
-msgstr "Юпитер"
+msgid "jupiter"
+msgstr ""
#. ♄ (U+02644), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2101,8 +2101,8 @@ msgctxt ""
"emoji.ulf\n"
"SATURN\n"
"LngText.text"
-msgid "Saturn"
-msgstr "Сатурн"
+msgid "saturn"
+msgstr ""
#. ♅ (U+02645), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2110,8 +2110,8 @@ msgctxt ""
"emoji.ulf\n"
"URANUS\n"
"LngText.text"
-msgid "Uranus"
-msgstr "Уран"
+msgid "uranus"
+msgstr ""
#. ♆ (U+02646), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2119,8 +2119,8 @@ msgctxt ""
"emoji.ulf\n"
"NEPTUNE\n"
"LngText.text"
-msgid "Neptune"
-msgstr "Нептун"
+msgid "neptune"
+msgstr ""
#. ♇ (U+02647), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2128,8 +2128,8 @@ msgctxt ""
"emoji.ulf\n"
"PLUTO\n"
"LngText.text"
-msgid "Pluto"
-msgstr "Плутон"
+msgid "pluto"
+msgstr ""
#. ♈ (U+02648), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2137,8 +2137,8 @@ msgctxt ""
"emoji.ulf\n"
"ARIES\n"
"LngText.text"
-msgid "Aries"
-msgstr "Овен"
+msgid "aries"
+msgstr ""
#. ♉ (U+02649), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2146,8 +2146,8 @@ msgctxt ""
"emoji.ulf\n"
"TAURUS\n"
"LngText.text"
-msgid "Taurus"
-msgstr "Телец"
+msgid "taurus"
+msgstr ""
#. ♊ (U+0264A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2155,8 +2155,8 @@ msgctxt ""
"emoji.ulf\n"
"GEMINI\n"
"LngText.text"
-msgid "Gemini"
-msgstr "Близнаци"
+msgid "gemini"
+msgstr ""
#. ♋ (U+0264B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2164,8 +2164,8 @@ msgctxt ""
"emoji.ulf\n"
"CANCER\n"
"LngText.text"
-msgid "Cancer"
-msgstr "Рак"
+msgid "cancer"
+msgstr ""
#. ♌ (U+0264C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2173,8 +2173,8 @@ msgctxt ""
"emoji.ulf\n"
"LEO\n"
"LngText.text"
-msgid "Leo"
-msgstr "Лъв"
+msgid "leo"
+msgstr ""
#. ♍ (U+0264D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2182,8 +2182,8 @@ msgctxt ""
"emoji.ulf\n"
"VIRGO\n"
"LngText.text"
-msgid "Virgo"
-msgstr "Дева"
+msgid "virgo"
+msgstr ""
#. ♎ (U+0264E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2191,8 +2191,8 @@ msgctxt ""
"emoji.ulf\n"
"LIBRA\n"
"LngText.text"
-msgid "Libra"
-msgstr "Везни"
+msgid "libra"
+msgstr ""
#. ♏ (U+0264F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2200,8 +2200,8 @@ msgctxt ""
"emoji.ulf\n"
"SCORPIUS\n"
"LngText.text"
-msgid "Scorpius"
-msgstr "Скорпион"
+msgid "scorpius"
+msgstr ""
#. ♐ (U+02650), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2209,8 +2209,8 @@ msgctxt ""
"emoji.ulf\n"
"SAGITTARIUS\n"
"LngText.text"
-msgid "Sagittarius"
-msgstr "Стрелец"
+msgid "sagittarius"
+msgstr ""
#. ♑ (U+02651), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2218,8 +2218,8 @@ msgctxt ""
"emoji.ulf\n"
"CAPRICORN\n"
"LngText.text"
-msgid "Capricorn"
-msgstr "Козирог"
+msgid "capricorn"
+msgstr ""
#. ♒ (U+02652), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2227,8 +2227,8 @@ msgctxt ""
"emoji.ulf\n"
"AQUARIUS\n"
"LngText.text"
-msgid "Aquarius"
-msgstr "Водолей"
+msgid "aquarius"
+msgstr ""
#. ♓ (U+02653), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2236,8 +2236,8 @@ msgctxt ""
"emoji.ulf\n"
"PISCES\n"
"LngText.text"
-msgid "Pisces"
-msgstr "Риби"
+msgid "pisces"
+msgstr ""
#. ♔ (U+02654), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2596,8 +2596,8 @@ msgctxt ""
"emoji.ulf\n"
"WHITE_FLAG\n"
"LngText.text"
-msgid "flag"
-msgstr "знаме"
+msgid "flag4"
+msgstr ""
#. ⚑ (U+02691), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2605,8 +2605,8 @@ msgctxt ""
"emoji.ulf\n"
"BLACK_FLAG\n"
"LngText.text"
-msgid "flag2"
-msgstr "знаме2"
+msgid "flag3"
+msgstr ""
#. ⚒ (U+02692), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2911,8 +2911,8 @@ msgctxt ""
"emoji.ulf\n"
"BLACK_CROSS_ON_SHIELD\n"
"LngText.text"
-msgid "shield"
-msgstr "щит"
+msgid "shield2"
+msgstr ""
#. ⛪ (U+026EA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2956,8 +2956,8 @@ msgctxt ""
"emoji.ulf\n"
"FLAG_IN_HOLE\n"
"LngText.text"
-msgid "golf"
-msgstr "голф"
+msgid "golf2"
+msgstr ""
#. ⛴ (U+026F4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3685,8 +3685,8 @@ msgctxt ""
"emoji.ulf\n"
"FOGGY\n"
"LngText.text"
-msgid "fog"
-msgstr "мъгла"
+msgid "foggy"
+msgstr ""
#. 🌂 (U+1F302), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3784,8 +3784,8 @@ msgctxt ""
"emoji.ulf\n"
"MILKY_WAY\n"
"LngText.text"
-msgid "Milky way"
-msgstr "Млечен път"
+msgid "milky way"
+msgstr ""
#. 🌍 (U+1F30D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4036,8 +4036,8 @@ msgctxt ""
"emoji.ulf\n"
"CHERRY_BLOSSOM\n"
"LngText.text"
-msgid "cherry blossom"
-msgstr "вишнев цвят"
+msgid "blossom2"
+msgstr ""
#. 🌹 (U+1F339), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4270,8 +4270,8 @@ msgctxt ""
"emoji.ulf\n"
"CHERRIES\n"
"LngText.text"
-msgid "cherries"
-msgstr "вишни"
+msgid "cherry"
+msgstr ""
#. 🍓 (U+1F353), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4567,8 +4567,8 @@ msgctxt ""
"emoji.ulf\n"
"COOKING\n"
"LngText.text"
-msgid "egg"
-msgstr "яйце"
+msgid "cooking"
+msgstr ""
#. 🍴 (U+1F374), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4603,8 +4603,8 @@ msgctxt ""
"emoji.ulf\n"
"WINE_GLASS\n"
"LngText.text"
-msgid "wine glass"
-msgstr "винена чаша"
+msgid "glass"
+msgstr ""
#. 🍸 (U+1F378), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4621,8 +4621,8 @@ msgctxt ""
"emoji.ulf\n"
"TROPICAL_DRINK\n"
"LngText.text"
-msgid "tropical drink"
-msgstr "коктейл2"
+msgid "drink2"
+msgstr ""
#. 🍺 (U+1F37A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4657,8 +4657,8 @@ msgctxt ""
"emoji.ulf\n"
"RIBBON\n"
"LngText.text"
-msgid "ribbon"
-msgstr "панделка"
+msgid "ribbon2"
+msgstr ""
#. 🎁 (U+1F381), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4684,8 +4684,8 @@ msgctxt ""
"emoji.ulf\n"
"JACK-O-LANTERN\n"
"LngText.text"
-msgid "Halloween"
-msgstr "Хелоуин"
+msgid "halloween"
+msgstr ""
#. 🎄 (U+1F384), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4693,8 +4693,8 @@ msgctxt ""
"emoji.ulf\n"
"CHRISTMAS_TREE\n"
"LngText.text"
-msgid "Christmas"
-msgstr "Коледа"
+msgid "christmas"
+msgstr ""
#. 🎅 (U+1F385), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4702,8 +4702,8 @@ msgctxt ""
"emoji.ulf\n"
"FATHER_CHRISTMAS\n"
"LngText.text"
-msgid "Santa"
-msgstr "дядо Коледа"
+msgid "santa"
+msgstr ""
#. 🎆 (U+1F386), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4747,8 +4747,8 @@ msgctxt ""
"emoji.ulf\n"
"CONFETTI_BALL\n"
"LngText.text"
-msgid "confetti ball"
-msgstr "топка с конфети"
+msgid "party2"
+msgstr ""
#. 🎋 (U+1F38B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4837,8 +4837,8 @@ msgctxt ""
"emoji.ulf\n"
"CAROUSEL_HORSE\n"
"LngText.text"
-msgid "carousel horse"
-msgstr "конче от въртележка"
+msgid "fair2"
+msgstr ""
#. 🎡 (U+1F3A1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4846,8 +4846,8 @@ msgctxt ""
"emoji.ulf\n"
"FERRIS_WHEEL\n"
"LngText.text"
-msgid "ferris wheel"
-msgstr "виенско колело"
+msgid "fair"
+msgstr ""
#. 🎢 (U+1F3A2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4927,8 +4927,8 @@ msgctxt ""
"emoji.ulf\n"
"CIRCUS_TENT\n"
"LngText.text"
-msgid "circus tent"
-msgstr "цирк"
+msgid "circus"
+msgstr ""
#. 🎫 (U+1F3AB), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5134,8 +5134,8 @@ msgctxt ""
"emoji.ulf\n"
"CHEQUERED_FLAG\n"
"LngText.text"
-msgid "flag3"
-msgstr "знаме3"
+msgid "race"
+msgstr ""
#. 🏂 (U+1F3C2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5179,8 +5179,8 @@ msgctxt ""
"emoji.ulf\n"
"HORSE_RACING\n"
"LngText.text"
-msgid "horse racing"
-msgstr "конно надбягване"
+msgid "horse3"
+msgstr ""
#. 🏈 (U+1F3C8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6898,8 +6898,8 @@ msgctxt ""
"emoji.ulf\n"
"MONEY_BAG\n"
"LngText.text"
-msgid "moneybag"
-msgstr "торба с пари"
+msgid "money2"
+msgstr ""
#. 💱 (U+1F4B1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6907,8 +6907,8 @@ msgctxt ""
"emoji.ulf\n"
"CURRENCY_EXCHANGE\n"
"LngText.text"
-msgid "currency exchange"
-msgstr "обмен на валута"
+msgid "exchange"
+msgstr ""
#. 💲 (U+1F4B2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6979,8 +6979,8 @@ msgctxt ""
"emoji.ulf\n"
"CHART_WITH_UPWARDS_TREND_AND_YEN_SIGN\n"
"LngText.text"
-msgid "chart"
-msgstr "диаграма4"
+msgid "chart4"
+msgstr ""
#. 💺 (U+1F4BA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7069,8 +7069,8 @@ msgctxt ""
"emoji.ulf\n"
"PAGE_WITH_CURL\n"
"LngText.text"
-msgid "page with curl"
-msgstr "подвита страница"
+msgid "page3"
+msgstr ""
#. 📄 (U+1F4C4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7078,8 +7078,8 @@ msgctxt ""
"emoji.ulf\n"
"PAGE_FACING_UP\n"
"LngText.text"
-msgid "page facing up"
-msgstr "страница"
+msgid "page"
+msgstr ""
#. 📅 (U+1F4C5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7114,8 +7114,8 @@ msgctxt ""
"emoji.ulf\n"
"CHART_WITH_UPWARDS_TREND\n"
"LngText.text"
-msgid "char"
-msgstr "диаграма"
+msgid "chart"
+msgstr ""
#. 📉 (U+1F4C9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7231,8 +7231,8 @@ msgctxt ""
"emoji.ulf\n"
"CLOSED_BOOK\n"
"LngText.text"
-msgid "book"
-msgstr "книга"
+msgid "book2"
+msgstr ""
#. 📖 (U+1F4D6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7240,8 +7240,8 @@ msgctxt ""
"emoji.ulf\n"
"OPEN_BOOK\n"
"LngText.text"
-msgid "book2"
-msgstr "книга2"
+msgid "book3"
+msgstr ""
#. 📚 (U+1F4DA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7312,8 +7312,8 @@ msgctxt ""
"emoji.ulf\n"
"SATELLITE_ANTENNA\n"
"LngText.text"
-msgid "satellite"
-msgstr "сателитна антена"
+msgid "antenna"
+msgstr ""
#. 📢 (U+1F4E2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7375,8 +7375,8 @@ msgctxt ""
"emoji.ulf\n"
"INCOMING_ENVELOPE\n"
"LngText.text"
-msgid "envelope2"
-msgstr "плик2"
+msgid "envelope7"
+msgstr ""
#. 📩 (U+1F4E9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7384,8 +7384,8 @@ msgctxt ""
"emoji.ulf\n"
"ENVELOPE_WITH_DOWNWARDS_ARROW_ABOVE\n"
"LngText.text"
-msgid "envelope3"
-msgstr "плик3"
+msgid "envelope8"
+msgstr ""
#. 📪 (U+1F4EA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8194,8 +8194,8 @@ msgctxt ""
"emoji.ulf\n"
"SMILING_FACE_WITH_OPEN_MOUTH_AND_TIGHTLY-CLOSED_EYES\n"
"LngText.text"
-msgid "laughing"
-msgstr "смях"
+msgid "laugh"
+msgstr ""
#. 😇 (U+1F607), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8266,8 +8266,8 @@ msgctxt ""
"emoji.ulf\n"
"SMILING_FACE_WITH_SUNGLASSES\n"
"LngText.text"
-msgid "sunglasses"
-msgstr "тъмни очила"
+msgid "sunglasses2"
+msgstr ""
#. 😏 (U+1F60F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8734,8 +8734,8 @@ msgctxt ""
"emoji.ulf\n"
"FACE_WITH_OK_GESTURE\n"
"LngText.text"
-msgid "ok2"
-msgstr "мару"
+msgid "ok3"
+msgstr ""
#. 🙇 (U+1F647), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8743,8 +8743,8 @@ msgctxt ""
"emoji.ulf\n"
"PERSON_BOWING_DEEPLY\n"
"LngText.text"
-msgid "bow"
-msgstr "поклон"
+msgid "prostration"
+msgstr ""
#. 🙈 (U+1F648), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8842,8 +8842,8 @@ msgctxt ""
"emoji.ulf\n"
"STEAM_LOCOMOTIVE\n"
"LngText.text"
-msgid "steam locomotive"
-msgstr "парен локомотив"
+msgid "locomotive"
+msgstr ""
#. 🚃 (U+1F683), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9328,8 +9328,8 @@ msgctxt ""
"emoji.ulf\n"
"CHILDREN_CROSSING\n"
"LngText.text"
-msgid "children crossing"
-msgstr "пресичащи деца"
+msgid "crosswalk"
+msgstr ""
#. 🚹 (U+1F6B9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9448,6 +9448,3714 @@ msgctxt ""
msgid "left luggage"
msgstr "изоставен багаж"
+#. 🕃 (U+1F543), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTCHED_LEFT_SEMICIRCLE_WITH_THREE_DOTS\n"
+"LngText.text"
+msgid "feast"
+msgstr ""
+
+#. 🙂 (U+1F642), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLIGHTLY_SMILING_FACE\n"
+"LngText.text"
+msgid "smiling3"
+msgstr ""
+
+#. 🙁 (U+1F641), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLIGHTLY_FROWNING_FACE\n"
+"LngText.text"
+msgid "frowning2"
+msgstr ""
+
+#. 🕵 (U+1F575), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLEUTH_OR_SPY\n"
+"LngText.text"
+msgid "detective"
+msgstr ""
+
+#. 🛌 (U+1F6CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLEEPING_ACCOMMODATION\n"
+"LngText.text"
+msgid "sleep"
+msgstr ""
+
+#. 🕴 (U+1F574), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_IN_BUSINESS_SUIT_LEVITATING\n"
+"LngText.text"
+msgid "suit"
+msgstr ""
+
+#. 🗣 (U+1F5E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPEAKING_HEAD_IN_SILHOUETTE\n"
+"LngText.text"
+msgid "head"
+msgstr ""
+
+#. 🏌 (U+1F3CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GOLFER\n"
+"LngText.text"
+msgid "golf"
+msgstr ""
+
+#. 🏋 (U+1F3CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WEIGHT_LIFTER\n"
+"LngText.text"
+msgid "weight lifter"
+msgstr ""
+
+#. 🏎 (U+1F3CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RACING_CAR\n"
+"LngText.text"
+msgid "car4"
+msgstr ""
+
+#. 🏍 (U+1F3CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RACING_MOTORCYCLE\n"
+"LngText.text"
+msgid "motorcycle"
+msgstr ""
+
+#. 🖕 (U+1F595), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_HAND_WITH_MIDDLE_FINGER_EXTENDED\n"
+"LngText.text"
+msgid "finger"
+msgstr ""
+
+#. 🖖 (U+1F596), Mr. Spock's Vulcan salute from Star Trek, see also http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_HAND_WITH_PART_BETWEEN_MIDDLE_AND_RING_FINGERS\n"
+"LngText.text"
+msgid "spock"
+msgstr ""
+
+#. 🖐 (U+1F590), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_HAND_WITH_FINGERS_SPLAYED\n"
+"LngText.text"
+msgid "hand2"
+msgstr ""
+
+#. 👁 (U+1F441), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EYE\n"
+"LngText.text"
+msgid "eye"
+msgstr ""
+
+#. 🗨 (U+1F5E8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_SPEECH_BUBBLE\n"
+"LngText.text"
+msgid "bubble"
+msgstr ""
+
+#. 🗯 (U+1F5EF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_ANGER_BUBBLE\n"
+"LngText.text"
+msgid "bubble4"
+msgstr ""
+
+#. 🕳 (U+1F573), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOLE\n"
+"LngText.text"
+msgid "hole"
+msgstr ""
+
+#. 🕶 (U+1F576), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DARK_SUNGLASSES\n"
+"LngText.text"
+msgid "sunglasses"
+msgstr ""
+
+#. 🛍 (U+1F6CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOPPING_BAGS\n"
+"LngText.text"
+msgid "shop"
+msgstr ""
+
+#. 🐿 (U+1F43F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHIPMUNK\n"
+"LngText.text"
+msgid "chipmunk"
+msgstr ""
+
+#. 🕊 (U+1F54A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOVE_OF_PEACE\n"
+"LngText.text"
+msgid "dove"
+msgstr ""
+
+#. 🕷 (U+1F577), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIDER\n"
+"LngText.text"
+msgid "spider"
+msgstr ""
+
+#. 🕸 (U+1F578), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIDER_WEB\n"
+"LngText.text"
+msgid "web"
+msgstr ""
+
+#. 🏵 (U+1F3F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROSETTE\n"
+"LngText.text"
+msgid "rosette"
+msgstr ""
+
+#. 🌶 (U+1F336), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOT_PEPPER\n"
+"LngText.text"
+msgid "pepper"
+msgstr ""
+
+#. 🍽 (U+1F37D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FORK_AND_KNIFE_WITH_PLATE\n"
+"LngText.text"
+msgid "plate"
+msgstr ""
+
+#. 🗺 (U+1F5FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WORLD_MAP\n"
+"LngText.text"
+msgid "map"
+msgstr ""
+
+#. 🏔 (U+1F3D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SNOW_CAPPED_MOUNTAIN\n"
+"LngText.text"
+msgid "mountain2"
+msgstr ""
+
+#. 🏕 (U+1F3D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CAMPING\n"
+"LngText.text"
+msgid "camping"
+msgstr ""
+
+#. 🏖 (U+1F3D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEACH_WITH_UMBRELLA\n"
+"LngText.text"
+msgid "beach"
+msgstr ""
+
+#. 🏜 (U+1F3DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESERT\n"
+"LngText.text"
+msgid "desert"
+msgstr ""
+
+#. 🏝 (U+1F3DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESERT_ISLAND\n"
+"LngText.text"
+msgid "island"
+msgstr ""
+
+#. 🏞 (U+1F3DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NATIONAL_PARK\n"
+"LngText.text"
+msgid "park"
+msgstr ""
+
+#. 🏟 (U+1F3DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STADIUM\n"
+"LngText.text"
+msgid "stadium"
+msgstr ""
+
+#. 🏛 (U+1F3DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLASSICAL_BUILDING\n"
+"LngText.text"
+msgid "museum"
+msgstr ""
+
+#. 🏗 (U+1F3D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BUILDING_CONSTRUCTION\n"
+"LngText.text"
+msgid "crane"
+msgstr ""
+
+#. 🏘 (U+1F3D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOUSE_BUILDINGS\n"
+"LngText.text"
+msgid "houses"
+msgstr ""
+
+#. 🏚 (U+1F3DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DERELICT_HOUSE_BUILDING\n"
+"LngText.text"
+msgid "house3"
+msgstr ""
+
+#. 🏙 (U+1F3D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CITYSCAPE\n"
+"LngText.text"
+msgid "city"
+msgstr ""
+
+#. 🛣 (U+1F6E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTORWAY\n"
+"LngText.text"
+msgid "motorway"
+msgstr ""
+
+#. 🛤 (U+1F6E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAILWAY_TRACK\n"
+"LngText.text"
+msgid "track"
+msgstr ""
+
+#. 🛢 (U+1F6E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OIL_DRUM\n"
+"LngText.text"
+msgid "drum"
+msgstr ""
+
+#. 🛳 (U+1F6F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PASSENGER_SHIP\n"
+"LngText.text"
+msgid "ship2"
+msgstr ""
+
+#. 🛥 (U+1F6E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTOR_BOAT\n"
+"LngText.text"
+msgid "motor boat"
+msgstr ""
+
+#. 🛩 (U+1F6E9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SMALL_AIRPLANE\n"
+"LngText.text"
+msgid "airplane2"
+msgstr ""
+
+#. 🛫 (U+1F6EB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AIRPLANE_DEPARTURE\n"
+"LngText.text"
+msgid "departure"
+msgstr ""
+
+#. 🛬 (U+1F6EC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AIRPLANE_ARRIVING\n"
+"LngText.text"
+msgid "arrival"
+msgstr ""
+
+#. 🛰 (U+1F6F0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SATELLITE\n"
+"LngText.text"
+msgid "satellite"
+msgstr ""
+
+#. 🛎 (U+1F6CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BELLHOP_BELL\n"
+"LngText.text"
+msgid "bell2"
+msgstr ""
+
+#. 🕰 (U+1F570), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MANTELPIECE_CLOCK\n"
+"LngText.text"
+msgid "clock"
+msgstr ""
+
+#. 🌡 (U+1F321), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THERMOMETER\n"
+"LngText.text"
+msgid "thermometer"
+msgstr ""
+
+#. 🌤 (U+1F324), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_WITH_SMALL_CLOUD\n"
+"LngText.text"
+msgid "cloudy"
+msgstr ""
+
+#. 🌥 (U+1F325), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_BEHIND_CLOUD\n"
+"LngText.text"
+msgid "cloudy2"
+msgstr ""
+
+#. 🌦 (U+1F326), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_BEHIND_CLOUD_WITH_RAIN\n"
+"LngText.text"
+msgid "rainy"
+msgstr ""
+
+#. 🌧 (U+1F327), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_RAIN\n"
+"LngText.text"
+msgid "storm"
+msgstr ""
+
+#. 🌨 (U+1F328), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_SNOW\n"
+"LngText.text"
+msgid "snow"
+msgstr ""
+
+#. 🌩 (U+1F329), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_LIGHTNING\n"
+"LngText.text"
+msgid "lightning"
+msgstr ""
+
+#. 🌪 (U+1F32A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_TORNADO\n"
+"LngText.text"
+msgid "tornado"
+msgstr ""
+
+#. 🌫 (U+1F32B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOG\n"
+"LngText.text"
+msgid "fog"
+msgstr ""
+
+#. 🌬 (U+1F32C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WIND_BLOWING_FACE\n"
+"LngText.text"
+msgid "wind"
+msgstr ""
+
+#. 🎗 (U+1F397), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REMINDER_RIBBON\n"
+"LngText.text"
+msgid "ribbon"
+msgstr ""
+
+#. 🎟 (U+1F39F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ADMISSION_TICKETS\n"
+"LngText.text"
+msgid "ticket2"
+msgstr ""
+
+#. 🎖 (U+1F396), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MILITARY_MEDAL\n"
+"LngText.text"
+msgid "medal2"
+msgstr ""
+
+#. 🏅 (U+1F3C5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPORTS_MEDAL\n"
+"LngText.text"
+msgid "medal"
+msgstr ""
+
+#. 🕹 (U+1F579), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"JOYSTICK\n"
+"LngText.text"
+msgid "joystick"
+msgstr ""
+
+#. 🖼 (U+1F5BC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_PICTURE\n"
+"LngText.text"
+msgid "picture"
+msgstr ""
+
+#. 🎙 (U+1F399), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STUDIO_MICROPHONE\n"
+"LngText.text"
+msgid "microphone2"
+msgstr ""
+
+#. 🎚 (U+1F39A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEVEL_SLIDER\n"
+"LngText.text"
+msgid "slider"
+msgstr ""
+
+#. 🎛 (U+1F39B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CONTROL_KNOBS\n"
+"LngText.text"
+msgid "control"
+msgstr ""
+
+#. 🖥 (U+1F5A5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESKTOP_COMPUTER\n"
+"LngText.text"
+msgid "computer2"
+msgstr ""
+
+#. 🖨 (U+1F5A8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINTER\n"
+"LngText.text"
+msgid "printer"
+msgstr ""
+
+#. 🖱 (U+1F5B1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse3"
+msgstr ""
+
+#. 🖲 (U+1F5B2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TRACKBALL\n"
+"LngText.text"
+msgid "trackball"
+msgstr ""
+
+#. 🎞 (U+1F39E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILM_FRAMES\n"
+"LngText.text"
+msgid "film"
+msgstr ""
+
+#. 📽 (U+1F4FD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILM_PROJECTOR\n"
+"LngText.text"
+msgid "projector"
+msgstr ""
+
+#. 📸 (U+1F4F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CAMERA_WITH_FLASH\n"
+"LngText.text"
+msgid "flash"
+msgstr ""
+
+#. 🕯 (U+1F56F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANDLE\n"
+"LngText.text"
+msgid "candle"
+msgstr ""
+
+#. 🗞 (U+1F5DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROLLED-UP_NEWSPAPER\n"
+"LngText.text"
+msgid "newspaper2"
+msgstr ""
+
+#. 🏷 (U+1F3F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LABEL\n"
+"LngText.text"
+msgid "label"
+msgstr ""
+
+#. 🗳 (U+1F5F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BALLOT\n"
+"LngText.text"
+msgid "ballot"
+msgstr ""
+
+#. 🖋 (U+1F58B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_FOUNTAIN_PEN\n"
+"LngText.text"
+msgid "pen2"
+msgstr ""
+
+#. 🖊 (U+1F58A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_BALLPOINT_PEN\n"
+"LngText.text"
+msgid "pen"
+msgstr ""
+
+#. 🖌 (U+1F58C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_PAINTBRUSH\n"
+"LngText.text"
+msgid "paintbrush"
+msgstr ""
+
+#. 🖍 (U+1F58D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_CRAYON\n"
+"LngText.text"
+msgid "crayon"
+msgstr ""
+
+#. 🗂 (U+1F5C2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARD_INDEX_DIVIDERS\n"
+"LngText.text"
+msgid "index"
+msgstr ""
+
+#. 🗒 (U+1F5D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIRAL_NOTE_PAD\n"
+"LngText.text"
+msgid "notepad"
+msgstr ""
+
+#. 🗓 (U+1F5D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIRAL_CALENDAR_PAD\n"
+"LngText.text"
+msgid "calendar3"
+msgstr ""
+
+#. 🖇 (U+1F587), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LINKED_PAPERCLIPS\n"
+"LngText.text"
+msgid "paperclip2"
+msgstr ""
+
+#. 🗃 (U+1F5C3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARD_FILE_BOX\n"
+"LngText.text"
+msgid "box"
+msgstr ""
+
+#. 🗄 (U+1F5C4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILE_CABINET\n"
+"LngText.text"
+msgid "cabinet"
+msgstr ""
+
+#. 🗑 (U+1F5D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WASTEBASKET\n"
+"LngText.text"
+msgid "wastebasket"
+msgstr ""
+
+#. 🗝 (U+1F5DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLD_KEY\n"
+"LngText.text"
+msgid "key2"
+msgstr ""
+
+#. 🛠 (U+1F6E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HAMMER_AND_WRENCH\n"
+"LngText.text"
+msgid "hammer and wrench"
+msgstr ""
+
+#. 🗡 (U+1F5E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DAGGER_KNIFE\n"
+"LngText.text"
+msgid "knife2"
+msgstr ""
+
+#. 🛡 (U+1F6E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHIELD\n"
+"LngText.text"
+msgid "shield"
+msgstr ""
+
+#. 🗜 (U+1F5DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COMPRESSION\n"
+"LngText.text"
+msgid "clamp"
+msgstr ""
+
+#. 🛏 (U+1F6CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BED\n"
+"LngText.text"
+msgid "bed"
+msgstr ""
+
+#. 🛋 (U+1F6CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COUCH_AND_LAMP\n"
+"LngText.text"
+msgid "couch"
+msgstr ""
+
+#. 🕉 (U+1F549), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OM_SYMBOL\n"
+"LngText.text"
+msgid "om"
+msgstr ""
+
+#. ⏸ (U+23F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOUBLE_VERTICAL_BAR\n"
+"LngText.text"
+msgid "pause"
+msgstr ""
+
+#. ⏹ (U+23F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_SQUARE_FOR_STOP\n"
+"LngText.text"
+msgid "stop2"
+msgstr ""
+
+#. ⏺ (U+23FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_CIRCLE_FOR_RECORD\n"
+"LngText.text"
+msgid "record"
+msgstr ""
+
+#. 🏴 (U+1F3F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WAVING_BLACK_FLAG\n"
+"LngText.text"
+msgid "flag"
+msgstr ""
+
+#. 🏳 (U+1F3F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WAVING_WHITE_FLAG\n"
+"LngText.text"
+msgid "flag2"
+msgstr ""
+
+#. 🗷 (U+1F5F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BOLD_SCRIPT_X\n"
+"LngText.text"
+msgid "checkbox4"
+msgstr ""
+
+#. 🛉 (U+1F6C9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOYS_SYMBOL\n"
+"LngText.text"
+msgid "boys"
+msgstr ""
+
+#. 🛈 (U+1F6C8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CIRCLED_INFORMATION_SOURCE\n"
+"LngText.text"
+msgid "information3"
+msgstr ""
+
+#. 🛊 (U+1F6CA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GIRLS_SYMBOL\n"
+"LngText.text"
+msgid "girls"
+msgstr ""
+
+#. 🛨 (U+1F6E8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_SMALL_AIRPLANE\n"
+"LngText.text"
+msgid "airplane4"
+msgstr ""
+
+#. 🛲 (U+1F6F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DIESEL_LOCOMOTIVE\n"
+"LngText.text"
+msgid "locomotive2"
+msgstr ""
+
+#. 🛧 (U+1F6E7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_AIRPLANE\n"
+"LngText.text"
+msgid "airplane3"
+msgstr ""
+
+#. 🛱 (U+1F6F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ONCOMING_FIRE_ENGINE\n"
+"LngText.text"
+msgid "fire engine2"
+msgstr ""
+
+#. 🛦 (U+1F6E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_MILITARY_AIRPLANE\n"
+"LngText.text"
+msgid "airplane5"
+msgstr ""
+
+#. 🛪 (U+1F6EA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NORTHEAST-POINTING_AIRPLANE\n"
+"LngText.text"
+msgid "airplane6"
+msgstr ""
+
+#. 🗭 (U+1F5ED), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_THOUGHT_BUBBLE\n"
+"LngText.text"
+msgid "bubble5"
+msgstr ""
+
+#. 🗱 (U+1F5F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHTNING_MOOD_BUBBLE\n"
+"LngText.text"
+msgid "bubble6"
+msgstr ""
+
+#. 🗬 (U+1F5EC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_THOUGHT_BUBBLE\n"
+"LngText.text"
+msgid "bubble7"
+msgstr ""
+
+#. 🗠 (U+1F5E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STOCK_CHART\n"
+"LngText.text"
+msgid "chart5"
+msgstr ""
+
+#. 🗟 (U+1F5DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGE_WITH_CIRCLED_TEXT\n"
+"LngText.text"
+msgid "page4"
+msgstr ""
+
+#. 🖎 (U+1F58E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_WRITING_HAND\n"
+"LngText.text"
+msgid "writing2"
+msgstr ""
+
+#. 🗦 (U+1F5E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_LEFT\n"
+"LngText.text"
+msgid "rays"
+msgstr ""
+
+#. 🎝 (U+1F39D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEAMED_DESCENDING_MUSICAL_NOTES\n"
+"LngText.text"
+msgid "notes3"
+msgstr ""
+
+#. 🔾 (U+1F53E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_RIGHT_SHADOWED_WHITE_CIRCLE\n"
+"LngText.text"
+msgid "circle3"
+msgstr ""
+
+#. 🎜 (U+1F39C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEAMED_ASCENDING_MUSICAL_NOTES\n"
+"LngText.text"
+msgid "notes4"
+msgstr ""
+
+#. 🕮 (U+1F56E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOOK\n"
+"LngText.text"
+msgid "book"
+msgstr ""
+
+#. 🗛 (U+1F5DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DECREASE_FONT_SIZE_SYMBOL\n"
+"LngText.text"
+msgid "font"
+msgstr ""
+
+#. 🔿 (U+1F53F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UPPER_RIGHT_SHADOWED_WHITE_CIRCLE\n"
+"LngText.text"
+msgid "circle4"
+msgstr ""
+
+#. 🕫 (U+1F56B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BULLHORN\n"
+"LngText.text"
+msgid "bullhorn"
+msgstr ""
+
+#. 🕬 (U+1F56C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BULLHORN_WITH_SOUND_WAVES\n"
+"LngText.text"
+msgid "bullhorn2"
+msgstr ""
+
+#. 🕻 (U+1F57B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_HAND_TELEPHONE_RECEIVER\n"
+"LngText.text"
+msgid "receiver2"
+msgstr ""
+
+#. 🕾 (U+1F57E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_TOUCHTONE_TELEPHONE\n"
+"LngText.text"
+msgid "phone3"
+msgstr ""
+
+#. 🕼 (U+1F57C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TELEPHONE_RECEIVER_WITH_PAGE\n"
+"LngText.text"
+msgid "receiver4"
+msgstr ""
+
+#. 🕽 (U+1F57D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_HAND_TELEPHONE_RECEIVER\n"
+"LngText.text"
+msgid "receiver3"
+msgstr ""
+
+#. 🕿 (U+1F57F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_TOUCHTONE_TELEPHONE\n"
+"LngText.text"
+msgid "phone4"
+msgstr ""
+
+#. 🖚 (U+1F59A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_LEFT_POINTING_INDEX\n"
+"LngText.text"
+msgid "left4"
+msgstr ""
+
+#. 🖏 (U+1F58F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TURNED_OK_HAND_SIGN\n"
+"LngText.text"
+msgid "ok2"
+msgstr ""
+
+#. 🖜 (U+1F59C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_LEFT_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "left5"
+msgstr ""
+
+#. 🗥 (U+1F5E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_BELOW\n"
+"LngText.text"
+msgid "rays2"
+msgstr ""
+
+#. 🖛 (U+1F59B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_RIGHT_POINTING_INDEX\n"
+"LngText.text"
+msgid "right4"
+msgstr ""
+
+#. 🖟 (U+1F59F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_DOWN_POINTING_INDEX\n"
+"LngText.text"
+msgid "down3"
+msgstr ""
+
+#. 🖞 (U+1F59E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_UP_POINTING_INDEX\n"
+"LngText.text"
+msgid "up3"
+msgstr ""
+
+#. 🌢 (U+1F322), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_DROPLET\n"
+"LngText.text"
+msgid "droplet2"
+msgstr ""
+
+#. 🎘 (U+1F398), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MUSICAL_KEYBOARD_WITH_JACKS\n"
+"LngText.text"
+msgid "synthesizer"
+msgstr ""
+
+#. 🎕 (U+1F395), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOUQUET_OF_FLOWERS\n"
+"LngText.text"
+msgid "bouquet2"
+msgstr ""
+
+#. 🎔 (U+1F394), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEART_WITH_TIP_ON_THE_LEFT\n"
+"LngText.text"
+msgid "heart2"
+msgstr ""
+
+#. 🕱 (U+1F571), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_SKULL_AND_CROSSBONES\n"
+"LngText.text"
+msgid "pirate"
+msgstr ""
+
+#. 🖀 (U+1F580), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TELEPHONE_ON_TOP_OF_MODEM\n"
+"LngText.text"
+msgid "modem"
+msgstr ""
+
+#. 🕲 (U+1F572), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NO_PIRACY\n"
+"LngText.text"
+msgid "no piracy"
+msgstr ""
+
+#. 🕅 (U+1F545), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SYMBOL_FOR_MARKS_CHAPTER\n"
+"LngText.text"
+msgid "marks chapter"
+msgstr ""
+
+#. 🕈 (U+1F548), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CELTIC_CROSS\n"
+"LngText.text"
+msgid "Celtic cross"
+msgstr ""
+
+#. 🖗 (U+1F597), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_DOWN_POINTING_LEFT_HAND_INDEX\n"
+"LngText.text"
+msgid "down4"
+msgstr ""
+
+#. 🖆 (U+1F586), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEN_OVER_STAMPED_ENVELOPE\n"
+"LngText.text"
+msgid "envelope4"
+msgstr ""
+
+#. 🖃 (U+1F583), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STAMPED_ENVELOPE\n"
+"LngText.text"
+msgid "envelope2"
+msgstr ""
+
+#. 🗤 (U+1F5E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_ABOVE\n"
+"LngText.text"
+msgid "rays3"
+msgstr ""
+
+#. 🖉 (U+1F589), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_PENCIL\n"
+"LngText.text"
+msgid "pencil4"
+msgstr ""
+
+#. 🖂 (U+1F582), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BACK_OF_ENVELOPE\n"
+"LngText.text"
+msgid "envelope3"
+msgstr ""
+
+#. 🖈 (U+1F588), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_PUSHPIN\n"
+"LngText.text"
+msgid "tack"
+msgstr ""
+
+#. 🖄 (U+1F584), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ENVELOPE_WITH_LIGHTNING\n"
+"LngText.text"
+msgid "envelope5"
+msgstr ""
+
+#. 🖁 (U+1F581), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLAMSHELL_MOBILE_PHONE\n"
+"LngText.text"
+msgid "mobile2"
+msgstr ""
+
+#. 🖅 (U+1F585), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FLYING_ENVELOPE\n"
+"LngText.text"
+msgid "envelope6"
+msgstr ""
+
+#. 🖘 (U+1F598), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_LEFT_POINTING_INDEX\n"
+"LngText.text"
+msgid "left6"
+msgstr ""
+
+#. 🖙 (U+1F599), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_RIGHT_POINTING_INDEX\n"
+"LngText.text"
+msgid "right5"
+msgstr ""
+
+#. 🗖 (U+1F5D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAXIMIZE\n"
+"LngText.text"
+msgid "maximize"
+msgstr ""
+
+#. 🗗 (U+1F5D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OVERLAP\n"
+"LngText.text"
+msgid "overlap"
+msgstr ""
+
+#. 🗏 (U+1F5CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGE\n"
+"LngText.text"
+msgid "page2"
+msgstr ""
+
+#. 🗐 (U+1F5D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGES\n"
+"LngText.text"
+msgid "pages"
+msgstr ""
+
+#. 🗘 (U+1F5D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOCKWISE_RIGHT_AND_LEFT_SEMICIRCLE_ARROWS\n"
+"LngText.text"
+msgid "arrows"
+msgstr ""
+
+#. 🗚 (U+1F5DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"INCREASE_FONT_SIZE_SYMBOL\n"
+"LngText.text"
+msgid "font2"
+msgstr ""
+
+#. 🗕 (U+1F5D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MINIMIZE\n"
+"LngText.text"
+msgid "minimize"
+msgstr ""
+
+#. 🗙 (U+1F5D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANCELLATION_X\n"
+"LngText.text"
+msgid "cancel"
+msgstr ""
+
+#. 🗔 (U+1F5D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESKTOP_WINDOW\n"
+"LngText.text"
+msgid "window"
+msgstr ""
+
+#. 🗌 (U+1F5CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_PAGE\n"
+"LngText.text"
+msgid "empty page"
+msgstr ""
+
+#. 🗋 (U+1F5CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_DOCUMENT\n"
+"LngText.text"
+msgid "empty document"
+msgstr ""
+
+#. 🗍 (U+1F5CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_PAGES\n"
+"LngText.text"
+msgid "empty pages"
+msgstr ""
+
+#. 🗎 (U+1F5CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT\n"
+"LngText.text"
+msgid "document"
+msgstr ""
+
+#. 🗆 (U+1F5C6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE_PAGE\n"
+"LngText.text"
+msgid "empty note page"
+msgstr ""
+
+#. 🗊 (U+1F5CA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE_PAD\n"
+"LngText.text"
+msgid "note pad"
+msgstr ""
+
+#. 🗈 (U+1F5C8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE\n"
+"LngText.text"
+msgid "note3"
+msgstr ""
+
+#. 🗇 (U+1F5C7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE_PAD\n"
+"LngText.text"
+msgid "empty note pad"
+msgstr ""
+
+#. 🗉 (U+1F5C9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE_PAGE\n"
+"LngText.text"
+msgid "note page"
+msgstr ""
+
+#. 🖸 (U+1F5B8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OPTICAL_DISC_ICON\n"
+"LngText.text"
+msgid "optical disc"
+msgstr ""
+
+#. 🗀 (U+1F5C0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOLDER\n"
+"LngText.text"
+msgid "folder3"
+msgstr ""
+
+#. 🖝 (U+1F59D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_RIGHT_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "right6"
+msgstr ""
+
+#. 🗁 (U+1F5C1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OPEN_FOLDER\n"
+"LngText.text"
+msgid "folder4"
+msgstr ""
+
+#. 🗅 (U+1F5C5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE\n"
+"LngText.text"
+msgid "empty note"
+msgstr ""
+
+#. 🖿 (U+1F5BF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_FOLDER\n"
+"LngText.text"
+msgid "folder5"
+msgstr ""
+
+#. 🖾 (U+1F5BE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_AN_X\n"
+"LngText.text"
+msgid "frame"
+msgstr ""
+
+#. 🖽 (U+1F5BD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_TILES\n"
+"LngText.text"
+msgid "frame2"
+msgstr ""
+
+#. 🖹 (U+1F5B9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_TEXT\n"
+"LngText.text"
+msgid "document2"
+msgstr ""
+
+#. 🖻 (U+1F5BB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_PICTURE\n"
+"LngText.text"
+msgid "document3"
+msgstr ""
+
+#. 🖺 (U+1F5BA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_TEXT_AND_PICTURE\n"
+"LngText.text"
+msgid "document4"
+msgstr ""
+
+#. 🖶 (U+1F5B6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINTER_ICON\n"
+"LngText.text"
+msgid "printer2"
+msgstr ""
+
+#. 🖷 (U+1F5B7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FAX_ICON\n"
+"LngText.text"
+msgid "fax2"
+msgstr ""
+
+#. 🖰 (U+1F5B0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TWO_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse4"
+msgstr ""
+
+#. 🖳 (U+1F5B3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLD_PERSONAL_COMPUTER\n"
+"LngText.text"
+msgid "pc"
+msgstr ""
+
+#. 🖵 (U+1F5B5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCREEN\n"
+"LngText.text"
+msgid "screen"
+msgstr ""
+
+#. 🖯 (U+1F5AF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ONE_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse5"
+msgstr ""
+
+#. 🖴 (U+1F5B4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HARD_DISK\n"
+"LngText.text"
+msgid "hard disk"
+msgstr ""
+
+#. 🖩 (U+1F5A9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POCKET_CALCULATOR\n"
+"LngText.text"
+msgid "calculator"
+msgstr ""
+
+#. 🖭 (U+1F5AD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TAPE_CARTRIDGE\n"
+"LngText.text"
+msgid "cartridge"
+msgstr ""
+
+#. 🖬 (U+1F5AC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SOFT_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy2"
+msgstr ""
+
+#. 🖫 (U+1F5AB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_HARD_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy3"
+msgstr ""
+
+#. 🖮 (U+1F5AE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WIRED_KEYBOARD\n"
+"LngText.text"
+msgid "keyboard2"
+msgstr ""
+
+#. 🖔 (U+1F594), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_VICTORY_HAND\n"
+"LngText.text"
+msgid "victory2"
+msgstr ""
+
+#. 🖧 (U+1F5A7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_NETWORKED_COMPUTERS\n"
+"LngText.text"
+msgid "network"
+msgstr ""
+
+#. 🖪 (U+1F5AA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_HARD_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy4"
+msgstr ""
+
+#. 🗢 (U+1F5E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIPS\n"
+"LngText.text"
+msgid "lips"
+msgstr ""
+
+#. 🖦 (U+1F5A6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KEYBOARD_AND_MOUSE\n"
+"LngText.text"
+msgid "keyboard3"
+msgstr ""
+
+#. 🖣 (U+1F5A3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_DOWN_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "down5"
+msgstr ""
+
+#. 🖡 (U+1F5A1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_DOWN_POINTING_INDEX\n"
+"LngText.text"
+msgid "down6"
+msgstr ""
+
+#. 📾 (U+1F4FE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PORTABLE_STEREO\n"
+"LngText.text"
+msgid "stereo"
+msgstr ""
+
+#. 🏶 (U+1F3F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_ROSETTE\n"
+"LngText.text"
+msgid "rosette2"
+msgstr ""
+
+#. 🏲 (U+1F3F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_PENNANT\n"
+"LngText.text"
+msgid "pennant"
+msgstr ""
+
+#. 🖠 (U+1F5A0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_UP_POINTING_INDEX\n"
+"LngText.text"
+msgid "up4"
+msgstr ""
+
+#. 🖢 (U+1F5A2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_UP_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "up5"
+msgstr ""
+
+#. 🏱 (U+1F3F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_PENNANT\n"
+"LngText.text"
+msgid "pennant2"
+msgstr ""
+
+#. 🕄 (U+1F544), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTCHED_RIGHT_SEMICIRCLE_WITH_THREE_DOTS\n"
+"LngText.text"
+msgid "feast2"
+msgstr ""
+
+#. 🖓 (U+1F593), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_THUMBS_DOWN_SIGN\n"
+"LngText.text"
+msgid "no2"
+msgstr ""
+
+#. 🖑 (U+1F591), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_RAISED_HAND_WITH_FINGERS_SPLAYED\n"
+"LngText.text"
+msgid "hand3"
+msgstr ""
+
+#. 🖒 (U+1F592), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_THUMBS_UP_SIGN\n"
+"LngText.text"
+msgid "yes2"
+msgstr ""
+
+#. 🕩 (U+1F569), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER_WITH_ONE_SOUND_WAVE\n"
+"LngText.text"
+msgid "speaker2"
+msgstr ""
+
+#. 🕆 (U+1F546), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_LATIN_CROSS\n"
+"LngText.text"
+msgid "Latin cross2"
+msgstr ""
+
+#. 🕇 (U+1F547), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEAVY_LATIN_CROSS\n"
+"LngText.text"
+msgid "Latin cross3"
+msgstr ""
+
+#. 🕨 (U+1F568), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER\n"
+"LngText.text"
+msgid "speaker3"
+msgstr ""
+
+#. 🕭 (U+1F56D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RINGING_BELL\n"
+"LngText.text"
+msgid "bell3"
+msgstr ""
+
+#. 🌣 (U+1F323), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN\n"
+"LngText.text"
+msgid "sun2"
+msgstr ""
+
+#. 🛇 (U+1F6C7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PROHIBITED_SIGN\n"
+"LngText.text"
+msgid "prohibited"
+msgstr ""
+
+#. 🛆 (U+1F6C6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TRIANGLE_WITH_ROUNDED_CORNERS\n"
+"LngText.text"
+msgid "triangle3"
+msgstr ""
+
+#. 🗫 (U+1F5EB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_SPEECH_BUBBLES\n"
+"LngText.text"
+msgid "bubble3"
+msgstr ""
+
+#. 🕪 (U+1F56A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER_WITH_THREE_SOUND_WAVES\n"
+"LngText.text"
+msgid "speaker4"
+msgstr ""
+
+#. 🗮 (U+1F5EE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_ANGER_BUBBLE\n"
+"LngText.text"
+msgid "bubble8"
+msgstr ""
+
+#. 🗧 (U+1F5E7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_RIGHT\n"
+"LngText.text"
+msgid "rays4"
+msgstr ""
+
+#. 🗲 (U+1F5F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHTNING_MOOD\n"
+"LngText.text"
+msgid "lightning2"
+msgstr ""
+
+#. 🗰 (U+1F5F0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOOD_BUBBLE\n"
+"LngText.text"
+msgid "bubble9"
+msgstr ""
+
+#. 🗹 (U+1F5F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BOLD_CHECK\n"
+"LngText.text"
+msgid "checkbox5"
+msgstr ""
+
+#. 🗴 (U+1F5F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_SCRIPT_X\n"
+"LngText.text"
+msgid "check mark4"
+msgstr ""
+
+#. 🗪 (U+1F5EA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TWO_SPEECH_BUBBLES\n"
+"LngText.text"
+msgid "bubble2"
+msgstr ""
+
+#. 🗶 (U+1F5F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOLD_SCRIPT_X\n"
+"LngText.text"
+msgid "x4"
+msgstr ""
+
+#. 🗩 (U+1F5E9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEECH_BUBBLE\n"
+"LngText.text"
+msgid "bubble10"
+msgstr ""
+
+#. 🗵 (U+1F5F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_SCRIPT_X\n"
+"LngText.text"
+msgid "checkbox6"
+msgstr ""
+
+#. 🗸 (U+1F5F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHT_CHECK_MARK\n"
+"LngText.text"
+msgid "check mark5"
+msgstr ""
+
+#. 🤗 (U+1F917), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HUGGING_FACE\n"
+"LngText.text"
+msgid "hugging"
+msgstr ""
+
+#. 🤔 (U+1F914), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THINKING_FACE\n"
+"LngText.text"
+msgid "thinking"
+msgstr ""
+
+#. 🙄 (U+1F644), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_ROLLING_EYES\n"
+"LngText.text"
+msgid "eye roll"
+msgstr ""
+
+#. 🤐 (U+1F910), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZIPPER-MOUTH_FACE\n"
+"LngText.text"
+msgid "zipper"
+msgstr ""
+
+#. 🙃 (U+1F643), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UPSIDE-DOWN_FACE\n"
+"LngText.text"
+msgid "upside-down"
+msgstr ""
+
+#. 🤑 (U+1F911), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MONEY-MOUTH_FACE\n"
+"LngText.text"
+msgid "money3"
+msgstr ""
+
+#. 🤒 (U+1F912), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_THERMOMETER\n"
+"LngText.text"
+msgid "thermometer2"
+msgstr ""
+
+#. 🤕 (U+1F915), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_HEAD-BANDAGE\n"
+"LngText.text"
+msgid "bandage"
+msgstr ""
+
+#. 🤓 (U+1F913), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NERD_FACE\n"
+"LngText.text"
+msgid "nerd"
+msgstr ""
+
+#. 🤖 (U+1F916), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROBOT_FACE\n"
+"LngText.text"
+msgid "robot"
+msgstr ""
+
+#. 🏻 (U+1F3FB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-1-2\n"
+"LngText.text"
+msgid "skin1"
+msgstr ""
+
+#. 🏼 (U+1F3FC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-3\n"
+"LngText.text"
+msgid "skin2"
+msgstr ""
+
+#. 🏽 (U+1F3FD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-4\n"
+"LngText.text"
+msgid "skin3"
+msgstr ""
+
+#. 🏾 (U+1F3FE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-5\n"
+"LngText.text"
+msgid "skin4"
+msgstr ""
+
+#. 🏿 (U+1F3FF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-6\n"
+"LngText.text"
+msgid "skin5"
+msgstr ""
+
+#. 🤘 (U+1F918), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIGN_OF_THE_HORNS\n"
+"LngText.text"
+msgid "horns"
+msgstr ""
+
+#. 📿 (U+1F4FF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRAYER_BEADS\n"
+"LngText.text"
+msgid "beads"
+msgstr ""
+
+#. 🦁 (U+1F981), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LION_FACE\n"
+"LngText.text"
+msgid "lion"
+msgstr ""
+
+#. 🦄 (U+1F984), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UNICORN_FACE\n"
+"LngText.text"
+msgid "unicorn"
+msgstr ""
+
+#. 🦃 (U+1F983), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TURKEY\n"
+"LngText.text"
+msgid "turkey"
+msgstr ""
+
+#. 🦀 (U+1F980), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRAB\n"
+"LngText.text"
+msgid "crab"
+msgstr ""
+
+#. 🦂 (U+1F982), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCORPION\n"
+"LngText.text"
+msgid "scorpion"
+msgstr ""
+
+#. 🧀 (U+1F9C0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHEESE_WEDGE\n"
+"LngText.text"
+msgid "cheese"
+msgstr ""
+
+#. 🌭 (U+1F32D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOT_DOG\n"
+"LngText.text"
+msgid "hot dog"
+msgstr ""
+
+#. 🌮 (U+1F32E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TACO\n"
+"LngText.text"
+msgid "taco"
+msgstr ""
+
+#. 🌯 (U+1F32F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BURRITO\n"
+"LngText.text"
+msgid "burrito"
+msgstr ""
+
+#. 🍿 (U+1F37F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POPCORN\n"
+"LngText.text"
+msgid "popcorn"
+msgstr ""
+
+#. 🍾 (U+1F37E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOTTLE_WITH_POPPING_CORK\n"
+"LngText.text"
+msgid "party4"
+msgstr ""
+
+#. 🏺 (U+1F3FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AMPHORA\n"
+"LngText.text"
+msgid "amphora"
+msgstr ""
+
+#. 🕌 (U+1F54C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOSQUE\n"
+"LngText.text"
+msgid "mosque"
+msgstr ""
+
+#. 🕍 (U+1F54D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SYNAGOGUE\n"
+"LngText.text"
+msgid "synagogue"
+msgstr ""
+
+#. 🕋 (U+1F54B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KAABA\n"
+"LngText.text"
+msgid "Kaaba"
+msgstr ""
+
+#. 🏐 (U+1F3D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"VOLLEYBALL\n"
+"LngText.text"
+msgid "volleyball"
+msgstr ""
+
+#. 🏏 (U+1F3CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRICKET_BAT_AND_BALL\n"
+"LngText.text"
+msgid "cricket"
+msgstr ""
+
+#. 🏑 (U+1F3D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FIELD_HOCKEY_STICK_AND_BALL\n"
+"LngText.text"
+msgid "hockey2"
+msgstr ""
+
+#. 🏒 (U+1F3D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ICE_HOCKEY_STICK_AND_PUCK\n"
+"LngText.text"
+msgid "hockey"
+msgstr ""
+
+#. 🏓 (U+1F3D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TABLE_TENNIS_PADDLE_AND_BALL\n"
+"LngText.text"
+msgid "ping pong"
+msgstr ""
+
+#. 🏸 (U+1F3F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BADMINTON_RACQUET_AND_SHUTTLECOCK\n"
+"LngText.text"
+msgid "badminton"
+msgstr ""
+
+#. 🏹 (U+1F3F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOW_AND_ARROW\n"
+"LngText.text"
+msgid "bow"
+msgstr ""
+
+#. 🛐 (U+1F6D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PLACE_OF_WORSHIP\n"
+"LngText.text"
+msgid "worship"
+msgstr ""
+
+#. 🕎 (U+1F54E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MENORAH_WITH_NINE_BRANCHES\n"
+"LngText.text"
+msgid "menorah"
+msgstr ""
+
+#. 🤣 (U+1F923), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROLLING_ON_THE_FLOOR_LAUGHING\n"
+"LngText.text"
+msgid "lol"
+msgstr ""
+
+#. 🤤 (U+1F924), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DROOLING_FACE\n"
+"LngText.text"
+msgid "drool"
+msgstr ""
+
+#. 🤢 (U+1F922), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NAUSEATED_FACE\n"
+"LngText.text"
+msgid "nausea"
+msgstr ""
+
+#. 🤧 (U+1F927), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SNEEZING_FACE\n"
+"LngText.text"
+msgid "sneeze"
+msgstr ""
+
+#. 🤠 (U+1F920), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COWBOY_HAT_FACE\n"
+"LngText.text"
+msgid "cowboy"
+msgstr ""
+
+#. 🤡 (U+1F921), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOWN_FACE\n"
+"LngText.text"
+msgid "clown"
+msgstr ""
+
+#. 🤥 (U+1F925), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LYING_FACE\n"
+"LngText.text"
+msgid "liar"
+msgstr ""
+
+#. 🤴 (U+1F934), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINCE\n"
+"LngText.text"
+msgid "prince"
+msgstr ""
+
+#. 🤵 (U+1F935), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_IN_TUXEDO\n"
+"LngText.text"
+msgid "groom"
+msgstr ""
+
+#. 🤰 (U+1F930), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PREGNANT_WOMAN\n"
+"LngText.text"
+msgid "pregnant"
+msgstr ""
+
+#. 🤶 (U+1F936), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MRS._CLAUS\n"
+"LngText.text"
+msgid "mrs. claus"
+msgstr ""
+
+#. 🤦 (U+1F926), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_FACEPALMING\n"
+"LngText.text"
+msgid "facepalm"
+msgstr ""
+
+#. 🤷 (U+1F937), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_SHRUGGING\n"
+"LngText.text"
+msgid "shrugging"
+msgstr ""
+
+#. 🕺 (U+1F57A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_DANCING\n"
+"LngText.text"
+msgid "dancer2"
+msgstr ""
+
+#. 🤺 (U+1F93A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_FENCING\n"
+"LngText.text"
+msgid "fencer"
+msgstr ""
+
+#. 🤸 (U+1F938), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_CARTWHEELING\n"
+"LngText.text"
+msgid "gymnast"
+msgstr ""
+
+#. 🤼 (U+1F93C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEOPLE_WRESTLING\n"
+"LngText.text"
+msgid "wrestling"
+msgstr ""
+
+#. 🤽 (U+1F93D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_PLAYING_WATER_POLO\n"
+"LngText.text"
+msgid "water polo"
+msgstr ""
+
+#. 🤾 (U+1F93E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_PLAYING_HANDBALL\n"
+"LngText.text"
+msgid "handball"
+msgstr ""
+
+#. 🤹 (U+1F939), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_JUGGLING\n"
+"LngText.text"
+msgid "juggling"
+msgstr ""
+
+#. 🤳 (U+1F933), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SELFIE\n"
+"LngText.text"
+msgid "selfie"
+msgstr ""
+
+#. 🤞 (U+1F91E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CROSSED_FINGERS\n"
+"LngText.text"
+msgid "good luck"
+msgstr ""
+
+#. 🤙 (U+1F919), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CALL_ME_HAND\n"
+"LngText.text"
+msgid "call"
+msgstr ""
+
+#. 🤛 (U+1F91B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT-FACING_FIST\n"
+"LngText.text"
+msgid "fist3"
+msgstr ""
+
+#. 🤜 (U+1F91C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT-FACING_FIST\n"
+"LngText.text"
+msgid "fist4"
+msgstr ""
+
+#. 🤚 (U+1F91A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_BACK_OF_HAND\n"
+"LngText.text"
+msgid "hand4"
+msgstr ""
+
+#. 🤝 (U+1F91D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HANDSHAKE\n"
+"LngText.text"
+msgid "handshake"
+msgstr ""
+
+#. 🖤 (U+1F5A4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_HEART\n"
+"LngText.text"
+msgid "black heart"
+msgstr ""
+
+#. 🦍 (U+1F98D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GORILLA\n"
+"LngText.text"
+msgid "gorilla"
+msgstr ""
+
+#. 🦊 (U+1F98A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOX_FACE\n"
+"LngText.text"
+msgid "fox"
+msgstr ""
+
+#. 🦌 (U+1F98C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DEER\n"
+"LngText.text"
+msgid "deer"
+msgstr ""
+
+#. 🦏 (U+1F98F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RHINOCEROS\n"
+"LngText.text"
+msgid "rhinoceros"
+msgstr ""
+
+#. 🦇 (U+1F987), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BAT\n"
+"LngText.text"
+msgid "bat"
+msgstr ""
+
+#. 🦅 (U+1F985), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EAGLE\n"
+"LngText.text"
+msgid "eagle"
+msgstr ""
+
+#. 🦆 (U+1F986), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DUCK\n"
+"LngText.text"
+msgid "duck"
+msgstr ""
+
+#. 🦉 (U+1F989), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OWL\n"
+"LngText.text"
+msgid "owl"
+msgstr ""
+
+#. 🦎 (U+1F98E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIZARD\n"
+"LngText.text"
+msgid "lizard"
+msgstr ""
+
+#. 🦈 (U+1F988), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHARK\n"
+"LngText.text"
+msgid "shark"
+msgstr ""
+
+#. 🦐 (U+1F990), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHRIMP\n"
+"LngText.text"
+msgid "shrimp"
+msgstr ""
+
+#. 🦑 (U+1F991), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SQUID\n"
+"LngText.text"
+msgid "squid"
+msgstr ""
+
+#. 🦋 (U+1F98B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BUTTERFLY\n"
+"LngText.text"
+msgid "butterfly"
+msgstr ""
+
+#. 🥀 (U+1F940), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WILTED_FLOWER\n"
+"LngText.text"
+msgid "flower2"
+msgstr ""
+
+#. 🥝 (U+1F95D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KIWI_FRUIT\n"
+"LngText.text"
+msgid "kiwi"
+msgstr ""
+
+#. 🥑 (U+1F951), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AVOCADO\n"
+"LngText.text"
+msgid "avocado"
+msgstr ""
+
+#. 🥔 (U+1F954), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POTATO\n"
+"LngText.text"
+msgid "potato"
+msgstr ""
+
+#. 🥕 (U+1F955), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARROT\n"
+"LngText.text"
+msgid "carrot"
+msgstr ""
+
+#. 🥒 (U+1F952), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUCUMBER\n"
+"LngText.text"
+msgid "cucumber"
+msgstr ""
+
+#. 🥜 (U+1F95C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEANUTS\n"
+"LngText.text"
+msgid "peanuts"
+msgstr ""
+
+#. 🥐 (U+1F950), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CROISSANT\n"
+"LngText.text"
+msgid "croissant"
+msgstr ""
+
+#. 🥖 (U+1F956), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BAGUETTE_BREAD\n"
+"LngText.text"
+msgid "bread2"
+msgstr ""
+
+#. 🥞 (U+1F95E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PANCAKES\n"
+"LngText.text"
+msgid "pancakes"
+msgstr ""
+
+#. 🥓 (U+1F953), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BACON\n"
+"LngText.text"
+msgid "bacon"
+msgstr ""
+
+#. 🥙 (U+1F959), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STUFFED_FLATBREAD\n"
+"LngText.text"
+msgid "flatbread"
+msgstr ""
+
+#. 🥚 (U+1F95A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EGG\n"
+"LngText.text"
+msgid "egg"
+msgstr ""
+
+#. 🥘 (U+1F958), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHALLOW_PAN_OF_FOOD\n"
+"LngText.text"
+msgid "food"
+msgstr ""
+
+#. 🥗 (U+1F957), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GREEN_SALAD\n"
+"LngText.text"
+msgid "salad"
+msgstr ""
+
+#. 🥛 (U+1F95B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GLASS_OF_MILK\n"
+"LngText.text"
+msgid "milk"
+msgstr ""
+
+#. 🥂 (U+1F942), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLINKING_GLASSES\n"
+"LngText.text"
+msgid "party3"
+msgstr ""
+
+#. 🥃 (U+1F943), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TUMBLER_GLASS\n"
+"LngText.text"
+msgid "glass3"
+msgstr ""
+
+#. 🥄 (U+1F944), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPOON\n"
+"LngText.text"
+msgid "spoon"
+msgstr ""
+
+#. 🛴 (U+1F6F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCOOTER\n"
+"LngText.text"
+msgid "scooter"
+msgstr ""
+
+#. 🛵 (U+1F6F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTOR_SCOOTER\n"
+"LngText.text"
+msgid "scooter2"
+msgstr ""
+
+#. 🛑 (U+1F6D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OCTAGONAL_SIGN\n"
+"LngText.text"
+msgid "stop"
+msgstr ""
+
+#. 🛶 (U+1F6F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANOE\n"
+"LngText.text"
+msgid "canoe"
+msgstr ""
+
+#. 🥇 (U+1F947), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"1ST_PLACE_MEDAL\n"
+"LngText.text"
+msgid "gold"
+msgstr ""
+
+#. 🥈 (U+1F948), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"2ND_PLACE_MEDAL\n"
+"LngText.text"
+msgid "silver"
+msgstr ""
+
+#. 🥉 (U+1F949), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"3RD_PLACE_MEDAL\n"
+"LngText.text"
+msgid "bronze"
+msgstr ""
+
+#. 🥊 (U+1F94A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOXING_GLOVE\n"
+"LngText.text"
+msgid "boxing"
+msgstr ""
+
+#. 🥋 (U+1F94B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MARTIAL_ARTS_UNIFORM\n"
+"LngText.text"
+msgid "judo"
+msgstr ""
+
+#. 🥅 (U+1F945), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GOAL_NET\n"
+"LngText.text"
+msgid "soccer2"
+msgstr ""
+
+#. 🥁 (U+1F941), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DRUM_WITH_DRUMSTICKS\n"
+"LngText.text"
+msgid "drum2"
+msgstr ""
+
+#. 🛒 (U+1F6D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOPPING_TROLLEY\n"
+"LngText.text"
+msgid "cart"
+msgstr ""
+
+#. 🤩 (U+1F929), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GRINNING_FACE_WITH_STAR_EYES\n"
+"LngText.text"
+msgid "excited"
+msgstr ""
+
+#. 🤨 (U+1F928), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_ONE_EYEBROW_RAISED\n"
+"LngText.text"
+msgid "eyebrow"
+msgstr ""
+
+#. 🤯 (U+1F92F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOCKED_FACE_WITH_EXPLODING_HEAD\n"
+"LngText.text"
+msgid "shocked"
+msgstr ""
+
+#. 🤪 (U+1F92A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GRINNING_FACE_WITH_ONE_LARGE_AND_ONE_SMALL_EYE\n"
+"LngText.text"
+msgid "zany"
+msgstr ""
+
+#. 🤬 (U+1F92C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SERIOUS_FACE_WITH_SYMBOLS_COVERING_MOUTH\n"
+"LngText.text"
+msgid "cursing"
+msgstr ""
+
+#. 🤮 (U+1F92E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_OPEN_MOUTH_VOMITING\n"
+"LngText.text"
+msgid "vomit"
+msgstr ""
+
+#. 🤫 (U+1F92B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_FINGER_COVERING_CLOSED_LIPS\n"
+"LngText.text"
+msgid "hush"
+msgstr ""
+
+#. 🤭 (U+1F92D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SMILING_FACE_WITH_SMILING_EYES_AND_HAND_COVERING_MOUTH\n"
+"LngText.text"
+msgid "smiling4"
+msgstr ""
+
+#. 🧐 (U+1F9D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_MONOCLE\n"
+"LngText.text"
+msgid "monocle"
+msgstr ""
+
+#. 🧒 (U+1F9D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHILD\n"
+"LngText.text"
+msgid "child"
+msgstr ""
+
+#. 🧑 (U+1F9D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ADULT\n"
+"LngText.text"
+msgid "adult"
+msgstr ""
+
+#. 🧓 (U+1F9D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLDER_ADULT\n"
+"LngText.text"
+msgid "old"
+msgstr ""
+
+#. 🧕 (U+1F9D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_WITH_HEADSCARF\n"
+"LngText.text"
+msgid "headscarf"
+msgstr ""
+
+#. 🧔 (U+1F9D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEARDED_PERSON\n"
+"LngText.text"
+msgid "beard"
+msgstr ""
+
+#. 🤱 (U+1F931), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BREAST-FEEDING\n"
+"LngText.text"
+msgid "baby3"
+msgstr ""
+
+#. 🧙 (U+1F9D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAGE\n"
+"LngText.text"
+msgid "mage"
+msgstr ""
+
+#. 🧚 (U+1F9DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FAIRY\n"
+"LngText.text"
+msgid "fairy"
+msgstr ""
+
+#. 🧛 (U+1F9DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"VAMPIRE\n"
+"LngText.text"
+msgid "vampire"
+msgstr ""
+
+#. 🧜 (U+1F9DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MERPERSON\n"
+"LngText.text"
+msgid "merperson"
+msgstr ""
+
+#. 🧝 (U+1F9DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ELF\n"
+"LngText.text"
+msgid "elf"
+msgstr ""
+
+#. 🧞 (U+1F9DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GENIE\n"
+"LngText.text"
+msgid "genie"
+msgstr ""
+
+#. 🧟 (U+1F9DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZOMBIE\n"
+"LngText.text"
+msgid "zombie"
+msgstr ""
+
+#. 🧖 (U+1F9D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_IN_STEAMY_ROOM\n"
+"LngText.text"
+msgid "sauna"
+msgstr ""
+
+#. 🧗 (U+1F9D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_CLIMBING\n"
+"LngText.text"
+msgid "climber"
+msgstr ""
+
+#. 🧘 (U+1F9D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_IN_LOTUS_POSITION\n"
+"LngText.text"
+msgid "yoga"
+msgstr ""
+
+#. 🤟 (U+1F91F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"I_LOVE_YOU_HAND_SIGN\n"
+"LngText.text"
+msgid "love2"
+msgstr ""
+
+#. 🤲 (U+1F932), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PALMS_UP_TOGETHER\n"
+"LngText.text"
+msgid "palm2"
+msgstr ""
+
+#. 🧠 (U+1F9E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BRAIN\n"
+"LngText.text"
+msgid "brain"
+msgstr ""
+
+#. 🧡 (U+1F9E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ORANGE_HEART\n"
+"LngText.text"
+msgid "orange heart"
+msgstr ""
+
+#. 🧣 (U+1F9E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCARF\n"
+"LngText.text"
+msgid "scarf"
+msgstr ""
+
+#. 🧤 (U+1F9E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GLOVES\n"
+"LngText.text"
+msgid "gloves"
+msgstr ""
+
+#. 🧥 (U+1F9E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COAT\n"
+"LngText.text"
+msgid "coat"
+msgstr ""
+
+#. 🧦 (U+1F9E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SOCKS\n"
+"LngText.text"
+msgid "socks"
+msgstr ""
+
+#. 🧢 (U+1F9E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BILLED_CAP\n"
+"LngText.text"
+msgid "cap"
+msgstr ""
+
+#. 🦓 (U+1F993), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZEBRA\n"
+"LngText.text"
+msgid "zebra"
+msgstr ""
+
+#. 🦒 (U+1F992), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GIRAFFE\n"
+"LngText.text"
+msgid "giraffe"
+msgstr ""
+
+#. 🦔 (U+1F994), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEDGEHOG\n"
+"LngText.text"
+msgid "hedgehog"
+msgstr ""
+
+#. 🦕 (U+1F995), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SAUROPOD\n"
+"LngText.text"
+msgid "dinosaur"
+msgstr ""
+
+#. 🦖 (U+1F996), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"T-REX\n"
+"LngText.text"
+msgid "dinosaur2"
+msgstr ""
+
+#. 🦗 (U+1F997), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRICKET\n"
+"LngText.text"
+msgid "cricket2"
+msgstr ""
+
+#. 🥥 (U+1F965), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COCONUT\n"
+"LngText.text"
+msgid "coconut"
+msgstr ""
+
+#. 🥦 (U+1F966), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BROCCOLI\n"
+"LngText.text"
+msgid "broccoli"
+msgstr ""
+
+#. 🥨 (U+1F968), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRETZEL\n"
+"LngText.text"
+msgid "pretzel"
+msgstr ""
+
+#. 🥩 (U+1F969), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUT_OF_MEAT\n"
+"LngText.text"
+msgid "steak"
+msgstr ""
+
+#. 🥪 (U+1F96A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SANDWICH\n"
+"LngText.text"
+msgid "sandwich"
+msgstr ""
+
+#. 🥣 (U+1F963), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOWL_WITH_SPOON\n"
+"LngText.text"
+msgid "bowl"
+msgstr ""
+
+#. 🥫 (U+1F96B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANNED_FOOD\n"
+"LngText.text"
+msgid "can"
+msgstr ""
+
+#. 🥟 (U+1F95F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DUMPLING\n"
+"LngText.text"
+msgid "dumpling"
+msgstr ""
+
+#. 🥠 (U+1F960), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FORTUNE_COOKIE\n"
+"LngText.text"
+msgid "cookie2"
+msgstr ""
+
+#. 🥡 (U+1F961), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TAKEOUT_BOX\n"
+"LngText.text"
+msgid "takeout"
+msgstr ""
+
+#. 🥧 (U+1F967), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PIE\n"
+"LngText.text"
+msgid "pie"
+msgstr ""
+
+#. 🥤 (U+1F964), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUP_WITH_STRAW\n"
+"LngText.text"
+msgid "drink"
+msgstr ""
+
+#. 🥢 (U+1F962), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHOPSTICKS\n"
+"LngText.text"
+msgid "chopsticks"
+msgstr ""
+
+#. 🛸 (U+1F6F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FLYING_SAUCER\n"
+"LngText.text"
+msgid "ufo"
+msgstr ""
+
+#. 🛷 (U+1F6F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLED\n"
+"LngText.text"
+msgid "sled"
+msgstr ""
+
+#. 🥌 (U+1F94C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CURLING_STONE\n"
+"LngText.text"
+msgid "curling"
+msgstr ""
+
+#. ₿ (U+20BF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BITCOIN_SIGN\n"
+"LngText.text"
+msgid "bitcoin"
+msgstr ""
+
#. ½ (U+000BD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
msgctxt ""
diff --git a/source/bg/helpcontent2/source/auxiliary.po b/source/bg/helpcontent2/source/auxiliary.po
index 3d8c595034b..9d262f674bc 100644
--- a/source/bg/helpcontent2/source/auxiliary.po
+++ b/source/bg/helpcontent2/source/auxiliary.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-10-04 11:48+0200\n"
-"PO-Revision-Date: 2017-11-06 00:05+0000\n"
+"PO-Revision-Date: 2017-12-17 10:55+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1509926720.000000\n"
+"X-POOTLE-MTIME: 1513508123.000000\n"
#: sbasic.tree
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"070202\n"
"node.text"
msgid "Run-Time Functions, Statements, and Operators"
-msgstr "Динамични функции, оператори и операции"
+msgstr "Библиотечни функции, оператори и операции"
#: sbasic.tree
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/sbasic/guide.po b/source/bg/helpcontent2/source/text/sbasic/guide.po
index bf4f3672dec..8acbc8c877e 100644
--- a/source/bg/helpcontent2/source/text/sbasic/guide.po
+++ b/source/bg/helpcontent2/source/text/sbasic/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-10-04 11:48+0200\n"
-"PO-Revision-Date: 2017-10-28 18:39+0000\n"
+"PO-Revision-Date: 2017-12-17 11:47+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1509215942.000000\n"
+"X-POOTLE-MTIME: 1513511263.000000\n"
#: access2base.xhp
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"par_id3146797\n"
"help.text"
msgid "Use the tools on the <emph>Toolbox </emph>of the BASIC dialog editor to add controls to your dialog."
-msgstr "Добавете елементи за управление към диалоговия прозорец чрез лентата <emph>Кутия с инструменти</emph> на редактора за диалогови прозорци на BASIC."
+msgstr "За да добавите контроли в диалоговия прозорец, използвайте лентата <emph>Кутия с инструменти</emph> на редактора за диалогови прозорци на BASIC."
#: insert_control.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/sbasic/shared.po b/source/bg/helpcontent2/source/text/sbasic/shared.po
index c965ed32f52..56ed9aa2452 100644
--- a/source/bg/helpcontent2/source/text/sbasic/shared.po
+++ b/source/bg/helpcontent2/source/text/sbasic/shared.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-12-06 15:59+0100\n"
-"PO-Revision-Date: 2017-12-15 21:08+0000\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
+"PO-Revision-Date: 2017-12-19 11:48+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1513372090.000000\n"
+"X-POOTLE-MTIME: 1513684115.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -6486,7 +6486,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Run-Time Functions"
-msgstr "Динамични функции"
+msgstr "Библиотечни функции"
#: 03000000.xhp
msgctxt ""
@@ -6494,7 +6494,7 @@ msgctxt ""
"hd_id3152895\n"
"help.text"
msgid "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/03000000.xhp\" name=\"Run-Time Functions\">Run-Time Functions</link></variable>"
-msgstr "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/03000000.xhp\" name=\"Динамични функции\">Динамични функции</link></variable>"
+msgstr "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/03000000.xhp\" name=\"Run-Time Functions\">Библиотечни функции</link></variable>"
#: 03000000.xhp
msgctxt ""
@@ -6502,7 +6502,7 @@ msgctxt ""
"par_id3148983\n"
"help.text"
msgid "This section describes the Runtime Functions of <item type=\"productname\">%PRODUCTNAME</item> Basic."
-msgstr "В този раздел са описани динамичните функции (runtime functions) на <item type=\"productname\">%PRODUCTNAME</item> Basic."
+msgstr "В този раздел са описани библиотечните функции (runtime functions) на <item type=\"productname\">%PRODUCTNAME</item> Basic."
#: 03010000.xhp
msgctxt ""
@@ -15229,7 +15229,7 @@ msgctxt ""
"03040000.xhp\n"
"par_id111512312705893\n"
"help.text"
-msgid "The following constants are avalable when VBA compatibility mode is enabled"
+msgid "The following constants are available when VBA compatibility mode is enabled"
msgstr "Следните константи са достъпни, когато е включен режимът на съвместимост с VBA."
#: 03040000.xhp
@@ -15253,20 +15253,12 @@ msgctxt ""
"03040000.xhp\n"
"par_id991512312965968\n"
"help.text"
-msgid "Desccription"
+msgid "Description"
msgstr "Описание"
#: 03040000.xhp
msgctxt ""
"03040000.xhp\n"
-"par_id241512313723033\n"
-"help.text"
-msgid "\\x0D (13)"
-msgstr "\\x0D (13)"
-
-#: 03040000.xhp
-msgctxt ""
-"03040000.xhp\n"
"par_id611512313731233\n"
"help.text"
msgid "CR - Carriage return"
@@ -16109,7 +16101,7 @@ msgctxt ""
"03060300.xhp\n"
"tit\n"
"help.text"
-msgid "Imp-Operator [Runtime]"
+msgid "Imp Operator [Runtime]"
msgstr "Операция Imp [библиотечна]"
#: 03060300.xhp
@@ -16125,8 +16117,8 @@ msgctxt ""
"03060300.xhp\n"
"hd_id3156024\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Imp-Operator [Runtime]\">Imp Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Imp-Operator [Runtime]\">Операция Imp [библиотечна]</link>"
+msgid "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Imp Operator [Runtime]\">Imp Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Imp Operator [Runtime]\">Операция Imp [библиотечна]</link>"
#: 03060300.xhp
msgctxt ""
@@ -16245,7 +16237,7 @@ msgctxt ""
"03060400.xhp\n"
"tit\n"
"help.text"
-msgid "Not-Operator [Runtime]"
+msgid "Not Operator [Runtime]"
msgstr "Операция Not [библиотечна]"
#: 03060400.xhp
@@ -16261,8 +16253,8 @@ msgctxt ""
"03060400.xhp\n"
"hd_id3156024\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Not-Operator [Runtime]\">Not-Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Not-Operator [Runtime]\">Операция Not [библиотечна]</link>"
+msgid "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Not Operator [Runtime]\">Not Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Not Operator [Runtime]\">Операция Not [библиотечна]</link>"
#: 03060400.xhp
msgctxt ""
@@ -16373,7 +16365,7 @@ msgctxt ""
"03060500.xhp\n"
"tit\n"
"help.text"
-msgid "Or-Operator [Runtime]"
+msgid "Or Operator [Runtime]"
msgstr "Операция Or [библиотечна]"
#: 03060500.xhp
@@ -16389,8 +16381,8 @@ msgctxt ""
"03060500.xhp\n"
"hd_id3150986\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060500.xhp\" name=\"Or-Operator [Runtime]\">Or Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03060500.xhp\" name=\"Or-Operator [Runtime]\">Операция Or [библиотечна]</link>"
+msgid "<link href=\"text/sbasic/shared/03060500.xhp\" name=\"Or Operator [Runtime]\">Or Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03060500.xhp\" name=\"Or Operator [Runtime]\">Операция Or [библиотечна]</link>"
#: 03060500.xhp
msgctxt ""
@@ -17053,7 +17045,7 @@ msgctxt ""
"03070600.xhp\n"
"tit\n"
"help.text"
-msgid "Mod-Operator [Runtime]"
+msgid "Mod Operator [Runtime]"
msgstr "Операция Mod [библиотечна]"
#: 03070600.xhp
@@ -17069,8 +17061,8 @@ msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod-Operator [Runtime]\">Mod Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod-Operator [Runtime]\">Операция Mod [библиотечна]</link>"
+msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator [Runtime]\">Mod Operator [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator [Runtime]\">Операция Mod [библиотечна]</link>"
#: 03070600.xhp
msgctxt ""
@@ -20477,7 +20469,7 @@ msgctxt ""
"03090203.xhp\n"
"tit\n"
"help.text"
-msgid "While...Wend Statement[Runtime]"
+msgid "While...Wend Statement [Runtime]"
msgstr "Оператор While…Wend [библиотечен]"
#: 03090203.xhp
@@ -20493,8 +20485,8 @@ msgctxt ""
"03090203.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement[Runtime]\">While...Wend Statement[Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement[Runtime]\">Оператор While…Wend [библиотечен]</link>"
+msgid "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement [Runtime]\">While...Wend Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement [Runtime]\">Оператор While…Wend [библиотечен]</link>"
#: 03090203.xhp
msgctxt ""
@@ -20998,7 +20990,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "On...GoSub Statement; On...GoTo Statement [Runtime]"
-msgstr "Оператори On…GoSub и On…GoTo [динамични]"
+msgstr "Оператори On…GoSub и On…GoTo [библиотечни]"
#: 03090303.xhp
msgctxt ""
@@ -21014,7 +21006,7 @@ msgctxt ""
"hd_id3153897\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090303.xhp\" name=\"On...GoSub Statement; On...GoTo Statement [Runtime]\">On...GoSub Statement; On...GoTo Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090303.xhp\" name=\"On...GoSub Statement; On...GoTo Statement [Runtime]\">Оператори On…GoSub и On…GoTo [динамични]</link>"
+msgstr "<link href=\"text/sbasic/shared/03090303.xhp\" name=\"On...GoSub Statement; On...GoTo Statement [Runtime]\">Оператори On…GoSub и On…GoTo [библиотечни]</link>"
#: 03090303.xhp
msgctxt ""
@@ -26085,8 +26077,8 @@ msgctxt ""
"03103350.xhp\n"
"hd_id3145090\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement [Runtime]\">Option VBASupport Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement [Runtime]\">Оператор Option VBASupport [библиотечен]</link>"
+msgid "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option VBASupport Statement [Runtime]\">Option VBASupport Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option VBASupport Statement [Runtime]\">Оператор Option VBASupport [библиотечен]</link>"
#: 03103350.xhp
msgctxt ""
@@ -26382,7 +26374,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "TypeName Function; VarType Function[Runtime]"
-msgstr "Функции TypeName и VarType [динамични]"
+msgstr "Функции TypeName и VarType [библиотечни]"
#: 03103600.xhp
msgctxt ""
@@ -26397,8 +26389,8 @@ msgctxt ""
"03103600.xhp\n"
"hd_id3143267\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function[Runtime]\">TypeName Function; VarType Function[Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function[Runtime]\">Функции TypeName и VarType [динамични]</link>"
+msgid "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function [Runtime]\">TypeName Function; VarType Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function [Runtime]\">Функции TypeName и VarType [библиотечни]</link>"
#: 03103600.xhp
msgctxt ""
@@ -26621,8 +26613,8 @@ msgctxt ""
"03103700.xhp\n"
"hd_id3154422\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement[Runtime]\">Set Statement[Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement[Runtime]\">Оператор Set [библиотечен]</link>"
+msgid "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement [Runtime]\">Set Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement [Runtime]\">Оператор Set [библиотечен]</link>"
#: 03103700.xhp
msgctxt ""
@@ -26877,8 +26869,8 @@ msgctxt ""
"03104000.xhp\n"
"hd_id3153527\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing function [Runtime]\">IsMissing function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing function [Runtime]\">Функция IsMissing [библиотечна]</link>"
+msgid "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing Function [Runtime]\">IsMissing Function [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing Function [Runtime]\">Функция IsMissing [библиотечна]</link>"
#: 03104000.xhp
msgctxt ""
@@ -27622,7 +27614,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Comparison Operators [Runtime]"
-msgstr "Операции за сравнение [динамични]"
+msgstr "Операции за сравнение [библиотечни]"
#: 03110100.xhp
msgctxt ""
@@ -27638,7 +27630,7 @@ msgctxt ""
"hd_id3150682\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03110100.xhp\" name=\"Comparison Operators [Runtime]\">Comparison Operators [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03110100.xhp\" name=\"Comparison Operators [Runtime]\">Операции за сравнение [динамични]</link>"
+msgstr "<link href=\"text/sbasic/shared/03110100.xhp\" name=\"Comparison Operators [Runtime]\">Операции за сравнение [библиотечни]</link>"
#: 03110100.xhp
msgctxt ""
@@ -29144,6 +29136,14 @@ msgctxt ""
msgid "' displays for example 6,328.20 in English locale, 6.328,20 in German locale."
msgstr "' В английски локал показва 6,328.20, в немски – 6.328,20."
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id381513082126889\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020301.xhp\" name=\"number format code\">Number format codes in Calc</link>"
+msgstr "<link href=\"text/shared/01/05020301.xhp\" name=\"number format code\">Кодове на числови формати в Calc</link>"
+
#: 03120302.xhp
msgctxt ""
"03120302.xhp\n"
@@ -29598,7 +29598,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Mid Function, Mid Statement [Runtime]"
-msgstr "Функция Mid и оператор Mid [динамични]"
+msgstr "Функция Mid и оператор Mid [библиотечни]"
#: 03120306.xhp
msgctxt ""
@@ -29614,7 +29614,7 @@ msgctxt ""
"hd_id3143268\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120306.xhp\" name=\"Mid Function, Mid Statement [Runtime]\">Mid Function, Mid Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120306.xhp\" name=\"Mid Function, Mid Statement [Runtime]\">Функция Mid и оператор Mid [динамични]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120306.xhp\" name=\"Mid Function, Mid Statement [Runtime]\">Функция Mid и оператор Mid [библиотечни]</link>"
#: 03120306.xhp
msgctxt ""
@@ -32853,8 +32853,8 @@ msgctxt ""
"03132200.xhp\n"
"hd_id3155342\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent [Runtime]\">ThisComponent [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent [Runtime]\">Функция ThisComponent [библиотечна]</link>"
+msgid "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent Statement [Runtime]\">ThisComponent Statement [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent Statement [Runtime]\">Оператор ThisComponent [библиотечен]</link>"
#: 03132200.xhp
msgctxt ""
@@ -34709,7 +34709,7 @@ msgctxt ""
"03150001.xhp\n"
"par_id801512153944376\n"
"help.text"
-msgid "Tueday"
+msgid "Tuesday"
msgstr "Вторник"
#: 03150001.xhp
@@ -35590,7 +35590,7 @@ msgctxt ""
"par_id3147226\n"
"help.text"
msgid "This help section explains the most common runtime functions of %PRODUCTNAME Basic. For more in-depth information please refer to the <link href=\"http://wiki.documentfoundation.org/Documentation/BASIC_Guide\">OpenOffice.org BASIC Programming Guide</link> on the Wiki."
-msgstr "Този раздел от помощта обяснява най-често използваните динамични (runtime) функции на %PRODUCTNAME Basic. За по-подробна информация вижте ръководството <link href=\"http://wiki.documentfoundation.org/Documentation/BASIC_Guide\">OpenOffice.org BASIC Programming Guide</link> в уикисайта."
+msgstr "Този раздел от помощта обяснява най-често използваните библиотечни (runtime) функции на %PRODUCTNAME Basic. За по-подробна информация вижте ръководството <link href=\"http://wiki.documentfoundation.org/Documentation/BASIC_Guide\">OpenOffice.org BASIC Programming Guide</link> в уикисайта."
#: main0601.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/scalc/01.po b/source/bg/helpcontent2/source/text/scalc/01.po
index 7ee6e3ebf20..b0453f8f482 100644
--- a/source/bg/helpcontent2/source/text/scalc/01.po
+++ b/source/bg/helpcontent2/source/text/scalc/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: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
"PO-Revision-Date: 2017-12-15 12:20+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LibreOffice на български\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1513340413.000000\n"
@@ -7124,6 +7124,14 @@ msgstr "Ако предположим, че съдържанията на кле
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
+"par_id461513468030965\n"
+"help.text"
+msgid "Because of the iterative method used, it is possible for IRR to fail and return <link href=\"text/scalc/05/02140000.xhp\" name=\"Error 523\">Error 523</link>, with \"Error: Calculation does not converge\" in the status bar. In that case, try another value for Guess."
+msgstr ""
+
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
"bm_id3151012\n"
"help.text"
msgid "<bookmark_value>calculating; interests for unchanged amortization installments</bookmark_value> <bookmark_value>interests for unchanged amortization installments</bookmark_value> <bookmark_value>ISPMT function</bookmark_value>"
@@ -52198,8 +52206,8 @@ msgctxt ""
"12040201.xhp\n"
"hd_id3148492\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">More</link>"
-msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"Повече\">Повече</link>"
+msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"Options\">Options</link>"
+msgstr ""
#: 12040201.xhp
msgctxt ""
@@ -56302,8 +56310,8 @@ msgctxt ""
"data_form.xhp\n"
"par_id221512503284514\n"
"help.text"
-msgid "To be effective, the Calc data table should have a header row, where each cell contents is the label of the column. The header cells contents becomes the label of each data field in the form."
-msgstr "За ефективна работа таблицата с данни в Calc трябва да има заглавен ред, чиито клетки съдържат заглавията на колоните. Съдържанието на тези клетки се използва за надписване на полетата за данни във формуляра."
+msgid "To be effective, the Calc data table should have a header row, where each cell contents is the label of the column. The header cells contents become the label of each data field in the form."
+msgstr ""
#: data_form.xhp
msgctxt ""
@@ -56326,8 +56334,8 @@ msgctxt ""
"data_form.xhp\n"
"par_id11512503369875\n"
"help.text"
-msgid "Choose <item type=\"menutiem\">Data - Form...</item>."
-msgstr "Изберете <item type=\"menutiem\">Данни - Формуляр...</item>."
+msgid "Choose <item type=\"menuitem\">Data - Form...</item>."
+msgstr ""
#: data_form.xhp
msgctxt ""
@@ -56430,8 +56438,8 @@ msgctxt ""
"data_form.xhp\n"
"par_id181512558987528\n"
"help.text"
-msgid "To reopen the form dialog, place the cursor on the header row and open the form. The displayed record in the form dialog is the fisrt data record. Move to the last record before entering new data otherwise the current record will be edited."
-msgstr "За да се покаже отново диалоговият прозорец, поставете курсора в заглавния ред и отворете формуляра. В диалога ще се покаже първият запис с данни. Преди да въвеждате нови данни, преминете към последния запис, иначе ще бъде редактиран първият."
+msgid "To reopen the form dialog, place the cursor on the header row and open the form. The displayed record in the form dialog is the first data record. Move to the last record before entering new data otherwise the current record will be edited."
+msgstr ""
#: data_form.xhp
msgctxt ""
@@ -65542,48 +65550,48 @@ msgctxt ""
"statistics.xhp\n"
"bm_id05001\n"
"help.text"
-msgid "<bookmark_value>Analysis toolpack;t-test</bookmark_value><bookmark_value>t-test;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;t-test</bookmark_value>"
-msgstr "<bookmark_value>анализ, инструменти за;t-тест</bookmark_value><bookmark_value>t-тест;инструменти за анализ</bookmark_value><bookmark_value>статистики на данни;t-тест</bookmark_value>"
+msgid "<bookmark_value>Analysis toolpack;t-test</bookmark_value><bookmark_value>Analysis toolpack;paired t-test</bookmark_value><bookmark_value>t-test;Analysis toolpack</bookmark_value><bookmark_value>paired t-test;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;paired t-test</bookmark_value>"
+msgstr ""
#: statistics.xhp
msgctxt ""
"statistics.xhp\n"
"hd_id1000150\n"
"help.text"
-msgid "t-test"
-msgstr "t-тест"
+msgid "Paired t-test"
+msgstr ""
#: statistics.xhp
msgctxt ""
"statistics.xhp\n"
"par_id1002820\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/ttestdialog/TTestDialog\">Calculates the t-Test of two data samples.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/ttestdialog/TTestDialog\">Изчислява t-тест на два набора от данни.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/ttestdialog/TTestDialog\">Calculates the paired t-Test of two data samples.</ahelp>"
+msgstr ""
#: statistics.xhp
msgctxt ""
"statistics.xhp\n"
"par_id1002830\n"
"help.text"
-msgid "<variable id=\"sam01\">Choose <emph>Data - Statistics - t-test</emph></variable>"
-msgstr "<variable id=\"sam01\">Изберете <emph>Данни - Статистика - t-тест</emph></variable>"
+msgid "<variable id=\"sam01\">Choose <emph>Data - Statistics - Paired t-test</emph></variable>"
+msgstr ""
#: statistics.xhp
msgctxt ""
"statistics.xhp\n"
"par_id1002840\n"
"help.text"
-msgid "A <emph>t-test</emph> is any statistical hypothesis test that follows a Student's t distribution."
-msgstr "<emph>t-тест</emph> е всеки тест на статистическа хипотеза, в който тестовата статистика следва t-разпределението на Стюдънт."
+msgid "A <emph>paired t-test</emph> is any statistical hypothesis test that follows a Student's t distribution."
+msgstr ""
#: statistics.xhp
msgctxt ""
"statistics.xhp\n"
"par_id1002850\n"
"help.text"
-msgid "For more information on t-tests, refer to the <link href=\"http://en.wikipedia.org/wiki/T-test\">corresponding Wikipedia article</link>."
-msgstr "За повече информация относно t-тестовете вижте <link href=\"http://en.wikipedia.org/wiki/T-test\">съответната статия в Уикипедия</link> (на английски)."
+msgid "For more information on paired t-tests, refer to the <link href=\"http://en.wikipedia.org/wiki/T-test\">corresponding Wikipedia article</link>."
+msgstr ""
#: statistics.xhp
msgctxt ""
@@ -65622,24 +65630,24 @@ msgctxt ""
"statistics.xhp\n"
"hd_id1000170\n"
"help.text"
-msgid "Results for t-Test:"
-msgstr "Резултати за t-тест:"
+msgid "Results for paired t-test:"
+msgstr ""
#: statistics.xhp
msgctxt ""
"statistics.xhp\n"
"par_id1002890\n"
"help.text"
-msgid "The following table shows the <emph>t-Test</emph> for the data series above:"
-msgstr "Следната таблица показва резултата от <emph>t-тест</emph> за горните данни:"
+msgid "The following table shows the <emph>paired t-test</emph> for the data series above:"
+msgstr ""
#: statistics.xhp
msgctxt ""
"statistics.xhp\n"
"par_id1002900\n"
"help.text"
-msgid "t-test"
-msgstr "t-тест"
+msgid "paired t-test"
+msgstr ""
#: statistics.xhp
msgctxt ""
@@ -66510,8 +66518,8 @@ msgctxt ""
"statistics_regression.xhp\n"
"par_id14337286612130\n"
"help.text"
-msgid "<link href=\"text/scalc/01/statistics.xhp#datasampling\">Sampling</link>, <link href=\"text/scalc/01/statistics.xhp#descriptivestatistics\">Descriptive Statistics</link>, <link href=\"text/scalc/01/statistics.xhp#anova\">Analysis of Variance (ANOVA)</link>, <link href=\"text/scalc/01/statistics.xhp#correlation\">Correlation</link>, <link href=\"text/scalc/01/statistics.xhp#covariance\">Covariance</link>, <link href=\"text/scalc/01/statistics.xhp#exponentialsmoothing\">Exponential Smoothing</link>, <link href=\"text/scalc/01/statistics.xhp#movingaverage\">Moving Average</link>, <link href=\"text/scalc/01/statistics.xhp#ttest\">t-test</link>, <link href=\"text/scalc/01/statistics.xhp#ftest\">F-test</link>, <link href=\"text/scalc/01/statistics.xhp#ztest\">Z-test</link>, <link href=\"text/scalc/01/statistics.xhp#chisqtest\">Chi-square test</link>."
-msgstr "<link href=\"text/scalc/01/statistics.xhp#datasampling\">Измервания</link>, <link href=\"text/scalc/01/statistics.xhp#descriptivestatistics\">Дескриптивна статистика</link>, <link href=\"text/scalc/01/statistics.xhp#anova\">Дисперсионен анализ (ANOVA)</link>, <link href=\"text/scalc/01/statistics.xhp#correlation\">Корелация</link>, <link href=\"text/scalc/01/statistics.xhp#covariance\">Ковариация</link>, <link href=\"text/scalc/01/statistics.xhp#exponentialsmoothing\">Експоненциално изглаждане</link>, <link href=\"text/scalc/01/statistics.xhp#movingaverage\">Пълзяща средна стойност</link>, <link href=\"text/scalc/01/statistics.xhp#ttest\">t-тест</link>, <link href=\"text/scalc/01/statistics.xhp#ftest\">F-тест</link>, <link href=\"text/scalc/01/statistics.xhp#ztest\">Z-тест</link>, <link href=\"text/scalc/01/statistics.xhp#chisqtest\">χ²-тест</link>."
+msgid "<link href=\"text/scalc/01/statistics.xhp#datasampling\">Sampling</link>, <link href=\"text/scalc/01/statistics.xhp#descriptivestatistics\">Descriptive Statistics</link>, <link href=\"text/scalc/01/statistics.xhp#anova\">Analysis of Variance (ANOVA)</link>, <link href=\"text/scalc/01/statistics.xhp#correlation\">Correlation</link>, <link href=\"text/scalc/01/statistics.xhp#covariance\">Covariance</link>, <link href=\"text/scalc/01/statistics.xhp#exponentialsmoothing\">Exponential Smoothing</link>, <link href=\"text/scalc/01/statistics.xhp#movingaverage\">Moving Average</link>, <link href=\"text/scalc/01/statistics.xhp#ttest\">Paired t-test</link>, <link href=\"text/scalc/01/statistics.xhp#ftest\">F-test</link>, <link href=\"text/scalc/01/statistics.xhp#ztest\">Z-test</link>, <link href=\"text/scalc/01/statistics.xhp#chisqtest\">Chi-square test</link>."
+msgstr ""
#: text2columns.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/sdraw.po b/source/bg/helpcontent2/source/text/sdraw.po
index cb18dd65827..97331d913be 100644
--- a/source/bg/helpcontent2/source/text/sdraw.po
+++ b/source/bg/helpcontent2/source/text/sdraw.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: 2017-10-04 11:48+0200\n"
-"PO-Revision-Date: 2017-10-26 20:37+0000\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
+"PO-Revision-Date: 2017-12-19 14:03+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1509050221.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1513692193.000000\n"
#: main0000.xhp
msgctxt ""
@@ -104,62 +104,6 @@ msgctxt ""
msgid "This menu contains general commands for working with Draw documents, such as open, close and print. To close $[officename] Draw, click <emph>Exit</emph>."
msgstr "Менюто съдържа основните команди за работа с документи на Draw, като отваряне, затваряне и печат. За да затворите $[officename] Draw, изберете <emph>Изход</emph>."
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3156441\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
-msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Отваряне\">Отваряне</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3153876\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
-msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Записване като</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3150718\n"
-"help.text"
-msgid "<link href=\"text/simpress/01/01170000.xhp\" name=\"Export\">Export</link>"
-msgstr "<link href=\"text/simpress/01/01170000.xhp\" name=\"Експортиране\">Експортиране</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3154754\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
-msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Версии\">Версии</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3150044\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
-msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"Свойства\">Свойства</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3149127\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
-msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"Печат\">Печат</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3145790\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\">Printer Settings</link>"
-msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"Настройки на принтера\">Настройки на принтера</link>"
-
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
diff --git a/source/bg/helpcontent2/source/text/shared.po b/source/bg/helpcontent2/source/text/shared.po
index 5aafbfca58c..668f4ae1a32 100644
--- a/source/bg/helpcontent2/source/text/shared.po
+++ b/source/bg/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: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
"PO-Revision-Date: 2017-11-27 15:24+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1511796291.000000\n"
#: 3dsettings_toolbar.xhp
@@ -1936,70 +1936,6 @@ msgctxt ""
msgid "This section provides a general glossary of technical terms used in $[officename], along with a list of Internet terms."
msgstr "Този раздел съдържа общ речник на техническите термини, използвани в $[officename], както и списък на термини, свързани с Интернет."
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"tit\n"
-"help.text"
-msgid "Programming $[officename]"
-msgstr "Програмиране на $[officename]"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"bm_id3154232\n"
-"help.text"
-msgid "<bookmark_value>programming;$[officename]</bookmark_value><bookmark_value>Basic;programming</bookmark_value>"
-msgstr "<bookmark_value>програмиране;$[officename]</bookmark_value><bookmark_value>Basic;програмиране</bookmark_value>"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"hd_id3154232\n"
-"help.text"
-msgid "<variable id=\"programming\"><link href=\"text/shared/main0600.xhp\" name=\"Programming $[officename]\">Programming $[officename]</link></variable>"
-msgstr "<variable id=\"programming\"><link href=\"text/shared/main0600.xhp\" name=\"Programming $[officename]\">Програмиране на $[officename]</link></variable>"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3149760\n"
-"help.text"
-msgid "<variable id=\"basic\">$[officename] can be controlled by using the $[officename] API. </variable>"
-msgstr "<variable id=\"basic\">$[officename] може да бъде управляван чрез интерфейса си за приложно програмиране – $[officename] API. </variable>"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3151111\n"
-"help.text"
-msgid "$[officename] provides an Application Programming Interface (API) that enables you to control $[officename] components by using various programming languages. A $[officename] Software Development Kit is available for the programming interface."
-msgstr "$[officename] предоставя интерфейс за приложно програмиране (API, Application Programming Interface), който ви позволява да контролирате компонентите на $[officename] чрез различни езици за програмиране. Налице е комплект за разработка на софтуер ($[officename] Software Development Kit) за работа с този програмен интерфейс."
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3156346\n"
-"help.text"
-msgid "For more information about $[officename] API reference, please visit http://api.libreoffice.org/"
-msgstr "За повече информация относно $[officename] API посетете http://api.libreoffice.org/"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3153825\n"
-"help.text"
-msgid "Macros created with $[officename] Basic based on the old programming interface will no longer be supported by the current version."
-msgstr "Макросите, създадени с $[officename] Basic, които са базирани на стария програмен интерфейс, няма да се поддържат повече от текущата версия."
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3149795\n"
-"help.text"
-msgid "For more information on $[officename] Basic, select \"$[officename] Basic\" in the list box."
-msgstr "За повече информация относно $[officename] Basic изберете „$[officename] Basic“ в списъчното поле."
-
#: main0650.xhp
msgctxt ""
"main0650.xhp\n"
diff --git a/source/bg/helpcontent2/source/text/shared/00.po b/source/bg/helpcontent2/source/text/shared/00.po
index c0efdf629ec..62787dd3efe 100644
--- a/source/bg/helpcontent2/source/text/shared/00.po
+++ b/source/bg/helpcontent2/source/text/shared/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-11-29 11:15+0000\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
+"PO-Revision-Date: 2017-12-19 14:50+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1511954131.000000\n"
+"X-POOTLE-MTIME: 1513695055.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -2597,8 +2597,8 @@ msgctxt ""
"00000010.xhp\n"
"par_id3154317\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">Deletes the current selection. If multiple objects are selected, all will be deleted. In most cases, a <link href=\"text/shared/01/03150100.xhp\" name=\"security query\">security query</link> appears before objects are deleted.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">Изтрива избрания обект или обекти. Ако са избрани няколко обекта, ще бъдат изтрити всичките. В повечето случаи се показва <link href=\"text/shared/01/03150100.xhp\" name=\"запитване за потвърждение\">запитване за потвърждение</link> преди изтриването на обектите.</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">Deletes the current selection. If multiple objects are selected, all will be deleted. In most cases, a confirmation question appears before objects are deleted.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">Изтрива текущата селекция. Ако са избрани няколко обекта, ще бъдат изтрити всичките. В повечето случаи преди изтриването на обекти се показва запитване за потвърждение.</ahelp>"
#: 00000010.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/shared/01.po b/source/bg/helpcontent2/source/text/shared/01.po
index 81f2f4b8c23..6516dc1160a 100644
--- a/source/bg/helpcontent2/source/text/shared/01.po
+++ b/source/bg/helpcontent2/source/text/shared/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-12-06 15:59+0100\n"
-"PO-Revision-Date: 2017-12-15 21:28+0000\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
+"PO-Revision-Date: 2017-12-19 15:07+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
"Language: bg\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1513373291.000000\n"
+"X-POOTLE-MTIME: 1513696040.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -1046,7 +1046,7 @@ msgctxt ""
"01010203.xhp\n"
"par_id3155355\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/labeloptionspage/entirepage\" visibility=\"visible\">Creates a full page of labels or business cards.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/labeloptionspage/entirepage\" visibility=\"visible\">Creates a full page of labels or business cards.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/labeloptionspage/entirepage\" visibility=\"visible\">Създава пълна страница с етикети или визитни картички.</ahelp>"
#: 01010203.xhp
@@ -1062,7 +1062,7 @@ msgctxt ""
"01010203.xhp\n"
"par_id3155535\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/labeloptionspage/singlelabel\" visibility=\"visible\">Prints a single label or business card on a page.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/labeloptionspage/singlelabel\" visibility=\"visible\">Prints a single label or business card on a page.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/labeloptionspage/singlelabel\" visibility=\"visible\">Отпечатва един етикет или визитна картичка върху страница.</ahelp>"
#: 01010203.xhp
@@ -2081,6 +2081,78 @@ msgctxt ""
msgid "<link href=\"text/shared/00/00000020.xhp\" name=\"Import and Export Filters\">Import and Export Filters</link>"
msgstr "<link href=\"text/shared/00/00000020.xhp\" name=\"Филтри за импортиране и експортиране\">Филтри за импортиране и експортиране</link>"
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"tit\n"
+"help.text"
+msgid "Open Remote..."
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"bm_id1001513636856122\n"
+"help.text"
+msgid "<bookmark_value>remote file;open</bookmark_value> <bookmark_value>open;remote file</bookmark_value>"
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"hd_id151513629025611\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01020001.xhp\" name=\"Open Remote...\">Open Remote...</link>"
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"par_id771513629025613\n"
+"help.text"
+msgid "<variable id=\"openremote1\"><ahelp hid=\".uno:OpenRemote\"/>Opens a document located in a remote file service.</variable>"
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"par_id611513629210220\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">File - Open Remote..</item>"
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"par_id151513629855154\n"
+"help.text"
+msgid "Click the <emph>Remote Files</emph> button in the <emph>Start Center</emph>"
+msgstr ""
+
+#: 01020001.xhp
+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>"
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"par_id531513630220632\n"
+"help.text"
+msgid "A remote file server is web service that stores documents with or without check-in, check-out, version controls and backups."
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"par_id951513629981585\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/cmis-remote-files.xhp\" name=\"CMIS\">Opening and saving files in remote servers</link>"
+msgstr ""
+
#: 01020101.xhp
msgctxt ""
"01020101.xhp\n"
@@ -2321,6 +2393,142 @@ msgctxt ""
msgid "When you edit an AutoText entry, this command changes to <emph>Save AutoText</emph>."
msgstr "Когато редактирате запис на автотекста, тази команда се променя на <emph>Записване на автотекст</emph>."
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"tit\n"
+"help.text"
+msgid "Save Remote..."
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"bm_id381513636896997\n"
+"help.text"
+msgid "<bookmark_value>remote file;save</bookmark_value> <bookmark_value>save;remote file</bookmark_value>"
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"hd_id151513629025611\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01060001.xhp\" name=\"Save Remote...\">Save Remote...</link>"
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"par_id771513629025613\n"
+"help.text"
+msgid "<variable id=\"saveremote1\"><ahelp hid=\".uno:SaveRemote\"/>Saves a document located in a remote file service.</variable>"
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"par_id611513629210220\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">File - Save Remote..</item>"
+msgstr ""
+
+#: 01060001.xhp
+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>"
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"par_id531513630220632\n"
+"help.text"
+msgid "A remote file server is web service that stores documents with or without check-in, check-out, version controls and backups."
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"par_id951513629981585\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/cmis-remote-files.xhp\" name=\"CMIS\">Opening and saving files in remote servers</link>"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"tit\n"
+"help.text"
+msgid "Save a Copy"
+msgstr "Записване на копие"
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"bm_id241513636774794\n"
+"help.text"
+msgid "<bookmark_value>save;save a copy</bookmark_value> <bookmark_value>save a copy</bookmark_value>"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id391513471676787\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01060002.xhp\" name=\"Save a Copy\">Save a Copy</link>"
+msgstr "<link href=\"text/shared/01/01060002.xhp\" name=\"Save a Copy\">Записване на копие</link>"
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id1001513471674465\n"
+"help.text"
+msgid "<variable id=\"saveacopy1\"><ahelp hid=\".uno:SaveACopy\">Save a copy of the actual document with another name or location.</ahelp></variable>"
+msgstr "<variable id=\"saveacopy1\"><ahelp hid=\".uno:SaveACopy\">Записва копие на текущия документ с друго име или местоположение.</ahelp></variable>"
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id701513472080716\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">File - Save a Copy</item>"
+msgstr "Изберете <item type=\"menuitem\">Файл - Записване на копие</item>."
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id881513473450156\n"
+"help.text"
+msgid "Creates another file with same contents of the current file. The current file is kept opened for edition."
+msgstr "Създава друг файл със същото съдържание като текущия. Текущият файл остава отворен за редактиране."
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id21513472326060\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01060000.xhp\" name=\"Save\">Save</link>"
+msgstr "<link href=\"text/shared/01/01060000.xhp\" name=\"Save\">Записване</link>"
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id411513472333495\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save as</link>"
+msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Записване като</link>"
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id681513472341081\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01070001.xhp\" name=\"Export\">Export</link>"
+msgstr "<link href=\"text/shared/01/01070001.xhp\" name=\"Export\">Експортиране</link>"
+
#: 01070000.xhp
msgctxt ""
"01070000.xhp\n"
@@ -2665,6 +2873,78 @@ msgctxt ""
msgid "Export"
msgstr "Експортиране"
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"tit\n"
+"help.text"
+msgid "Export As"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"bm_id781513636674523\n"
+"help.text"
+msgid "<bookmark_value>export as;PDF</bookmark_value> <bookmark_value>export as;EPUB</bookmark_value>"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"hd_id751513634008094\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01070002.xhp\" name=\"Export As...\">Export As...</link>"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"par_id791513634008095\n"
+"help.text"
+msgid "<variable id=\"exportas1\"><ahelp hid=\".\">Export the document in PDF or EPUB formats</ahelp></variable>"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"par_id971513634212601\n"
+"help.text"
+msgid "Choose <emph>File - Export As...</emph>"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"hd_id71513635341099\n"
+"help.text"
+msgid "Export Directly as PDF"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"par_id961513635511473\n"
+"help.text"
+msgid "Export the entire document using your default PDF settings."
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"hd_id851513635358546\n"
+"help.text"
+msgid "Export Directly as EPUB"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"par_id811513635541682\n"
+"help.text"
+msgid "Export the entire document using your default EPUB settings."
+msgstr ""
+
#: 01100000.xhp
msgctxt ""
"01100000.xhp\n"
@@ -11753,94 +12033,6 @@ msgctxt ""
msgid "You can still use shortcut keys in <emph>Full Screen</emph> mode, even though the menus are unavailable. <switchinline select=\"sys\"><caseinline select=\"WIN\">To open the <emph>View</emph> menu, press Alt+V. </caseinline></switchinline>"
msgstr "В режима <emph>Цял екран</emph> можете да ползвате клавишни комбинации, въпреки че менютата са недостъпни. <switchinline select=\"sys\"><caseinline select=\"WIN\">За да отворите менюто <emph>Изглед</emph>, натиснете Alt+И. </caseinline></switchinline>"
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Confirm Delete"
-msgstr "Потвърждаване на изтриването"
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"hd_id3150278\n"
-"help.text"
-msgid "Confirm Delete"
-msgstr "Потвърждаване на изтриването"
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"par_id3148668\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:MODALDIALOG:DLG_SFX_QUERYDELETE\" visibility=\"visible\">Confirms or cancels the deletion.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:MODALDIALOG:DLG_SFX_QUERYDELETE\" visibility=\"visible\">Потвърждава или отказва изтриването.</ahelp>"
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"hd_id3152821\n"
-"help.text"
-msgid "Delete"
-msgstr "Изтриване"
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"par_id3150040\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_YES\" visibility=\"visible\">Performs the deletion in the current file.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_YES\" visibility=\"visible\">Извършва изтриването в текущия файл.</ahelp>"
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"hd_id3149999\n"
-"help.text"
-msgid "Delete All"
-msgstr "Изтриване - всичко"
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"par_id3155616\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_ALL\" visibility=\"visible\">Performs the deletion in all selected files.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_ALL\" visibility=\"visible\">Извършва изтриването във всички избрани файлове.</ahelp>"
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"hd_id3157991\n"
-"help.text"
-msgid "Do Not Delete"
-msgstr "Без изтриване"
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"par_id3147043\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_NO\" visibility=\"visible\">Rejects the deletion for the current file.</ahelp>"
-msgstr "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_NO\" visibility=\"visible\">Отхвърля изтриването за текущия файл.</ahelp>"
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"hd_id3149346\n"
-"help.text"
-msgid "Cancel"
-msgstr "Отказ"
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"par_id3148620\n"
-"help.text"
-msgid "Cancels the deletion in the current file and any other selected files."
-msgstr "Отказва изтриването в текущия файл и останалите избрани файлове, ако има такива."
-
#: 03170000.xhp
msgctxt ""
"03170000.xhp\n"
@@ -22126,16 +22318,24 @@ msgctxt ""
"05110600m.xhp\n"
"tit\n"
"help.text"
-msgid "Space Rows Equally"
+msgid "Distribute Rows Equally"
msgstr "Равни височини на редове"
#: 05110600m.xhp
msgctxt ""
"05110600m.xhp\n"
+"bm_id431513359599959\n"
+"help.text"
+msgid "<bookmark_value>table rows;distribute height equally</bookmark_value> <bookmark_value>row height;distribute equally</bookmark_value>"
+msgstr "<bookmark_value>таблица, редове на;изравняване на височините</bookmark_value><bookmark_value>редове, височина на;изравняване</bookmark_value>"
+
+#: 05110600m.xhp
+msgctxt ""
+"05110600m.xhp\n"
"hd_id3149871\n"
"help.text"
-msgid "<link href=\"text/shared/01/05110600m.xhp\" name=\"Space Equally\">Space Rows Equally</link>"
-msgstr "<link href=\"text/shared/01/05110600m.xhp\" name=\"Равни височини\">Равни височини на редове</link>"
+msgid "<link href=\"text/shared/01/05110600m.xhp\" name=\"Distribute Equally\">Distribute Rows Equally</link>"
+msgstr "<link href=\"text/shared/01/05110600m.xhp\" name=\"Distribute Equally\">Равни височини на редове</link>"
#: 05110600m.xhp
msgctxt ""
@@ -22150,8 +22350,8 @@ msgctxt ""
"05110600m.xhp\n"
"par_id3153569\n"
"help.text"
-msgid "Choose <emph>Table - Autofit - Distribute Rows Equally</emph>"
-msgstr "Изберете <emph>Таблица - Автопобиране - Равни височини на редове</emph>"
+msgid "Choose <emph>Table - Size - Distribute Rows Equally</emph>"
+msgstr "Изберете <emph>Таблица - Размер - Равни височини на редове</emph>."
#: 05110600m.xhp
msgctxt ""
@@ -22342,16 +22542,24 @@ msgctxt ""
"05120600.xhp\n"
"tit\n"
"help.text"
-msgid "Space Columns Equally"
+msgid "Distribute Columns Equally"
msgstr "Равни ширини на колони"
#: 05120600.xhp
msgctxt ""
"05120600.xhp\n"
+"bm_id431513359599959\n"
+"help.text"
+msgid "<bookmark_value>table columns;distribute columns equally</bookmark_value> <bookmark_value>column width;distribute equally</bookmark_value>"
+msgstr "<bookmark_value>таблица, колони на;изравняване на ширините</bookmark_value><bookmark_value>колони, ширина на;изравняване</bookmark_value>"
+
+#: 05120600.xhp
+msgctxt ""
+"05120600.xhp\n"
"hd_id3153811\n"
"help.text"
-msgid "<link href=\"text/shared/01/05120600.xhp\" name=\"Space Equally\">Space Columns Equally</link>"
-msgstr "<link href=\"text/shared/01/05120600.xhp\" name=\"Равни ширини\">Равни ширини на колони</link>"
+msgid "<link href=\"text/shared/01/05120600.xhp\" name=\"Distribute Equally\">Distribute Columns Equally</link>"
+msgstr "<link href=\"text/shared/01/05120600.xhp\" name=\"Distribute Equally\">Равни ширини на колони</link>"
#: 05120600.xhp
msgctxt ""
@@ -22366,8 +22574,8 @@ msgctxt ""
"05120600.xhp\n"
"par_id3159219\n"
"help.text"
-msgid "Choose <emph>Table - Autofit - Distribute Columns Equally</emph>"
-msgstr "Изберете <emph>Таблица - Автопобиране - Равни ширини на колони</emph>"
+msgid "Choose <emph>Table - Size - Distribute Columns Equally</emph>"
+msgstr "Изберете <emph>Таблица - Размер - Равни ширини на колони</emph>."
#: 05120600.xhp
msgctxt ""
@@ -22390,7 +22598,7 @@ msgctxt ""
"05120600.xhp\n"
"par_id3151364\n"
"help.text"
-msgid "Space Columns Equally"
+msgid "Distribute Columns Equally"
msgstr "Равни ширини на колони"
#: 05140100.xhp
@@ -31191,7 +31399,7 @@ msgctxt ""
"par_id3150870\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Automatically creates a numbered list when you press Enter at the end of a line that starts with a number followed by a period, a space, and text. If a line starts with a hyphen (-), a plus sign (+), or an asterisk (*), followed by a space, and text, a bulleted list is created when you press Enter.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Автоматично създава номериран списък, когато натиснете Enter в края на ред, който започва с число, последвано от точка, интервал и текст. Ако редът започва с тире (-), знак плюс (+) или звездичка (*), последвана от интервал и текст, при натискането на Enter се създава списък с водачи.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Автоматично създава номериран списък, когато натиснете Enter в края на ред, който започва с число, последвано от точка, интервал и текст. Ако редът започва с тире (-), знак плюс (+) или звездичка (*), последвана от интервал и текст, при натискането на Enter се създава списък с водещи знаци.</caseinline></switchinline>"
#: 06040100.xhp
msgctxt ""
@@ -33790,7 +33998,7 @@ msgctxt ""
"06130000.xhp\n"
"par_idN10A39\n"
"help.text"
-msgid "<variable id=\"script\">Scripts </variable>"
+msgid "<variable id=\"script\">Scripts</variable>"
msgstr "<variable id=\"script\">Скриптове </variable>"
#: 06130000.xhp
@@ -33961,14 +34169,6 @@ msgctxt ""
msgid "Click a script, and then click a command button."
msgstr "Щракнете върху скрипт, после – върху бутон с команда."
-#: 06130000.xhp
-msgctxt ""
-"06130000.xhp\n"
-"par_id3153138\n"
-"help.text"
-msgid "<link href=\"text/shared/main0600.xhp\" name=\"Macro programming in $[officename]\">Macro programming in $[officename]</link>"
-msgstr "<link href=\"text/shared/main0600.xhp\" name=\"Програмиране на макроси в $[officename]\">Програмиране на макроси в $[officename]</link>"
-
#: 06130001.xhp
msgctxt ""
"06130001.xhp\n"
diff --git a/source/bg/helpcontent2/source/text/shared/02.po b/source/bg/helpcontent2/source/text/shared/02.po
index 6a9f4aa5f30..c36c25906e2 100644
--- a/source/bg/helpcontent2/source/text/shared/02.po
+++ b/source/bg/helpcontent2/source/text/shared/02.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-11-29 11:17+0000\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
+"PO-Revision-Date: 2017-12-19 15:13+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
"Language: bg\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1511954234.000000\n"
+"X-POOTLE-MTIME: 1513696384.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -9494,16 +9494,16 @@ msgctxt ""
"02010000.xhp\n"
"tit\n"
"help.text"
-msgid "Apply Style"
-msgstr "Прилагане на стил"
+msgid "Set Paragrph Style"
+msgstr "Задаване стил на абзац"
#: 02010000.xhp
msgctxt ""
"02010000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02010000.xhp\" name=\"Apply Style\">Apply Style</link>"
-msgstr "<link href=\"text/shared/02/02010000.xhp\" name=\"Прилагане на стил\">Прилагане на стил</link>"
+msgid "<link href=\"text/shared/02/02010000.xhp\" name=\"Set Paragraph Style\">Set Paragraph Style</link>"
+msgstr "<link href=\"text/shared/02/02010000.xhp\" name=\"Set Paragraph Style\">Задаване стил на абзац</link>"
#: 02010000.xhp
msgctxt ""
@@ -9534,16 +9534,16 @@ msgctxt ""
"02010000.xhp\n"
"par_id3155552\n"
"help.text"
-msgid "<image id=\"img_id3152801\" src=\"media/helpimg/zellvor.png\" width=\"2.642cm\" height=\"0.533cm\" localize=\"true\"><alt id=\"alt_id3152801\">Apply Style</alt></image>"
-msgstr "<image id=\"img_id3152801\" src=\"media/helpimg/zellvor.png\" width=\"2.642cm\" height=\"0.533cm\" localize=\"true\"><alt id=\"alt_id3152801\">Прилагане на стил</alt></image>"
+msgid "<image id=\"img_id3152801\" src=\"media/helpimg/zellvor.png\" width=\"2.642cm\" height=\"0.533cm\" localize=\"true\"><alt id=\"alt_id3152801\">Set Paragraph Style</alt></image>"
+msgstr "<image id=\"img_id3152801\" src=\"media/helpimg/zellvor.png\" width=\"2.642cm\" height=\"0.533cm\" localize=\"true\"><alt id=\"alt_id3152801\">Задаване стил на абзац</alt></image>"
#: 02010000.xhp
msgctxt ""
"02010000.xhp\n"
"par_id3145345\n"
"help.text"
-msgid "Apply Style"
-msgstr "Прилагане на стил"
+msgid "Set Paragraph Style"
+msgstr "Задаване стил на абзац"
#: 02020000.xhp
msgctxt ""
@@ -13326,8 +13326,8 @@ msgctxt ""
"12090100.xhp\n"
"hd_id3153061\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More Options\">More Options</link>"
-msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"Още настройки\">Още настройки</link>"
+msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"Options\">Options</link>"
+msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"Options\">Настройки</link>"
#: 12090101.xhp
msgctxt ""
@@ -15766,7 +15766,7 @@ msgctxt ""
"20050000.xhp\n"
"bm_id3148668\n"
"help.text"
-msgid "<bookmark_value>selection modes in text</bookmark_value><bookmark_value>text; selection modes</bookmark_value><bookmark_value>extending selection mode</bookmark_value><bookmark_value>adding selection mode</bookmark_value><bookmark_value>block selection mode</bookmark_value>"
+msgid "<bookmark_value>selection modes in text</bookmark_value> <bookmark_value>text; selection modes</bookmark_value> <bookmark_value>extending selection mode</bookmark_value> <bookmark_value>adding selection mode</bookmark_value> <bookmark_value>block selection mode</bookmark_value>"
msgstr "<bookmark_value>избиране на текст, режими</bookmark_value><bookmark_value>текст; режими на избиране</bookmark_value><bookmark_value>разширяване на селекция в текст</bookmark_value><bookmark_value>добавяне към селекция в текст</bookmark_value><bookmark_value>блокова селекция в текст</bookmark_value>"
#: 20050000.xhp
@@ -15822,8 +15822,8 @@ msgctxt ""
"20050000.xhp\n"
"par_id3147209\n"
"help.text"
-msgid "Click in text where you want to position the cursor; click in a cell to make it the active cell. Any other selection is then deselected."
-msgstr "Щракнете в текста там, където желаете да позиционирате курсора. Щракнете върху клетка, за да я направите текуща. Изборът ще бъде премахнат от досегашната селекция."
+msgid "This is the default selection mode for text documents. With the keyboard, selections can be performed by Shift+NavigationKey (<item type=\"keycode\">arrows, Home, End, Page Up, Page Down</item>). With the mouse, click in the text where the selection is to start, hold the left mouse button and move to the end of the selection. Release the mouse key to end selection."
+msgstr ""
#: 20050000.xhp
msgctxt ""
@@ -15838,8 +15838,8 @@ msgctxt ""
"20050000.xhp\n"
"par_id3153717\n"
"help.text"
-msgid "Clicking in the text extends or crops the current selection."
-msgstr "Щракването върху текст разширява или стеснява текущата селекция."
+msgid "By using the arrow keys or the <item type=\"keycode\">Home</item> and <item type=\"keycode\">End</item> keys you can extend or crop the current selection. Clicking into the text selects the text between the current cursor position and the click position. You also can use (with or without <item type=\"keycode\">Shift</item> key) the arrow keys and the keys <item type=\"keycode\">Home</item> and <item type=\"keycode\">End</item> to increase or decrease the current selection."
+msgstr ""
#: 20050000.xhp
msgctxt ""
@@ -15881,6 +15881,14 @@ msgctxt ""
msgid "On Windows systems, you can hold down the <item type=\"keycode\">Alt</item> key while dragging to select a block of text. You don't need to enter the block selection mode."
msgstr "В Windows можете да задържите клавиша <item type=\"keycode\">Alt</item>, докато плъзгате мишката, за да изберете правоъгълен блок от текста. Не е необходимо да влизате в режима на избиране по блокове."
+#: 20050000.xhp
+msgctxt ""
+"20050000.xhp\n"
+"par_id901513465638512\n"
+"help.text"
+msgid "<link href=\"text/swriter/guide/text_nav_keyb.xhp\" name=\"Navigating and Selecting With the Keyboard\">Navigating and Selecting With the Keyboard</link>"
+msgstr ""
+
#: 20060000.xhp
msgctxt ""
"20060000.xhp\n"
diff --git a/source/bg/helpcontent2/source/text/shared/05.po b/source/bg/helpcontent2/source/text/shared/05.po
index 6ebcfe3cf55..ae5acca3475 100644
--- a/source/bg/helpcontent2/source/text/shared/05.po
+++ b/source/bg/helpcontent2/source/text/shared/05.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: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-11-27 20:33+0000\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
+"PO-Revision-Date: 2017-12-19 14:57+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1511814795.000000\n"
+"X-POOTLE-MTIME: 1513695469.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -149,7 +149,7 @@ msgctxt ""
"00000001.xhp\n"
"par_id3497211\n"
"help.text"
-msgid "You can download documentation as PDF files, how-tos, and guides from the %PRODUCTNAME documentation website at <link href=\"http://documentation.libreoffice.org\">documentation.libreoffice.org</link>. You can also access the documentation website choosing the menu <item type=\"menuitem\">Help – User Guides…</item> ."
+msgid "You can download documentation as PDF files, how-tos, and guides from the %PRODUCTNAME documentation website at <link href=\"http://documentation.libreoffice.org\">documentation.libreoffice.org</link>. You can also access the documentation website choosing the menu <item type=\"menuitem\">Help – User Guides…</item>"
msgstr "От сайта с документация за %PRODUCTNAME на адрес <link href=\"http://documentation.libreoffice.org\">documentation.libreoffice.org</link> можете да изтегляте документация във вид на PDF файлове, указания и справочници. Към този сайт води и командата <item type=\"menuitem\">Помощ - Ръководства за потребители…</item>."
#: 00000001.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/autopi.po b/source/bg/helpcontent2/source/text/shared/autopi.po
index 74afb9867e9..a8380aec206 100644
--- a/source/bg/helpcontent2/source/text/shared/autopi.po
+++ b/source/bg/helpcontent2/source/text/shared/autopi.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: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
"PO-Revision-Date: 2017-11-27 20:45+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1511815532.000000\n"
#: 01000000.xhp
@@ -6229,8 +6229,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3149140\n"
"help.text"
-msgid "<variable id=\"eurokonv\"><ahelp hid=\".uno:EuroConverter\">Converts the currency amounts found in $[officename] Calc documents and in fields and tables of $[officename] Writer documents into euros.</ahelp></variable>"
-msgstr "<variable id=\"eurokonv\"><ahelp hid=\".uno:EuroConverter\">Превръща в евро паричните суми в документи на $[officename] Calc и в полета и таблици от документи на $[officename] Writer.</ahelp></variable>"
+msgid "<variable id=\"eurokonv\"><ahelp hid=\".\">Converts the currency amounts found in $[officename] Calc documents and in fields and tables of $[officename] Writer documents into euros.</ahelp></variable>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6269,8 +6269,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3155420\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OBFILE\">Converts a single $[officename] Calc file.</ahelp> To convert fields and tables in $[officename] Writer, first mark the <emph>Also convert fields and tables in text documents </emph>check box."
-msgstr "<ahelp hid=\"HID_DLGCONVERT_OBFILE\">Преобразува единичен файл на $[officename] Calc.</ahelp> За да преобразувате полета и таблици в $[officename] Writer, първо отметнете полето <emph>Да се преобразуват и полетата и таблиците в текстовите документи</emph>."
+msgid "<ahelp hid=\".\">Converts a single $[officename] Calc file.</ahelp> To convert fields and tables in $[officename] Writer, first mark the <emph>Also convert fields and tables in text documents </emph>check box."
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6285,8 +6285,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3150670\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OBDIR\">Converts all $[officename] Calc and $[officename] Writer documents and templates in the selected directory.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_OBDIR\">Преобазува всички документи и шаблони на $[officename] Calc и $[officename] Writer в избраната директория.</ahelp>"
+msgid "<ahelp hid=\".\">Converts all $[officename] Calc and $[officename] Writer documents and templates in the selected directory.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6301,8 +6301,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3156002\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_COMBOBOX1\">Specifies the currency to be converted into euros.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_COMBOBOX1\">Задава валутата, която да се преобразува в евро.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies the currency to be converted into euros.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6317,8 +6317,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3154898\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_TBSOURCE\">Indicates the directory or the name of the single document to be converted.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_TBSOURCE\">Задава директорията или името на единичния документ за преобразуване.</ahelp>"
+msgid "<ahelp hid=\".\">Indicates the directory or the name of the single document to be converted.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6333,8 +6333,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3147264\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBSOURCEOPEN\">Opens a dialog to select the desired directory or document.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBSOURCEOPEN\">Отваря диалогов прозорец за избор на желаната директория или документ.</ahelp>"
+msgid "<ahelp hid=\".\">Opens a dialog to select the desired directory or document.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6349,8 +6349,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3152771\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CHECKRECURSIVE\">Specifies whether all subfolders of the selected directory are included.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CHECKRECURSIVE\">Указва дали да се включат всички подпапки на избраната директория.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies whether all subfolders of the selected directory are included.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6365,8 +6365,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3150398\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CHKTEXTDOCUMENTS\">Converts currency amounts found in fields and tables of $[officename] Writer documents.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CHKTEXTDOCUMENTS\">Преобазува парични суми в полета или таблици в документи на $[officename] Writer.</ahelp>"
+msgid "<ahelp hid=\".\">Converts currency amounts found in fields and tables of $[officename] Writer documents.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6389,8 +6389,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CHKPROTECT\">Specifies that sheet protection will be disabled during conversion and thereafter re-enabled. If sheet protection is covered by a password, you will see a dialog for entering the password.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CHKPROTECT\">Указва, че защитата на листовете ще бъде отстранена по време на преобразуването и възстановена след това. Ако защитата е подсигурена с парола, ще видите диалогов прозорец, в който да въведете паролата.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies that sheet protection will be disabled during conversion and thereafter re-enabled. If sheet protection is covered by a password, you will see a dialog for entering the password.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6405,8 +6405,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3153771\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_TBTARGET\">Specifies the folder and path in which the converted files are to be saved.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_TBTARGET\">Задава папката и пътя, в който да се запишат преобразуваните файлове.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies the folder and path in which the converted files are to be saved.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6421,8 +6421,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3147427\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBTARGETOPEN\">Opens a dialog in which you can select a directory to hold the converted files.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBTARGETOPEN\">Отваря диалогов прозорец, в който можете да изберете директория за преобразуваните файлове.</ahelp>"
+msgid "<ahelp hid=\".\">Opens a dialog in which you can select a directory to hold the converted files.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6437,8 +6437,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3153190\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBCANCEL\">Closes the Euro Converter.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBCANCEL\">Затваря конвертора към евро.</ahelp>"
+msgid "<ahelp hid=\".\">Closes the Euro Converter.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6453,8 +6453,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3155413\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBHELP\">Activates the help for the dialog.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBHELP\">Извиква помощната информация за диалоговия прозорец.</ahelp>"
+msgid "<ahelp hid=\".\">Activates the help for the dialog.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6469,8 +6469,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBGOON\">Starts the conversion.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBGOON\">Започва преобразуването.</ahelp>"
+msgid "<ahelp hid=\".\">Starts the conversion.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6493,16 +6493,16 @@ msgctxt ""
"01150000.xhp\n"
"par_id3153953\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBBACK\">Returns to the first page of the Euro Converter.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBBACK\">Връща към първата страница на конвертора към евро.</ahelp>"
+msgid "<ahelp hid=\".\">Returns to the first page of the Euro Converter.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
"01150000.xhp\n"
"par_id3154640\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBBACK\">If the current document is a $[officename] Calc document or template, you can call up the Euro Converter using the corresponding icon in the Tools bar.</ahelp> This icon is hidden by default. To display the Euro Converter icon, click the arrow at the end of the Tools bar, select the <emph>Visible Buttons</emph> command and activate the <emph>Euro Converter</emph> icon."
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBBACK\">Ако текущият документ е документ или шаблон на $[officename] Calc, можете да извикате конвертора към евро чрез съответната икона от лентата „Инструменти“.</ahelp> Тази икона по подразбиране е скрита. За да я видите, щракнете върху стрелката в края на лентата „Инструменти“, изберете командата <emph>Видими бутони</emph> и отметнете <emph>Преобразуване към евро</emph>."
+msgid "If the current document is a $[officename] Calc document or template, you can call up the Euro Converter using the corresponding icon in the Tools bar. This icon is hidden by default. To display the Euro Converter icon, click the arrow at the end of the Tools bar, select the <emph>Visible Buttons</emph> command and activate the <emph>Euro Converter</emph> icon."
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6541,8 +6541,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3150113\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CHECKBOX1\">Converts the entire document.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CHECKBOX1\">Преобразува целия документ.</ahelp>"
+msgid "<ahelp hid=\".\">Converts the entire document.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6557,8 +6557,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3148834\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_COMBOBOX1\">Specifies the currency to be converted into euros.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_COMBOBOX1\">Задава валутата, която да се преобразува в евро.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies the currency to be converted into euros.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6589,8 +6589,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3145162\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON1\">All cells with the selected Cell Styles are converted.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON1\">Преобразуват се всички клетки с избраните стилове за клетки.</ahelp>"
+msgid "<ahelp hid=\".\">All cells with the selected Cell Styles are converted.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6605,8 +6605,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3154479\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON2\">All currency cells in the active spreadsheet will be converted.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON2\">Преобразуват се всички клетки с валута в активния лист.</ahelp>"
+msgid "<ahelp hid=\".\">All currency cells in the active spreadsheet will be converted.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6621,8 +6621,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3146912\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON3\">All currency cells in the active document will be converted.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON3\">Преобразуват се всички клетки с валута в активния документ.</ahelp>"
+msgid "<ahelp hid=\".\">All currency cells in the active document will be converted.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6637,8 +6637,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3153736\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON4\">All currency cells in the range selected before the converter was called will be converted.</ahelp> All cells must have the same format so that they can be recognized as a selected range."
-msgstr "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON4\">Преобразуват се всички клетки с валута от диапазона, избран преди извикване на конвертора.</ahelp> За да бъдат разпознати като избран диапазон, всички клетки трябва да са с еднакъв формат."
+msgid "<ahelp hid=\".\">All currency cells in the range selected before the converter was called will be converted.</ahelp> All cells must have the same format so that they can be recognized as a selected range."
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6653,8 +6653,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3154756\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_LISTBOX1\">Displays the ranges to be converted from the list.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_LISTBOX1\">Показва диапазоните от списъка, които да бъдат преобразувани.</ahelp>"
+msgid "<ahelp hid=\".\">Displays the ranges to be converted from the list.</ahelp>"
+msgstr ""
#: 01170000.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/shared/explorer/database.po b/source/bg/helpcontent2/source/text/shared/explorer/database.po
index 1b36308caf4..1cc9b5e2881 100644
--- a/source/bg/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/bg/helpcontent2/source/text/shared/explorer/database.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-07-20 11:52+0200\n"
-"PO-Revision-Date: 2017-11-17 22:23+0000\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
+"PO-Revision-Date: 2017-12-19 14:49+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1510957396.000000\n"
+"X-POOTLE-MTIME: 1513694964.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -7581,8 +7581,8 @@ msgctxt ""
"dabawiz02ado.xhp\n"
"par_idN10568\n"
"help.text"
-msgid "$[officename] requires the Microsoft Data Access Components (MDAC) to use the ADO interface. Microsoft Windows 2000 and XP include these components by default. For earlier visions of Windows, you need to install MDAC separately. You can download MDAC from the Microsoft web site."
-msgstr "$[officename] изисква компонентите MDAC (Microsoft Data Access Components), за да използва интерфейса ADO. Microsoft Windows 2000 и XP ги по подразбиране. За по-ранни версии на Windows е необходимо да инсталирате MDAC отделно. Компонентите MDAC могат да бъдат изтеглени от уебсайта на Microsoft."
+msgid "$[officename] requires the Microsoft Data Access Components (MDAC) to use the ADO interface. Microsoft Windows 2000 and XP include these components by default."
+msgstr "$[officename] изисква Microsoft Data Access Components (MDAC) за използване на интерфейса ADO. Microsoft Windows 2000 и XP включват тези компоненти по подразбиране."
#: dabawiz02ado.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/shared/guide.po b/source/bg/helpcontent2/source/text/shared/guide.po
index 2832170fa7f..d9362f70898 100644
--- a/source/bg/helpcontent2/source/text/shared/guide.po
+++ b/source/bg/helpcontent2/source/text/shared/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: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-11-29 09:09+0000\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
+"PO-Revision-Date: 2017-12-19 14:53+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
"Language: bg\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1511946552.000000\n"
+"X-POOTLE-MTIME: 1513695234.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -12662,7 +12662,7 @@ msgctxt ""
"macro_recording.xhp\n"
"bm_id3093440\n"
"help.text"
-msgid "<bookmark_value>macros; recording</bookmark_value><bookmark_value>recording; macros</bookmark_value><bookmark_value>Basic; recording macros</bookmark_value>"
+msgid "<bookmark_value>macros; recording</bookmark_value> <bookmark_value>recording; macros</bookmark_value> <bookmark_value>Basic; recording macros</bookmark_value>"
msgstr "<bookmark_value>макроси; записване</bookmark_value><bookmark_value>записване; макроси</bookmark_value><bookmark_value>Basic; записване на макроси</bookmark_value>"
#: macro_recording.xhp
@@ -12670,8 +12670,16 @@ msgctxt ""
"macro_recording.xhp\n"
"hd_id3093440\n"
"help.text"
-msgid "<variable id=\"macro_recording\"><link href=\"text/shared/guide/macro_recording.xhp\" name=\"Recording a Macro\">Recording a Macro</link></variable>"
-msgstr "<variable id=\"macro_recording\"><link href=\"text/shared/guide/macro_recording.xhp\" name=\"Записване на макрос\">Записване на макрос</link></variable>"
+msgid "<variable id=\"macro_recording\"><link href=\"text/shared/guide/macro_recording.xhp\" name=\"Recording a Macro\">Recording a Macro</link> </variable>"
+msgstr "<variable id=\"macro_recording\"><link href=\"text/shared/guide/macro_recording.xhp\" name=\"Recording a Macro\">Записване на макрос</link></variable>"
+
+#: macro_recording.xhp
+msgctxt ""
+"macro_recording.xhp\n"
+"par_id101513461219184\n"
+"help.text"
+msgid "%PRODUCTNAME can record commands executed with the keyboard and mouse in Writer and Calc"
+msgstr "%PRODUCTNAME може да записва команди, подадени чрез клавиатурата и мишката в Writer и Calc."
#: macro_recording.xhp
msgctxt ""
@@ -12780,6 +12788,14 @@ msgstr "Щракнете върху <emph>Съхраняване</emph>."
#: macro_recording.xhp
msgctxt ""
"macro_recording.xhp\n"
+"bm_id131513460596344\n"
+"help.text"
+msgid "<bookmark_value>macro recording;limitations</bookmark_value>"
+msgstr "<bookmark_value>макроси, записване;ограничения</bookmark_value>"
+
+#: macro_recording.xhp
+msgctxt ""
+"macro_recording.xhp\n"
"hd_id2486342\n"
"help.text"
msgid "Limitations of the macro recorder"
@@ -12849,14 +12865,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">Macro</link>"
msgstr "<link href=\"text/shared/01/06130000.xhp\" name=\"Макрос\">Макрос</link>"
-#: macro_recording.xhp
-msgctxt ""
-"macro_recording.xhp\n"
-"par_id3147576\n"
-"help.text"
-msgid "<link href=\"text/shared/main0600.xhp\" name=\"macro programming in $[officename]\">Programming in %PRODUCTNAME</link>"
-msgstr "<link href=\"text/shared/main0600.xhp\" name=\"Програмиране на макроси в $[officename]\">Програмиране в %PRODUCTNAME</link>"
-
#: main.xhp
msgctxt ""
"main.xhp\n"
diff --git a/source/bg/helpcontent2/source/text/shared/optionen.po b/source/bg/helpcontent2/source/text/shared/optionen.po
index 81d682ca40f..24ee4d84433 100644
--- a/source/bg/helpcontent2/source/text/shared/optionen.po
+++ b/source/bg/helpcontent2/source/text/shared/optionen.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-12-02 12:43+0000\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
+"PO-Revision-Date: 2017-12-19 15:01+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
"Language: bg\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1512218614.000000\n"
+"X-POOTLE-MTIME: 1513695660.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -108,14 +108,6 @@ msgstr "<link href=\"text/shared/optionen/01150000.xhp\" name=\"Езикови
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
-"hd_id3150872\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/01030000.xhp\" name=\"Internet\">Internet</link>"
-msgstr "<link href=\"text/shared/optionen/01030000.xhp\" name=\"Интернет\">Интернет</link>"
-
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
"hd_id3153188\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01040000.xhp\" name=\"Text Document\">%PRODUCTNAME Writer</link>"
@@ -164,6 +156,14 @@ msgstr "<link href=\"text/shared/optionen/01090000.xhp\" name=\"Формула\"
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id3149420\n"
+"help.text"
+msgid "<link href=\"text/shared/optionen/01160000.xhp\" name=\"Data Sources\">%PRODUCTNAME Base</link>"
+msgstr "<link href=\"text/shared/optionen/01160000.xhp\" name=\"Data Sources\">%PRODUCTNAME Base</link>"
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3155418\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01110000.xhp\" name=\"Chart\">Charts</link>"
@@ -172,10 +172,10 @@ msgstr "<link href=\"text/shared/optionen/01110000.xhp\" name=\"Диаграма
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
-"hd_id3149420\n"
+"hd_id3150872\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01160000.xhp\" name=\"Data Sources\">%PRODUCTNAME Database</link>"
-msgstr "<link href=\"text/shared/optionen/01160000.xhp\" name=\"Източници на данни\">%PRODUCTNAME Base</link>"
+msgid "<link href=\"text/shared/optionen/01030000.xhp\" name=\"Internet\">Internet</link>"
+msgstr "<link href=\"text/shared/optionen/01030000.xhp\" name=\"Интернет\">Интернет</link>"
#: 01010000.xhp
msgctxt ""
@@ -198,8 +198,8 @@ msgctxt ""
"01010000.xhp\n"
"par_id3149177\n"
"help.text"
-msgid "<variable id=\"optionenallgemein\"><ahelp hid=\"SID_GENERAL_OPTIONS\">Use this dialog to create general settings for working with $[officename]. The information covers topics such as user data, saving, printing, paths to important files and directories, and color defaults.</ahelp></variable> These settings are saved automatically."
-msgstr "<variable id=\"optionenallgemein\"><ahelp hid=\"SID_GENERAL_OPTIONS\">Тук можете да задавате общи настройки за работа с $[officename]: лични данни на потребителя, съхраняване, печатане, пътища до важни файлове и директории и подразбирани настройки за цветове.</ahelp></variable> Тези настройки се записват автоматично."
+msgid "<variable id=\"optionenallgemein\">Use this dialog to create general settings for working with $[officename]. The information covers topics such as user data, saving, printing, paths to important files and directories, and color defaults.</variable> These settings are saved automatically."
+msgstr "<variable id=\"optionenallgemein\">Тук можете да задавате общи настройки за работа с $[officename]: лични данни на потребителя, съхраняване, печатане, пътища до важни файлове и директории и подразбирани настройки за цветове.</variable> Тези настройки се записват автоматично."
#: 01010100.xhp
msgctxt ""
@@ -1438,7 +1438,7 @@ msgctxt ""
"01010400.xhp\n"
"par_id3145673\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optlingupage/lingumodulesedit\">To edit a language module, select it and click <emph>Edit</emph>.</ahelp> The <link href=\"text/shared/optionen/01010401.xhp\" name=\"Edit Modules\"><emph>Edit </emph><emph>Modules</emph></link> dialog appears."
+msgid "<ahelp hid=\"cui/ui/optlingupage/lingumodulesedit\">To edit a language module, select it and click <emph>Edit</emph>.</ahelp> The <link href=\"text/shared/optionen/01010401.xhp\" name=\"Edit Modules\"><emph>Edit Modules</emph></link> dialog appears."
msgstr "<ahelp hid=\"cui/ui/optlingupage/lingumodulesedit\">За да редактирате езиков модул, изберете го и натиснете <emph>Редактиране</emph>.</ahelp> Ще се появи диалоговият прозорец <link href=\"text/shared/optionen/01010401.xhp\" name=\"Edit Modules\"><emph>Редактиране на модули</emph></link>."
#: 01010400.xhp
@@ -10974,7 +10974,7 @@ msgctxt ""
"01070500.xhp\n"
"par_id3154138\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>In a presentation or drawing document, you can also activate the text editing mode through the <emph>Allow Quick Editing</emph> <link href=\"text/simpress/02/13180000.xhp\" name=\"icon\">icon</link> in the <emph>Option</emph> bar.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>In a presentation or drawing document, you can also activate the text editing mode through the <emph>Allow Quick Editing</emph> <link href=\"text/simpress/02/13180000.xhp\" name=\"icon\">icon</link> in the <emph>Options</emph> bar.</defaultinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>В презентация или рисунка можете да включите режима на редактиране на текст и чрез <link href=\"text/simpress/02/13180000.xhp\" name=\"icon\">иконата</link> <emph>Разрешено бързо редактиране</emph> в лентата <emph>Настройки</emph>.</defaultinline></switchinline>"
#: 01070500.xhp
@@ -11006,7 +11006,7 @@ msgctxt ""
"01070500.xhp\n"
"par_id3153367\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>In a presentation or drawing document, you can also activate this mode through the<emph> Select Text Area Only </emph><link href=\"text/simpress/02/13190000.xhp\" name=\"icon\">icon</link> in the <emph>Option</emph> bar.</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>In a presentation or drawing document, you can also activate this mode through the<emph> Select Text Area Only </emph><link href=\"text/simpress/02/13190000.xhp\" name=\"icon\">icon</link> in the <emph>Options</emph> bar.</defaultinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>В презентация или рисунка можете да включите този режим и чрез <link href=\"text/simpress/02/13190000.xhp\" name=\"icon\">иконата</link> <emph>Избор - само текстовата област</emph> в лентата <emph>Настройки</emph>.</defaultinline></switchinline>"
#: 01070500.xhp
diff --git a/source/bg/helpcontent2/source/text/simpress.po b/source/bg/helpcontent2/source/text/simpress.po
index 930d91c16d4..2985f2efc26 100644
--- a/source/bg/helpcontent2/source/text/simpress.po
+++ b/source/bg/helpcontent2/source/text/simpress.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: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: 2017-10-26 20:39+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1509050375.000000\n"
#: main0000.xhp
@@ -1615,307 +1615,3 @@ msgctxt ""
"help.text"
msgid "$[officename] Impress gives you the choice of running a slide show automatically or manually."
msgstr "$[officename] Impress ви предоставя възможност да стартирате прожекция автоматично или ръчно."
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"tit\n"
-"help.text"
-msgid "Presenter Console Keyboard Shortcuts"
-msgstr "Клавишни комбинации за Presenter Console"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"bm_id0921200912285678\n"
-"help.text"
-msgid "<bookmark_value>Presenter Console shortcuts</bookmark_value>"
-msgstr "<bookmark_value>Presenter Console, клавишни комбинации</bookmark_value>"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"hd_id0921201912165661\n"
-"help.text"
-msgid "Presenter Console Keyboard Shortcuts"
-msgstr "Клавишни комбинации за Presenter Console"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921201912165656\n"
-"help.text"
-msgid "When running a slide show using the Presenter Console, you can use the following keys:"
-msgstr "По време на прожекция с Presenter Console можете да използвате следните клавиши:"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104028\n"
-"help.text"
-msgid "Action"
-msgstr "Действие"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104093\n"
-"help.text"
-msgid "Key or Keys"
-msgstr "Клавиш или клавиши"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110418\n"
-"help.text"
-msgid "Next slide, or next effect"
-msgstr "Следващ кадър или ефект"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104120\n"
-"help.text"
-msgid "Left click, right arrow, down arrow, spacebar, page down, enter, return, 'N'"
-msgstr "Щракване с ляв бутон, стрелка надясно, стрелка надолу, интервал, Page Down, Enter, Return, N"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104165\n"
-"help.text"
-msgid "Previous slide, or previous effect"
-msgstr "Предишен кадър или ефект"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104115\n"
-"help.text"
-msgid "Right click, left arrow, up arrow, page up, backspace, 'P'"
-msgstr "Щракване с десен бутон, стрелка наляво, стрелка нагоре, Page Up, Backspace, P"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104164\n"
-"help.text"
-msgid "First slide"
-msgstr "Първи кадър"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104148\n"
-"help.text"
-msgid "Home"
-msgstr "Home"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104221\n"
-"help.text"
-msgid "Last slide"
-msgstr "Последен кадър"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104277\n"
-"help.text"
-msgid "End"
-msgstr "End"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104279\n"
-"help.text"
-msgid "Previous slide without effects"
-msgstr "Предишен кадър без ефекти"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110423\n"
-"help.text"
-msgid "Alt+Page Up"
-msgstr "Alt+Page Up"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110427\n"
-"help.text"
-msgid "Next slide without effects"
-msgstr "Следващ кадър без ефекти"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104261\n"
-"help.text"
-msgid "Alt+Page Down"
-msgstr "Alt+Page Down"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104383\n"
-"help.text"
-msgid "Black/Unblack the screen"
-msgstr "Превключване черен/нормален екран"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110431\n"
-"help.text"
-msgid "'B', '.'"
-msgstr "B, '.'"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104311\n"
-"help.text"
-msgid "White/Unwhite the screen"
-msgstr "Превключване бял/нормален екран"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104359\n"
-"help.text"
-msgid "'W', ','"
-msgstr "W, ','"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104336\n"
-"help.text"
-msgid "End slide show"
-msgstr "Край на прожекцията"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104419\n"
-"help.text"
-msgid "Esc, '-'"
-msgstr "Esc, -"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104460\n"
-"help.text"
-msgid "Go to slide number"
-msgstr "Скок към кадър с номер"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110440\n"
-"help.text"
-msgid "Number followed by Enter"
-msgstr "Число, последвано от Enter"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104427\n"
-"help.text"
-msgid "Grow/Shrink size of notes font"
-msgstr "По-едър/по-ситен шрифт в бележките"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104442\n"
-"help.text"
-msgid "'G', 'S'"
-msgstr "G, S"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104473\n"
-"help.text"
-msgid "Scroll notes up/down"
-msgstr "Превъртане на бележките нагоре/надолу"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110459\n"
-"help.text"
-msgid "'A', 'Z'"
-msgstr "A, Z"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110456\n"
-"help.text"
-msgid "Move caret in notes view backward/forward"
-msgstr "Преместване на курсора напред/назад в изгледа за бележки"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110457\n"
-"help.text"
-msgid "'H', 'L'"
-msgstr "H, L"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104566\n"
-"help.text"
-msgid "Show the Presenter Console"
-msgstr "Показване на Presenter Console"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104544\n"
-"help.text"
-msgid "Ctrl-'1'"
-msgstr "Ctrl+1"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104535\n"
-"help.text"
-msgid "Show the Presentation Notes"
-msgstr "Показване на бележките за презентацията"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104680\n"
-"help.text"
-msgid "Ctrl-'2'"
-msgstr "Ctrl+2"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104634\n"
-"help.text"
-msgid "Show the Slides Overview"
-msgstr "Показване на общ преглед на кадрите"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104632\n"
-"help.text"
-msgid "Ctrl-'3'"
-msgstr "Ctrl+3"
diff --git a/source/bg/helpcontent2/source/text/simpress/04.po b/source/bg/helpcontent2/source/text/simpress/04.po
index f9d2bc50998..176721397b8 100644
--- a/source/bg/helpcontent2/source/text/simpress/04.po
+++ b/source/bg/helpcontent2/source/text/simpress/04.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: 2017-10-04 11:48+0200\n"
-"PO-Revision-Date: 2017-11-03 13:41+0000\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
+"PO-Revision-Date: 2017-12-19 14:06+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1509716462.000000\n"
+"X-POOTLE-MTIME: 1513692411.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -1623,3 +1623,307 @@ msgctxt ""
"help.text"
msgid "Change to Normal Mode with the active slide."
msgstr "Превключва към нормален изглед с активния кадър."
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"tit\n"
+"help.text"
+msgid "Presenter Console Keyboard Shortcuts"
+msgstr "Клавишни комбинации за Presenter Console"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"bm_id0921200912285678\n"
+"help.text"
+msgid "<bookmark_value>Presenter Console shortcuts</bookmark_value>"
+msgstr "<bookmark_value>Presenter Console, клавишни комбинации</bookmark_value>"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"hd_id0921201912165661\n"
+"help.text"
+msgid "Presenter Console Keyboard Shortcuts"
+msgstr "Клавишни комбинации за Presenter Console"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921201912165656\n"
+"help.text"
+msgid "When running a slide show using the Presenter Console, you can use the following keys:"
+msgstr "По време на прожекция с Presenter Console можете да използвате следните клавиши:"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104028\n"
+"help.text"
+msgid "Action"
+msgstr "Действие"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104093\n"
+"help.text"
+msgid "Key or Keys"
+msgstr "Клавиш или клавиши"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110418\n"
+"help.text"
+msgid "Next slide, or next effect"
+msgstr "Следващ кадър или ефект"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104120\n"
+"help.text"
+msgid "Left click, right arrow, down arrow, spacebar, page down, enter, return, 'N'"
+msgstr "Щракване с ляв бутон, стрелка надясно, стрелка надолу, интервал, Page Down, Enter, Return, N"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104165\n"
+"help.text"
+msgid "Previous slide, or previous effect"
+msgstr "Предишен кадър или ефект"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104115\n"
+"help.text"
+msgid "Right click, left arrow, up arrow, page up, backspace, 'P'"
+msgstr "Щракване с десен бутон, стрелка наляво, стрелка нагоре, Page Up, Backspace, P"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104164\n"
+"help.text"
+msgid "First slide"
+msgstr "Първи кадър"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104148\n"
+"help.text"
+msgid "Home"
+msgstr "Home"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104221\n"
+"help.text"
+msgid "Last slide"
+msgstr "Последен кадър"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104277\n"
+"help.text"
+msgid "End"
+msgstr "End"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104279\n"
+"help.text"
+msgid "Previous slide without effects"
+msgstr "Предишен кадър без ефекти"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110423\n"
+"help.text"
+msgid "Alt+Page Up"
+msgstr "Alt+Page Up"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110427\n"
+"help.text"
+msgid "Next slide without effects"
+msgstr "Следващ кадър без ефекти"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104261\n"
+"help.text"
+msgid "Alt+Page Down"
+msgstr "Alt+Page Down"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104383\n"
+"help.text"
+msgid "Black/Unblack the screen"
+msgstr "Превключване черен/нормален екран"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110431\n"
+"help.text"
+msgid "'B', '.'"
+msgstr "B, '.'"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104311\n"
+"help.text"
+msgid "White/Unwhite the screen"
+msgstr "Превключване бял/нормален екран"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104359\n"
+"help.text"
+msgid "'W', ','"
+msgstr "W, ','"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104336\n"
+"help.text"
+msgid "End slide show"
+msgstr "Край на прожекцията"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104419\n"
+"help.text"
+msgid "Esc, '-'"
+msgstr "Esc, -"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104460\n"
+"help.text"
+msgid "Go to slide number"
+msgstr "Скок към кадър с номер"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110440\n"
+"help.text"
+msgid "Number followed by Enter"
+msgstr "Число, последвано от Enter"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104427\n"
+"help.text"
+msgid "Grow/Shrink size of notes font"
+msgstr "По-едър/по-ситен шрифт в бележките"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104442\n"
+"help.text"
+msgid "'G', 'S'"
+msgstr "G, S"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104473\n"
+"help.text"
+msgid "Scroll notes up/down"
+msgstr "Превъртане на бележките нагоре/надолу"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110459\n"
+"help.text"
+msgid "'A', 'Z'"
+msgstr "A, Z"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110456\n"
+"help.text"
+msgid "Move caret in notes view backward/forward"
+msgstr "Преместване на курсора напред/назад в изгледа за бележки"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110457\n"
+"help.text"
+msgid "'H', 'L'"
+msgstr "H, L"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104566\n"
+"help.text"
+msgid "Show the Presenter Console"
+msgstr "Показване на Presenter Console"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104544\n"
+"help.text"
+msgid "Ctrl-'1'"
+msgstr "Ctrl+1"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104535\n"
+"help.text"
+msgid "Show the Presentation Notes"
+msgstr "Показване на бележките за презентацията"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104680\n"
+"help.text"
+msgid "Ctrl-'2'"
+msgstr "Ctrl+2"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104634\n"
+"help.text"
+msgid "Show the Slides Overview"
+msgstr "Показване на общ преглед на кадрите"
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104632\n"
+"help.text"
+msgid "Ctrl-'3'"
+msgstr "Ctrl+3"
diff --git a/source/bg/helpcontent2/source/text/simpress/guide.po b/source/bg/helpcontent2/source/text/simpress/guide.po
index ef1a86745f0..0c4386924a6 100644
--- a/source/bg/helpcontent2/source/text/simpress/guide.po
+++ b/source/bg/helpcontent2/source/text/simpress/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: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-11-27 15:24+0000\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
+"PO-Revision-Date: 2017-12-19 14:38+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1511796271.000000\n"
+"X-POOTLE-MTIME: 1513694333.000000\n"
#: 3d_create.xhp
msgctxt ""
@@ -2160,6 +2160,14 @@ msgctxt ""
msgid "<link href=\"https://itunes.apple.com/us/app/libreoffice-remote-for-impress/id806879890?mt=8\" name=\"Impress Remote in Apple Itunes Store\">Impress Remote in Apple iTunes Store</link>"
msgstr "<link href=\"https://itunes.apple.com/us/app/libreoffice-remote-for-impress/id806879890?mt=8\" name=\"Impress Remote in Apple Itunes Store\">Impress Remote в Apple iTunes Store</link>"
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id631512838846263\n"
+"help.text"
+msgid "<link href=\"text/simpress/guide/presenter_console.xhp\" name=\"The Presenter Console\">The Presenter Console</link>"
+msgstr "<link href=\"text/simpress/guide/presenter_console.xhp\" name=\"The Presenter Console\">Presenter Console</link>"
+
#: individual.xhp
msgctxt ""
"individual.xhp\n"
@@ -4648,6 +4656,278 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/insert_bitmap.xhp\">Insert images</link>"
msgstr "<link href=\"text/shared/guide/insert_bitmap.xhp\">Вмъкване на изображения</link>"
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"tit\n"
+"help.text"
+msgid "Using the Presenter Console"
+msgstr "Работа с Presenter Console"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id190820172252141064\n"
+"help.text"
+msgid "<link href=\"text/simpress/guide/presenter_console.xhp\">Using the Presenter Console</link>"
+msgstr "<link href=\"text/simpress/guide/presenter_console.xhp\">Работа с Presenter Console</link>"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id190820172252291885\n"
+"help.text"
+msgid "<ahelp hid=\".\">The Presenter Console displays the slide show in an external screen (projector or large television), while the presentation controls are shown in the computer screen.</ahelp>"
+msgstr "<ahelp hid=\".\">Програмата Presenter Console показва прожекцията на допълнителен екран (проектор или голям телевизор), докато средствата за управление на презентацията се показват на екрана на компютъра.</ahelp>"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id190820172252291668\n"
+"help.text"
+msgid "The Presenter Console provides extra control over slide shows by using different views on your computer display and on the display seen by the audience. The view you see on your computer display includes the current slide, the upcoming slide, optionally the slide notes, and a presentation timer."
+msgstr "Presenter Console позволява допълнителен контрол върху презентациите, като показва различни изгледи на компютърния екран и на екрана за публиката. Изгледът на екрана на компютъра включва текущия и следващия кадър, бележките към кадрите (по желание) и таймер за презентацията."
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id91512579485395\n"
+"help.text"
+msgid "The Presenter Console works only on an operating system that supports multiple displays and only when two displays are connected (one may be the laptop built-in display)."
+msgstr "Presenter Console работи само в операционни системи, които поддържа няколко дисплея, и само когато са свързани два дисплея (единият може да е вграденият дисплей на лаптопа)."
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id391512577186778\n"
+"help.text"
+msgid "Presenter console activation"
+msgstr "Активиране на Presenter Console"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id21512577205388\n"
+"help.text"
+msgid "To enable the Presenter Console:"
+msgstr "За да разрешите Presenter Console:"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id351512577323192\n"
+"help.text"
+msgid "<item type=\"item_type\">Tools - Options - %PRODUCTNAME Impres - General</item>"
+msgstr "<item type=\"item_type\">Инструменти - Настройки - %PRODUCTNAME Impres - Общи</item>"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id411512577389978\n"
+"help.text"
+msgid "Select <emph>Enable Presenter Console</emph> in the Presentation area."
+msgstr "Изберете <emph>Разрешена конзола за водещия</emph> в областта „Презентация“."
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id261512578116942\n"
+"help.text"
+msgid "<image src=\"media/screenshots/cui/ui/optionsdialog/impressoptionsgeneraldialog.png\" width=\"793px\" height=\"538px\"> <alt id=\"alt_id821512578116950\">Enable Presenter Console option</alt> </image>"
+msgstr "<image src=\"media/screenshots/cui/ui/optionsdialog/impressoptionsgeneraldialog.png\" width=\"793px\" height=\"538px\"><alt id=\"alt_id821512578116950\">Настройката „Разрешена конзола за водещия“</alt></image>"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id371512836579028\n"
+"help.text"
+msgid "To activate the Presenter Console:"
+msgstr "За да активирате Presenter Console:"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id101512577717469\n"
+"help.text"
+msgid "Connect an auxiliary display to your computer,"
+msgstr "Свържете допълнителен дисплей с компютъра си."
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id391512577726275\n"
+"help.text"
+msgid "Run the slide show. Press F5 or Shift-F5 or choose <item type=\"menuitem\">Slide Show - Start from First Slide</item> or <item type=\"menuitem\">Start from Current Slide</item>."
+msgstr "Стартирайте прожекцията. Натиснете F5 или Shift+F5 или изберете <item type=\"menuitem\">Прожекция - Започване от първия кадър</item> или <item type=\"menuitem\">Започване от текущия кадър</item>."
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id911512577777440\n"
+"help.text"
+msgid "Presenter console controls"
+msgstr "Управление на Presenter console"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id721512827886185\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sd_PresenterConsole04.png\" id=\"img_id401512827886185\" width=\"640\" height=\"72\"> <alt id=\"alt_id71512827886185\">Presenter Console Controls</alt> </image>"
+msgstr "<image src=\"media/helpimg/sd_PresenterConsole04.png\" id=\"img_id401512827886185\" width=\"640\" height=\"72\"><alt id=\"alt_id71512827886185\">Управление на Presenter console</alt></image>"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id71512828085688\n"
+"help.text"
+msgid "<emph>Previous</emph>: move to previous slide"
+msgstr "<emph>Предишен</emph>: преминаване към следващия кадър"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id61512828110394\n"
+"help.text"
+msgid "<emph>Next</emph>: move to next slide"
+msgstr "<emph>Следващ</emph>: преминаване към следващия кадър"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id981512828129990\n"
+"help.text"
+msgid "<emph>Notes</emph>: display the Presenter Console Notes mode"
+msgstr "<emph>Бележки</emph>: показване на режима „Бележки“ на Presenter Console"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id101512828220096\n"
+"help.text"
+msgid "<emph>Slide</emph>: display the Presenter Console Slide sorter mode"
+msgstr "<emph>Кадри</emph>: показване на режима „Сортиране на кадри“ на Presenter Console"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id241512828268769\n"
+"help.text"
+msgid "<emph>Restart</emph>: restart the presentation from slide one."
+msgstr "<emph>Рестартиране</emph>: рестартиране на презентацията от първия кадър"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id731512828322875\n"
+"help.text"
+msgid "<emph>Exchange</emph>: Switch the displays between the computer and the presentation display."
+msgstr "<emph>Размяна</emph>: размяна на изгледите между екрана на компютъра и екрана за презентиране"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id891512828892146\n"
+"help.text"
+msgid "<emph>Close</emph>: In the Notes and Slide Sorter mode, return to the Normal mode."
+msgstr "<emph>Затваряне</emph>: връщане към обикновен режим от режимите „Бележки“ и „Сортиране на кадри“"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id281512836182615\n"
+"help.text"
+msgid "Presenter Console Keyboard Shortcuts"
+msgstr "Клавишни комбинации за Presenter Console"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id791512827206666\n"
+"help.text"
+msgid "Presenter Console modes"
+msgstr "Режими на Presenter Console"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id181512827240072\n"
+"help.text"
+msgid "Normal Mode"
+msgstr "Нормален режим"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id341512828780413\n"
+"help.text"
+msgid "The Normal mode shows the current slide on the left and the next slide on the right of the computer display."
+msgstr "В нормалния режим на дисплея на компютъра се показва текущият кадър отляво и следващият отдясно."
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id311512825411947\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sd_PresenterConsole01.png\" id=\"img_id481512825411947\" width=\"640\" height=\"360\"> <alt id=\"alt_id151512825411947\">resenter console normal mode</alt> </image>"
+msgstr "<image src=\"media/helpimg/sd_PresenterConsole01.png\" id=\"img_id481512825411947\" width=\"640\" height=\"360\"><alt id=\"alt_id151512825411947\">Нормален режим на Presenter Console</alt></image>"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id51512827289580\n"
+"help.text"
+msgid "Notes mode"
+msgstr "Режим „Бележки“"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id711512828774884\n"
+"help.text"
+msgid "The Notes mode displays the current slide on the left, the slides notes on the right and the next slide below the current slide."
+msgstr "В режима „Бележки“ се показва текущият кадър отляво, бележките – отдясно и следващият кадър под текущия."
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id961512827293400\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sd_PresenterConsole03.png\" id=\"img_id651512827293401\" width=\"640\" height=\"360\"> <alt id=\"alt_id881512827293401\">Notes mode</alt> </image>"
+msgstr "<image src=\"media/helpimg/sd_PresenterConsole03.png\" id=\"img_id651512827293401\" width=\"640\" height=\"360\"><alt id=\"alt_id881512827293401\">Режим „Бележки“</alt></image>"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id801512827429345\n"
+"help.text"
+msgid "Slide sorter mode"
+msgstr "Режим „Сортиране на кадри“"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id571512828767315\n"
+"help.text"
+msgid "The Slide Sorter mode displays all slides in the computer screen and allows to display the selected slide out of the presentation order."
+msgstr "В режима „Сортиране на кадри“ на екрана на компютъра се показват всички кадри и е възможно да се покаже избран кадър извън реда на прожектиране."
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id721512827434997\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sd_PresenterConsole02.png\" id=\"img_id831512827434997\" width=\"640\" height=\"360\"> <alt id=\"alt_id221512827434997\">Slide sorter mode</alt> </image>"
+msgstr "<image src=\"media/helpimg/sd_PresenterConsole02.png\" id=\"img_id831512827434997\" width=\"640\" height=\"360\"><alt id=\"alt_id221512827434997\">Режим „Сортиране на кадри“</alt></image>"
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id311512837936329\n"
+"help.text"
+msgid "<link href=\"text/simpress/guide/impress_remote.xhp\" name=\"Impress Remote User Guide\">Impress Remote User Guide</link>"
+msgstr "<link href=\"text/simpress/guide/impress_remote.xhp\" name=\"Impress Remote User Guide\">Ръководство за потребителя на Impress Remote</link>"
+
#: print_tofit.xhp
msgctxt ""
"print_tofit.xhp\n"
diff --git a/source/bg/helpcontent2/source/text/smath.po b/source/bg/helpcontent2/source/text/smath.po
index fe259e79733..535213ecf7c 100644
--- a/source/bg/helpcontent2/source/text/smath.po
+++ b/source/bg/helpcontent2/source/text/smath.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: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2017-10-26 19:58+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1509047903.000000\n"
#: main0000.xhp
@@ -120,70 +120,6 @@ msgctxt ""
msgid "This menu contains the general commands for working with formula documents, such as open, save and print."
msgstr "Менюто съдържа основните команди за работа с документи – формули, като отваряне, запазване и печат."
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3148489\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
-msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Отваряне</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3149501\n"
-"help.text"
-msgid "<link href=\"text/shared/autopi/01000000.xhp\" name=\"AutoPilot\">Wizards</link>"
-msgstr "<link href=\"text/shared/autopi/01000000.xhp\" name=\"AutoPilot\">Помощници</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"par_id3148840\n"
-"help.text"
-msgid "Use a Wizard to create interactive documents, such as professional letters and faxes, into which you can insert your saved formulas."
-msgstr "С помощниците можете да създавате интерактивни документи, например професионални писма и факсове, в които могат да се вмъкват запазени преди това формули."
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3153251\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
-msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Запазване като</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3149871\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
-msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Версии</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3146325\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
-msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Свойства</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3155621\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
-msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Печат</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3145826\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">Printer Setup</link>"
-msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">Настройки на принтера</link>"
-
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
diff --git a/source/bg/helpcontent2/source/text/swriter/01.po b/source/bg/helpcontent2/source/text/swriter/01.po
index 58ae9f38a10..7c155a8ceee 100644
--- a/source/bg/helpcontent2/source/text/swriter/01.po
+++ b/source/bg/helpcontent2/source/text/swriter/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-12-06 15:59+0100\n"
-"PO-Revision-Date: 2017-12-14 22:17+0000\n"
+"PO-Revision-Date: 2017-12-19 09:42+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
"Language: bg\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1513289867.000000\n"
+"X-POOTLE-MTIME: 1513676564.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -20647,7 +20647,7 @@ msgctxt ""
"par_id3156316\n"
"help.text"
msgid "To create a bulleted list, type a hyphen (-), star (*), or plus sign (+), followed by a space or tab at the beginning of a paragraph."
-msgstr "За да създадете списък с водачи, въведете в началото на абзаца тире (-), звездичка (*) или знак \"плюс\" (+), последван от интервал или табулатор."
+msgstr "За да създадете списък с водещи знаци, въведете в началото на абзаца тире (-), звездичка (*) или плюс (+), последван от интервал или табулация."
#: 05150200.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/swriter/guide.po b/source/bg/helpcontent2/source/text/swriter/guide.po
index 16d7bfd3870..b5b6e519fb1 100644
--- a/source/bg/helpcontent2/source/text/swriter/guide.po
+++ b/source/bg/helpcontent2/source/text/swriter/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: 2017-12-06 15:59+0100\n"
-"PO-Revision-Date: 2017-12-14 22:18+0000\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
+"PO-Revision-Date: 2017-12-19 11:53+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1513289883.000000\n"
+"X-POOTLE-MTIME: 1513684390.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"par_id3147773\n"
"help.text"
msgid "Type 1., i., or I. to start a numbered list. Type * or - to start a bulleted list. You can also type a right parenthesis after the number instead of a period , for example, 1) or i)."
-msgstr "Въведете 1., i. или I., за да започнете номериран списък. Въведете * или -, за да започнете списък с водачи. Освен това можете да въведете дясна скоба вместо точка, например 1) или i)."
+msgstr "Въведете 1., i. или I., за да започнете номериран списък. Въведете * или -, за да започнете списък с водещи знаци. Освен това можете да въведете дясна скоба вместо точка, например 1) или i)."
#: auto_numbering.xhp
msgctxt ""
@@ -7213,7 +7213,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item> and click the <emph>Numbering</emph> tab."
msgstr "Изберете <item type=\"menuitem\">Инструменти - Номерация на глави</item> и отворете раздела <emph>Номерация</emph>."
#: indices_enter.xhp
@@ -15704,6 +15704,14 @@ msgctxt ""
msgid "Moves the cursor to the footer."
msgstr "Премества курсора в долния колонтитул."
+#: text_nav_keyb.xhp
+msgctxt ""
+"text_nav_keyb.xhp\n"
+"par_id921513466017508\n"
+"help.text"
+msgid "<link href=\"text/shared/02/20050000.xhp\" name=\"Selection modes\">Selection Modes</link>"
+msgstr "<link href=\"text/shared/02/20050000.xhp\" name=\"Selection modes\">Режими на избиране</link>"
+
#: text_rotate.xhp
msgctxt ""
"text_rotate.xhp\n"
@@ -16230,7 +16238,7 @@ msgctxt ""
"par_id3154416\n"
"help.text"
msgid "To change the formatting of a bulleted list, choose <item type=\"menuitem\">Format - Bullets and Numbering</item>."
-msgstr "За да промените форматирането на списък с водачи, изберете <item type=\"menuitem\">Форматиране - Водачи и номерация</item>."
+msgstr "За да промените форматирането на списък с водещи знаци, изберете <item type=\"menuitem\">Форматиране - Водачи и номерация</item>."
#: using_numbered_lists.xhp
msgctxt ""
diff --git a/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po b/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po
index 91b481ff582..f7b3839ee16 100644
--- a/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/bg/officecfg/registry/data/org/openoffice/Office/UI.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: 2017-12-06 15:59+0100\n"
-"PO-Revision-Date: 2017-12-15 21:09+0000\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
+"PO-Revision-Date: 2017-12-19 09:49+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1513372162.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1513676945.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -2767,8 +2767,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:Hide\n"
"Label\n"
"value.text"
-msgid "~Hide Sheets"
-msgstr "~Скриване на листове"
+msgid "~Hide Sheet"
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -3514,17 +3514,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:EditLinks\n"
"Label\n"
"value.text"
-msgid "Edit Lin~ks..."
-msgstr "~Редактиране на връзки..."
-
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:EditLinks\n"
-"ContextLabel\n"
-"value.text"
-msgid "Lin~ks..."
-msgstr "~Връзки..."
+msgid "Lin~ks to External Files..."
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -6841,15 +6832,6 @@ msgstr "Кадър"
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Commands..uno:SlideNavigateMenu\n"
-"Label\n"
-"value.text"
-msgid "Navigate"
-msgstr "Навигация"
-
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:SlideMoveMenu\n"
"Label\n"
"value.text"
@@ -7453,6 +7435,15 @@ msgstr "~Номер на страница"
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlideField\n"
+"Label\n"
+"value.text"
+msgid "~Slide Number"
+msgstr "Номер на кадър"
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:InsertPageTitleField\n"
"Label\n"
"value.text"
@@ -7462,6 +7453,15 @@ msgstr "Заглавие на страницата"
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlideTitleField\n"
+"Label\n"
+"value.text"
+msgid "Slide Tit~le"
+msgstr "Заглавие на кадър"
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:InsertPagesField\n"
"Label\n"
"value.text"
@@ -7471,6 +7471,15 @@ msgstr "~Брой на страници"
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlidesField\n"
+"Label\n"
+"value.text"
+msgid "Slide ~Count"
+msgstr "Брой кадри"
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:ModifyField\n"
"Label\n"
"value.text"
@@ -7690,8 +7699,8 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:ManageLinks\n"
"Label\n"
"value.text"
-msgid "Lin~ks..."
-msgstr "~Връзки..."
+msgid "Lin~ks to External Files..."
+msgstr ""
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7780,8 +7789,8 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:ImportSlideFromFile\n"
"Label\n"
"value.text"
-msgid "Import Slides..."
-msgstr "Импортиране на кадри..."
+msgid "Insert Slide from File..."
+msgstr ""
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8992,6 +9001,15 @@ msgstr "~Номер на страница..."
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Popups..uno:InsertSlideNumber\n"
+"Label\n"
+"value.text"
+msgid "S~lide Number..."
+msgstr "Номер на кадър..."
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:InsertDateAndTime\n"
"Label\n"
"value.text"
@@ -17188,7 +17206,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Bulleted List"
-msgstr "Списък с водачи"
+msgstr "Списък с водещи знаци"
#: GenericCommands.xcu
msgctxt ""
@@ -17197,7 +17215,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Toggle Bulleted List"
-msgstr "Превключване на списък с водачи"
+msgstr "Превключване на списък с водещи знаци"
#: GenericCommands.xcu
msgctxt ""
@@ -17367,8 +17385,8 @@ msgctxt ""
"..GenericCommands.UserInterface.Commands..uno:InsertDoc\n"
"Label\n"
"value.text"
-msgid "Doc~ument..."
-msgstr "Документ..."
+msgid "Text from File..."
+msgstr ""
#: GenericCommands.xcu
msgctxt ""
@@ -17544,6 +17562,15 @@ msgstr "Странична лента „Стилове“"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ViewSidebarStyles\n"
+"Label\n"
+"value.text"
+msgid "Styles"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:OutlineRight\n"
"Label\n"
"value.text"
@@ -19146,24 +19173,6 @@ msgstr "Вмъкване на емоджи"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
-"Label\n"
-"value.text"
-msgid "Charmap"
-msgstr "Таблица на знаците"
-
-#: GenericCommands.xcu
-msgctxt ""
-"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
-"TooltipLabel\n"
-"value.text"
-msgid "Insert Special Characters"
-msgstr "Вмъкване на специални знаци"
-
-#: GenericCommands.xcu
-msgctxt ""
-"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:TransformRotationX\n"
"Label\n"
"value.text"
@@ -20307,6 +20316,33 @@ msgstr "Вмъкване на специален знак"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"Label\n"
+"value.text"
+msgid "Symbol"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"ContextLabel\n"
+"value.text"
+msgid "S~pecial Character..."
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Insert Special Characters"
+msgstr "Вмъкване на специални знаци"
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ViewDataSourceBrowser\n"
"Label\n"
"value.text"
@@ -20352,6 +20388,15 @@ msgstr "Изпращане през Bluetooth..."
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ExportAsMenu\n"
+"Label\n"
+"value.text"
+msgid "~Export As"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportToPDF\n"
"Label\n"
"value.text"
@@ -20418,8 +20463,8 @@ msgctxt ""
"..GenericCommands.UserInterface.Commands..uno:ExportToEPUB\n"
"ContextLabel\n"
"value.text"
-msgid "~Export as EPUB..."
-msgstr "Експортиране като EPUB..."
+msgid "Export as E~PUB..."
+msgstr ""
#: GenericCommands.xcu
msgctxt ""
@@ -22770,6 +22815,15 @@ msgctxt ""
msgid "~Restart in Safe Mode..."
msgstr "Рестартиране в безопасен режим..."
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:NavigateMenu\n"
+"Label\n"
+"value.text"
+msgid "Navigate"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25368,8 +25422,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:ShowHiddenParagraphs\n"
"Label\n"
"value.text"
-msgid "~Hidden Paragraphs"
-msgstr "~Скрити абзаци"
+msgid "Field ~Hidden Paragraphs"
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
@@ -27330,8 +27384,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:LinkDialog\n"
"Label\n"
"value.text"
-msgid "Lin~ks..."
-msgstr "~Връзки..."
+msgid "Lin~ks to External Files..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
@@ -30022,7 +30076,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bullet List"
-msgstr "Списък с водачи"
+msgstr "Списък с водещи знаци"
#: WriterCommands.xcu
msgctxt ""
@@ -30031,16 +30085,16 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Bullet List Style"
-msgstr "Стил „Списък с водачи“"
+msgstr "Стил „Списък с водещи знаци“"
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 1&amp;FamilyName:string=NumberingStyles\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 123&amp;FamilyName:string=NumberingStyles\n"
"Label\n"
"value.text"
msgid "Number List"
-msgstr "Списък с номера"
+msgstr "Номериран списък"
#: WriterCommands.xcu
msgctxt ""
@@ -30063,11 +30117,65 @@ msgstr "Стил „Номериран списък“"
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 4&amp;FamilyName:string=NumberingStyles\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering ABC&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Uppercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaListStyle\n"
"Label\n"
"value.text"
-msgid "Roman List"
-msgstr "Списък с римски номера"
+msgid "Alphabet Uppercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Alphabet Uppercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering abc&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaLowListStyle\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaLowListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Alphabet Lowercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering IVX&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Roman Uppercase List"
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
@@ -30075,8 +30183,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Popups..uno:RomanListStyle\n"
"Label\n"
"value.text"
-msgid "Roman List"
-msgstr "Списък с римски числа"
+msgid "Roman Uppercase List"
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
@@ -30084,8 +30192,35 @@ msgctxt ""
"..WriterCommands.UserInterface.Popups..uno:RomanListStyle\n"
"TooltipLabel\n"
"value.text"
-msgid "Roman List Style"
-msgstr "Стил „Списък с римски числа“"
+msgid "Roman Uppercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering ivx&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Roman Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:RomanLowListStyle\n"
+"Label\n"
+"value.text"
+msgid "Roman Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:RomanLowListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Roman Lowercase List Style"
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/bg/sd/messages.po b/source/bg/sd/messages.po
index 6dd5d03cb94..1186188cf54 100644
--- a/source/bg/sd/messages.po
+++ b/source/bg/sd/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: 2017-11-22 15:29+0100\n"
-"PO-Revision-Date: 2017-12-02 13:18+0000\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
+"PO-Revision-Date: 2017-12-19 09:52+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1512220696.000000\n"
+"X-POOTLE-MTIME: 1513677121.000000\n"
#: DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
@@ -1550,863 +1550,873 @@ msgid "Master Slide"
msgstr "Кадър образец"
#: strings.hrc:287
+msgctxt "STR_MASTERSLIDE_LABEL"
+msgid "Master Slide:"
+msgstr "Кадър образец:"
+
+#: strings.hrc:288
msgctxt "STR_MASTERPAGE_NAME"
msgid "Master Page"
msgstr "Страница образец"
-#: strings.hrc:288
+#: strings.hrc:289
+msgctxt "STR_MASTERPAGE_LABEL"
+msgid "Master Page:"
+msgstr "Страница образец:"
+
+#: strings.hrc:290
msgctxt "STR_NOTES"
msgid "(Notes)"
msgstr "(Бележки)"
-#: strings.hrc:289
+#: strings.hrc:291
msgctxt "STR_HANDOUT"
msgid "Handouts"
msgstr "Листовки"
-#: strings.hrc:290
+#: strings.hrc:292
msgctxt "STR_PRESOBJ_MPTITLE"
msgid "Click to edit the title text format"
msgstr "Щракнете, за да редактирате формата на заглавието"
-#: strings.hrc:291
+#: strings.hrc:293
msgctxt "STR_PRESOBJ_MPOUTLINE"
msgid "Click to edit the outline text format"
msgstr "Щракнете, за да редактирате формата на плана"
-#: strings.hrc:292
+#: strings.hrc:294
msgctxt "STR_PRESOBJ_MPOUTLLAYER2"
msgid "Second Outline Level"
msgstr "Второ ниво на плана"
-#: strings.hrc:293
+#: strings.hrc:295
msgctxt "STR_PRESOBJ_MPOUTLLAYER3"
msgid "Third Outline Level"
msgstr "Трето ниво на плана"
-#: strings.hrc:294
+#: strings.hrc:296
msgctxt "STR_PRESOBJ_MPOUTLLAYER4"
msgid "Fourth Outline Level"
msgstr "Четвърто ниво на плана"
-#: strings.hrc:295
+#: strings.hrc:297
msgctxt "STR_PRESOBJ_MPOUTLLAYER5"
msgid "Fifth Outline Level"
msgstr "Пето ниво на плана"
-#: strings.hrc:296
+#: strings.hrc:298
msgctxt "STR_PRESOBJ_MPOUTLLAYER6"
msgid "Sixth Outline Level"
msgstr "Шесто ниво на плана"
-#: strings.hrc:297
+#: strings.hrc:299
msgctxt "STR_PRESOBJ_MPOUTLLAYER7"
msgid "Seventh Outline Level"
msgstr "Седмо ниво на плана"
-#: strings.hrc:298
+#: strings.hrc:300
msgctxt "STR_PRESOBJ_MPNOTESTITLE"
msgid "Click to move the slide"
msgstr "Щракнете, за да преместите кадъра"
-#: strings.hrc:299
+#: strings.hrc:301
msgctxt "STR_PRESOBJ_MPNOTESTEXT"
msgid "Click to edit the notes format"
msgstr "Щракнете, за да редактирате формата на бележките"
-#: strings.hrc:300
+#: strings.hrc:302
msgctxt "STR_PRESOBJ_TITLE"
msgid "Click to add Title"
msgstr "Щракнете, за да добавите заглавие"
-#: strings.hrc:301
+#: strings.hrc:303
msgctxt "STR_PRESOBJ_OUTLINE"
msgid "Click to add Text"
msgstr "Щракнете, за да добавите текст"
-#: strings.hrc:302
+#: strings.hrc:304
msgctxt "STR_PRESOBJ_TEXT"
msgid "Click to add Text"
msgstr "Щракнете, за да добавите текст"
-#: strings.hrc:303
+#: strings.hrc:305
msgctxt "STR_PRESOBJ_NOTESTEXT"
msgid "Click to add Notes"
msgstr "Щракнете, за да добавите бележки"
-#: strings.hrc:304
+#: strings.hrc:306
msgctxt "STR_PRESOBJ_GRAPHIC"
msgid "Double-click to add an Image"
msgstr "Щракнете двукратно, за да добавите изображение"
-#: strings.hrc:305
+#: strings.hrc:307
msgctxt "STR_PRESOBJ_OBJECT"
msgid "Double-click to add an Object"
msgstr "Щракнете двукратно, за да добавите обект"
-#: strings.hrc:306
+#: strings.hrc:308
msgctxt "STR_PRESOBJ_CHART"
msgid "Double-click to add a Chart"
msgstr "Щракнете двукратно, за да добавите диаграма"
-#: strings.hrc:307
+#: strings.hrc:309
msgctxt "STR_PRESOBJ_ORGCHART"
msgid "Double-click to add an Organization Chart"
msgstr "Щракнете двукратно, за да добавите йерархична диаграма"
-#: strings.hrc:308
+#: strings.hrc:310
msgctxt "STR_PRESOBJ_TABLE"
msgid "Double-click to add a Spreadsheet"
msgstr "Щракнете двукратно, за да добавите електронна таблица"
-#: strings.hrc:309
+#: strings.hrc:311
msgctxt "STR_LAYOUT_DEFAULT_NAME"
msgid "Default"
msgstr "По подразбиране"
-#: strings.hrc:310
+#: strings.hrc:312
msgctxt "STR_LAYOUT_DEFAULT_TITLE_NAME"
msgid "Title"
msgstr "Заглавие"
-#: strings.hrc:311
+#: strings.hrc:313
msgctxt "STR_STANDARD_STYLESHEET_NAME"
msgid "Default"
msgstr "По подразбиране"
-#: strings.hrc:312
+#: strings.hrc:314
msgctxt "STR_UNDO_MOVEPAGES"
msgid "Move slides"
msgstr "Местене на кадри"
-#: strings.hrc:313
+#: strings.hrc:315
msgctxt "STR_POOLSHEET_MEASURE"
msgid "Dimension Line"
msgstr "Размерна линия"
-#: strings.hrc:314
+#: strings.hrc:316
msgctxt "STR_POOLSHEET_OBJNOLINENOFILL"
msgid "Object with no fill and no line"
msgstr "Обект без запълване и очертание"
-#: strings.hrc:315
+#: strings.hrc:317
msgctxt "STR_POOLSHEET_OBJWITHARROW"
msgid "Object with arrow"
msgstr "Обект със стрелка"
-#: strings.hrc:316
+#: strings.hrc:318
msgctxt "STR_POOLSHEET_OBJWITHSHADOW"
msgid "Object with shadow"
msgstr "Обект със сянка"
-#: strings.hrc:317
+#: strings.hrc:319
msgctxt "STR_POOLSHEET_OBJWITHOUTFILL"
msgid "Object without fill"
msgstr "Обект без запълване"
-#: strings.hrc:318
+#: strings.hrc:320
msgctxt "STR_POOLSHEET_TEXT"
msgid "Text"
msgstr "Текст"
-#: strings.hrc:319
+#: strings.hrc:321
msgctxt "STR_POOLSHEET_TEXTBODY"
msgid "Text body"
msgstr "Основен текст"
-#: strings.hrc:320
+#: strings.hrc:322
msgctxt "STR_POOLSHEET_TEXTBODY_JUSTIFY"
msgid "Text body justified"
msgstr "Основен текст, двустранно подравнен"
-#: strings.hrc:321
+#: strings.hrc:323
msgctxt "STR_POOLSHEET_TEXTBODY_INDENT"
msgid "First line indent"
msgstr "Отстъп на първия ред"
-#: strings.hrc:322
+#: strings.hrc:324
msgctxt "STR_POOLSHEET_TITLE"
msgid "Title"
msgstr "Заглавие"
-#: strings.hrc:323
+#: strings.hrc:325
msgctxt "STR_POOLSHEET_TITLE1"
msgid "Title1"
msgstr "Заглавие1"
-#: strings.hrc:324
+#: strings.hrc:326
msgctxt "STR_POOLSHEET_TITLE2"
msgid "Title2"
msgstr "Заглавие2"
-#: strings.hrc:325
+#: strings.hrc:327
msgctxt "STR_POOLSHEET_HEADLINE"
msgid "Heading"
msgstr "Заглавие"
-#: strings.hrc:326
+#: strings.hrc:328
msgctxt "STR_POOLSHEET_HEADLINE1"
msgid "Heading1"
msgstr "Заглавие1"
-#: strings.hrc:327
+#: strings.hrc:329
msgctxt "STR_POOLSHEET_HEADLINE2"
msgid "Heading2"
msgstr "Заглавие2"
-#: strings.hrc:328
+#: strings.hrc:330
msgctxt "STR_PSEUDOSHEET_TITLE"
msgid "Title"
msgstr "Заглавие"
-#: strings.hrc:329
+#: strings.hrc:331
msgctxt "STR_PSEUDOSHEET_SUBTITLE"
msgid "Subtitle"
msgstr "Подзаглавие"
-#: strings.hrc:330
+#: strings.hrc:332
msgctxt "STR_PSEUDOSHEET_OUTLINE"
msgid "Outline"
msgstr "План"
-#: strings.hrc:331
+#: strings.hrc:333
msgctxt "STR_PSEUDOSHEET_BACKGROUNDOBJECTS"
msgid "Background objects"
msgstr "Фонови обекти"
-#: strings.hrc:332
+#: strings.hrc:334
msgctxt "STR_PSEUDOSHEET_BACKGROUND"
msgid "Background"
msgstr "Фон"
-#: strings.hrc:333
+#: strings.hrc:335
msgctxt "STR_PSEUDOSHEET_NOTES"
msgid "Notes"
msgstr "Бележки"
-#: strings.hrc:334
+#: strings.hrc:336
msgctxt "STR_POWERPOINT_IMPORT"
msgid "PowerPoint Import"
msgstr "Импортиране от PowerPoint"
-#: strings.hrc:335
+#: strings.hrc:337
msgctxt "STR_SAVE_DOC"
msgid "Save Document"
msgstr "Записване на документ"
-#: strings.hrc:336
+#: strings.hrc:338
msgctxt "STR_POOLSHEET_BANDED_CELL"
msgid "Banding cell"
msgstr "Свързване на клетка"
-#: strings.hrc:337
+#: strings.hrc:339
msgctxt "STR_POOLSHEET_HEADER"
msgid "Header"
msgstr "Заглавие"
-#: strings.hrc:338
+#: strings.hrc:340
msgctxt "STR_POOLSHEET_TOTAL"
msgid "Total line"
msgstr "Сумарен ред"
-#: strings.hrc:339
+#: strings.hrc:341
msgctxt "STR_POOLSHEET_FIRST_COLUMN"
msgid "First column"
msgstr "Първа колона"
-#: strings.hrc:340
+#: strings.hrc:342
msgctxt "STR_POOLSHEET_LAST_COLUMN"
msgid "Last column"
msgstr "Последна колона"
-#: strings.hrc:341
+#: strings.hrc:343
msgctxt "STR_ENTER_PIN"
msgid "Enter PIN:"
msgstr "Въведете PIN:"
-#: strings.hrc:342
+#: strings.hrc:344
msgctxt "STR_DEAUTHORISE_CLIENT"
msgid "Remove client authorisation"
msgstr "Премахване пълномощията на клиента"
-#: strings.hrc:343
+#: strings.hrc:345
msgctxt "STR_SHRINK_FONT_SIZE"
msgid "Shrink font size"
msgstr "Смаляване на шрифта"
-#: strings.hrc:344
+#: strings.hrc:346
msgctxt "STR_GROW_FONT_SIZE"
msgid "Grow font size"
msgstr "Уголемяване на шрифта"
#. Names and descriptions of the Draw/Impress accessibility views
#. ==============================================================
-#: strings.hrc:349
+#: strings.hrc:351
msgctxt "SID_SD_A11Y_D_DRAWVIEW_N"
msgid "Drawing View"
msgstr "Изглед Рисуване"
-#: strings.hrc:350
+#: strings.hrc:352
msgctxt "SID_SD_A11Y_D_DRAWVIEW_D"
msgid "This is where you create and edit drawings."
msgstr "Тук създавате и редактирате рисунки."
-#: strings.hrc:351
+#: strings.hrc:353
msgctxt "SID_SD_A11Y_I_DRAWVIEW_N"
msgid "Drawing View"
msgstr "Изглед Рисуване"
-#: strings.hrc:352
+#: strings.hrc:354
msgctxt "SID_SD_A11Y_I_DRAWVIEW_D"
msgid "This is where you create and edit slides."
msgstr "Тук създавате и редактирате кадри."
-#: strings.hrc:353
+#: strings.hrc:355
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_N"
msgid "Outline View"
msgstr "Изглед План"
-#: strings.hrc:354
+#: strings.hrc:356
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_D"
msgid "This is where you enter or edit text in list form."
msgstr "Тук въвеждате и редактирате текст във вид на списък."
-#: strings.hrc:355
+#: strings.hrc:357
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_N"
msgid "Slides View"
msgstr "Изглед Кадри"
-#: strings.hrc:356
+#: strings.hrc:358
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_D"
msgid "This is where you sort slides."
msgstr "Тук подреждате кадри."
-#: strings.hrc:357
+#: strings.hrc:359
msgctxt "SID_SD_A11Y_I_NOTESVIEW_N"
msgid "Notes View"
msgstr "Изглед Бележки"
-#: strings.hrc:358
+#: strings.hrc:360
msgctxt "SID_SD_A11Y_I_NOTESVIEW_D"
msgid "This is where you enter and view notes."
msgstr "Тук въвеждате и редактирате бележки."
-#: strings.hrc:359
+#: strings.hrc:361
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_N"
msgid "Handout View"
msgstr "Изглед Листовки"
-#: strings.hrc:360
+#: strings.hrc:362
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_D"
msgid "This is where you decide on the layout for handouts."
msgstr "Тук избирате оформлението на листовките."
-#: strings.hrc:361
+#: strings.hrc:363
msgctxt "SID_SD_A11Y_P_TITLE_N"
msgid "PresentationTitle"
msgstr "PresentationTitle"
-#: strings.hrc:362
+#: strings.hrc:364
msgctxt "SID_SD_A11Y_P_OUTLINER_N"
msgid "PresentationOutliner"
msgstr "PresentationOutliner"
-#: strings.hrc:363
+#: strings.hrc:365
msgctxt "SID_SD_A11Y_P_SUBTITLE_N"
msgid "PresentationSubtitle"
msgstr "PresentationSubtitle"
-#: strings.hrc:364
+#: strings.hrc:366
msgctxt "SID_SD_A11Y_P_PAGE_N"
msgid "PresentationPage"
msgstr "PresentationPage"
-#: strings.hrc:365
+#: strings.hrc:367
msgctxt "SID_SD_A11Y_P_NOTES_N"
msgid "PresentationNotes"
msgstr "PresentationNotes"
-#: strings.hrc:366
+#: strings.hrc:368
msgctxt "SID_SD_A11Y_P_HANDOUT_N"
msgid "Handout"
msgstr "Handout"
-#: strings.hrc:367
+#: strings.hrc:369
msgctxt "SID_SD_A11Y_P_UNKNOWN_N"
msgid "UnknownAccessiblePresentationShape"
msgstr "UnknownAccessiblePresentationShape"
-#: strings.hrc:368
+#: strings.hrc:370
msgctxt "SID_SD_A11Y_P_TITLE_D"
msgid "PresentationTitleShape"
msgstr "PresentationTitleShape"
-#: strings.hrc:369
+#: strings.hrc:371
msgctxt "SID_SD_A11Y_P_OUTLINER_D"
msgid "PresentationOutlinerShape"
msgstr "PresentationOutlinerShape"
-#: strings.hrc:370
+#: strings.hrc:372
msgctxt "SID_SD_A11Y_P_SUBTITLE_D"
msgid "PresentationSubtitleShape"
msgstr "PresentationSubtitleShape"
-#: strings.hrc:371
+#: strings.hrc:373
msgctxt "SID_SD_A11Y_P_PAGE_D"
msgid "PresentationPageShape"
msgstr "PresentationPageShape"
-#: strings.hrc:372
+#: strings.hrc:374
msgctxt "SID_SD_A11Y_P_NOTES_D"
msgid "PresentationNotesShape"
msgstr "PresentationNotesShape"
-#: strings.hrc:373
+#: strings.hrc:375
msgctxt "SID_SD_A11Y_P_HANDOUT_D"
msgid "PresentationHandoutShape"
msgstr "PresentationHandoutShape"
-#: strings.hrc:374
+#: strings.hrc:376
msgctxt "SID_SD_A11Y_P_UNKNOWN_D"
msgid "Unknown accessible presentation shape"
msgstr "Непознат елемент за достъпност на презентация"
-#: strings.hrc:375
+#: strings.hrc:377
msgctxt "SID_SD_A11Y_P_FOOTER_N"
msgid "PresentationFooter"
msgstr "PresentationFooter"
-#: strings.hrc:376
+#: strings.hrc:378
msgctxt "SID_SD_A11Y_P_FOOTER_D"
msgid "PresentationFooterShape"
msgstr "PresentationFooterShape"
-#: strings.hrc:377
+#: strings.hrc:379
msgctxt "SID_SD_A11Y_P_HEADER_N"
msgid "PresentationHeader"
msgstr "PresentationHeader"
-#: strings.hrc:378
+#: strings.hrc:380
msgctxt "SID_SD_A11Y_P_HEADER_D"
msgid "PresentationHeaderShape"
msgstr "PresentationHeaderShape"
-#: strings.hrc:379
+#: strings.hrc:381
msgctxt "SID_SD_A11Y_P_DATE_N"
msgid "PresentationDateAndTime"
msgstr "PresentationDateAndTime"
-#: strings.hrc:380
+#: strings.hrc:382
msgctxt "SID_SD_A11Y_P_DATE_D"
msgid "PresentationDateAndTimeShape"
msgstr "PresentationDateAndTimeShape"
-#: strings.hrc:381
+#: strings.hrc:383
msgctxt "SID_SD_A11Y_P_NUMBER_N"
msgid "PresentationPageNumber"
msgstr "PresentationPageNumber"
-#: strings.hrc:382
+#: strings.hrc:384
msgctxt "SID_SD_A11Y_P_NUMBER_D"
msgid "PresentationPageNumberShape"
msgstr "PresentationPageNumberShape"
-#: strings.hrc:383
+#: strings.hrc:385
msgctxt "SID_SD_A11Y_D_PRESENTATION"
msgid "%PRODUCTNAME Presentation"
msgstr "%PRODUCTNAME - презентация"
-#: strings.hrc:384
+#: strings.hrc:386
msgctxt "SID_SD_A11Y_P_TITLE_N_STYLE"
msgid "Title"
msgstr "Заглавие"
-#: strings.hrc:385
+#: strings.hrc:387
msgctxt "SID_SD_A11Y_P_OUTLINER_N_STYLE"
msgid "Outliner"
msgstr "План"
-#: strings.hrc:386
+#: strings.hrc:388
msgctxt "SID_SD_A11Y_P_SUBTITLE_N_STYLE"
msgid "Subtitle"
msgstr "Подзаглавие"
-#: strings.hrc:387
+#: strings.hrc:389
msgctxt "SID_SD_A11Y_P_PAGE_N_STYLE"
msgid "Page"
msgstr "Страница"
-#: strings.hrc:388
+#: strings.hrc:390
msgctxt "SID_SD_A11Y_P_NOTES_N_STYLE"
msgid "Notes"
msgstr "Бележки"
-#: strings.hrc:389
+#: strings.hrc:391
msgctxt "SID_SD_A11Y_P_HANDOUT_N_STYLE"
msgid "Handout"
msgstr "Листовка"
-#: strings.hrc:390
+#: strings.hrc:392
msgctxt "SID_SD_A11Y_P_UNKNOWN_N_STYLE"
msgid "Unknown Accessible Presentation Shape"
msgstr "Непознат елемент за достъпност на презентация"
-#: strings.hrc:391
+#: strings.hrc:393
msgctxt "SID_SD_A11Y_P_FOOTER_N_STYLE"
msgid "Footer"
msgstr "Долен колонтитул"
-#: strings.hrc:392
+#: strings.hrc:394
msgctxt "SID_SD_A11Y_P_HEADER_N_STYLE"
msgid "Header"
msgstr "Горен колонтитул"
-#: strings.hrc:393
+#: strings.hrc:395
msgctxt "SID_SD_A11Y_P_DATE_N_STYLE"
msgid "Date"
msgstr "Дата"
-#: strings.hrc:394
+#: strings.hrc:396
msgctxt "SID_SD_A11Y_P_NUMBER_N_STYLE"
msgid "Number"
msgstr "Число"
-#: strings.hrc:395
+#: strings.hrc:397
msgctxt "SID_SD_A11Y_D_PRESENTATION_READONLY"
msgid "(read-only)"
msgstr "(само за четене)"
-#: strings.hrc:397
+#: strings.hrc:399
msgctxt "STR_CUSTOMANIMATION_REPEAT_NONE"
msgid "none"
msgstr "няма"
-#: strings.hrc:398
+#: strings.hrc:400
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_NEXT_CLICK"
msgid "Until next click"
msgstr "До следващото щракване"
-#: strings.hrc:399
+#: strings.hrc:401
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_END_OF_SLIDE"
msgid "Until end of slide"
msgstr "До края на кадъра"
-#: strings.hrc:400
+#: strings.hrc:402
msgctxt "STR_CUSTOMANIMATION_DIRECTION_PROPERTY"
msgid "Direction:"
msgstr "Посока:"
-#: strings.hrc:401
+#: strings.hrc:403
msgctxt "STR_CUSTOMANIMATION_ZOOM_PROPERTY"
msgid "Zoom:"
msgstr "Мащаб:"
-#: strings.hrc:402
+#: strings.hrc:404
msgctxt "STR_CUSTOMANIMATION_SPOKES_PROPERTY"
msgid "Spokes:"
msgstr "Спици:"
-#: strings.hrc:403
+#: strings.hrc:405
msgctxt "STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY"
msgid "First color:"
msgstr "Първи цвят:"
-#: strings.hrc:404
+#: strings.hrc:406
msgctxt "STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY"
msgid "Second color:"
msgstr "Втори цвят:"
-#: strings.hrc:405
+#: strings.hrc:407
msgctxt "STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY"
msgid "Fill color:"
msgstr "Цвят за запълване:"
-#: strings.hrc:406
+#: strings.hrc:408
msgctxt "STR_CUSTOMANIMATION_STYLE_PROPERTY"
msgid "Style:"
msgstr "Стил:"
-#: strings.hrc:407
+#: strings.hrc:409
msgctxt "STR_CUSTOMANIMATION_FONT_PROPERTY"
msgid "Font:"
msgstr "Шрифт:"
-#: strings.hrc:408
+#: strings.hrc:410
msgctxt "STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY"
msgid "Font color:"
msgstr "Цвят на шрифта:"
-#: strings.hrc:409
+#: strings.hrc:411
msgctxt "STR_CUSTOMANIMATION_FONT_SIZE_STYLE_PROPERTY"
msgid "Style:"
msgstr "Стил:"
-#: strings.hrc:410
+#: strings.hrc:412
msgctxt "STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY"
msgid "Typeface:"
msgstr "Начертание:"
-#: strings.hrc:411
+#: strings.hrc:413
msgctxt "STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY"
msgid "Line color:"
msgstr "Цвят на контура:"
-#: strings.hrc:412
+#: strings.hrc:414
msgctxt "STR_CUSTOMANIMATION_SIZE_PROPERTY"
msgid "Font size:"
msgstr "Размер на шрифта:"
-#: strings.hrc:413
+#: strings.hrc:415
msgctxt "STR_CUSTOMANIMATION_SCALE_PROPERTY"
msgid "Size:"
msgstr "Размер:"
-#: strings.hrc:414
+#: strings.hrc:416
msgctxt "STR_CUSTOMANIMATION_AMOUNT_PROPERTY"
msgid "Amount:"
msgstr "Количество:"
-#: strings.hrc:415
+#: strings.hrc:417
msgctxt "STR_CUSTOMANIMATION_COLOR_PROPERTY"
msgid "Color:"
msgstr "Цвят:"
-#: strings.hrc:416
+#: strings.hrc:418
msgctxt "STR_CUSTOMANIMATION_NO_SOUND"
msgid "(No sound)"
msgstr "(Без звук)"
-#: strings.hrc:417
+#: strings.hrc:419
msgctxt "STR_CUSTOMANIMATION_STOP_PREVIOUS_SOUND"
msgid "(Stop previous sound)"
msgstr "(Спиране на предишния звук)"
-#: strings.hrc:418
+#: strings.hrc:420
msgctxt "STR_CUSTOMANIMATION_BROWSE_SOUND"
msgid "Other sound..."
msgstr "Друг звук..."
-#: strings.hrc:419
+#: strings.hrc:421
msgctxt "STR_CUSTOMANIMATION_SAMPLE"
msgid "Sample"
msgstr "Извадка"
-#: strings.hrc:420
+#: strings.hrc:422
msgctxt "STR_CUSTOMANIMATION_TRIGGER"
msgid "Trigger"
msgstr "Спусък"
-#: strings.hrc:421
+#: strings.hrc:423
msgctxt "STR_CUSTOMANIMATION_LIST_HELPTEXT"
msgid "First select the slide element and then click 'Add...' to add an animation effect."
msgstr "Изберете елемент от кадъра, после натиснете \"Добавяне...\", за да прибавите анимационен ефект."
-#: strings.hrc:422
+#: strings.hrc:424
msgctxt "STR_CUSTOMANIMATION_USERPATH"
msgid "User paths"
msgstr "Потребителски траектории"
-#: strings.hrc:423
+#: strings.hrc:425
msgctxt "STR_CUSTOMANIMATION_ENTRANCE"
msgid "Entrance: %1"
msgstr "Въвеждане: %1"
-#: strings.hrc:424
+#: strings.hrc:426
msgctxt "STR_CUSTOMANIMATION_EMPHASIS"
msgid "Emphasis: %1"
msgstr "Акцентиране: %1"
-#: strings.hrc:425
+#: strings.hrc:427
msgctxt "STR_CUSTOMANIMATION_EXIT"
msgid "Exit: %1"
msgstr "Завършване: %1"
-#: strings.hrc:426
+#: strings.hrc:428
msgctxt "STR_CUSTOMANIMATION_MOTION_PATHS"
msgid "Motion Paths: %1"
msgstr "Траектории: %1"
-#: strings.hrc:427
+#: strings.hrc:429
msgctxt "STR_SLIDETRANSITION_NONE"
msgid "None"
msgstr "Няма"
-#: strings.hrc:429
+#: strings.hrc:431
msgctxt "STR_ANNOTATION_TODAY"
msgid "Today,"
msgstr "Днес,"
-#: strings.hrc:430
+#: strings.hrc:432
msgctxt "STR_ANNOTATION_YESTERDAY"
msgid "Yesterday,"
msgstr "Вчера,"
-#: strings.hrc:431
+#: strings.hrc:433
msgctxt "STR_ANNOTATION_NOAUTHOR"
msgid "(no author)"
msgstr "(няма автор)"
-#: strings.hrc:432
+#: strings.hrc:434
msgctxt "STR_ANNOTATION_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress reached the end of the presentation. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Impress достигна до края на презентацията. Желаете ли да започнете отначало?"
-#: strings.hrc:433
+#: strings.hrc:435
msgctxt "STR_ANNOTATION_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress reached the beginning of the presentation. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Impress достигна до началото на презентацията. Желаете ли да продължите към края?"
-#: strings.hrc:434
+#: strings.hrc:436
msgctxt "STR_ANNOTATION_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the end of the document. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Draw достигна до края на документа. Желаете ли да продължите към началото?"
-#: strings.hrc:435
+#: strings.hrc:437
msgctxt "STR_ANNOTATION_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the beginning of the document. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Draw достигна до началото на документа. Желаете ли да продължите към края?"
-#: strings.hrc:436
+#: strings.hrc:438
msgctxt "STR_ANNOTATION_UNDO_INSERT"
msgid "Insert Comment"
msgstr "Вмъкване на коментар"
-#: strings.hrc:437
+#: strings.hrc:439
msgctxt "STR_ANNOTATION_UNDO_DELETE"
msgid "Delete Comment(s)"
msgstr "Изтриване на коментар(и)"
-#: strings.hrc:438
+#: strings.hrc:440
msgctxt "STR_ANNOTATION_UNDO_MOVE"
msgid "Move Comment"
msgstr "Премстване на коментар"
-#: strings.hrc:439
+#: strings.hrc:441
msgctxt "STR_ANNOTATION_UNDO_EDIT"
msgid "Edit Comment"
msgstr "Редакция на коментар"
-#: strings.hrc:440
+#: strings.hrc:442
msgctxt "STR_ANNOTATION_REPLY"
msgid "Reply to %1"
msgstr "Отговор до %1"
-#: strings.hrc:442
+#: strings.hrc:444
msgctxt "RID_DRAW_MEDIA_TOOLBOX"
msgid "Media Playback"
msgstr "Възпроизвеждане"
-#: strings.hrc:443
+#: strings.hrc:445
msgctxt "RID_DRAW_TABLE_TOOLBOX"
msgid "Table"
msgstr "Таблица"
-#: strings.hrc:445
+#: strings.hrc:447
msgctxt "STR_IMPRESS_PRINT_UI_GROUP_NAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: strings.hrc:446
+#: strings.hrc:448
msgctxt "STR_IMPRESS_PRINT_UI_PRINT_GROUP"
msgid "Print"
msgstr "Печат"
-#: strings.hrc:447
+#: strings.hrc:449
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT"
msgid "Document"
msgstr "Документ"
-#: strings.hrc:448
+#: strings.hrc:450
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE"
msgid "Slides per page"
msgstr "Кадри на страница"
-#: strings.hrc:449
+#: strings.hrc:451
msgctxt "STR_IMPRESS_PRINT_UI_ORDER"
msgid "Order"
msgstr "Подреждане"
-#: strings.hrc:450
+#: strings.hrc:452
msgctxt "STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT"
msgid "~Contents"
msgstr "Съдържание"
-#: strings.hrc:451
+#: strings.hrc:453
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_NAME"
msgid "~Slide name"
msgstr "Име на кадър"
-#: strings.hrc:452
+#: strings.hrc:454
msgctxt "STR_DRAW_PRINT_UI_IS_PRINT_NAME"
msgid "P~age name"
msgstr "Име на страница"
-#: strings.hrc:453
+#: strings.hrc:455
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_DATE"
msgid "~Date and time"
msgstr "Дата и час"
-#: strings.hrc:454
+#: strings.hrc:456
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_HIDDEN"
msgid "Hidden pages"
msgstr "Скрити страници"
-#: strings.hrc:455
+#: strings.hrc:457
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY"
msgid "Color"
msgstr "Цвят"
-#: strings.hrc:456
+#: strings.hrc:458
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS"
msgid "~Size"
msgstr "Размер"
-#: strings.hrc:457
+#: strings.hrc:459
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE"
msgid "Brochure"
msgstr "Брошура"
-#: strings.hrc:458
+#: strings.hrc:460
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_SIDES"
msgid "Page sides"
msgstr "Страни на страниците"
-#: strings.hrc:459
+#: strings.hrc:461
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE"
msgid "Include"
msgstr "Включване"
-#: strings.hrc:460
+#: strings.hrc:462
msgctxt "STR_IMPRESS_PRINT_UI_PAPER_TRAY"
msgid "~Use only paper tray from printer preferences"
msgstr "Използване само на касетата от настройките на принтера"
-#: strings.hrc:461
+#: strings.hrc:463
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE"
msgid "Print range"
msgstr "Обхват на печата"
-#: strings.hrc:463
+#: strings.hrc:465
msgctxt "STR_SAR_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress has searched to the end of the presentation. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Impress стигна до края на документа. Желаете ли търсенето да продължи от началото?"
-#: strings.hrc:464
+#: strings.hrc:466
msgctxt "STR_SAR_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress has searched to the beginning of the presentation. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Impress стигна до началото на документа. Желаете ли търсенето да продължи от края?"
-#: strings.hrc:465
+#: strings.hrc:467
msgctxt "STR_SAR_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the end of the document. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Draw стигна до края на документа. Желаете ли търсенето да продължи от началото?"
-#: strings.hrc:466
+#: strings.hrc:468
msgctxt "STR_SAR_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the beginning of the document. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Draw стигна до началото на документа. Желаете ли търсенето да продължи от края?"
-#: strings.hrc:468
+#: strings.hrc:470
msgctxt "STR_SD_NONE"
msgid "- None -"
msgstr "- Няма -"
@@ -4386,8 +4396,8 @@ msgstr "_Форматиране на документа чрез метрики
#: optimpressgeneralpage.ui:622
msgctxt "optimpressgeneralpage|cbCompatibility"
-msgid "Add _spacing between paragraphs and tables (in current document)"
-msgstr "_Добавяне на отстояния между абзаците и таблиците (в текущия документ)"
+msgid "Add _spacing between paragraphs and tables"
+msgstr "Добавяне на отстояния между абзаците и таблиците"
#: optimpressgeneralpage.ui:645
msgctxt "optimpressgeneralpage|label1"
@@ -5131,13 +5141,13 @@ msgstr "Фон от образеца"
#: sidebarslidebackground.ui:197
msgctxt "sidebarslidebackground|label4"
-msgid "Orientation: "
-msgstr "Ориентация: "
+msgid "Orientation:"
+msgstr "Ориентация:"
#: sidebarslidebackground.ui:212
msgctxt "sidebarslidebackground|masterslidebutton"
-msgid "Master Slide"
-msgstr "Кадър образец"
+msgid "Master View"
+msgstr "Изглед Образец"
#: sidebarslidebackground.ui:226
msgctxt "sidebarslidebackground|closemasterslide"
@@ -5181,8 +5191,8 @@ msgstr "Широки"
#: sidebarslidebackground.ui:267
msgctxt "sidebarslidebackground|labelmargin"
-msgid "Margin: "
-msgstr "Бели полета: "
+msgid "Margin:"
+msgstr ""
#: sidebarslidebackground.ui:277
msgctxt "sidebarslidebackground|customlabel"
diff --git a/source/bg/sfx2/messages.po b/source/bg/sfx2/messages.po
index 5f5b4354f6b..7f37baeecbe 100644
--- a/source/bg/sfx2/messages.po
+++ b/source/bg/sfx2/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: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2017-12-02 13:30+0000\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
+"PO-Revision-Date: 2017-12-19 11:15+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1512221402.000000\n"
+"X-POOTLE-MTIME: 1513682126.000000\n"
#: strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -815,27 +815,32 @@ msgctxt "RID_SVXSTR_INCORRECT_PASSWORD"
msgid "Incorrect password"
msgstr "Грешна парола"
-#: strings.hrc:173
+#: strings.hrc:172
+msgctxt "RID_SVXSTR_GPG_ENCRYPT_FAILURE"
+msgid "OpenPGP key not trusted, damaged, or encryption failure. Please try again."
+msgstr "Ненадежден или повреден ключ на OpenPGP или грешка при шифроване. Моля, опитайте отново."
+
+#: strings.hrc:174
msgctxt "STR_PASSWD_MIN_LEN"
msgid "(Minimum $(MINLEN) characters)"
msgstr "(Поне $(MINLEN) знака)"
-#: strings.hrc:174
+#: strings.hrc:175
msgctxt "STR_PASSWD_MIN_LEN1"
msgid "(Minimum 1 character)"
msgstr "(поне 1 знак)"
-#: strings.hrc:175
+#: strings.hrc:176
msgctxt "STR_PASSWD_EMPTY"
msgid "(The password can be empty)"
msgstr "(Паролата може да е празна)"
-#: strings.hrc:176
+#: strings.hrc:177
msgctxt "STR_MODULENOTINSTALLED"
msgid "The action could not be executed. The %PRODUCTNAME program module needed for this action is currently not installed."
msgstr "Действието не може да се изпълни. Необходимият за него програмен модул на %PRODUCTNAME не е инсталиран."
-#: strings.hrc:178
+#: strings.hrc:179
msgctxt "STR_FILTER_NOT_INSTALLED"
msgid ""
"The selected filter $(FILTER) has not been installed.\n"
@@ -844,7 +849,7 @@ msgstr ""
"Избраният филтър $(FILTER) не е инсталиран.\n"
"Желаете ли да бъде инсталиран сега?"
-#: strings.hrc:179
+#: strings.hrc:180
msgctxt "STR_FILTER_CONSULT_SERVICE"
msgid ""
"The selected filter $(FILTER) is not included in your edition.\n"
@@ -853,72 +858,72 @@ msgstr ""
"Избраният филтър $(FILTER) не е включен във Вашето издание.\n"
"Можете да намерите информация за поръчки на нашия сайт."
-#: strings.hrc:181
+#: strings.hrc:182
msgctxt "STR_WELCOME_LINE1"
msgid "Welcome to %PRODUCTNAME."
msgstr "Добре дошли в %PRODUCTNAME."
-#: strings.hrc:182
+#: strings.hrc:183
msgctxt "STR_WELCOME_LINE2"
msgid "Drop a document here or pick an app from the left side to create one."
msgstr "Пуснете документ тук или създайте нов, като изберете приложение отляво."
-#: strings.hrc:184
+#: strings.hrc:185
msgctxt "STR_SFX_FILEDLG_ACTUALVERSION"
msgid "Current version"
msgstr "Текуща версия"
-#: strings.hrc:185
+#: strings.hrc:186
msgctxt "STR_SFX_EXPLORERFILE_EXPORT"
msgid "Export"
msgstr "Експортиране"
-#: strings.hrc:186
+#: strings.hrc:187
msgctxt "STR_SFX_EXPLORERFILE_INSERT"
msgid "Insert"
msgstr "Вмъкване"
-#: strings.hrc:187
+#: strings.hrc:188
msgctxt "STR_SFX_EXPLORERFILE_BUTTONINSERT"
msgid "~Insert"
msgstr "~Вмъкване"
-#: strings.hrc:188
+#: strings.hrc:189
msgctxt "STR_SFX_IMPORT_ALL"
msgid "<All formats>"
msgstr "<Всички формати>"
-#: strings.hrc:189
+#: strings.hrc:190
msgctxt "STR_PB_SAVEACOPY"
msgid "Save a Copy"
msgstr "Записване на копие"
-#: strings.hrc:190
+#: strings.hrc:191
msgctxt "STR_PB_COMPAREDOC"
msgid "Compare to"
msgstr "Сравняване с"
-#: strings.hrc:191
+#: strings.hrc:192
msgctxt "STR_PB_MERGEDOC"
msgid "Merge with"
msgstr "Обединяване с"
-#: strings.hrc:193
+#: strings.hrc:194
msgctxt "STR_SFX_NEWOFFICEDOC"
msgid "%PRODUCTNAME document"
msgstr "Документ на %PRODUCTNAME"
-#: strings.hrc:194
+#: strings.hrc:195
msgctxt "SFX_ST_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Г: %1 М: %2 Д: %3 Ч: %4 М: %5 С: %6"
-#: strings.hrc:195
+#: strings.hrc:196
msgctxt "STR_SFX_REMOVE_PROPERTY"
msgid "Remove Property"
msgstr "Премахване на свойство"
-#: strings.hrc:196
+#: strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -927,27 +932,27 @@ msgstr ""
"Въведената стойност не е от зададения тип.\n"
"Стойността ще бъде запазена като текст."
-#: strings.hrc:198
+#: strings.hrc:199
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Стилът вече съществува. Да бъде ли презаписан?"
-#: strings.hrc:200
+#: strings.hrc:201
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Нулиране"
-#: strings.hrc:201
+#: strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Това име вече се използва."
-#: strings.hrc:202
+#: strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Този стил не съществува."
-#: strings.hrc:203
+#: strings.hrc:204
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -956,7 +961,7 @@ msgstr ""
"Този стил не може да се използва като основен,\n"
"тъй като ще се получи циклично обръщение."
-#: strings.hrc:204
+#: strings.hrc:205
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -965,7 +970,7 @@ msgstr ""
"Името вече съществува като подразбиран стил.\n"
"Моля, изберете друго име."
-#: strings.hrc:205
+#: strings.hrc:206
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -976,92 +981,92 @@ msgstr ""
"Ако ги изтриете, текстът ще се върне към родителския стил.\n"
"Искате ли да бъдат изтрити?\n"
-#: strings.hrc:206
+#: strings.hrc:207
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Използвани стилове: "
-#: strings.hrc:207
+#: strings.hrc:208
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Навигатор"
-#: strings.hrc:208
+#: strings.hrc:209
msgctxt "STR_SID_SIDEBAR"
msgid "Sidebar"
msgstr "Странична лента"
-#: strings.hrc:209
+#: strings.hrc:210
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Грешно потвърждение на паролата"
-#: strings.hrc:210
+#: strings.hrc:211
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Изпращане"
-#: strings.hrc:211
+#: strings.hrc:212
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Шрифт"
-#: strings.hrc:212
+#: strings.hrc:213
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show Previews"
msgstr "Показване на мостри"
-#: strings.hrc:214
+#: strings.hrc:215
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Преглеждане на коментара за версията"
-#: strings.hrc:215
+#: strings.hrc:216
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(не е зададено име)"
-#: strings.hrc:217
+#: strings.hrc:218
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Списък на стиловете"
-#: strings.hrc:218
+#: strings.hrc:219
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Йерархично"
-#: strings.hrc:219
+#: strings.hrc:220
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Режим на запълване"
-#: strings.hrc:220
+#: strings.hrc:221
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Нов стил от избраното"
-#: strings.hrc:221
+#: strings.hrc:222
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Обновяване на стил"
-#: strings.hrc:223
+#: strings.hrc:224
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Наистина ли желаете спиране на записа? Записаните до момента стъпки ще бъдат загубени."
-#: strings.hrc:224
+#: strings.hrc:225
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Спиране на записа"
-#: strings.hrc:226
+#: strings.hrc:227
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Шаблоните се инициализират за първоначална употреба."
-#: strings.hrc:228
+#: strings.hrc:229
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1070,7 +1075,7 @@ msgstr ""
"Не е намерен подразбиран принтер.\n"
"Моля, изберете принтер и опитайте отново."
-#: strings.hrc:229
+#: strings.hrc:230
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1079,17 +1084,17 @@ msgstr ""
"Стартирането на принтера е невъзможно.\n"
"Моля, проверете настройките му."
-#: strings.hrc:230
+#: strings.hrc:231
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Принтерът е зает"
-#: strings.hrc:231
+#: strings.hrc:232
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (само за четене)"
-#: strings.hrc:232
+#: strings.hrc:233
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1100,7 +1105,7 @@ msgstr ""
"Желаете ли новите настройки да се запишат\n"
"в активния документ?"
-#: strings.hrc:233
+#: strings.hrc:234
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1111,7 +1116,7 @@ msgstr ""
"Желаете новите настройки да се запишат\n"
"в активния документ?"
-#: strings.hrc:234
+#: strings.hrc:235
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1122,7 +1127,7 @@ msgstr ""
"Желаете ли новите настройки да се запишат\n"
"в активния документ?"
-#: strings.hrc:235
+#: strings.hrc:236
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1131,7 +1136,7 @@ msgstr ""
"Документът не може да бъде затворен,\n"
"тъй като се изпълнява задание за печат."
-#: strings.hrc:236
+#: strings.hrc:237
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1140,207 +1145,309 @@ msgstr ""
"При изпращането на съобщението е възникнала грешка. Възможни причини са например липсваща потребителска регистрация или дефектна инсталация.\n"
"Моля, проверете настройките на %PRODUCTNAME или на програмата за е-поща."
-#: strings.hrc:237
+#: strings.hrc:238
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Документът не може да бъде редактиран, вероятно поради липсващи права за достъп. Желаете ли да редактирате негово копие?"
-#: strings.hrc:238
+#: strings.hrc:239
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (поправен документ)"
-#: strings.hrc:239
+#: strings.hrc:240
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Документът не е резервиран за промяна в сървъра."
-#: strings.hrc:240
+#: strings.hrc:241
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Документът е отворен в режим само за четене."
-#: strings.hrc:241
+#: strings.hrc:242
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Този PDF е отворен в режим само за четене, за да се позволи подписването му."
-#: strings.hrc:242
+#: strings.hrc:243
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "Етикетът за класифициране на този документ е %1."
-#: strings.hrc:243
+#: strings.hrc:244
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Преди поставяне от клипборда документът трябва да бъде класифициран."
-#: strings.hrc:244
+#: strings.hrc:245
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Нивото на класификация на документа е по-ниско, отколкото на клипборда."
-#: strings.hrc:245
+#: strings.hrc:246
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Intellectual Property:"
msgstr "Интелектуална собственост:"
-#: strings.hrc:246
+#: strings.hrc:247
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Национална сигурност:"
-#: strings.hrc:247
+#: strings.hrc:248
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Ограничения за износ:"
-#: strings.hrc:248
+#: strings.hrc:249
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Извличане"
-#: strings.hrc:249
+#: strings.hrc:250
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Редактиране"
-#: strings.hrc:250
+#: strings.hrc:251
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Подписване на документ"
-#: strings.hrc:251
+#: strings.hrc:252
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Подписът на документа е невалиден."
-#: strings.hrc:252
+#: strings.hrc:253
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "Подписът е бил валиден, но документът е променен."
-#: strings.hrc:253
+#: strings.hrc:254
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "Подписът е наред, но валидността на сертификата не може да бъде проверена."
-#: strings.hrc:254
+#: strings.hrc:255
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "Подписът е наред, но документът е подписан само частично."
-#: strings.hrc:255
+#: strings.hrc:256
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Документът е подписан с валиден електронен подпис."
-#: strings.hrc:256
+#: strings.hrc:257
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Показване на подписите"
-#: strings.hrc:258
+#: strings.hrc:259
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Затваряне на панела"
-#: strings.hrc:259
+#: strings.hrc:260
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Закачване"
-#: strings.hrc:260
+#: strings.hrc:261
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Откачване"
-#: strings.hrc:262
+#: strings.hrc:263
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Още настройки"
-#: strings.hrc:263
+#: strings.hrc:264
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Затваряне на страничната лента"
-#: strings.hrc:264
+#: strings.hrc:265
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Настройки на страничната лента"
-#: strings.hrc:265
+#: strings.hrc:266
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Персонализиране"
-#: strings.hrc:266
+#: strings.hrc:267
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Връщане на подразбираните"
-#: strings.hrc:267
+#: strings.hrc:268
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Затваряне на страничната лента"
-#: strings.hrc:269
+#. Translators: default Impress template names
+#: strings.hrc:271
msgctxt "STR_TEMPLATE_NAME1"
-msgid "Abstract Green"
-msgstr "Абстрактно зелено"
+msgid "Alizarin"
+msgstr "Ализарин"
-#: strings.hrc:270
+#: strings.hrc:272
msgctxt "STR_TEMPLATE_NAME2"
-msgid "Abstract Red"
-msgstr "Абстрактно червено"
+msgid "Beehive"
+msgstr "Кошер"
-#: strings.hrc:271
+#: strings.hrc:273
msgctxt "STR_TEMPLATE_NAME3"
-msgid "Abstract Yellow"
-msgstr "Абстрактно жълто"
+msgid "Blue Curve"
+msgstr "Синя извивка"
-#: strings.hrc:272
+#: strings.hrc:274
msgctxt "STR_TEMPLATE_NAME4"
-msgid "Bright Blue"
-msgstr "Ярко синьо"
+msgid "Blueprint Plans"
+msgstr ""
-#: strings.hrc:273
+#: strings.hrc:275
msgctxt "STR_TEMPLATE_NAME5"
+msgid "Bright Blue"
+msgstr ""
+
+#: strings.hrc:276
+msgctxt "STR_TEMPLATE_NAME6"
+msgid "Classy Red"
+msgstr ""
+
+#: strings.hrc:277
+msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ДНК"
-#: strings.hrc:274
-msgctxt "STR_TEMPLATE_NAME6"
+#: strings.hrc:278
+msgctxt "STR_TEMPLATE_NAME8"
+msgid "Focus"
+msgstr "Фокус"
+
+#: strings.hrc:279
+msgctxt "STR_TEMPLATE_NAME9"
+msgid "Forestbird"
+msgstr "Горска птица"
+
+#: strings.hrc:280
+msgctxt "STR_TEMPLATE_NAME10"
+msgid "Impress"
+msgstr ""
+
+#: strings.hrc:281
+msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Вдъхновение"
-#: strings.hrc:275
-msgctxt "STR_TEMPLATE_NAME7"
+#: strings.hrc:282
+msgctxt "STR_TEMPLATE_NAME12"
+msgid "Lights"
+msgstr "Светлини"
+
+#: strings.hrc:283
+msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Сочно зелено"
-#: strings.hrc:276
-msgctxt "STR_TEMPLATE_NAME8"
+#: strings.hrc:284
+msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Метрополис"
-#: strings.hrc:277
-msgctxt "STR_TEMPLATE_NAME9"
+#: strings.hrc:285
+msgctxt "STR_TEMPLATE_NAME15"
+msgid "Midnightblue"
+msgstr ""
+
+#: strings.hrc:286
+msgctxt "STR_TEMPLATE_NAME16"
+msgid "Nature Illustration"
+msgstr "Природна илюстрация"
+
+#: strings.hrc:287
+msgctxt "STR_TEMPLATE_NAME17"
+msgid "Pencil"
+msgstr "Молив"
+
+#: strings.hrc:288
+msgctxt "STR_TEMPLATE_NAME18"
+msgid "Piano"
+msgstr "Пиано"
+
+#: strings.hrc:289
+msgctxt "STR_TEMPLATE_NAME19"
+msgid "Portfolio"
+msgstr "Портфолио"
+
+#: strings.hrc:290
+msgctxt "STR_TEMPLATE_NAME20"
+msgid "Progress"
+msgstr ""
+
+#: strings.hrc:291
+msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Залез"
-#: strings.hrc:278
-msgctxt "STR_TEMPLATE_NAME10"
+#: strings.hrc:292
+msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Старомоден"
-#: strings.hrc:280
+#: strings.hrc:293
+msgctxt "STR_TEMPLATE_NAME23"
+msgid "Vivid"
+msgstr ""
+
+#. Translators: default Writer template names
+#: strings.hrc:295
+msgctxt "STR_TEMPLATE_NAME24"
+msgid "CV"
+msgstr "CV"
+
+#: strings.hrc:296
+msgctxt "STR_TEMPLATE_NAME25"
+msgid "Resume"
+msgstr ""
+
+#: strings.hrc:297
+msgctxt "STR_TEMPLATE_NAME26"
+msgid "Default"
+msgstr "По подразбиране"
+
+#: strings.hrc:298
+msgctxt "STR_TEMPLATE_NAME27"
+msgid "Modern"
+msgstr "Съвременен"
+
+#: strings.hrc:299
+msgctxt "STR_TEMPLATE_NAME28"
+msgid "Modern business letter sans-serif"
+msgstr ""
+
+#: strings.hrc:300
+msgctxt "STR_TEMPLATE_NAME29"
+msgid "Modern business letter serif"
+msgstr ""
+
+#: strings.hrc:301
+msgctxt "STR_TEMPLATE_NAME30"
+msgid "Businesscard with logo"
+msgstr ""
+
+#: strings.hrc:303
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Премахване"
-#: strings.hrc:281
+#: strings.hrc:304
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Изчистване на всичко"
diff --git a/source/bg/svx/messages.po b/source/bg/svx/messages.po
index cb2a3932b1e..991084c3e72 100644
--- a/source/bg/svx/messages.po
+++ b/source/bg/svx/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-12-06 15:59+0100\n"
-"PO-Revision-Date: 2017-12-17 09:21+0000\n"
+"PO-Revision-Date: 2017-12-17 10:07+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1513502508.000000\n"
+"X-POOTLE-MTIME: 1513505232.000000\n"
#: fieldunit.hrc:30
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
@@ -9062,49 +9062,47 @@ msgstr "Академична"
#: strings.hrc:639
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_BLUE"
msgid "Box List Blue"
-msgstr ""
+msgstr "Списък с рамка, синьо"
#: strings.hrc:640
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_GREEN"
msgid "Box List Green"
-msgstr ""
+msgstr "Списък с рамка, зелено"
#: strings.hrc:641
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_RED"
msgid "Box List Red"
-msgstr ""
+msgstr "Списък с рамка, червено"
#: strings.hrc:642
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_YELLOW"
msgid "Box List Yellow"
-msgstr ""
+msgstr "Списък с рамка, жълто"
#: strings.hrc:643
-#, fuzzy
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ELEGANT"
msgid "Elegant"
-msgstr "Елегантен"
+msgstr "Елегантна"
#: strings.hrc:644
-#, fuzzy
msgctxt "RID_SVXSTR_TBLAFMT_LO6_FINANCIAL"
msgid "Financial"
-msgstr "Финансови"
+msgstr "Финансова"
#: strings.hrc:645
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_COLUMNS"
msgid "Simple Grid Columns"
-msgstr ""
+msgstr "Обикновена решетка, колони"
#: strings.hrc:646
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_ROWS"
msgid "Simple Grid Rows"
-msgstr ""
+msgstr "Обикновена решетка, редове"
#: strings.hrc:647
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_LIST_SHADED"
msgid "Simple List Shaded"
-msgstr ""
+msgstr "Обикновен списък с оцветяване"
#: strings.hrc:648
msgctxt "RID_SVXSTR_LINEJOINT_MIDDLE"
diff --git a/source/bg/sw/messages.po b/source/bg/sw/messages.po
index 2a8ad000f8d..1ee0ebbefe6 100644
--- a/source/bg/sw/messages.po
+++ b/source/bg/sw/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: 2017-12-06 15:59+0100\n"
-"PO-Revision-Date: 2017-12-02 13:31+0000\n"
+"POT-Creation-Date: 2017-12-20 08:17+0100\n"
+"PO-Revision-Date: 2017-12-19 11:17+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1512221490.000000\n"
+"X-POOTLE-MTIME: 1513682232.000000\n"
#: app.hrc:30
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -78,8 +78,8 @@ msgstr "Условни стилове"
#: app.hrc:47
msgctxt "RID_CHARACTERSTYLEFAMILY"
-msgid "All"
-msgstr "Всички"
+msgid "All Styles"
+msgstr "Всички стилове"
#: app.hrc:48
msgctxt "RID_CHARACTERSTYLEFAMILY"
@@ -98,8 +98,8 @@ msgstr "Потребителски стилове"
#: app.hrc:56
msgctxt "RID_FRAMESTYLEFAMILY"
-msgid "All"
-msgstr "Всички"
+msgid "All Styles"
+msgstr "Всички стилове"
#: app.hrc:57
msgctxt "RID_FRAMESTYLEFAMILY"
@@ -118,8 +118,8 @@ msgstr "Потребителски стилове"
#: app.hrc:65
msgctxt "RID_PAGESTYLEFAMILY"
-msgid "All"
-msgstr "Всички"
+msgid "All Styles"
+msgstr "Всички стилове"
#: app.hrc:66
msgctxt "RID_PAGESTYLEFAMILY"
@@ -138,8 +138,8 @@ msgstr "Потребителски стилове"
#: app.hrc:74
msgctxt "RID_LISTSTYLEFAMILY"
-msgid "All"
-msgstr "Всички"
+msgid "All Styles"
+msgstr "Всички стилове"
#: app.hrc:75
msgctxt "RID_LISTSTYLEFAMILY"
@@ -158,8 +158,8 @@ msgstr "Потребителски стилове"
#: app.hrc:83
msgctxt "RID_TABLESTYLEFAMILY"
-msgid "All"
-msgstr "Всички"
+msgid "All Styles"
+msgstr "Всички стилове"
#: app.hrc:84
msgctxt "RID_TABLESTYLEFAMILY"
@@ -1303,28 +1303,28 @@ msgstr "Пейзаж"
#. Numbering rules
#: strings.hrc:199
msgctxt "STR_POOLNUMRULE_NUM1"
-msgid "Numbering 1"
-msgstr "Номерация 1"
+msgid "Numbering 123"
+msgstr ""
#: strings.hrc:200
msgctxt "STR_POOLNUMRULE_NUM2"
-msgid "Numbering 2"
-msgstr "Номерация 2"
+msgid "Numbering ABC"
+msgstr ""
#: strings.hrc:201
msgctxt "STR_POOLNUMRULE_NUM3"
-msgid "Numbering 3"
-msgstr "Номерация 3"
+msgid "Numbering abc"
+msgstr ""
#: strings.hrc:202
msgctxt "STR_POOLNUMRULE_NUM4"
-msgid "Numbering 4"
-msgstr "Номерация 4"
+msgid "Numbering IVX"
+msgstr ""
#: strings.hrc:203
msgctxt "STR_POOLNUMRULE_NUM5"
-msgid "Numbering 5"
-msgstr "Номерация 5"
+msgid "Numbering ivx"
+msgstr ""
#: strings.hrc:204
msgctxt "STR_POOLNUMRULE_BUL1"
@@ -13481,13 +13481,13 @@ msgstr "Форматиране на документа чрез метрикит
#: optcompatpage.ui:57
msgctxt "optcompatpage|format"
-msgid "Add spacing between paragraphs and tables (in current document)"
-msgstr "Добавяне на отстояния между абзаците и таблиците (в текущия документ)"
+msgid "Add spacing between paragraphs and tables"
+msgstr "Добавяне на отстояния между абзаците и таблиците"
#: optcompatpage.ui:58
msgctxt "optcompatpage|format"
-msgid "Add paragraph and table spacing at tops of pages (in current document)"
-msgstr "Добавяне отстояния на абзац и таблица в началото на страница (в текущия документ)"
+msgid "Add paragraph and table spacing at tops of pages"
+msgstr ""
#: optcompatpage.ui:59
msgctxt "optcompatpage|format"
@@ -13541,8 +13541,8 @@ msgstr "Крайни интервали, съвместими с MS Word"
#: optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Tolerate white lines of PDF page backgrounds for compatibility with old documents (in current document)"
-msgstr "Допускат се бели линии от фона на страниците в PDF за съвместимост със стари документи (в текущия документ)"
+msgid "Tolerate white lines of PDF page backgrounds for compatibility with old documents"
+msgstr "Допускат се бели линии от фона на страниците в PDF за съвместимост със стари документи"
#: optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -13556,8 +13556,8 @@ msgstr "Употреба по подразбиране"
#: optcompatpage.ui:104
msgctxt "optcompatpage|label11"
-msgid "Compatibility options for %DOCNAME"
-msgstr "Настройки на съвместимост за %DOCNAME"
+msgid "Compatibility options for '%DOCNAME'"
+msgstr "Настройки на съвместимост за „%DOCNAME“"
#: optfonttabpage.ui:103
msgctxt "optfonttabpage|font_label"
@@ -16678,21 +16678,11 @@ msgctxt "textgridpage|labelFT_CHARSPERLINE"
msgid "Characters per line:"
msgstr "Знаци на ред:"
-#: textgridpage.ui:223
-msgctxt "textgridpage|labelFT_CHARRANGE"
-msgid "(1-45)"
-msgstr "(1-45)"
-
#: textgridpage.ui:236
msgctxt "textgridpage|labelFT_LINESPERPAGE"
msgid "Lines per page:"
msgstr "Редове на страница:"
-#: textgridpage.ui:265
-msgctxt "textgridpage|labelFT_LINERANGE"
-msgid "(1-48)"
-msgstr "(1-48)"
-
#: textgridpage.ui:303
msgctxt "textgridpage|labelFT_CHARWIDTH"
msgid "Character _width:"
diff --git a/source/bg/wizards/source/resources.po b/source/bg/wizards/source/resources.po
index 11516546719..01ef6939ce5 100644
--- a/source/bg/wizards/source/resources.po
+++ b/source/bg/wizards/source/resources.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-10-04 11:47+0200\n"
-"PO-Revision-Date: 2017-11-18 22:39+0000\n"
+"PO-Revision-Date: 2017-12-17 11:54+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1511044774.000000\n"
+"X-POOTLE-MTIME: 1513511665.000000\n"
#: resources_en_US.properties
msgctxt ""
@@ -190,10 +190,7 @@ msgctxt ""
"RID_COMMON_21\n"
"property.text"
msgid "The wizard could not be run, because important files were not found.\\nUnder 'Tools - Options - %PRODUCTNAME - Paths' click the 'Default' button to reset the paths to the original default settings.\\nThen run the wizard again."
-msgstr ""
-"Стартирането на помощника бе невъзможно, защото не бяха намерени важни файлове.\n"
-"Отворете „Инструменти - Настройки - %PRODUCTNAME - Пътища“ и натиснете бутона „По подразбиране“, за да върнете оригиналните подразбирани пътища.\n"
-"След това стартирайте помощника отново."
+msgstr "Стартирането на помощника бе невъзможно, защото не бяха намерени важни файлове.\\nОтворете „Инструменти - Настройки - %PRODUCTNAME - Пътища“ и натиснете бутона „По подразбиране“, за да върнете оригиналните подразбирани пътища.\\nСлед това стартирайте помощника отново."
#: resources_en_US.properties
msgctxt ""
@@ -1913,9 +1910,7 @@ msgctxt ""
"RID_FORM_2\n"
"property.text"
msgid "Binary fields are always listed and selectable from the left list.\\nIf possible, they are interpreted as images."
-msgstr ""
-"Двоичните полета винаги са показани за избиране в левия списък.\n"
-"Ако е възможно, те се интерпретират като графики."
+msgstr "Двоичните полета винаги са показани за избиране в левия списък.\\nАко е възможно, те се интерпретират като графики."
#: resources_en_US.properties
msgctxt ""
@@ -1923,9 +1918,7 @@ msgctxt ""
"RID_FORM_3\n"
"property.text"
msgid "A subform is a form that is inserted in another form.\\nUse subforms to show data from tables or queries with a one-to-many relationship."
-msgstr ""
-"Подформуляр е формуляр, вмъкнат в друг формуляр.\n"
-"Чрез подформулярите можете да показвате данни от таблици или заявки, свързани с отношение „едно към много“."
+msgstr "Подформуляр е формуляр, вмъкнат в друг формуляр.\\nЧрез подформулярите можете да показвате данни от таблици или заявки, свързани с отношение „едно към много“."
#: resources_en_US.properties
msgctxt ""
@@ -1997,9 +1990,7 @@ msgctxt ""
"RID_FORM_19\n"
"property.text"
msgid "The join '<FIELDNAME1>' and '<FIELDNAME2>' has been selected twice.\\nBut joins may only be used once."
-msgstr ""
-"Съединението между „<FIELDNAME1>“ и „<FIELDNAME2>“ е избрано два пъти.\n"
-"Съединенията могат да се използват само по веднъж."
+msgstr "Съединението между „<FIELDNAME1>“ и „<FIELDNAME2>“ е избрано два пъти.\\nСъединенията могат да се използват само по веднъж."
#: resources_en_US.properties
msgctxt ""
@@ -2423,9 +2414,7 @@ msgctxt ""
"RID_FORM_98\n"
"property.text"
msgid "A form with the name '%FORMNAME' already exists.\\nChoose another name."
-msgstr ""
-"Формуляр с името „%FORMNAME“ вече съществува.\n"
-"Изберете друго име."
+msgstr "Формуляр с името „%FORMNAME“ вече съществува.\\nИзберете друго име."
#: resources_en_US.properties
msgctxt ""
@@ -2777,9 +2766,7 @@ msgctxt ""
"RID_TABLE_48\n"
"property.text"
msgid "The name '%TABLENAME' already exists.\\nPlease enter another name."
-msgstr ""
-"Името „%TABLENAME“ вече съществува.\n"
-"Моля, въведете друго име."
+msgstr "Името „%TABLENAME“ вече съществува.\\nМоля, въведете друго име."
#: resources_en_US.properties
msgctxt ""
diff --git a/source/bn-IN/cui/messages.po b/source/bn-IN/cui/messages.po
index 0ea4eba66dd..9c445d3ec36 100644
--- a/source/bn-IN/cui/messages.po
+++ b/source/bn-IN/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7912,74 +7912,74 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "সহায়তা"
-#: optgeneralpage.ui:77
+#: optgeneralpage.ui:76
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME ডায়ালগ ব্যবহার (_U)"
-#: optgeneralpage.ui:111
+#: optgeneralpage.ui:110
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "খুলুন/সংরক্ষণ ডায়লগ"
-#: optgeneralpage.ui:137
+#: optgeneralpage.ui:136
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME ডায়ালগ ব্যবহার (_d)"
-#: optgeneralpage.ui:152
+#: optgeneralpage.ui:151
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "মুদ্রণ ডায়ালগ"
-#: optgeneralpage.ui:178
+#: optgeneralpage.ui:177
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "মুদ্রণ \"নথি পরিবর্তিত\" অবস্থান নির্ধারণ করেছে (_P)"
-#: optgeneralpage.ui:193
+#: optgeneralpage.ui:192
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "নথির অবস্থা"
-#: optgeneralpage.ui:226
+#: optgeneralpage.ui:225
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "মধ্যবর্তী বছর দিয়ে হিসাব করুন (_I)"
-#: optgeneralpage.ui:252
+#: optgeneralpage.ui:251
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "এবং"
-#: optgeneralpage.ui:267
+#: optgeneralpage.ui:266
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "বছর (দুই সংখ্যার)"
-#: optgeneralpage.ui:293
+#: optgeneralpage.ui:292
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: optgeneralpage.ui:308
+#: optgeneralpage.ui:307
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: optgeneralpage.ui:339
+#: optgeneralpage.ui:338
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "সিস্টেম আরম্ভ করার সময় %PRODUCTNAME লোড"
-#: optgeneralpage.ui:353
+#: optgeneralpage.ui:352
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "systray কুইকস্টার্টার সক্রিয়"
-#: optgeneralpage.ui:373
+#: optgeneralpage.ui:372
#, fuzzy
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
@@ -8787,239 +8787,243 @@ msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr "নিরাপত্তা সংক্রান্ত বিকল্প ও সতর্কতা"
-#: optuserpage.ui:34
+#: optuserpage.ui:12
+msgctxt "optuserpage|liststore1"
+msgid "No key"
+msgstr ""
+
+#: optuserpage.ui:45
msgctxt "optuserpage|companyft"
msgid "_Company:"
msgstr "কোম্পানি (_C):"
-#: optuserpage.ui:48
+#: optuserpage.ui:59
msgctxt "optuserpage|nameft"
msgid "First/last _name/initials:"
msgstr "প্রথম/শেষ নাম/আদ্যক্ষর (_n):"
-#: optuserpage.ui:62
+#: optuserpage.ui:73
msgctxt "optuserpage|streetft"
msgid "_Street:"
msgstr "রাস্তা (_S):"
-#: optuserpage.ui:76
+#: optuserpage.ui:87
msgctxt "optuserpage|cityft"
msgid "City/state/_zip:"
msgstr "শহর/রাজ্য/ডাক (_z):"
-#: optuserpage.ui:90
+#: optuserpage.ui:101
msgctxt "optuserpage|countryft"
msgid "Country/re_gion:"
msgstr "দেশ/অঞ্চল (_g):"
-#: optuserpage.ui:104
+#: optuserpage.ui:115
msgctxt "optuserpage|titleft"
msgid "_Title/position:"
msgstr "শিরোনাম (_T)/অবস্থান:"
-#: optuserpage.ui:118
+#: optuserpage.ui:129
msgctxt "optuserpage|phoneft"
msgid "Telephone (home/_work):"
msgstr "টেলিফোন (বাড়ি/অফিস (_w)):"
-#: optuserpage.ui:123
+#: optuserpage.ui:134
#, fuzzy
msgctxt "phoneft-atkobject"
msgid "Home telephone number"
msgstr "বাড়ির টেলিফোন নম্বর"
-#: optuserpage.ui:137
+#: optuserpage.ui:148
msgctxt "optuserpage|faxft"
msgid "Fa_x/e-mail:"
msgstr "ফ্যাক্স (_x)/ইমেল:"
-#: optuserpage.ui:160
+#: optuserpage.ui:171
msgctxt "optuserpage|firstname-atkobject"
msgid "First name"
msgstr "নামের প্রথমাংশ"
-#: optuserpage.ui:178
+#: optuserpage.ui:189
#, fuzzy
msgctxt "lastname-atkobject"
msgid "Last name"
msgstr "নামের শেষাংশ"
-#: optuserpage.ui:196
+#: optuserpage.ui:207
#, fuzzy
msgctxt "shortname-atkobject"
msgid "Initials"
msgstr "আদ্যক্ষর"
-#: optuserpage.ui:225
+#: optuserpage.ui:236
#, fuzzy
msgctxt "city-atkobject"
msgid "City"
msgstr "শহর"
-#: optuserpage.ui:243
+#: optuserpage.ui:254
#, fuzzy
msgctxt "state-atkobject"
msgid "State"
msgstr "অবস্থা"
-#: optuserpage.ui:261
+#: optuserpage.ui:272
#, fuzzy
msgctxt "zip-atkobject"
msgid "Zip code"
msgstr "জিপ কোড"
-#: optuserpage.ui:291
+#: optuserpage.ui:302
#, fuzzy
msgctxt "title-atkobject"
msgid "Title"
msgstr "শিরোনাম"
-#: optuserpage.ui:309
+#: optuserpage.ui:320
#, fuzzy
msgctxt "position-atkobject"
msgid "Position"
msgstr "অবস্থান"
-#: optuserpage.ui:338
+#: optuserpage.ui:349
#, fuzzy
msgctxt "home-atkobject"
msgid "Home telephone number"
msgstr "বাড়ির টেলিফোন নম্বর"
-#: optuserpage.ui:356
+#: optuserpage.ui:367
#, fuzzy
msgctxt "work-atkobject"
msgid "Work telephone number"
msgstr "কর্মস্থলের টেলিফোন নম্বর"
-#: optuserpage.ui:386
+#: optuserpage.ui:397
#, fuzzy
msgctxt "fax-atkobject"
msgid "FAX number"
msgstr "ফ্যাক্স নম্বর"
-#: optuserpage.ui:404
+#: optuserpage.ui:415
#, fuzzy
msgctxt "email-atkobject"
msgid "email address"
msgstr "ইমেল ঠিকানা"
-#: optuserpage.ui:421
+#: optuserpage.ui:432
msgctxt "optuserpage|usefordocprop"
msgid "Use data for document properties"
msgstr "নথির বৈশিষ্ট্যের জন্য ডাটা ব্যবহার"
-#: optuserpage.ui:438
+#: optuserpage.ui:449
msgctxt "optuserpage|rusnameft"
msgid "Last name/first _name/father’s name/initials:"
msgstr "পদবি/নাম (_n)/বাবার নাম/অাদ্যক্ষর:"
-#: optuserpage.ui:461
+#: optuserpage.ui:472
#, fuzzy
msgctxt "ruslastname-atkobject"
msgid "Last name"
msgstr "নামের শেষাংশ"
-#: optuserpage.ui:479
+#: optuserpage.ui:490
#, fuzzy
msgctxt "rusfathersname-atkobject"
msgid "Father's name"
msgstr "বাবার নাম"
-#: optuserpage.ui:497
+#: optuserpage.ui:508
#, fuzzy
msgctxt "russhortname-atkobject"
msgid "Initials"
msgstr "আদ্যক্ষর"
-#: optuserpage.ui:515
+#: optuserpage.ui:526
#, fuzzy
msgctxt "rusfirstname-atkobject"
msgid "First name"
msgstr "নামের প্রথমাংশ"
-#: optuserpage.ui:535
+#: optuserpage.ui:546
msgctxt "optuserpage|eastnameft"
msgid "Last/first _name/initials:"
msgstr "পদবি/নাম (_n)/আদ্যক্ষর:"
-#: optuserpage.ui:558
+#: optuserpage.ui:569
#, fuzzy
msgctxt "eastlastname-atkobject"
msgid "Last name"
msgstr "নামের শেষাংশ"
-#: optuserpage.ui:576
+#: optuserpage.ui:587
#, fuzzy
msgctxt "eastfirstname-atkobject"
msgid "First name"
msgstr "নামের প্রথমাংশ"
-#: optuserpage.ui:594
+#: optuserpage.ui:605
#, fuzzy
msgctxt "eastshortname-atkobject"
msgid "Initials"
msgstr "আদ্যক্ষর"
-#: optuserpage.ui:614
+#: optuserpage.ui:625
msgctxt "optuserpage|russtreetft"
msgid "_Street/apartment number:"
msgstr "স্ট্রীট (_S)/অ্যাপার্টমেন্ট নম্বর:"
-#: optuserpage.ui:637
+#: optuserpage.ui:648
#, fuzzy
msgctxt "russtreet-atkobject"
msgid "Street"
msgstr "রাস্তা"
-#: optuserpage.ui:655
+#: optuserpage.ui:666
#, fuzzy
msgctxt "ruslastname-atkobject"
msgid "Apartment number"
msgstr "অ্যাপার্টমেন্ট নম্বর"
-#: optuserpage.ui:675
+#: optuserpage.ui:686
msgctxt "optuserpage|icityft"
msgid "_Zip/city:"
msgstr "পোষ্ট কোড/শহর (_Z):"
-#: optuserpage.ui:698
+#: optuserpage.ui:709
#, fuzzy
msgctxt "icity-atkobject"
msgid "City"
msgstr "শহর"
-#: optuserpage.ui:716
+#: optuserpage.ui:727
#, fuzzy
msgctxt "izip-atkobject"
msgid "Zip code"
msgstr "জিপ কোড"
-#: optuserpage.ui:814
+#: optuserpage.ui:825
msgctxt "optuserpage|label1"
msgid "Address"
msgstr "ঠিকানা"
-#: optuserpage.ui:847
+#: optuserpage.ui:861
msgctxt "optuserpage|signingkeylabel"
msgid "OpenPGP signing key:"
msgstr ""
-#: optuserpage.ui:860
+#: optuserpage.ui:875
msgctxt "optuserpage|encryptionkeylabel"
msgid "OpenPGP encryption key:"
msgstr ""
-#: optuserpage.ui:889
+#: optuserpage.ui:908
msgctxt "optuserpage|encrypttoself"
msgid "When encrypting documents, always encrypt to self"
msgstr ""
-#: optuserpage.ui:909
-#, fuzzy
-msgctxt "optuserpage|label2"
+#: optuserpage.ui:930
+msgctxt "optuserpage|cryptographylabel"
msgid "Cryptography"
-msgstr "মুদ্রণশৈলী"
+msgstr ""
#: optviewpage.ui:47
msgctxt "optviewpage|grid3|tooltip_text"
diff --git a/source/bn-IN/extras/source/autocorr/emoji.po b/source/bn-IN/extras/source/autocorr/emoji.po
index eb719663fa7..651f2c40a3b 100644
--- a/source/bn-IN/extras/source/autocorr/emoji.po
+++ b/source/bn-IN/extras/source/autocorr/emoji.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: 2016-10-18 13:02+0200\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2016-12-01 12:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1802,13 +1802,12 @@ msgstr "শুরু"
#. ☇ (U+02607), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"LIGHTNING\n"
"LngText.text"
-msgid "lighting"
-msgstr "আলোর বিন্যাস"
+msgid "lightning3"
+msgstr ""
#. ☈ (U+02608), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1816,7 +1815,7 @@ msgctxt ""
"emoji.ulf\n"
"THUNDERSTORM\n"
"LngText.text"
-msgid "storm"
+msgid "storm2"
msgstr ""
#. ☉ (U+02609), see http://wiki.documentfoundation.org/Emoji
@@ -2165,13 +2164,12 @@ msgstr "চাঁদ"
#. ☿ (U+0263F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"MERCURY\n"
"LngText.text"
-msgid "Mercury"
-msgstr "পারদ"
+msgid "mercury"
+msgstr ""
#. ♀ (U+02640), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2188,7 +2186,7 @@ msgctxt ""
"emoji.ulf\n"
"EARTH\n"
"LngText.text"
-msgid "Earth"
+msgid "earth"
msgstr ""
#. ♂ (U+02642), see http://wiki.documentfoundation.org/Emoji
@@ -2207,7 +2205,7 @@ msgctxt ""
"emoji.ulf\n"
"JUPITER\n"
"LngText.text"
-msgid "Jupiter"
+msgid "jupiter"
msgstr ""
#. ♄ (U+02644), see http://wiki.documentfoundation.org/Emoji
@@ -2216,7 +2214,7 @@ msgctxt ""
"emoji.ulf\n"
"SATURN\n"
"LngText.text"
-msgid "Saturn"
+msgid "saturn"
msgstr ""
#. ♅ (U+02645), see http://wiki.documentfoundation.org/Emoji
@@ -2225,7 +2223,7 @@ msgctxt ""
"emoji.ulf\n"
"URANUS\n"
"LngText.text"
-msgid "Uranus"
+msgid "uranus"
msgstr ""
#. ♆ (U+02646), see http://wiki.documentfoundation.org/Emoji
@@ -2234,7 +2232,7 @@ msgctxt ""
"emoji.ulf\n"
"NEPTUNE\n"
"LngText.text"
-msgid "Neptune"
+msgid "neptune"
msgstr ""
#. ♇ (U+02647), see http://wiki.documentfoundation.org/Emoji
@@ -2243,7 +2241,7 @@ msgctxt ""
"emoji.ulf\n"
"PLUTO\n"
"LngText.text"
-msgid "Pluto"
+msgid "pluto"
msgstr ""
#. ♈ (U+02648), see http://wiki.documentfoundation.org/Emoji
@@ -2252,7 +2250,7 @@ msgctxt ""
"emoji.ulf\n"
"ARIES\n"
"LngText.text"
-msgid "Aries"
+msgid "aries"
msgstr ""
#. ♉ (U+02649), see http://wiki.documentfoundation.org/Emoji
@@ -2261,7 +2259,7 @@ msgctxt ""
"emoji.ulf\n"
"TAURUS\n"
"LngText.text"
-msgid "Taurus"
+msgid "taurus"
msgstr ""
#. ♊ (U+0264A), see http://wiki.documentfoundation.org/Emoji
@@ -2270,18 +2268,17 @@ msgctxt ""
"emoji.ulf\n"
"GEMINI\n"
"LngText.text"
-msgid "Gemini"
+msgid "gemini"
msgstr ""
#. ♋ (U+0264B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CANCER\n"
"LngText.text"
-msgid "Cancer"
-msgstr "বাতিল"
+msgid "cancer"
+msgstr ""
#. ♌ (U+0264C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2289,7 +2286,7 @@ msgctxt ""
"emoji.ulf\n"
"LEO\n"
"LngText.text"
-msgid "Leo"
+msgid "leo"
msgstr ""
#. ♍ (U+0264D), see http://wiki.documentfoundation.org/Emoji
@@ -2298,7 +2295,7 @@ msgctxt ""
"emoji.ulf\n"
"VIRGO\n"
"LngText.text"
-msgid "Virgo"
+msgid "virgo"
msgstr ""
#. ♎ (U+0264E), see http://wiki.documentfoundation.org/Emoji
@@ -2307,7 +2304,7 @@ msgctxt ""
"emoji.ulf\n"
"LIBRA\n"
"LngText.text"
-msgid "Libra"
+msgid "libra"
msgstr ""
#. ♏ (U+0264F), see http://wiki.documentfoundation.org/Emoji
@@ -2316,7 +2313,7 @@ msgctxt ""
"emoji.ulf\n"
"SCORPIUS\n"
"LngText.text"
-msgid "Scorpius"
+msgid "scorpius"
msgstr ""
#. ♐ (U+02650), see http://wiki.documentfoundation.org/Emoji
@@ -2325,7 +2322,7 @@ msgctxt ""
"emoji.ulf\n"
"SAGITTARIUS\n"
"LngText.text"
-msgid "Sagittarius"
+msgid "sagittarius"
msgstr ""
#. ♑ (U+02651), see http://wiki.documentfoundation.org/Emoji
@@ -2334,7 +2331,7 @@ msgctxt ""
"emoji.ulf\n"
"CAPRICORN\n"
"LngText.text"
-msgid "Capricorn"
+msgid "capricorn"
msgstr ""
#. ♒ (U+02652), see http://wiki.documentfoundation.org/Emoji
@@ -2343,7 +2340,7 @@ msgctxt ""
"emoji.ulf\n"
"AQUARIUS\n"
"LngText.text"
-msgid "Aquarius"
+msgid "aquarius"
msgstr ""
#. ♓ (U+02653), see http://wiki.documentfoundation.org/Emoji
@@ -2352,7 +2349,7 @@ msgctxt ""
"emoji.ulf\n"
"PISCES\n"
"LngText.text"
-msgid "Pisces"
+msgid "pisces"
msgstr ""
#. ♔ (U+02654), see http://wiki.documentfoundation.org/Emoji
@@ -2717,7 +2714,7 @@ msgctxt ""
"emoji.ulf\n"
"WHITE_FLAG\n"
"LngText.text"
-msgid "flag"
+msgid "flag4"
msgstr ""
#. ⚑ (U+02691), see http://wiki.documentfoundation.org/Emoji
@@ -2726,7 +2723,7 @@ msgctxt ""
"emoji.ulf\n"
"BLACK_FLAG\n"
"LngText.text"
-msgid "flag2"
+msgid "flag3"
msgstr ""
#. ⚒ (U+02692), see http://wiki.documentfoundation.org/Emoji
@@ -3038,7 +3035,7 @@ msgctxt ""
"emoji.ulf\n"
"BLACK_CROSS_ON_SHIELD\n"
"LngText.text"
-msgid "shield"
+msgid "shield2"
msgstr ""
#. ⛪ (U+026EA), see http://wiki.documentfoundation.org/Emoji
@@ -3079,13 +3076,12 @@ msgstr ""
#. ⛳ (U+026F3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"FLAG_IN_HOLE\n"
"LngText.text"
-msgid "golf"
-msgstr "গাঢ়"
+msgid "golf2"
+msgstr ""
#. ⛴ (U+026F4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3829,7 +3825,7 @@ msgctxt ""
"emoji.ulf\n"
"FOGGY\n"
"LngText.text"
-msgid "fog"
+msgid "foggy"
msgstr ""
#. 🌂 (U+1F302), see http://wiki.documentfoundation.org/Emoji
@@ -3930,7 +3926,7 @@ msgctxt ""
"emoji.ulf\n"
"MILKY_WAY\n"
"LngText.text"
-msgid "Milky way"
+msgid "milky way"
msgstr ""
#. 🌍 (U+1F30D), see http://wiki.documentfoundation.org/Emoji
@@ -4188,7 +4184,7 @@ msgctxt ""
"emoji.ulf\n"
"CHERRY_BLOSSOM\n"
"LngText.text"
-msgid "cherry blossom"
+msgid "blossom2"
msgstr ""
#. 🌹 (U+1F339), see http://wiki.documentfoundation.org/Emoji
@@ -4426,7 +4422,7 @@ msgctxt ""
"emoji.ulf\n"
"CHERRIES\n"
"LngText.text"
-msgid "cherries"
+msgid "cherry"
msgstr ""
#. 🍓 (U+1F353), see http://wiki.documentfoundation.org/Emoji
@@ -4730,7 +4726,7 @@ msgctxt ""
"emoji.ulf\n"
"COOKING\n"
"LngText.text"
-msgid "egg"
+msgid "cooking"
msgstr ""
#. 🍴 (U+1F374), see http://wiki.documentfoundation.org/Emoji
@@ -4768,7 +4764,7 @@ msgctxt ""
"emoji.ulf\n"
"WINE_GLASS\n"
"LngText.text"
-msgid "wine glass"
+msgid "glass"
msgstr ""
#. 🍸 (U+1F378), see http://wiki.documentfoundation.org/Emoji
@@ -4786,7 +4782,7 @@ msgctxt ""
"emoji.ulf\n"
"TROPICAL_DRINK\n"
"LngText.text"
-msgid "tropical drink"
+msgid "drink2"
msgstr ""
#. 🍺 (U+1F37A), see http://wiki.documentfoundation.org/Emoji
@@ -4822,7 +4818,7 @@ msgctxt ""
"emoji.ulf\n"
"RIBBON\n"
"LngText.text"
-msgid "ribbon"
+msgid "ribbon2"
msgstr ""
#. 🎁 (U+1F381), see http://wiki.documentfoundation.org/Emoji
@@ -4849,7 +4845,7 @@ msgctxt ""
"emoji.ulf\n"
"JACK-O-LANTERN\n"
"LngText.text"
-msgid "Halloween"
+msgid "halloween"
msgstr ""
#. 🎄 (U+1F384), see http://wiki.documentfoundation.org/Emoji
@@ -4858,7 +4854,7 @@ msgctxt ""
"emoji.ulf\n"
"CHRISTMAS_TREE\n"
"LngText.text"
-msgid "Christmas"
+msgid "christmas"
msgstr ""
#. 🎅 (U+1F385), see http://wiki.documentfoundation.org/Emoji
@@ -4867,7 +4863,7 @@ msgctxt ""
"emoji.ulf\n"
"FATHER_CHRISTMAS\n"
"LngText.text"
-msgid "Santa"
+msgid "santa"
msgstr ""
#. 🎆 (U+1F386), see http://wiki.documentfoundation.org/Emoji
@@ -4913,7 +4909,7 @@ msgctxt ""
"emoji.ulf\n"
"CONFETTI_BALL\n"
"LngText.text"
-msgid "confetti ball"
+msgid "party2"
msgstr ""
#. 🎋 (U+1F38B), see http://wiki.documentfoundation.org/Emoji
@@ -5004,7 +5000,7 @@ msgctxt ""
"emoji.ulf\n"
"CAROUSEL_HORSE\n"
"LngText.text"
-msgid "carousel horse"
+msgid "fair2"
msgstr ""
#. 🎡 (U+1F3A1), see http://wiki.documentfoundation.org/Emoji
@@ -5013,7 +5009,7 @@ msgctxt ""
"emoji.ulf\n"
"FERRIS_WHEEL\n"
"LngText.text"
-msgid "ferris wheel"
+msgid "fair"
msgstr ""
#. 🎢 (U+1F3A2), see http://wiki.documentfoundation.org/Emoji
@@ -5094,7 +5090,7 @@ msgctxt ""
"emoji.ulf\n"
"CIRCUS_TENT\n"
"LngText.text"
-msgid "circus tent"
+msgid "circus"
msgstr ""
#. 🎫 (U+1F3AB), see http://wiki.documentfoundation.org/Emoji
@@ -5302,7 +5298,7 @@ msgctxt ""
"emoji.ulf\n"
"CHEQUERED_FLAG\n"
"LngText.text"
-msgid "flag3"
+msgid "race"
msgstr ""
#. 🏂 (U+1F3C2), see http://wiki.documentfoundation.org/Emoji
@@ -5347,7 +5343,7 @@ msgctxt ""
"emoji.ulf\n"
"HORSE_RACING\n"
"LngText.text"
-msgid "horse racing"
+msgid "horse3"
msgstr ""
#. 🏈 (U+1F3C8), see http://wiki.documentfoundation.org/Emoji
@@ -7098,7 +7094,7 @@ msgctxt ""
"emoji.ulf\n"
"MONEY_BAG\n"
"LngText.text"
-msgid "moneybag"
+msgid "money2"
msgstr ""
#. 💱 (U+1F4B1), see http://wiki.documentfoundation.org/Emoji
@@ -7107,7 +7103,7 @@ msgctxt ""
"emoji.ulf\n"
"CURRENCY_EXCHANGE\n"
"LngText.text"
-msgid "currency exchange"
+msgid "exchange"
msgstr ""
#. 💲 (U+1F4B2), see http://wiki.documentfoundation.org/Emoji
@@ -7175,13 +7171,12 @@ msgstr ""
#. 💹 (U+1F4B9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CHART_WITH_UPWARDS_TREND_AND_YEN_SIGN\n"
"LngText.text"
-msgid "chart"
-msgstr "লেখচিত্র"
+msgid "chart4"
+msgstr ""
#. 💺 (U+1F4BA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7273,7 +7268,7 @@ msgctxt ""
"emoji.ulf\n"
"PAGE_WITH_CURL\n"
"LngText.text"
-msgid "page with curl"
+msgid "page3"
msgstr ""
#. 📄 (U+1F4C4), see http://wiki.documentfoundation.org/Emoji
@@ -7282,7 +7277,7 @@ msgctxt ""
"emoji.ulf\n"
"PAGE_FACING_UP\n"
"LngText.text"
-msgid "page facing up"
+msgid "page"
msgstr ""
#. 📅 (U+1F4C5), see http://wiki.documentfoundation.org/Emoji
@@ -7316,13 +7311,12 @@ msgstr ""
#. 📈 (U+1F4C8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CHART_WITH_UPWARDS_TREND\n"
"LngText.text"
-msgid "char"
-msgstr "লেখচিত্র"
+msgid "chart"
+msgstr ""
#. 📉 (U+1F4C9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7439,13 +7433,12 @@ msgstr ""
#. 📕 (U+1F4D5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CLOSED_BOOK\n"
"LngText.text"
-msgid "book"
-msgstr "বই"
+msgid "book2"
+msgstr ""
#. 📖 (U+1F4D6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7453,7 +7446,7 @@ msgctxt ""
"emoji.ulf\n"
"OPEN_BOOK\n"
"LngText.text"
-msgid "book2"
+msgid "book3"
msgstr ""
#. 📚 (U+1F4DA), see http://wiki.documentfoundation.org/Emoji
@@ -7527,7 +7520,7 @@ msgctxt ""
"emoji.ulf\n"
"SATELLITE_ANTENNA\n"
"LngText.text"
-msgid "satellite"
+msgid "antenna"
msgstr ""
#. 📢 (U+1F4E2), see http://wiki.documentfoundation.org/Emoji
@@ -7589,23 +7582,21 @@ msgstr "ইমেইল"
#. 📨 (U+1F4E8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"INCOMING_ENVELOPE\n"
"LngText.text"
-msgid "envelope2"
-msgstr "খাম"
+msgid "envelope7"
+msgstr ""
#. 📩 (U+1F4E9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"ENVELOPE_WITH_DOWNWARDS_ARROW_ABOVE\n"
"LngText.text"
-msgid "envelope3"
-msgstr "খাম"
+msgid "envelope8"
+msgstr ""
#. 📪 (U+1F4EA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8432,7 +8423,7 @@ msgctxt ""
"emoji.ulf\n"
"SMILING_FACE_WITH_OPEN_MOUTH_AND_TIGHTLY-CLOSED_EYES\n"
"LngText.text"
-msgid "laughing"
+msgid "laugh"
msgstr ""
#. 😇 (U+1F607), see http://wiki.documentfoundation.org/Emoji
@@ -8505,7 +8496,7 @@ msgctxt ""
"emoji.ulf\n"
"SMILING_FACE_WITH_SUNGLASSES\n"
"LngText.text"
-msgid "sunglasses"
+msgid "sunglasses2"
msgstr ""
#. 😏 (U+1F60F), see http://wiki.documentfoundation.org/Emoji
@@ -8975,7 +8966,7 @@ msgctxt ""
"emoji.ulf\n"
"FACE_WITH_OK_GESTURE\n"
"LngText.text"
-msgid "ok2"
+msgid "ok3"
msgstr ""
#. 🙇 (U+1F647), see http://wiki.documentfoundation.org/Emoji
@@ -8984,7 +8975,7 @@ msgctxt ""
"emoji.ulf\n"
"PERSON_BOWING_DEEPLY\n"
"LngText.text"
-msgid "bow"
+msgid "prostration"
msgstr ""
#. 🙈 (U+1F648), see http://wiki.documentfoundation.org/Emoji
@@ -9085,7 +9076,7 @@ msgctxt ""
"emoji.ulf\n"
"STEAM_LOCOMOTIVE\n"
"LngText.text"
-msgid "steam locomotive"
+msgid "locomotive"
msgstr ""
#. 🚃 (U+1F683), see http://wiki.documentfoundation.org/Emoji
@@ -9575,7 +9566,7 @@ msgctxt ""
"emoji.ulf\n"
"CHILDREN_CROSSING\n"
"LngText.text"
-msgid "children crossing"
+msgid "crosswalk"
msgstr ""
#. 🚹 (U+1F6B9), see http://wiki.documentfoundation.org/Emoji
@@ -9697,6 +9688,3714 @@ msgctxt ""
msgid "left luggage"
msgstr ""
+#. 🕃 (U+1F543), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTCHED_LEFT_SEMICIRCLE_WITH_THREE_DOTS\n"
+"LngText.text"
+msgid "feast"
+msgstr ""
+
+#. 🙂 (U+1F642), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLIGHTLY_SMILING_FACE\n"
+"LngText.text"
+msgid "smiling3"
+msgstr ""
+
+#. 🙁 (U+1F641), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLIGHTLY_FROWNING_FACE\n"
+"LngText.text"
+msgid "frowning2"
+msgstr ""
+
+#. 🕵 (U+1F575), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLEUTH_OR_SPY\n"
+"LngText.text"
+msgid "detective"
+msgstr ""
+
+#. 🛌 (U+1F6CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLEEPING_ACCOMMODATION\n"
+"LngText.text"
+msgid "sleep"
+msgstr ""
+
+#. 🕴 (U+1F574), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_IN_BUSINESS_SUIT_LEVITATING\n"
+"LngText.text"
+msgid "suit"
+msgstr ""
+
+#. 🗣 (U+1F5E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPEAKING_HEAD_IN_SILHOUETTE\n"
+"LngText.text"
+msgid "head"
+msgstr ""
+
+#. 🏌 (U+1F3CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GOLFER\n"
+"LngText.text"
+msgid "golf"
+msgstr ""
+
+#. 🏋 (U+1F3CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WEIGHT_LIFTER\n"
+"LngText.text"
+msgid "weight lifter"
+msgstr ""
+
+#. 🏎 (U+1F3CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RACING_CAR\n"
+"LngText.text"
+msgid "car4"
+msgstr ""
+
+#. 🏍 (U+1F3CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RACING_MOTORCYCLE\n"
+"LngText.text"
+msgid "motorcycle"
+msgstr ""
+
+#. 🖕 (U+1F595), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_HAND_WITH_MIDDLE_FINGER_EXTENDED\n"
+"LngText.text"
+msgid "finger"
+msgstr ""
+
+#. 🖖 (U+1F596), Mr. Spock's Vulcan salute from Star Trek, see also http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_HAND_WITH_PART_BETWEEN_MIDDLE_AND_RING_FINGERS\n"
+"LngText.text"
+msgid "spock"
+msgstr ""
+
+#. 🖐 (U+1F590), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_HAND_WITH_FINGERS_SPLAYED\n"
+"LngText.text"
+msgid "hand2"
+msgstr ""
+
+#. 👁 (U+1F441), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EYE\n"
+"LngText.text"
+msgid "eye"
+msgstr ""
+
+#. 🗨 (U+1F5E8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_SPEECH_BUBBLE\n"
+"LngText.text"
+msgid "bubble"
+msgstr ""
+
+#. 🗯 (U+1F5EF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_ANGER_BUBBLE\n"
+"LngText.text"
+msgid "bubble4"
+msgstr ""
+
+#. 🕳 (U+1F573), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOLE\n"
+"LngText.text"
+msgid "hole"
+msgstr ""
+
+#. 🕶 (U+1F576), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DARK_SUNGLASSES\n"
+"LngText.text"
+msgid "sunglasses"
+msgstr ""
+
+#. 🛍 (U+1F6CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOPPING_BAGS\n"
+"LngText.text"
+msgid "shop"
+msgstr ""
+
+#. 🐿 (U+1F43F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHIPMUNK\n"
+"LngText.text"
+msgid "chipmunk"
+msgstr ""
+
+#. 🕊 (U+1F54A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOVE_OF_PEACE\n"
+"LngText.text"
+msgid "dove"
+msgstr ""
+
+#. 🕷 (U+1F577), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIDER\n"
+"LngText.text"
+msgid "spider"
+msgstr ""
+
+#. 🕸 (U+1F578), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIDER_WEB\n"
+"LngText.text"
+msgid "web"
+msgstr ""
+
+#. 🏵 (U+1F3F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROSETTE\n"
+"LngText.text"
+msgid "rosette"
+msgstr ""
+
+#. 🌶 (U+1F336), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOT_PEPPER\n"
+"LngText.text"
+msgid "pepper"
+msgstr ""
+
+#. 🍽 (U+1F37D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FORK_AND_KNIFE_WITH_PLATE\n"
+"LngText.text"
+msgid "plate"
+msgstr ""
+
+#. 🗺 (U+1F5FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WORLD_MAP\n"
+"LngText.text"
+msgid "map"
+msgstr ""
+
+#. 🏔 (U+1F3D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SNOW_CAPPED_MOUNTAIN\n"
+"LngText.text"
+msgid "mountain2"
+msgstr ""
+
+#. 🏕 (U+1F3D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CAMPING\n"
+"LngText.text"
+msgid "camping"
+msgstr ""
+
+#. 🏖 (U+1F3D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEACH_WITH_UMBRELLA\n"
+"LngText.text"
+msgid "beach"
+msgstr ""
+
+#. 🏜 (U+1F3DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESERT\n"
+"LngText.text"
+msgid "desert"
+msgstr ""
+
+#. 🏝 (U+1F3DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESERT_ISLAND\n"
+"LngText.text"
+msgid "island"
+msgstr ""
+
+#. 🏞 (U+1F3DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NATIONAL_PARK\n"
+"LngText.text"
+msgid "park"
+msgstr ""
+
+#. 🏟 (U+1F3DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STADIUM\n"
+"LngText.text"
+msgid "stadium"
+msgstr ""
+
+#. 🏛 (U+1F3DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLASSICAL_BUILDING\n"
+"LngText.text"
+msgid "museum"
+msgstr ""
+
+#. 🏗 (U+1F3D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BUILDING_CONSTRUCTION\n"
+"LngText.text"
+msgid "crane"
+msgstr ""
+
+#. 🏘 (U+1F3D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOUSE_BUILDINGS\n"
+"LngText.text"
+msgid "houses"
+msgstr ""
+
+#. 🏚 (U+1F3DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DERELICT_HOUSE_BUILDING\n"
+"LngText.text"
+msgid "house3"
+msgstr ""
+
+#. 🏙 (U+1F3D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CITYSCAPE\n"
+"LngText.text"
+msgid "city"
+msgstr ""
+
+#. 🛣 (U+1F6E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTORWAY\n"
+"LngText.text"
+msgid "motorway"
+msgstr ""
+
+#. 🛤 (U+1F6E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAILWAY_TRACK\n"
+"LngText.text"
+msgid "track"
+msgstr ""
+
+#. 🛢 (U+1F6E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OIL_DRUM\n"
+"LngText.text"
+msgid "drum"
+msgstr ""
+
+#. 🛳 (U+1F6F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PASSENGER_SHIP\n"
+"LngText.text"
+msgid "ship2"
+msgstr ""
+
+#. 🛥 (U+1F6E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTOR_BOAT\n"
+"LngText.text"
+msgid "motor boat"
+msgstr ""
+
+#. 🛩 (U+1F6E9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SMALL_AIRPLANE\n"
+"LngText.text"
+msgid "airplane2"
+msgstr ""
+
+#. 🛫 (U+1F6EB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AIRPLANE_DEPARTURE\n"
+"LngText.text"
+msgid "departure"
+msgstr ""
+
+#. 🛬 (U+1F6EC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AIRPLANE_ARRIVING\n"
+"LngText.text"
+msgid "arrival"
+msgstr ""
+
+#. 🛰 (U+1F6F0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SATELLITE\n"
+"LngText.text"
+msgid "satellite"
+msgstr ""
+
+#. 🛎 (U+1F6CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BELLHOP_BELL\n"
+"LngText.text"
+msgid "bell2"
+msgstr ""
+
+#. 🕰 (U+1F570), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MANTELPIECE_CLOCK\n"
+"LngText.text"
+msgid "clock"
+msgstr ""
+
+#. 🌡 (U+1F321), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THERMOMETER\n"
+"LngText.text"
+msgid "thermometer"
+msgstr ""
+
+#. 🌤 (U+1F324), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_WITH_SMALL_CLOUD\n"
+"LngText.text"
+msgid "cloudy"
+msgstr ""
+
+#. 🌥 (U+1F325), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_BEHIND_CLOUD\n"
+"LngText.text"
+msgid "cloudy2"
+msgstr ""
+
+#. 🌦 (U+1F326), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_BEHIND_CLOUD_WITH_RAIN\n"
+"LngText.text"
+msgid "rainy"
+msgstr ""
+
+#. 🌧 (U+1F327), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_RAIN\n"
+"LngText.text"
+msgid "storm"
+msgstr ""
+
+#. 🌨 (U+1F328), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_SNOW\n"
+"LngText.text"
+msgid "snow"
+msgstr ""
+
+#. 🌩 (U+1F329), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_LIGHTNING\n"
+"LngText.text"
+msgid "lightning"
+msgstr ""
+
+#. 🌪 (U+1F32A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_TORNADO\n"
+"LngText.text"
+msgid "tornado"
+msgstr ""
+
+#. 🌫 (U+1F32B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOG\n"
+"LngText.text"
+msgid "fog"
+msgstr ""
+
+#. 🌬 (U+1F32C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WIND_BLOWING_FACE\n"
+"LngText.text"
+msgid "wind"
+msgstr ""
+
+#. 🎗 (U+1F397), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REMINDER_RIBBON\n"
+"LngText.text"
+msgid "ribbon"
+msgstr ""
+
+#. 🎟 (U+1F39F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ADMISSION_TICKETS\n"
+"LngText.text"
+msgid "ticket2"
+msgstr ""
+
+#. 🎖 (U+1F396), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MILITARY_MEDAL\n"
+"LngText.text"
+msgid "medal2"
+msgstr ""
+
+#. 🏅 (U+1F3C5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPORTS_MEDAL\n"
+"LngText.text"
+msgid "medal"
+msgstr ""
+
+#. 🕹 (U+1F579), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"JOYSTICK\n"
+"LngText.text"
+msgid "joystick"
+msgstr ""
+
+#. 🖼 (U+1F5BC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_PICTURE\n"
+"LngText.text"
+msgid "picture"
+msgstr ""
+
+#. 🎙 (U+1F399), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STUDIO_MICROPHONE\n"
+"LngText.text"
+msgid "microphone2"
+msgstr ""
+
+#. 🎚 (U+1F39A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEVEL_SLIDER\n"
+"LngText.text"
+msgid "slider"
+msgstr ""
+
+#. 🎛 (U+1F39B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CONTROL_KNOBS\n"
+"LngText.text"
+msgid "control"
+msgstr ""
+
+#. 🖥 (U+1F5A5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESKTOP_COMPUTER\n"
+"LngText.text"
+msgid "computer2"
+msgstr ""
+
+#. 🖨 (U+1F5A8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINTER\n"
+"LngText.text"
+msgid "printer"
+msgstr ""
+
+#. 🖱 (U+1F5B1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse3"
+msgstr ""
+
+#. 🖲 (U+1F5B2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TRACKBALL\n"
+"LngText.text"
+msgid "trackball"
+msgstr ""
+
+#. 🎞 (U+1F39E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILM_FRAMES\n"
+"LngText.text"
+msgid "film"
+msgstr ""
+
+#. 📽 (U+1F4FD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILM_PROJECTOR\n"
+"LngText.text"
+msgid "projector"
+msgstr ""
+
+#. 📸 (U+1F4F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CAMERA_WITH_FLASH\n"
+"LngText.text"
+msgid "flash"
+msgstr ""
+
+#. 🕯 (U+1F56F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANDLE\n"
+"LngText.text"
+msgid "candle"
+msgstr ""
+
+#. 🗞 (U+1F5DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROLLED-UP_NEWSPAPER\n"
+"LngText.text"
+msgid "newspaper2"
+msgstr ""
+
+#. 🏷 (U+1F3F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LABEL\n"
+"LngText.text"
+msgid "label"
+msgstr ""
+
+#. 🗳 (U+1F5F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BALLOT\n"
+"LngText.text"
+msgid "ballot"
+msgstr ""
+
+#. 🖋 (U+1F58B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_FOUNTAIN_PEN\n"
+"LngText.text"
+msgid "pen2"
+msgstr ""
+
+#. 🖊 (U+1F58A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_BALLPOINT_PEN\n"
+"LngText.text"
+msgid "pen"
+msgstr ""
+
+#. 🖌 (U+1F58C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_PAINTBRUSH\n"
+"LngText.text"
+msgid "paintbrush"
+msgstr ""
+
+#. 🖍 (U+1F58D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_CRAYON\n"
+"LngText.text"
+msgid "crayon"
+msgstr ""
+
+#. 🗂 (U+1F5C2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARD_INDEX_DIVIDERS\n"
+"LngText.text"
+msgid "index"
+msgstr ""
+
+#. 🗒 (U+1F5D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIRAL_NOTE_PAD\n"
+"LngText.text"
+msgid "notepad"
+msgstr ""
+
+#. 🗓 (U+1F5D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIRAL_CALENDAR_PAD\n"
+"LngText.text"
+msgid "calendar3"
+msgstr ""
+
+#. 🖇 (U+1F587), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LINKED_PAPERCLIPS\n"
+"LngText.text"
+msgid "paperclip2"
+msgstr ""
+
+#. 🗃 (U+1F5C3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARD_FILE_BOX\n"
+"LngText.text"
+msgid "box"
+msgstr ""
+
+#. 🗄 (U+1F5C4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILE_CABINET\n"
+"LngText.text"
+msgid "cabinet"
+msgstr ""
+
+#. 🗑 (U+1F5D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WASTEBASKET\n"
+"LngText.text"
+msgid "wastebasket"
+msgstr ""
+
+#. 🗝 (U+1F5DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLD_KEY\n"
+"LngText.text"
+msgid "key2"
+msgstr ""
+
+#. 🛠 (U+1F6E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HAMMER_AND_WRENCH\n"
+"LngText.text"
+msgid "hammer and wrench"
+msgstr ""
+
+#. 🗡 (U+1F5E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DAGGER_KNIFE\n"
+"LngText.text"
+msgid "knife2"
+msgstr ""
+
+#. 🛡 (U+1F6E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHIELD\n"
+"LngText.text"
+msgid "shield"
+msgstr ""
+
+#. 🗜 (U+1F5DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COMPRESSION\n"
+"LngText.text"
+msgid "clamp"
+msgstr ""
+
+#. 🛏 (U+1F6CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BED\n"
+"LngText.text"
+msgid "bed"
+msgstr ""
+
+#. 🛋 (U+1F6CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COUCH_AND_LAMP\n"
+"LngText.text"
+msgid "couch"
+msgstr ""
+
+#. 🕉 (U+1F549), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OM_SYMBOL\n"
+"LngText.text"
+msgid "om"
+msgstr ""
+
+#. ⏸ (U+23F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOUBLE_VERTICAL_BAR\n"
+"LngText.text"
+msgid "pause"
+msgstr ""
+
+#. ⏹ (U+23F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_SQUARE_FOR_STOP\n"
+"LngText.text"
+msgid "stop2"
+msgstr ""
+
+#. ⏺ (U+23FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_CIRCLE_FOR_RECORD\n"
+"LngText.text"
+msgid "record"
+msgstr ""
+
+#. 🏴 (U+1F3F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WAVING_BLACK_FLAG\n"
+"LngText.text"
+msgid "flag"
+msgstr ""
+
+#. 🏳 (U+1F3F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WAVING_WHITE_FLAG\n"
+"LngText.text"
+msgid "flag2"
+msgstr ""
+
+#. 🗷 (U+1F5F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BOLD_SCRIPT_X\n"
+"LngText.text"
+msgid "checkbox4"
+msgstr ""
+
+#. 🛉 (U+1F6C9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOYS_SYMBOL\n"
+"LngText.text"
+msgid "boys"
+msgstr ""
+
+#. 🛈 (U+1F6C8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CIRCLED_INFORMATION_SOURCE\n"
+"LngText.text"
+msgid "information3"
+msgstr ""
+
+#. 🛊 (U+1F6CA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GIRLS_SYMBOL\n"
+"LngText.text"
+msgid "girls"
+msgstr ""
+
+#. 🛨 (U+1F6E8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_SMALL_AIRPLANE\n"
+"LngText.text"
+msgid "airplane4"
+msgstr ""
+
+#. 🛲 (U+1F6F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DIESEL_LOCOMOTIVE\n"
+"LngText.text"
+msgid "locomotive2"
+msgstr ""
+
+#. 🛧 (U+1F6E7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_AIRPLANE\n"
+"LngText.text"
+msgid "airplane3"
+msgstr ""
+
+#. 🛱 (U+1F6F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ONCOMING_FIRE_ENGINE\n"
+"LngText.text"
+msgid "fire engine2"
+msgstr ""
+
+#. 🛦 (U+1F6E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_MILITARY_AIRPLANE\n"
+"LngText.text"
+msgid "airplane5"
+msgstr ""
+
+#. 🛪 (U+1F6EA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NORTHEAST-POINTING_AIRPLANE\n"
+"LngText.text"
+msgid "airplane6"
+msgstr ""
+
+#. 🗭 (U+1F5ED), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_THOUGHT_BUBBLE\n"
+"LngText.text"
+msgid "bubble5"
+msgstr ""
+
+#. 🗱 (U+1F5F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHTNING_MOOD_BUBBLE\n"
+"LngText.text"
+msgid "bubble6"
+msgstr ""
+
+#. 🗬 (U+1F5EC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_THOUGHT_BUBBLE\n"
+"LngText.text"
+msgid "bubble7"
+msgstr ""
+
+#. 🗠 (U+1F5E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STOCK_CHART\n"
+"LngText.text"
+msgid "chart5"
+msgstr ""
+
+#. 🗟 (U+1F5DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGE_WITH_CIRCLED_TEXT\n"
+"LngText.text"
+msgid "page4"
+msgstr ""
+
+#. 🖎 (U+1F58E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_WRITING_HAND\n"
+"LngText.text"
+msgid "writing2"
+msgstr ""
+
+#. 🗦 (U+1F5E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_LEFT\n"
+"LngText.text"
+msgid "rays"
+msgstr ""
+
+#. 🎝 (U+1F39D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEAMED_DESCENDING_MUSICAL_NOTES\n"
+"LngText.text"
+msgid "notes3"
+msgstr ""
+
+#. 🔾 (U+1F53E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_RIGHT_SHADOWED_WHITE_CIRCLE\n"
+"LngText.text"
+msgid "circle3"
+msgstr ""
+
+#. 🎜 (U+1F39C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEAMED_ASCENDING_MUSICAL_NOTES\n"
+"LngText.text"
+msgid "notes4"
+msgstr ""
+
+#. 🕮 (U+1F56E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOOK\n"
+"LngText.text"
+msgid "book"
+msgstr ""
+
+#. 🗛 (U+1F5DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DECREASE_FONT_SIZE_SYMBOL\n"
+"LngText.text"
+msgid "font"
+msgstr ""
+
+#. 🔿 (U+1F53F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UPPER_RIGHT_SHADOWED_WHITE_CIRCLE\n"
+"LngText.text"
+msgid "circle4"
+msgstr ""
+
+#. 🕫 (U+1F56B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BULLHORN\n"
+"LngText.text"
+msgid "bullhorn"
+msgstr ""
+
+#. 🕬 (U+1F56C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BULLHORN_WITH_SOUND_WAVES\n"
+"LngText.text"
+msgid "bullhorn2"
+msgstr ""
+
+#. 🕻 (U+1F57B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_HAND_TELEPHONE_RECEIVER\n"
+"LngText.text"
+msgid "receiver2"
+msgstr ""
+
+#. 🕾 (U+1F57E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_TOUCHTONE_TELEPHONE\n"
+"LngText.text"
+msgid "phone3"
+msgstr ""
+
+#. 🕼 (U+1F57C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TELEPHONE_RECEIVER_WITH_PAGE\n"
+"LngText.text"
+msgid "receiver4"
+msgstr ""
+
+#. 🕽 (U+1F57D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_HAND_TELEPHONE_RECEIVER\n"
+"LngText.text"
+msgid "receiver3"
+msgstr ""
+
+#. 🕿 (U+1F57F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_TOUCHTONE_TELEPHONE\n"
+"LngText.text"
+msgid "phone4"
+msgstr ""
+
+#. 🖚 (U+1F59A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_LEFT_POINTING_INDEX\n"
+"LngText.text"
+msgid "left4"
+msgstr ""
+
+#. 🖏 (U+1F58F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TURNED_OK_HAND_SIGN\n"
+"LngText.text"
+msgid "ok2"
+msgstr ""
+
+#. 🖜 (U+1F59C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_LEFT_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "left5"
+msgstr ""
+
+#. 🗥 (U+1F5E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_BELOW\n"
+"LngText.text"
+msgid "rays2"
+msgstr ""
+
+#. 🖛 (U+1F59B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_RIGHT_POINTING_INDEX\n"
+"LngText.text"
+msgid "right4"
+msgstr ""
+
+#. 🖟 (U+1F59F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_DOWN_POINTING_INDEX\n"
+"LngText.text"
+msgid "down3"
+msgstr ""
+
+#. 🖞 (U+1F59E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_UP_POINTING_INDEX\n"
+"LngText.text"
+msgid "up3"
+msgstr ""
+
+#. 🌢 (U+1F322), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_DROPLET\n"
+"LngText.text"
+msgid "droplet2"
+msgstr ""
+
+#. 🎘 (U+1F398), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MUSICAL_KEYBOARD_WITH_JACKS\n"
+"LngText.text"
+msgid "synthesizer"
+msgstr ""
+
+#. 🎕 (U+1F395), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOUQUET_OF_FLOWERS\n"
+"LngText.text"
+msgid "bouquet2"
+msgstr ""
+
+#. 🎔 (U+1F394), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEART_WITH_TIP_ON_THE_LEFT\n"
+"LngText.text"
+msgid "heart2"
+msgstr ""
+
+#. 🕱 (U+1F571), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_SKULL_AND_CROSSBONES\n"
+"LngText.text"
+msgid "pirate"
+msgstr ""
+
+#. 🖀 (U+1F580), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TELEPHONE_ON_TOP_OF_MODEM\n"
+"LngText.text"
+msgid "modem"
+msgstr ""
+
+#. 🕲 (U+1F572), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NO_PIRACY\n"
+"LngText.text"
+msgid "no piracy"
+msgstr ""
+
+#. 🕅 (U+1F545), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SYMBOL_FOR_MARKS_CHAPTER\n"
+"LngText.text"
+msgid "marks chapter"
+msgstr ""
+
+#. 🕈 (U+1F548), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CELTIC_CROSS\n"
+"LngText.text"
+msgid "Celtic cross"
+msgstr ""
+
+#. 🖗 (U+1F597), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_DOWN_POINTING_LEFT_HAND_INDEX\n"
+"LngText.text"
+msgid "down4"
+msgstr ""
+
+#. 🖆 (U+1F586), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEN_OVER_STAMPED_ENVELOPE\n"
+"LngText.text"
+msgid "envelope4"
+msgstr ""
+
+#. 🖃 (U+1F583), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STAMPED_ENVELOPE\n"
+"LngText.text"
+msgid "envelope2"
+msgstr ""
+
+#. 🗤 (U+1F5E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_ABOVE\n"
+"LngText.text"
+msgid "rays3"
+msgstr ""
+
+#. 🖉 (U+1F589), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_PENCIL\n"
+"LngText.text"
+msgid "pencil4"
+msgstr ""
+
+#. 🖂 (U+1F582), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BACK_OF_ENVELOPE\n"
+"LngText.text"
+msgid "envelope3"
+msgstr ""
+
+#. 🖈 (U+1F588), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_PUSHPIN\n"
+"LngText.text"
+msgid "tack"
+msgstr ""
+
+#. 🖄 (U+1F584), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ENVELOPE_WITH_LIGHTNING\n"
+"LngText.text"
+msgid "envelope5"
+msgstr ""
+
+#. 🖁 (U+1F581), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLAMSHELL_MOBILE_PHONE\n"
+"LngText.text"
+msgid "mobile2"
+msgstr ""
+
+#. 🖅 (U+1F585), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FLYING_ENVELOPE\n"
+"LngText.text"
+msgid "envelope6"
+msgstr ""
+
+#. 🖘 (U+1F598), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_LEFT_POINTING_INDEX\n"
+"LngText.text"
+msgid "left6"
+msgstr ""
+
+#. 🖙 (U+1F599), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_RIGHT_POINTING_INDEX\n"
+"LngText.text"
+msgid "right5"
+msgstr ""
+
+#. 🗖 (U+1F5D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAXIMIZE\n"
+"LngText.text"
+msgid "maximize"
+msgstr ""
+
+#. 🗗 (U+1F5D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OVERLAP\n"
+"LngText.text"
+msgid "overlap"
+msgstr ""
+
+#. 🗏 (U+1F5CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGE\n"
+"LngText.text"
+msgid "page2"
+msgstr ""
+
+#. 🗐 (U+1F5D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGES\n"
+"LngText.text"
+msgid "pages"
+msgstr ""
+
+#. 🗘 (U+1F5D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOCKWISE_RIGHT_AND_LEFT_SEMICIRCLE_ARROWS\n"
+"LngText.text"
+msgid "arrows"
+msgstr ""
+
+#. 🗚 (U+1F5DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"INCREASE_FONT_SIZE_SYMBOL\n"
+"LngText.text"
+msgid "font2"
+msgstr ""
+
+#. 🗕 (U+1F5D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MINIMIZE\n"
+"LngText.text"
+msgid "minimize"
+msgstr ""
+
+#. 🗙 (U+1F5D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANCELLATION_X\n"
+"LngText.text"
+msgid "cancel"
+msgstr ""
+
+#. 🗔 (U+1F5D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESKTOP_WINDOW\n"
+"LngText.text"
+msgid "window"
+msgstr ""
+
+#. 🗌 (U+1F5CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_PAGE\n"
+"LngText.text"
+msgid "empty page"
+msgstr ""
+
+#. 🗋 (U+1F5CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_DOCUMENT\n"
+"LngText.text"
+msgid "empty document"
+msgstr ""
+
+#. 🗍 (U+1F5CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_PAGES\n"
+"LngText.text"
+msgid "empty pages"
+msgstr ""
+
+#. 🗎 (U+1F5CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT\n"
+"LngText.text"
+msgid "document"
+msgstr ""
+
+#. 🗆 (U+1F5C6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE_PAGE\n"
+"LngText.text"
+msgid "empty note page"
+msgstr ""
+
+#. 🗊 (U+1F5CA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE_PAD\n"
+"LngText.text"
+msgid "note pad"
+msgstr ""
+
+#. 🗈 (U+1F5C8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE\n"
+"LngText.text"
+msgid "note3"
+msgstr ""
+
+#. 🗇 (U+1F5C7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE_PAD\n"
+"LngText.text"
+msgid "empty note pad"
+msgstr ""
+
+#. 🗉 (U+1F5C9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE_PAGE\n"
+"LngText.text"
+msgid "note page"
+msgstr ""
+
+#. 🖸 (U+1F5B8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OPTICAL_DISC_ICON\n"
+"LngText.text"
+msgid "optical disc"
+msgstr ""
+
+#. 🗀 (U+1F5C0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOLDER\n"
+"LngText.text"
+msgid "folder3"
+msgstr ""
+
+#. 🖝 (U+1F59D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_RIGHT_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "right6"
+msgstr ""
+
+#. 🗁 (U+1F5C1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OPEN_FOLDER\n"
+"LngText.text"
+msgid "folder4"
+msgstr ""
+
+#. 🗅 (U+1F5C5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE\n"
+"LngText.text"
+msgid "empty note"
+msgstr ""
+
+#. 🖿 (U+1F5BF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_FOLDER\n"
+"LngText.text"
+msgid "folder5"
+msgstr ""
+
+#. 🖾 (U+1F5BE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_AN_X\n"
+"LngText.text"
+msgid "frame"
+msgstr ""
+
+#. 🖽 (U+1F5BD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_TILES\n"
+"LngText.text"
+msgid "frame2"
+msgstr ""
+
+#. 🖹 (U+1F5B9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_TEXT\n"
+"LngText.text"
+msgid "document2"
+msgstr ""
+
+#. 🖻 (U+1F5BB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_PICTURE\n"
+"LngText.text"
+msgid "document3"
+msgstr ""
+
+#. 🖺 (U+1F5BA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_TEXT_AND_PICTURE\n"
+"LngText.text"
+msgid "document4"
+msgstr ""
+
+#. 🖶 (U+1F5B6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINTER_ICON\n"
+"LngText.text"
+msgid "printer2"
+msgstr ""
+
+#. 🖷 (U+1F5B7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FAX_ICON\n"
+"LngText.text"
+msgid "fax2"
+msgstr ""
+
+#. 🖰 (U+1F5B0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TWO_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse4"
+msgstr ""
+
+#. 🖳 (U+1F5B3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLD_PERSONAL_COMPUTER\n"
+"LngText.text"
+msgid "pc"
+msgstr ""
+
+#. 🖵 (U+1F5B5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCREEN\n"
+"LngText.text"
+msgid "screen"
+msgstr ""
+
+#. 🖯 (U+1F5AF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ONE_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse5"
+msgstr ""
+
+#. 🖴 (U+1F5B4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HARD_DISK\n"
+"LngText.text"
+msgid "hard disk"
+msgstr ""
+
+#. 🖩 (U+1F5A9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POCKET_CALCULATOR\n"
+"LngText.text"
+msgid "calculator"
+msgstr ""
+
+#. 🖭 (U+1F5AD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TAPE_CARTRIDGE\n"
+"LngText.text"
+msgid "cartridge"
+msgstr ""
+
+#. 🖬 (U+1F5AC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SOFT_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy2"
+msgstr ""
+
+#. 🖫 (U+1F5AB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_HARD_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy3"
+msgstr ""
+
+#. 🖮 (U+1F5AE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WIRED_KEYBOARD\n"
+"LngText.text"
+msgid "keyboard2"
+msgstr ""
+
+#. 🖔 (U+1F594), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_VICTORY_HAND\n"
+"LngText.text"
+msgid "victory2"
+msgstr ""
+
+#. 🖧 (U+1F5A7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_NETWORKED_COMPUTERS\n"
+"LngText.text"
+msgid "network"
+msgstr ""
+
+#. 🖪 (U+1F5AA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_HARD_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy4"
+msgstr ""
+
+#. 🗢 (U+1F5E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIPS\n"
+"LngText.text"
+msgid "lips"
+msgstr ""
+
+#. 🖦 (U+1F5A6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KEYBOARD_AND_MOUSE\n"
+"LngText.text"
+msgid "keyboard3"
+msgstr ""
+
+#. 🖣 (U+1F5A3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_DOWN_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "down5"
+msgstr ""
+
+#. 🖡 (U+1F5A1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_DOWN_POINTING_INDEX\n"
+"LngText.text"
+msgid "down6"
+msgstr ""
+
+#. 📾 (U+1F4FE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PORTABLE_STEREO\n"
+"LngText.text"
+msgid "stereo"
+msgstr ""
+
+#. 🏶 (U+1F3F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_ROSETTE\n"
+"LngText.text"
+msgid "rosette2"
+msgstr ""
+
+#. 🏲 (U+1F3F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_PENNANT\n"
+"LngText.text"
+msgid "pennant"
+msgstr ""
+
+#. 🖠 (U+1F5A0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_UP_POINTING_INDEX\n"
+"LngText.text"
+msgid "up4"
+msgstr ""
+
+#. 🖢 (U+1F5A2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_UP_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "up5"
+msgstr ""
+
+#. 🏱 (U+1F3F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_PENNANT\n"
+"LngText.text"
+msgid "pennant2"
+msgstr ""
+
+#. 🕄 (U+1F544), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTCHED_RIGHT_SEMICIRCLE_WITH_THREE_DOTS\n"
+"LngText.text"
+msgid "feast2"
+msgstr ""
+
+#. 🖓 (U+1F593), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_THUMBS_DOWN_SIGN\n"
+"LngText.text"
+msgid "no2"
+msgstr ""
+
+#. 🖑 (U+1F591), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_RAISED_HAND_WITH_FINGERS_SPLAYED\n"
+"LngText.text"
+msgid "hand3"
+msgstr ""
+
+#. 🖒 (U+1F592), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_THUMBS_UP_SIGN\n"
+"LngText.text"
+msgid "yes2"
+msgstr ""
+
+#. 🕩 (U+1F569), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER_WITH_ONE_SOUND_WAVE\n"
+"LngText.text"
+msgid "speaker2"
+msgstr ""
+
+#. 🕆 (U+1F546), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_LATIN_CROSS\n"
+"LngText.text"
+msgid "Latin cross2"
+msgstr ""
+
+#. 🕇 (U+1F547), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEAVY_LATIN_CROSS\n"
+"LngText.text"
+msgid "Latin cross3"
+msgstr ""
+
+#. 🕨 (U+1F568), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER\n"
+"LngText.text"
+msgid "speaker3"
+msgstr ""
+
+#. 🕭 (U+1F56D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RINGING_BELL\n"
+"LngText.text"
+msgid "bell3"
+msgstr ""
+
+#. 🌣 (U+1F323), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN\n"
+"LngText.text"
+msgid "sun2"
+msgstr ""
+
+#. 🛇 (U+1F6C7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PROHIBITED_SIGN\n"
+"LngText.text"
+msgid "prohibited"
+msgstr ""
+
+#. 🛆 (U+1F6C6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TRIANGLE_WITH_ROUNDED_CORNERS\n"
+"LngText.text"
+msgid "triangle3"
+msgstr ""
+
+#. 🗫 (U+1F5EB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_SPEECH_BUBBLES\n"
+"LngText.text"
+msgid "bubble3"
+msgstr ""
+
+#. 🕪 (U+1F56A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER_WITH_THREE_SOUND_WAVES\n"
+"LngText.text"
+msgid "speaker4"
+msgstr ""
+
+#. 🗮 (U+1F5EE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_ANGER_BUBBLE\n"
+"LngText.text"
+msgid "bubble8"
+msgstr ""
+
+#. 🗧 (U+1F5E7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_RIGHT\n"
+"LngText.text"
+msgid "rays4"
+msgstr ""
+
+#. 🗲 (U+1F5F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHTNING_MOOD\n"
+"LngText.text"
+msgid "lightning2"
+msgstr ""
+
+#. 🗰 (U+1F5F0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOOD_BUBBLE\n"
+"LngText.text"
+msgid "bubble9"
+msgstr ""
+
+#. 🗹 (U+1F5F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BOLD_CHECK\n"
+"LngText.text"
+msgid "checkbox5"
+msgstr ""
+
+#. 🗴 (U+1F5F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_SCRIPT_X\n"
+"LngText.text"
+msgid "check mark4"
+msgstr ""
+
+#. 🗪 (U+1F5EA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TWO_SPEECH_BUBBLES\n"
+"LngText.text"
+msgid "bubble2"
+msgstr ""
+
+#. 🗶 (U+1F5F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOLD_SCRIPT_X\n"
+"LngText.text"
+msgid "x4"
+msgstr ""
+
+#. 🗩 (U+1F5E9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEECH_BUBBLE\n"
+"LngText.text"
+msgid "bubble10"
+msgstr ""
+
+#. 🗵 (U+1F5F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_SCRIPT_X\n"
+"LngText.text"
+msgid "checkbox6"
+msgstr ""
+
+#. 🗸 (U+1F5F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHT_CHECK_MARK\n"
+"LngText.text"
+msgid "check mark5"
+msgstr ""
+
+#. 🤗 (U+1F917), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HUGGING_FACE\n"
+"LngText.text"
+msgid "hugging"
+msgstr ""
+
+#. 🤔 (U+1F914), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THINKING_FACE\n"
+"LngText.text"
+msgid "thinking"
+msgstr ""
+
+#. 🙄 (U+1F644), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_ROLLING_EYES\n"
+"LngText.text"
+msgid "eye roll"
+msgstr ""
+
+#. 🤐 (U+1F910), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZIPPER-MOUTH_FACE\n"
+"LngText.text"
+msgid "zipper"
+msgstr ""
+
+#. 🙃 (U+1F643), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UPSIDE-DOWN_FACE\n"
+"LngText.text"
+msgid "upside-down"
+msgstr ""
+
+#. 🤑 (U+1F911), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MONEY-MOUTH_FACE\n"
+"LngText.text"
+msgid "money3"
+msgstr ""
+
+#. 🤒 (U+1F912), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_THERMOMETER\n"
+"LngText.text"
+msgid "thermometer2"
+msgstr ""
+
+#. 🤕 (U+1F915), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_HEAD-BANDAGE\n"
+"LngText.text"
+msgid "bandage"
+msgstr ""
+
+#. 🤓 (U+1F913), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NERD_FACE\n"
+"LngText.text"
+msgid "nerd"
+msgstr ""
+
+#. 🤖 (U+1F916), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROBOT_FACE\n"
+"LngText.text"
+msgid "robot"
+msgstr ""
+
+#. 🏻 (U+1F3FB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-1-2\n"
+"LngText.text"
+msgid "skin1"
+msgstr ""
+
+#. 🏼 (U+1F3FC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-3\n"
+"LngText.text"
+msgid "skin2"
+msgstr ""
+
+#. 🏽 (U+1F3FD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-4\n"
+"LngText.text"
+msgid "skin3"
+msgstr ""
+
+#. 🏾 (U+1F3FE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-5\n"
+"LngText.text"
+msgid "skin4"
+msgstr ""
+
+#. 🏿 (U+1F3FF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-6\n"
+"LngText.text"
+msgid "skin5"
+msgstr ""
+
+#. 🤘 (U+1F918), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIGN_OF_THE_HORNS\n"
+"LngText.text"
+msgid "horns"
+msgstr ""
+
+#. 📿 (U+1F4FF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRAYER_BEADS\n"
+"LngText.text"
+msgid "beads"
+msgstr ""
+
+#. 🦁 (U+1F981), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LION_FACE\n"
+"LngText.text"
+msgid "lion"
+msgstr ""
+
+#. 🦄 (U+1F984), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UNICORN_FACE\n"
+"LngText.text"
+msgid "unicorn"
+msgstr ""
+
+#. 🦃 (U+1F983), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TURKEY\n"
+"LngText.text"
+msgid "turkey"
+msgstr ""
+
+#. 🦀 (U+1F980), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRAB\n"
+"LngText.text"
+msgid "crab"
+msgstr ""
+
+#. 🦂 (U+1F982), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCORPION\n"
+"LngText.text"
+msgid "scorpion"
+msgstr ""
+
+#. 🧀 (U+1F9C0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHEESE_WEDGE\n"
+"LngText.text"
+msgid "cheese"
+msgstr ""
+
+#. 🌭 (U+1F32D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOT_DOG\n"
+"LngText.text"
+msgid "hot dog"
+msgstr ""
+
+#. 🌮 (U+1F32E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TACO\n"
+"LngText.text"
+msgid "taco"
+msgstr ""
+
+#. 🌯 (U+1F32F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BURRITO\n"
+"LngText.text"
+msgid "burrito"
+msgstr ""
+
+#. 🍿 (U+1F37F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POPCORN\n"
+"LngText.text"
+msgid "popcorn"
+msgstr ""
+
+#. 🍾 (U+1F37E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOTTLE_WITH_POPPING_CORK\n"
+"LngText.text"
+msgid "party4"
+msgstr ""
+
+#. 🏺 (U+1F3FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AMPHORA\n"
+"LngText.text"
+msgid "amphora"
+msgstr ""
+
+#. 🕌 (U+1F54C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOSQUE\n"
+"LngText.text"
+msgid "mosque"
+msgstr ""
+
+#. 🕍 (U+1F54D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SYNAGOGUE\n"
+"LngText.text"
+msgid "synagogue"
+msgstr ""
+
+#. 🕋 (U+1F54B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KAABA\n"
+"LngText.text"
+msgid "Kaaba"
+msgstr ""
+
+#. 🏐 (U+1F3D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"VOLLEYBALL\n"
+"LngText.text"
+msgid "volleyball"
+msgstr ""
+
+#. 🏏 (U+1F3CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRICKET_BAT_AND_BALL\n"
+"LngText.text"
+msgid "cricket"
+msgstr ""
+
+#. 🏑 (U+1F3D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FIELD_HOCKEY_STICK_AND_BALL\n"
+"LngText.text"
+msgid "hockey2"
+msgstr ""
+
+#. 🏒 (U+1F3D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ICE_HOCKEY_STICK_AND_PUCK\n"
+"LngText.text"
+msgid "hockey"
+msgstr ""
+
+#. 🏓 (U+1F3D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TABLE_TENNIS_PADDLE_AND_BALL\n"
+"LngText.text"
+msgid "ping pong"
+msgstr ""
+
+#. 🏸 (U+1F3F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BADMINTON_RACQUET_AND_SHUTTLECOCK\n"
+"LngText.text"
+msgid "badminton"
+msgstr ""
+
+#. 🏹 (U+1F3F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOW_AND_ARROW\n"
+"LngText.text"
+msgid "bow"
+msgstr ""
+
+#. 🛐 (U+1F6D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PLACE_OF_WORSHIP\n"
+"LngText.text"
+msgid "worship"
+msgstr ""
+
+#. 🕎 (U+1F54E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MENORAH_WITH_NINE_BRANCHES\n"
+"LngText.text"
+msgid "menorah"
+msgstr ""
+
+#. 🤣 (U+1F923), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROLLING_ON_THE_FLOOR_LAUGHING\n"
+"LngText.text"
+msgid "lol"
+msgstr ""
+
+#. 🤤 (U+1F924), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DROOLING_FACE\n"
+"LngText.text"
+msgid "drool"
+msgstr ""
+
+#. 🤢 (U+1F922), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NAUSEATED_FACE\n"
+"LngText.text"
+msgid "nausea"
+msgstr ""
+
+#. 🤧 (U+1F927), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SNEEZING_FACE\n"
+"LngText.text"
+msgid "sneeze"
+msgstr ""
+
+#. 🤠 (U+1F920), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COWBOY_HAT_FACE\n"
+"LngText.text"
+msgid "cowboy"
+msgstr ""
+
+#. 🤡 (U+1F921), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOWN_FACE\n"
+"LngText.text"
+msgid "clown"
+msgstr ""
+
+#. 🤥 (U+1F925), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LYING_FACE\n"
+"LngText.text"
+msgid "liar"
+msgstr ""
+
+#. 🤴 (U+1F934), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINCE\n"
+"LngText.text"
+msgid "prince"
+msgstr ""
+
+#. 🤵 (U+1F935), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_IN_TUXEDO\n"
+"LngText.text"
+msgid "groom"
+msgstr ""
+
+#. 🤰 (U+1F930), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PREGNANT_WOMAN\n"
+"LngText.text"
+msgid "pregnant"
+msgstr ""
+
+#. 🤶 (U+1F936), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MRS._CLAUS\n"
+"LngText.text"
+msgid "mrs. claus"
+msgstr ""
+
+#. 🤦 (U+1F926), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_FACEPALMING\n"
+"LngText.text"
+msgid "facepalm"
+msgstr ""
+
+#. 🤷 (U+1F937), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_SHRUGGING\n"
+"LngText.text"
+msgid "shrugging"
+msgstr ""
+
+#. 🕺 (U+1F57A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_DANCING\n"
+"LngText.text"
+msgid "dancer2"
+msgstr ""
+
+#. 🤺 (U+1F93A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_FENCING\n"
+"LngText.text"
+msgid "fencer"
+msgstr ""
+
+#. 🤸 (U+1F938), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_CARTWHEELING\n"
+"LngText.text"
+msgid "gymnast"
+msgstr ""
+
+#. 🤼 (U+1F93C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEOPLE_WRESTLING\n"
+"LngText.text"
+msgid "wrestling"
+msgstr ""
+
+#. 🤽 (U+1F93D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_PLAYING_WATER_POLO\n"
+"LngText.text"
+msgid "water polo"
+msgstr ""
+
+#. 🤾 (U+1F93E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_PLAYING_HANDBALL\n"
+"LngText.text"
+msgid "handball"
+msgstr ""
+
+#. 🤹 (U+1F939), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_JUGGLING\n"
+"LngText.text"
+msgid "juggling"
+msgstr ""
+
+#. 🤳 (U+1F933), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SELFIE\n"
+"LngText.text"
+msgid "selfie"
+msgstr ""
+
+#. 🤞 (U+1F91E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CROSSED_FINGERS\n"
+"LngText.text"
+msgid "good luck"
+msgstr ""
+
+#. 🤙 (U+1F919), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CALL_ME_HAND\n"
+"LngText.text"
+msgid "call"
+msgstr ""
+
+#. 🤛 (U+1F91B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT-FACING_FIST\n"
+"LngText.text"
+msgid "fist3"
+msgstr ""
+
+#. 🤜 (U+1F91C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT-FACING_FIST\n"
+"LngText.text"
+msgid "fist4"
+msgstr ""
+
+#. 🤚 (U+1F91A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_BACK_OF_HAND\n"
+"LngText.text"
+msgid "hand4"
+msgstr ""
+
+#. 🤝 (U+1F91D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HANDSHAKE\n"
+"LngText.text"
+msgid "handshake"
+msgstr ""
+
+#. 🖤 (U+1F5A4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_HEART\n"
+"LngText.text"
+msgid "black heart"
+msgstr ""
+
+#. 🦍 (U+1F98D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GORILLA\n"
+"LngText.text"
+msgid "gorilla"
+msgstr ""
+
+#. 🦊 (U+1F98A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOX_FACE\n"
+"LngText.text"
+msgid "fox"
+msgstr ""
+
+#. 🦌 (U+1F98C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DEER\n"
+"LngText.text"
+msgid "deer"
+msgstr ""
+
+#. 🦏 (U+1F98F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RHINOCEROS\n"
+"LngText.text"
+msgid "rhinoceros"
+msgstr ""
+
+#. 🦇 (U+1F987), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BAT\n"
+"LngText.text"
+msgid "bat"
+msgstr ""
+
+#. 🦅 (U+1F985), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EAGLE\n"
+"LngText.text"
+msgid "eagle"
+msgstr ""
+
+#. 🦆 (U+1F986), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DUCK\n"
+"LngText.text"
+msgid "duck"
+msgstr ""
+
+#. 🦉 (U+1F989), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OWL\n"
+"LngText.text"
+msgid "owl"
+msgstr ""
+
+#. 🦎 (U+1F98E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIZARD\n"
+"LngText.text"
+msgid "lizard"
+msgstr ""
+
+#. 🦈 (U+1F988), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHARK\n"
+"LngText.text"
+msgid "shark"
+msgstr ""
+
+#. 🦐 (U+1F990), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHRIMP\n"
+"LngText.text"
+msgid "shrimp"
+msgstr ""
+
+#. 🦑 (U+1F991), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SQUID\n"
+"LngText.text"
+msgid "squid"
+msgstr ""
+
+#. 🦋 (U+1F98B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BUTTERFLY\n"
+"LngText.text"
+msgid "butterfly"
+msgstr ""
+
+#. 🥀 (U+1F940), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WILTED_FLOWER\n"
+"LngText.text"
+msgid "flower2"
+msgstr ""
+
+#. 🥝 (U+1F95D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KIWI_FRUIT\n"
+"LngText.text"
+msgid "kiwi"
+msgstr ""
+
+#. 🥑 (U+1F951), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AVOCADO\n"
+"LngText.text"
+msgid "avocado"
+msgstr ""
+
+#. 🥔 (U+1F954), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POTATO\n"
+"LngText.text"
+msgid "potato"
+msgstr ""
+
+#. 🥕 (U+1F955), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARROT\n"
+"LngText.text"
+msgid "carrot"
+msgstr ""
+
+#. 🥒 (U+1F952), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUCUMBER\n"
+"LngText.text"
+msgid "cucumber"
+msgstr ""
+
+#. 🥜 (U+1F95C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEANUTS\n"
+"LngText.text"
+msgid "peanuts"
+msgstr ""
+
+#. 🥐 (U+1F950), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CROISSANT\n"
+"LngText.text"
+msgid "croissant"
+msgstr ""
+
+#. 🥖 (U+1F956), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BAGUETTE_BREAD\n"
+"LngText.text"
+msgid "bread2"
+msgstr ""
+
+#. 🥞 (U+1F95E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PANCAKES\n"
+"LngText.text"
+msgid "pancakes"
+msgstr ""
+
+#. 🥓 (U+1F953), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BACON\n"
+"LngText.text"
+msgid "bacon"
+msgstr ""
+
+#. 🥙 (U+1F959), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STUFFED_FLATBREAD\n"
+"LngText.text"
+msgid "flatbread"
+msgstr ""
+
+#. 🥚 (U+1F95A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EGG\n"
+"LngText.text"
+msgid "egg"
+msgstr ""
+
+#. 🥘 (U+1F958), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHALLOW_PAN_OF_FOOD\n"
+"LngText.text"
+msgid "food"
+msgstr ""
+
+#. 🥗 (U+1F957), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GREEN_SALAD\n"
+"LngText.text"
+msgid "salad"
+msgstr ""
+
+#. 🥛 (U+1F95B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GLASS_OF_MILK\n"
+"LngText.text"
+msgid "milk"
+msgstr ""
+
+#. 🥂 (U+1F942), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLINKING_GLASSES\n"
+"LngText.text"
+msgid "party3"
+msgstr ""
+
+#. 🥃 (U+1F943), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TUMBLER_GLASS\n"
+"LngText.text"
+msgid "glass3"
+msgstr ""
+
+#. 🥄 (U+1F944), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPOON\n"
+"LngText.text"
+msgid "spoon"
+msgstr ""
+
+#. 🛴 (U+1F6F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCOOTER\n"
+"LngText.text"
+msgid "scooter"
+msgstr ""
+
+#. 🛵 (U+1F6F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTOR_SCOOTER\n"
+"LngText.text"
+msgid "scooter2"
+msgstr ""
+
+#. 🛑 (U+1F6D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OCTAGONAL_SIGN\n"
+"LngText.text"
+msgid "stop"
+msgstr ""
+
+#. 🛶 (U+1F6F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANOE\n"
+"LngText.text"
+msgid "canoe"
+msgstr ""
+
+#. 🥇 (U+1F947), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"1ST_PLACE_MEDAL\n"
+"LngText.text"
+msgid "gold"
+msgstr ""
+
+#. 🥈 (U+1F948), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"2ND_PLACE_MEDAL\n"
+"LngText.text"
+msgid "silver"
+msgstr ""
+
+#. 🥉 (U+1F949), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"3RD_PLACE_MEDAL\n"
+"LngText.text"
+msgid "bronze"
+msgstr ""
+
+#. 🥊 (U+1F94A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOXING_GLOVE\n"
+"LngText.text"
+msgid "boxing"
+msgstr ""
+
+#. 🥋 (U+1F94B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MARTIAL_ARTS_UNIFORM\n"
+"LngText.text"
+msgid "judo"
+msgstr ""
+
+#. 🥅 (U+1F945), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GOAL_NET\n"
+"LngText.text"
+msgid "soccer2"
+msgstr ""
+
+#. 🥁 (U+1F941), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DRUM_WITH_DRUMSTICKS\n"
+"LngText.text"
+msgid "drum2"
+msgstr ""
+
+#. 🛒 (U+1F6D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOPPING_TROLLEY\n"
+"LngText.text"
+msgid "cart"
+msgstr ""
+
+#. 🤩 (U+1F929), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GRINNING_FACE_WITH_STAR_EYES\n"
+"LngText.text"
+msgid "excited"
+msgstr ""
+
+#. 🤨 (U+1F928), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_ONE_EYEBROW_RAISED\n"
+"LngText.text"
+msgid "eyebrow"
+msgstr ""
+
+#. 🤯 (U+1F92F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOCKED_FACE_WITH_EXPLODING_HEAD\n"
+"LngText.text"
+msgid "shocked"
+msgstr ""
+
+#. 🤪 (U+1F92A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GRINNING_FACE_WITH_ONE_LARGE_AND_ONE_SMALL_EYE\n"
+"LngText.text"
+msgid "zany"
+msgstr ""
+
+#. 🤬 (U+1F92C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SERIOUS_FACE_WITH_SYMBOLS_COVERING_MOUTH\n"
+"LngText.text"
+msgid "cursing"
+msgstr ""
+
+#. 🤮 (U+1F92E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_OPEN_MOUTH_VOMITING\n"
+"LngText.text"
+msgid "vomit"
+msgstr ""
+
+#. 🤫 (U+1F92B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_FINGER_COVERING_CLOSED_LIPS\n"
+"LngText.text"
+msgid "hush"
+msgstr ""
+
+#. 🤭 (U+1F92D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SMILING_FACE_WITH_SMILING_EYES_AND_HAND_COVERING_MOUTH\n"
+"LngText.text"
+msgid "smiling4"
+msgstr ""
+
+#. 🧐 (U+1F9D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_MONOCLE\n"
+"LngText.text"
+msgid "monocle"
+msgstr ""
+
+#. 🧒 (U+1F9D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHILD\n"
+"LngText.text"
+msgid "child"
+msgstr ""
+
+#. 🧑 (U+1F9D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ADULT\n"
+"LngText.text"
+msgid "adult"
+msgstr ""
+
+#. 🧓 (U+1F9D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLDER_ADULT\n"
+"LngText.text"
+msgid "old"
+msgstr ""
+
+#. 🧕 (U+1F9D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_WITH_HEADSCARF\n"
+"LngText.text"
+msgid "headscarf"
+msgstr ""
+
+#. 🧔 (U+1F9D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEARDED_PERSON\n"
+"LngText.text"
+msgid "beard"
+msgstr ""
+
+#. 🤱 (U+1F931), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BREAST-FEEDING\n"
+"LngText.text"
+msgid "baby3"
+msgstr ""
+
+#. 🧙 (U+1F9D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAGE\n"
+"LngText.text"
+msgid "mage"
+msgstr ""
+
+#. 🧚 (U+1F9DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FAIRY\n"
+"LngText.text"
+msgid "fairy"
+msgstr ""
+
+#. 🧛 (U+1F9DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"VAMPIRE\n"
+"LngText.text"
+msgid "vampire"
+msgstr ""
+
+#. 🧜 (U+1F9DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MERPERSON\n"
+"LngText.text"
+msgid "merperson"
+msgstr ""
+
+#. 🧝 (U+1F9DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ELF\n"
+"LngText.text"
+msgid "elf"
+msgstr ""
+
+#. 🧞 (U+1F9DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GENIE\n"
+"LngText.text"
+msgid "genie"
+msgstr ""
+
+#. 🧟 (U+1F9DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZOMBIE\n"
+"LngText.text"
+msgid "zombie"
+msgstr ""
+
+#. 🧖 (U+1F9D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_IN_STEAMY_ROOM\n"
+"LngText.text"
+msgid "sauna"
+msgstr ""
+
+#. 🧗 (U+1F9D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_CLIMBING\n"
+"LngText.text"
+msgid "climber"
+msgstr ""
+
+#. 🧘 (U+1F9D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_IN_LOTUS_POSITION\n"
+"LngText.text"
+msgid "yoga"
+msgstr ""
+
+#. 🤟 (U+1F91F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"I_LOVE_YOU_HAND_SIGN\n"
+"LngText.text"
+msgid "love2"
+msgstr ""
+
+#. 🤲 (U+1F932), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PALMS_UP_TOGETHER\n"
+"LngText.text"
+msgid "palm2"
+msgstr ""
+
+#. 🧠 (U+1F9E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BRAIN\n"
+"LngText.text"
+msgid "brain"
+msgstr ""
+
+#. 🧡 (U+1F9E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ORANGE_HEART\n"
+"LngText.text"
+msgid "orange heart"
+msgstr ""
+
+#. 🧣 (U+1F9E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCARF\n"
+"LngText.text"
+msgid "scarf"
+msgstr ""
+
+#. 🧤 (U+1F9E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GLOVES\n"
+"LngText.text"
+msgid "gloves"
+msgstr ""
+
+#. 🧥 (U+1F9E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COAT\n"
+"LngText.text"
+msgid "coat"
+msgstr ""
+
+#. 🧦 (U+1F9E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SOCKS\n"
+"LngText.text"
+msgid "socks"
+msgstr ""
+
+#. 🧢 (U+1F9E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BILLED_CAP\n"
+"LngText.text"
+msgid "cap"
+msgstr ""
+
+#. 🦓 (U+1F993), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZEBRA\n"
+"LngText.text"
+msgid "zebra"
+msgstr ""
+
+#. 🦒 (U+1F992), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GIRAFFE\n"
+"LngText.text"
+msgid "giraffe"
+msgstr ""
+
+#. 🦔 (U+1F994), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEDGEHOG\n"
+"LngText.text"
+msgid "hedgehog"
+msgstr ""
+
+#. 🦕 (U+1F995), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SAUROPOD\n"
+"LngText.text"
+msgid "dinosaur"
+msgstr ""
+
+#. 🦖 (U+1F996), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"T-REX\n"
+"LngText.text"
+msgid "dinosaur2"
+msgstr ""
+
+#. 🦗 (U+1F997), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRICKET\n"
+"LngText.text"
+msgid "cricket2"
+msgstr ""
+
+#. 🥥 (U+1F965), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COCONUT\n"
+"LngText.text"
+msgid "coconut"
+msgstr ""
+
+#. 🥦 (U+1F966), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BROCCOLI\n"
+"LngText.text"
+msgid "broccoli"
+msgstr ""
+
+#. 🥨 (U+1F968), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRETZEL\n"
+"LngText.text"
+msgid "pretzel"
+msgstr ""
+
+#. 🥩 (U+1F969), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUT_OF_MEAT\n"
+"LngText.text"
+msgid "steak"
+msgstr ""
+
+#. 🥪 (U+1F96A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SANDWICH\n"
+"LngText.text"
+msgid "sandwich"
+msgstr ""
+
+#. 🥣 (U+1F963), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOWL_WITH_SPOON\n"
+"LngText.text"
+msgid "bowl"
+msgstr ""
+
+#. 🥫 (U+1F96B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANNED_FOOD\n"
+"LngText.text"
+msgid "can"
+msgstr ""
+
+#. 🥟 (U+1F95F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DUMPLING\n"
+"LngText.text"
+msgid "dumpling"
+msgstr ""
+
+#. 🥠 (U+1F960), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FORTUNE_COOKIE\n"
+"LngText.text"
+msgid "cookie2"
+msgstr ""
+
+#. 🥡 (U+1F961), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TAKEOUT_BOX\n"
+"LngText.text"
+msgid "takeout"
+msgstr ""
+
+#. 🥧 (U+1F967), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PIE\n"
+"LngText.text"
+msgid "pie"
+msgstr ""
+
+#. 🥤 (U+1F964), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUP_WITH_STRAW\n"
+"LngText.text"
+msgid "drink"
+msgstr ""
+
+#. 🥢 (U+1F962), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHOPSTICKS\n"
+"LngText.text"
+msgid "chopsticks"
+msgstr ""
+
+#. 🛸 (U+1F6F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FLYING_SAUCER\n"
+"LngText.text"
+msgid "ufo"
+msgstr ""
+
+#. 🛷 (U+1F6F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLED\n"
+"LngText.text"
+msgid "sled"
+msgstr ""
+
+#. 🥌 (U+1F94C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CURLING_STONE\n"
+"LngText.text"
+msgid "curling"
+msgstr ""
+
+#. ₿ (U+20BF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BITCOIN_SIGN\n"
+"LngText.text"
+msgid "bitcoin"
+msgstr ""
+
#. ½ (U+000BD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/sbasic/shared.po b/source/bn-IN/helpcontent2/source/text/sbasic/shared.po
index a52bbabe965..dbf8bfac6e6 100644
--- a/source/bn-IN/helpcontent2/source/text/sbasic/shared.po
+++ b/source/bn-IN/helpcontent2/source/text/sbasic/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: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: 2016-11-22 16:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15229,7 +15229,7 @@ msgctxt ""
"03040000.xhp\n"
"par_id111512312705893\n"
"help.text"
-msgid "The following constants are avalable when VBA compatibility mode is enabled"
+msgid "The following constants are available when VBA compatibility mode is enabled"
msgstr ""
#: 03040000.xhp
@@ -15253,15 +15253,7 @@ msgctxt ""
"03040000.xhp\n"
"par_id991512312965968\n"
"help.text"
-msgid "Desccription"
-msgstr ""
-
-#: 03040000.xhp
-msgctxt ""
-"03040000.xhp\n"
-"par_id241512313723033\n"
-"help.text"
-msgid "\\x0D (13)"
+msgid "Description"
msgstr ""
#: 03040000.xhp
@@ -16109,8 +16101,8 @@ msgctxt ""
"03060300.xhp\n"
"tit\n"
"help.text"
-msgid "Imp-Operator [Runtime]"
-msgstr "Imp-Operator [Runtime]"
+msgid "Imp Operator [Runtime]"
+msgstr ""
#: 03060300.xhp
msgctxt ""
@@ -16125,8 +16117,8 @@ msgctxt ""
"03060300.xhp\n"
"hd_id3156024\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Imp-Operator [Runtime]\">Imp Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Imp-Operator [Runtime]\">Imp Operator [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Imp Operator [Runtime]\">Imp Operator [Runtime]</link>"
+msgstr ""
#: 03060300.xhp
msgctxt ""
@@ -16245,8 +16237,8 @@ msgctxt ""
"03060400.xhp\n"
"tit\n"
"help.text"
-msgid "Not-Operator [Runtime]"
-msgstr "Not-Operator [Runtime]"
+msgid "Not Operator [Runtime]"
+msgstr ""
#: 03060400.xhp
msgctxt ""
@@ -16261,8 +16253,8 @@ msgctxt ""
"03060400.xhp\n"
"hd_id3156024\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Not-Operator [Runtime]\">Not-Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Not-Operator [Runtime]\">Not-Operator [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Not Operator [Runtime]\">Not Operator [Runtime]</link>"
+msgstr ""
#: 03060400.xhp
msgctxt ""
@@ -16373,8 +16365,8 @@ msgctxt ""
"03060500.xhp\n"
"tit\n"
"help.text"
-msgid "Or-Operator [Runtime]"
-msgstr "Or-Operator [Runtime]"
+msgid "Or Operator [Runtime]"
+msgstr ""
#: 03060500.xhp
msgctxt ""
@@ -16389,8 +16381,8 @@ msgctxt ""
"03060500.xhp\n"
"hd_id3150986\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060500.xhp\" name=\"Or-Operator [Runtime]\">Or Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03060500.xhp\" name=\"Or-Operator [Runtime]\">Or Operator [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03060500.xhp\" name=\"Or Operator [Runtime]\">Or Operator [Runtime]</link>"
+msgstr ""
#: 03060500.xhp
msgctxt ""
@@ -17053,8 +17045,8 @@ msgctxt ""
"03070600.xhp\n"
"tit\n"
"help.text"
-msgid "Mod-Operator [Runtime]"
-msgstr "Mod-Operator [Runtime]"
+msgid "Mod Operator [Runtime]"
+msgstr ""
#: 03070600.xhp
msgctxt ""
@@ -17069,8 +17061,8 @@ msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod-Operator [Runtime]\">Mod Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod-Operator [Runtime]\">Mod Operator [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator [Runtime]\">Mod Operator [Runtime]</link>"
+msgstr ""
#: 03070600.xhp
msgctxt ""
@@ -20477,8 +20469,8 @@ msgctxt ""
"03090203.xhp\n"
"tit\n"
"help.text"
-msgid "While...Wend Statement[Runtime]"
-msgstr "While...Wend Statement[Runtime]"
+msgid "While...Wend Statement [Runtime]"
+msgstr ""
#: 03090203.xhp
msgctxt ""
@@ -20493,8 +20485,8 @@ msgctxt ""
"03090203.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement[Runtime]\">While...Wend Statement[Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement[Runtime]\">While...Wend Statement[Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement [Runtime]\">While...Wend Statement [Runtime]</link>"
+msgstr ""
#: 03090203.xhp
msgctxt ""
@@ -26085,7 +26077,7 @@ msgctxt ""
"03103350.xhp\n"
"hd_id3145090\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement [Runtime]\">Option VBASupport Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option VBASupport Statement [Runtime]\">Option VBASupport Statement [Runtime]</link>"
msgstr ""
#: 03103350.xhp
@@ -26397,8 +26389,8 @@ msgctxt ""
"03103600.xhp\n"
"hd_id3143267\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function[Runtime]\">TypeName Function; VarType Function[Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function[Runtime]\">TypeName Function; VarType Function[Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function [Runtime]\">TypeName Function; VarType Function [Runtime]</link>"
+msgstr ""
#: 03103600.xhp
msgctxt ""
@@ -26621,8 +26613,8 @@ msgctxt ""
"03103700.xhp\n"
"hd_id3154422\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement[Runtime]\">Set Statement[Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement[Runtime]\">Set Statement[Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement [Runtime]\">Set Statement [Runtime]</link>"
+msgstr ""
#: 03103700.xhp
msgctxt ""
@@ -26877,8 +26869,8 @@ msgctxt ""
"03104000.xhp\n"
"hd_id3153527\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing function [Runtime]\">IsMissing function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing function [Runtime]\">IsMissing function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing Function [Runtime]\">IsMissing Function [Runtime]</link>"
+msgstr ""
#: 03104000.xhp
msgctxt ""
@@ -29144,6 +29136,14 @@ msgctxt ""
msgid "' displays for example 6,328.20 in English locale, 6.328,20 in German locale."
msgstr "REM উদাহরণ হিসেবে ৬,৩২৮.২০ ইংরেজী লোক্যাল, ৬.৩২৮,২০ জার্মান লোক্যাল প্রদর্শন করে থাকে।"
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id381513082126889\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020301.xhp\" name=\"number format code\">Number format codes in Calc</link>"
+msgstr ""
+
#: 03120302.xhp
msgctxt ""
"03120302.xhp\n"
@@ -32853,8 +32853,8 @@ msgctxt ""
"03132200.xhp\n"
"hd_id3155342\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent [Runtime]\">ThisComponent [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent [Runtime]\">ThisComponent [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent Statement [Runtime]\">ThisComponent Statement [Runtime]</link>"
+msgstr ""
#: 03132200.xhp
msgctxt ""
@@ -34709,7 +34709,7 @@ msgctxt ""
"03150001.xhp\n"
"par_id801512153944376\n"
"help.text"
-msgid "Tueday"
+msgid "Tuesday"
msgstr ""
#: 03150001.xhp
diff --git a/source/bn-IN/helpcontent2/source/text/scalc/01.po b/source/bn-IN/helpcontent2/source/text/scalc/01.po
index 96135013c04..a3ac1d1dcec 100644
--- a/source/bn-IN/helpcontent2/source/text/scalc/01.po
+++ b/source/bn-IN/helpcontent2/source/text/scalc/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: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
"PO-Revision-Date: 2016-11-25 08:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7123,6 +7123,14 @@ msgstr ""
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
+"par_id461513468030965\n"
+"help.text"
+msgid "Because of the iterative method used, it is possible for IRR to fail and return <link href=\"text/scalc/05/02140000.xhp\" name=\"Error 523\">Error 523</link>, with \"Error: Calculation does not converge\" in the status bar. In that case, try another value for Guess."
+msgstr ""
+
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
"bm_id3151012\n"
"help.text"
msgid "<bookmark_value>calculating; interests for unchanged amortization installments</bookmark_value> <bookmark_value>interests for unchanged amortization installments</bookmark_value> <bookmark_value>ISPMT function</bookmark_value>"
@@ -52197,8 +52205,8 @@ msgctxt ""
"12040201.xhp\n"
"hd_id3148492\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">More</link>"
-msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">অধিক</link>"
+msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"Options\">Options</link>"
+msgstr ""
#: 12040201.xhp
msgctxt ""
@@ -56301,7 +56309,7 @@ msgctxt ""
"data_form.xhp\n"
"par_id221512503284514\n"
"help.text"
-msgid "To be effective, the Calc data table should have a header row, where each cell contents is the label of the column. The header cells contents becomes the label of each data field in the form."
+msgid "To be effective, the Calc data table should have a header row, where each cell contents is the label of the column. The header cells contents become the label of each data field in the form."
msgstr ""
#: data_form.xhp
@@ -56325,7 +56333,7 @@ msgctxt ""
"data_form.xhp\n"
"par_id11512503369875\n"
"help.text"
-msgid "Choose <item type=\"menutiem\">Data - Form...</item>."
+msgid "Choose <item type=\"menuitem\">Data - Form...</item>."
msgstr ""
#: data_form.xhp
@@ -56429,7 +56437,7 @@ msgctxt ""
"data_form.xhp\n"
"par_id181512558987528\n"
"help.text"
-msgid "To reopen the form dialog, place the cursor on the header row and open the form. The displayed record in the form dialog is the fisrt data record. Move to the last record before entering new data otherwise the current record will be edited."
+msgid "To reopen the form dialog, place the cursor on the header row and open the form. The displayed record in the form dialog is the first data record. Move to the last record before entering new data otherwise the current record will be edited."
msgstr ""
#: data_form.xhp
@@ -65541,7 +65549,7 @@ msgctxt ""
"statistics.xhp\n"
"bm_id05001\n"
"help.text"
-msgid "<bookmark_value>Analysis toolpack;t-test</bookmark_value><bookmark_value>t-test;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;t-test</bookmark_value>"
+msgid "<bookmark_value>Analysis toolpack;t-test</bookmark_value><bookmark_value>Analysis toolpack;paired t-test</bookmark_value><bookmark_value>t-test;Analysis toolpack</bookmark_value><bookmark_value>paired t-test;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;paired t-test</bookmark_value>"
msgstr ""
#: statistics.xhp
@@ -65549,7 +65557,7 @@ msgctxt ""
"statistics.xhp\n"
"hd_id1000150\n"
"help.text"
-msgid "t-test"
+msgid "Paired t-test"
msgstr ""
#: statistics.xhp
@@ -65557,7 +65565,7 @@ msgctxt ""
"statistics.xhp\n"
"par_id1002820\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/ttestdialog/TTestDialog\">Calculates the t-Test of two data samples.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/ttestdialog/TTestDialog\">Calculates the paired t-Test of two data samples.</ahelp>"
msgstr ""
#: statistics.xhp
@@ -65565,7 +65573,7 @@ msgctxt ""
"statistics.xhp\n"
"par_id1002830\n"
"help.text"
-msgid "<variable id=\"sam01\">Choose <emph>Data - Statistics - t-test</emph></variable>"
+msgid "<variable id=\"sam01\">Choose <emph>Data - Statistics - Paired t-test</emph></variable>"
msgstr ""
#: statistics.xhp
@@ -65573,7 +65581,7 @@ msgctxt ""
"statistics.xhp\n"
"par_id1002840\n"
"help.text"
-msgid "A <emph>t-test</emph> is any statistical hypothesis test that follows a Student's t distribution."
+msgid "A <emph>paired t-test</emph> is any statistical hypothesis test that follows a Student's t distribution."
msgstr ""
#: statistics.xhp
@@ -65581,7 +65589,7 @@ msgctxt ""
"statistics.xhp\n"
"par_id1002850\n"
"help.text"
-msgid "For more information on t-tests, refer to the <link href=\"http://en.wikipedia.org/wiki/T-test\">corresponding Wikipedia article</link>."
+msgid "For more information on paired t-tests, refer to the <link href=\"http://en.wikipedia.org/wiki/T-test\">corresponding Wikipedia article</link>."
msgstr ""
#: statistics.xhp
@@ -65621,7 +65629,7 @@ msgctxt ""
"statistics.xhp\n"
"hd_id1000170\n"
"help.text"
-msgid "Results for t-Test:"
+msgid "Results for paired t-test:"
msgstr ""
#: statistics.xhp
@@ -65629,7 +65637,7 @@ msgctxt ""
"statistics.xhp\n"
"par_id1002890\n"
"help.text"
-msgid "The following table shows the <emph>t-Test</emph> for the data series above:"
+msgid "The following table shows the <emph>paired t-test</emph> for the data series above:"
msgstr ""
#: statistics.xhp
@@ -65637,7 +65645,7 @@ msgctxt ""
"statistics.xhp\n"
"par_id1002900\n"
"help.text"
-msgid "t-test"
+msgid "paired t-test"
msgstr ""
#: statistics.xhp
@@ -66509,7 +66517,7 @@ msgctxt ""
"statistics_regression.xhp\n"
"par_id14337286612130\n"
"help.text"
-msgid "<link href=\"text/scalc/01/statistics.xhp#datasampling\">Sampling</link>, <link href=\"text/scalc/01/statistics.xhp#descriptivestatistics\">Descriptive Statistics</link>, <link href=\"text/scalc/01/statistics.xhp#anova\">Analysis of Variance (ANOVA)</link>, <link href=\"text/scalc/01/statistics.xhp#correlation\">Correlation</link>, <link href=\"text/scalc/01/statistics.xhp#covariance\">Covariance</link>, <link href=\"text/scalc/01/statistics.xhp#exponentialsmoothing\">Exponential Smoothing</link>, <link href=\"text/scalc/01/statistics.xhp#movingaverage\">Moving Average</link>, <link href=\"text/scalc/01/statistics.xhp#ttest\">t-test</link>, <link href=\"text/scalc/01/statistics.xhp#ftest\">F-test</link>, <link href=\"text/scalc/01/statistics.xhp#ztest\">Z-test</link>, <link href=\"text/scalc/01/statistics.xhp#chisqtest\">Chi-square test</link>."
+msgid "<link href=\"text/scalc/01/statistics.xhp#datasampling\">Sampling</link>, <link href=\"text/scalc/01/statistics.xhp#descriptivestatistics\">Descriptive Statistics</link>, <link href=\"text/scalc/01/statistics.xhp#anova\">Analysis of Variance (ANOVA)</link>, <link href=\"text/scalc/01/statistics.xhp#correlation\">Correlation</link>, <link href=\"text/scalc/01/statistics.xhp#covariance\">Covariance</link>, <link href=\"text/scalc/01/statistics.xhp#exponentialsmoothing\">Exponential Smoothing</link>, <link href=\"text/scalc/01/statistics.xhp#movingaverage\">Moving Average</link>, <link href=\"text/scalc/01/statistics.xhp#ttest\">Paired t-test</link>, <link href=\"text/scalc/01/statistics.xhp#ftest\">F-test</link>, <link href=\"text/scalc/01/statistics.xhp#ztest\">Z-test</link>, <link href=\"text/scalc/01/statistics.xhp#chisqtest\">Chi-square test</link>."
msgstr ""
#: text2columns.xhp
diff --git a/source/bn-IN/helpcontent2/source/text/sdraw.po b/source/bn-IN/helpcontent2/source/text/sdraw.po
index 935bb372026..2c8ebbda585 100644
--- a/source/bn-IN/helpcontent2/source/text/sdraw.po
+++ b/source/bn-IN/helpcontent2/source/text/sdraw.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: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2016-05-02 07:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -104,62 +104,6 @@ msgctxt ""
msgid "This menu contains general commands for working with Draw documents, such as open, close and print. To close $[officename] Draw, click <emph>Exit</emph>."
msgstr "এই মেনুটি অঙ্কন নথি নিয়ে কাজ করার জন্য সাধারণ র্নিদেশাবলী ধারণ করে, যেমন খুলুন, বন্ধ করুন এবং মুদ্রণ। $[officename] ড্র বন্ধ করতে <emph>প্রস্থান</emph> এ ক্লিক করুন।"
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3156441\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
-msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">খুলুন</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3153876\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
-msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">নতুনভাবে সংরক্ষণ</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3150718\n"
-"help.text"
-msgid "<link href=\"text/simpress/01/01170000.xhp\" name=\"Export\">Export</link>"
-msgstr "<link href=\"text/simpress/01/01170000.xhp\" name=\"Export\">এক্সপোর্ট</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3154754\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
-msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">সংস্করণ</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3150044\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
-msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">বৈশিষ্ট্যাবলী</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3149127\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
-msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">মুদ্রণ</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3145790\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\">Printer Settings</link>"
-msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\">মুদ্রণের সেটিং</link>"
-
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
diff --git a/source/bn-IN/helpcontent2/source/text/shared.po b/source/bn-IN/helpcontent2/source/text/shared.po
index ada0b0d8384..00e275c0b7c 100644
--- a/source/bn-IN/helpcontent2/source/text/shared.po
+++ b/source/bn-IN/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: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
"PO-Revision-Date: 2016-04-16 21:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1936,70 +1936,6 @@ msgctxt ""
msgid "This section provides a general glossary of technical terms used in $[officename], along with a list of Internet terms."
msgstr "এই বিভাগটি $[officename]তে ব্যবহারিত প্রযুক্তিগত শর্তাবলীর একটি সাধারণ অভিধানের জোগান দেয় , ইন্টারনেট শর্তাবলীর একটি তালিকার সঙ্গে বরাবর করে।"
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"tit\n"
-"help.text"
-msgid "Programming $[officename]"
-msgstr "$[officename]প্রোগ্রামিং"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"bm_id3154232\n"
-"help.text"
-msgid "<bookmark_value>programming;$[officename]</bookmark_value><bookmark_value>Basic;programming</bookmark_value>"
-msgstr "<bookmark_value>programming;$[officename]</bookmark_value><bookmark_value>Basic;programming</bookmark_value>"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"hd_id3154232\n"
-"help.text"
-msgid "<variable id=\"programming\"><link href=\"text/shared/main0600.xhp\" name=\"Programming $[officename]\">Programming $[officename]</link></variable>"
-msgstr "<variable id=\"programming\"><link href=\"text/shared/main0600.xhp\" name=\"Programming $[officename]\"> $[officename] প্রোগ্রামিং</link></variable>"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3149760\n"
-"help.text"
-msgid "<variable id=\"basic\">$[officename] can be controlled by using the $[officename] API. </variable>"
-msgstr "<variable id=\"basic\">$[officename] API ব্যবহার করে $[officename] নিয়ন্ত্রণ করা যাবে। </variable>"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3151111\n"
-"help.text"
-msgid "$[officename] provides an Application Programming Interface (API) that enables you to control $[officename] components by using various programming languages. A $[officename] Software Development Kit is available for the programming interface."
-msgstr "$[officename] একটি অ্যাপলিকেশন প্রোগ্রামিং ইন্টারফেস জোগান দেয় (API) যেটি $[officename] নিয়ন্ত্রণ করতে আপনাকে সক্রিয় করে বিভিন্ন প্রোগ্রামিং ভাষা ব্যবহার করার মধ্যে উপাদান। একটি $ [officename] সফটওয়্যার উন্নয়ন সামগ্রী প্রোগ্রামিং ইন্টারফেসের জন্য প্রাপ্তিসাধ্য।"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3156346\n"
-"help.text"
-msgid "For more information about $[officename] API reference, please visit http://api.libreoffice.org/"
-msgstr "$[officename] API রেফারেন্স সম্পর্কিত আরও তথ্যের জন্য, অনুগ্রহ করে http://api.openoffice.org/ দেখুন"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3153825\n"
-"help.text"
-msgid "Macros created with $[officename] Basic based on the old programming interface will no longer be supported by the current version."
-msgstr "ম্যাক্রোস তৈরি করা হয়েছিল $[officename] প্রাথমিক এর পুরাতন প্রোগ্রামিং ইন্টারফেস সংকলন দ্বারা যেটি বর্তমান সংকলনের জন্য আর প্রযোজ্য নয়।"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3149795\n"
-"help.text"
-msgid "For more information on $[officename] Basic, select \"$[officename] Basic\" in the list box."
-msgstr "$[officename] বেসিক সম্পর্কিত আরও তথ্যের জন্য, তালিকা বাক্সে \"$[officename] বেসিক\" নির্বাচন করুন।"
-
#: main0650.xhp
msgctxt ""
"main0650.xhp\n"
diff --git a/source/bn-IN/helpcontent2/source/text/shared/00.po b/source/bn-IN/helpcontent2/source/text/shared/00.po
index 78aea1362f1..613555f1cce 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/00.po
+++ b/source/bn-IN/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: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: 2016-05-24 02:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2597,8 +2597,8 @@ msgctxt ""
"00000010.xhp\n"
"par_id3154317\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">Deletes the current selection. If multiple objects are selected, all will be deleted. In most cases, a <link href=\"text/shared/01/03150100.xhp\" name=\"security query\">security query</link> appears before objects are deleted.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\"> বর্তমান নির্বাচন মুছে ফেলে। যদি একাধিক বস্তু নির্বাচন করা হয়, সমস্ত মুছে ফেলা হবে। ঘটনা, একটি সর্বাপেক্ষাতে<link href=\"text/shared/01/03150100.xhp\" name=\"security query\"> নিরাপত্তা অনুসন্ধান</link> বস্তুর পূর্বে আবির্ভূত হওয়া হয় মুছে ফেলা হয়।</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">Deletes the current selection. If multiple objects are selected, all will be deleted. In most cases, a confirmation question appears before objects are deleted.</ahelp>"
+msgstr ""
#: 00000010.xhp
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/shared/01.po b/source/bn-IN/helpcontent2/source/text/shared/01.po
index 6a327200bed..bcad1667228 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/01.po
+++ b/source/bn-IN/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: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2016-10-18 20:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1045,7 +1045,7 @@ msgctxt ""
"01010203.xhp\n"
"par_id3155355\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/labeloptionspage/entirepage\" visibility=\"visible\">Creates a full page of labels or business cards.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/labeloptionspage/entirepage\" visibility=\"visible\">Creates a full page of labels or business cards.</ahelp>"
msgstr ""
#: 01010203.xhp
@@ -1061,7 +1061,7 @@ msgctxt ""
"01010203.xhp\n"
"par_id3155535\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/labeloptionspage/singlelabel\" visibility=\"visible\">Prints a single label or business card on a page.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/labeloptionspage/singlelabel\" visibility=\"visible\">Prints a single label or business card on a page.</ahelp>"
msgstr ""
#: 01010203.xhp
@@ -2080,6 +2080,78 @@ msgctxt ""
msgid "<link href=\"text/shared/00/00000020.xhp\" name=\"Import and Export Filters\">Import and Export Filters</link>"
msgstr ""
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"tit\n"
+"help.text"
+msgid "Open Remote..."
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"bm_id1001513636856122\n"
+"help.text"
+msgid "<bookmark_value>remote file;open</bookmark_value> <bookmark_value>open;remote file</bookmark_value>"
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"hd_id151513629025611\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01020001.xhp\" name=\"Open Remote...\">Open Remote...</link>"
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"par_id771513629025613\n"
+"help.text"
+msgid "<variable id=\"openremote1\"><ahelp hid=\".uno:OpenRemote\"/>Opens a document located in a remote file service.</variable>"
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"par_id611513629210220\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">File - Open Remote..</item>"
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"par_id151513629855154\n"
+"help.text"
+msgid "Click the <emph>Remote Files</emph> button in the <emph>Start Center</emph>"
+msgstr ""
+
+#: 01020001.xhp
+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>"
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"par_id531513630220632\n"
+"help.text"
+msgid "A remote file server is web service that stores documents with or without check-in, check-out, version controls and backups."
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"par_id951513629981585\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/cmis-remote-files.xhp\" name=\"CMIS\">Opening and saving files in remote servers</link>"
+msgstr ""
+
#: 01020101.xhp
msgctxt ""
"01020101.xhp\n"
@@ -2320,6 +2392,142 @@ msgctxt ""
msgid "When you edit an AutoText entry, this command changes to <emph>Save AutoText</emph>."
msgstr ""
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"tit\n"
+"help.text"
+msgid "Save Remote..."
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"bm_id381513636896997\n"
+"help.text"
+msgid "<bookmark_value>remote file;save</bookmark_value> <bookmark_value>save;remote file</bookmark_value>"
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"hd_id151513629025611\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01060001.xhp\" name=\"Save Remote...\">Save Remote...</link>"
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"par_id771513629025613\n"
+"help.text"
+msgid "<variable id=\"saveremote1\"><ahelp hid=\".uno:SaveRemote\"/>Saves a document located in a remote file service.</variable>"
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"par_id611513629210220\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">File - Save Remote..</item>"
+msgstr ""
+
+#: 01060001.xhp
+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>"
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"par_id531513630220632\n"
+"help.text"
+msgid "A remote file server is web service that stores documents with or without check-in, check-out, version controls and backups."
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"par_id951513629981585\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/cmis-remote-files.xhp\" name=\"CMIS\">Opening and saving files in remote servers</link>"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"tit\n"
+"help.text"
+msgid "Save a Copy"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"bm_id241513636774794\n"
+"help.text"
+msgid "<bookmark_value>save;save a copy</bookmark_value> <bookmark_value>save a copy</bookmark_value>"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id391513471676787\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01060002.xhp\" name=\"Save a Copy\">Save a Copy</link>"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id1001513471674465\n"
+"help.text"
+msgid "<variable id=\"saveacopy1\"><ahelp hid=\".uno:SaveACopy\">Save a copy of the actual document with another name or location.</ahelp></variable>"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id701513472080716\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">File - Save a Copy</item>"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id881513473450156\n"
+"help.text"
+msgid "Creates another file with same contents of the current file. The current file is kept opened for edition."
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id21513472326060\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01060000.xhp\" name=\"Save\">Save</link>"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id411513472333495\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save as</link>"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id681513472341081\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01070001.xhp\" name=\"Export\">Export</link>"
+msgstr ""
+
#: 01070000.xhp
msgctxt ""
"01070000.xhp\n"
@@ -2664,6 +2872,78 @@ msgctxt ""
msgid "Export"
msgstr ""
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"tit\n"
+"help.text"
+msgid "Export As"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"bm_id781513636674523\n"
+"help.text"
+msgid "<bookmark_value>export as;PDF</bookmark_value> <bookmark_value>export as;EPUB</bookmark_value>"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"hd_id751513634008094\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01070002.xhp\" name=\"Export As...\">Export As...</link>"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"par_id791513634008095\n"
+"help.text"
+msgid "<variable id=\"exportas1\"><ahelp hid=\".\">Export the document in PDF or EPUB formats</ahelp></variable>"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"par_id971513634212601\n"
+"help.text"
+msgid "Choose <emph>File - Export As...</emph>"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"hd_id71513635341099\n"
+"help.text"
+msgid "Export Directly as PDF"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"par_id961513635511473\n"
+"help.text"
+msgid "Export the entire document using your default PDF settings."
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"hd_id851513635358546\n"
+"help.text"
+msgid "Export Directly as EPUB"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"par_id811513635541682\n"
+"help.text"
+msgid "Export the entire document using your default EPUB settings."
+msgstr ""
+
#: 01100000.xhp
msgctxt ""
"01100000.xhp\n"
@@ -11752,94 +12032,6 @@ msgctxt ""
msgid "You can still use shortcut keys in <emph>Full Screen</emph> mode, even though the menus are unavailable. <switchinline select=\"sys\"><caseinline select=\"WIN\">To open the <emph>View</emph> menu, press Alt+V. </caseinline></switchinline>"
msgstr ""
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Confirm Delete"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"hd_id3150278\n"
-"help.text"
-msgid "Confirm Delete"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"par_id3148668\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:MODALDIALOG:DLG_SFX_QUERYDELETE\" visibility=\"visible\">Confirms or cancels the deletion.</ahelp>"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"hd_id3152821\n"
-"help.text"
-msgid "Delete"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"par_id3150040\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_YES\" visibility=\"visible\">Performs the deletion in the current file.</ahelp>"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"hd_id3149999\n"
-"help.text"
-msgid "Delete All"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"par_id3155616\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_ALL\" visibility=\"visible\">Performs the deletion in all selected files.</ahelp>"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"hd_id3157991\n"
-"help.text"
-msgid "Do Not Delete"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"par_id3147043\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_NO\" visibility=\"visible\">Rejects the deletion for the current file.</ahelp>"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"hd_id3149346\n"
-"help.text"
-msgid "Cancel"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"par_id3148620\n"
-"help.text"
-msgid "Cancels the deletion in the current file and any other selected files."
-msgstr ""
-
#: 03170000.xhp
msgctxt ""
"03170000.xhp\n"
@@ -22125,7 +22317,15 @@ msgctxt ""
"05110600m.xhp\n"
"tit\n"
"help.text"
-msgid "Space Rows Equally"
+msgid "Distribute Rows Equally"
+msgstr ""
+
+#: 05110600m.xhp
+msgctxt ""
+"05110600m.xhp\n"
+"bm_id431513359599959\n"
+"help.text"
+msgid "<bookmark_value>table rows;distribute height equally</bookmark_value> <bookmark_value>row height;distribute equally</bookmark_value>"
msgstr ""
#: 05110600m.xhp
@@ -22133,7 +22333,7 @@ msgctxt ""
"05110600m.xhp\n"
"hd_id3149871\n"
"help.text"
-msgid "<link href=\"text/shared/01/05110600m.xhp\" name=\"Space Equally\">Space Rows Equally</link>"
+msgid "<link href=\"text/shared/01/05110600m.xhp\" name=\"Distribute Equally\">Distribute Rows Equally</link>"
msgstr ""
#: 05110600m.xhp
@@ -22149,7 +22349,7 @@ msgctxt ""
"05110600m.xhp\n"
"par_id3153569\n"
"help.text"
-msgid "Choose <emph>Table - Autofit - Distribute Rows Equally</emph>"
+msgid "Choose <emph>Table - Size - Distribute Rows Equally</emph>"
msgstr ""
#: 05110600m.xhp
@@ -22341,7 +22541,15 @@ msgctxt ""
"05120600.xhp\n"
"tit\n"
"help.text"
-msgid "Space Columns Equally"
+msgid "Distribute Columns Equally"
+msgstr ""
+
+#: 05120600.xhp
+msgctxt ""
+"05120600.xhp\n"
+"bm_id431513359599959\n"
+"help.text"
+msgid "<bookmark_value>table columns;distribute columns equally</bookmark_value> <bookmark_value>column width;distribute equally</bookmark_value>"
msgstr ""
#: 05120600.xhp
@@ -22349,7 +22557,7 @@ msgctxt ""
"05120600.xhp\n"
"hd_id3153811\n"
"help.text"
-msgid "<link href=\"text/shared/01/05120600.xhp\" name=\"Space Equally\">Space Columns Equally</link>"
+msgid "<link href=\"text/shared/01/05120600.xhp\" name=\"Distribute Equally\">Distribute Columns Equally</link>"
msgstr ""
#: 05120600.xhp
@@ -22365,7 +22573,7 @@ msgctxt ""
"05120600.xhp\n"
"par_id3159219\n"
"help.text"
-msgid "Choose <emph>Table - Autofit - Distribute Columns Equally</emph>"
+msgid "Choose <emph>Table - Size - Distribute Columns Equally</emph>"
msgstr ""
#: 05120600.xhp
@@ -22389,7 +22597,7 @@ msgctxt ""
"05120600.xhp\n"
"par_id3151364\n"
"help.text"
-msgid "Space Columns Equally"
+msgid "Distribute Columns Equally"
msgstr ""
#: 05140100.xhp
@@ -33789,7 +33997,7 @@ msgctxt ""
"06130000.xhp\n"
"par_idN10A39\n"
"help.text"
-msgid "<variable id=\"script\">Scripts </variable>"
+msgid "<variable id=\"script\">Scripts</variable>"
msgstr ""
#: 06130000.xhp
@@ -33960,14 +34168,6 @@ msgctxt ""
msgid "Click a script, and then click a command button."
msgstr ""
-#: 06130000.xhp
-msgctxt ""
-"06130000.xhp\n"
-"par_id3153138\n"
-"help.text"
-msgid "<link href=\"text/shared/main0600.xhp\" name=\"Macro programming in $[officename]\">Macro programming in $[officename]</link>"
-msgstr ""
-
#: 06130001.xhp
msgctxt ""
"06130001.xhp\n"
diff --git a/source/bn-IN/helpcontent2/source/text/shared/02.po b/source/bn-IN/helpcontent2/source/text/shared/02.po
index 9f37393d5fb..0032a2b5097 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/02.po
+++ b/source/bn-IN/helpcontent2/source/text/shared/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: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
"PO-Revision-Date: 2016-05-24 02:54+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9493,16 +9493,16 @@ msgctxt ""
"02010000.xhp\n"
"tit\n"
"help.text"
-msgid "Apply Style"
-msgstr "ধরন প্রয়োগ করুন"
+msgid "Set Paragrph Style"
+msgstr ""
#: 02010000.xhp
msgctxt ""
"02010000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02010000.xhp\" name=\"Apply Style\">Apply Style</link>"
-msgstr "<link href=\"text/shared/02/02010000.xhp\" name=\"Apply Style\">ধরন প্রয়োগ করুন</link>"
+msgid "<link href=\"text/shared/02/02010000.xhp\" name=\"Set Paragraph Style\">Set Paragraph Style</link>"
+msgstr ""
#: 02010000.xhp
msgctxt ""
@@ -9533,16 +9533,16 @@ msgctxt ""
"02010000.xhp\n"
"par_id3155552\n"
"help.text"
-msgid "<image id=\"img_id3152801\" src=\"media/helpimg/zellvor.png\" width=\"2.642cm\" height=\"0.533cm\" localize=\"true\"><alt id=\"alt_id3152801\">Apply Style</alt></image>"
-msgstr "<image id=\"img_id3152801\" src=\"media/helpimg/zellvor.png\" width=\"1.0402in\" height=\"0.2098in\" localize=\"true\"><alt id=\"alt_id3152801\">শৈলী প্রয়োগ</alt></image>"
+msgid "<image id=\"img_id3152801\" src=\"media/helpimg/zellvor.png\" width=\"2.642cm\" height=\"0.533cm\" localize=\"true\"><alt id=\"alt_id3152801\">Set Paragraph Style</alt></image>"
+msgstr ""
#: 02010000.xhp
msgctxt ""
"02010000.xhp\n"
"par_id3145345\n"
"help.text"
-msgid "Apply Style"
-msgstr "ধরন প্রয়োগ করুন"
+msgid "Set Paragraph Style"
+msgstr ""
#: 02020000.xhp
msgctxt ""
@@ -13325,8 +13325,8 @@ msgctxt ""
"12090100.xhp\n"
"hd_id3153061\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More Options\">More Options</link>"
-msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"More Options\">আরও অপশন</link>"
+msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"Options\">Options</link>"
+msgstr ""
#: 12090101.xhp
msgctxt ""
@@ -15765,7 +15765,7 @@ msgctxt ""
"20050000.xhp\n"
"bm_id3148668\n"
"help.text"
-msgid "<bookmark_value>selection modes in text</bookmark_value><bookmark_value>text; selection modes</bookmark_value><bookmark_value>extending selection mode</bookmark_value><bookmark_value>adding selection mode</bookmark_value><bookmark_value>block selection mode</bookmark_value>"
+msgid "<bookmark_value>selection modes in text</bookmark_value> <bookmark_value>text; selection modes</bookmark_value> <bookmark_value>extending selection mode</bookmark_value> <bookmark_value>adding selection mode</bookmark_value> <bookmark_value>block selection mode</bookmark_value>"
msgstr ""
#: 20050000.xhp
@@ -15821,8 +15821,8 @@ msgctxt ""
"20050000.xhp\n"
"par_id3147209\n"
"help.text"
-msgid "Click in text where you want to position the cursor; click in a cell to make it the active cell. Any other selection is then deselected."
-msgstr "কার্সারটিকে পাঠ্যর যেস্থানে রাখতে চান সেখানে ক্লিক করুন; একটি ঘরকে সক্রিয় করতে ঘরে ক্লিক করুন। অন্য যেকোনো নির্বাচনকে অনির্বাচিত করুন।"
+msgid "This is the default selection mode for text documents. With the keyboard, selections can be performed by Shift+NavigationKey (<item type=\"keycode\">arrows, Home, End, Page Up, Page Down</item>). With the mouse, click in the text where the selection is to start, hold the left mouse button and move to the end of the selection. Release the mouse key to end selection."
+msgstr ""
#: 20050000.xhp
msgctxt ""
@@ -15837,8 +15837,8 @@ msgctxt ""
"20050000.xhp\n"
"par_id3153717\n"
"help.text"
-msgid "Clicking in the text extends or crops the current selection."
-msgstr "ক্লিক করে বর্তমান নথি পাঠ্য বর্ধিত বা কেটে ছোট কটে।"
+msgid "By using the arrow keys or the <item type=\"keycode\">Home</item> and <item type=\"keycode\">End</item> keys you can extend or crop the current selection. Clicking into the text selects the text between the current cursor position and the click position. You also can use (with or without <item type=\"keycode\">Shift</item> key) the arrow keys and the keys <item type=\"keycode\">Home</item> and <item type=\"keycode\">End</item> to increase or decrease the current selection."
+msgstr ""
#: 20050000.xhp
msgctxt ""
@@ -15880,6 +15880,14 @@ msgctxt ""
msgid "On Windows systems, you can hold down the <item type=\"keycode\">Alt</item> key while dragging to select a block of text. You don't need to enter the block selection mode."
msgstr "উইন্ডোজ সিস্টেমে, একটি ব্লক পাঠ্য নির্বাচন করে টেনে আনার সময় আপনি <item type=\"keycode\">Alt</item> কী ধরে রাখুন। ব্লক নির্বাচন মোড সন্নিবেশ করার কোন প্রয়োজন নেই আপনার।"
+#: 20050000.xhp
+msgctxt ""
+"20050000.xhp\n"
+"par_id901513465638512\n"
+"help.text"
+msgid "<link href=\"text/swriter/guide/text_nav_keyb.xhp\" name=\"Navigating and Selecting With the Keyboard\">Navigating and Selecting With the Keyboard</link>"
+msgstr ""
+
#: 20060000.xhp
msgctxt ""
"20060000.xhp\n"
diff --git a/source/bn-IN/helpcontent2/source/text/shared/05.po b/source/bn-IN/helpcontent2/source/text/shared/05.po
index c0b42ee220a..bec65f6d432 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/05.po
+++ b/source/bn-IN/helpcontent2/source/text/shared/05.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: 2016-04-16 22:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -149,7 +149,7 @@ msgctxt ""
"00000001.xhp\n"
"par_id3497211\n"
"help.text"
-msgid "You can download documentation as PDF files, how-tos, and guides from the %PRODUCTNAME documentation website at <link href=\"http://documentation.libreoffice.org\">documentation.libreoffice.org</link>. You can also access the documentation website choosing the menu <item type=\"menuitem\">Help – User Guides…</item> ."
+msgid "You can download documentation as PDF files, how-tos, and guides from the %PRODUCTNAME documentation website at <link href=\"http://documentation.libreoffice.org\">documentation.libreoffice.org</link>. You can also access the documentation website choosing the menu <item type=\"menuitem\">Help – User Guides…</item>"
msgstr ""
#: 00000001.xhp
diff --git a/source/bn-IN/helpcontent2/source/text/shared/autopi.po b/source/bn-IN/helpcontent2/source/text/shared/autopi.po
index 5be9e0aaadf..7c11fc4d105 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/autopi.po
+++ b/source/bn-IN/helpcontent2/source/text/shared/autopi.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: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
"PO-Revision-Date: 2016-05-24 02:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6229,8 +6229,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3149140\n"
"help.text"
-msgid "<variable id=\"eurokonv\"><ahelp hid=\".uno:EuroConverter\">Converts the currency amounts found in $[officename] Calc documents and in fields and tables of $[officename] Writer documents into euros.</ahelp></variable>"
-msgstr "<variable id=\"eurokonv\"><ahelp hid=\".uno:EuroConverter\"> $[officename] Calc নথিতে প্রাপ্ত মুদ্রার পরিমাণ এবং $[officename] লেখনী নথির ক্ষেত্র ও টেবিল ইউরোতে রূপান্তর করে। </ahelp></variable>"
+msgid "<variable id=\"eurokonv\"><ahelp hid=\".\">Converts the currency amounts found in $[officename] Calc documents and in fields and tables of $[officename] Writer documents into euros.</ahelp></variable>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6269,8 +6269,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3155420\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OBFILE\">Converts a single $[officename] Calc file.</ahelp> To convert fields and tables in $[officename] Writer, first mark the <emph>Also convert fields and tables in text documents </emph>check box."
-msgstr "<ahelp hid=\"HID_DLGCONVERT_OBFILE\">একটি একক $[officename] Calc ফাইল রূপান্তর করে।</ahelp>$[officename] লেখনিতে ক্ষেত্র এবং টেবিল রূপান্তর করার জন্য প্রথমে <emph>টেক্সট নথিতে ক্ষেত্র এবং টেবিল রূপান্তর করে</emph> পরীক্ষা বাক্স চিহ্নিত করুন।"
+msgid "<ahelp hid=\".\">Converts a single $[officename] Calc file.</ahelp> To convert fields and tables in $[officename] Writer, first mark the <emph>Also convert fields and tables in text documents </emph>check box."
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6285,8 +6285,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3150670\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OBDIR\">Converts all $[officename] Calc and $[officename] Writer documents and templates in the selected directory.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_OBDIR\">সকল $[officename] Calc এবং $[officename] লেখনি নথি এবং নির্বাচিত নির্দেশিকার ফর্মা রূপান্তর করে।</ahelp>"
+msgid "<ahelp hid=\".\">Converts all $[officename] Calc and $[officename] Writer documents and templates in the selected directory.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6301,8 +6301,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3156002\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_COMBOBOX1\">Specifies the currency to be converted into euros.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_COMBOBOX1\">ইউরো তে রূপান্তর করা হবে এমন মুদ্রা উল্লেখ করে।</ahelp>"
+msgid "<ahelp hid=\".\">Specifies the currency to be converted into euros.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6317,8 +6317,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3154898\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_TBSOURCE\">Indicates the directory or the name of the single document to be converted.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_TBSOURCE\">রূপান্তর করা হবে এমন নির্দেশিকা অথবা একক নথির নাম নির্দেশ করে।</ahelp>"
+msgid "<ahelp hid=\".\">Indicates the directory or the name of the single document to be converted.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6333,8 +6333,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3147264\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBSOURCEOPEN\">Opens a dialog to select the desired directory or document.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBSOURCEOPEN\">কাক্ষিত নির্দেশিকা অথবা নথি নির্বাচন করার জন্য ডায়ালগ খোলে।</ahelp>"
+msgid "<ahelp hid=\".\">Opens a dialog to select the desired directory or document.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6349,8 +6349,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3152771\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CHECKRECURSIVE\">Specifies whether all subfolders of the selected directory are included.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CHECKRECURSIVE\">নির্বাচিত নির্দেশিকার সকল উপপত্রাধার অন্তর্ভুক্ত হবে কিনা তা উল্লেখ করে।</ahelp>"
+msgid "<ahelp hid=\".\">Specifies whether all subfolders of the selected directory are included.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6365,8 +6365,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3150398\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CHKTEXTDOCUMENTS\">Converts currency amounts found in fields and tables of $[officename] Writer documents.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CHKTEXTDOCUMENTS\">$[officename] লেখনি নথির ক্ষেত্র এবং টেবিল এ প্রাপ্ত মুদ্রার পরিমাণ রূপান্তর করে।</ahelp>"
+msgid "<ahelp hid=\".\">Converts currency amounts found in fields and tables of $[officename] Writer documents.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6389,8 +6389,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CHKPROTECT\">Specifies that sheet protection will be disabled during conversion and thereafter re-enabled. If sheet protection is covered by a password, you will see a dialog for entering the password.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CHKPROTECT\">রূপান্তর এর সময় পৃষ্ঠার তত্ত্বাবধান নিষ্ক্রিয় কিনা তা উল্লেখ করে এবং তারপর পুনঃরায় সক্রিয় করে।</ahelp>যদি পৃষ্ঠার তত্ত্বাবধান পাসওয়ার্ড দ্বারা রক্ষিত থাকে তাহলে আপনি গুপ্তসংকেতে সন্নিবেশ করার জন্য একটি ডায়ালগ দেখতে পাবেন।"
+msgid "<ahelp hid=\".\">Specifies that sheet protection will be disabled during conversion and thereafter re-enabled. If sheet protection is covered by a password, you will see a dialog for entering the password.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6405,8 +6405,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3153771\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_TBTARGET\">Specifies the folder and path in which the converted files are to be saved.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_TBTARGET\">যে পত্রাধার ও পথ এ রূপান্তরিত ফাইল সংরক্ষিত হবে তা উল্লেখ করে।</ahelp>"
+msgid "<ahelp hid=\".\">Specifies the folder and path in which the converted files are to be saved.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6421,8 +6421,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3147427\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBTARGETOPEN\">Opens a dialog in which you can select a directory to hold the converted files.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBTARGETOPEN\">রূপান্তরিত ফাইল ধারণ করার জন্য নির্দেশিকা নির্বাচন করতে ডায়ালগ খোলে।</ahelp>"
+msgid "<ahelp hid=\".\">Opens a dialog in which you can select a directory to hold the converted files.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6437,8 +6437,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3153190\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBCANCEL\">Closes the Euro Converter.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBCANCEL\">ইউরো পরিবর্তক বন্ধ করে।</ahelp>"
+msgid "<ahelp hid=\".\">Closes the Euro Converter.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6453,8 +6453,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3155413\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBHELP\">Activates the help for the dialog.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBHELP\">ডায়ালগ এর জন্য সহায়তা সক্রিয় করে।</ahelp>"
+msgid "<ahelp hid=\".\">Activates the help for the dialog.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6469,8 +6469,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBGOON\">Starts the conversion.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBGOON\">কথোপকথন আরম্ভ করে।</ahelp>"
+msgid "<ahelp hid=\".\">Starts the conversion.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6493,16 +6493,16 @@ msgctxt ""
"01150000.xhp\n"
"par_id3153953\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBBACK\">Returns to the first page of the Euro Converter.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBBACK\">ইউরো পরিবর্তক এর প্রথম পৃষ্ঠায় ফিরে আসে।</ahelp>"
+msgid "<ahelp hid=\".\">Returns to the first page of the Euro Converter.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
"01150000.xhp\n"
"par_id3154640\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBBACK\">If the current document is a $[officename] Calc document or template, you can call up the Euro Converter using the corresponding icon in the Tools bar.</ahelp> This icon is hidden by default. To display the Euro Converter icon, click the arrow at the end of the Tools bar, select the <emph>Visible Buttons</emph> command and activate the <emph>Euro Converter</emph> icon."
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBBACK\">যদি বর্তমান নথিটি $[officename] Calc নথি অথবা ফর্মা তাহলে টুল বার এর সংশ্লিষ্ট আইকন ব্যবহার করে ইউরো পরিবর্তক কল করতে পারেন।</ahelp> এই আইকনটি পূর্বনির্ধারিত হিসেবে আড়াল থাকে। ইউরো পরিবর্তক আইকন প্রদর্শনের জন্য টুলবার এর শেষের তীর চিহ্নতে ক্লিক করুন, <emph>দৃশ্যমান বোতাম</emph> কমান্ড নির্বাচন করুন এবং <emph>ইউরো পরিবর্তক</emph> আইকন সক্রিয় করুন।"
+msgid "If the current document is a $[officename] Calc document or template, you can call up the Euro Converter using the corresponding icon in the Tools bar. This icon is hidden by default. To display the Euro Converter icon, click the arrow at the end of the Tools bar, select the <emph>Visible Buttons</emph> command and activate the <emph>Euro Converter</emph> icon."
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6541,8 +6541,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3150113\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CHECKBOX1\">Converts the entire document.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CHECKBOX1\">সম্পূর্ণ নথি পরিবর্তন করে।</ahelp>"
+msgid "<ahelp hid=\".\">Converts the entire document.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6557,8 +6557,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3148834\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_COMBOBOX1\">Specifies the currency to be converted into euros.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_COMBOBOX1\">ইউরো তে রূপান্তর করা হবে এমন মুদ্রা উল্লেখ করে।</ahelp>"
+msgid "<ahelp hid=\".\">Specifies the currency to be converted into euros.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6589,8 +6589,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3145162\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON1\">All cells with the selected Cell Styles are converted.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON1\">নির্বাচিত অংশের ধরন সম্বলিত সকল অংশ রূপান্তরিত হয়েছে।</ahelp>"
+msgid "<ahelp hid=\".\">All cells with the selected Cell Styles are converted.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6605,8 +6605,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3154479\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON2\">All currency cells in the active spreadsheet will be converted.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON2\">সক্রিয় স্প্রেডশীট এর সকল মুদ্রার অংশ রূপান্তর করা হবে।</ahelp>"
+msgid "<ahelp hid=\".\">All currency cells in the active spreadsheet will be converted.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6621,8 +6621,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3146912\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON3\">All currency cells in the active document will be converted.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON3\">সক্রিয় নথির সকল মুদ্রার অংশ রূপান্তর করা হবে।</ahelp>"
+msgid "<ahelp hid=\".\">All currency cells in the active document will be converted.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6637,8 +6637,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3153736\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON4\">All currency cells in the range selected before the converter was called will be converted.</ahelp> All cells must have the same format so that they can be recognized as a selected range."
-msgstr "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON4\">রূপান্তরক রূপান্তরিত হবে নির্দেশ দেয়ার পূর্বে ক্রমবিন্যাসের সকল মুদ্রার অংশ নির্বাচিত করেছে। </ahelp> সকল প্রকোষ্ঠার একই রকম বিন্যাস হতে হবে যাতে তারা নির্বাচিত ক্রমবিন্যাস হিসেবে চিহ্নিত করতে পারে।"
+msgid "<ahelp hid=\".\">All currency cells in the range selected before the converter was called will be converted.</ahelp> All cells must have the same format so that they can be recognized as a selected range."
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6653,8 +6653,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3154756\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_LISTBOX1\">Displays the ranges to be converted from the list.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_LISTBOX1\">রূপান্তর হবে এমন তালিকার সীমানা প্রদর্শন করে।</ahelp>"
+msgid "<ahelp hid=\".\">Displays the ranges to be converted from the list.</ahelp>"
+msgstr ""
#: 01170000.xhp
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/shared/explorer/database.po b/source/bn-IN/helpcontent2/source/text/shared/explorer/database.po
index d4e958622d9..0e4c2061c39 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/bn-IN/helpcontent2/source/text/shared/explorer/database.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: 2017-07-20 11:52+0200\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
"PO-Revision-Date: 2016-05-24 03:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7581,8 +7581,8 @@ msgctxt ""
"dabawiz02ado.xhp\n"
"par_idN10568\n"
"help.text"
-msgid "$[officename] requires the Microsoft Data Access Components (MDAC) to use the ADO interface. Microsoft Windows 2000 and XP include these components by default. For earlier visions of Windows, you need to install MDAC separately. You can download MDAC from the Microsoft web site."
-msgstr "$[officename]-এর ADO ইন্টারফেস ব্যবহার করতে Microsoft Data Access Components (MDAC) এর প্রয়োজন হয়। Microsoft Windows 2000 এবং XP এই উপাদানসমূহকে পূর্বনির্ধারণ অনুসারে অন্তর্ভুক্ত করে। Windows-এর পূর্ববর্তী সংস্করণের জন্য, আপনাকে পৃথকভাবে MDAC সংস্থাপন করতে হবে। আপনি Microsoft-এর ওয়েব সাইট হতে MDAC ডাউনলোড করতে পারেন।"
+msgid "$[officename] requires the Microsoft Data Access Components (MDAC) to use the ADO interface. Microsoft Windows 2000 and XP include these components by default."
+msgstr ""
#: dabawiz02ado.xhp
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/shared/guide.po b/source/bn-IN/helpcontent2/source/text/shared/guide.po
index ca4f5b4ec7f..2e5d4a1fa7d 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/guide.po
+++ b/source/bn-IN/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: 2016-07-05 16:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12661,16 +12661,24 @@ msgctxt ""
"macro_recording.xhp\n"
"bm_id3093440\n"
"help.text"
-msgid "<bookmark_value>macros; recording</bookmark_value><bookmark_value>recording; macros</bookmark_value><bookmark_value>Basic; recording macros</bookmark_value>"
-msgstr "<bookmark_value>macros; recording</bookmark_value><bookmark_value>recording; macros</bookmark_value><bookmark_value>Basic; recording macros</bookmark_value>"
+msgid "<bookmark_value>macros; recording</bookmark_value> <bookmark_value>recording; macros</bookmark_value> <bookmark_value>Basic; recording macros</bookmark_value>"
+msgstr ""
#: macro_recording.xhp
msgctxt ""
"macro_recording.xhp\n"
"hd_id3093440\n"
"help.text"
-msgid "<variable id=\"macro_recording\"><link href=\"text/shared/guide/macro_recording.xhp\" name=\"Recording a Macro\">Recording a Macro</link></variable>"
-msgstr "<variable id=\"macro_recording\"><link href=\"text/shared/guide/macro_recording.xhp\" name=\"Recording a Macro\">ম্যাক্রো ধারণ করছে</link></variable>"
+msgid "<variable id=\"macro_recording\"><link href=\"text/shared/guide/macro_recording.xhp\" name=\"Recording a Macro\">Recording a Macro</link> </variable>"
+msgstr ""
+
+#: macro_recording.xhp
+msgctxt ""
+"macro_recording.xhp\n"
+"par_id101513461219184\n"
+"help.text"
+msgid "%PRODUCTNAME can record commands executed with the keyboard and mouse in Writer and Calc"
+msgstr ""
#: macro_recording.xhp
msgctxt ""
@@ -12779,6 +12787,14 @@ msgstr "<emph>সংরক্ষণ</emph> ক্লিক করুন।"
#: macro_recording.xhp
msgctxt ""
"macro_recording.xhp\n"
+"bm_id131513460596344\n"
+"help.text"
+msgid "<bookmark_value>macro recording;limitations</bookmark_value>"
+msgstr ""
+
+#: macro_recording.xhp
+msgctxt ""
+"macro_recording.xhp\n"
"hd_id2486342\n"
"help.text"
msgid "Limitations of the macro recorder"
@@ -12848,14 +12864,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">Macro</link>"
msgstr "<link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">ম্যাক্রো</link>"
-#: macro_recording.xhp
-msgctxt ""
-"macro_recording.xhp\n"
-"par_id3147576\n"
-"help.text"
-msgid "<link href=\"text/shared/main0600.xhp\" name=\"macro programming in $[officename]\">Programming in %PRODUCTNAME</link>"
-msgstr "<link href=\"text/shared/main0600.xhp\" name=\"macro programming in $[officename]\"> %PRODUCTNAME এ প্রোগ্রাম করছে</link>"
-
#: main.xhp
msgctxt ""
"main.xhp\n"
diff --git a/source/bn-IN/helpcontent2/source/text/shared/optionen.po b/source/bn-IN/helpcontent2/source/text/shared/optionen.po
index 78dde8dc1e8..6cea21c7076 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/optionen.po
+++ b/source/bn-IN/helpcontent2/source/text/shared/optionen.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: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
"PO-Revision-Date: 2016-07-05 17:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -107,14 +107,6 @@ msgstr "<link href=\"text/shared/optionen/01150000.xhp\" name=\"Language Setting
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
-"hd_id3150872\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/01030000.xhp\" name=\"Internet\">Internet</link>"
-msgstr "<link href=\"text/shared/optionen/01030000.xhp\" name=\"Internet\">ইন্টারনেট</link>"
-
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
"hd_id3153188\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01040000.xhp\" name=\"Text Document\">%PRODUCTNAME Writer</link>"
@@ -163,6 +155,14 @@ msgstr "<link href=\"text/shared/optionen/01090000.xhp\" name=\"Formula\">%PRODU
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id3149420\n"
+"help.text"
+msgid "<link href=\"text/shared/optionen/01160000.xhp\" name=\"Data Sources\">%PRODUCTNAME Base</link>"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3155418\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01110000.xhp\" name=\"Chart\">Charts</link>"
@@ -171,10 +171,10 @@ msgstr "<link href=\"text/shared/optionen/01110000.xhp\" name=\"Chart\">লে
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
-"hd_id3149420\n"
+"hd_id3150872\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01160000.xhp\" name=\"Data Sources\">%PRODUCTNAME Database</link>"
-msgstr "<link href=\"text/shared/optionen/01160000.xhp\" name=\"Data Sources\">%PRODUCTNAME ডাটাবেস</link>"
+msgid "<link href=\"text/shared/optionen/01030000.xhp\" name=\"Internet\">Internet</link>"
+msgstr "<link href=\"text/shared/optionen/01030000.xhp\" name=\"Internet\">ইন্টারনেট</link>"
#: 01010000.xhp
msgctxt ""
@@ -197,8 +197,8 @@ msgctxt ""
"01010000.xhp\n"
"par_id3149177\n"
"help.text"
-msgid "<variable id=\"optionenallgemein\"><ahelp hid=\"SID_GENERAL_OPTIONS\">Use this dialog to create general settings for working with $[officename]. The information covers topics such as user data, saving, printing, paths to important files and directories, and color defaults.</ahelp></variable> These settings are saved automatically."
-msgstr "<variable id=\"optionenallgemein\"><ahelp hid=\"SID_GENERAL_OPTIONS\">$[officename] এর সাথে কাজ করার জন্য সাধারণ সেটিং তৈরি করতে এই ডায়ালগটি ব্যবহার করুন। তথ্যটি ব্যবহারকারী ডাটা, সংরক্ষণকরণ, মুদ্রণকরণ, গুরুত্বপূর্ণ ফাইল ও ডিরেক্টরির পাথ, এবং পূর্বনির্ধারিত রং এর মতো বিষয় শেষ করে।</ahelp></variable> এই সেটিংসমূহ স্বয়ংক্রিয়ভাবে সংরক্ষণ করা হয়।"
+msgid "<variable id=\"optionenallgemein\">Use this dialog to create general settings for working with $[officename]. The information covers topics such as user data, saving, printing, paths to important files and directories, and color defaults.</variable> These settings are saved automatically."
+msgstr ""
#: 01010100.xhp
msgctxt ""
@@ -1437,7 +1437,7 @@ msgctxt ""
"01010400.xhp\n"
"par_id3145673\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optlingupage/lingumodulesedit\">To edit a language module, select it and click <emph>Edit</emph>.</ahelp> The <link href=\"text/shared/optionen/01010401.xhp\" name=\"Edit Modules\"><emph>Edit </emph><emph>Modules</emph></link> dialog appears."
+msgid "<ahelp hid=\"cui/ui/optlingupage/lingumodulesedit\">To edit a language module, select it and click <emph>Edit</emph>.</ahelp> The <link href=\"text/shared/optionen/01010401.xhp\" name=\"Edit Modules\"><emph>Edit Modules</emph></link> dialog appears."
msgstr ""
#: 01010400.xhp
@@ -10973,8 +10973,8 @@ msgctxt ""
"01070500.xhp\n"
"par_id3154138\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>In a presentation or drawing document, you can also activate the text editing mode through the <emph>Allow Quick Editing</emph> <link href=\"text/simpress/02/13180000.xhp\" name=\"icon\">icon</link> in the <emph>Option</emph> bar.</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>একটি উপস্থাপনা বা অঙ্কন নথিতে, আপনি <emph> শুধুমাত্র পাঠ এলাকা নির্বাচন করুন </emph><link href=\"text/simpress/02/13190000.xhp\" name=\"icon\">আইকন</link>-এর মধ্য দিয়ে <emph>অপশন</emph> বারে এই মোডটিও সক্রিয় করতে পারেন।</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>In a presentation or drawing document, you can also activate the text editing mode through the <emph>Allow Quick Editing</emph> <link href=\"text/simpress/02/13180000.xhp\" name=\"icon\">icon</link> in the <emph>Options</emph> bar.</defaultinline></switchinline>"
+msgstr ""
#: 01070500.xhp
msgctxt ""
@@ -11005,8 +11005,8 @@ msgctxt ""
"01070500.xhp\n"
"par_id3153367\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>In a presentation or drawing document, you can also activate this mode through the<emph> Select Text Area Only </emph><link href=\"text/simpress/02/13190000.xhp\" name=\"icon\">icon</link> in the <emph>Option</emph> bar.</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>একটি উপস্থাপনা বা অঙ্কন নথিতে, আপনি <emph> শুধুমাত্র পাঠ এলাকা নির্বাচন করুন </emph><link href=\"text/simpress/02/13190000.xhp\" name=\"icon\">আইকন</link>-এর মধ্য দিয়ে <emph>অপশন</emph> বারে এই মোডটিও সক্রিয় করতে পারেন।</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>In a presentation or drawing document, you can also activate this mode through the<emph> Select Text Area Only </emph><link href=\"text/simpress/02/13190000.xhp\" name=\"icon\">icon</link> in the <emph>Options</emph> bar.</defaultinline></switchinline>"
+msgstr ""
#: 01070500.xhp
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/simpress.po b/source/bn-IN/helpcontent2/source/text/simpress.po
index b88ffb36242..2ac790ef050 100644
--- a/source/bn-IN/helpcontent2/source/text/simpress.po
+++ b/source/bn-IN/helpcontent2/source/text/simpress.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: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: 2016-04-16 22:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1615,307 +1615,3 @@ msgctxt ""
"help.text"
msgid "$[officename] Impress gives you the choice of running a slide show automatically or manually."
msgstr "$[officename] রেখাপাত করা একটি স্লাইড দেখান অথবা স্বয়ংক্রিয়ভাবে নিজহাতে চালার আপনাকে পছন্দ দেয়।"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"tit\n"
-"help.text"
-msgid "Presenter Console Keyboard Shortcuts"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"bm_id0921200912285678\n"
-"help.text"
-msgid "<bookmark_value>Presenter Console shortcuts</bookmark_value>"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"hd_id0921201912165661\n"
-"help.text"
-msgid "Presenter Console Keyboard Shortcuts"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921201912165656\n"
-"help.text"
-msgid "When running a slide show using the Presenter Console, you can use the following keys:"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104028\n"
-"help.text"
-msgid "Action"
-msgstr "কাজ"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104093\n"
-"help.text"
-msgid "Key or Keys"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110418\n"
-"help.text"
-msgid "Next slide, or next effect"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104120\n"
-"help.text"
-msgid "Left click, right arrow, down arrow, spacebar, page down, enter, return, 'N'"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104165\n"
-"help.text"
-msgid "Previous slide, or previous effect"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104115\n"
-"help.text"
-msgid "Right click, left arrow, up arrow, page up, backspace, 'P'"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104164\n"
-"help.text"
-msgid "First slide"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104148\n"
-"help.text"
-msgid "Home"
-msgstr "Home"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104221\n"
-"help.text"
-msgid "Last slide"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104277\n"
-"help.text"
-msgid "End"
-msgstr "End"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104279\n"
-"help.text"
-msgid "Previous slide without effects"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110423\n"
-"help.text"
-msgid "Alt+Page Up"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110427\n"
-"help.text"
-msgid "Next slide without effects"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104261\n"
-"help.text"
-msgid "Alt+Page Down"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104383\n"
-"help.text"
-msgid "Black/Unblack the screen"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110431\n"
-"help.text"
-msgid "'B', '.'"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104311\n"
-"help.text"
-msgid "White/Unwhite the screen"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104359\n"
-"help.text"
-msgid "'W', ','"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104336\n"
-"help.text"
-msgid "End slide show"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104419\n"
-"help.text"
-msgid "Esc, '-'"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104460\n"
-"help.text"
-msgid "Go to slide number"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110440\n"
-"help.text"
-msgid "Number followed by Enter"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104427\n"
-"help.text"
-msgid "Grow/Shrink size of notes font"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104442\n"
-"help.text"
-msgid "'G', 'S'"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104473\n"
-"help.text"
-msgid "Scroll notes up/down"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110459\n"
-"help.text"
-msgid "'A', 'Z'"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110456\n"
-"help.text"
-msgid "Move caret in notes view backward/forward"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110457\n"
-"help.text"
-msgid "'H', 'L'"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104566\n"
-"help.text"
-msgid "Show the Presenter Console"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104544\n"
-"help.text"
-msgid "Ctrl-'1'"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104535\n"
-"help.text"
-msgid "Show the Presentation Notes"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104680\n"
-"help.text"
-msgid "Ctrl-'2'"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104634\n"
-"help.text"
-msgid "Show the Slides Overview"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104632\n"
-"help.text"
-msgid "Ctrl-'3'"
-msgstr ""
diff --git a/source/bn-IN/helpcontent2/source/text/simpress/04.po b/source/bn-IN/helpcontent2/source/text/simpress/04.po
index a9823d0d19c..7198d15e852 100644
--- a/source/bn-IN/helpcontent2/source/text/simpress/04.po
+++ b/source/bn-IN/helpcontent2/source/text/simpress/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: 2016-01-08 13:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1623,3 +1623,307 @@ msgctxt ""
"help.text"
msgid "Change to Normal Mode with the active slide."
msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"tit\n"
+"help.text"
+msgid "Presenter Console Keyboard Shortcuts"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"bm_id0921200912285678\n"
+"help.text"
+msgid "<bookmark_value>Presenter Console shortcuts</bookmark_value>"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"hd_id0921201912165661\n"
+"help.text"
+msgid "Presenter Console Keyboard Shortcuts"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921201912165656\n"
+"help.text"
+msgid "When running a slide show using the Presenter Console, you can use the following keys:"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104028\n"
+"help.text"
+msgid "Action"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104093\n"
+"help.text"
+msgid "Key or Keys"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110418\n"
+"help.text"
+msgid "Next slide, or next effect"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104120\n"
+"help.text"
+msgid "Left click, right arrow, down arrow, spacebar, page down, enter, return, 'N'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104165\n"
+"help.text"
+msgid "Previous slide, or previous effect"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104115\n"
+"help.text"
+msgid "Right click, left arrow, up arrow, page up, backspace, 'P'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104164\n"
+"help.text"
+msgid "First slide"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104148\n"
+"help.text"
+msgid "Home"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104221\n"
+"help.text"
+msgid "Last slide"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104277\n"
+"help.text"
+msgid "End"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104279\n"
+"help.text"
+msgid "Previous slide without effects"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110423\n"
+"help.text"
+msgid "Alt+Page Up"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110427\n"
+"help.text"
+msgid "Next slide without effects"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104261\n"
+"help.text"
+msgid "Alt+Page Down"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104383\n"
+"help.text"
+msgid "Black/Unblack the screen"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110431\n"
+"help.text"
+msgid "'B', '.'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104311\n"
+"help.text"
+msgid "White/Unwhite the screen"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104359\n"
+"help.text"
+msgid "'W', ','"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104336\n"
+"help.text"
+msgid "End slide show"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104419\n"
+"help.text"
+msgid "Esc, '-'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104460\n"
+"help.text"
+msgid "Go to slide number"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110440\n"
+"help.text"
+msgid "Number followed by Enter"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104427\n"
+"help.text"
+msgid "Grow/Shrink size of notes font"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104442\n"
+"help.text"
+msgid "'G', 'S'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104473\n"
+"help.text"
+msgid "Scroll notes up/down"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110459\n"
+"help.text"
+msgid "'A', 'Z'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110456\n"
+"help.text"
+msgid "Move caret in notes view backward/forward"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110457\n"
+"help.text"
+msgid "'H', 'L'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104566\n"
+"help.text"
+msgid "Show the Presenter Console"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104544\n"
+"help.text"
+msgid "Ctrl-'1'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104535\n"
+"help.text"
+msgid "Show the Presentation Notes"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104680\n"
+"help.text"
+msgid "Ctrl-'2'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104634\n"
+"help.text"
+msgid "Show the Slides Overview"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104632\n"
+"help.text"
+msgid "Ctrl-'3'"
+msgstr ""
diff --git a/source/bn-IN/helpcontent2/source/text/simpress/guide.po b/source/bn-IN/helpcontent2/source/text/simpress/guide.po
index 158316e5b78..c9412fe7945 100644
--- a/source/bn-IN/helpcontent2/source/text/simpress/guide.po
+++ b/source/bn-IN/helpcontent2/source/text/simpress/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: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: 2016-05-07 23:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2160,6 +2160,14 @@ msgctxt ""
msgid "<link href=\"https://itunes.apple.com/us/app/libreoffice-remote-for-impress/id806879890?mt=8\" name=\"Impress Remote in Apple Itunes Store\">Impress Remote in Apple iTunes Store</link>"
msgstr ""
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id631512838846263\n"
+"help.text"
+msgid "<link href=\"text/simpress/guide/presenter_console.xhp\" name=\"The Presenter Console\">The Presenter Console</link>"
+msgstr ""
+
#: individual.xhp
msgctxt ""
"individual.xhp\n"
@@ -4648,6 +4656,278 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/insert_bitmap.xhp\">Insert images</link>"
msgstr ""
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"tit\n"
+"help.text"
+msgid "Using the Presenter Console"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id190820172252141064\n"
+"help.text"
+msgid "<link href=\"text/simpress/guide/presenter_console.xhp\">Using the Presenter Console</link>"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id190820172252291885\n"
+"help.text"
+msgid "<ahelp hid=\".\">The Presenter Console displays the slide show in an external screen (projector or large television), while the presentation controls are shown in the computer screen.</ahelp>"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id190820172252291668\n"
+"help.text"
+msgid "The Presenter Console provides extra control over slide shows by using different views on your computer display and on the display seen by the audience. The view you see on your computer display includes the current slide, the upcoming slide, optionally the slide notes, and a presentation timer."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id91512579485395\n"
+"help.text"
+msgid "The Presenter Console works only on an operating system that supports multiple displays and only when two displays are connected (one may be the laptop built-in display)."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id391512577186778\n"
+"help.text"
+msgid "Presenter console activation"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id21512577205388\n"
+"help.text"
+msgid "To enable the Presenter Console:"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id351512577323192\n"
+"help.text"
+msgid "<item type=\"item_type\">Tools - Options - %PRODUCTNAME Impres - General</item>"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id411512577389978\n"
+"help.text"
+msgid "Select <emph>Enable Presenter Console</emph> in the Presentation area."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id261512578116942\n"
+"help.text"
+msgid "<image src=\"media/screenshots/cui/ui/optionsdialog/impressoptionsgeneraldialog.png\" width=\"793px\" height=\"538px\"> <alt id=\"alt_id821512578116950\">Enable Presenter Console option</alt> </image>"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id371512836579028\n"
+"help.text"
+msgid "To activate the Presenter Console:"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id101512577717469\n"
+"help.text"
+msgid "Connect an auxiliary display to your computer,"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id391512577726275\n"
+"help.text"
+msgid "Run the slide show. Press F5 or Shift-F5 or choose <item type=\"menuitem\">Slide Show - Start from First Slide</item> or <item type=\"menuitem\">Start from Current Slide</item>."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id911512577777440\n"
+"help.text"
+msgid "Presenter console controls"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id721512827886185\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sd_PresenterConsole04.png\" id=\"img_id401512827886185\" width=\"640\" height=\"72\"> <alt id=\"alt_id71512827886185\">Presenter Console Controls</alt> </image>"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id71512828085688\n"
+"help.text"
+msgid "<emph>Previous</emph>: move to previous slide"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id61512828110394\n"
+"help.text"
+msgid "<emph>Next</emph>: move to next slide"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id981512828129990\n"
+"help.text"
+msgid "<emph>Notes</emph>: display the Presenter Console Notes mode"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id101512828220096\n"
+"help.text"
+msgid "<emph>Slide</emph>: display the Presenter Console Slide sorter mode"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id241512828268769\n"
+"help.text"
+msgid "<emph>Restart</emph>: restart the presentation from slide one."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id731512828322875\n"
+"help.text"
+msgid "<emph>Exchange</emph>: Switch the displays between the computer and the presentation display."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id891512828892146\n"
+"help.text"
+msgid "<emph>Close</emph>: In the Notes and Slide Sorter mode, return to the Normal mode."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id281512836182615\n"
+"help.text"
+msgid "Presenter Console Keyboard Shortcuts"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id791512827206666\n"
+"help.text"
+msgid "Presenter Console modes"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id181512827240072\n"
+"help.text"
+msgid "Normal Mode"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id341512828780413\n"
+"help.text"
+msgid "The Normal mode shows the current slide on the left and the next slide on the right of the computer display."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id311512825411947\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sd_PresenterConsole01.png\" id=\"img_id481512825411947\" width=\"640\" height=\"360\"> <alt id=\"alt_id151512825411947\">resenter console normal mode</alt> </image>"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id51512827289580\n"
+"help.text"
+msgid "Notes mode"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id711512828774884\n"
+"help.text"
+msgid "The Notes mode displays the current slide on the left, the slides notes on the right and the next slide below the current slide."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id961512827293400\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sd_PresenterConsole03.png\" id=\"img_id651512827293401\" width=\"640\" height=\"360\"> <alt id=\"alt_id881512827293401\">Notes mode</alt> </image>"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id801512827429345\n"
+"help.text"
+msgid "Slide sorter mode"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id571512828767315\n"
+"help.text"
+msgid "The Slide Sorter mode displays all slides in the computer screen and allows to display the selected slide out of the presentation order."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id721512827434997\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sd_PresenterConsole02.png\" id=\"img_id831512827434997\" width=\"640\" height=\"360\"> <alt id=\"alt_id221512827434997\">Slide sorter mode</alt> </image>"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id311512837936329\n"
+"help.text"
+msgid "<link href=\"text/simpress/guide/impress_remote.xhp\" name=\"Impress Remote User Guide\">Impress Remote User Guide</link>"
+msgstr ""
+
#: print_tofit.xhp
msgctxt ""
"print_tofit.xhp\n"
diff --git a/source/bn-IN/helpcontent2/source/text/smath.po b/source/bn-IN/helpcontent2/source/text/smath.po
index 44d590b81d6..1aa6972fb6f 100644
--- a/source/bn-IN/helpcontent2/source/text/smath.po
+++ b/source/bn-IN/helpcontent2/source/text/smath.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: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2015-08-25 12:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -120,70 +120,6 @@ msgctxt ""
msgid "This menu contains the general commands for working with formula documents, such as open, save and print."
msgstr "সূত্র নথিতে কাজ করার জন্য খোলা, সংরক্ষণ এবং মুদ্রণ এর মত সাধারণ কমান্ড এই মেনুতে সক্রিয় থাকে।"
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3148489\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
-msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">খুলুন</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3149501\n"
-"help.text"
-msgid "<link href=\"text/shared/autopi/01000000.xhp\" name=\"AutoPilot\">Wizards</link>"
-msgstr "<link href=\"text/shared/autopi/01000000.xhp\" name=\"AutoPilot\">উইজার্ড</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"par_id3148840\n"
-"help.text"
-msgid "Use a Wizard to create interactive documents, such as professional letters and faxes, into which you can insert your saved formulas."
-msgstr "মিথস্ক্রিয় নথি তৈরি করতে একটি উইজার্ড ব্যবহার করুন, যেমন প্রশাসনিক চিঠি এবং ফ্যাক্স, যেখানে আপনি আপনার সংরক্ষিত সূত্রগুলো সন্নিবেশ করাতে পারবেন।"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3153251\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
-msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">নতুনভাবে সংরক্ষণ করুন</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3149871\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
-msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">সংস্করণ</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3146325\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
-msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">বৈশিষ্ট্যাবলী</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3155621\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
-msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">মুদ্রণ করুন</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3145826\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">Printer Setup</link>"
-msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">মুদ্রণযন্ত্র সেটআপ</link>"
-
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
diff --git a/source/bn-IN/helpcontent2/source/text/swriter/guide.po b/source/bn-IN/helpcontent2/source/text/swriter/guide.po
index e103b15727e..2c614e0b278 100644
--- a/source/bn-IN/helpcontent2/source/text/swriter/guide.po
+++ b/source/bn-IN/helpcontent2/source/text/swriter/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: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
"PO-Revision-Date: 2016-07-05 17:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7213,7 +7213,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item> and click the <emph>Numbering</emph> tab."
msgstr ""
#: indices_enter.xhp
@@ -15704,6 +15704,14 @@ msgctxt ""
msgid "Moves the cursor to the footer."
msgstr "কার্সারটি পাদটীকায় সরানো হয়।"
+#: text_nav_keyb.xhp
+msgctxt ""
+"text_nav_keyb.xhp\n"
+"par_id921513466017508\n"
+"help.text"
+msgid "<link href=\"text/shared/02/20050000.xhp\" name=\"Selection modes\">Selection Modes</link>"
+msgstr ""
+
#: text_rotate.xhp
msgctxt ""
"text_rotate.xhp\n"
diff --git a/source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po b/source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po
index 9cb91027d72..4a4a497da1d 100644
--- a/source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ 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: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2016-12-01 12:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Bengali (India) <anubad@lists.ankur.org.in>\n"
@@ -2817,8 +2817,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:Hide\n"
"Label\n"
"value.text"
-msgid "~Hide Sheets"
-msgstr "শীট আড়াল (~H)"
+msgid "~Hide Sheet"
+msgstr ""
#: CalcCommands.xcu
#, fuzzy
@@ -3586,17 +3586,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:EditLinks\n"
"Label\n"
"value.text"
-msgid "Edit Lin~ks..."
-msgstr "লিংক সম্পাদনা... (~k)"
-
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:EditLinks\n"
-"ContextLabel\n"
-"value.text"
-msgid "Lin~ks..."
-msgstr "লিংক... (~k)"
+msgid "Lin~ks to External Files..."
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -6977,16 +6968,6 @@ msgstr "স্লাইড (~e)"
#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Commands..uno:SlideNavigateMenu\n"
-"Label\n"
-"value.text"
-msgid "Navigate"
-msgstr "ন্যাভিগেট"
-
-#: DrawImpressCommands.xcu
-#, fuzzy
-msgctxt ""
-"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:SlideMoveMenu\n"
"Label\n"
"value.text"
@@ -7602,6 +7583,15 @@ msgstr "পৃষ্ঠা নম্বর (~P)"
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlideField\n"
+"Label\n"
+"value.text"
+msgid "~Slide Number"
+msgstr ""
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:InsertPageTitleField\n"
"Label\n"
"value.text"
@@ -7611,6 +7601,15 @@ msgstr "পৃষ্ঠার শিরোনাম (~l)"
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlideTitleField\n"
+"Label\n"
+"value.text"
+msgid "Slide Tit~le"
+msgstr ""
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:InsertPagesField\n"
"Label\n"
"value.text"
@@ -7620,6 +7619,15 @@ msgstr "মোট পৃষ্ঠা (~C)"
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlidesField\n"
+"Label\n"
+"value.text"
+msgid "Slide ~Count"
+msgstr ""
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:ModifyField\n"
"Label\n"
"value.text"
@@ -7842,8 +7850,8 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:ManageLinks\n"
"Label\n"
"value.text"
-msgid "Lin~ks..."
-msgstr "লিংক... (~k)"
+msgid "Lin~ks to External Files..."
+msgstr ""
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7934,7 +7942,7 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:ImportSlideFromFile\n"
"Label\n"
"value.text"
-msgid "Import Slides..."
+msgid "Insert Slide from File..."
msgstr ""
#: DrawImpressCommands.xcu
@@ -9167,6 +9175,15 @@ msgstr "পৃষ্ঠা নম্বর... (~a)"
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Popups..uno:InsertSlideNumber\n"
+"Label\n"
+"value.text"
+msgid "S~lide Number..."
+msgstr ""
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:InsertDateAndTime\n"
"Label\n"
"value.text"
@@ -17732,14 +17749,13 @@ msgid "H~alf-width"
msgstr "অর্ধ-প্রস্থ (~a)"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:InsertDoc\n"
"Label\n"
"value.text"
-msgid "Doc~ument..."
-msgstr "নথি... (~D)"
+msgid "Text from File..."
+msgstr ""
#: GenericCommands.xcu
msgctxt ""
@@ -17917,6 +17933,15 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ViewSidebarStyles\n"
+"Label\n"
+"value.text"
+msgid "Styles"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:OutlineRight\n"
"Label\n"
"value.text"
@@ -19566,25 +19591,6 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
-"Label\n"
-"value.text"
-msgid "Charmap"
-msgstr ""
-
-#: GenericCommands.xcu
-#, fuzzy
-msgctxt ""
-"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
-"TooltipLabel\n"
-"value.text"
-msgid "Insert Special Characters"
-msgstr "বিশেষ অক্ষর সন্নিবেশ"
-
-#: GenericCommands.xcu
-msgctxt ""
-"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:TransformRotationX\n"
"Label\n"
"value.text"
@@ -20749,6 +20755,34 @@ msgstr "বিশেষ অক্ষর সন্নিবেশ"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"Label\n"
+"value.text"
+msgid "Symbol"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"ContextLabel\n"
+"value.text"
+msgid "S~pecial Character..."
+msgstr ""
+
+#: GenericCommands.xcu
+#, fuzzy
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Insert Special Characters"
+msgstr "বিশেষ অক্ষর সন্নিবেশ"
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ViewDataSourceBrowser\n"
"Label\n"
"value.text"
@@ -20793,6 +20827,15 @@ msgid "Send via ~Bluetooth..."
msgstr "ব্লুটুথের মাধ্যমে পাঠান (~B)..."
#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ExportAsMenu\n"
+"Label\n"
+"value.text"
+msgid "~Export As"
+msgstr ""
+
+#: GenericCommands.xcu
#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
@@ -20862,14 +20905,13 @@ msgid "EPUB"
msgstr ""
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportToEPUB\n"
"ContextLabel\n"
"value.text"
-msgid "~Export as EPUB..."
-msgstr "PDF হিসেবে এক্সপোর্ট... (~D)"
+msgid "Export as E~PUB..."
+msgstr ""
#: GenericCommands.xcu
#, fuzzy
@@ -23265,6 +23307,15 @@ msgctxt ""
msgid "~Restart in Safe Mode..."
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:NavigateMenu\n"
+"Label\n"
+"value.text"
+msgid "Navigate"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -25949,8 +26000,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:ShowHiddenParagraphs\n"
"Label\n"
"value.text"
-msgid "~Hidden Paragraphs"
-msgstr "লুকানো অনুচ্ছেদ (~H)"
+msgid "Field ~Hidden Paragraphs"
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
@@ -27964,8 +28015,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:LinkDialog\n"
"Label\n"
"value.text"
-msgid "Lin~ks..."
-msgstr "লিংক... (~k)"
+msgid "Lin~ks to External Files..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
@@ -30725,7 +30776,7 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 1&amp;FamilyName:string=NumberingStyles\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 123&amp;FamilyName:string=NumberingStyles\n"
"Label\n"
"value.text"
msgid "Number List"
@@ -30752,10 +30803,64 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 4&amp;FamilyName:string=NumberingStyles\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering ABC&amp;FamilyName:string=NumberingStyles\n"
"Label\n"
"value.text"
-msgid "Roman List"
+msgid "Alphabet Uppercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaListStyle\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Uppercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Alphabet Uppercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering abc&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaLowListStyle\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaLowListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Alphabet Lowercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering IVX&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Roman Uppercase List"
msgstr ""
#: WriterCommands.xcu
@@ -30764,7 +30869,7 @@ msgctxt ""
"..WriterCommands.UserInterface.Popups..uno:RomanListStyle\n"
"Label\n"
"value.text"
-msgid "Roman List"
+msgid "Roman Uppercase List"
msgstr ""
#: WriterCommands.xcu
@@ -30773,7 +30878,34 @@ msgctxt ""
"..WriterCommands.UserInterface.Popups..uno:RomanListStyle\n"
"TooltipLabel\n"
"value.text"
-msgid "Roman List Style"
+msgid "Roman Uppercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering ivx&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Roman Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:RomanLowListStyle\n"
+"Label\n"
+"value.text"
+msgid "Roman Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:RomanLowListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Roman Lowercase List Style"
msgstr ""
#: WriterCommands.xcu
diff --git a/source/bn-IN/sd/messages.po b/source/bn-IN/sd/messages.po
index fa59db803e4..b60412496b5 100644
--- a/source/bn-IN/sd/messages.po
+++ b/source/bn-IN/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 15:29+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1589,899 +1589,909 @@ msgid "Master Slide"
msgstr ""
#: strings.hrc:287
+msgctxt "STR_MASTERSLIDE_LABEL"
+msgid "Master Slide:"
+msgstr ""
+
+#: strings.hrc:288
#, fuzzy
msgctxt "STR_MASTERPAGE_NAME"
msgid "Master Page"
msgstr "মাস্টার পৃষ্ঠাগুলি"
-#: strings.hrc:288
+#: strings.hrc:289
+msgctxt "STR_MASTERPAGE_LABEL"
+msgid "Master Page:"
+msgstr ""
+
+#: strings.hrc:290
msgctxt "STR_NOTES"
msgid "(Notes)"
msgstr "(নোট)"
-#: strings.hrc:289
+#: strings.hrc:291
msgctxt "STR_HANDOUT"
msgid "Handouts"
msgstr "বিলিপত্র"
-#: strings.hrc:290
+#: strings.hrc:292
msgctxt "STR_PRESOBJ_MPTITLE"
msgid "Click to edit the title text format"
msgstr "শিরোনাম টেক্সট বিন্যাস সম্পাদনা করতে ক্লিক করুন"
-#: strings.hrc:291
+#: strings.hrc:293
msgctxt "STR_PRESOBJ_MPOUTLINE"
msgid "Click to edit the outline text format"
msgstr "টেক্সট বিন্যাসের রূপরেখা সম্পাদনা করতে ক্লিক করুন"
-#: strings.hrc:292
+#: strings.hrc:294
msgctxt "STR_PRESOBJ_MPOUTLLAYER2"
msgid "Second Outline Level"
msgstr "দ্বিতীয় রূপরেখা স্তর"
-#: strings.hrc:293
+#: strings.hrc:295
msgctxt "STR_PRESOBJ_MPOUTLLAYER3"
msgid "Third Outline Level"
msgstr "তৃতীয় রূপরেখা স্তর"
-#: strings.hrc:294
+#: strings.hrc:296
msgctxt "STR_PRESOBJ_MPOUTLLAYER4"
msgid "Fourth Outline Level"
msgstr "চতুর্থ রূপরেখা স্তর"
-#: strings.hrc:295
+#: strings.hrc:297
msgctxt "STR_PRESOBJ_MPOUTLLAYER5"
msgid "Fifth Outline Level"
msgstr "পঞ্চম রূপরেখা স্তর"
-#: strings.hrc:296
+#: strings.hrc:298
msgctxt "STR_PRESOBJ_MPOUTLLAYER6"
msgid "Sixth Outline Level"
msgstr "ষষ্ঠ রূপরেখা স্তর"
-#: strings.hrc:297
+#: strings.hrc:299
msgctxt "STR_PRESOBJ_MPOUTLLAYER7"
msgid "Seventh Outline Level"
msgstr "সপ্তম রূপরেখা স্তর"
-#: strings.hrc:298
+#: strings.hrc:300
msgctxt "STR_PRESOBJ_MPNOTESTITLE"
msgid "Click to move the slide"
msgstr "স্লাইডটি সরাতে ক্লিক করুন"
-#: strings.hrc:299
+#: strings.hrc:301
msgctxt "STR_PRESOBJ_MPNOTESTEXT"
msgid "Click to edit the notes format"
msgstr "নোটের বিন্যাস সম্পাদনা করতে ক্লিক করুন"
-#: strings.hrc:300
+#: strings.hrc:302
msgctxt "STR_PRESOBJ_TITLE"
msgid "Click to add Title"
msgstr "শিরোনাম সংযুক্ত করার জন্য ক্লিক করুন"
-#: strings.hrc:301
+#: strings.hrc:303
msgctxt "STR_PRESOBJ_OUTLINE"
msgid "Click to add Text"
msgstr "পাঠ্য যোগ করতে ক্লিক করুন"
-#: strings.hrc:302
+#: strings.hrc:304
msgctxt "STR_PRESOBJ_TEXT"
msgid "Click to add Text"
msgstr "পাঠ্য যোগ করতে ক্লিক করুন"
-#: strings.hrc:303
+#: strings.hrc:305
msgctxt "STR_PRESOBJ_NOTESTEXT"
msgid "Click to add Notes"
msgstr "নোট সংযুক্ত করার জন্য ক্লিক করুন"
-#: strings.hrc:304
+#: strings.hrc:306
msgctxt "STR_PRESOBJ_GRAPHIC"
msgid "Double-click to add an Image"
msgstr "একটি ছবি সংযুক্ত করার জন্য দুইবার ক্লিক করুন"
-#: strings.hrc:305
+#: strings.hrc:307
msgctxt "STR_PRESOBJ_OBJECT"
msgid "Double-click to add an Object"
msgstr "কোনো বস্তু সংযুক্ত করার জন্য দুইবার ক্লিক করুন"
-#: strings.hrc:306
+#: strings.hrc:308
msgctxt "STR_PRESOBJ_CHART"
msgid "Double-click to add a Chart"
msgstr "একটি লেখচিত্র সংযুক্ত করার জন্য ডবল ক্লিক করুন"
-#: strings.hrc:307
+#: strings.hrc:309
msgctxt "STR_PRESOBJ_ORGCHART"
msgid "Double-click to add an Organization Chart"
msgstr "প্রাতিষ্ঠানিক লেখচিত্র সংযুক্ত করার জন্য ডবল ক্লিক করুন"
-#: strings.hrc:308
+#: strings.hrc:310
msgctxt "STR_PRESOBJ_TABLE"
msgid "Double-click to add a Spreadsheet"
msgstr "স্প্রেডশীট সংযুক্ত করার জন্য ডবল ক্লিক করুন "
-#: strings.hrc:309
+#: strings.hrc:311
msgctxt "STR_LAYOUT_DEFAULT_NAME"
msgid "Default"
msgstr "পূর্বনির্ধারিত"
-#: strings.hrc:310
+#: strings.hrc:312
msgctxt "STR_LAYOUT_DEFAULT_TITLE_NAME"
msgid "Title"
msgstr "শিরোনাম"
-#: strings.hrc:311
+#: strings.hrc:313
msgctxt "STR_STANDARD_STYLESHEET_NAME"
msgid "Default"
msgstr "পূর্বনির্ধারিত"
-#: strings.hrc:312
+#: strings.hrc:314
msgctxt "STR_UNDO_MOVEPAGES"
msgid "Move slides"
msgstr "স্লাইড সরান"
-#: strings.hrc:313
+#: strings.hrc:315
msgctxt "STR_POOLSHEET_MEASURE"
msgid "Dimension Line"
msgstr "মাত্রা রেখা"
-#: strings.hrc:314
+#: strings.hrc:316
msgctxt "STR_POOLSHEET_OBJNOLINENOFILL"
msgid "Object with no fill and no line"
msgstr "কোনো পূরণ এবং কোনো লাইন ছাড়া অবজেক্ট"
-#: strings.hrc:315
+#: strings.hrc:317
msgctxt "STR_POOLSHEET_OBJWITHARROW"
msgid "Object with arrow"
msgstr "তীরচিহ্নযুক্ত বস্তু"
-#: strings.hrc:316
+#: strings.hrc:318
msgctxt "STR_POOLSHEET_OBJWITHSHADOW"
msgid "Object with shadow"
msgstr "ছায়াযুক্ত বস্তু"
-#: strings.hrc:317
+#: strings.hrc:319
msgctxt "STR_POOLSHEET_OBJWITHOUTFILL"
msgid "Object without fill"
msgstr "ভরাট না করা বস্তু"
-#: strings.hrc:318
+#: strings.hrc:320
msgctxt "STR_POOLSHEET_TEXT"
msgid "Text"
msgstr "টেক্সট"
-#: strings.hrc:319
+#: strings.hrc:321
msgctxt "STR_POOLSHEET_TEXTBODY"
msgid "Text body"
msgstr "টেক্সট বডি"
-#: strings.hrc:320
+#: strings.hrc:322
msgctxt "STR_POOLSHEET_TEXTBODY_JUSTIFY"
msgid "Text body justified"
msgstr "উভয়প্রান্তিক টেক্সট বডি"
-#: strings.hrc:321
+#: strings.hrc:323
msgctxt "STR_POOLSHEET_TEXTBODY_INDENT"
msgid "First line indent"
msgstr "প্রথম লাইন ইন্ডেন্ট"
-#: strings.hrc:322
+#: strings.hrc:324
msgctxt "STR_POOLSHEET_TITLE"
msgid "Title"
msgstr "শিরোনাম"
-#: strings.hrc:323
+#: strings.hrc:325
msgctxt "STR_POOLSHEET_TITLE1"
msgid "Title1"
msgstr "শিরোনাম১"
-#: strings.hrc:324
+#: strings.hrc:326
msgctxt "STR_POOLSHEET_TITLE2"
msgid "Title2"
msgstr "শিরোনাম২"
-#: strings.hrc:325
+#: strings.hrc:327
msgctxt "STR_POOLSHEET_HEADLINE"
msgid "Heading"
msgstr "শিরোনাম"
-#: strings.hrc:326
+#: strings.hrc:328
msgctxt "STR_POOLSHEET_HEADLINE1"
msgid "Heading1"
msgstr "শিরোনাম১"
-#: strings.hrc:327
+#: strings.hrc:329
msgctxt "STR_POOLSHEET_HEADLINE2"
msgid "Heading2"
msgstr "শিরোনাম২"
-#: strings.hrc:328
+#: strings.hrc:330
msgctxt "STR_PSEUDOSHEET_TITLE"
msgid "Title"
msgstr "শিরোনাম"
-#: strings.hrc:329
+#: strings.hrc:331
msgctxt "STR_PSEUDOSHEET_SUBTITLE"
msgid "Subtitle"
msgstr "উপশিরোনাম"
-#: strings.hrc:330
+#: strings.hrc:332
msgctxt "STR_PSEUDOSHEET_OUTLINE"
msgid "Outline"
msgstr "রূপরেখা"
-#: strings.hrc:331
+#: strings.hrc:333
msgctxt "STR_PSEUDOSHEET_BACKGROUNDOBJECTS"
msgid "Background objects"
msgstr "পটভূমির বস্তু"
-#: strings.hrc:332
+#: strings.hrc:334
msgctxt "STR_PSEUDOSHEET_BACKGROUND"
msgid "Background"
msgstr "পটভূমি"
-#: strings.hrc:333
+#: strings.hrc:335
msgctxt "STR_PSEUDOSHEET_NOTES"
msgid "Notes"
msgstr "নোট"
-#: strings.hrc:334
+#: strings.hrc:336
msgctxt "STR_POWERPOINT_IMPORT"
msgid "PowerPoint Import"
msgstr "PowerPoint ইমপোর্ট"
-#: strings.hrc:335
+#: strings.hrc:337
msgctxt "STR_SAVE_DOC"
msgid "Save Document"
msgstr "নথি সংরক্ষণ "
-#: strings.hrc:336
+#: strings.hrc:338
msgctxt "STR_POOLSHEET_BANDED_CELL"
msgid "Banding cell"
msgstr "ব্যান্ডিং সেল"
-#: strings.hrc:337
+#: strings.hrc:339
msgctxt "STR_POOLSHEET_HEADER"
msgid "Header"
msgstr "শীর্ষচরণ"
-#: strings.hrc:338
+#: strings.hrc:340
msgctxt "STR_POOLSHEET_TOTAL"
msgid "Total line"
msgstr "মোট লাইন"
-#: strings.hrc:339
+#: strings.hrc:341
msgctxt "STR_POOLSHEET_FIRST_COLUMN"
msgid "First column"
msgstr "প্রথম কলাম"
-#: strings.hrc:340
+#: strings.hrc:342
msgctxt "STR_POOLSHEET_LAST_COLUMN"
msgid "Last column"
msgstr "শেষ কলাম"
-#: strings.hrc:341
+#: strings.hrc:343
msgctxt "STR_ENTER_PIN"
msgid "Enter PIN:"
msgstr "PIN লিখুন:"
-#: strings.hrc:342
+#: strings.hrc:344
msgctxt "STR_DEAUTHORISE_CLIENT"
msgid "Remove client authorisation"
msgstr "ক্লায়েন্ট প্রমাণীকরণ সরান"
-#: strings.hrc:343
+#: strings.hrc:345
msgctxt "STR_SHRINK_FONT_SIZE"
msgid "Shrink font size"
msgstr ""
-#: strings.hrc:344
+#: strings.hrc:346
msgctxt "STR_GROW_FONT_SIZE"
msgid "Grow font size"
msgstr ""
#. Names and descriptions of the Draw/Impress accessibility views
#. ==============================================================
-#: strings.hrc:349
+#: strings.hrc:351
msgctxt "SID_SD_A11Y_D_DRAWVIEW_N"
msgid "Drawing View"
msgstr "অঙ্কন দৃশ্যপট"
-#: strings.hrc:350
+#: strings.hrc:352
msgctxt "SID_SD_A11Y_D_DRAWVIEW_D"
msgid "This is where you create and edit drawings."
msgstr "আপনি এখানে আঁকতে ও তা সম্পাদনা করতে পারেন।"
-#: strings.hrc:351
+#: strings.hrc:353
msgctxt "SID_SD_A11Y_I_DRAWVIEW_N"
msgid "Drawing View"
msgstr "অঙ্কন দৃশ্যপট"
-#: strings.hrc:352
+#: strings.hrc:354
msgctxt "SID_SD_A11Y_I_DRAWVIEW_D"
msgid "This is where you create and edit slides."
msgstr "আপনি এখানে স্লাইড তৈরি ও সম্পাদনা করতে পারেন।"
-#: strings.hrc:353
+#: strings.hrc:355
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_N"
msgid "Outline View"
msgstr "রূপরেখা দৃশ্যপট"
-#: strings.hrc:354
+#: strings.hrc:356
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_D"
msgid "This is where you enter or edit text in list form."
msgstr "আপনি এখানে টেক্সট তালিকা আকারে সন্নিবেশ করাতে অথবা সম্পাদনা করতে পারেন।"
-#: strings.hrc:355
+#: strings.hrc:357
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_N"
msgid "Slides View"
msgstr "স্লাইড দৃশ্যপট"
-#: strings.hrc:356
+#: strings.hrc:358
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_D"
msgid "This is where you sort slides."
msgstr "আপনি এখানে স্লাইড সাজাতে পারেন।"
-#: strings.hrc:357
+#: strings.hrc:359
msgctxt "SID_SD_A11Y_I_NOTESVIEW_N"
msgid "Notes View"
msgstr "নোট দৃশ্যপট"
-#: strings.hrc:358
+#: strings.hrc:360
msgctxt "SID_SD_A11Y_I_NOTESVIEW_D"
msgid "This is where you enter and view notes."
msgstr "আপনি এখানে নোট সন্নিবেশ এবং প্রদর্শন করতে পারেন।"
-#: strings.hrc:359
+#: strings.hrc:361
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_N"
msgid "Handout View"
msgstr "বিলিপত্র দৃশ্যপট"
-#: strings.hrc:360
+#: strings.hrc:362
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_D"
msgid "This is where you decide on the layout for handouts."
msgstr "আপনি এখানে বিলিপত্রের বহির্বিন্যাস সম্পর্কিত সিদ্ধান্ত নিতে পারেন।"
-#: strings.hrc:361
+#: strings.hrc:363
msgctxt "SID_SD_A11Y_P_TITLE_N"
msgid "PresentationTitle"
msgstr "PresentationTitle"
-#: strings.hrc:362
+#: strings.hrc:364
msgctxt "SID_SD_A11Y_P_OUTLINER_N"
msgid "PresentationOutliner"
msgstr "PresentationOutliner"
-#: strings.hrc:363
+#: strings.hrc:365
msgctxt "SID_SD_A11Y_P_SUBTITLE_N"
msgid "PresentationSubtitle"
msgstr "PresentationSubtitle"
-#: strings.hrc:364
+#: strings.hrc:366
msgctxt "SID_SD_A11Y_P_PAGE_N"
msgid "PresentationPage"
msgstr "PresentationPage"
-#: strings.hrc:365
+#: strings.hrc:367
msgctxt "SID_SD_A11Y_P_NOTES_N"
msgid "PresentationNotes"
msgstr "PresentationNotes"
-#: strings.hrc:366
+#: strings.hrc:368
msgctxt "SID_SD_A11Y_P_HANDOUT_N"
msgid "Handout"
msgstr "বিলিপত্র"
-#: strings.hrc:367
+#: strings.hrc:369
msgctxt "SID_SD_A11Y_P_UNKNOWN_N"
msgid "UnknownAccessiblePresentationShape"
msgstr "UnknownAccessiblePresentationShape"
-#: strings.hrc:368
+#: strings.hrc:370
msgctxt "SID_SD_A11Y_P_TITLE_D"
msgid "PresentationTitleShape"
msgstr "PresentationTitleShape"
-#: strings.hrc:369
+#: strings.hrc:371
msgctxt "SID_SD_A11Y_P_OUTLINER_D"
msgid "PresentationOutlinerShape"
msgstr "PresentationOutlinerShape"
-#: strings.hrc:370
+#: strings.hrc:372
msgctxt "SID_SD_A11Y_P_SUBTITLE_D"
msgid "PresentationSubtitleShape"
msgstr "PresentationSubtitleShape"
-#: strings.hrc:371
+#: strings.hrc:373
msgctxt "SID_SD_A11Y_P_PAGE_D"
msgid "PresentationPageShape"
msgstr "PresentationPageShape"
-#: strings.hrc:372
+#: strings.hrc:374
msgctxt "SID_SD_A11Y_P_NOTES_D"
msgid "PresentationNotesShape"
msgstr "PresentationNotesShape"
-#: strings.hrc:373
+#: strings.hrc:375
msgctxt "SID_SD_A11Y_P_HANDOUT_D"
msgid "PresentationHandoutShape"
msgstr "PresentationHandoutShape"
-#: strings.hrc:374
+#: strings.hrc:376
msgctxt "SID_SD_A11Y_P_UNKNOWN_D"
msgid "Unknown accessible presentation shape"
msgstr "অজানা অ্যাক্সেসযোগ্য উপস্থাপনা অাকার"
-#: strings.hrc:375
+#: strings.hrc:377
msgctxt "SID_SD_A11Y_P_FOOTER_N"
msgid "PresentationFooter"
msgstr "PresentationFooter"
-#: strings.hrc:376
+#: strings.hrc:378
msgctxt "SID_SD_A11Y_P_FOOTER_D"
msgid "PresentationFooterShape"
msgstr "PresentationFooterShape"
-#: strings.hrc:377
+#: strings.hrc:379
msgctxt "SID_SD_A11Y_P_HEADER_N"
msgid "PresentationHeader"
msgstr "PresentationHeader"
-#: strings.hrc:378
+#: strings.hrc:380
msgctxt "SID_SD_A11Y_P_HEADER_D"
msgid "PresentationHeaderShape"
msgstr "PresentationHeaderShape"
-#: strings.hrc:379
+#: strings.hrc:381
msgctxt "SID_SD_A11Y_P_DATE_N"
msgid "PresentationDateAndTime"
msgstr "PresentationDateAndTime"
-#: strings.hrc:380
+#: strings.hrc:382
msgctxt "SID_SD_A11Y_P_DATE_D"
msgid "PresentationDateAndTimeShape"
msgstr "PresentationDateAndTimeShape"
-#: strings.hrc:381
+#: strings.hrc:383
msgctxt "SID_SD_A11Y_P_NUMBER_N"
msgid "PresentationPageNumber"
msgstr "PresentationPageNumber"
-#: strings.hrc:382
+#: strings.hrc:384
msgctxt "SID_SD_A11Y_P_NUMBER_D"
msgid "PresentationPageNumberShape"
msgstr "PresentationPageNumberShape"
-#: strings.hrc:383
+#: strings.hrc:385
msgctxt "SID_SD_A11Y_D_PRESENTATION"
msgid "%PRODUCTNAME Presentation"
msgstr "%PRODUCTNAME উপস্থাপনা"
-#: strings.hrc:384
+#: strings.hrc:386
msgctxt "SID_SD_A11Y_P_TITLE_N_STYLE"
msgid "Title"
msgstr "শিরোনাম"
-#: strings.hrc:385
+#: strings.hrc:387
msgctxt "SID_SD_A11Y_P_OUTLINER_N_STYLE"
msgid "Outliner"
msgstr "রূপরেখা"
-#: strings.hrc:386
+#: strings.hrc:388
msgctxt "SID_SD_A11Y_P_SUBTITLE_N_STYLE"
msgid "Subtitle"
msgstr "উপশিরোনাম"
-#: strings.hrc:387
+#: strings.hrc:389
msgctxt "SID_SD_A11Y_P_PAGE_N_STYLE"
msgid "Page"
msgstr "পৃষ্ঠা"
-#: strings.hrc:388
+#: strings.hrc:390
msgctxt "SID_SD_A11Y_P_NOTES_N_STYLE"
msgid "Notes"
msgstr "নোট"
-#: strings.hrc:389
+#: strings.hrc:391
msgctxt "SID_SD_A11Y_P_HANDOUT_N_STYLE"
msgid "Handout"
msgstr "বিলিপত্র"
-#: strings.hrc:390
+#: strings.hrc:392
msgctxt "SID_SD_A11Y_P_UNKNOWN_N_STYLE"
msgid "Unknown Accessible Presentation Shape"
msgstr "অজানা অ্যাক্সেসযোগ্য উপস্থাপনা অাকার"
-#: strings.hrc:391
+#: strings.hrc:393
msgctxt "SID_SD_A11Y_P_FOOTER_N_STYLE"
msgid "Footer"
msgstr "পাদটীকা"
-#: strings.hrc:392
+#: strings.hrc:394
msgctxt "SID_SD_A11Y_P_HEADER_N_STYLE"
msgid "Header"
msgstr "শিরোনাম"
-#: strings.hrc:393
+#: strings.hrc:395
msgctxt "SID_SD_A11Y_P_DATE_N_STYLE"
msgid "Date"
msgstr "তারিখ"
-#: strings.hrc:394
+#: strings.hrc:396
msgctxt "SID_SD_A11Y_P_NUMBER_N_STYLE"
msgid "Number"
msgstr "সংখ্যা"
-#: strings.hrc:395
+#: strings.hrc:397
msgctxt "SID_SD_A11Y_D_PRESENTATION_READONLY"
msgid "(read-only)"
msgstr "(শুধুমাত্র-পাঠযোগ্য)"
-#: strings.hrc:397
+#: strings.hrc:399
msgctxt "STR_CUSTOMANIMATION_REPEAT_NONE"
msgid "none"
msgstr "কোনটি না"
-#: strings.hrc:398
+#: strings.hrc:400
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_NEXT_CLICK"
msgid "Until next click"
msgstr "পরবর্তী ক্লিক না করা পর্যন্ত"
-#: strings.hrc:399
+#: strings.hrc:401
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_END_OF_SLIDE"
msgid "Until end of slide"
msgstr "স্লাইড শেষ না হওয়া পর্যন্ত"
-#: strings.hrc:400
+#: strings.hrc:402
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_DIRECTION_PROPERTY"
msgid "Direction:"
msgstr "দিক (_D):"
-#: strings.hrc:401
+#: strings.hrc:403
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_ZOOM_PROPERTY"
msgid "Zoom:"
msgstr "জুম"
-#: strings.hrc:402
+#: strings.hrc:404
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SPOKES_PROPERTY"
msgid "Spokes:"
msgstr "স্পোক"
-#: strings.hrc:403
+#: strings.hrc:405
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY"
msgid "First color:"
msgstr "প্রথম কলাম"
-#: strings.hrc:404
+#: strings.hrc:406
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY"
msgid "Second color:"
msgstr "দ্বিতীয় রঙ"
-#: strings.hrc:405
+#: strings.hrc:407
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY"
msgid "Fill color:"
msgstr "প্রথম কলাম"
-#: strings.hrc:406
+#: strings.hrc:408
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_STYLE_PROPERTY"
msgid "Style:"
msgstr "শৈলী:"
-#: strings.hrc:407
+#: strings.hrc:409
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_PROPERTY"
msgid "Font:"
msgstr "ফন্ট"
-#: strings.hrc:408
+#: strings.hrc:410
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY"
msgid "Font color:"
msgstr "প্রথম কলাম"
-#: strings.hrc:409
+#: strings.hrc:411
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_SIZE_STYLE_PROPERTY"
msgid "Style:"
msgstr "শৈলী:"
-#: strings.hrc:410
+#: strings.hrc:412
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY"
msgid "Typeface:"
msgstr "টাইপ-ফেইস"
-#: strings.hrc:411
+#: strings.hrc:413
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY"
msgid "Line color:"
msgstr "লাইনের রং (_c):"
-#: strings.hrc:412
+#: strings.hrc:414
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SIZE_PROPERTY"
msgid "Font size:"
msgstr "ফন্টের আকার"
-#: strings.hrc:413
+#: strings.hrc:415
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SCALE_PROPERTY"
msgid "Size:"
msgstr "আকার"
-#: strings.hrc:414
+#: strings.hrc:416
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_AMOUNT_PROPERTY"
msgid "Amount:"
msgstr "Amount"
-#: strings.hrc:415
+#: strings.hrc:417
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_COLOR_PROPERTY"
msgid "Color:"
msgstr "রঙ"
-#: strings.hrc:416
+#: strings.hrc:418
msgctxt "STR_CUSTOMANIMATION_NO_SOUND"
msgid "(No sound)"
msgstr "(নীরব)"
-#: strings.hrc:417
+#: strings.hrc:419
msgctxt "STR_CUSTOMANIMATION_STOP_PREVIOUS_SOUND"
msgid "(Stop previous sound)"
msgstr "(পূর্ববর্তী শব্দ বন্ধ)"
-#: strings.hrc:418
+#: strings.hrc:420
msgctxt "STR_CUSTOMANIMATION_BROWSE_SOUND"
msgid "Other sound..."
msgstr "অন্যান্য শব্দ..."
-#: strings.hrc:419
+#: strings.hrc:421
msgctxt "STR_CUSTOMANIMATION_SAMPLE"
msgid "Sample"
msgstr "নমুনা"
-#: strings.hrc:420
+#: strings.hrc:422
msgctxt "STR_CUSTOMANIMATION_TRIGGER"
msgid "Trigger"
msgstr "ট্রিগার"
-#: strings.hrc:421
+#: strings.hrc:423
msgctxt "STR_CUSTOMANIMATION_LIST_HELPTEXT"
msgid "First select the slide element and then click 'Add...' to add an animation effect."
msgstr "একটি অ্যানিমেশন আবহ যোগ করতে প্রথমে স্লাইড এলিমেন্ট নির্বাচন করুন এবং তারপর 'যোগ...' এ ক্লিক করুন।"
-#: strings.hrc:422
+#: strings.hrc:424
msgctxt "STR_CUSTOMANIMATION_USERPATH"
msgid "User paths"
msgstr "ব্যবহারকারীর পাথ"
-#: strings.hrc:423
+#: strings.hrc:425
msgctxt "STR_CUSTOMANIMATION_ENTRANCE"
msgid "Entrance: %1"
msgstr ""
-#: strings.hrc:424
+#: strings.hrc:426
msgctxt "STR_CUSTOMANIMATION_EMPHASIS"
msgid "Emphasis: %1"
msgstr ""
-#: strings.hrc:425
+#: strings.hrc:427
msgctxt "STR_CUSTOMANIMATION_EXIT"
msgid "Exit: %1"
msgstr ""
-#: strings.hrc:426
+#: strings.hrc:428
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_MOTION_PATHS"
msgid "Motion Paths: %1"
msgstr "গতিপথ"
-#: strings.hrc:427
+#: strings.hrc:429
#, fuzzy
msgctxt "STR_SLIDETRANSITION_NONE"
msgid "None"
msgstr "কোনটি না"
-#: strings.hrc:429
+#: strings.hrc:431
msgctxt "STR_ANNOTATION_TODAY"
msgid "Today,"
msgstr "আজ, "
-#: strings.hrc:430
+#: strings.hrc:432
msgctxt "STR_ANNOTATION_YESTERDAY"
msgid "Yesterday,"
msgstr "গতকাল,"
-#: strings.hrc:431
+#: strings.hrc:433
msgctxt "STR_ANNOTATION_NOAUTHOR"
msgid "(no author)"
msgstr "(লেখক নেই)"
-#: strings.hrc:432
+#: strings.hrc:434
msgctxt "STR_ANNOTATION_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress reached the end of the presentation. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Impress উপস্থাপনার শেষে পৌছে গেছে। আপনি কি আবার প্রথম থেকে আরম্ভ করতে চান?"
-#: strings.hrc:433
+#: strings.hrc:435
msgctxt "STR_ANNOTATION_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress reached the beginning of the presentation. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Impress উপস্থাপনার শুরুতে পৌছে গেছে। আপনি কি আবার শেষাংশ থেকে চালিয়ে যেতে চান?"
-#: strings.hrc:434
+#: strings.hrc:436
msgctxt "STR_ANNOTATION_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the end of the document. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Draw নথির শেষে পৌছে গেছে। আপনি কি আবার প্রথম থেকে আরম্ভ করতে চান?"
-#: strings.hrc:435
+#: strings.hrc:437
msgctxt "STR_ANNOTATION_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the beginning of the document. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Draw নথির শুরুতে পৌছে গেছে। আপনি কি আবার শেষাংশ থেকে চালিয়ে যেতে চান?"
-#: strings.hrc:436
+#: strings.hrc:438
msgctxt "STR_ANNOTATION_UNDO_INSERT"
msgid "Insert Comment"
msgstr "মন্তব্য সন্নিবেশ"
-#: strings.hrc:437
+#: strings.hrc:439
msgctxt "STR_ANNOTATION_UNDO_DELETE"
msgid "Delete Comment(s)"
msgstr "মন্তব্য মুছে ফেলুন"
-#: strings.hrc:438
+#: strings.hrc:440
msgctxt "STR_ANNOTATION_UNDO_MOVE"
msgid "Move Comment"
msgstr "মন্তব্য স্থানান্তর"
-#: strings.hrc:439
+#: strings.hrc:441
msgctxt "STR_ANNOTATION_UNDO_EDIT"
msgid "Edit Comment"
msgstr "মন্তব্য সম্পাদনা"
-#: strings.hrc:440
+#: strings.hrc:442
msgctxt "STR_ANNOTATION_REPLY"
msgid "Reply to %1"
msgstr "%1 এর প্রতি উত্তর "
-#: strings.hrc:442
+#: strings.hrc:444
msgctxt "RID_DRAW_MEDIA_TOOLBOX"
msgid "Media Playback"
msgstr "মিডিয়া প্লে-ব্যাক"
-#: strings.hrc:443
+#: strings.hrc:445
msgctxt "RID_DRAW_TABLE_TOOLBOX"
msgid "Table"
msgstr "টেবিল"
-#: strings.hrc:445
+#: strings.hrc:447
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_GROUP_NAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: strings.hrc:446
+#: strings.hrc:448
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PRINT_GROUP"
msgid "Print"
msgstr "প্রিন্ট করুন"
-#: strings.hrc:447
+#: strings.hrc:449
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT"
msgid "Document"
msgstr "নথি"
-#: strings.hrc:448
+#: strings.hrc:450
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE"
msgid "Slides per page"
msgstr "প্রতি পৃষ্ঠায় স্লাইডের সংখ্যা"
-#: strings.hrc:449
+#: strings.hrc:451
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER"
msgid "Order"
msgstr "ক্রম"
-#: strings.hrc:450
+#: strings.hrc:452
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT"
msgid "~Contents"
msgstr "বিষয়বস্তু"
-#: strings.hrc:451
+#: strings.hrc:453
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_NAME"
msgid "~Slide name"
msgstr "স্লাইডের নাম (~S)"
-#: strings.hrc:452
+#: strings.hrc:454
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_IS_PRINT_NAME"
msgid "P~age name"
msgstr "পৃষ্ঠার নাম (~a)"
-#: strings.hrc:453
+#: strings.hrc:455
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_DATE"
msgid "~Date and time"
msgstr "তারিখ এবং সময়"
-#: strings.hrc:454
+#: strings.hrc:456
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_HIDDEN"
msgid "Hidden pages"
msgstr "লুকানো পৃষ্ঠা"
-#: strings.hrc:455
+#: strings.hrc:457
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY"
msgid "Color"
msgstr "রঙ"
-#: strings.hrc:456
+#: strings.hrc:458
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS"
msgid "~Size"
msgstr "আকার"
-#: strings.hrc:457
+#: strings.hrc:459
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE"
msgid "Brochure"
msgstr "হাতবই (_r)"
-#: strings.hrc:458
+#: strings.hrc:460
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_SIDES"
msgid "Page sides"
msgstr "পৃষ্ঠার পার্শ্ব"
-#: strings.hrc:459
+#: strings.hrc:461
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE"
msgid "Include"
msgstr "অন্তর্ভুক্ত করুন"
-#: strings.hrc:460
+#: strings.hrc:462
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAPER_TRAY"
msgid "~Use only paper tray from printer preferences"
msgstr "প্রিন্টারের পছন্দসমূহ থেকে শুধু পেপার ট্রে অপশন ব্যবহার করুন (~U)"
-#: strings.hrc:461
+#: strings.hrc:463
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE"
msgid "Print range"
msgstr "মুদ্রণ পরিসর"
-#: strings.hrc:463
+#: strings.hrc:465
msgctxt "STR_SAR_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress has searched to the end of the presentation. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME এর ইমপ্রেস উপস্থাপনাটির শেষ পর্যন্ত খোঁজা হয়েছে। আপনি কি শুরু থেকে খোঁজা অব্যাহত রাখতে চান?"
-#: strings.hrc:464
+#: strings.hrc:466
msgctxt "STR_SAR_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress has searched to the beginning of the presentation. Do you want to continue at the end?"
msgstr "%PRODUCTNAME এর ইমপ্রেস উপস্থাপনাটির শুরু পর্যন্ত খোঁজা হয়েছে। আপনি কি শেষ থেকে খোঁজা অব্যাহত রাখতে চান?"
-#: strings.hrc:465
+#: strings.hrc:467
msgctxt "STR_SAR_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the end of the document. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME এর চিত্র নথিটির শেষ পর্যন্ত খোঁজা হয়েছে। আপনি কি শুরু থেকে খোঁজা অব্যাহত রাখতে চান?"
-#: strings.hrc:466
+#: strings.hrc:468
msgctxt "STR_SAR_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the beginning of the document. Do you want to continue at the end?"
msgstr "%PRODUCTNAME এর চিত্র নথিটির শুরু পর্যন্ত খোঁজা হয়েছে। আপনি কি শে‌ষ থেকে খোঁজা অব্যাহত রাখতে চান?"
-#: strings.hrc:468
+#: strings.hrc:470
#, fuzzy
msgctxt "STR_SD_NONE"
msgid "- None -"
@@ -4696,8 +4706,8 @@ msgstr "নথির বিন্যাসকরণের জন্য মুদ
#: optimpressgeneralpage.ui:622
msgctxt "optimpressgeneralpage|cbCompatibility"
-msgid "Add _spacing between paragraphs and tables (in current document)"
-msgstr "অনুচ্ছেদ ও টেবিলের মাঝে ফাঁকাস্থান যোগ করুন (বর্তমান নথিতে) (_s)"
+msgid "Add _spacing between paragraphs and tables"
+msgstr ""
#: optimpressgeneralpage.ui:645
msgctxt "optimpressgeneralpage|label1"
@@ -5467,14 +5477,13 @@ msgid "Master Background"
msgstr ""
#: sidebarslidebackground.ui:197
-#, fuzzy
msgctxt "sidebarslidebackground|label4"
-msgid "Orientation: "
-msgstr "সজ্জা"
+msgid "Orientation:"
+msgstr ""
#: sidebarslidebackground.ui:212
msgctxt "sidebarslidebackground|masterslidebutton"
-msgid "Master Slide"
+msgid "Master View"
msgstr ""
#: sidebarslidebackground.ui:226
@@ -5522,10 +5531,9 @@ msgid "Wide"
msgstr "আড়াল করুন"
#: sidebarslidebackground.ui:267
-#, fuzzy
msgctxt "sidebarslidebackground|labelmargin"
-msgid "Margin: "
-msgstr "মার্জিন"
+msgid "Margin:"
+msgstr ""
#: sidebarslidebackground.ui:277
#, fuzzy
diff --git a/source/bn-IN/sfx2/messages.po b/source/bn-IN/sfx2/messages.po
index 8cb9efeba5e..179085c8f2b 100644
--- a/source/bn-IN/sfx2/messages.po
+++ b/source/bn-IN/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -837,27 +837,32 @@ msgctxt "RID_SVXSTR_INCORRECT_PASSWORD"
msgid "Incorrect password"
msgstr "ভুল পাসওয়ার্ড"
-#: strings.hrc:173
+#: strings.hrc:172
+msgctxt "RID_SVXSTR_GPG_ENCRYPT_FAILURE"
+msgid "OpenPGP key not trusted, damaged, or encryption failure. Please try again."
+msgstr ""
+
+#: strings.hrc:174
msgctxt "STR_PASSWD_MIN_LEN"
msgid "(Minimum $(MINLEN) characters)"
msgstr "(সর্বনিম্ন $(MINLEN) ক্যারেক্টার)"
-#: strings.hrc:174
+#: strings.hrc:175
msgctxt "STR_PASSWD_MIN_LEN1"
msgid "(Minimum 1 character)"
msgstr "ন্যূনতম ১ অক্ষর)"
-#: strings.hrc:175
+#: strings.hrc:176
msgctxt "STR_PASSWD_EMPTY"
msgid "(The password can be empty)"
msgstr "(পাসওয়ার্ড খালি হতে পারে)"
-#: strings.hrc:176
+#: strings.hrc:177
msgctxt "STR_MODULENOTINSTALLED"
msgid "The action could not be executed. The %PRODUCTNAME program module needed for this action is currently not installed."
msgstr "কাজটি কার্যকর করা যাবে না। এই কাজের জন্য প্রয়োজনীয় %PRODUCTNAME প্রোগ্রাম মডিউলটি বর্তমানে ইনস্টল করা নেই।"
-#: strings.hrc:178
+#: strings.hrc:179
msgctxt "STR_FILTER_NOT_INSTALLED"
msgid ""
"The selected filter $(FILTER) has not been installed.\n"
@@ -866,7 +871,7 @@ msgstr ""
"নির্বাচিত $(FILTER) পরিশোধক ইনস্টল করা হয়নি।\n"
"আপনি কি এখন এটা সম্পন্ন করতে চান?"
-#: strings.hrc:179
+#: strings.hrc:180
msgctxt "STR_FILTER_CONSULT_SERVICE"
msgid ""
"The selected filter $(FILTER) is not included in your edition.\n"
@@ -875,73 +880,73 @@ msgstr ""
"আপনার সংস্করণে নির্বাচিত $(FILTER) ফিল্টার অন্তর্ভুক্ত নয়।\n"
"আমাদের প্রধান পাতা থেকে, আপনি ক্রম সম্পর্কিত তথ্য খুঁজে পেতে পারেন।"
-#: strings.hrc:181
+#: strings.hrc:182
msgctxt "STR_WELCOME_LINE1"
msgid "Welcome to %PRODUCTNAME."
msgstr "%PRODUCTNAME-এ স্বাগতম।"
-#: strings.hrc:182
+#: strings.hrc:183
msgctxt "STR_WELCOME_LINE2"
msgid "Drop a document here or pick an app from the left side to create one."
msgstr ""
-#: strings.hrc:184
+#: strings.hrc:185
msgctxt "STR_SFX_FILEDLG_ACTUALVERSION"
msgid "Current version"
msgstr "বর্তমান সংস্করণ"
-#: strings.hrc:185
+#: strings.hrc:186
msgctxt "STR_SFX_EXPLORERFILE_EXPORT"
msgid "Export"
msgstr "এক্সপোর্ট করুন"
-#: strings.hrc:186
+#: strings.hrc:187
msgctxt "STR_SFX_EXPLORERFILE_INSERT"
msgid "Insert"
msgstr "সন্নিবেশ করান"
-#: strings.hrc:187
+#: strings.hrc:188
msgctxt "STR_SFX_EXPLORERFILE_BUTTONINSERT"
msgid "~Insert"
msgstr "সন্নিবেশ করান (~I)"
-#: strings.hrc:188
+#: strings.hrc:189
msgctxt "STR_SFX_IMPORT_ALL"
msgid "<All formats>"
msgstr "<সব বিন্যাস>"
-#: strings.hrc:189
+#: strings.hrc:190
msgctxt "STR_PB_SAVEACOPY"
msgid "Save a Copy"
msgstr "একটি প্রতিলিপি সংরক্ষণ করুন"
-#: strings.hrc:190
+#: strings.hrc:191
#, fuzzy
msgctxt "STR_PB_COMPAREDOC"
msgid "Compare to"
msgstr "তুলনা #"
-#: strings.hrc:191
+#: strings.hrc:192
msgctxt "STR_PB_MERGEDOC"
msgid "Merge with"
msgstr ""
-#: strings.hrc:193
+#: strings.hrc:194
msgctxt "STR_SFX_NEWOFFICEDOC"
msgid "%PRODUCTNAME document"
msgstr "%PRODUCTNAME নথি"
-#: strings.hrc:194
+#: strings.hrc:195
msgctxt "SFX_ST_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr "ব: %1 মা: %2 দি: %3 ঘ: %4 মি: %5 সে: %6"
-#: strings.hrc:195
+#: strings.hrc:196
msgctxt "STR_SFX_REMOVE_PROPERTY"
msgid "Remove Property"
msgstr "বৈশিষ্ট্য অপসারণ করুন"
-#: strings.hrc:196
+#: strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -950,27 +955,27 @@ msgstr ""
"সন্নিবেশকৃত মান নির্ধারিত ধরনের সাথে মিলে না।\n"
"মানটি পাঠ্য হিসেবে সংরক্ষণ করা হবে।"
-#: strings.hrc:198
+#: strings.hrc:199
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "শৈলীটি ইতিমধ্যেই বিদ্যমান। প্রতিস্থাপন করা হবে কি?"
-#: strings.hrc:200
+#: strings.hrc:201
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "পুনঃনির্ধারণ (~R)"
-#: strings.hrc:201
+#: strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "এই নামটি ইতোমধ্যে ব্যবহৃত হচ্ছে।"
-#: strings.hrc:202
+#: strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "এই শৈলীটি বিদ্যমান নয়।"
-#: strings.hrc:203
+#: strings.hrc:204
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -979,7 +984,7 @@ msgstr ""
"এই শৈলীটি ভিত্তির শৈলী হিসেবে ব্যবহার করা যায় না,\n"
"কারণ এটি পুনরাবৃত্ত রেফঅরেন্সে প্রভাব ফেলবে।"
-#: strings.hrc:204
+#: strings.hrc:205
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -988,7 +993,7 @@ msgstr ""
"নাম ইতোমধ্যে পূর্বনির্ধারিত শৈলী হিসেবে বিদ্যমান।\n"
"অনুগ্রহ করে অন্য নাম পছন্দ করুন।"
-#: strings.hrc:205
+#: strings.hrc:206
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -999,97 +1004,97 @@ msgstr ""
"অাপনি এই শৈলীগুলি মুছে দিলে, পাঠ্য অভিভাবকীয় শৈলীতে ফিরে যাবে।\n"
"অাপনি কি তাসত্বেও এই শৈলীগুলি মুছে দিতে চান?\n"
-#: strings.hrc:206
+#: strings.hrc:207
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "ব্যবহৃত শৈলী:"
-#: strings.hrc:207
+#: strings.hrc:208
#, fuzzy
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "পরিক্রমক"
-#: strings.hrc:208
+#: strings.hrc:209
#, fuzzy
msgctxt "STR_SID_SIDEBAR"
msgid "Sidebar"
msgstr "পার্শ্বদন্ড"
-#: strings.hrc:209
+#: strings.hrc:210
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "ত্রুটিপূর্ণ পাসওয়ার্ড নিশ্চিতকরণ"
-#: strings.hrc:210
+#: strings.hrc:211
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "প্রেরণ"
-#: strings.hrc:211
+#: strings.hrc:212
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "ফন্ট"
-#: strings.hrc:212
+#: strings.hrc:213
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show Previews"
msgstr ""
-#: strings.hrc:214
+#: strings.hrc:215
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "সংস্করণ মন্তব্য সন্নিবেশ করান"
-#: strings.hrc:215
+#: strings.hrc:216
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(কোনো নাম দেওয়া হয়নি)"
-#: strings.hrc:217
+#: strings.hrc:218
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "শৈলীর তালিকা"
-#: strings.hrc:218
+#: strings.hrc:219
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "ক্রমবিভক্ত"
-#: strings.hrc:219
+#: strings.hrc:220
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "ভরাট বিন্যাসের মোড"
-#: strings.hrc:220
+#: strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "নির্বাচন থেকে নতুন শৈলী"
-#: strings.hrc:221
+#: strings.hrc:222
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "শৈলী হালনাগাদ (~U)"
-#: strings.hrc:223
+#: strings.hrc:224
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "আপনি কি আসলেই রেকর্ড করা বাতিল করতে চান? এ পর্যন্ত রেকর্ডকৃত সব পদক্ষেপ হারিয়ে যাবে।"
-#: strings.hrc:224
+#: strings.hrc:225
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "রেকর্ডকরণ বাতিল"
-#: strings.hrc:226
+#: strings.hrc:227
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "ফর্মাসমূহ প্রথম-বার ব্যবহারের জন্য প্রস্তুত করা হযেছে।"
-#: strings.hrc:228
+#: strings.hrc:229
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1098,7 +1103,7 @@ msgstr ""
"কোনো পূর্বনির্ধারিত মুদ্রণযন্ত্র পাওয়া যায়নি।\n"
"অনুগ্রহ করে একটি মুদ্রণযন্ত্র নির্বাচন করুন এবং আবার চেষ্টা করুন।"
-#: strings.hrc:229
+#: strings.hrc:230
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1107,17 +1112,17 @@ msgstr ""
"মুদ্রণযন্ত্র চালু করা যাবে না।\n"
"অনুগ্রহ করে আপনার মুদ্রণযন্ত্রের কনফিগারেশন পরীক্ষা করুন।"
-#: strings.hrc:230
+#: strings.hrc:231
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "মুদ্রণযন্ত্রটি ব্যস্ত"
-#: strings.hrc:231
+#: strings.hrc:232
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (শুধুমাত্র-পাঠযোগ্য)"
-#: strings.hrc:232
+#: strings.hrc:233
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1127,7 +1132,7 @@ msgstr ""
"পৃষ্ঠার আকৃতি এবং স্থিতিবিন্যাস পরিবর্তন করা হয়েছে।\n"
"আপনি কি নতুন বিন্যাসটি সক্রিয় নথিতে সংরক্ষণ করতে চান?"
-#: strings.hrc:233
+#: strings.hrc:234
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1137,7 +1142,7 @@ msgstr ""
"পৃষ্ঠার আকৃতি পরিবর্তন করা হয়েছে।\n"
"নতুন বিন্যাস কি সক্রিয় নথিতে সংরক্ষণ করা হবে?"
-#: strings.hrc:234
+#: strings.hrc:235
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1147,7 +1152,7 @@ msgstr ""
"পৃষ্ঠার আকৃতি এবং স্থিতিবিন্যাস পরিবর্তন করা হয়েছে।\n"
"আপনি কি নতুন বিন্যাসটি সক্রিয় নথিতে সংরক্ষণ করতে চান?"
-#: strings.hrc:235
+#: strings.hrc:236
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1156,7 +1161,7 @@ msgstr ""
"নথিটি বন্ধ করা যাবে না কারণ\n"
"একটি মুদ্রণ কাজ চলছে।"
-#: strings.hrc:236
+#: strings.hrc:237
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1165,214 +1170,316 @@ msgstr ""
"বার্তা প্রেরণ একটি ত্রুটি দেখা দিয়েছে। অনুপস্থিত ব্যবহারকারীর হিসাব বা ত্রুটিপূর্ণ সেটআপের কারণে সম্ভাব্য ত্রুটি দেখা দিতে পারে।\n"
"অনুগ্রহ করে %PRODUCTNAME সেটিং বা আপনার ই-মেইল সেটিং পরীক্ষা করুন।"
-#: strings.hrc:237
+#: strings.hrc:238
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "সম্ভবত অনুপস্থিত প্রবেশাধিকারের কারণে, এই নথিটি সম্পাদনা করা যাবে না। আপনি কি নথির একটি অনুলিপি সম্পাদনা করতে চান?"
-#: strings.hrc:238
+#: strings.hrc:239
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr "(সংশোধিত নথি)"
-#: strings.hrc:239
+#: strings.hrc:240
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "এই ডকুমেন্ট সার্ভারে চেক অাউট করা হয়নি।"
-#: strings.hrc:240
+#: strings.hrc:241
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "এই নথি শুধুমাত্র-পাঠযোগ্য মোডে খোলা হয়।"
-#: strings.hrc:241
+#: strings.hrc:242
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: strings.hrc:242
+#: strings.hrc:243
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: strings.hrc:243
+#: strings.hrc:244
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: strings.hrc:244
+#: strings.hrc:245
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: strings.hrc:245
+#: strings.hrc:246
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Intellectual Property:"
msgstr ""
-#: strings.hrc:246
+#: strings.hrc:247
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: strings.hrc:247
+#: strings.hrc:248
#, fuzzy
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "রিপোর্ট নিয়ন্ত্রণ"
-#: strings.hrc:248
+#: strings.hrc:249
#, fuzzy
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "চেক-অাউট"
-#: strings.hrc:249
+#: strings.hrc:250
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "নথির সম্পাদনা"
-#: strings.hrc:250
+#: strings.hrc:251
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "নথিতে স্বাক্ষর করুন..."
-#: strings.hrc:251
+#: strings.hrc:252
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: strings.hrc:252
+#: strings.hrc:253
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: strings.hrc:253
+#: strings.hrc:254
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: strings.hrc:254
+#: strings.hrc:255
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: strings.hrc:255
+#: strings.hrc:256
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: strings.hrc:256
+#: strings.hrc:257
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: strings.hrc:258
+#: strings.hrc:259
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: strings.hrc:259
+#: strings.hrc:260
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "ডক"
-#: strings.hrc:260
+#: strings.hrc:261
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "আনডক"
-#: strings.hrc:262
+#: strings.hrc:263
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "অারো বিকল্প"
-#: strings.hrc:263
+#: strings.hrc:264
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "পার্শ্ববার ডেক বন্ধ করুন"
-#: strings.hrc:264
+#: strings.hrc:265
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: strings.hrc:265
+#: strings.hrc:266
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "স্বনির্ধারণ"
-#: strings.hrc:266
+#: strings.hrc:267
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "ডিফল্ট পুনঃস্থাপন করুন"
-#: strings.hrc:267
+#: strings.hrc:268
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
-#: strings.hrc:269
+#. Translators: default Impress template names
+#: strings.hrc:271
msgctxt "STR_TEMPLATE_NAME1"
-msgid "Abstract Green"
-msgstr "আবছা সবুজ"
+msgid "Alizarin"
+msgstr ""
-#: strings.hrc:270
+#: strings.hrc:272
msgctxt "STR_TEMPLATE_NAME2"
-msgid "Abstract Red"
-msgstr "আবছা লাল"
+msgid "Beehive"
+msgstr ""
-#: strings.hrc:271
+#: strings.hrc:273
msgctxt "STR_TEMPLATE_NAME3"
-msgid "Abstract Yellow"
-msgstr "আবছা হলুদ"
+msgid "Blue Curve"
+msgstr ""
-#: strings.hrc:272
+#: strings.hrc:274
msgctxt "STR_TEMPLATE_NAME4"
-msgid "Bright Blue"
-msgstr "উজ্জ্বল নীল"
+msgid "Blueprint Plans"
+msgstr ""
-#: strings.hrc:273
+#: strings.hrc:275
msgctxt "STR_TEMPLATE_NAME5"
-msgid "DNA"
-msgstr "DNA"
+msgid "Bright Blue"
+msgstr ""
-#: strings.hrc:274
+#: strings.hrc:276
msgctxt "STR_TEMPLATE_NAME6"
-msgid "Inspiration"
-msgstr "অনুপ্রেরণা"
+msgid "Classy Red"
+msgstr ""
-#: strings.hrc:275
+#: strings.hrc:277
msgctxt "STR_TEMPLATE_NAME7"
-msgid "Lush Green"
-msgstr "গাঢ় সবুজ"
+msgid "DNA"
+msgstr ""
-#: strings.hrc:276
+#: strings.hrc:278
msgctxt "STR_TEMPLATE_NAME8"
-msgid "Metropolis"
-msgstr "বৃহৎ শহর"
+msgid "Focus"
+msgstr ""
-#: strings.hrc:277
+#: strings.hrc:279
msgctxt "STR_TEMPLATE_NAME9"
-msgid "Sunset"
-msgstr "সূর্যাস্ত"
+msgid "Forestbird"
+msgstr ""
-#: strings.hrc:278
+#: strings.hrc:280
msgctxt "STR_TEMPLATE_NAME10"
+msgid "Impress"
+msgstr ""
+
+#: strings.hrc:281
+msgctxt "STR_TEMPLATE_NAME11"
+msgid "Inspiration"
+msgstr ""
+
+#: strings.hrc:282
+msgctxt "STR_TEMPLATE_NAME12"
+msgid "Lights"
+msgstr ""
+
+#: strings.hrc:283
+msgctxt "STR_TEMPLATE_NAME13"
+msgid "Lush Green"
+msgstr ""
+
+#: strings.hrc:284
+msgctxt "STR_TEMPLATE_NAME14"
+msgid "Metropolis"
+msgstr ""
+
+#: strings.hrc:285
+msgctxt "STR_TEMPLATE_NAME15"
+msgid "Midnightblue"
+msgstr ""
+
+#: strings.hrc:286
+msgctxt "STR_TEMPLATE_NAME16"
+msgid "Nature Illustration"
+msgstr ""
+
+#: strings.hrc:287
+msgctxt "STR_TEMPLATE_NAME17"
+msgid "Pencil"
+msgstr ""
+
+#: strings.hrc:288
+msgctxt "STR_TEMPLATE_NAME18"
+msgid "Piano"
+msgstr ""
+
+#: strings.hrc:289
+msgctxt "STR_TEMPLATE_NAME19"
+msgid "Portfolio"
+msgstr ""
+
+#: strings.hrc:290
+msgctxt "STR_TEMPLATE_NAME20"
+msgid "Progress"
+msgstr ""
+
+#: strings.hrc:291
+msgctxt "STR_TEMPLATE_NAME21"
+msgid "Sunset"
+msgstr ""
+
+#: strings.hrc:292
+msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
-msgstr "প্রাচীন"
+msgstr ""
-#: strings.hrc:280
+#: strings.hrc:293
+msgctxt "STR_TEMPLATE_NAME23"
+msgid "Vivid"
+msgstr ""
+
+#. Translators: default Writer template names
+#: strings.hrc:295
+msgctxt "STR_TEMPLATE_NAME24"
+msgid "CV"
+msgstr ""
+
+#: strings.hrc:296
+msgctxt "STR_TEMPLATE_NAME25"
+msgid "Resume"
+msgstr ""
+
+#: strings.hrc:297
+msgctxt "STR_TEMPLATE_NAME26"
+msgid "Default"
+msgstr ""
+
+#: strings.hrc:298
+msgctxt "STR_TEMPLATE_NAME27"
+msgid "Modern"
+msgstr ""
+
+#: strings.hrc:299
+msgctxt "STR_TEMPLATE_NAME28"
+msgid "Modern business letter sans-serif"
+msgstr ""
+
+#: strings.hrc:300
+msgctxt "STR_TEMPLATE_NAME29"
+msgid "Modern business letter serif"
+msgstr ""
+
+#: strings.hrc:301
+msgctxt "STR_TEMPLATE_NAME30"
+msgid "Businesscard with logo"
+msgstr ""
+
+#: strings.hrc:303
#, fuzzy
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "সরিয়ে ফেলুন"
-#: strings.hrc:281
+#: strings.hrc:304
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
diff --git a/source/bn-IN/sw/messages.po b/source/bn-IN/sw/messages.po
index 066e5a3b85c..a1d21e24f51 100644
--- a/source/bn-IN/sw/messages.po
+++ b/source/bn-IN/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-20 08:17+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -86,10 +86,9 @@ msgid "Conditional Styles"
msgstr "শর্তাধীন শৈলী"
#: app.hrc:47
-#, fuzzy
msgctxt "RID_CHARACTERSTYLEFAMILY"
-msgid "All"
-msgstr "সব"
+msgid "All Styles"
+msgstr ""
#: app.hrc:48
#, fuzzy
@@ -110,10 +109,9 @@ msgid "Custom Styles"
msgstr "স্বনির্ধারিত শৈলী"
#: app.hrc:56
-#, fuzzy
msgctxt "RID_FRAMESTYLEFAMILY"
-msgid "All"
-msgstr "সব"
+msgid "All Styles"
+msgstr ""
#: app.hrc:57
#, fuzzy
@@ -134,10 +132,9 @@ msgid "Custom Styles"
msgstr "স্বনির্ধারিত শৈলী"
#: app.hrc:65
-#, fuzzy
msgctxt "RID_PAGESTYLEFAMILY"
-msgid "All"
-msgstr "সব"
+msgid "All Styles"
+msgstr ""
#: app.hrc:66
#, fuzzy
@@ -158,10 +155,9 @@ msgid "Custom Styles"
msgstr "স্বনির্ধারিত শৈলী"
#: app.hrc:74
-#, fuzzy
msgctxt "RID_LISTSTYLEFAMILY"
-msgid "All"
-msgstr "সব"
+msgid "All Styles"
+msgstr ""
#: app.hrc:75
#, fuzzy
@@ -182,10 +178,9 @@ msgid "Custom Styles"
msgstr "স্বনির্ধারিত শৈলী"
#: app.hrc:83
-#, fuzzy
msgctxt "RID_TABLESTYLEFAMILY"
-msgid "All"
-msgstr "সব"
+msgid "All Styles"
+msgstr ""
#: app.hrc:84
#, fuzzy
@@ -1359,28 +1354,28 @@ msgstr "আড়াআড়ি"
#. Numbering rules
#: strings.hrc:199
msgctxt "STR_POOLNUMRULE_NUM1"
-msgid "Numbering 1"
-msgstr "সংখ্যায়ন ১"
+msgid "Numbering 123"
+msgstr ""
#: strings.hrc:200
msgctxt "STR_POOLNUMRULE_NUM2"
-msgid "Numbering 2"
-msgstr "সংখ্যায়ন ২স"
+msgid "Numbering ABC"
+msgstr ""
#: strings.hrc:201
msgctxt "STR_POOLNUMRULE_NUM3"
-msgid "Numbering 3"
-msgstr "সংখ্যায়ন ৩স"
+msgid "Numbering abc"
+msgstr ""
#: strings.hrc:202
msgctxt "STR_POOLNUMRULE_NUM4"
-msgid "Numbering 4"
-msgstr "সংখ্যায়ন ৪স"
+msgid "Numbering IVX"
+msgstr ""
#: strings.hrc:203
msgctxt "STR_POOLNUMRULE_NUM5"
-msgid "Numbering 5"
-msgstr "সংখ্যায়ন ৫"
+msgid "Numbering ivx"
+msgstr ""
#: strings.hrc:204
msgctxt "STR_POOLNUMRULE_BUL1"
@@ -14627,14 +14622,13 @@ msgid "Use printer metrics for document formatting"
msgstr "নথির বিন্যাসকরণের জন্য মুদ্রক ম্যাট্রিক্স ব্যবহার করুন (_e)"
#: optcompatpage.ui:57
-#, fuzzy
msgctxt "optcompatpage|format"
-msgid "Add spacing between paragraphs and tables (in current document)"
-msgstr "অনুচ্ছেদ ও টেবিলের মাঝে ফাঁকাস্থান যোগ করুন (বর্তমান নথিতে) (_s)"
+msgid "Add spacing between paragraphs and tables"
+msgstr ""
#: optcompatpage.ui:58
msgctxt "optcompatpage|format"
-msgid "Add paragraph and table spacing at tops of pages (in current document)"
+msgid "Add paragraph and table spacing at tops of pages"
msgstr ""
#: optcompatpage.ui:59
@@ -14689,7 +14683,7 @@ msgstr ""
#: optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Tolerate white lines of PDF page backgrounds for compatibility with old documents (in current document)"
+msgid "Tolerate white lines of PDF page backgrounds for compatibility with old documents"
msgstr ""
#: optcompatpage.ui:70
@@ -14705,7 +14699,7 @@ msgstr ""
#: optcompatpage.ui:104
msgctxt "optcompatpage|label11"
-msgid "Compatibility options for %DOCNAME"
+msgid "Compatibility options for '%DOCNAME'"
msgstr ""
#: optfonttabpage.ui:103
@@ -18127,21 +18121,11 @@ msgctxt "textgridpage|labelFT_CHARSPERLINE"
msgid "Characters per line:"
msgstr ""
-#: textgridpage.ui:223
-msgctxt "textgridpage|labelFT_CHARRANGE"
-msgid "(1-45)"
-msgstr ""
-
#: textgridpage.ui:236
msgctxt "textgridpage|labelFT_LINESPERPAGE"
msgid "Lines per page:"
msgstr ""
-#: textgridpage.ui:265
-msgctxt "textgridpage|labelFT_LINERANGE"
-msgid "(1-48)"
-msgstr ""
-
#: textgridpage.ui:303
#, fuzzy
msgctxt "textgridpage|labelFT_CHARWIDTH"
diff --git a/source/bn/cui/messages.po b/source/bn/cui/messages.po
index 30019f1b95e..0a3ef480eec 100644
--- a/source/bn/cui/messages.po
+++ b/source/bn/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8481,78 +8481,78 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "সহায়তা"
-#: optgeneralpage.ui:77
+#: optgeneralpage.ui:76
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr " %PRODUCTNAME ডায়ালগ"
-#: optgeneralpage.ui:111
+#: optgeneralpage.ui:110
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: optgeneralpage.ui:137
+#: optgeneralpage.ui:136
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr " %PRODUCTNAME ডায়ালগ"
-#: optgeneralpage.ui:152
+#: optgeneralpage.ui:151
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: optgeneralpage.ui:178
+#: optgeneralpage.ui:177
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: optgeneralpage.ui:193
+#: optgeneralpage.ui:192
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "নথির নাম\tঅবস্থা"
-#: optgeneralpage.ui:226
+#: optgeneralpage.ui:225
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: optgeneralpage.ui:252
+#: optgeneralpage.ui:251
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "এবং"
-#: optgeneralpage.ui:267
+#: optgeneralpage.ui:266
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: optgeneralpage.ui:293
+#: optgeneralpage.ui:292
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: optgeneralpage.ui:308
+#: optgeneralpage.ui:307
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: optgeneralpage.ui:339
+#: optgeneralpage.ui:338
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "সিস্টেম শুরুর সময় %PRODUCTNAME লোড করা"
-#: optgeneralpage.ui:353
+#: optgeneralpage.ui:352
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "systray কুইকস্টার্টার নিষ্ক্রিয় করুন"
-#: optgeneralpage.ui:373
+#: optgeneralpage.ui:372
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -9396,235 +9396,240 @@ msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr ""
-#: optuserpage.ui:34
+#: optuserpage.ui:12
+msgctxt "optuserpage|liststore1"
+msgid "No key"
+msgstr ""
+
+#: optuserpage.ui:45
#, fuzzy
msgctxt "optuserpage|companyft"
msgid "_Company:"
msgstr "কোম্পানি"
-#: optuserpage.ui:48
+#: optuserpage.ui:59
msgctxt "optuserpage|nameft"
msgid "First/last _name/initials:"
msgstr ""
-#: optuserpage.ui:62
+#: optuserpage.ui:73
#, fuzzy
msgctxt "optuserpage|streetft"
msgid "_Street:"
msgstr "রাস্তা:"
-#: optuserpage.ui:76
+#: optuserpage.ui:87
msgctxt "optuserpage|cityft"
msgid "City/state/_zip:"
msgstr ""
-#: optuserpage.ui:90
+#: optuserpage.ui:101
#, fuzzy
msgctxt "optuserpage|countryft"
msgid "Country/re_gion:"
msgstr "CountryOrRegion"
-#: optuserpage.ui:104
+#: optuserpage.ui:115
msgctxt "optuserpage|titleft"
msgid "_Title/position:"
msgstr ""
-#: optuserpage.ui:118
+#: optuserpage.ui:129
msgctxt "optuserpage|phoneft"
msgid "Telephone (home/_work):"
msgstr ""
-#: optuserpage.ui:123
+#: optuserpage.ui:134
msgctxt "phoneft-atkobject"
msgid "Home telephone number"
msgstr ""
-#: optuserpage.ui:137
+#: optuserpage.ui:148
msgctxt "optuserpage|faxft"
msgid "Fa_x/e-mail:"
msgstr ""
-#: optuserpage.ui:160
+#: optuserpage.ui:171
#, fuzzy
msgctxt "optuserpage|firstname-atkobject"
msgid "First name"
msgstr "নামের প্রথমাংশ"
-#: optuserpage.ui:178
+#: optuserpage.ui:189
#, fuzzy
msgctxt "lastname-atkobject"
msgid "Last name"
msgstr "নামের শেষাংশ"
-#: optuserpage.ui:196
+#: optuserpage.ui:207
#, fuzzy
msgctxt "shortname-atkobject"
msgid "Initials"
msgstr "আদ্যক্ষর"
-#: optuserpage.ui:225
+#: optuserpage.ui:236
#, fuzzy
msgctxt "city-atkobject"
msgid "City"
msgstr "শহর"
-#: optuserpage.ui:243
+#: optuserpage.ui:254
#, fuzzy
msgctxt "state-atkobject"
msgid "State"
msgstr "রাষ্ট্র"
-#: optuserpage.ui:261
+#: optuserpage.ui:272
#, fuzzy
msgctxt "zip-atkobject"
msgid "Zip code"
msgstr "জিপ কোড"
-#: optuserpage.ui:291
+#: optuserpage.ui:302
#, fuzzy
msgctxt "title-atkobject"
msgid "Title"
msgstr "শিরোনাম"
-#: optuserpage.ui:309
+#: optuserpage.ui:320
#, fuzzy
msgctxt "position-atkobject"
msgid "Position"
msgstr "অবস্থান"
-#: optuserpage.ui:338
+#: optuserpage.ui:349
msgctxt "home-atkobject"
msgid "Home telephone number"
msgstr ""
-#: optuserpage.ui:356
+#: optuserpage.ui:367
msgctxt "work-atkobject"
msgid "Work telephone number"
msgstr ""
-#: optuserpage.ui:386
+#: optuserpage.ui:397
msgctxt "fax-atkobject"
msgid "FAX number"
msgstr ""
-#: optuserpage.ui:404
+#: optuserpage.ui:415
#, fuzzy
msgctxt "email-atkobject"
msgid "email address"
msgstr "ই-মেইল ঠিকানা"
-#: optuserpage.ui:421
+#: optuserpage.ui:432
msgctxt "optuserpage|usefordocprop"
msgid "Use data for document properties"
msgstr ""
-#: optuserpage.ui:438
+#: optuserpage.ui:449
msgctxt "optuserpage|rusnameft"
msgid "Last name/first _name/father’s name/initials:"
msgstr ""
-#: optuserpage.ui:461
+#: optuserpage.ui:472
#, fuzzy
msgctxt "ruslastname-atkobject"
msgid "Last name"
msgstr "নামের শেষাংশ"
-#: optuserpage.ui:479
+#: optuserpage.ui:490
msgctxt "rusfathersname-atkobject"
msgid "Father's name"
msgstr ""
-#: optuserpage.ui:497
+#: optuserpage.ui:508
#, fuzzy
msgctxt "russhortname-atkobject"
msgid "Initials"
msgstr "আদ্যক্ষর"
-#: optuserpage.ui:515
+#: optuserpage.ui:526
#, fuzzy
msgctxt "rusfirstname-atkobject"
msgid "First name"
msgstr "নামের প্রথমাংশ"
-#: optuserpage.ui:535
+#: optuserpage.ui:546
msgctxt "optuserpage|eastnameft"
msgid "Last/first _name/initials:"
msgstr ""
-#: optuserpage.ui:558
+#: optuserpage.ui:569
#, fuzzy
msgctxt "eastlastname-atkobject"
msgid "Last name"
msgstr "নামের শেষাংশ"
-#: optuserpage.ui:576
+#: optuserpage.ui:587
#, fuzzy
msgctxt "eastfirstname-atkobject"
msgid "First name"
msgstr "নামের প্রথমাংশ"
-#: optuserpage.ui:594
+#: optuserpage.ui:605
#, fuzzy
msgctxt "eastshortname-atkobject"
msgid "Initials"
msgstr "আদ্যক্ষর"
-#: optuserpage.ui:614
+#: optuserpage.ui:625
msgctxt "optuserpage|russtreetft"
msgid "_Street/apartment number:"
msgstr ""
-#: optuserpage.ui:637
+#: optuserpage.ui:648
#, fuzzy
msgctxt "russtreet-atkobject"
msgid "Street"
msgstr "রাস্তা"
-#: optuserpage.ui:655
+#: optuserpage.ui:666
msgctxt "ruslastname-atkobject"
msgid "Apartment number"
msgstr ""
-#: optuserpage.ui:675
+#: optuserpage.ui:686
msgctxt "optuserpage|icityft"
msgid "_Zip/city:"
msgstr ""
-#: optuserpage.ui:698
+#: optuserpage.ui:709
#, fuzzy
msgctxt "icity-atkobject"
msgid "City"
msgstr "শহর"
-#: optuserpage.ui:716
+#: optuserpage.ui:727
#, fuzzy
msgctxt "izip-atkobject"
msgid "Zip code"
msgstr "জিপ কোড"
-#: optuserpage.ui:814
+#: optuserpage.ui:825
#, fuzzy
msgctxt "optuserpage|label1"
msgid "Address"
msgstr "Address"
-#: optuserpage.ui:847
+#: optuserpage.ui:861
msgctxt "optuserpage|signingkeylabel"
msgid "OpenPGP signing key:"
msgstr ""
-#: optuserpage.ui:860
+#: optuserpage.ui:875
msgctxt "optuserpage|encryptionkeylabel"
msgid "OpenPGP encryption key:"
msgstr ""
-#: optuserpage.ui:889
+#: optuserpage.ui:908
msgctxt "optuserpage|encrypttoself"
msgid "When encrypting documents, always encrypt to self"
msgstr ""
-#: optuserpage.ui:909
-msgctxt "optuserpage|label2"
+#: optuserpage.ui:930
+msgctxt "optuserpage|cryptographylabel"
msgid "Cryptography"
msgstr ""
diff --git a/source/bn/extras/source/autocorr/emoji.po b/source/bn/extras/source/autocorr/emoji.po
index a77ce186e38..9b60dba3692 100644
--- a/source/bn/extras/source/autocorr/emoji.po
+++ b/source/bn/extras/source/autocorr/emoji.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: 2016-10-18 13:02+0200\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2016-12-01 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1794,13 +1794,12 @@ msgstr "শুরু"
#. ☇ (U+02607), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"LIGHTNING\n"
"LngText.text"
-msgid "lighting"
-msgstr "আলোর বিন্যাস"
+msgid "lightning3"
+msgstr ""
#. ☈ (U+02608), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1808,7 +1807,7 @@ msgctxt ""
"emoji.ulf\n"
"THUNDERSTORM\n"
"LngText.text"
-msgid "storm"
+msgid "storm2"
msgstr ""
#. ☉ (U+02609), see http://wiki.documentfoundation.org/Emoji
@@ -2157,13 +2156,12 @@ msgstr "চাঁদ"
#. ☿ (U+0263F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"MERCURY\n"
"LngText.text"
-msgid "Mercury"
-msgstr "পারদ"
+msgid "mercury"
+msgstr ""
#. ♀ (U+02640), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2180,7 +2178,7 @@ msgctxt ""
"emoji.ulf\n"
"EARTH\n"
"LngText.text"
-msgid "Earth"
+msgid "earth"
msgstr ""
#. ♂ (U+02642), see http://wiki.documentfoundation.org/Emoji
@@ -2199,7 +2197,7 @@ msgctxt ""
"emoji.ulf\n"
"JUPITER\n"
"LngText.text"
-msgid "Jupiter"
+msgid "jupiter"
msgstr ""
#. ♄ (U+02644), see http://wiki.documentfoundation.org/Emoji
@@ -2208,7 +2206,7 @@ msgctxt ""
"emoji.ulf\n"
"SATURN\n"
"LngText.text"
-msgid "Saturn"
+msgid "saturn"
msgstr ""
#. ♅ (U+02645), see http://wiki.documentfoundation.org/Emoji
@@ -2217,7 +2215,7 @@ msgctxt ""
"emoji.ulf\n"
"URANUS\n"
"LngText.text"
-msgid "Uranus"
+msgid "uranus"
msgstr ""
#. ♆ (U+02646), see http://wiki.documentfoundation.org/Emoji
@@ -2226,7 +2224,7 @@ msgctxt ""
"emoji.ulf\n"
"NEPTUNE\n"
"LngText.text"
-msgid "Neptune"
+msgid "neptune"
msgstr ""
#. ♇ (U+02647), see http://wiki.documentfoundation.org/Emoji
@@ -2235,7 +2233,7 @@ msgctxt ""
"emoji.ulf\n"
"PLUTO\n"
"LngText.text"
-msgid "Pluto"
+msgid "pluto"
msgstr ""
#. ♈ (U+02648), see http://wiki.documentfoundation.org/Emoji
@@ -2244,7 +2242,7 @@ msgctxt ""
"emoji.ulf\n"
"ARIES\n"
"LngText.text"
-msgid "Aries"
+msgid "aries"
msgstr ""
#. ♉ (U+02649), see http://wiki.documentfoundation.org/Emoji
@@ -2253,7 +2251,7 @@ msgctxt ""
"emoji.ulf\n"
"TAURUS\n"
"LngText.text"
-msgid "Taurus"
+msgid "taurus"
msgstr ""
#. ♊ (U+0264A), see http://wiki.documentfoundation.org/Emoji
@@ -2262,18 +2260,17 @@ msgctxt ""
"emoji.ulf\n"
"GEMINI\n"
"LngText.text"
-msgid "Gemini"
+msgid "gemini"
msgstr ""
#. ♋ (U+0264B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CANCER\n"
"LngText.text"
-msgid "Cancer"
-msgstr "বাতিল"
+msgid "cancer"
+msgstr ""
#. ♌ (U+0264C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2281,7 +2278,7 @@ msgctxt ""
"emoji.ulf\n"
"LEO\n"
"LngText.text"
-msgid "Leo"
+msgid "leo"
msgstr ""
#. ♍ (U+0264D), see http://wiki.documentfoundation.org/Emoji
@@ -2290,7 +2287,7 @@ msgctxt ""
"emoji.ulf\n"
"VIRGO\n"
"LngText.text"
-msgid "Virgo"
+msgid "virgo"
msgstr ""
#. ♎ (U+0264E), see http://wiki.documentfoundation.org/Emoji
@@ -2299,7 +2296,7 @@ msgctxt ""
"emoji.ulf\n"
"LIBRA\n"
"LngText.text"
-msgid "Libra"
+msgid "libra"
msgstr ""
#. ♏ (U+0264F), see http://wiki.documentfoundation.org/Emoji
@@ -2308,7 +2305,7 @@ msgctxt ""
"emoji.ulf\n"
"SCORPIUS\n"
"LngText.text"
-msgid "Scorpius"
+msgid "scorpius"
msgstr ""
#. ♐ (U+02650), see http://wiki.documentfoundation.org/Emoji
@@ -2317,7 +2314,7 @@ msgctxt ""
"emoji.ulf\n"
"SAGITTARIUS\n"
"LngText.text"
-msgid "Sagittarius"
+msgid "sagittarius"
msgstr ""
#. ♑ (U+02651), see http://wiki.documentfoundation.org/Emoji
@@ -2326,7 +2323,7 @@ msgctxt ""
"emoji.ulf\n"
"CAPRICORN\n"
"LngText.text"
-msgid "Capricorn"
+msgid "capricorn"
msgstr ""
#. ♒ (U+02652), see http://wiki.documentfoundation.org/Emoji
@@ -2335,7 +2332,7 @@ msgctxt ""
"emoji.ulf\n"
"AQUARIUS\n"
"LngText.text"
-msgid "Aquarius"
+msgid "aquarius"
msgstr ""
#. ♓ (U+02653), see http://wiki.documentfoundation.org/Emoji
@@ -2344,7 +2341,7 @@ msgctxt ""
"emoji.ulf\n"
"PISCES\n"
"LngText.text"
-msgid "Pisces"
+msgid "pisces"
msgstr ""
#. ♔ (U+02654), see http://wiki.documentfoundation.org/Emoji
@@ -2708,7 +2705,7 @@ msgctxt ""
"emoji.ulf\n"
"WHITE_FLAG\n"
"LngText.text"
-msgid "flag"
+msgid "flag4"
msgstr ""
#. ⚑ (U+02691), see http://wiki.documentfoundation.org/Emoji
@@ -2717,7 +2714,7 @@ msgctxt ""
"emoji.ulf\n"
"BLACK_FLAG\n"
"LngText.text"
-msgid "flag2"
+msgid "flag3"
msgstr ""
#. ⚒ (U+02692), see http://wiki.documentfoundation.org/Emoji
@@ -3027,7 +3024,7 @@ msgctxt ""
"emoji.ulf\n"
"BLACK_CROSS_ON_SHIELD\n"
"LngText.text"
-msgid "shield"
+msgid "shield2"
msgstr ""
#. ⛪ (U+026EA), see http://wiki.documentfoundation.org/Emoji
@@ -3072,7 +3069,7 @@ msgctxt ""
"emoji.ulf\n"
"FLAG_IN_HOLE\n"
"LngText.text"
-msgid "golf"
+msgid "golf2"
msgstr ""
#. ⛴ (U+026F4), see http://wiki.documentfoundation.org/Emoji
@@ -3816,7 +3813,7 @@ msgctxt ""
"emoji.ulf\n"
"FOGGY\n"
"LngText.text"
-msgid "fog"
+msgid "foggy"
msgstr ""
#. 🌂 (U+1F302), see http://wiki.documentfoundation.org/Emoji
@@ -3916,7 +3913,7 @@ msgctxt ""
"emoji.ulf\n"
"MILKY_WAY\n"
"LngText.text"
-msgid "Milky way"
+msgid "milky way"
msgstr ""
#. 🌍 (U+1F30D), see http://wiki.documentfoundation.org/Emoji
@@ -4174,7 +4171,7 @@ msgctxt ""
"emoji.ulf\n"
"CHERRY_BLOSSOM\n"
"LngText.text"
-msgid "cherry blossom"
+msgid "blossom2"
msgstr ""
#. 🌹 (U+1F339), see http://wiki.documentfoundation.org/Emoji
@@ -4410,7 +4407,7 @@ msgctxt ""
"emoji.ulf\n"
"CHERRIES\n"
"LngText.text"
-msgid "cherries"
+msgid "cherry"
msgstr ""
#. 🍓 (U+1F353), see http://wiki.documentfoundation.org/Emoji
@@ -4712,7 +4709,7 @@ msgctxt ""
"emoji.ulf\n"
"COOKING\n"
"LngText.text"
-msgid "egg"
+msgid "cooking"
msgstr ""
#. 🍴 (U+1F374), see http://wiki.documentfoundation.org/Emoji
@@ -4749,7 +4746,7 @@ msgctxt ""
"emoji.ulf\n"
"WINE_GLASS\n"
"LngText.text"
-msgid "wine glass"
+msgid "glass"
msgstr ""
#. 🍸 (U+1F378), see http://wiki.documentfoundation.org/Emoji
@@ -4767,7 +4764,7 @@ msgctxt ""
"emoji.ulf\n"
"TROPICAL_DRINK\n"
"LngText.text"
-msgid "tropical drink"
+msgid "drink2"
msgstr ""
#. 🍺 (U+1F37A), see http://wiki.documentfoundation.org/Emoji
@@ -4803,7 +4800,7 @@ msgctxt ""
"emoji.ulf\n"
"RIBBON\n"
"LngText.text"
-msgid "ribbon"
+msgid "ribbon2"
msgstr ""
#. 🎁 (U+1F381), see http://wiki.documentfoundation.org/Emoji
@@ -4830,7 +4827,7 @@ msgctxt ""
"emoji.ulf\n"
"JACK-O-LANTERN\n"
"LngText.text"
-msgid "Halloween"
+msgid "halloween"
msgstr ""
#. 🎄 (U+1F384), see http://wiki.documentfoundation.org/Emoji
@@ -4839,7 +4836,7 @@ msgctxt ""
"emoji.ulf\n"
"CHRISTMAS_TREE\n"
"LngText.text"
-msgid "Christmas"
+msgid "christmas"
msgstr ""
#. 🎅 (U+1F385), see http://wiki.documentfoundation.org/Emoji
@@ -4848,7 +4845,7 @@ msgctxt ""
"emoji.ulf\n"
"FATHER_CHRISTMAS\n"
"LngText.text"
-msgid "Santa"
+msgid "santa"
msgstr ""
#. 🎆 (U+1F386), see http://wiki.documentfoundation.org/Emoji
@@ -4894,7 +4891,7 @@ msgctxt ""
"emoji.ulf\n"
"CONFETTI_BALL\n"
"LngText.text"
-msgid "confetti ball"
+msgid "party2"
msgstr ""
#. 🎋 (U+1F38B), see http://wiki.documentfoundation.org/Emoji
@@ -4985,7 +4982,7 @@ msgctxt ""
"emoji.ulf\n"
"CAROUSEL_HORSE\n"
"LngText.text"
-msgid "carousel horse"
+msgid "fair2"
msgstr ""
#. 🎡 (U+1F3A1), see http://wiki.documentfoundation.org/Emoji
@@ -4994,7 +4991,7 @@ msgctxt ""
"emoji.ulf\n"
"FERRIS_WHEEL\n"
"LngText.text"
-msgid "ferris wheel"
+msgid "fair"
msgstr ""
#. 🎢 (U+1F3A2), see http://wiki.documentfoundation.org/Emoji
@@ -5075,7 +5072,7 @@ msgctxt ""
"emoji.ulf\n"
"CIRCUS_TENT\n"
"LngText.text"
-msgid "circus tent"
+msgid "circus"
msgstr ""
#. 🎫 (U+1F3AB), see http://wiki.documentfoundation.org/Emoji
@@ -5282,7 +5279,7 @@ msgctxt ""
"emoji.ulf\n"
"CHEQUERED_FLAG\n"
"LngText.text"
-msgid "flag3"
+msgid "race"
msgstr ""
#. 🏂 (U+1F3C2), see http://wiki.documentfoundation.org/Emoji
@@ -5327,7 +5324,7 @@ msgctxt ""
"emoji.ulf\n"
"HORSE_RACING\n"
"LngText.text"
-msgid "horse racing"
+msgid "horse3"
msgstr ""
#. 🏈 (U+1F3C8), see http://wiki.documentfoundation.org/Emoji
@@ -7074,7 +7071,7 @@ msgctxt ""
"emoji.ulf\n"
"MONEY_BAG\n"
"LngText.text"
-msgid "moneybag"
+msgid "money2"
msgstr ""
#. 💱 (U+1F4B1), see http://wiki.documentfoundation.org/Emoji
@@ -7083,7 +7080,7 @@ msgctxt ""
"emoji.ulf\n"
"CURRENCY_EXCHANGE\n"
"LngText.text"
-msgid "currency exchange"
+msgid "exchange"
msgstr ""
#. 💲 (U+1F4B2), see http://wiki.documentfoundation.org/Emoji
@@ -7151,13 +7148,12 @@ msgstr ""
#. 💹 (U+1F4B9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CHART_WITH_UPWARDS_TREND_AND_YEN_SIGN\n"
"LngText.text"
-msgid "chart"
-msgstr "লেখচিত্র"
+msgid "chart4"
+msgstr ""
#. 💺 (U+1F4BA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7248,7 +7244,7 @@ msgctxt ""
"emoji.ulf\n"
"PAGE_WITH_CURL\n"
"LngText.text"
-msgid "page with curl"
+msgid "page3"
msgstr ""
#. 📄 (U+1F4C4), see http://wiki.documentfoundation.org/Emoji
@@ -7257,7 +7253,7 @@ msgctxt ""
"emoji.ulf\n"
"PAGE_FACING_UP\n"
"LngText.text"
-msgid "page facing up"
+msgid "page"
msgstr ""
#. 📅 (U+1F4C5), see http://wiki.documentfoundation.org/Emoji
@@ -7291,13 +7287,12 @@ msgstr ""
#. 📈 (U+1F4C8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CHART_WITH_UPWARDS_TREND\n"
"LngText.text"
-msgid "char"
-msgstr "লেখচিত্র"
+msgid "chart"
+msgstr ""
#. 📉 (U+1F4C9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7414,13 +7409,12 @@ msgstr ""
#. 📕 (U+1F4D5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CLOSED_BOOK\n"
"LngText.text"
-msgid "book"
-msgstr "বই"
+msgid "book2"
+msgstr ""
#. 📖 (U+1F4D6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7428,7 +7422,7 @@ msgctxt ""
"emoji.ulf\n"
"OPEN_BOOK\n"
"LngText.text"
-msgid "book2"
+msgid "book3"
msgstr ""
#. 📚 (U+1F4DA), see http://wiki.documentfoundation.org/Emoji
@@ -7502,7 +7496,7 @@ msgctxt ""
"emoji.ulf\n"
"SATELLITE_ANTENNA\n"
"LngText.text"
-msgid "satellite"
+msgid "antenna"
msgstr ""
#. 📢 (U+1F4E2), see http://wiki.documentfoundation.org/Emoji
@@ -7564,23 +7558,21 @@ msgstr "ইমেইল"
#. 📨 (U+1F4E8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"INCOMING_ENVELOPE\n"
"LngText.text"
-msgid "envelope2"
-msgstr "খাম"
+msgid "envelope7"
+msgstr ""
#. 📩 (U+1F4E9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"ENVELOPE_WITH_DOWNWARDS_ARROW_ABOVE\n"
"LngText.text"
-msgid "envelope3"
-msgstr "খাম"
+msgid "envelope8"
+msgstr ""
#. 📪 (U+1F4EA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8405,7 +8397,7 @@ msgctxt ""
"emoji.ulf\n"
"SMILING_FACE_WITH_OPEN_MOUTH_AND_TIGHTLY-CLOSED_EYES\n"
"LngText.text"
-msgid "laughing"
+msgid "laugh"
msgstr ""
#. 😇 (U+1F607), see http://wiki.documentfoundation.org/Emoji
@@ -8478,7 +8470,7 @@ msgctxt ""
"emoji.ulf\n"
"SMILING_FACE_WITH_SUNGLASSES\n"
"LngText.text"
-msgid "sunglasses"
+msgid "sunglasses2"
msgstr ""
#. 😏 (U+1F60F), see http://wiki.documentfoundation.org/Emoji
@@ -8947,7 +8939,7 @@ msgctxt ""
"emoji.ulf\n"
"FACE_WITH_OK_GESTURE\n"
"LngText.text"
-msgid "ok2"
+msgid "ok3"
msgstr ""
#. 🙇 (U+1F647), see http://wiki.documentfoundation.org/Emoji
@@ -8956,7 +8948,7 @@ msgctxt ""
"emoji.ulf\n"
"PERSON_BOWING_DEEPLY\n"
"LngText.text"
-msgid "bow"
+msgid "prostration"
msgstr ""
#. 🙈 (U+1F648), see http://wiki.documentfoundation.org/Emoji
@@ -9057,7 +9049,7 @@ msgctxt ""
"emoji.ulf\n"
"STEAM_LOCOMOTIVE\n"
"LngText.text"
-msgid "steam locomotive"
+msgid "locomotive"
msgstr ""
#. 🚃 (U+1F683), see http://wiki.documentfoundation.org/Emoji
@@ -9547,7 +9539,7 @@ msgctxt ""
"emoji.ulf\n"
"CHILDREN_CROSSING\n"
"LngText.text"
-msgid "children crossing"
+msgid "crosswalk"
msgstr ""
#. 🚹 (U+1F6B9), see http://wiki.documentfoundation.org/Emoji
@@ -9668,6 +9660,3714 @@ msgctxt ""
msgid "left luggage"
msgstr ""
+#. 🕃 (U+1F543), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTCHED_LEFT_SEMICIRCLE_WITH_THREE_DOTS\n"
+"LngText.text"
+msgid "feast"
+msgstr ""
+
+#. 🙂 (U+1F642), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLIGHTLY_SMILING_FACE\n"
+"LngText.text"
+msgid "smiling3"
+msgstr ""
+
+#. 🙁 (U+1F641), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLIGHTLY_FROWNING_FACE\n"
+"LngText.text"
+msgid "frowning2"
+msgstr ""
+
+#. 🕵 (U+1F575), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLEUTH_OR_SPY\n"
+"LngText.text"
+msgid "detective"
+msgstr ""
+
+#. 🛌 (U+1F6CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLEEPING_ACCOMMODATION\n"
+"LngText.text"
+msgid "sleep"
+msgstr ""
+
+#. 🕴 (U+1F574), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_IN_BUSINESS_SUIT_LEVITATING\n"
+"LngText.text"
+msgid "suit"
+msgstr ""
+
+#. 🗣 (U+1F5E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPEAKING_HEAD_IN_SILHOUETTE\n"
+"LngText.text"
+msgid "head"
+msgstr ""
+
+#. 🏌 (U+1F3CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GOLFER\n"
+"LngText.text"
+msgid "golf"
+msgstr ""
+
+#. 🏋 (U+1F3CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WEIGHT_LIFTER\n"
+"LngText.text"
+msgid "weight lifter"
+msgstr ""
+
+#. 🏎 (U+1F3CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RACING_CAR\n"
+"LngText.text"
+msgid "car4"
+msgstr ""
+
+#. 🏍 (U+1F3CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RACING_MOTORCYCLE\n"
+"LngText.text"
+msgid "motorcycle"
+msgstr ""
+
+#. 🖕 (U+1F595), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_HAND_WITH_MIDDLE_FINGER_EXTENDED\n"
+"LngText.text"
+msgid "finger"
+msgstr ""
+
+#. 🖖 (U+1F596), Mr. Spock's Vulcan salute from Star Trek, see also http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_HAND_WITH_PART_BETWEEN_MIDDLE_AND_RING_FINGERS\n"
+"LngText.text"
+msgid "spock"
+msgstr ""
+
+#. 🖐 (U+1F590), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_HAND_WITH_FINGERS_SPLAYED\n"
+"LngText.text"
+msgid "hand2"
+msgstr ""
+
+#. 👁 (U+1F441), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EYE\n"
+"LngText.text"
+msgid "eye"
+msgstr ""
+
+#. 🗨 (U+1F5E8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_SPEECH_BUBBLE\n"
+"LngText.text"
+msgid "bubble"
+msgstr ""
+
+#. 🗯 (U+1F5EF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_ANGER_BUBBLE\n"
+"LngText.text"
+msgid "bubble4"
+msgstr ""
+
+#. 🕳 (U+1F573), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOLE\n"
+"LngText.text"
+msgid "hole"
+msgstr ""
+
+#. 🕶 (U+1F576), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DARK_SUNGLASSES\n"
+"LngText.text"
+msgid "sunglasses"
+msgstr ""
+
+#. 🛍 (U+1F6CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOPPING_BAGS\n"
+"LngText.text"
+msgid "shop"
+msgstr ""
+
+#. 🐿 (U+1F43F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHIPMUNK\n"
+"LngText.text"
+msgid "chipmunk"
+msgstr ""
+
+#. 🕊 (U+1F54A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOVE_OF_PEACE\n"
+"LngText.text"
+msgid "dove"
+msgstr ""
+
+#. 🕷 (U+1F577), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIDER\n"
+"LngText.text"
+msgid "spider"
+msgstr ""
+
+#. 🕸 (U+1F578), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIDER_WEB\n"
+"LngText.text"
+msgid "web"
+msgstr ""
+
+#. 🏵 (U+1F3F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROSETTE\n"
+"LngText.text"
+msgid "rosette"
+msgstr ""
+
+#. 🌶 (U+1F336), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOT_PEPPER\n"
+"LngText.text"
+msgid "pepper"
+msgstr ""
+
+#. 🍽 (U+1F37D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FORK_AND_KNIFE_WITH_PLATE\n"
+"LngText.text"
+msgid "plate"
+msgstr ""
+
+#. 🗺 (U+1F5FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WORLD_MAP\n"
+"LngText.text"
+msgid "map"
+msgstr ""
+
+#. 🏔 (U+1F3D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SNOW_CAPPED_MOUNTAIN\n"
+"LngText.text"
+msgid "mountain2"
+msgstr ""
+
+#. 🏕 (U+1F3D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CAMPING\n"
+"LngText.text"
+msgid "camping"
+msgstr ""
+
+#. 🏖 (U+1F3D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEACH_WITH_UMBRELLA\n"
+"LngText.text"
+msgid "beach"
+msgstr ""
+
+#. 🏜 (U+1F3DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESERT\n"
+"LngText.text"
+msgid "desert"
+msgstr ""
+
+#. 🏝 (U+1F3DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESERT_ISLAND\n"
+"LngText.text"
+msgid "island"
+msgstr ""
+
+#. 🏞 (U+1F3DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NATIONAL_PARK\n"
+"LngText.text"
+msgid "park"
+msgstr ""
+
+#. 🏟 (U+1F3DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STADIUM\n"
+"LngText.text"
+msgid "stadium"
+msgstr ""
+
+#. 🏛 (U+1F3DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLASSICAL_BUILDING\n"
+"LngText.text"
+msgid "museum"
+msgstr ""
+
+#. 🏗 (U+1F3D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BUILDING_CONSTRUCTION\n"
+"LngText.text"
+msgid "crane"
+msgstr ""
+
+#. 🏘 (U+1F3D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOUSE_BUILDINGS\n"
+"LngText.text"
+msgid "houses"
+msgstr ""
+
+#. 🏚 (U+1F3DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DERELICT_HOUSE_BUILDING\n"
+"LngText.text"
+msgid "house3"
+msgstr ""
+
+#. 🏙 (U+1F3D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CITYSCAPE\n"
+"LngText.text"
+msgid "city"
+msgstr ""
+
+#. 🛣 (U+1F6E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTORWAY\n"
+"LngText.text"
+msgid "motorway"
+msgstr ""
+
+#. 🛤 (U+1F6E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAILWAY_TRACK\n"
+"LngText.text"
+msgid "track"
+msgstr ""
+
+#. 🛢 (U+1F6E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OIL_DRUM\n"
+"LngText.text"
+msgid "drum"
+msgstr ""
+
+#. 🛳 (U+1F6F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PASSENGER_SHIP\n"
+"LngText.text"
+msgid "ship2"
+msgstr ""
+
+#. 🛥 (U+1F6E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTOR_BOAT\n"
+"LngText.text"
+msgid "motor boat"
+msgstr ""
+
+#. 🛩 (U+1F6E9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SMALL_AIRPLANE\n"
+"LngText.text"
+msgid "airplane2"
+msgstr ""
+
+#. 🛫 (U+1F6EB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AIRPLANE_DEPARTURE\n"
+"LngText.text"
+msgid "departure"
+msgstr ""
+
+#. 🛬 (U+1F6EC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AIRPLANE_ARRIVING\n"
+"LngText.text"
+msgid "arrival"
+msgstr ""
+
+#. 🛰 (U+1F6F0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SATELLITE\n"
+"LngText.text"
+msgid "satellite"
+msgstr ""
+
+#. 🛎 (U+1F6CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BELLHOP_BELL\n"
+"LngText.text"
+msgid "bell2"
+msgstr ""
+
+#. 🕰 (U+1F570), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MANTELPIECE_CLOCK\n"
+"LngText.text"
+msgid "clock"
+msgstr ""
+
+#. 🌡 (U+1F321), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THERMOMETER\n"
+"LngText.text"
+msgid "thermometer"
+msgstr ""
+
+#. 🌤 (U+1F324), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_WITH_SMALL_CLOUD\n"
+"LngText.text"
+msgid "cloudy"
+msgstr ""
+
+#. 🌥 (U+1F325), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_BEHIND_CLOUD\n"
+"LngText.text"
+msgid "cloudy2"
+msgstr ""
+
+#. 🌦 (U+1F326), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN_BEHIND_CLOUD_WITH_RAIN\n"
+"LngText.text"
+msgid "rainy"
+msgstr ""
+
+#. 🌧 (U+1F327), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_RAIN\n"
+"LngText.text"
+msgid "storm"
+msgstr ""
+
+#. 🌨 (U+1F328), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_SNOW\n"
+"LngText.text"
+msgid "snow"
+msgstr ""
+
+#. 🌩 (U+1F329), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_LIGHTNING\n"
+"LngText.text"
+msgid "lightning"
+msgstr ""
+
+#. 🌪 (U+1F32A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOUD_WITH_TORNADO\n"
+"LngText.text"
+msgid "tornado"
+msgstr ""
+
+#. 🌫 (U+1F32B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOG\n"
+"LngText.text"
+msgid "fog"
+msgstr ""
+
+#. 🌬 (U+1F32C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WIND_BLOWING_FACE\n"
+"LngText.text"
+msgid "wind"
+msgstr ""
+
+#. 🎗 (U+1F397), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REMINDER_RIBBON\n"
+"LngText.text"
+msgid "ribbon"
+msgstr ""
+
+#. 🎟 (U+1F39F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ADMISSION_TICKETS\n"
+"LngText.text"
+msgid "ticket2"
+msgstr ""
+
+#. 🎖 (U+1F396), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MILITARY_MEDAL\n"
+"LngText.text"
+msgid "medal2"
+msgstr ""
+
+#. 🏅 (U+1F3C5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPORTS_MEDAL\n"
+"LngText.text"
+msgid "medal"
+msgstr ""
+
+#. 🕹 (U+1F579), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"JOYSTICK\n"
+"LngText.text"
+msgid "joystick"
+msgstr ""
+
+#. 🖼 (U+1F5BC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_PICTURE\n"
+"LngText.text"
+msgid "picture"
+msgstr ""
+
+#. 🎙 (U+1F399), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STUDIO_MICROPHONE\n"
+"LngText.text"
+msgid "microphone2"
+msgstr ""
+
+#. 🎚 (U+1F39A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEVEL_SLIDER\n"
+"LngText.text"
+msgid "slider"
+msgstr ""
+
+#. 🎛 (U+1F39B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CONTROL_KNOBS\n"
+"LngText.text"
+msgid "control"
+msgstr ""
+
+#. 🖥 (U+1F5A5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESKTOP_COMPUTER\n"
+"LngText.text"
+msgid "computer2"
+msgstr ""
+
+#. 🖨 (U+1F5A8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINTER\n"
+"LngText.text"
+msgid "printer"
+msgstr ""
+
+#. 🖱 (U+1F5B1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse3"
+msgstr ""
+
+#. 🖲 (U+1F5B2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TRACKBALL\n"
+"LngText.text"
+msgid "trackball"
+msgstr ""
+
+#. 🎞 (U+1F39E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILM_FRAMES\n"
+"LngText.text"
+msgid "film"
+msgstr ""
+
+#. 📽 (U+1F4FD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILM_PROJECTOR\n"
+"LngText.text"
+msgid "projector"
+msgstr ""
+
+#. 📸 (U+1F4F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CAMERA_WITH_FLASH\n"
+"LngText.text"
+msgid "flash"
+msgstr ""
+
+#. 🕯 (U+1F56F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANDLE\n"
+"LngText.text"
+msgid "candle"
+msgstr ""
+
+#. 🗞 (U+1F5DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROLLED-UP_NEWSPAPER\n"
+"LngText.text"
+msgid "newspaper2"
+msgstr ""
+
+#. 🏷 (U+1F3F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LABEL\n"
+"LngText.text"
+msgid "label"
+msgstr ""
+
+#. 🗳 (U+1F5F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BALLOT\n"
+"LngText.text"
+msgid "ballot"
+msgstr ""
+
+#. 🖋 (U+1F58B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_FOUNTAIN_PEN\n"
+"LngText.text"
+msgid "pen2"
+msgstr ""
+
+#. 🖊 (U+1F58A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_BALLPOINT_PEN\n"
+"LngText.text"
+msgid "pen"
+msgstr ""
+
+#. 🖌 (U+1F58C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_PAINTBRUSH\n"
+"LngText.text"
+msgid "paintbrush"
+msgstr ""
+
+#. 🖍 (U+1F58D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_CRAYON\n"
+"LngText.text"
+msgid "crayon"
+msgstr ""
+
+#. 🗂 (U+1F5C2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARD_INDEX_DIVIDERS\n"
+"LngText.text"
+msgid "index"
+msgstr ""
+
+#. 🗒 (U+1F5D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIRAL_NOTE_PAD\n"
+"LngText.text"
+msgid "notepad"
+msgstr ""
+
+#. 🗓 (U+1F5D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPIRAL_CALENDAR_PAD\n"
+"LngText.text"
+msgid "calendar3"
+msgstr ""
+
+#. 🖇 (U+1F587), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LINKED_PAPERCLIPS\n"
+"LngText.text"
+msgid "paperclip2"
+msgstr ""
+
+#. 🗃 (U+1F5C3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARD_FILE_BOX\n"
+"LngText.text"
+msgid "box"
+msgstr ""
+
+#. 🗄 (U+1F5C4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FILE_CABINET\n"
+"LngText.text"
+msgid "cabinet"
+msgstr ""
+
+#. 🗑 (U+1F5D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WASTEBASKET\n"
+"LngText.text"
+msgid "wastebasket"
+msgstr ""
+
+#. 🗝 (U+1F5DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLD_KEY\n"
+"LngText.text"
+msgid "key2"
+msgstr ""
+
+#. 🛠 (U+1F6E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HAMMER_AND_WRENCH\n"
+"LngText.text"
+msgid "hammer and wrench"
+msgstr ""
+
+#. 🗡 (U+1F5E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DAGGER_KNIFE\n"
+"LngText.text"
+msgid "knife2"
+msgstr ""
+
+#. 🛡 (U+1F6E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHIELD\n"
+"LngText.text"
+msgid "shield"
+msgstr ""
+
+#. 🗜 (U+1F5DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COMPRESSION\n"
+"LngText.text"
+msgid "clamp"
+msgstr ""
+
+#. 🛏 (U+1F6CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BED\n"
+"LngText.text"
+msgid "bed"
+msgstr ""
+
+#. 🛋 (U+1F6CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COUCH_AND_LAMP\n"
+"LngText.text"
+msgid "couch"
+msgstr ""
+
+#. 🕉 (U+1F549), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OM_SYMBOL\n"
+"LngText.text"
+msgid "om"
+msgstr ""
+
+#. ⏸ (U+23F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOUBLE_VERTICAL_BAR\n"
+"LngText.text"
+msgid "pause"
+msgstr ""
+
+#. ⏹ (U+23F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_SQUARE_FOR_STOP\n"
+"LngText.text"
+msgid "stop2"
+msgstr ""
+
+#. ⏺ (U+23FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_CIRCLE_FOR_RECORD\n"
+"LngText.text"
+msgid "record"
+msgstr ""
+
+#. 🏴 (U+1F3F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WAVING_BLACK_FLAG\n"
+"LngText.text"
+msgid "flag"
+msgstr ""
+
+#. 🏳 (U+1F3F3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WAVING_WHITE_FLAG\n"
+"LngText.text"
+msgid "flag2"
+msgstr ""
+
+#. 🗷 (U+1F5F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BOLD_SCRIPT_X\n"
+"LngText.text"
+msgid "checkbox4"
+msgstr ""
+
+#. 🛉 (U+1F6C9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOYS_SYMBOL\n"
+"LngText.text"
+msgid "boys"
+msgstr ""
+
+#. 🛈 (U+1F6C8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CIRCLED_INFORMATION_SOURCE\n"
+"LngText.text"
+msgid "information3"
+msgstr ""
+
+#. 🛊 (U+1F6CA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GIRLS_SYMBOL\n"
+"LngText.text"
+msgid "girls"
+msgstr ""
+
+#. 🛨 (U+1F6E8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_SMALL_AIRPLANE\n"
+"LngText.text"
+msgid "airplane4"
+msgstr ""
+
+#. 🛲 (U+1F6F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DIESEL_LOCOMOTIVE\n"
+"LngText.text"
+msgid "locomotive2"
+msgstr ""
+
+#. 🛧 (U+1F6E7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_AIRPLANE\n"
+"LngText.text"
+msgid "airplane3"
+msgstr ""
+
+#. 🛱 (U+1F6F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ONCOMING_FIRE_ENGINE\n"
+"LngText.text"
+msgid "fire engine2"
+msgstr ""
+
+#. 🛦 (U+1F6E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UP-POINTING_MILITARY_AIRPLANE\n"
+"LngText.text"
+msgid "airplane5"
+msgstr ""
+
+#. 🛪 (U+1F6EA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NORTHEAST-POINTING_AIRPLANE\n"
+"LngText.text"
+msgid "airplane6"
+msgstr ""
+
+#. 🗭 (U+1F5ED), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_THOUGHT_BUBBLE\n"
+"LngText.text"
+msgid "bubble5"
+msgstr ""
+
+#. 🗱 (U+1F5F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHTNING_MOOD_BUBBLE\n"
+"LngText.text"
+msgid "bubble6"
+msgstr ""
+
+#. 🗬 (U+1F5EC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_THOUGHT_BUBBLE\n"
+"LngText.text"
+msgid "bubble7"
+msgstr ""
+
+#. 🗠 (U+1F5E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STOCK_CHART\n"
+"LngText.text"
+msgid "chart5"
+msgstr ""
+
+#. 🗟 (U+1F5DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGE_WITH_CIRCLED_TEXT\n"
+"LngText.text"
+msgid "page4"
+msgstr ""
+
+#. 🖎 (U+1F58E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_WRITING_HAND\n"
+"LngText.text"
+msgid "writing2"
+msgstr ""
+
+#. 🗦 (U+1F5E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_LEFT\n"
+"LngText.text"
+msgid "rays"
+msgstr ""
+
+#. 🎝 (U+1F39D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEAMED_DESCENDING_MUSICAL_NOTES\n"
+"LngText.text"
+msgid "notes3"
+msgstr ""
+
+#. 🔾 (U+1F53E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_RIGHT_SHADOWED_WHITE_CIRCLE\n"
+"LngText.text"
+msgid "circle3"
+msgstr ""
+
+#. 🎜 (U+1F39C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEAMED_ASCENDING_MUSICAL_NOTES\n"
+"LngText.text"
+msgid "notes4"
+msgstr ""
+
+#. 🕮 (U+1F56E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOOK\n"
+"LngText.text"
+msgid "book"
+msgstr ""
+
+#. 🗛 (U+1F5DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DECREASE_FONT_SIZE_SYMBOL\n"
+"LngText.text"
+msgid "font"
+msgstr ""
+
+#. 🔿 (U+1F53F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UPPER_RIGHT_SHADOWED_WHITE_CIRCLE\n"
+"LngText.text"
+msgid "circle4"
+msgstr ""
+
+#. 🕫 (U+1F56B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BULLHORN\n"
+"LngText.text"
+msgid "bullhorn"
+msgstr ""
+
+#. 🕬 (U+1F56C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BULLHORN_WITH_SOUND_WAVES\n"
+"LngText.text"
+msgid "bullhorn2"
+msgstr ""
+
+#. 🕻 (U+1F57B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_HAND_TELEPHONE_RECEIVER\n"
+"LngText.text"
+msgid "receiver2"
+msgstr ""
+
+#. 🕾 (U+1F57E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_TOUCHTONE_TELEPHONE\n"
+"LngText.text"
+msgid "phone3"
+msgstr ""
+
+#. 🕼 (U+1F57C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TELEPHONE_RECEIVER_WITH_PAGE\n"
+"LngText.text"
+msgid "receiver4"
+msgstr ""
+
+#. 🕽 (U+1F57D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_HAND_TELEPHONE_RECEIVER\n"
+"LngText.text"
+msgid "receiver3"
+msgstr ""
+
+#. 🕿 (U+1F57F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_TOUCHTONE_TELEPHONE\n"
+"LngText.text"
+msgid "phone4"
+msgstr ""
+
+#. 🖚 (U+1F59A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_LEFT_POINTING_INDEX\n"
+"LngText.text"
+msgid "left4"
+msgstr ""
+
+#. 🖏 (U+1F58F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TURNED_OK_HAND_SIGN\n"
+"LngText.text"
+msgid "ok2"
+msgstr ""
+
+#. 🖜 (U+1F59C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_LEFT_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "left5"
+msgstr ""
+
+#. 🗥 (U+1F5E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_BELOW\n"
+"LngText.text"
+msgid "rays2"
+msgstr ""
+
+#. 🖛 (U+1F59B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_RIGHT_POINTING_INDEX\n"
+"LngText.text"
+msgid "right4"
+msgstr ""
+
+#. 🖟 (U+1F59F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_DOWN_POINTING_INDEX\n"
+"LngText.text"
+msgid "down3"
+msgstr ""
+
+#. 🖞 (U+1F59E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_UP_POINTING_INDEX\n"
+"LngText.text"
+msgid "up3"
+msgstr ""
+
+#. 🌢 (U+1F322), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_DROPLET\n"
+"LngText.text"
+msgid "droplet2"
+msgstr ""
+
+#. 🎘 (U+1F398), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MUSICAL_KEYBOARD_WITH_JACKS\n"
+"LngText.text"
+msgid "synthesizer"
+msgstr ""
+
+#. 🎕 (U+1F395), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOUQUET_OF_FLOWERS\n"
+"LngText.text"
+msgid "bouquet2"
+msgstr ""
+
+#. 🎔 (U+1F394), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEART_WITH_TIP_ON_THE_LEFT\n"
+"LngText.text"
+msgid "heart2"
+msgstr ""
+
+#. 🕱 (U+1F571), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_SKULL_AND_CROSSBONES\n"
+"LngText.text"
+msgid "pirate"
+msgstr ""
+
+#. 🖀 (U+1F580), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TELEPHONE_ON_TOP_OF_MODEM\n"
+"LngText.text"
+msgid "modem"
+msgstr ""
+
+#. 🕲 (U+1F572), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NO_PIRACY\n"
+"LngText.text"
+msgid "no piracy"
+msgstr ""
+
+#. 🕅 (U+1F545), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SYMBOL_FOR_MARKS_CHAPTER\n"
+"LngText.text"
+msgid "marks chapter"
+msgstr ""
+
+#. 🕈 (U+1F548), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CELTIC_CROSS\n"
+"LngText.text"
+msgid "Celtic cross"
+msgstr ""
+
+#. 🖗 (U+1F597), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_DOWN_POINTING_LEFT_HAND_INDEX\n"
+"LngText.text"
+msgid "down4"
+msgstr ""
+
+#. 🖆 (U+1F586), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEN_OVER_STAMPED_ENVELOPE\n"
+"LngText.text"
+msgid "envelope4"
+msgstr ""
+
+#. 🖃 (U+1F583), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STAMPED_ENVELOPE\n"
+"LngText.text"
+msgid "envelope2"
+msgstr ""
+
+#. 🗤 (U+1F5E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_ABOVE\n"
+"LngText.text"
+msgid "rays3"
+msgstr ""
+
+#. 🖉 (U+1F589), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LOWER_LEFT_PENCIL\n"
+"LngText.text"
+msgid "pencil4"
+msgstr ""
+
+#. 🖂 (U+1F582), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BACK_OF_ENVELOPE\n"
+"LngText.text"
+msgid "envelope3"
+msgstr ""
+
+#. 🖈 (U+1F588), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_PUSHPIN\n"
+"LngText.text"
+msgid "tack"
+msgstr ""
+
+#. 🖄 (U+1F584), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ENVELOPE_WITH_LIGHTNING\n"
+"LngText.text"
+msgid "envelope5"
+msgstr ""
+
+#. 🖁 (U+1F581), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLAMSHELL_MOBILE_PHONE\n"
+"LngText.text"
+msgid "mobile2"
+msgstr ""
+
+#. 🖅 (U+1F585), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FLYING_ENVELOPE\n"
+"LngText.text"
+msgid "envelope6"
+msgstr ""
+
+#. 🖘 (U+1F598), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_LEFT_POINTING_INDEX\n"
+"LngText.text"
+msgid "left6"
+msgstr ""
+
+#. 🖙 (U+1F599), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_WHITE_RIGHT_POINTING_INDEX\n"
+"LngText.text"
+msgid "right5"
+msgstr ""
+
+#. 🗖 (U+1F5D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAXIMIZE\n"
+"LngText.text"
+msgid "maximize"
+msgstr ""
+
+#. 🗗 (U+1F5D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OVERLAP\n"
+"LngText.text"
+msgid "overlap"
+msgstr ""
+
+#. 🗏 (U+1F5CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGE\n"
+"LngText.text"
+msgid "page2"
+msgstr ""
+
+#. 🗐 (U+1F5D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PAGES\n"
+"LngText.text"
+msgid "pages"
+msgstr ""
+
+#. 🗘 (U+1F5D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOCKWISE_RIGHT_AND_LEFT_SEMICIRCLE_ARROWS\n"
+"LngText.text"
+msgid "arrows"
+msgstr ""
+
+#. 🗚 (U+1F5DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"INCREASE_FONT_SIZE_SYMBOL\n"
+"LngText.text"
+msgid "font2"
+msgstr ""
+
+#. 🗕 (U+1F5D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MINIMIZE\n"
+"LngText.text"
+msgid "minimize"
+msgstr ""
+
+#. 🗙 (U+1F5D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANCELLATION_X\n"
+"LngText.text"
+msgid "cancel"
+msgstr ""
+
+#. 🗔 (U+1F5D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DESKTOP_WINDOW\n"
+"LngText.text"
+msgid "window"
+msgstr ""
+
+#. 🗌 (U+1F5CC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_PAGE\n"
+"LngText.text"
+msgid "empty page"
+msgstr ""
+
+#. 🗋 (U+1F5CB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_DOCUMENT\n"
+"LngText.text"
+msgid "empty document"
+msgstr ""
+
+#. 🗍 (U+1F5CD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_PAGES\n"
+"LngText.text"
+msgid "empty pages"
+msgstr ""
+
+#. 🗎 (U+1F5CE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT\n"
+"LngText.text"
+msgid "document"
+msgstr ""
+
+#. 🗆 (U+1F5C6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE_PAGE\n"
+"LngText.text"
+msgid "empty note page"
+msgstr ""
+
+#. 🗊 (U+1F5CA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE_PAD\n"
+"LngText.text"
+msgid "note pad"
+msgstr ""
+
+#. 🗈 (U+1F5C8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE\n"
+"LngText.text"
+msgid "note3"
+msgstr ""
+
+#. 🗇 (U+1F5C7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE_PAD\n"
+"LngText.text"
+msgid "empty note pad"
+msgstr ""
+
+#. 🗉 (U+1F5C9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTE_PAGE\n"
+"LngText.text"
+msgid "note page"
+msgstr ""
+
+#. 🖸 (U+1F5B8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OPTICAL_DISC_ICON\n"
+"LngText.text"
+msgid "optical disc"
+msgstr ""
+
+#. 🗀 (U+1F5C0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOLDER\n"
+"LngText.text"
+msgid "folder3"
+msgstr ""
+
+#. 🖝 (U+1F59D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_RIGHT_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "right6"
+msgstr ""
+
+#. 🗁 (U+1F5C1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OPEN_FOLDER\n"
+"LngText.text"
+msgid "folder4"
+msgstr ""
+
+#. 🗅 (U+1F5C5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMPTY_NOTE\n"
+"LngText.text"
+msgid "empty note"
+msgstr ""
+
+#. 🖿 (U+1F5BF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_FOLDER\n"
+"LngText.text"
+msgid "folder5"
+msgstr ""
+
+#. 🖾 (U+1F5BE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_AN_X\n"
+"LngText.text"
+msgid "frame"
+msgstr ""
+
+#. 🖽 (U+1F5BD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FRAME_WITH_TILES\n"
+"LngText.text"
+msgid "frame2"
+msgstr ""
+
+#. 🖹 (U+1F5B9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_TEXT\n"
+"LngText.text"
+msgid "document2"
+msgstr ""
+
+#. 🖻 (U+1F5BB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_PICTURE\n"
+"LngText.text"
+msgid "document3"
+msgstr ""
+
+#. 🖺 (U+1F5BA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DOCUMENT_WITH_TEXT_AND_PICTURE\n"
+"LngText.text"
+msgid "document4"
+msgstr ""
+
+#. 🖶 (U+1F5B6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINTER_ICON\n"
+"LngText.text"
+msgid "printer2"
+msgstr ""
+
+#. 🖷 (U+1F5B7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FAX_ICON\n"
+"LngText.text"
+msgid "fax2"
+msgstr ""
+
+#. 🖰 (U+1F5B0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TWO_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse4"
+msgstr ""
+
+#. 🖳 (U+1F5B3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLD_PERSONAL_COMPUTER\n"
+"LngText.text"
+msgid "pc"
+msgstr ""
+
+#. 🖵 (U+1F5B5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCREEN\n"
+"LngText.text"
+msgid "screen"
+msgstr ""
+
+#. 🖯 (U+1F5AF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ONE_BUTTON_MOUSE\n"
+"LngText.text"
+msgid "mouse5"
+msgstr ""
+
+#. 🖴 (U+1F5B4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HARD_DISK\n"
+"LngText.text"
+msgid "hard disk"
+msgstr ""
+
+#. 🖩 (U+1F5A9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POCKET_CALCULATOR\n"
+"LngText.text"
+msgid "calculator"
+msgstr ""
+
+#. 🖭 (U+1F5AD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TAPE_CARTRIDGE\n"
+"LngText.text"
+msgid "cartridge"
+msgstr ""
+
+#. 🖬 (U+1F5AC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SOFT_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy2"
+msgstr ""
+
+#. 🖫 (U+1F5AB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_HARD_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy3"
+msgstr ""
+
+#. 🖮 (U+1F5AE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WIRED_KEYBOARD\n"
+"LngText.text"
+msgid "keyboard2"
+msgstr ""
+
+#. 🖔 (U+1F594), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_VICTORY_HAND\n"
+"LngText.text"
+msgid "victory2"
+msgstr ""
+
+#. 🖧 (U+1F5A7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_NETWORKED_COMPUTERS\n"
+"LngText.text"
+msgid "network"
+msgstr ""
+
+#. 🖪 (U+1F5AA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_HARD_SHELL_FLOPPY_DISK\n"
+"LngText.text"
+msgid "floppy4"
+msgstr ""
+
+#. 🗢 (U+1F5E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIPS\n"
+"LngText.text"
+msgid "lips"
+msgstr ""
+
+#. 🖦 (U+1F5A6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KEYBOARD_AND_MOUSE\n"
+"LngText.text"
+msgid "keyboard3"
+msgstr ""
+
+#. 🖣 (U+1F5A3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_DOWN_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "down5"
+msgstr ""
+
+#. 🖡 (U+1F5A1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_DOWN_POINTING_INDEX\n"
+"LngText.text"
+msgid "down6"
+msgstr ""
+
+#. 📾 (U+1F4FE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PORTABLE_STEREO\n"
+"LngText.text"
+msgid "stereo"
+msgstr ""
+
+#. 🏶 (U+1F3F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_ROSETTE\n"
+"LngText.text"
+msgid "rosette2"
+msgstr ""
+
+#. 🏲 (U+1F3F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_PENNANT\n"
+"LngText.text"
+msgid "pennant"
+msgstr ""
+
+#. 🖠 (U+1F5A0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIDEWAYS_BLACK_UP_POINTING_INDEX\n"
+"LngText.text"
+msgid "up4"
+msgstr ""
+
+#. 🖢 (U+1F5A2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_UP_POINTING_BACKHAND_INDEX\n"
+"LngText.text"
+msgid "up5"
+msgstr ""
+
+#. 🏱 (U+1F3F1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_PENNANT\n"
+"LngText.text"
+msgid "pennant2"
+msgstr ""
+
+#. 🕄 (U+1F544), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NOTCHED_RIGHT_SEMICIRCLE_WITH_THREE_DOTS\n"
+"LngText.text"
+msgid "feast2"
+msgstr ""
+
+#. 🖓 (U+1F593), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_THUMBS_DOWN_SIGN\n"
+"LngText.text"
+msgid "no2"
+msgstr ""
+
+#. 🖑 (U+1F591), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_RAISED_HAND_WITH_FINGERS_SPLAYED\n"
+"LngText.text"
+msgid "hand3"
+msgstr ""
+
+#. 🖒 (U+1F592), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"REVERSED_THUMBS_UP_SIGN\n"
+"LngText.text"
+msgid "yes2"
+msgstr ""
+
+#. 🕩 (U+1F569), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER_WITH_ONE_SOUND_WAVE\n"
+"LngText.text"
+msgid "speaker2"
+msgstr ""
+
+#. 🕆 (U+1F546), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_LATIN_CROSS\n"
+"LngText.text"
+msgid "Latin cross2"
+msgstr ""
+
+#. 🕇 (U+1F547), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEAVY_LATIN_CROSS\n"
+"LngText.text"
+msgid "Latin cross3"
+msgstr ""
+
+#. 🕨 (U+1F568), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER\n"
+"LngText.text"
+msgid "speaker3"
+msgstr ""
+
+#. 🕭 (U+1F56D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RINGING_BELL\n"
+"LngText.text"
+msgid "bell3"
+msgstr ""
+
+#. 🌣 (U+1F323), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WHITE_SUN\n"
+"LngText.text"
+msgid "sun2"
+msgstr ""
+
+#. 🛇 (U+1F6C7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PROHIBITED_SIGN\n"
+"LngText.text"
+msgid "prohibited"
+msgstr ""
+
+#. 🛆 (U+1F6C6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TRIANGLE_WITH_ROUNDED_CORNERS\n"
+"LngText.text"
+msgid "triangle3"
+msgstr ""
+
+#. 🗫 (U+1F5EB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_SPEECH_BUBBLES\n"
+"LngText.text"
+msgid "bubble3"
+msgstr ""
+
+#. 🕪 (U+1F56A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEAKER_WITH_THREE_SOUND_WAVES\n"
+"LngText.text"
+msgid "speaker4"
+msgstr ""
+
+#. 🗮 (U+1F5EE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT_ANGER_BUBBLE\n"
+"LngText.text"
+msgid "bubble8"
+msgstr ""
+
+#. 🗧 (U+1F5E7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THREE_RAYS_RIGHT\n"
+"LngText.text"
+msgid "rays4"
+msgstr ""
+
+#. 🗲 (U+1F5F2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHTNING_MOOD\n"
+"LngText.text"
+msgid "lightning2"
+msgstr ""
+
+#. 🗰 (U+1F5F0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOOD_BUBBLE\n"
+"LngText.text"
+msgid "bubble9"
+msgstr ""
+
+#. 🗹 (U+1F5F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_BOLD_CHECK\n"
+"LngText.text"
+msgid "checkbox5"
+msgstr ""
+
+#. 🗴 (U+1F5F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_SCRIPT_X\n"
+"LngText.text"
+msgid "check mark4"
+msgstr ""
+
+#. 🗪 (U+1F5EA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TWO_SPEECH_BUBBLES\n"
+"LngText.text"
+msgid "bubble2"
+msgstr ""
+
+#. 🗶 (U+1F5F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOLD_SCRIPT_X\n"
+"LngText.text"
+msgid "x4"
+msgstr ""
+
+#. 🗩 (U+1F5E9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT_SPEECH_BUBBLE\n"
+"LngText.text"
+msgid "bubble10"
+msgstr ""
+
+#. 🗵 (U+1F5F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BALLOT_BOX_WITH_SCRIPT_X\n"
+"LngText.text"
+msgid "checkbox6"
+msgstr ""
+
+#. 🗸 (U+1F5F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIGHT_CHECK_MARK\n"
+"LngText.text"
+msgid "check mark5"
+msgstr ""
+
+#. 🤗 (U+1F917), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HUGGING_FACE\n"
+"LngText.text"
+msgid "hugging"
+msgstr ""
+
+#. 🤔 (U+1F914), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"THINKING_FACE\n"
+"LngText.text"
+msgid "thinking"
+msgstr ""
+
+#. 🙄 (U+1F644), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_ROLLING_EYES\n"
+"LngText.text"
+msgid "eye roll"
+msgstr ""
+
+#. 🤐 (U+1F910), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZIPPER-MOUTH_FACE\n"
+"LngText.text"
+msgid "zipper"
+msgstr ""
+
+#. 🙃 (U+1F643), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UPSIDE-DOWN_FACE\n"
+"LngText.text"
+msgid "upside-down"
+msgstr ""
+
+#. 🤑 (U+1F911), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MONEY-MOUTH_FACE\n"
+"LngText.text"
+msgid "money3"
+msgstr ""
+
+#. 🤒 (U+1F912), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_THERMOMETER\n"
+"LngText.text"
+msgid "thermometer2"
+msgstr ""
+
+#. 🤕 (U+1F915), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_HEAD-BANDAGE\n"
+"LngText.text"
+msgid "bandage"
+msgstr ""
+
+#. 🤓 (U+1F913), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NERD_FACE\n"
+"LngText.text"
+msgid "nerd"
+msgstr ""
+
+#. 🤖 (U+1F916), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROBOT_FACE\n"
+"LngText.text"
+msgid "robot"
+msgstr ""
+
+#. 🏻 (U+1F3FB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-1-2\n"
+"LngText.text"
+msgid "skin1"
+msgstr ""
+
+#. 🏼 (U+1F3FC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-3\n"
+"LngText.text"
+msgid "skin2"
+msgstr ""
+
+#. 🏽 (U+1F3FD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-4\n"
+"LngText.text"
+msgid "skin3"
+msgstr ""
+
+#. 🏾 (U+1F3FE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-5\n"
+"LngText.text"
+msgid "skin4"
+msgstr ""
+
+#. 🏿 (U+1F3FF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EMOJI_MODIFIER_FITZPATRICK_TYPE-6\n"
+"LngText.text"
+msgid "skin5"
+msgstr ""
+
+#. 🤘 (U+1F918), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SIGN_OF_THE_HORNS\n"
+"LngText.text"
+msgid "horns"
+msgstr ""
+
+#. 📿 (U+1F4FF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRAYER_BEADS\n"
+"LngText.text"
+msgid "beads"
+msgstr ""
+
+#. 🦁 (U+1F981), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LION_FACE\n"
+"LngText.text"
+msgid "lion"
+msgstr ""
+
+#. 🦄 (U+1F984), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"UNICORN_FACE\n"
+"LngText.text"
+msgid "unicorn"
+msgstr ""
+
+#. 🦃 (U+1F983), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TURKEY\n"
+"LngText.text"
+msgid "turkey"
+msgstr ""
+
+#. 🦀 (U+1F980), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRAB\n"
+"LngText.text"
+msgid "crab"
+msgstr ""
+
+#. 🦂 (U+1F982), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCORPION\n"
+"LngText.text"
+msgid "scorpion"
+msgstr ""
+
+#. 🧀 (U+1F9C0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHEESE_WEDGE\n"
+"LngText.text"
+msgid "cheese"
+msgstr ""
+
+#. 🌭 (U+1F32D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HOT_DOG\n"
+"LngText.text"
+msgid "hot dog"
+msgstr ""
+
+#. 🌮 (U+1F32E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TACO\n"
+"LngText.text"
+msgid "taco"
+msgstr ""
+
+#. 🌯 (U+1F32F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BURRITO\n"
+"LngText.text"
+msgid "burrito"
+msgstr ""
+
+#. 🍿 (U+1F37F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POPCORN\n"
+"LngText.text"
+msgid "popcorn"
+msgstr ""
+
+#. 🍾 (U+1F37E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOTTLE_WITH_POPPING_CORK\n"
+"LngText.text"
+msgid "party4"
+msgstr ""
+
+#. 🏺 (U+1F3FA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AMPHORA\n"
+"LngText.text"
+msgid "amphora"
+msgstr ""
+
+#. 🕌 (U+1F54C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOSQUE\n"
+"LngText.text"
+msgid "mosque"
+msgstr ""
+
+#. 🕍 (U+1F54D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SYNAGOGUE\n"
+"LngText.text"
+msgid "synagogue"
+msgstr ""
+
+#. 🕋 (U+1F54B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KAABA\n"
+"LngText.text"
+msgid "Kaaba"
+msgstr ""
+
+#. 🏐 (U+1F3D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"VOLLEYBALL\n"
+"LngText.text"
+msgid "volleyball"
+msgstr ""
+
+#. 🏏 (U+1F3CF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRICKET_BAT_AND_BALL\n"
+"LngText.text"
+msgid "cricket"
+msgstr ""
+
+#. 🏑 (U+1F3D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FIELD_HOCKEY_STICK_AND_BALL\n"
+"LngText.text"
+msgid "hockey2"
+msgstr ""
+
+#. 🏒 (U+1F3D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ICE_HOCKEY_STICK_AND_PUCK\n"
+"LngText.text"
+msgid "hockey"
+msgstr ""
+
+#. 🏓 (U+1F3D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TABLE_TENNIS_PADDLE_AND_BALL\n"
+"LngText.text"
+msgid "ping pong"
+msgstr ""
+
+#. 🏸 (U+1F3F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BADMINTON_RACQUET_AND_SHUTTLECOCK\n"
+"LngText.text"
+msgid "badminton"
+msgstr ""
+
+#. 🏹 (U+1F3F9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOW_AND_ARROW\n"
+"LngText.text"
+msgid "bow"
+msgstr ""
+
+#. 🛐 (U+1F6D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PLACE_OF_WORSHIP\n"
+"LngText.text"
+msgid "worship"
+msgstr ""
+
+#. 🕎 (U+1F54E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MENORAH_WITH_NINE_BRANCHES\n"
+"LngText.text"
+msgid "menorah"
+msgstr ""
+
+#. 🤣 (U+1F923), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ROLLING_ON_THE_FLOOR_LAUGHING\n"
+"LngText.text"
+msgid "lol"
+msgstr ""
+
+#. 🤤 (U+1F924), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DROOLING_FACE\n"
+"LngText.text"
+msgid "drool"
+msgstr ""
+
+#. 🤢 (U+1F922), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"NAUSEATED_FACE\n"
+"LngText.text"
+msgid "nausea"
+msgstr ""
+
+#. 🤧 (U+1F927), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SNEEZING_FACE\n"
+"LngText.text"
+msgid "sneeze"
+msgstr ""
+
+#. 🤠 (U+1F920), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COWBOY_HAT_FACE\n"
+"LngText.text"
+msgid "cowboy"
+msgstr ""
+
+#. 🤡 (U+1F921), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLOWN_FACE\n"
+"LngText.text"
+msgid "clown"
+msgstr ""
+
+#. 🤥 (U+1F925), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LYING_FACE\n"
+"LngText.text"
+msgid "liar"
+msgstr ""
+
+#. 🤴 (U+1F934), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRINCE\n"
+"LngText.text"
+msgid "prince"
+msgstr ""
+
+#. 🤵 (U+1F935), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_IN_TUXEDO\n"
+"LngText.text"
+msgid "groom"
+msgstr ""
+
+#. 🤰 (U+1F930), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PREGNANT_WOMAN\n"
+"LngText.text"
+msgid "pregnant"
+msgstr ""
+
+#. 🤶 (U+1F936), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MRS._CLAUS\n"
+"LngText.text"
+msgid "mrs. claus"
+msgstr ""
+
+#. 🤦 (U+1F926), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_FACEPALMING\n"
+"LngText.text"
+msgid "facepalm"
+msgstr ""
+
+#. 🤷 (U+1F937), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_SHRUGGING\n"
+"LngText.text"
+msgid "shrugging"
+msgstr ""
+
+#. 🕺 (U+1F57A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAN_DANCING\n"
+"LngText.text"
+msgid "dancer2"
+msgstr ""
+
+#. 🤺 (U+1F93A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_FENCING\n"
+"LngText.text"
+msgid "fencer"
+msgstr ""
+
+#. 🤸 (U+1F938), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_CARTWHEELING\n"
+"LngText.text"
+msgid "gymnast"
+msgstr ""
+
+#. 🤼 (U+1F93C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEOPLE_WRESTLING\n"
+"LngText.text"
+msgid "wrestling"
+msgstr ""
+
+#. 🤽 (U+1F93D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_PLAYING_WATER_POLO\n"
+"LngText.text"
+msgid "water polo"
+msgstr ""
+
+#. 🤾 (U+1F93E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_PLAYING_HANDBALL\n"
+"LngText.text"
+msgid "handball"
+msgstr ""
+
+#. 🤹 (U+1F939), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_JUGGLING\n"
+"LngText.text"
+msgid "juggling"
+msgstr ""
+
+#. 🤳 (U+1F933), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SELFIE\n"
+"LngText.text"
+msgid "selfie"
+msgstr ""
+
+#. 🤞 (U+1F91E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CROSSED_FINGERS\n"
+"LngText.text"
+msgid "good luck"
+msgstr ""
+
+#. 🤙 (U+1F919), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CALL_ME_HAND\n"
+"LngText.text"
+msgid "call"
+msgstr ""
+
+#. 🤛 (U+1F91B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LEFT-FACING_FIST\n"
+"LngText.text"
+msgid "fist3"
+msgstr ""
+
+#. 🤜 (U+1F91C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RIGHT-FACING_FIST\n"
+"LngText.text"
+msgid "fist4"
+msgstr ""
+
+#. 🤚 (U+1F91A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RAISED_BACK_OF_HAND\n"
+"LngText.text"
+msgid "hand4"
+msgstr ""
+
+#. 🤝 (U+1F91D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HANDSHAKE\n"
+"LngText.text"
+msgid "handshake"
+msgstr ""
+
+#. 🖤 (U+1F5A4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BLACK_HEART\n"
+"LngText.text"
+msgid "black heart"
+msgstr ""
+
+#. 🦍 (U+1F98D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GORILLA\n"
+"LngText.text"
+msgid "gorilla"
+msgstr ""
+
+#. 🦊 (U+1F98A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FOX_FACE\n"
+"LngText.text"
+msgid "fox"
+msgstr ""
+
+#. 🦌 (U+1F98C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DEER\n"
+"LngText.text"
+msgid "deer"
+msgstr ""
+
+#. 🦏 (U+1F98F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"RHINOCEROS\n"
+"LngText.text"
+msgid "rhinoceros"
+msgstr ""
+
+#. 🦇 (U+1F987), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BAT\n"
+"LngText.text"
+msgid "bat"
+msgstr ""
+
+#. 🦅 (U+1F985), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EAGLE\n"
+"LngText.text"
+msgid "eagle"
+msgstr ""
+
+#. 🦆 (U+1F986), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DUCK\n"
+"LngText.text"
+msgid "duck"
+msgstr ""
+
+#. 🦉 (U+1F989), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OWL\n"
+"LngText.text"
+msgid "owl"
+msgstr ""
+
+#. 🦎 (U+1F98E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"LIZARD\n"
+"LngText.text"
+msgid "lizard"
+msgstr ""
+
+#. 🦈 (U+1F988), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHARK\n"
+"LngText.text"
+msgid "shark"
+msgstr ""
+
+#. 🦐 (U+1F990), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHRIMP\n"
+"LngText.text"
+msgid "shrimp"
+msgstr ""
+
+#. 🦑 (U+1F991), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SQUID\n"
+"LngText.text"
+msgid "squid"
+msgstr ""
+
+#. 🦋 (U+1F98B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BUTTERFLY\n"
+"LngText.text"
+msgid "butterfly"
+msgstr ""
+
+#. 🥀 (U+1F940), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"WILTED_FLOWER\n"
+"LngText.text"
+msgid "flower2"
+msgstr ""
+
+#. 🥝 (U+1F95D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"KIWI_FRUIT\n"
+"LngText.text"
+msgid "kiwi"
+msgstr ""
+
+#. 🥑 (U+1F951), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"AVOCADO\n"
+"LngText.text"
+msgid "avocado"
+msgstr ""
+
+#. 🥔 (U+1F954), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"POTATO\n"
+"LngText.text"
+msgid "potato"
+msgstr ""
+
+#. 🥕 (U+1F955), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CARROT\n"
+"LngText.text"
+msgid "carrot"
+msgstr ""
+
+#. 🥒 (U+1F952), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUCUMBER\n"
+"LngText.text"
+msgid "cucumber"
+msgstr ""
+
+#. 🥜 (U+1F95C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PEANUTS\n"
+"LngText.text"
+msgid "peanuts"
+msgstr ""
+
+#. 🥐 (U+1F950), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CROISSANT\n"
+"LngText.text"
+msgid "croissant"
+msgstr ""
+
+#. 🥖 (U+1F956), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BAGUETTE_BREAD\n"
+"LngText.text"
+msgid "bread2"
+msgstr ""
+
+#. 🥞 (U+1F95E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PANCAKES\n"
+"LngText.text"
+msgid "pancakes"
+msgstr ""
+
+#. 🥓 (U+1F953), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BACON\n"
+"LngText.text"
+msgid "bacon"
+msgstr ""
+
+#. 🥙 (U+1F959), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"STUFFED_FLATBREAD\n"
+"LngText.text"
+msgid "flatbread"
+msgstr ""
+
+#. 🥚 (U+1F95A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"EGG\n"
+"LngText.text"
+msgid "egg"
+msgstr ""
+
+#. 🥘 (U+1F958), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHALLOW_PAN_OF_FOOD\n"
+"LngText.text"
+msgid "food"
+msgstr ""
+
+#. 🥗 (U+1F957), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GREEN_SALAD\n"
+"LngText.text"
+msgid "salad"
+msgstr ""
+
+#. 🥛 (U+1F95B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GLASS_OF_MILK\n"
+"LngText.text"
+msgid "milk"
+msgstr ""
+
+#. 🥂 (U+1F942), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CLINKING_GLASSES\n"
+"LngText.text"
+msgid "party3"
+msgstr ""
+
+#. 🥃 (U+1F943), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TUMBLER_GLASS\n"
+"LngText.text"
+msgid "glass3"
+msgstr ""
+
+#. 🥄 (U+1F944), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SPOON\n"
+"LngText.text"
+msgid "spoon"
+msgstr ""
+
+#. 🛴 (U+1F6F4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCOOTER\n"
+"LngText.text"
+msgid "scooter"
+msgstr ""
+
+#. 🛵 (U+1F6F5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MOTOR_SCOOTER\n"
+"LngText.text"
+msgid "scooter2"
+msgstr ""
+
+#. 🛑 (U+1F6D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OCTAGONAL_SIGN\n"
+"LngText.text"
+msgid "stop"
+msgstr ""
+
+#. 🛶 (U+1F6F6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANOE\n"
+"LngText.text"
+msgid "canoe"
+msgstr ""
+
+#. 🥇 (U+1F947), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"1ST_PLACE_MEDAL\n"
+"LngText.text"
+msgid "gold"
+msgstr ""
+
+#. 🥈 (U+1F948), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"2ND_PLACE_MEDAL\n"
+"LngText.text"
+msgid "silver"
+msgstr ""
+
+#. 🥉 (U+1F949), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"3RD_PLACE_MEDAL\n"
+"LngText.text"
+msgid "bronze"
+msgstr ""
+
+#. 🥊 (U+1F94A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOXING_GLOVE\n"
+"LngText.text"
+msgid "boxing"
+msgstr ""
+
+#. 🥋 (U+1F94B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MARTIAL_ARTS_UNIFORM\n"
+"LngText.text"
+msgid "judo"
+msgstr ""
+
+#. 🥅 (U+1F945), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GOAL_NET\n"
+"LngText.text"
+msgid "soccer2"
+msgstr ""
+
+#. 🥁 (U+1F941), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DRUM_WITH_DRUMSTICKS\n"
+"LngText.text"
+msgid "drum2"
+msgstr ""
+
+#. 🛒 (U+1F6D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOPPING_TROLLEY\n"
+"LngText.text"
+msgid "cart"
+msgstr ""
+
+#. 🤩 (U+1F929), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GRINNING_FACE_WITH_STAR_EYES\n"
+"LngText.text"
+msgid "excited"
+msgstr ""
+
+#. 🤨 (U+1F928), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_ONE_EYEBROW_RAISED\n"
+"LngText.text"
+msgid "eyebrow"
+msgstr ""
+
+#. 🤯 (U+1F92F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SHOCKED_FACE_WITH_EXPLODING_HEAD\n"
+"LngText.text"
+msgid "shocked"
+msgstr ""
+
+#. 🤪 (U+1F92A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GRINNING_FACE_WITH_ONE_LARGE_AND_ONE_SMALL_EYE\n"
+"LngText.text"
+msgid "zany"
+msgstr ""
+
+#. 🤬 (U+1F92C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SERIOUS_FACE_WITH_SYMBOLS_COVERING_MOUTH\n"
+"LngText.text"
+msgid "cursing"
+msgstr ""
+
+#. 🤮 (U+1F92E), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_OPEN_MOUTH_VOMITING\n"
+"LngText.text"
+msgid "vomit"
+msgstr ""
+
+#. 🤫 (U+1F92B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_FINGER_COVERING_CLOSED_LIPS\n"
+"LngText.text"
+msgid "hush"
+msgstr ""
+
+#. 🤭 (U+1F92D), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SMILING_FACE_WITH_SMILING_EYES_AND_HAND_COVERING_MOUTH\n"
+"LngText.text"
+msgid "smiling4"
+msgstr ""
+
+#. 🧐 (U+1F9D0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FACE_WITH_MONOCLE\n"
+"LngText.text"
+msgid "monocle"
+msgstr ""
+
+#. 🧒 (U+1F9D2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHILD\n"
+"LngText.text"
+msgid "child"
+msgstr ""
+
+#. 🧑 (U+1F9D1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ADULT\n"
+"LngText.text"
+msgid "adult"
+msgstr ""
+
+#. 🧓 (U+1F9D3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"OLDER_ADULT\n"
+"LngText.text"
+msgid "old"
+msgstr ""
+
+#. 🧕 (U+1F9D5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_WITH_HEADSCARF\n"
+"LngText.text"
+msgid "headscarf"
+msgstr ""
+
+#. 🧔 (U+1F9D4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BEARDED_PERSON\n"
+"LngText.text"
+msgid "beard"
+msgstr ""
+
+#. 🤱 (U+1F931), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BREAST-FEEDING\n"
+"LngText.text"
+msgid "baby3"
+msgstr ""
+
+#. 🧙 (U+1F9D9), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MAGE\n"
+"LngText.text"
+msgid "mage"
+msgstr ""
+
+#. 🧚 (U+1F9DA), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FAIRY\n"
+"LngText.text"
+msgid "fairy"
+msgstr ""
+
+#. 🧛 (U+1F9DB), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"VAMPIRE\n"
+"LngText.text"
+msgid "vampire"
+msgstr ""
+
+#. 🧜 (U+1F9DC), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"MERPERSON\n"
+"LngText.text"
+msgid "merperson"
+msgstr ""
+
+#. 🧝 (U+1F9DD), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ELF\n"
+"LngText.text"
+msgid "elf"
+msgstr ""
+
+#. 🧞 (U+1F9DE), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GENIE\n"
+"LngText.text"
+msgid "genie"
+msgstr ""
+
+#. 🧟 (U+1F9DF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZOMBIE\n"
+"LngText.text"
+msgid "zombie"
+msgstr ""
+
+#. 🧖 (U+1F9D6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_IN_STEAMY_ROOM\n"
+"LngText.text"
+msgid "sauna"
+msgstr ""
+
+#. 🧗 (U+1F9D7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_CLIMBING\n"
+"LngText.text"
+msgid "climber"
+msgstr ""
+
+#. 🧘 (U+1F9D8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PERSON_IN_LOTUS_POSITION\n"
+"LngText.text"
+msgid "yoga"
+msgstr ""
+
+#. 🤟 (U+1F91F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"I_LOVE_YOU_HAND_SIGN\n"
+"LngText.text"
+msgid "love2"
+msgstr ""
+
+#. 🤲 (U+1F932), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PALMS_UP_TOGETHER\n"
+"LngText.text"
+msgid "palm2"
+msgstr ""
+
+#. 🧠 (U+1F9E0), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BRAIN\n"
+"LngText.text"
+msgid "brain"
+msgstr ""
+
+#. 🧡 (U+1F9E1), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ORANGE_HEART\n"
+"LngText.text"
+msgid "orange heart"
+msgstr ""
+
+#. 🧣 (U+1F9E3), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SCARF\n"
+"LngText.text"
+msgid "scarf"
+msgstr ""
+
+#. 🧤 (U+1F9E4), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GLOVES\n"
+"LngText.text"
+msgid "gloves"
+msgstr ""
+
+#. 🧥 (U+1F9E5), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COAT\n"
+"LngText.text"
+msgid "coat"
+msgstr ""
+
+#. 🧦 (U+1F9E6), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SOCKS\n"
+"LngText.text"
+msgid "socks"
+msgstr ""
+
+#. 🧢 (U+1F9E2), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BILLED_CAP\n"
+"LngText.text"
+msgid "cap"
+msgstr ""
+
+#. 🦓 (U+1F993), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"ZEBRA\n"
+"LngText.text"
+msgid "zebra"
+msgstr ""
+
+#. 🦒 (U+1F992), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"GIRAFFE\n"
+"LngText.text"
+msgid "giraffe"
+msgstr ""
+
+#. 🦔 (U+1F994), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"HEDGEHOG\n"
+"LngText.text"
+msgid "hedgehog"
+msgstr ""
+
+#. 🦕 (U+1F995), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SAUROPOD\n"
+"LngText.text"
+msgid "dinosaur"
+msgstr ""
+
+#. 🦖 (U+1F996), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"T-REX\n"
+"LngText.text"
+msgid "dinosaur2"
+msgstr ""
+
+#. 🦗 (U+1F997), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CRICKET\n"
+"LngText.text"
+msgid "cricket2"
+msgstr ""
+
+#. 🥥 (U+1F965), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"COCONUT\n"
+"LngText.text"
+msgid "coconut"
+msgstr ""
+
+#. 🥦 (U+1F966), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BROCCOLI\n"
+"LngText.text"
+msgid "broccoli"
+msgstr ""
+
+#. 🥨 (U+1F968), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PRETZEL\n"
+"LngText.text"
+msgid "pretzel"
+msgstr ""
+
+#. 🥩 (U+1F969), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUT_OF_MEAT\n"
+"LngText.text"
+msgid "steak"
+msgstr ""
+
+#. 🥪 (U+1F96A), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SANDWICH\n"
+"LngText.text"
+msgid "sandwich"
+msgstr ""
+
+#. 🥣 (U+1F963), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BOWL_WITH_SPOON\n"
+"LngText.text"
+msgid "bowl"
+msgstr ""
+
+#. 🥫 (U+1F96B), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CANNED_FOOD\n"
+"LngText.text"
+msgid "can"
+msgstr ""
+
+#. 🥟 (U+1F95F), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"DUMPLING\n"
+"LngText.text"
+msgid "dumpling"
+msgstr ""
+
+#. 🥠 (U+1F960), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FORTUNE_COOKIE\n"
+"LngText.text"
+msgid "cookie2"
+msgstr ""
+
+#. 🥡 (U+1F961), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"TAKEOUT_BOX\n"
+"LngText.text"
+msgid "takeout"
+msgstr ""
+
+#. 🥧 (U+1F967), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"PIE\n"
+"LngText.text"
+msgid "pie"
+msgstr ""
+
+#. 🥤 (U+1F964), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CUP_WITH_STRAW\n"
+"LngText.text"
+msgid "drink"
+msgstr ""
+
+#. 🥢 (U+1F962), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CHOPSTICKS\n"
+"LngText.text"
+msgid "chopsticks"
+msgstr ""
+
+#. 🛸 (U+1F6F8), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"FLYING_SAUCER\n"
+"LngText.text"
+msgid "ufo"
+msgstr ""
+
+#. 🛷 (U+1F6F7), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"SLED\n"
+"LngText.text"
+msgid "sled"
+msgstr ""
+
+#. 🥌 (U+1F94C), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"CURLING_STONE\n"
+"LngText.text"
+msgid "curling"
+msgstr ""
+
+#. ₿ (U+20BF), see http://wiki.documentfoundation.org/Emoji
+#: emoji.ulf
+msgctxt ""
+"emoji.ulf\n"
+"BITCOIN_SIGN\n"
+"LngText.text"
+msgid "bitcoin"
+msgstr ""
+
#. ½ (U+000BD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
msgctxt ""
diff --git a/source/bn/helpcontent2/source/text/sbasic/shared.po b/source/bn/helpcontent2/source/text/sbasic/shared.po
index 4ffb6937e1d..00d7e1bb968 100644
--- a/source/bn/helpcontent2/source/text/sbasic/shared.po
+++ b/source/bn/helpcontent2/source/text/sbasic/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: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: 2016-11-22 16:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15229,7 +15229,7 @@ msgctxt ""
"03040000.xhp\n"
"par_id111512312705893\n"
"help.text"
-msgid "The following constants are avalable when VBA compatibility mode is enabled"
+msgid "The following constants are available when VBA compatibility mode is enabled"
msgstr ""
#: 03040000.xhp
@@ -15253,15 +15253,7 @@ msgctxt ""
"03040000.xhp\n"
"par_id991512312965968\n"
"help.text"
-msgid "Desccription"
-msgstr ""
-
-#: 03040000.xhp
-msgctxt ""
-"03040000.xhp\n"
-"par_id241512313723033\n"
-"help.text"
-msgid "\\x0D (13)"
+msgid "Description"
msgstr ""
#: 03040000.xhp
@@ -16109,8 +16101,8 @@ msgctxt ""
"03060300.xhp\n"
"tit\n"
"help.text"
-msgid "Imp-Operator [Runtime]"
-msgstr "Imp-Operator [Runtime]"
+msgid "Imp Operator [Runtime]"
+msgstr ""
#: 03060300.xhp
msgctxt ""
@@ -16125,8 +16117,8 @@ msgctxt ""
"03060300.xhp\n"
"hd_id3156024\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Imp-Operator [Runtime]\">Imp Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Imp-Operator [Runtime]\">Imp Operator [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Imp Operator [Runtime]\">Imp Operator [Runtime]</link>"
+msgstr ""
#: 03060300.xhp
msgctxt ""
@@ -16245,8 +16237,8 @@ msgctxt ""
"03060400.xhp\n"
"tit\n"
"help.text"
-msgid "Not-Operator [Runtime]"
-msgstr "Not-Operator [Runtime]"
+msgid "Not Operator [Runtime]"
+msgstr ""
#: 03060400.xhp
msgctxt ""
@@ -16261,8 +16253,8 @@ msgctxt ""
"03060400.xhp\n"
"hd_id3156024\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Not-Operator [Runtime]\">Not-Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Not-Operator [Runtime]\">Not-Operator [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Not Operator [Runtime]\">Not Operator [Runtime]</link>"
+msgstr ""
#: 03060400.xhp
msgctxt ""
@@ -16373,8 +16365,8 @@ msgctxt ""
"03060500.xhp\n"
"tit\n"
"help.text"
-msgid "Or-Operator [Runtime]"
-msgstr "Or-Operator [Runtime]"
+msgid "Or Operator [Runtime]"
+msgstr ""
#: 03060500.xhp
msgctxt ""
@@ -16389,8 +16381,8 @@ msgctxt ""
"03060500.xhp\n"
"hd_id3150986\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060500.xhp\" name=\"Or-Operator [Runtime]\">Or Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03060500.xhp\" name=\"Or-Operator [Runtime]\">Or Operator [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03060500.xhp\" name=\"Or Operator [Runtime]\">Or Operator [Runtime]</link>"
+msgstr ""
#: 03060500.xhp
msgctxt ""
@@ -17053,8 +17045,8 @@ msgctxt ""
"03070600.xhp\n"
"tit\n"
"help.text"
-msgid "Mod-Operator [Runtime]"
-msgstr "Mod-Operator [Runtime]"
+msgid "Mod Operator [Runtime]"
+msgstr ""
#: 03070600.xhp
msgctxt ""
@@ -17069,8 +17061,8 @@ msgctxt ""
"03070600.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod-Operator [Runtime]\">Mod Operator [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod-Operator [Runtime]\">Mod Operator [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator [Runtime]\">Mod Operator [Runtime]</link>"
+msgstr ""
#: 03070600.xhp
msgctxt ""
@@ -20477,8 +20469,8 @@ msgctxt ""
"03090203.xhp\n"
"tit\n"
"help.text"
-msgid "While...Wend Statement[Runtime]"
-msgstr "While...Wend Statement[Runtime]"
+msgid "While...Wend Statement [Runtime]"
+msgstr ""
#: 03090203.xhp
msgctxt ""
@@ -20493,8 +20485,8 @@ msgctxt ""
"03090203.xhp\n"
"hd_id3150400\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement[Runtime]\">While...Wend Statement[Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement[Runtime]\">While...Wend Statement[Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement [Runtime]\">While...Wend Statement [Runtime]</link>"
+msgstr ""
#: 03090203.xhp
msgctxt ""
@@ -26085,7 +26077,7 @@ msgctxt ""
"03103350.xhp\n"
"hd_id3145090\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement [Runtime]\">Option VBASupport Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option VBASupport Statement [Runtime]\">Option VBASupport Statement [Runtime]</link>"
msgstr ""
#: 03103350.xhp
@@ -26397,8 +26389,8 @@ msgctxt ""
"03103600.xhp\n"
"hd_id3143267\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function[Runtime]\">TypeName Function; VarType Function[Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function[Runtime]\">TypeName Function; VarType Function[Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function [Runtime]\">TypeName Function; VarType Function [Runtime]</link>"
+msgstr ""
#: 03103600.xhp
msgctxt ""
@@ -26621,8 +26613,8 @@ msgctxt ""
"03103700.xhp\n"
"hd_id3154422\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement[Runtime]\">Set Statement[Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement[Runtime]\">Set Statement[Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement [Runtime]\">Set Statement [Runtime]</link>"
+msgstr ""
#: 03103700.xhp
msgctxt ""
@@ -26877,8 +26869,8 @@ msgctxt ""
"03104000.xhp\n"
"hd_id3153527\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing function [Runtime]\">IsMissing function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing function [Runtime]\">IsMissing function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing Function [Runtime]\">IsMissing Function [Runtime]</link>"
+msgstr ""
#: 03104000.xhp
msgctxt ""
@@ -29144,6 +29136,14 @@ msgctxt ""
msgid "' displays for example 6,328.20 in English locale, 6.328,20 in German locale."
msgstr "REM উদাহরণ হিসেবে ৬,৩২৮.২০ ইংরেজী লোক্যাল, ৬.৩২৮,২০ জার্মান লোক্যাল প্রদর্শন করে থাকে।"
+#: 03120301.xhp
+msgctxt ""
+"03120301.xhp\n"
+"par_id381513082126889\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020301.xhp\" name=\"number format code\">Number format codes in Calc</link>"
+msgstr ""
+
#: 03120302.xhp
msgctxt ""
"03120302.xhp\n"
@@ -32853,8 +32853,8 @@ msgctxt ""
"03132200.xhp\n"
"hd_id3155342\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent [Runtime]\">ThisComponent [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent [Runtime]\">ThisComponent [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent Statement [Runtime]\">ThisComponent Statement [Runtime]</link>"
+msgstr ""
#: 03132200.xhp
msgctxt ""
@@ -34709,7 +34709,7 @@ msgctxt ""
"03150001.xhp\n"
"par_id801512153944376\n"
"help.text"
-msgid "Tueday"
+msgid "Tuesday"
msgstr ""
#: 03150001.xhp
diff --git a/source/bn/helpcontent2/source/text/scalc/01.po b/source/bn/helpcontent2/source/text/scalc/01.po
index 4b1cf62fef9..8368c9b9263 100644
--- a/source/bn/helpcontent2/source/text/scalc/01.po
+++ b/source/bn/helpcontent2/source/text/scalc/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: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
"PO-Revision-Date: 2016-12-22 16:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7123,6 +7123,14 @@ msgstr ""
#: 04060103.xhp
msgctxt ""
"04060103.xhp\n"
+"par_id461513468030965\n"
+"help.text"
+msgid "Because of the iterative method used, it is possible for IRR to fail and return <link href=\"text/scalc/05/02140000.xhp\" name=\"Error 523\">Error 523</link>, with \"Error: Calculation does not converge\" in the status bar. In that case, try another value for Guess."
+msgstr ""
+
+#: 04060103.xhp
+msgctxt ""
+"04060103.xhp\n"
"bm_id3151012\n"
"help.text"
msgid "<bookmark_value>calculating; interests for unchanged amortization installments</bookmark_value> <bookmark_value>interests for unchanged amortization installments</bookmark_value> <bookmark_value>ISPMT function</bookmark_value>"
@@ -52197,8 +52205,8 @@ msgctxt ""
"12040201.xhp\n"
"hd_id3148492\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">More</link>"
-msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">অধিক</link>"
+msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"Options\">Options</link>"
+msgstr ""
#: 12040201.xhp
msgctxt ""
@@ -56301,7 +56309,7 @@ msgctxt ""
"data_form.xhp\n"
"par_id221512503284514\n"
"help.text"
-msgid "To be effective, the Calc data table should have a header row, where each cell contents is the label of the column. The header cells contents becomes the label of each data field in the form."
+msgid "To be effective, the Calc data table should have a header row, where each cell contents is the label of the column. The header cells contents become the label of each data field in the form."
msgstr ""
#: data_form.xhp
@@ -56325,7 +56333,7 @@ msgctxt ""
"data_form.xhp\n"
"par_id11512503369875\n"
"help.text"
-msgid "Choose <item type=\"menutiem\">Data - Form...</item>."
+msgid "Choose <item type=\"menuitem\">Data - Form...</item>."
msgstr ""
#: data_form.xhp
@@ -56429,7 +56437,7 @@ msgctxt ""
"data_form.xhp\n"
"par_id181512558987528\n"
"help.text"
-msgid "To reopen the form dialog, place the cursor on the header row and open the form. The displayed record in the form dialog is the fisrt data record. Move to the last record before entering new data otherwise the current record will be edited."
+msgid "To reopen the form dialog, place the cursor on the header row and open the form. The displayed record in the form dialog is the first data record. Move to the last record before entering new data otherwise the current record will be edited."
msgstr ""
#: data_form.xhp
@@ -65541,7 +65549,7 @@ msgctxt ""
"statistics.xhp\n"
"bm_id05001\n"
"help.text"
-msgid "<bookmark_value>Analysis toolpack;t-test</bookmark_value><bookmark_value>t-test;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;t-test</bookmark_value>"
+msgid "<bookmark_value>Analysis toolpack;t-test</bookmark_value><bookmark_value>Analysis toolpack;paired t-test</bookmark_value><bookmark_value>t-test;Analysis toolpack</bookmark_value><bookmark_value>paired t-test;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;paired t-test</bookmark_value>"
msgstr ""
#: statistics.xhp
@@ -65549,7 +65557,7 @@ msgctxt ""
"statistics.xhp\n"
"hd_id1000150\n"
"help.text"
-msgid "t-test"
+msgid "Paired t-test"
msgstr ""
#: statistics.xhp
@@ -65557,7 +65565,7 @@ msgctxt ""
"statistics.xhp\n"
"par_id1002820\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/ttestdialog/TTestDialog\">Calculates the t-Test of two data samples.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/ttestdialog/TTestDialog\">Calculates the paired t-Test of two data samples.</ahelp>"
msgstr ""
#: statistics.xhp
@@ -65565,7 +65573,7 @@ msgctxt ""
"statistics.xhp\n"
"par_id1002830\n"
"help.text"
-msgid "<variable id=\"sam01\">Choose <emph>Data - Statistics - t-test</emph></variable>"
+msgid "<variable id=\"sam01\">Choose <emph>Data - Statistics - Paired t-test</emph></variable>"
msgstr ""
#: statistics.xhp
@@ -65573,7 +65581,7 @@ msgctxt ""
"statistics.xhp\n"
"par_id1002840\n"
"help.text"
-msgid "A <emph>t-test</emph> is any statistical hypothesis test that follows a Student's t distribution."
+msgid "A <emph>paired t-test</emph> is any statistical hypothesis test that follows a Student's t distribution."
msgstr ""
#: statistics.xhp
@@ -65581,7 +65589,7 @@ msgctxt ""
"statistics.xhp\n"
"par_id1002850\n"
"help.text"
-msgid "For more information on t-tests, refer to the <link href=\"http://en.wikipedia.org/wiki/T-test\">corresponding Wikipedia article</link>."
+msgid "For more information on paired t-tests, refer to the <link href=\"http://en.wikipedia.org/wiki/T-test\">corresponding Wikipedia article</link>."
msgstr ""
#: statistics.xhp
@@ -65621,7 +65629,7 @@ msgctxt ""
"statistics.xhp\n"
"hd_id1000170\n"
"help.text"
-msgid "Results for t-Test:"
+msgid "Results for paired t-test:"
msgstr ""
#: statistics.xhp
@@ -65629,7 +65637,7 @@ msgctxt ""
"statistics.xhp\n"
"par_id1002890\n"
"help.text"
-msgid "The following table shows the <emph>t-Test</emph> for the data series above:"
+msgid "The following table shows the <emph>paired t-test</emph> for the data series above:"
msgstr ""
#: statistics.xhp
@@ -65637,7 +65645,7 @@ msgctxt ""
"statistics.xhp\n"
"par_id1002900\n"
"help.text"
-msgid "t-test"
+msgid "paired t-test"
msgstr ""
#: statistics.xhp
@@ -66509,7 +66517,7 @@ msgctxt ""
"statistics_regression.xhp\n"
"par_id14337286612130\n"
"help.text"
-msgid "<link href=\"text/scalc/01/statistics.xhp#datasampling\">Sampling</link>, <link href=\"text/scalc/01/statistics.xhp#descriptivestatistics\">Descriptive Statistics</link>, <link href=\"text/scalc/01/statistics.xhp#anova\">Analysis of Variance (ANOVA)</link>, <link href=\"text/scalc/01/statistics.xhp#correlation\">Correlation</link>, <link href=\"text/scalc/01/statistics.xhp#covariance\">Covariance</link>, <link href=\"text/scalc/01/statistics.xhp#exponentialsmoothing\">Exponential Smoothing</link>, <link href=\"text/scalc/01/statistics.xhp#movingaverage\">Moving Average</link>, <link href=\"text/scalc/01/statistics.xhp#ttest\">t-test</link>, <link href=\"text/scalc/01/statistics.xhp#ftest\">F-test</link>, <link href=\"text/scalc/01/statistics.xhp#ztest\">Z-test</link>, <link href=\"text/scalc/01/statistics.xhp#chisqtest\">Chi-square test</link>."
+msgid "<link href=\"text/scalc/01/statistics.xhp#datasampling\">Sampling</link>, <link href=\"text/scalc/01/statistics.xhp#descriptivestatistics\">Descriptive Statistics</link>, <link href=\"text/scalc/01/statistics.xhp#anova\">Analysis of Variance (ANOVA)</link>, <link href=\"text/scalc/01/statistics.xhp#correlation\">Correlation</link>, <link href=\"text/scalc/01/statistics.xhp#covariance\">Covariance</link>, <link href=\"text/scalc/01/statistics.xhp#exponentialsmoothing\">Exponential Smoothing</link>, <link href=\"text/scalc/01/statistics.xhp#movingaverage\">Moving Average</link>, <link href=\"text/scalc/01/statistics.xhp#ttest\">Paired t-test</link>, <link href=\"text/scalc/01/statistics.xhp#ftest\">F-test</link>, <link href=\"text/scalc/01/statistics.xhp#ztest\">Z-test</link>, <link href=\"text/scalc/01/statistics.xhp#chisqtest\">Chi-square test</link>."
msgstr ""
#: text2columns.xhp
diff --git a/source/bn/helpcontent2/source/text/sdraw.po b/source/bn/helpcontent2/source/text/sdraw.po
index 48953368b90..91fbb7a6db9 100644
--- a/source/bn/helpcontent2/source/text/sdraw.po
+++ b/source/bn/helpcontent2/source/text/sdraw.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: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2016-05-02 07:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -104,62 +104,6 @@ msgctxt ""
msgid "This menu contains general commands for working with Draw documents, such as open, close and print. To close $[officename] Draw, click <emph>Exit</emph>."
msgstr "এই মেনুটি অঙ্কন নথি নিয়ে কাজ করার জন্য সাধারণ র্নিদেশাবলী ধারণ করে, যেমন খুলুন, বন্ধ করুন এবং মুদ্রণ। $[officename] ড্র বন্ধ করতে <emph>প্রস্থান</emph> এ ক্লিক করুন।"
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3156441\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
-msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">খুলুন</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3153876\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
-msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">নতুনভাবে সংরক্ষণ</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3150718\n"
-"help.text"
-msgid "<link href=\"text/simpress/01/01170000.xhp\" name=\"Export\">Export</link>"
-msgstr "<link href=\"text/simpress/01/01170000.xhp\" name=\"Export\">এক্সপোর্ট</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3154754\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
-msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">সংস্করণ</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3150044\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
-msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">বৈশিষ্ট্যাবলী</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3149127\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
-msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">মুদ্রণ</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3145790\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\">Printer Settings</link>"
-msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\">মুদ্রণের সেটিং</link>"
-
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
diff --git a/source/bn/helpcontent2/source/text/shared.po b/source/bn/helpcontent2/source/text/shared.po
index 8b295b2e439..fa390e2a2fe 100644
--- a/source/bn/helpcontent2/source/text/shared.po
+++ b/source/bn/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: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
"PO-Revision-Date: 2016-04-16 21:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1936,70 +1936,6 @@ msgctxt ""
msgid "This section provides a general glossary of technical terms used in $[officename], along with a list of Internet terms."
msgstr "এই বিভাগটি $[officename]তে ব্যবহারিত প্রযুক্তিগত শর্তাবলীর একটি সাধারণ অভিধানের জোগান দেয় , ইন্টারনেট শর্তাবলীর একটি তালিকার সঙ্গে বরাবর করে।"
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"tit\n"
-"help.text"
-msgid "Programming $[officename]"
-msgstr "$[officename]প্রোগ্রামিং"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"bm_id3154232\n"
-"help.text"
-msgid "<bookmark_value>programming;$[officename]</bookmark_value><bookmark_value>Basic;programming</bookmark_value>"
-msgstr "<bookmark_value>programming;$[officename]</bookmark_value><bookmark_value>Basic;programming</bookmark_value>"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"hd_id3154232\n"
-"help.text"
-msgid "<variable id=\"programming\"><link href=\"text/shared/main0600.xhp\" name=\"Programming $[officename]\">Programming $[officename]</link></variable>"
-msgstr "<variable id=\"programming\"><link href=\"text/shared/main0600.xhp\" name=\"Programming $[officename]\"> $[officename] প্রোগ্রামিং</link></variable>"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3149760\n"
-"help.text"
-msgid "<variable id=\"basic\">$[officename] can be controlled by using the $[officename] API. </variable>"
-msgstr "<variable id=\"basic\">$[officename] API ব্যবহার করে $[officename] নিয়ন্ত্রণ করা যাবে। </variable>"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3151111\n"
-"help.text"
-msgid "$[officename] provides an Application Programming Interface (API) that enables you to control $[officename] components by using various programming languages. A $[officename] Software Development Kit is available for the programming interface."
-msgstr "$[officename] একটি অ্যাপলিকেশন প্রোগ্রামিং ইন্টারফেস জোগান দেয় (API) যেটি $[officename] নিয়ন্ত্রণ করতে আপনাকে সক্রিয় করে বিভিন্ন প্রোগ্রামিং ভাষা ব্যবহার করার মধ্যে উপাদান। একটি $ [officename] সফটওয়্যার উন্নয়ন সামগ্রী প্রোগ্রামিং ইন্টারফেসের জন্য প্রাপ্তিসাধ্য।"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3156346\n"
-"help.text"
-msgid "For more information about $[officename] API reference, please visit http://api.libreoffice.org/"
-msgstr "$[officename] API রেফারেন্স সম্পর্কিত আরও তথ্যের জন্য, অনুগ্রহ করে http://api.openoffice.org/ দেখুন"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3153825\n"
-"help.text"
-msgid "Macros created with $[officename] Basic based on the old programming interface will no longer be supported by the current version."
-msgstr "ম্যাক্রোস তৈরি করা হয়েছিল $[officename] প্রাথমিক এর পুরাতন প্রোগ্রামিং ইন্টারফেস সংকলন দ্বারা যেটি বর্তমান সংকলনের জন্য আর প্রযোজ্য নয়।"
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3149795\n"
-"help.text"
-msgid "For more information on $[officename] Basic, select \"$[officename] Basic\" in the list box."
-msgstr "$[officename] বেসিক সম্পর্কিত আরও তথ্যের জন্য, তালিকা বাক্সে \"$[officename] বেসিক\" নির্বাচন করুন।"
-
#: main0650.xhp
msgctxt ""
"main0650.xhp\n"
diff --git a/source/bn/helpcontent2/source/text/shared/00.po b/source/bn/helpcontent2/source/text/shared/00.po
index 73d4e7af0e9..1f4e0fec77f 100644
--- a/source/bn/helpcontent2/source/text/shared/00.po
+++ b/source/bn/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: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: 2016-05-24 02:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2597,8 +2597,8 @@ msgctxt ""
"00000010.xhp\n"
"par_id3154317\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">Deletes the current selection. If multiple objects are selected, all will be deleted. In most cases, a <link href=\"text/shared/01/03150100.xhp\" name=\"security query\">security query</link> appears before objects are deleted.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\"> বর্তমান নির্বাচন মুছে ফেলে। যদি একাধিক বস্তু নির্বাচন করা হয়, সমস্ত মুছে ফেলা হবে। ঘটনা, একটি সর্বাপেক্ষাতে<link href=\"text/shared/01/03150100.xhp\" name=\"security query\"> নিরাপত্তা অনুসন্ধান</link> বস্তুর পূর্বে আবির্ভূত হওয়া হয় মুছে ফেলা হয়।</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">Deletes the current selection. If multiple objects are selected, all will be deleted. In most cases, a confirmation question appears before objects are deleted.</ahelp>"
+msgstr ""
#: 00000010.xhp
msgctxt ""
diff --git a/source/bn/helpcontent2/source/text/shared/01.po b/source/bn/helpcontent2/source/text/shared/01.po
index c455446ad99..60e07f2c2b3 100644
--- a/source/bn/helpcontent2/source/text/shared/01.po
+++ b/source/bn/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: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2016-12-24 13:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1045,7 +1045,7 @@ msgctxt ""
"01010203.xhp\n"
"par_id3155355\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/labeloptionspage/entirepage\" visibility=\"visible\">Creates a full page of labels or business cards.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/labeloptionspage/entirepage\" visibility=\"visible\">Creates a full page of labels or business cards.</ahelp>"
msgstr ""
#: 01010203.xhp
@@ -1061,7 +1061,7 @@ msgctxt ""
"01010203.xhp\n"
"par_id3155535\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/labeloptionspage/singlelabel\" visibility=\"visible\">Prints a single label or business card on a page.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/labeloptionspage/singlelabel\" visibility=\"visible\">Prints a single label or business card on a page.</ahelp>"
msgstr ""
#: 01010203.xhp
@@ -2080,6 +2080,78 @@ msgctxt ""
msgid "<link href=\"text/shared/00/00000020.xhp\" name=\"Import and Export Filters\">Import and Export Filters</link>"
msgstr ""
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"tit\n"
+"help.text"
+msgid "Open Remote..."
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"bm_id1001513636856122\n"
+"help.text"
+msgid "<bookmark_value>remote file;open</bookmark_value> <bookmark_value>open;remote file</bookmark_value>"
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"hd_id151513629025611\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01020001.xhp\" name=\"Open Remote...\">Open Remote...</link>"
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"par_id771513629025613\n"
+"help.text"
+msgid "<variable id=\"openremote1\"><ahelp hid=\".uno:OpenRemote\"/>Opens a document located in a remote file service.</variable>"
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"par_id611513629210220\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">File - Open Remote..</item>"
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"par_id151513629855154\n"
+"help.text"
+msgid "Click the <emph>Remote Files</emph> button in the <emph>Start Center</emph>"
+msgstr ""
+
+#: 01020001.xhp
+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>"
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"par_id531513630220632\n"
+"help.text"
+msgid "A remote file server is web service that stores documents with or without check-in, check-out, version controls and backups."
+msgstr ""
+
+#: 01020001.xhp
+msgctxt ""
+"01020001.xhp\n"
+"par_id951513629981585\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/cmis-remote-files.xhp\" name=\"CMIS\">Opening and saving files in remote servers</link>"
+msgstr ""
+
#: 01020101.xhp
msgctxt ""
"01020101.xhp\n"
@@ -2320,6 +2392,142 @@ msgctxt ""
msgid "When you edit an AutoText entry, this command changes to <emph>Save AutoText</emph>."
msgstr ""
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"tit\n"
+"help.text"
+msgid "Save Remote..."
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"bm_id381513636896997\n"
+"help.text"
+msgid "<bookmark_value>remote file;save</bookmark_value> <bookmark_value>save;remote file</bookmark_value>"
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"hd_id151513629025611\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01060001.xhp\" name=\"Save Remote...\">Save Remote...</link>"
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"par_id771513629025613\n"
+"help.text"
+msgid "<variable id=\"saveremote1\"><ahelp hid=\".uno:SaveRemote\"/>Saves a document located in a remote file service.</variable>"
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"par_id611513629210220\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">File - Save Remote..</item>"
+msgstr ""
+
+#: 01060001.xhp
+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>"
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"par_id531513630220632\n"
+"help.text"
+msgid "A remote file server is web service that stores documents with or without check-in, check-out, version controls and backups."
+msgstr ""
+
+#: 01060001.xhp
+msgctxt ""
+"01060001.xhp\n"
+"par_id951513629981585\n"
+"help.text"
+msgid "<link href=\"text/shared/guide/cmis-remote-files.xhp\" name=\"CMIS\">Opening and saving files in remote servers</link>"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"tit\n"
+"help.text"
+msgid "Save a Copy"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"bm_id241513636774794\n"
+"help.text"
+msgid "<bookmark_value>save;save a copy</bookmark_value> <bookmark_value>save a copy</bookmark_value>"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id391513471676787\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01060002.xhp\" name=\"Save a Copy\">Save a Copy</link>"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id1001513471674465\n"
+"help.text"
+msgid "<variable id=\"saveacopy1\"><ahelp hid=\".uno:SaveACopy\">Save a copy of the actual document with another name or location.</ahelp></variable>"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id701513472080716\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">File - Save a Copy</item>"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id881513473450156\n"
+"help.text"
+msgid "Creates another file with same contents of the current file. The current file is kept opened for edition."
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id21513472326060\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01060000.xhp\" name=\"Save\">Save</link>"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id411513472333495\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save as</link>"
+msgstr ""
+
+#: 01060002.xhp
+msgctxt ""
+"01060002.xhp\n"
+"par_id681513472341081\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01070001.xhp\" name=\"Export\">Export</link>"
+msgstr ""
+
#: 01070000.xhp
msgctxt ""
"01070000.xhp\n"
@@ -2664,6 +2872,78 @@ msgctxt ""
msgid "Export"
msgstr ""
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"tit\n"
+"help.text"
+msgid "Export As"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"bm_id781513636674523\n"
+"help.text"
+msgid "<bookmark_value>export as;PDF</bookmark_value> <bookmark_value>export as;EPUB</bookmark_value>"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"hd_id751513634008094\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01070002.xhp\" name=\"Export As...\">Export As...</link>"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"par_id791513634008095\n"
+"help.text"
+msgid "<variable id=\"exportas1\"><ahelp hid=\".\">Export the document in PDF or EPUB formats</ahelp></variable>"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"par_id971513634212601\n"
+"help.text"
+msgid "Choose <emph>File - Export As...</emph>"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"hd_id71513635341099\n"
+"help.text"
+msgid "Export Directly as PDF"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"par_id961513635511473\n"
+"help.text"
+msgid "Export the entire document using your default PDF settings."
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"hd_id851513635358546\n"
+"help.text"
+msgid "Export Directly as EPUB"
+msgstr ""
+
+#: 01070002.xhp
+msgctxt ""
+"01070002.xhp\n"
+"par_id811513635541682\n"
+"help.text"
+msgid "Export the entire document using your default EPUB settings."
+msgstr ""
+
#: 01100000.xhp
msgctxt ""
"01100000.xhp\n"
@@ -11752,94 +12032,6 @@ msgctxt ""
msgid "You can still use shortcut keys in <emph>Full Screen</emph> mode, even though the menus are unavailable. <switchinline select=\"sys\"><caseinline select=\"WIN\">To open the <emph>View</emph> menu, press Alt+V. </caseinline></switchinline>"
msgstr ""
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Confirm Delete"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"hd_id3150278\n"
-"help.text"
-msgid "Confirm Delete"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"par_id3148668\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:MODALDIALOG:DLG_SFX_QUERYDELETE\" visibility=\"visible\">Confirms or cancels the deletion.</ahelp>"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"hd_id3152821\n"
-"help.text"
-msgid "Delete"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"par_id3150040\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_YES\" visibility=\"visible\">Performs the deletion in the current file.</ahelp>"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"hd_id3149999\n"
-"help.text"
-msgid "Delete All"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"par_id3155616\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_ALL\" visibility=\"visible\">Performs the deletion in all selected files.</ahelp>"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"hd_id3157991\n"
-"help.text"
-msgid "Do Not Delete"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"par_id3147043\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_NO\" visibility=\"visible\">Rejects the deletion for the current file.</ahelp>"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"hd_id3149346\n"
-"help.text"
-msgid "Cancel"
-msgstr ""
-
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"par_id3148620\n"
-"help.text"
-msgid "Cancels the deletion in the current file and any other selected files."
-msgstr ""
-
#: 03170000.xhp
msgctxt ""
"03170000.xhp\n"
@@ -22125,7 +22317,15 @@ msgctxt ""
"05110600m.xhp\n"
"tit\n"
"help.text"
-msgid "Space Rows Equally"
+msgid "Distribute Rows Equally"
+msgstr ""
+
+#: 05110600m.xhp
+msgctxt ""
+"05110600m.xhp\n"
+"bm_id431513359599959\n"
+"help.text"
+msgid "<bookmark_value>table rows;distribute height equally</bookmark_value> <bookmark_value>row height;distribute equally</bookmark_value>"
msgstr ""
#: 05110600m.xhp
@@ -22133,7 +22333,7 @@ msgctxt ""
"05110600m.xhp\n"
"hd_id3149871\n"
"help.text"
-msgid "<link href=\"text/shared/01/05110600m.xhp\" name=\"Space Equally\">Space Rows Equally</link>"
+msgid "<link href=\"text/shared/01/05110600m.xhp\" name=\"Distribute Equally\">Distribute Rows Equally</link>"
msgstr ""
#: 05110600m.xhp
@@ -22149,7 +22349,7 @@ msgctxt ""
"05110600m.xhp\n"
"par_id3153569\n"
"help.text"
-msgid "Choose <emph>Table - Autofit - Distribute Rows Equally</emph>"
+msgid "Choose <emph>Table - Size - Distribute Rows Equally</emph>"
msgstr ""
#: 05110600m.xhp
@@ -22341,7 +22541,15 @@ msgctxt ""
"05120600.xhp\n"
"tit\n"
"help.text"
-msgid "Space Columns Equally"
+msgid "Distribute Columns Equally"
+msgstr ""
+
+#: 05120600.xhp
+msgctxt ""
+"05120600.xhp\n"
+"bm_id431513359599959\n"
+"help.text"
+msgid "<bookmark_value>table columns;distribute columns equally</bookmark_value> <bookmark_value>column width;distribute equally</bookmark_value>"
msgstr ""
#: 05120600.xhp
@@ -22349,7 +22557,7 @@ msgctxt ""
"05120600.xhp\n"
"hd_id3153811\n"
"help.text"
-msgid "<link href=\"text/shared/01/05120600.xhp\" name=\"Space Equally\">Space Columns Equally</link>"
+msgid "<link href=\"text/shared/01/05120600.xhp\" name=\"Distribute Equally\">Distribute Columns Equally</link>"
msgstr ""
#: 05120600.xhp
@@ -22365,7 +22573,7 @@ msgctxt ""
"05120600.xhp\n"
"par_id3159219\n"
"help.text"
-msgid "Choose <emph>Table - Autofit - Distribute Columns Equally</emph>"
+msgid "Choose <emph>Table - Size - Distribute Columns Equally</emph>"
msgstr ""
#: 05120600.xhp
@@ -22389,7 +22597,7 @@ msgctxt ""
"05120600.xhp\n"
"par_id3151364\n"
"help.text"
-msgid "Space Columns Equally"
+msgid "Distribute Columns Equally"
msgstr ""
#: 05140100.xhp
@@ -33789,7 +33997,7 @@ msgctxt ""
"06130000.xhp\n"
"par_idN10A39\n"
"help.text"
-msgid "<variable id=\"script\">Scripts </variable>"
+msgid "<variable id=\"script\">Scripts</variable>"
msgstr ""
#: 06130000.xhp
@@ -33960,14 +34168,6 @@ msgctxt ""
msgid "Click a script, and then click a command button."
msgstr ""
-#: 06130000.xhp
-msgctxt ""
-"06130000.xhp\n"
-"par_id3153138\n"
-"help.text"
-msgid "<link href=\"text/shared/main0600.xhp\" name=\"Macro programming in $[officename]\">Macro programming in $[officename]</link>"
-msgstr ""
-
#: 06130001.xhp
msgctxt ""
"06130001.xhp\n"
diff --git a/source/bn/helpcontent2/source/text/shared/02.po b/source/bn/helpcontent2/source/text/shared/02.po
index 7645f928651..b73ed46e2f6 100644
--- a/source/bn/helpcontent2/source/text/shared/02.po
+++ b/source/bn/helpcontent2/source/text/shared/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: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
"PO-Revision-Date: 2016-05-24 02:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9493,16 +9493,16 @@ msgctxt ""
"02010000.xhp\n"
"tit\n"
"help.text"
-msgid "Apply Style"
-msgstr "ধরন প্রয়োগ করুন"
+msgid "Set Paragrph Style"
+msgstr ""
#: 02010000.xhp
msgctxt ""
"02010000.xhp\n"
"hd_id3148520\n"
"help.text"
-msgid "<link href=\"text/shared/02/02010000.xhp\" name=\"Apply Style\">Apply Style</link>"
-msgstr "<link href=\"text/shared/02/02010000.xhp\" name=\"Apply Style\">ধরন প্রয়োগ করুন</link>"
+msgid "<link href=\"text/shared/02/02010000.xhp\" name=\"Set Paragraph Style\">Set Paragraph Style</link>"
+msgstr ""
#: 02010000.xhp
msgctxt ""
@@ -9533,16 +9533,16 @@ msgctxt ""
"02010000.xhp\n"
"par_id3155552\n"
"help.text"
-msgid "<image id=\"img_id3152801\" src=\"media/helpimg/zellvor.png\" width=\"2.642cm\" height=\"0.533cm\" localize=\"true\"><alt id=\"alt_id3152801\">Apply Style</alt></image>"
-msgstr "<image id=\"img_id3152801\" src=\"media/helpimg/zellvor.png\" width=\"1.0402in\" height=\"0.2098in\" localize=\"true\"><alt id=\"alt_id3152801\">শৈলী প্রয়োগ</alt></image>"
+msgid "<image id=\"img_id3152801\" src=\"media/helpimg/zellvor.png\" width=\"2.642cm\" height=\"0.533cm\" localize=\"true\"><alt id=\"alt_id3152801\">Set Paragraph Style</alt></image>"
+msgstr ""
#: 02010000.xhp
msgctxt ""
"02010000.xhp\n"
"par_id3145345\n"
"help.text"
-msgid "Apply Style"
-msgstr "ধরন প্রয়োগ করুন"
+msgid "Set Paragraph Style"
+msgstr ""
#: 02020000.xhp
msgctxt ""
@@ -13325,8 +13325,8 @@ msgctxt ""
"12090100.xhp\n"
"hd_id3153061\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More Options\">More Options</link>"
-msgstr "<link href=\"text/scalc/01/12040201.xhp\" name=\"More Options\">আরও অপশন</link>"
+msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"Options\">Options</link>"
+msgstr ""
#: 12090101.xhp
msgctxt ""
@@ -15765,7 +15765,7 @@ msgctxt ""
"20050000.xhp\n"
"bm_id3148668\n"
"help.text"
-msgid "<bookmark_value>selection modes in text</bookmark_value><bookmark_value>text; selection modes</bookmark_value><bookmark_value>extending selection mode</bookmark_value><bookmark_value>adding selection mode</bookmark_value><bookmark_value>block selection mode</bookmark_value>"
+msgid "<bookmark_value>selection modes in text</bookmark_value> <bookmark_value>text; selection modes</bookmark_value> <bookmark_value>extending selection mode</bookmark_value> <bookmark_value>adding selection mode</bookmark_value> <bookmark_value>block selection mode</bookmark_value>"
msgstr ""
#: 20050000.xhp
@@ -15821,8 +15821,8 @@ msgctxt ""
"20050000.xhp\n"
"par_id3147209\n"
"help.text"
-msgid "Click in text where you want to position the cursor; click in a cell to make it the active cell. Any other selection is then deselected."
-msgstr "কার্সারটিকে পাঠ্যর যেস্থানে রাখতে চান সেখানে ক্লিক করুন; একটি ঘরকে সক্রিয় করতে ঘরে ক্লিক করুন। অন্য যেকোনো নির্বাচনকে অনির্বাচিত করুন।"
+msgid "This is the default selection mode for text documents. With the keyboard, selections can be performed by Shift+NavigationKey (<item type=\"keycode\">arrows, Home, End, Page Up, Page Down</item>). With the mouse, click in the text where the selection is to start, hold the left mouse button and move to the end of the selection. Release the mouse key to end selection."
+msgstr ""
#: 20050000.xhp
msgctxt ""
@@ -15837,8 +15837,8 @@ msgctxt ""
"20050000.xhp\n"
"par_id3153717\n"
"help.text"
-msgid "Clicking in the text extends or crops the current selection."
-msgstr "ক্লিক করে বর্তমান নথি পাঠ্য বর্ধিত বা কেটে ছোট কটে।"
+msgid "By using the arrow keys or the <item type=\"keycode\">Home</item> and <item type=\"keycode\">End</item> keys you can extend or crop the current selection. Clicking into the text selects the text between the current cursor position and the click position. You also can use (with or without <item type=\"keycode\">Shift</item> key) the arrow keys and the keys <item type=\"keycode\">Home</item> and <item type=\"keycode\">End</item> to increase or decrease the current selection."
+msgstr ""
#: 20050000.xhp
msgctxt ""
@@ -15880,6 +15880,14 @@ msgctxt ""
msgid "On Windows systems, you can hold down the <item type=\"keycode\">Alt</item> key while dragging to select a block of text. You don't need to enter the block selection mode."
msgstr "উইন্ডোজ সিস্টেমে, একটি ব্লক পাঠ্য নির্বাচন করে টেনে আনার সময় আপনি <item type=\"keycode\">Alt</item> কী ধরে রাখুন। ব্লক নির্বাচন মোড সন্নিবেশ করার কোন প্রয়োজন নেই আপনার।"
+#: 20050000.xhp
+msgctxt ""
+"20050000.xhp\n"
+"par_id901513465638512\n"
+"help.text"
+msgid "<link href=\"text/swriter/guide/text_nav_keyb.xhp\" name=\"Navigating and Selecting With the Keyboard\">Navigating and Selecting With the Keyboard</link>"
+msgstr ""
+
#: 20060000.xhp
msgctxt ""
"20060000.xhp\n"
diff --git a/source/bn/helpcontent2/source/text/shared/05.po b/source/bn/helpcontent2/source/text/shared/05.po
index f57dad6d60e..48c8aa03c3e 100644
--- a/source/bn/helpcontent2/source/text/shared/05.po
+++ b/source/bn/helpcontent2/source/text/shared/05.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: 2016-04-16 22:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -149,7 +149,7 @@ msgctxt ""
"00000001.xhp\n"
"par_id3497211\n"
"help.text"
-msgid "You can download documentation as PDF files, how-tos, and guides from the %PRODUCTNAME documentation website at <link href=\"http://documentation.libreoffice.org\">documentation.libreoffice.org</link>. You can also access the documentation website choosing the menu <item type=\"menuitem\">Help – User Guides…</item> ."
+msgid "You can download documentation as PDF files, how-tos, and guides from the %PRODUCTNAME documentation website at <link href=\"http://documentation.libreoffice.org\">documentation.libreoffice.org</link>. You can also access the documentation website choosing the menu <item type=\"menuitem\">Help – User Guides…</item>"
msgstr ""
#: 00000001.xhp
diff --git a/source/bn/helpcontent2/source/text/shared/autopi.po b/source/bn/helpcontent2/source/text/shared/autopi.po
index 9bb940d9d94..16c955e44db 100644
--- a/source/bn/helpcontent2/source/text/shared/autopi.po
+++ b/source/bn/helpcontent2/source/text/shared/autopi.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: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
"PO-Revision-Date: 2016-05-24 02:54+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6229,8 +6229,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3149140\n"
"help.text"
-msgid "<variable id=\"eurokonv\"><ahelp hid=\".uno:EuroConverter\">Converts the currency amounts found in $[officename] Calc documents and in fields and tables of $[officename] Writer documents into euros.</ahelp></variable>"
-msgstr "<variable id=\"eurokonv\"><ahelp hid=\".uno:EuroConverter\"> $[officename] Calc নথিতে প্রাপ্ত মুদ্রার পরিমাণ এবং $[officename] লেখনী নথির ক্ষেত্র ও টেবিল ইউরোতে রূপান্তর করে। </ahelp></variable>"
+msgid "<variable id=\"eurokonv\"><ahelp hid=\".\">Converts the currency amounts found in $[officename] Calc documents and in fields and tables of $[officename] Writer documents into euros.</ahelp></variable>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6269,8 +6269,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3155420\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OBFILE\">Converts a single $[officename] Calc file.</ahelp> To convert fields and tables in $[officename] Writer, first mark the <emph>Also convert fields and tables in text documents </emph>check box."
-msgstr "<ahelp hid=\"HID_DLGCONVERT_OBFILE\">একটি একক $[officename] Calc ফাইল রূপান্তর করে।</ahelp>$[officename] লেখনিতে ক্ষেত্র এবং টেবিল রূপান্তর করার জন্য প্রথমে <emph>টেক্সট নথিতে ক্ষেত্র এবং টেবিল রূপান্তর করে</emph> পরীক্ষা বাক্স চিহ্নিত করুন।"
+msgid "<ahelp hid=\".\">Converts a single $[officename] Calc file.</ahelp> To convert fields and tables in $[officename] Writer, first mark the <emph>Also convert fields and tables in text documents </emph>check box."
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6285,8 +6285,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3150670\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OBDIR\">Converts all $[officename] Calc and $[officename] Writer documents and templates in the selected directory.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_OBDIR\">সকল $[officename] Calc এবং $[officename] লেখনি নথি এবং নির্বাচিত নির্দেশিকার ফর্মা রূপান্তর করে।</ahelp>"
+msgid "<ahelp hid=\".\">Converts all $[officename] Calc and $[officename] Writer documents and templates in the selected directory.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6301,8 +6301,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3156002\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_COMBOBOX1\">Specifies the currency to be converted into euros.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_COMBOBOX1\">ইউরো তে রূপান্তর করা হবে এমন মুদ্রা উল্লেখ করে।</ahelp>"
+msgid "<ahelp hid=\".\">Specifies the currency to be converted into euros.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6317,8 +6317,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3154898\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_TBSOURCE\">Indicates the directory or the name of the single document to be converted.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_TBSOURCE\">রূপান্তর করা হবে এমন নির্দেশিকা অথবা একক নথির নাম নির্দেশ করে।</ahelp>"
+msgid "<ahelp hid=\".\">Indicates the directory or the name of the single document to be converted.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6333,8 +6333,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3147264\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBSOURCEOPEN\">Opens a dialog to select the desired directory or document.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBSOURCEOPEN\">কাক্ষিত নির্দেশিকা অথবা নথি নির্বাচন করার জন্য ডায়ালগ খোলে।</ahelp>"
+msgid "<ahelp hid=\".\">Opens a dialog to select the desired directory or document.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6349,8 +6349,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3152771\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CHECKRECURSIVE\">Specifies whether all subfolders of the selected directory are included.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CHECKRECURSIVE\">নির্বাচিত নির্দেশিকার সকল উপপত্রাধার অন্তর্ভুক্ত হবে কিনা তা উল্লেখ করে।</ahelp>"
+msgid "<ahelp hid=\".\">Specifies whether all subfolders of the selected directory are included.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6365,8 +6365,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3150398\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CHKTEXTDOCUMENTS\">Converts currency amounts found in fields and tables of $[officename] Writer documents.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CHKTEXTDOCUMENTS\">$[officename] লেখনি নথির ক্ষেত্র এবং টেবিল এ প্রাপ্ত মুদ্রার পরিমাণ রূপান্তর করে।</ahelp>"
+msgid "<ahelp hid=\".\">Converts currency amounts found in fields and tables of $[officename] Writer documents.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6389,8 +6389,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CHKPROTECT\">Specifies that sheet protection will be disabled during conversion and thereafter re-enabled. If sheet protection is covered by a password, you will see a dialog for entering the password.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CHKPROTECT\">রূপান্তর এর সময় পৃষ্ঠার তত্ত্বাবধান নিষ্ক্রিয় কিনা তা উল্লেখ করে এবং তারপর পুনঃরায় সক্রিয় করে।</ahelp>যদি পৃষ্ঠার তত্ত্বাবধান পাসওয়ার্ড দ্বারা রক্ষিত থাকে তাহলে আপনি গুপ্তসংকেতে সন্নিবেশ করার জন্য একটি ডায়ালগ দেখতে পাবেন।"
+msgid "<ahelp hid=\".\">Specifies that sheet protection will be disabled during conversion and thereafter re-enabled. If sheet protection is covered by a password, you will see a dialog for entering the password.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6405,8 +6405,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3153771\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_TBTARGET\">Specifies the folder and path in which the converted files are to be saved.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_TBTARGET\">যে পত্রাধার ও পথ এ রূপান্তরিত ফাইল সংরক্ষিত হবে তা উল্লেখ করে।</ahelp>"
+msgid "<ahelp hid=\".\">Specifies the folder and path in which the converted files are to be saved.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6421,8 +6421,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3147427\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBTARGETOPEN\">Opens a dialog in which you can select a directory to hold the converted files.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBTARGETOPEN\">রূপান্তরিত ফাইল ধারণ করার জন্য নির্দেশিকা নির্বাচন করতে ডায়ালগ খোলে।</ahelp>"
+msgid "<ahelp hid=\".\">Opens a dialog in which you can select a directory to hold the converted files.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6437,8 +6437,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3153190\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBCANCEL\">Closes the Euro Converter.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBCANCEL\">ইউরো পরিবর্তক বন্ধ করে।</ahelp>"
+msgid "<ahelp hid=\".\">Closes the Euro Converter.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6453,8 +6453,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3155413\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBHELP\">Activates the help for the dialog.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBHELP\">ডায়ালগ এর জন্য সহায়তা সক্রিয় করে।</ahelp>"
+msgid "<ahelp hid=\".\">Activates the help for the dialog.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6469,8 +6469,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBGOON\">Starts the conversion.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBGOON\">কথোপকথন আরম্ভ করে।</ahelp>"
+msgid "<ahelp hid=\".\">Starts the conversion.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6493,16 +6493,16 @@ msgctxt ""
"01150000.xhp\n"
"par_id3153953\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBBACK\">Returns to the first page of the Euro Converter.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBBACK\">ইউরো পরিবর্তক এর প্রথম পৃষ্ঠায় ফিরে আসে।</ahelp>"
+msgid "<ahelp hid=\".\">Returns to the first page of the Euro Converter.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
"01150000.xhp\n"
"par_id3154640\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CBBACK\">If the current document is a $[officename] Calc document or template, you can call up the Euro Converter using the corresponding icon in the Tools bar.</ahelp> This icon is hidden by default. To display the Euro Converter icon, click the arrow at the end of the Tools bar, select the <emph>Visible Buttons</emph> command and activate the <emph>Euro Converter</emph> icon."
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CBBACK\">যদি বর্তমান নথিটি $[officename] Calc নথি অথবা ফর্মা তাহলে টুল বার এর সংশ্লিষ্ট আইকন ব্যবহার করে ইউরো পরিবর্তক কল করতে পারেন।</ahelp> এই আইকনটি পূর্বনির্ধারিত হিসেবে আড়াল থাকে। ইউরো পরিবর্তক আইকন প্রদর্শনের জন্য টুলবার এর শেষের তীর চিহ্নতে ক্লিক করুন, <emph>দৃশ্যমান বোতাম</emph> কমান্ড নির্বাচন করুন এবং <emph>ইউরো পরিবর্তক</emph> আইকন সক্রিয় করুন।"
+msgid "If the current document is a $[officename] Calc document or template, you can call up the Euro Converter using the corresponding icon in the Tools bar. This icon is hidden by default. To display the Euro Converter icon, click the arrow at the end of the Tools bar, select the <emph>Visible Buttons</emph> command and activate the <emph>Euro Converter</emph> icon."
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6541,8 +6541,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3150113\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_CHECKBOX1\">Converts the entire document.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_CHECKBOX1\">সম্পূর্ণ নথি পরিবর্তন করে।</ahelp>"
+msgid "<ahelp hid=\".\">Converts the entire document.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6557,8 +6557,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3148834\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_COMBOBOX1\">Specifies the currency to be converted into euros.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_COMBOBOX1\">ইউরো তে রূপান্তর করা হবে এমন মুদ্রা উল্লেখ করে।</ahelp>"
+msgid "<ahelp hid=\".\">Specifies the currency to be converted into euros.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6589,8 +6589,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3145162\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON1\">All cells with the selected Cell Styles are converted.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON1\">নির্বাচিত অংশের ধরন সম্বলিত সকল অংশ রূপান্তরিত হয়েছে।</ahelp>"
+msgid "<ahelp hid=\".\">All cells with the selected Cell Styles are converted.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6605,8 +6605,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3154479\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON2\">All currency cells in the active spreadsheet will be converted.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON2\">সক্রিয় স্প্রেডশীট এর সকল মুদ্রার অংশ রূপান্তর করা হবে।</ahelp>"
+msgid "<ahelp hid=\".\">All currency cells in the active spreadsheet will be converted.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6621,8 +6621,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3146912\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON3\">All currency cells in the active document will be converted.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON3\">সক্রিয় নথির সকল মুদ্রার অংশ রূপান্তর করা হবে।</ahelp>"
+msgid "<ahelp hid=\".\">All currency cells in the active document will be converted.</ahelp>"
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6637,8 +6637,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3153736\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON4\">All currency cells in the range selected before the converter was called will be converted.</ahelp> All cells must have the same format so that they can be recognized as a selected range."
-msgstr "<ahelp hid=\"HID_DLGCONVERT_OPTIONBUTTON4\">রূপান্তরক রূপান্তরিত হবে নির্দেশ দেয়ার পূর্বে ক্রমবিন্যাসের সকল মুদ্রার অংশ নির্বাচিত করেছে। </ahelp> সকল প্রকোষ্ঠার একই রকম বিন্যাস হতে হবে যাতে তারা নির্বাচিত ক্রমবিন্যাস হিসেবে চিহ্নিত করতে পারে।"
+msgid "<ahelp hid=\".\">All currency cells in the range selected before the converter was called will be converted.</ahelp> All cells must have the same format so that they can be recognized as a selected range."
+msgstr ""
#: 01150000.xhp
msgctxt ""
@@ -6653,8 +6653,8 @@ msgctxt ""
"01150000.xhp\n"
"par_id3154756\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGCONVERT_LISTBOX1\">Displays the ranges to be converted from the list.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGCONVERT_LISTBOX1\">রূপান্তর হবে এমন তালিকার সীমানা প্রদর্শন করে।</ahelp>"
+msgid "<ahelp hid=\".\">Displays the ranges to be converted from the list.</ahelp>"
+msgstr ""
#: 01170000.xhp
msgctxt ""
diff --git a/source/bn/helpcontent2/source/text/shared/explorer/database.po b/source/bn/helpcontent2/source/text/shared/explorer/database.po
index 91e4bea3b3f..7296b23c6f0 100644
--- a/source/bn/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/bn/helpcontent2/source/text/shared/explorer/database.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: 2017-07-20 11:52+0200\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
"PO-Revision-Date: 2016-05-24 03:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7581,8 +7581,8 @@ msgctxt ""
"dabawiz02ado.xhp\n"
"par_idN10568\n"
"help.text"
-msgid "$[officename] requires the Microsoft Data Access Components (MDAC) to use the ADO interface. Microsoft Windows 2000 and XP include these components by default. For earlier visions of Windows, you need to install MDAC separately. You can download MDAC from the Microsoft web site."
-msgstr "$[officename]-এর ADO ইন্টারফেস ব্যবহার করতে Microsoft Data Access Components (MDAC) এর প্রয়োজন হয়। Microsoft Windows 2000 এবং XP এই উপাদানসমূহকে পূর্বনির্ধারণ অনুসারে অন্তর্ভুক্ত করে। Windows-এর পূর্ববর্তী সংস্করণের জন্য, আপনাকে পৃথকভাবে MDAC সংস্থাপন করতে হবে। আপনি Microsoft-এর ওয়েব সাইট হতে MDAC ডাউনলোড করতে পারেন।"
+msgid "$[officename] requires the Microsoft Data Access Components (MDAC) to use the ADO interface. Microsoft Windows 2000 and XP include these components by default."
+msgstr ""
#: dabawiz02ado.xhp
msgctxt ""
diff --git a/source/bn/helpcontent2/source/text/shared/guide.po b/source/bn/helpcontent2/source/text/shared/guide.po
index feecfb203ff..418d47702df 100644
--- a/source/bn/helpcontent2/source/text/shared/guide.po
+++ b/source/bn/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: 2016-07-05 17:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12661,16 +12661,24 @@ msgctxt ""
"macro_recording.xhp\n"
"bm_id3093440\n"
"help.text"
-msgid "<bookmark_value>macros; recording</bookmark_value><bookmark_value>recording; macros</bookmark_value><bookmark_value>Basic; recording macros</bookmark_value>"
-msgstr "<bookmark_value>macros; recording</bookmark_value><bookmark_value>recording; macros</bookmark_value><bookmark_value>Basic; recording macros</bookmark_value>"
+msgid "<bookmark_value>macros; recording</bookmark_value> <bookmark_value>recording; macros</bookmark_value> <bookmark_value>Basic; recording macros</bookmark_value>"
+msgstr ""
#: macro_recording.xhp
msgctxt ""
"macro_recording.xhp\n"
"hd_id3093440\n"
"help.text"
-msgid "<variable id=\"macro_recording\"><link href=\"text/shared/guide/macro_recording.xhp\" name=\"Recording a Macro\">Recording a Macro</link></variable>"
-msgstr "<variable id=\"macro_recording\"><link href=\"text/shared/guide/macro_recording.xhp\" name=\"Recording a Macro\">ম্যাক্রো ধারণ করছে</link></variable>"
+msgid "<variable id=\"macro_recording\"><link href=\"text/shared/guide/macro_recording.xhp\" name=\"Recording a Macro\">Recording a Macro</link> </variable>"
+msgstr ""
+
+#: macro_recording.xhp
+msgctxt ""
+"macro_recording.xhp\n"
+"par_id101513461219184\n"
+"help.text"
+msgid "%PRODUCTNAME can record commands executed with the keyboard and mouse in Writer and Calc"
+msgstr ""
#: macro_recording.xhp
msgctxt ""
@@ -12779,6 +12787,14 @@ msgstr "<emph>সংরক্ষণ</emph> ক্লিক করুন।"
#: macro_recording.xhp
msgctxt ""
"macro_recording.xhp\n"
+"bm_id131513460596344\n"
+"help.text"
+msgid "<bookmark_value>macro recording;limitations</bookmark_value>"
+msgstr ""
+
+#: macro_recording.xhp
+msgctxt ""
+"macro_recording.xhp\n"
"hd_id2486342\n"
"help.text"
msgid "Limitations of the macro recorder"
@@ -12848,14 +12864,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">Macro</link>"
msgstr "<link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">ম্যাক্রো</link>"
-#: macro_recording.xhp
-msgctxt ""
-"macro_recording.xhp\n"
-"par_id3147576\n"
-"help.text"
-msgid "<link href=\"text/shared/main0600.xhp\" name=\"macro programming in $[officename]\">Programming in %PRODUCTNAME</link>"
-msgstr "<link href=\"text/shared/main0600.xhp\" name=\"macro programming in $[officename]\"> %PRODUCTNAME এ প্রোগ্রাম করছে</link>"
-
#: main.xhp
msgctxt ""
"main.xhp\n"
diff --git a/source/bn/helpcontent2/source/text/shared/optionen.po b/source/bn/helpcontent2/source/text/shared/optionen.po
index c9a417ea5f1..e9343f0245f 100644
--- a/source/bn/helpcontent2/source/text/shared/optionen.po
+++ b/source/bn/helpcontent2/source/text/shared/optionen.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: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
"PO-Revision-Date: 2016-07-05 17:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -107,14 +107,6 @@ msgstr "<link href=\"text/shared/optionen/01150000.xhp\" name=\"Language Setting
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
-"hd_id3150872\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/01030000.xhp\" name=\"Internet\">Internet</link>"
-msgstr "<link href=\"text/shared/optionen/01030000.xhp\" name=\"Internet\">ইন্টারনেট</link>"
-
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
"hd_id3153188\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01040000.xhp\" name=\"Text Document\">%PRODUCTNAME Writer</link>"
@@ -163,6 +155,14 @@ msgstr "<link href=\"text/shared/optionen/01090000.xhp\" name=\"Formula\">%PRODU
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id3149420\n"
+"help.text"
+msgid "<link href=\"text/shared/optionen/01160000.xhp\" name=\"Data Sources\">%PRODUCTNAME Base</link>"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3155418\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01110000.xhp\" name=\"Chart\">Charts</link>"
@@ -171,10 +171,10 @@ msgstr "<link href=\"text/shared/optionen/01110000.xhp\" name=\"Chart\">লে
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
-"hd_id3149420\n"
+"hd_id3150872\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01160000.xhp\" name=\"Data Sources\">%PRODUCTNAME Database</link>"
-msgstr "<link href=\"text/shared/optionen/01160000.xhp\" name=\"Data Sources\">%PRODUCTNAME ডাটাবেস</link>"
+msgid "<link href=\"text/shared/optionen/01030000.xhp\" name=\"Internet\">Internet</link>"
+msgstr "<link href=\"text/shared/optionen/01030000.xhp\" name=\"Internet\">ইন্টারনেট</link>"
#: 01010000.xhp
msgctxt ""
@@ -197,8 +197,8 @@ msgctxt ""
"01010000.xhp\n"
"par_id3149177\n"
"help.text"
-msgid "<variable id=\"optionenallgemein\"><ahelp hid=\"SID_GENERAL_OPTIONS\">Use this dialog to create general settings for working with $[officename]. The information covers topics such as user data, saving, printing, paths to important files and directories, and color defaults.</ahelp></variable> These settings are saved automatically."
-msgstr "<variable id=\"optionenallgemein\"><ahelp hid=\"SID_GENERAL_OPTIONS\">$[officename] এর সাথে কাজ করার জন্য সাধারণ সেটিং তৈরি করতে এই ডায়ালগটি ব্যবহার করুন। তথ্যটি ব্যবহারকারী ডাটা, সংরক্ষণকরণ, মুদ্রণকরণ, গুরুত্বপূর্ণ ফাইল ও ডিরেক্টরির পাথ, এবং পূর্বনির্ধারিত রং এর মতো বিষয় শেষ করে।</ahelp></variable> এই সেটিংসমূহ স্বয়ংক্রিয়ভাবে সংরক্ষণ করা হয়।"
+msgid "<variable id=\"optionenallgemein\">Use this dialog to create general settings for working with $[officename]. The information covers topics such as user data, saving, printing, paths to important files and directories, and color defaults.</variable> These settings are saved automatically."
+msgstr ""
#: 01010100.xhp
msgctxt ""
@@ -1437,7 +1437,7 @@ msgctxt ""
"01010400.xhp\n"
"par_id3145673\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optlingupage/lingumodulesedit\">To edit a language module, select it and click <emph>Edit</emph>.</ahelp> The <link href=\"text/shared/optionen/01010401.xhp\" name=\"Edit Modules\"><emph>Edit </emph><emph>Modules</emph></link> dialog appears."
+msgid "<ahelp hid=\"cui/ui/optlingupage/lingumodulesedit\">To edit a language module, select it and click <emph>Edit</emph>.</ahelp> The <link href=\"text/shared/optionen/01010401.xhp\" name=\"Edit Modules\"><emph>Edit Modules</emph></link> dialog appears."
msgstr ""
#: 01010400.xhp
@@ -10973,8 +10973,8 @@ msgctxt ""
"01070500.xhp\n"
"par_id3154138\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>In a presentation or drawing document, you can also activate the text editing mode through the <emph>Allow Quick Editing</emph> <link href=\"text/simpress/02/13180000.xhp\" name=\"icon\">icon</link> in the <emph>Option</emph> bar.</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>একটি উপস্থাপনা বা অঙ্কন নথিতে, আপনি <emph> শুধুমাত্র পাঠ এলাকা নির্বাচন করুন </emph><link href=\"text/simpress/02/13190000.xhp\" name=\"icon\">আইকন</link>-এর মধ্য দিয়ে <emph>অপশন</emph> বারে এই মোডটিও সক্রিয় করতে পারেন।</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>In a presentation or drawing document, you can also activate the text editing mode through the <emph>Allow Quick Editing</emph> <link href=\"text/simpress/02/13180000.xhp\" name=\"icon\">icon</link> in the <emph>Options</emph> bar.</defaultinline></switchinline>"
+msgstr ""
#: 01070500.xhp
msgctxt ""
@@ -11005,8 +11005,8 @@ msgctxt ""
"01070500.xhp\n"
"par_id3153367\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>In a presentation or drawing document, you can also activate this mode through the<emph> Select Text Area Only </emph><link href=\"text/simpress/02/13190000.xhp\" name=\"icon\">icon</link> in the <emph>Option</emph> bar.</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>একটি উপস্থাপনা বা অঙ্কন নথিতে, আপনি <emph> শুধুমাত্র পাঠ এলাকা নির্বাচন করুন </emph><link href=\"text/simpress/02/13190000.xhp\" name=\"icon\">আইকন</link>-এর মধ্য দিয়ে <emph>অপশন</emph> বারে এই মোডটিও সক্রিয় করতে পারেন।</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>In a presentation or drawing document, you can also activate this mode through the<emph> Select Text Area Only </emph><link href=\"text/simpress/02/13190000.xhp\" name=\"icon\">icon</link> in the <emph>Options</emph> bar.</defaultinline></switchinline>"
+msgstr ""
#: 01070500.xhp
msgctxt ""
diff --git a/source/bn/helpcontent2/source/text/simpress.po b/source/bn/helpcontent2/source/text/simpress.po
index 03d7139877e..04e43cfe597 100644
--- a/source/bn/helpcontent2/source/text/simpress.po
+++ b/source/bn/helpcontent2/source/text/simpress.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: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: 2016-04-16 22:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1615,307 +1615,3 @@ msgctxt ""
"help.text"
msgid "$[officename] Impress gives you the choice of running a slide show automatically or manually."
msgstr "$[officename] রেখাপাত করা একটি স্লাইড দেখান অথবা স্বয়ংক্রিয়ভাবে নিজহাতে চালার আপনাকে পছন্দ দেয়।"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"tit\n"
-"help.text"
-msgid "Presenter Console Keyboard Shortcuts"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"bm_id0921200912285678\n"
-"help.text"
-msgid "<bookmark_value>Presenter Console shortcuts</bookmark_value>"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"hd_id0921201912165661\n"
-"help.text"
-msgid "Presenter Console Keyboard Shortcuts"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921201912165656\n"
-"help.text"
-msgid "When running a slide show using the Presenter Console, you can use the following keys:"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104028\n"
-"help.text"
-msgid "Action"
-msgstr "কাজ"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104093\n"
-"help.text"
-msgid "Key or Keys"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110418\n"
-"help.text"
-msgid "Next slide, or next effect"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104120\n"
-"help.text"
-msgid "Left click, right arrow, down arrow, spacebar, page down, enter, return, 'N'"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104165\n"
-"help.text"
-msgid "Previous slide, or previous effect"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104115\n"
-"help.text"
-msgid "Right click, left arrow, up arrow, page up, backspace, 'P'"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104164\n"
-"help.text"
-msgid "First slide"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104148\n"
-"help.text"
-msgid "Home"
-msgstr "Home"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104221\n"
-"help.text"
-msgid "Last slide"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104277\n"
-"help.text"
-msgid "End"
-msgstr "End"
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104279\n"
-"help.text"
-msgid "Previous slide without effects"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110423\n"
-"help.text"
-msgid "Alt+Page Up"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110427\n"
-"help.text"
-msgid "Next slide without effects"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104261\n"
-"help.text"
-msgid "Alt+Page Down"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104383\n"
-"help.text"
-msgid "Black/Unblack the screen"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110431\n"
-"help.text"
-msgid "'B', '.'"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104311\n"
-"help.text"
-msgid "White/Unwhite the screen"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104359\n"
-"help.text"
-msgid "'W', ','"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104336\n"
-"help.text"
-msgid "End slide show"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104419\n"
-"help.text"
-msgid "Esc, '-'"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104460\n"
-"help.text"
-msgid "Go to slide number"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110440\n"
-"help.text"
-msgid "Number followed by Enter"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104427\n"
-"help.text"
-msgid "Grow/Shrink size of notes font"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104442\n"
-"help.text"
-msgid "'G', 'S'"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104473\n"
-"help.text"
-msgid "Scroll notes up/down"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110459\n"
-"help.text"
-msgid "'A', 'Z'"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110456\n"
-"help.text"
-msgid "Move caret in notes view backward/forward"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id092120090110457\n"
-"help.text"
-msgid "'H', 'L'"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104566\n"
-"help.text"
-msgid "Show the Presenter Console"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104544\n"
-"help.text"
-msgid "Ctrl-'1'"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104535\n"
-"help.text"
-msgid "Show the Presentation Notes"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104680\n"
-"help.text"
-msgid "Ctrl-'2'"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104634\n"
-"help.text"
-msgid "Show the Slides Overview"
-msgstr ""
-
-#: presenter.xhp
-msgctxt ""
-"presenter.xhp\n"
-"par_id0921200901104632\n"
-"help.text"
-msgid "Ctrl-'3'"
-msgstr ""
diff --git a/source/bn/helpcontent2/source/text/simpress/04.po b/source/bn/helpcontent2/source/text/simpress/04.po
index e9bb2c08da9..d7d1f08497c 100644
--- a/source/bn/helpcontent2/source/text/simpress/04.po
+++ b/source/bn/helpcontent2/source/text/simpress/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: 2016-01-08 13:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1623,3 +1623,307 @@ msgctxt ""
"help.text"
msgid "Change to Normal Mode with the active slide."
msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"tit\n"
+"help.text"
+msgid "Presenter Console Keyboard Shortcuts"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"bm_id0921200912285678\n"
+"help.text"
+msgid "<bookmark_value>Presenter Console shortcuts</bookmark_value>"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"hd_id0921201912165661\n"
+"help.text"
+msgid "Presenter Console Keyboard Shortcuts"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921201912165656\n"
+"help.text"
+msgid "When running a slide show using the Presenter Console, you can use the following keys:"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104028\n"
+"help.text"
+msgid "Action"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104093\n"
+"help.text"
+msgid "Key or Keys"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110418\n"
+"help.text"
+msgid "Next slide, or next effect"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104120\n"
+"help.text"
+msgid "Left click, right arrow, down arrow, spacebar, page down, enter, return, 'N'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104165\n"
+"help.text"
+msgid "Previous slide, or previous effect"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104115\n"
+"help.text"
+msgid "Right click, left arrow, up arrow, page up, backspace, 'P'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104164\n"
+"help.text"
+msgid "First slide"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104148\n"
+"help.text"
+msgid "Home"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104221\n"
+"help.text"
+msgid "Last slide"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104277\n"
+"help.text"
+msgid "End"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104279\n"
+"help.text"
+msgid "Previous slide without effects"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110423\n"
+"help.text"
+msgid "Alt+Page Up"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110427\n"
+"help.text"
+msgid "Next slide without effects"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104261\n"
+"help.text"
+msgid "Alt+Page Down"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104383\n"
+"help.text"
+msgid "Black/Unblack the screen"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110431\n"
+"help.text"
+msgid "'B', '.'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104311\n"
+"help.text"
+msgid "White/Unwhite the screen"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104359\n"
+"help.text"
+msgid "'W', ','"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104336\n"
+"help.text"
+msgid "End slide show"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104419\n"
+"help.text"
+msgid "Esc, '-'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104460\n"
+"help.text"
+msgid "Go to slide number"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110440\n"
+"help.text"
+msgid "Number followed by Enter"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104427\n"
+"help.text"
+msgid "Grow/Shrink size of notes font"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104442\n"
+"help.text"
+msgid "'G', 'S'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104473\n"
+"help.text"
+msgid "Scroll notes up/down"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110459\n"
+"help.text"
+msgid "'A', 'Z'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110456\n"
+"help.text"
+msgid "Move caret in notes view backward/forward"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id092120090110457\n"
+"help.text"
+msgid "'H', 'L'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104566\n"
+"help.text"
+msgid "Show the Presenter Console"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104544\n"
+"help.text"
+msgid "Ctrl-'1'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104535\n"
+"help.text"
+msgid "Show the Presentation Notes"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104680\n"
+"help.text"
+msgid "Ctrl-'2'"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104634\n"
+"help.text"
+msgid "Show the Slides Overview"
+msgstr ""
+
+#: presenter.xhp
+msgctxt ""
+"presenter.xhp\n"
+"par_id0921200901104632\n"
+"help.text"
+msgid "Ctrl-'3'"
+msgstr ""
diff --git a/source/bn/helpcontent2/source/text/simpress/guide.po b/source/bn/helpcontent2/source/text/simpress/guide.po
index 6da7a41f341..e362d249ef5 100644
--- a/source/bn/helpcontent2/source/text/simpress/guide.po
+++ b/source/bn/helpcontent2/source/text/simpress/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: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: 2016-05-08 00:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2160,6 +2160,14 @@ msgctxt ""
msgid "<link href=\"https://itunes.apple.com/us/app/libreoffice-remote-for-impress/id806879890?mt=8\" name=\"Impress Remote in Apple Itunes Store\">Impress Remote in Apple iTunes Store</link>"
msgstr ""
+#: impress_remote.xhp
+msgctxt ""
+"impress_remote.xhp\n"
+"par_id631512838846263\n"
+"help.text"
+msgid "<link href=\"text/simpress/guide/presenter_console.xhp\" name=\"The Presenter Console\">The Presenter Console</link>"
+msgstr ""
+
#: individual.xhp
msgctxt ""
"individual.xhp\n"
@@ -4648,6 +4656,278 @@ msgctxt ""
msgid "<link href=\"text/shared/guide/insert_bitmap.xhp\">Insert images</link>"
msgstr ""
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"tit\n"
+"help.text"
+msgid "Using the Presenter Console"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id190820172252141064\n"
+"help.text"
+msgid "<link href=\"text/simpress/guide/presenter_console.xhp\">Using the Presenter Console</link>"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id190820172252291885\n"
+"help.text"
+msgid "<ahelp hid=\".\">The Presenter Console displays the slide show in an external screen (projector or large television), while the presentation controls are shown in the computer screen.</ahelp>"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id190820172252291668\n"
+"help.text"
+msgid "The Presenter Console provides extra control over slide shows by using different views on your computer display and on the display seen by the audience. The view you see on your computer display includes the current slide, the upcoming slide, optionally the slide notes, and a presentation timer."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id91512579485395\n"
+"help.text"
+msgid "The Presenter Console works only on an operating system that supports multiple displays and only when two displays are connected (one may be the laptop built-in display)."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id391512577186778\n"
+"help.text"
+msgid "Presenter console activation"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id21512577205388\n"
+"help.text"
+msgid "To enable the Presenter Console:"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id351512577323192\n"
+"help.text"
+msgid "<item type=\"item_type\">Tools - Options - %PRODUCTNAME Impres - General</item>"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id411512577389978\n"
+"help.text"
+msgid "Select <emph>Enable Presenter Console</emph> in the Presentation area."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id261512578116942\n"
+"help.text"
+msgid "<image src=\"media/screenshots/cui/ui/optionsdialog/impressoptionsgeneraldialog.png\" width=\"793px\" height=\"538px\"> <alt id=\"alt_id821512578116950\">Enable Presenter Console option</alt> </image>"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id371512836579028\n"
+"help.text"
+msgid "To activate the Presenter Console:"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id101512577717469\n"
+"help.text"
+msgid "Connect an auxiliary display to your computer,"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id391512577726275\n"
+"help.text"
+msgid "Run the slide show. Press F5 or Shift-F5 or choose <item type=\"menuitem\">Slide Show - Start from First Slide</item> or <item type=\"menuitem\">Start from Current Slide</item>."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id911512577777440\n"
+"help.text"
+msgid "Presenter console controls"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id721512827886185\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sd_PresenterConsole04.png\" id=\"img_id401512827886185\" width=\"640\" height=\"72\"> <alt id=\"alt_id71512827886185\">Presenter Console Controls</alt> </image>"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id71512828085688\n"
+"help.text"
+msgid "<emph>Previous</emph>: move to previous slide"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id61512828110394\n"
+"help.text"
+msgid "<emph>Next</emph>: move to next slide"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id981512828129990\n"
+"help.text"
+msgid "<emph>Notes</emph>: display the Presenter Console Notes mode"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id101512828220096\n"
+"help.text"
+msgid "<emph>Slide</emph>: display the Presenter Console Slide sorter mode"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id241512828268769\n"
+"help.text"
+msgid "<emph>Restart</emph>: restart the presentation from slide one."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id731512828322875\n"
+"help.text"
+msgid "<emph>Exchange</emph>: Switch the displays between the computer and the presentation display."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id891512828892146\n"
+"help.text"
+msgid "<emph>Close</emph>: In the Notes and Slide Sorter mode, return to the Normal mode."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id281512836182615\n"
+"help.text"
+msgid "Presenter Console Keyboard Shortcuts"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id791512827206666\n"
+"help.text"
+msgid "Presenter Console modes"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id181512827240072\n"
+"help.text"
+msgid "Normal Mode"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id341512828780413\n"
+"help.text"
+msgid "The Normal mode shows the current slide on the left and the next slide on the right of the computer display."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id311512825411947\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sd_PresenterConsole01.png\" id=\"img_id481512825411947\" width=\"640\" height=\"360\"> <alt id=\"alt_id151512825411947\">resenter console normal mode</alt> </image>"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id51512827289580\n"
+"help.text"
+msgid "Notes mode"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id711512828774884\n"
+"help.text"
+msgid "The Notes mode displays the current slide on the left, the slides notes on the right and the next slide below the current slide."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id961512827293400\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sd_PresenterConsole03.png\" id=\"img_id651512827293401\" width=\"640\" height=\"360\"> <alt id=\"alt_id881512827293401\">Notes mode</alt> </image>"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"hd_id801512827429345\n"
+"help.text"
+msgid "Slide sorter mode"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id571512828767315\n"
+"help.text"
+msgid "The Slide Sorter mode displays all slides in the computer screen and allows to display the selected slide out of the presentation order."
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id721512827434997\n"
+"help.text"
+msgid "<image src=\"media/helpimg/sd_PresenterConsole02.png\" id=\"img_id831512827434997\" width=\"640\" height=\"360\"> <alt id=\"alt_id221512827434997\">Slide sorter mode</alt> </image>"
+msgstr ""
+
+#: presenter_console.xhp
+msgctxt ""
+"presenter_console.xhp\n"
+"par_id311512837936329\n"
+"help.text"
+msgid "<link href=\"text/simpress/guide/impress_remote.xhp\" name=\"Impress Remote User Guide\">Impress Remote User Guide</link>"
+msgstr ""
+
#: print_tofit.xhp
msgctxt ""
"print_tofit.xhp\n"
diff --git a/source/bn/helpcontent2/source/text/smath.po b/source/bn/helpcontent2/source/text/smath.po
index 9a5d6264ac7..944bed1ff0f 100644
--- a/source/bn/helpcontent2/source/text/smath.po
+++ b/source/bn/helpcontent2/source/text/smath.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: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2015-08-25 12:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -120,70 +120,6 @@ msgctxt ""
msgid "This menu contains the general commands for working with formula documents, such as open, save and print."
msgstr "সূত্র নথিতে কাজ করার জন্য খোলা, সংরক্ষণ এবং মুদ্রণ এর মত সাধারণ কমান্ড এই মেনুতে সক্রিয় থাকে।"
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3148489\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
-msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">খুলুন</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3149501\n"
-"help.text"
-msgid "<link href=\"text/shared/autopi/01000000.xhp\" name=\"AutoPilot\">Wizards</link>"
-msgstr "<link href=\"text/shared/autopi/01000000.xhp\" name=\"AutoPilot\">উইজার্ড</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"par_id3148840\n"
-"help.text"
-msgid "Use a Wizard to create interactive documents, such as professional letters and faxes, into which you can insert your saved formulas."
-msgstr "মিথস্ক্রিয় নথি তৈরি করতে একটি উইজার্ড ব্যবহার করুন, যেমন প্রশাসনিক চিঠি এবং ফ্যাক্স, যেখানে আপনি আপনার সংরক্ষিত সূত্রগুলো সন্নিবেশ করাতে পারবেন।"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3153251\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
-msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">নতুনভাবে সংরক্ষণ করুন</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3149871\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
-msgstr "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">সংস্করণ</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3146325\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
-msgstr "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">বৈশিষ্ট্যাবলী</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3155621\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
-msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">মুদ্রণ করুন</link>"
-
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"hd_id3145826\n"
-"help.text"
-msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">Printer Setup</link>"
-msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">মুদ্রণযন্ত্র সেটআপ</link>"
-
#: main0102.xhp
msgctxt ""
"main0102.xhp\n"
diff --git a/source/bn/helpcontent2/source/text/swriter/guide.po b/source/bn/helpcontent2/source/text/swriter/guide.po
index 1df85ad0cd3..f08ebe91e17 100644
--- a/source/bn/helpcontent2/source/text/swriter/guide.po
+++ b/source/bn/helpcontent2/source/text/swriter/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: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-18 12:32+0100\n"
"PO-Revision-Date: 2016-07-05 17:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7213,7 +7213,7 @@ msgctxt ""
"indices_enter.xhp\n"
"par_id3150933\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - </item><item type=\"menuitem\">Chapter</item><item type=\"menuitem\"> Numbering</item> and click the <emph>Numbering</emph> tab."
+msgid "Choose <item type=\"menuitem\">Tools - Chapter Numbering</item> and click the <emph>Numbering</emph> tab."
msgstr ""
#: indices_enter.xhp
@@ -15704,6 +15704,14 @@ msgctxt ""
msgid "Moves the cursor to the footer."
msgstr "কার্সারটি পাদটীকায় সরানো হয়।"
+#: text_nav_keyb.xhp
+msgctxt ""
+"text_nav_keyb.xhp\n"
+"par_id921513466017508\n"
+"help.text"
+msgid "<link href=\"text/shared/02/20050000.xhp\" name=\"Selection modes\">Selection Modes</link>"
+msgstr ""
+
#: text_rotate.xhp
msgctxt ""
"text_rotate.xhp\n"
diff --git a/source/bn/officecfg/registry/data/org/openoffice/Office/UI.po b/source/bn/officecfg/registry/data/org/openoffice/Office/UI.po
index 50c3d4e845b..e134c8e7868 100644
--- a/source/bn/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/bn/officecfg/registry/data/org/openoffice/Office/UI.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: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: 2016-12-01 12:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2837,8 +2837,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:Hide\n"
"Label\n"
"value.text"
-msgid "~Hide Sheets"
-msgstr "শীট আড়াল (~H)"
+msgid "~Hide Sheet"
+msgstr ""
#: CalcCommands.xcu
#, fuzzy
@@ -3600,17 +3600,8 @@ msgctxt ""
"..CalcCommands.UserInterface.Commands..uno:EditLinks\n"
"Label\n"
"value.text"
-msgid "Edit Lin~ks..."
-msgstr "লিংক সম্পাদনা... (~k)"
-
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:EditLinks\n"
-"ContextLabel\n"
-"value.text"
-msgid "Lin~ks..."
-msgstr "লিংক... (~k)"
+msgid "Lin~ks to External Files..."
+msgstr ""
#: CalcCommands.xcu
msgctxt ""
@@ -7001,16 +6992,6 @@ msgstr "স্লাইড (~e)"
#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Commands..uno:SlideNavigateMenu\n"
-"Label\n"
-"value.text"
-msgid "Navigate"
-msgstr "ন্যাভিগেট"
-
-#: DrawImpressCommands.xcu
-#, fuzzy
-msgctxt ""
-"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:SlideMoveMenu\n"
"Label\n"
"value.text"
@@ -7621,6 +7602,15 @@ msgstr "পৃষ্ঠা নম্বর (~P)"
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlideField\n"
+"Label\n"
+"value.text"
+msgid "~Slide Number"
+msgstr ""
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:InsertPageTitleField\n"
"Label\n"
"value.text"
@@ -7630,6 +7620,15 @@ msgstr ""
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlideTitleField\n"
+"Label\n"
+"value.text"
+msgid "Slide Tit~le"
+msgstr ""
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:InsertPagesField\n"
"Label\n"
"value.text"
@@ -7639,6 +7638,15 @@ msgstr "মোট পৃষ্ঠা (~C)"
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Commands..uno:InsertSlidesField\n"
+"Label\n"
+"value.text"
+msgid "Slide ~Count"
+msgstr ""
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:ModifyField\n"
"Label\n"
"value.text"
@@ -7861,8 +7869,8 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:ManageLinks\n"
"Label\n"
"value.text"
-msgid "Lin~ks..."
-msgstr "লিংক... (~k)"
+msgid "Lin~ks to External Files..."
+msgstr ""
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7953,7 +7961,7 @@ msgctxt ""
"..DrawImpressCommands.UserInterface.Commands..uno:ImportSlideFromFile\n"
"Label\n"
"value.text"
-msgid "Import Slides..."
+msgid "Insert Slide from File..."
msgstr ""
#: DrawImpressCommands.xcu
@@ -9184,6 +9192,15 @@ msgstr "পৃষ্ঠা নম্বর... (~a)"
#: DrawImpressCommands.xcu
msgctxt ""
"DrawImpressCommands.xcu\n"
+"..DrawImpressCommands.UserInterface.Popups..uno:InsertSlideNumber\n"
+"Label\n"
+"value.text"
+msgid "S~lide Number..."
+msgstr ""
+
+#: DrawImpressCommands.xcu
+msgctxt ""
+"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:InsertDateAndTime\n"
"Label\n"
"value.text"
@@ -17739,14 +17756,13 @@ msgid "H~alf-width"
msgstr "অর্ধ-প্রস্থ (~a)"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:InsertDoc\n"
"Label\n"
"value.text"
-msgid "Doc~ument..."
-msgstr "নথি... (~D)"
+msgid "Text from File..."
+msgstr ""
#: GenericCommands.xcu
msgctxt ""
@@ -17923,6 +17939,15 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ViewSidebarStyles\n"
+"Label\n"
+"value.text"
+msgid "Styles"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:OutlineRight\n"
"Label\n"
"value.text"
@@ -19572,25 +19597,6 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
-"Label\n"
-"value.text"
-msgid "Charmap"
-msgstr ""
-
-#: GenericCommands.xcu
-#, fuzzy
-msgctxt ""
-"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
-"TooltipLabel\n"
-"value.text"
-msgid "Insert Special Characters"
-msgstr "বিশেষ অক্ষর সন্নিবেশ"
-
-#: GenericCommands.xcu
-msgctxt ""
-"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:TransformRotationX\n"
"Label\n"
"value.text"
@@ -20755,6 +20761,34 @@ msgstr "বিশেষ অক্ষর সন্নিবেশ"
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"Label\n"
+"value.text"
+msgid "Symbol"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"ContextLabel\n"
+"value.text"
+msgid "S~pecial Character..."
+msgstr ""
+
+#: GenericCommands.xcu
+#, fuzzy
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:CharmapControl\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Insert Special Characters"
+msgstr "বিশেষ অক্ষর সন্নিবেশ"
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ViewDataSourceBrowser\n"
"Label\n"
"value.text"
@@ -20800,6 +20834,15 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:ExportAsMenu\n"
+"Label\n"
+"value.text"
+msgid "~Export As"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportToPDF\n"
"Label\n"
"value.text"
@@ -20865,14 +20908,13 @@ msgid "EPUB"
msgstr ""
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportToEPUB\n"
"ContextLabel\n"
"value.text"
-msgid "~Export as EPUB..."
-msgstr "PDF হিসেবে এক্সপোর্ট... (~D)"
+msgid "Export as E~PUB..."
+msgstr ""
#: GenericCommands.xcu
#, fuzzy
@@ -23270,6 +23312,15 @@ msgctxt ""
msgid "~Restart in Safe Mode..."
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:NavigateMenu\n"
+"Label\n"
+"value.text"
+msgid "Navigate"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -25992,8 +26043,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:ShowHiddenParagraphs\n"
"Label\n"
"value.text"
-msgid "~Hidden Paragraphs"
-msgstr "লুকানো অনুচ্ছেদ (~H)"
+msgid "Field ~Hidden Paragraphs"
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
@@ -28002,8 +28053,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:LinkDialog\n"
"Label\n"
"value.text"
-msgid "Lin~ks..."
-msgstr "লিংক... (~k)"
+msgid "Lin~ks to External Files..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
@@ -30763,7 +30814,7 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 1&amp;FamilyName:string=NumberingStyles\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 123&amp;FamilyName:string=NumberingStyles\n"
"Label\n"
"value.text"
msgid "Number List"
@@ -30790,10 +30841,64 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering 4&amp;FamilyName:string=NumberingStyles\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering ABC&amp;FamilyName:string=NumberingStyles\n"
"Label\n"
"value.text"
-msgid "Roman List"
+msgid "Alphabet Uppercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaListStyle\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Uppercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Alphabet Uppercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering abc&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaLowListStyle\n"
+"Label\n"
+"value.text"
+msgid "Alphabet Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:AlphaLowListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Alphabet Lowercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering IVX&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Roman Uppercase List"
msgstr ""
#: WriterCommands.xcu
@@ -30802,7 +30907,7 @@ msgctxt ""
"..WriterCommands.UserInterface.Popups..uno:RomanListStyle\n"
"Label\n"
"value.text"
-msgid "Roman List"
+msgid "Roman Uppercase List"
msgstr ""
#: WriterCommands.xcu
@@ -30811,7 +30916,34 @@ msgctxt ""
"..WriterCommands.UserInterface.Popups..uno:RomanListStyle\n"
"TooltipLabel\n"
"value.text"
-msgid "Roman List Style"
+msgid "Roman Uppercase List Style"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Numbering ivx&amp;FamilyName:string=NumberingStyles\n"
+"Label\n"
+"value.text"
+msgid "Roman Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:RomanLowListStyle\n"
+"Label\n"
+"value.text"
+msgid "Roman Lowercase List"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:RomanLowListStyle\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Roman Lowercase List Style"
msgstr ""
#: WriterCommands.xcu
diff --git a/source/bn/sd/messages.po b/source/bn/sd/messages.po
index de4a009890f..6bbb747ce4d 100644
--- a/source/bn/sd/messages.po
+++ b/source/bn/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 15:29+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1595,917 +1595,927 @@ msgid "Master Slide"
msgstr ""
#: strings.hrc:287
+msgctxt "STR_MASTERSLIDE_LABEL"
+msgid "Master Slide:"
+msgstr ""
+
+#: strings.hrc:288
#, fuzzy
msgctxt "STR_MASTERPAGE_NAME"
msgid "Master Page"
msgstr "মাস্টার পৃষ্ঠা"
-#: strings.hrc:288
+#: strings.hrc:289
+msgctxt "STR_MASTERPAGE_LABEL"
+msgid "Master Page:"
+msgstr ""
+
+#: strings.hrc:290
msgctxt "STR_NOTES"
msgid "(Notes)"
msgstr "(নোট)"
-#: strings.hrc:289
+#: strings.hrc:291
msgctxt "STR_HANDOUT"
msgid "Handouts"
msgstr "বিলিপত্র"
-#: strings.hrc:290
+#: strings.hrc:292
msgctxt "STR_PRESOBJ_MPTITLE"
msgid "Click to edit the title text format"
msgstr "শিরোনাম টেক্সট বিন্যাস সম্পাদনা করতে ক্লিক করুন"
-#: strings.hrc:291
+#: strings.hrc:293
msgctxt "STR_PRESOBJ_MPOUTLINE"
msgid "Click to edit the outline text format"
msgstr "টেক্সট বিন্যাসের রূপরেখা সম্পাদনা করতে ক্লিক করুন"
-#: strings.hrc:292
+#: strings.hrc:294
msgctxt "STR_PRESOBJ_MPOUTLLAYER2"
msgid "Second Outline Level"
msgstr "দ্বিতীয় রূপরেখা স্তর"
-#: strings.hrc:293
+#: strings.hrc:295
msgctxt "STR_PRESOBJ_MPOUTLLAYER3"
msgid "Third Outline Level"
msgstr "তৃতীয় রূপরেখা স্তর"
-#: strings.hrc:294
+#: strings.hrc:296
msgctxt "STR_PRESOBJ_MPOUTLLAYER4"
msgid "Fourth Outline Level"
msgstr "চতুর্থ রূপরেখা স্তর"
-#: strings.hrc:295
+#: strings.hrc:297
msgctxt "STR_PRESOBJ_MPOUTLLAYER5"
msgid "Fifth Outline Level"
msgstr "পঞ্চম রূপরেখা স্তর"
-#: strings.hrc:296
+#: strings.hrc:298
msgctxt "STR_PRESOBJ_MPOUTLLAYER6"
msgid "Sixth Outline Level"
msgstr "ষষ্ঠ রূপরেখা স্তর"
-#: strings.hrc:297
+#: strings.hrc:299
msgctxt "STR_PRESOBJ_MPOUTLLAYER7"
msgid "Seventh Outline Level"
msgstr "সপ্তম রূপরেখা স্তর"
-#: strings.hrc:298
+#: strings.hrc:300
msgctxt "STR_PRESOBJ_MPNOTESTITLE"
msgid "Click to move the slide"
msgstr "স্লাইডটি সরাতে ক্লিক করুন"
-#: strings.hrc:299
+#: strings.hrc:301
msgctxt "STR_PRESOBJ_MPNOTESTEXT"
msgid "Click to edit the notes format"
msgstr "নোটের বিন্যাস সম্পাদনা করতে ক্লিক করুন"
-#: strings.hrc:300
+#: strings.hrc:302
msgctxt "STR_PRESOBJ_TITLE"
msgid "Click to add Title"
msgstr ""
-#: strings.hrc:301
+#: strings.hrc:303
msgctxt "STR_PRESOBJ_OUTLINE"
msgid "Click to add Text"
msgstr ""
-#: strings.hrc:302
+#: strings.hrc:304
msgctxt "STR_PRESOBJ_TEXT"
msgid "Click to add Text"
msgstr ""
-#: strings.hrc:303
+#: strings.hrc:305
msgctxt "STR_PRESOBJ_NOTESTEXT"
msgid "Click to add Notes"
msgstr ""
-#: strings.hrc:304
+#: strings.hrc:306
msgctxt "STR_PRESOBJ_GRAPHIC"
msgid "Double-click to add an Image"
msgstr ""
-#: strings.hrc:305
+#: strings.hrc:307
msgctxt "STR_PRESOBJ_OBJECT"
msgid "Double-click to add an Object"
msgstr ""
-#: strings.hrc:306
+#: strings.hrc:308
msgctxt "STR_PRESOBJ_CHART"
msgid "Double-click to add a Chart"
msgstr ""
-#: strings.hrc:307
+#: strings.hrc:309
msgctxt "STR_PRESOBJ_ORGCHART"
msgid "Double-click to add an Organization Chart"
msgstr ""
-#: strings.hrc:308
+#: strings.hrc:310
msgctxt "STR_PRESOBJ_TABLE"
msgid "Double-click to add a Spreadsheet"
msgstr ""
-#: strings.hrc:309
+#: strings.hrc:311
msgctxt "STR_LAYOUT_DEFAULT_NAME"
msgid "Default"
msgstr "পূর্বনির্ধারিত"
-#: strings.hrc:310
+#: strings.hrc:312
msgctxt "STR_LAYOUT_DEFAULT_TITLE_NAME"
msgid "Title"
msgstr "শিরোনাম"
-#: strings.hrc:311
+#: strings.hrc:313
msgctxt "STR_STANDARD_STYLESHEET_NAME"
msgid "Default"
msgstr "পূর্বনির্ধারিত"
-#: strings.hrc:312
+#: strings.hrc:314
msgctxt "STR_UNDO_MOVEPAGES"
msgid "Move slides"
msgstr "স্লাইড সরান"
-#: strings.hrc:313
+#: strings.hrc:315
msgctxt "STR_POOLSHEET_MEASURE"
msgid "Dimension Line"
msgstr "মাত্রা রেখা"
-#: strings.hrc:314
+#: strings.hrc:316
msgctxt "STR_POOLSHEET_OBJNOLINENOFILL"
msgid "Object with no fill and no line"
msgstr ""
-#: strings.hrc:315
+#: strings.hrc:317
msgctxt "STR_POOLSHEET_OBJWITHARROW"
msgid "Object with arrow"
msgstr "তীরচিহ্নযুক্ত বস্তু"
-#: strings.hrc:316
+#: strings.hrc:318
msgctxt "STR_POOLSHEET_OBJWITHSHADOW"
msgid "Object with shadow"
msgstr "ছায়াযুক্ত বস্তু"
-#: strings.hrc:317
+#: strings.hrc:319
msgctxt "STR_POOLSHEET_OBJWITHOUTFILL"
msgid "Object without fill"
msgstr "ভরাট না করা বস্তু"
-#: strings.hrc:318
+#: strings.hrc:320
msgctxt "STR_POOLSHEET_TEXT"
msgid "Text"
msgstr "টেক্সট"
-#: strings.hrc:319
+#: strings.hrc:321
msgctxt "STR_POOLSHEET_TEXTBODY"
msgid "Text body"
msgstr "টেক্সট বডি"
-#: strings.hrc:320
+#: strings.hrc:322
msgctxt "STR_POOLSHEET_TEXTBODY_JUSTIFY"
msgid "Text body justified"
msgstr "উভয়প্রান্তিক টেক্সট বডি"
-#: strings.hrc:321
+#: strings.hrc:323
msgctxt "STR_POOLSHEET_TEXTBODY_INDENT"
msgid "First line indent"
msgstr "প্রথম লাইন ইন্ডেন্ট"
-#: strings.hrc:322
+#: strings.hrc:324
msgctxt "STR_POOLSHEET_TITLE"
msgid "Title"
msgstr "শিরোনাম"
-#: strings.hrc:323
+#: strings.hrc:325
msgctxt "STR_POOLSHEET_TITLE1"
msgid "Title1"
msgstr "শিরোনাম১"
-#: strings.hrc:324
+#: strings.hrc:326
msgctxt "STR_POOLSHEET_TITLE2"
msgid "Title2"
msgstr "শিরোনাম২"
-#: strings.hrc:325
+#: strings.hrc:327
msgctxt "STR_POOLSHEET_HEADLINE"
msgid "Heading"
msgstr "শিরোনাম"
-#: strings.hrc:326
+#: strings.hrc:328
msgctxt "STR_POOLSHEET_HEADLINE1"
msgid "Heading1"
msgstr "শিরোনাম১"
-#: strings.hrc:327
+#: strings.hrc:329
msgctxt "STR_POOLSHEET_HEADLINE2"
msgid "Heading2"
msgstr "শিরোনাম২"
-#: strings.hrc:328
+#: strings.hrc:330
msgctxt "STR_PSEUDOSHEET_TITLE"
msgid "Title"
msgstr "শিরোনাম"
-#: strings.hrc:329
+#: strings.hrc:331
msgctxt "STR_PSEUDOSHEET_SUBTITLE"
msgid "Subtitle"
msgstr "উপশিরোনাম"
-#: strings.hrc:330
+#: strings.hrc:332
msgctxt "STR_PSEUDOSHEET_OUTLINE"
msgid "Outline"
msgstr "রূপরেখা"
-#: strings.hrc:331
+#: strings.hrc:333
msgctxt "STR_PSEUDOSHEET_BACKGROUNDOBJECTS"
msgid "Background objects"
msgstr "পটভূমির বস্তু"
-#: strings.hrc:332
+#: strings.hrc:334
msgctxt "STR_PSEUDOSHEET_BACKGROUND"
msgid "Background"
msgstr "পটভূমি"
-#: strings.hrc:333
+#: strings.hrc:335
msgctxt "STR_PSEUDOSHEET_NOTES"
msgid "Notes"
msgstr "নোট"
-#: strings.hrc:334
+#: strings.hrc:336
msgctxt "STR_POWERPOINT_IMPORT"
msgid "PowerPoint Import"
msgstr "PowerPoint ইমপোর্ট"
-#: strings.hrc:335
+#: strings.hrc:337
msgctxt "STR_SAVE_DOC"
msgid "Save Document"
msgstr "নথি সংরক্ষণ "
-#: strings.hrc:336
+#: strings.hrc:338
msgctxt "STR_POOLSHEET_BANDED_CELL"
msgid "Banding cell"
msgstr "ব্যান্ডিং সেল"
-#: strings.hrc:337
+#: strings.hrc:339
msgctxt "STR_POOLSHEET_HEADER"
msgid "Header"
msgstr "শীর্ষচরণ"
-#: strings.hrc:338
+#: strings.hrc:340
msgctxt "STR_POOLSHEET_TOTAL"
msgid "Total line"
msgstr "মোট লাইন"
-#: strings.hrc:339
+#: strings.hrc:341
msgctxt "STR_POOLSHEET_FIRST_COLUMN"
msgid "First column"
msgstr "প্রথম কলাম"
-#: strings.hrc:340
+#: strings.hrc:342
msgctxt "STR_POOLSHEET_LAST_COLUMN"
msgid "Last column"
msgstr "শেষ কলাম"
-#: strings.hrc:341
+#: strings.hrc:343
msgctxt "STR_ENTER_PIN"
msgid "Enter PIN:"
msgstr ""
-#: strings.hrc:342
+#: strings.hrc:344
msgctxt "STR_DEAUTHORISE_CLIENT"
msgid "Remove client authorisation"
msgstr ""
-#: strings.hrc:343
+#: strings.hrc:345
msgctxt "STR_SHRINK_FONT_SIZE"
msgid "Shrink font size"
msgstr ""
-#: strings.hrc:344
+#: strings.hrc:346
msgctxt "STR_GROW_FONT_SIZE"
msgid "Grow font size"
msgstr ""
#. Names and descriptions of the Draw/Impress accessibility views
#. ==============================================================
-#: strings.hrc:349
+#: strings.hrc:351
msgctxt "SID_SD_A11Y_D_DRAWVIEW_N"
msgid "Drawing View"
msgstr "অঙ্কন দৃশ্যপট"
-#: strings.hrc:350
+#: strings.hrc:352
msgctxt "SID_SD_A11Y_D_DRAWVIEW_D"
msgid "This is where you create and edit drawings."
msgstr "আপনি এখানে আঁকতে ও তা সম্পাদনা করতে পারেন।"
-#: strings.hrc:351
+#: strings.hrc:353
msgctxt "SID_SD_A11Y_I_DRAWVIEW_N"
msgid "Drawing View"
msgstr "অঙ্কন দৃশ্যপট"
-#: strings.hrc:352
+#: strings.hrc:354
msgctxt "SID_SD_A11Y_I_DRAWVIEW_D"
msgid "This is where you create and edit slides."
msgstr "আপনি এখানে স্লাইড তৈরি ও সম্পাদনা করতে পারেন।"
-#: strings.hrc:353
+#: strings.hrc:355
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_N"
msgid "Outline View"
msgstr "রূপরেখা দৃশ্যপট"
-#: strings.hrc:354
+#: strings.hrc:356
msgctxt "SID_SD_A11Y_I_OUTLINEVIEW_D"
msgid "This is where you enter or edit text in list form."
msgstr "আপনি এখানে টেক্সট তালিকা আকারে সন্নিবেশ করাতে অথবা সম্পাদনা করতে পারেন।"
-#: strings.hrc:355
+#: strings.hrc:357
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_N"
msgid "Slides View"
msgstr "স্লাইড দৃশ্যপট"
-#: strings.hrc:356
+#: strings.hrc:358
msgctxt "SID_SD_A11Y_I_SLIDEVIEW_D"
msgid "This is where you sort slides."
msgstr "আপনি এখানে স্লাইড সাজাতে পারেন।"
-#: strings.hrc:357
+#: strings.hrc:359
msgctxt "SID_SD_A11Y_I_NOTESVIEW_N"
msgid "Notes View"
msgstr "নোট দৃশ্যপট"
-#: strings.hrc:358
+#: strings.hrc:360
msgctxt "SID_SD_A11Y_I_NOTESVIEW_D"
msgid "This is where you enter and view notes."
msgstr "আপনি এখানে নোট সন্নিবেশ এবং প্রদর্শন করতে পারেন।"
-#: strings.hrc:359
+#: strings.hrc:361
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_N"
msgid "Handout View"
msgstr "বিলিপত্র দৃশ্যপট"
-#: strings.hrc:360
+#: strings.hrc:362
msgctxt "SID_SD_A11Y_I_HANDOUTVIEW_D"
msgid "This is where you decide on the layout for handouts."
msgstr "আপনি এখানে বিলিপত্রের বহির্বিন্যাস সম্পর্কিত সিদ্ধান্ত নিতে পারেন।"
-#: strings.hrc:361
+#: strings.hrc:363
#, fuzzy
msgctxt "SID_SD_A11Y_P_TITLE_N"
msgid "PresentationTitle"
msgstr "উপস্থাপনা"
-#: strings.hrc:362
+#: strings.hrc:364
msgctxt "SID_SD_A11Y_P_OUTLINER_N"
msgid "PresentationOutliner"
msgstr ""
-#: strings.hrc:363
+#: strings.hrc:365
msgctxt "SID_SD_A11Y_P_SUBTITLE_N"
msgid "PresentationSubtitle"
msgstr ""
-#: strings.hrc:364
+#: strings.hrc:366
#, fuzzy
msgctxt "SID_SD_A11Y_P_PAGE_N"
msgid "PresentationPage"
msgstr "উপস্থাপনা"
-#: strings.hrc:365
+#: strings.hrc:367
#, fuzzy
msgctxt "SID_SD_A11Y_P_NOTES_N"
msgid "PresentationNotes"
msgstr "উপস্থাপনা"
-#: strings.hrc:366
+#: strings.hrc:368
#, fuzzy
msgctxt "SID_SD_A11Y_P_HANDOUT_N"
msgid "Handout"
msgstr "বিলিপত্র"
-#: strings.hrc:367
+#: strings.hrc:369
msgctxt "SID_SD_A11Y_P_UNKNOWN_N"
msgid "UnknownAccessiblePresentationShape"
msgstr ""
-#: strings.hrc:368
+#: strings.hrc:370
msgctxt "SID_SD_A11Y_P_TITLE_D"
msgid "PresentationTitleShape"
msgstr ""
-#: strings.hrc:369
+#: strings.hrc:371
msgctxt "SID_SD_A11Y_P_OUTLINER_D"
msgid "PresentationOutlinerShape"
msgstr ""
-#: strings.hrc:370
+#: strings.hrc:372
msgctxt "SID_SD_A11Y_P_SUBTITLE_D"
msgid "PresentationSubtitleShape"
msgstr ""
-#: strings.hrc:371
+#: strings.hrc:373
#, fuzzy
msgctxt "SID_SD_A11Y_P_PAGE_D"
msgid "PresentationPageShape"
msgstr "উপস্থাপনা"
-#: strings.hrc:372
+#: strings.hrc:374
msgctxt "SID_SD_A11Y_P_NOTES_D"
msgid "PresentationNotesShape"
msgstr ""
-#: strings.hrc:373
+#: strings.hrc:375
msgctxt "SID_SD_A11Y_P_HANDOUT_D"
msgid "PresentationHandoutShape"
msgstr ""
-#: strings.hrc:374
+#: strings.hrc:376
msgctxt "SID_SD_A11Y_P_UNKNOWN_D"
msgid "Unknown accessible presentation shape"
msgstr ""
-#: strings.hrc:375
+#: strings.hrc:377
#, fuzzy
msgctxt "SID_SD_A11Y_P_FOOTER_N"
msgid "PresentationFooter"
msgstr "উপস্থাপনা মোড"
-#: strings.hrc:376
+#: strings.hrc:378
msgctxt "SID_SD_A11Y_P_FOOTER_D"
msgid "PresentationFooterShape"
msgstr ""
-#: strings.hrc:377
+#: strings.hrc:379
#, fuzzy
msgctxt "SID_SD_A11Y_P_HEADER_N"
msgid "PresentationHeader"
msgstr "উপস্থাপনা"
-#: strings.hrc:378
+#: strings.hrc:380
msgctxt "SID_SD_A11Y_P_HEADER_D"
msgid "PresentationHeaderShape"
msgstr ""
-#: strings.hrc:379
+#: strings.hrc:381
msgctxt "SID_SD_A11Y_P_DATE_N"
msgid "PresentationDateAndTime"
msgstr ""
-#: strings.hrc:380
+#: strings.hrc:382
msgctxt "SID_SD_A11Y_P_DATE_D"
msgid "PresentationDateAndTimeShape"
msgstr ""
-#: strings.hrc:381
+#: strings.hrc:383
msgctxt "SID_SD_A11Y_P_NUMBER_N"
msgid "PresentationPageNumber"
msgstr ""
-#: strings.hrc:382
+#: strings.hrc:384
msgctxt "SID_SD_A11Y_P_NUMBER_D"
msgid "PresentationPageNumberShape"
msgstr ""
-#: strings.hrc:383
+#: strings.hrc:385
#, fuzzy
msgctxt "SID_SD_A11Y_D_PRESENTATION"
msgid "%PRODUCTNAME Presentation"
msgstr "%PRODUCTNAME উপস্থাপনা"
-#: strings.hrc:384
+#: strings.hrc:386
#, fuzzy
msgctxt "SID_SD_A11Y_P_TITLE_N_STYLE"
msgid "Title"
msgstr "শিরোনাম"
-#: strings.hrc:385
+#: strings.hrc:387
#, fuzzy
msgctxt "SID_SD_A11Y_P_OUTLINER_N_STYLE"
msgid "Outliner"
msgstr "রূপরেখা"
-#: strings.hrc:386
+#: strings.hrc:388
#, fuzzy
msgctxt "SID_SD_A11Y_P_SUBTITLE_N_STYLE"
msgid "Subtitle"
msgstr "উপশিরোনাম"
-#: strings.hrc:387
+#: strings.hrc:389
#, fuzzy
msgctxt "SID_SD_A11Y_P_PAGE_N_STYLE"
msgid "Page"
msgstr "পৃষ্ঠা"
-#: strings.hrc:388
+#: strings.hrc:390
#, fuzzy
msgctxt "SID_SD_A11Y_P_NOTES_N_STYLE"
msgid "Notes"
msgstr "নোট"
-#: strings.hrc:389
+#: strings.hrc:391
#, fuzzy
msgctxt "SID_SD_A11Y_P_HANDOUT_N_STYLE"
msgid "Handout"
msgstr "বিলিপত্র"
-#: strings.hrc:390
+#: strings.hrc:392
msgctxt "SID_SD_A11Y_P_UNKNOWN_N_STYLE"
msgid "Unknown Accessible Presentation Shape"
msgstr ""
-#: strings.hrc:391
+#: strings.hrc:393
#, fuzzy
msgctxt "SID_SD_A11Y_P_FOOTER_N_STYLE"
msgid "Footer"
msgstr "পাদচরণ"
-#: strings.hrc:392
+#: strings.hrc:394
#, fuzzy
msgctxt "SID_SD_A11Y_P_HEADER_N_STYLE"
msgid "Header"
msgstr "শীর্ষচরণ"
-#: strings.hrc:393
+#: strings.hrc:395
#, fuzzy
msgctxt "SID_SD_A11Y_P_DATE_N_STYLE"
msgid "Date"
msgstr "তারিখ"
-#: strings.hrc:394
+#: strings.hrc:396
#, fuzzy
msgctxt "SID_SD_A11Y_P_NUMBER_N_STYLE"
msgid "Number"
msgstr "সংখ্যা"
-#: strings.hrc:395
+#: strings.hrc:397
#, fuzzy
msgctxt "SID_SD_A11Y_D_PRESENTATION_READONLY"
msgid "(read-only)"
msgstr "(শুধুমাত্র-পাঠযোগ্য)"
-#: strings.hrc:397
+#: strings.hrc:399
msgctxt "STR_CUSTOMANIMATION_REPEAT_NONE"
msgid "none"
msgstr "কোনটি না"
-#: strings.hrc:398
+#: strings.hrc:400
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_NEXT_CLICK"
msgid "Until next click"
msgstr "পরবর্তী ক্লিক না করা পর্যন্ত"
-#: strings.hrc:399
+#: strings.hrc:401
msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_END_OF_SLIDE"
msgid "Until end of slide"
msgstr "স্লাইড শেষ না হওয়া পর্যন্ত"
-#: strings.hrc:400
+#: strings.hrc:402
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_DIRECTION_PROPERTY"
msgid "Direction:"
msgstr "দিকবিন্যাস"
-#: strings.hrc:401
+#: strings.hrc:403
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_ZOOM_PROPERTY"
msgid "Zoom:"
msgstr "বড় করা"
-#: strings.hrc:402
+#: strings.hrc:404
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SPOKES_PROPERTY"
msgid "Spokes:"
msgstr "স্পোক"
-#: strings.hrc:403
+#: strings.hrc:405
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY"
msgid "First color:"
msgstr "প্রথম কলাম"
-#: strings.hrc:404
+#: strings.hrc:406
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY"
msgid "Second color:"
msgstr "দ্বিতীয় রঙ"
-#: strings.hrc:405
+#: strings.hrc:407
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY"
msgid "Fill color:"
msgstr "প্রথম কলাম"
-#: strings.hrc:406
+#: strings.hrc:408
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_STYLE_PROPERTY"
msgid "Style:"
msgstr "শৈলী:"
-#: strings.hrc:407
+#: strings.hrc:409
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_PROPERTY"
msgid "Font:"
msgstr "ফন্ট"
-#: strings.hrc:408
+#: strings.hrc:410
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY"
msgid "Font color:"
msgstr "প্রথম কলাম"
-#: strings.hrc:409
+#: strings.hrc:411
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_SIZE_STYLE_PROPERTY"
msgid "Style:"
msgstr "শৈলী:"
-#: strings.hrc:410
+#: strings.hrc:412
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY"
msgid "Typeface:"
msgstr "টাইপফেইস"
-#: strings.hrc:411
+#: strings.hrc:413
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY"
msgid "Line color:"
msgstr "রেখার রঙ"
-#: strings.hrc:412
+#: strings.hrc:414
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SIZE_PROPERTY"
msgid "Font size:"
msgstr "ফন্টের আকার"
-#: strings.hrc:413
+#: strings.hrc:415
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SCALE_PROPERTY"
msgid "Size:"
msgstr "আকার"
-#: strings.hrc:414
+#: strings.hrc:416
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_AMOUNT_PROPERTY"
msgid "Amount:"
msgstr "Amount"
-#: strings.hrc:415
+#: strings.hrc:417
#, fuzzy
msgctxt "STR_CUSTOMANIMATION_COLOR_PROPERTY"
msgid "Color:"
msgstr "রঙ"
-#: strings.hrc:416
+#: strings.hrc:418
msgctxt "STR_CUSTOMANIMATION_NO_SOUND"
msgid "(No sound)"
msgstr "(নীরব)"
-#: strings.hrc:417
+#: strings.hrc:419
msgctxt "STR_CUSTOMANIMATION_STOP_PREVIOUS_SOUND"
msgid "(Stop previous sound)"
msgstr "(পূর্ববর্তী শব্দ বন্ধ)"
-#: strings.hrc:418
+#: strings.hrc:420
msgctxt "STR_CUSTOMANIMATION_BROWSE_SOUND"
msgid "Other sound..."
msgstr "অন্যান্য শব্দ..."
-#: strings.hrc:419
+#: strings.hrc:421
msgctxt "STR_CUSTOMANIMATION_SAMPLE"
msgid "Sample"
msgstr "নমুনা"
-#: strings.hrc:420
+#: strings.hrc:422
msgctxt "STR_CUSTOMANIMATION_TRIGGER"
msgid "Trigger"
msgstr "ট্রিগার"
-#: strings.hrc:421
+#: strings.hrc:423
msgctxt "STR_CUSTOMANIMATION_LIST_HELPTEXT"
msgid "First select the slide element and then click 'Add...' to add an animation effect."
msgstr "একটি অ্যানিমেশন আবহ যোগ করতে প্রথমে স্লাইড এলিমেন্ট নির্বাচন করুন এবং তারপর 'যোগ...' এ ক্লিক করুন।"
-#: strings.hrc:422
+#: strings.hrc:424
msgctxt "STR_CUSTOMANIMATION_USERPATH"
msgid "User paths"
msgstr ""
-#: strings.hrc:423
+#: strings.hrc:425
msgctxt "STR_CUSTOMANIMATION_ENTRANCE"
msgid "Entrance: %1"
msgstr ""
-#: strings.hrc:424
+#: strings.hrc:426
msgctxt "STR_CUSTOMANIMATION_EMPHASIS"
msgid "Emphasis: %1"
msgstr ""
-#: strings.hrc:425
+#: strings.hrc:427
msgctxt "STR_CUSTOMANIMATION_EXIT"
msgid "Exit: %1"
msgstr ""
-#: strings.hrc:426
+#: strings.hrc:428
msgctxt "STR_CUSTOMANIMATION_MOTION_PATHS"
msgid "Motion Paths: %1"
msgstr ""
-#: strings.hrc:427
+#: strings.hrc:429
#, fuzzy
msgctxt "STR_SLIDETRANSITION_NONE"
msgid "None"
msgstr "কোনটি না"
-#: strings.hrc:429
+#: strings.hrc:431
msgctxt "STR_ANNOTATION_TODAY"
msgid "Today,"
msgstr "আজ, "
-#: strings.hrc:430
+#: strings.hrc:432
msgctxt "STR_ANNOTATION_YESTERDAY"
msgid "Yesterday,"
msgstr "গতকাল,"
-#: strings.hrc:431
+#: strings.hrc:433
msgctxt "STR_ANNOTATION_NOAUTHOR"
msgid "(no author)"
msgstr "(লেখক নেই)"
-#: strings.hrc:432
+#: strings.hrc:434
msgctxt "STR_ANNOTATION_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress reached the end of the presentation. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Impress উপস্থাপনার শেষে পৌছে গেছে। আপনি কি আবার প্রথম থেকে আরম্ভ করতে চান?"
-#: strings.hrc:433
+#: strings.hrc:435
msgctxt "STR_ANNOTATION_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress reached the beginning of the presentation. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Impress উপস্থাপনার শুরুতে পৌছে গেছে। আপনি কি আবার শেষাংশ থেকে চালিয়ে যেতে চান?"
-#: strings.hrc:434
+#: strings.hrc:436
msgctxt "STR_ANNOTATION_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the end of the document. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME Draw নথির শেষে পৌছে গেছে। আপনি কি আবার প্রথম থেকে আরম্ভ করতে চান?"
-#: strings.hrc:435
+#: strings.hrc:437
msgctxt "STR_ANNOTATION_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw reached the beginning of the document. Do you want to continue at the end?"
msgstr "%PRODUCTNAME Draw নথির শুরুতে পৌছে গেছে। আপনি কি আবার শেষাংশ থেকে চালিয়ে যেতে চান?"
-#: strings.hrc:436
+#: strings.hrc:438
msgctxt "STR_ANNOTATION_UNDO_INSERT"
msgid "Insert Comment"
msgstr "মন্তব্য সন্নিবেশ"
-#: strings.hrc:437
+#: strings.hrc:439
msgctxt "STR_ANNOTATION_UNDO_DELETE"
msgid "Delete Comment(s)"
msgstr "মন্তব্য মুছে ফেলুন"
-#: strings.hrc:438
+#: strings.hrc:440
msgctxt "STR_ANNOTATION_UNDO_MOVE"
msgid "Move Comment"
msgstr "মন্তব্য স্থানান্তর"
-#: strings.hrc:439
+#: strings.hrc:441
msgctxt "STR_ANNOTATION_UNDO_EDIT"
msgid "Edit Comment"
msgstr "মন্তব্য সম্পাদনা"
-#: strings.hrc:440
+#: strings.hrc:442
msgctxt "STR_ANNOTATION_REPLY"
msgid "Reply to %1"
msgstr "%1 এর প্রতি উত্তর "
-#: strings.hrc:442
+#: strings.hrc:444
msgctxt "RID_DRAW_MEDIA_TOOLBOX"
msgid "Media Playback"
msgstr "মিডিয়া প্লে-ব্যাক"
-#: strings.hrc:443
+#: strings.hrc:445
msgctxt "RID_DRAW_TABLE_TOOLBOX"
msgid "Table"
msgstr "টেবিল"
-#: strings.hrc:445
+#: strings.hrc:447
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_GROUP_NAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: strings.hrc:446
+#: strings.hrc:448
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PRINT_GROUP"
msgid "Print"
msgstr "মুদ্রণ"
-#: strings.hrc:447
+#: strings.hrc:449
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT"
msgid "Document"
msgstr "নথি"
-#: strings.hrc:448
+#: strings.hrc:450
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE"
msgid "Slides per page"
msgstr "প্রতি পৃষ্ঠায় স্লাইডের সংখ্যা"
-#: strings.hrc:449
+#: strings.hrc:451
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER"
msgid "Order"
msgstr "ক্রম"
-#: strings.hrc:450
+#: strings.hrc:452
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT"
msgid "~Contents"
msgstr "বিষয়বস্তু"
-#: strings.hrc:451
+#: strings.hrc:453
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_NAME"
msgid "~Slide name"
msgstr "স্লাইডের নাম (~S)"
-#: strings.hrc:452
+#: strings.hrc:454
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_IS_PRINT_NAME"
msgid "P~age name"
msgstr "পৃষ্ঠার নাম (~a)"
-#: strings.hrc:453
+#: strings.hrc:455
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_DATE"
msgid "~Date and time"
msgstr "তারিখ এবং সময়"
-#: strings.hrc:454
+#: strings.hrc:456
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_IS_PRINT_HIDDEN"
msgid "Hidden pages"
msgstr "লুকানো পৃষ্ঠা"
-#: strings.hrc:455
+#: strings.hrc:457
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY"
msgid "Color"
msgstr "রঙ"
-#: strings.hrc:456
+#: strings.hrc:458
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS"
msgid "~Size"
msgstr "আকার"
-#: strings.hrc:457
+#: strings.hrc:459
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE"
msgid "Brochure"
msgstr "বিলিপত্র"
-#: strings.hrc:458
+#: strings.hrc:460
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_SIDES"
msgid "Page sides"
msgstr "পৃষ্ঠার পার্শ্ব"
-#: strings.hrc:459
+#: strings.hrc:461
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE"
msgid "Include"
msgstr "অন্তর্ভূক্ত"
-#: strings.hrc:460
+#: strings.hrc:462
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAPER_TRAY"
msgid "~Use only paper tray from printer preferences"
msgstr "প্রিন্টারের পছন্দসমূহ থেকে শুধু পেপার ট্রে অপশন ব্যবহার করুন (~U)"
-#: strings.hrc:461
+#: strings.hrc:463
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE"
msgid "Print range"
msgstr "মুদ্রণ পরিসর"
-#: strings.hrc:463
+#: strings.hrc:465
msgctxt "STR_SAR_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress has searched to the end of the presentation. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME এর ইমপ্রেস উপস্থাপনাটির শেষ পর্যন্ত খোঁজা হয়েছে। আপনি কি শুরু থেকে খোঁজা অব্যাহত রাখতে চান?"
-#: strings.hrc:464
+#: strings.hrc:466
msgctxt "STR_SAR_WRAP_BACKWARD"
msgid "%PRODUCTNAME Impress has searched to the beginning of the presentation. Do you want to continue at the end?"
msgstr "%PRODUCTNAME এর ইমপ্রেস উপস্থাপনাটির শুরু পর্যন্ত খোঁজা হয়েছে। আপনি কি শেষ থেকে খোঁজা অব্যাহত রাখতে চান?"
-#: strings.hrc:465
+#: strings.hrc:467
msgctxt "STR_SAR_WRAP_FORWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the end of the document. Do you want to continue at the beginning?"
msgstr "%PRODUCTNAME এর চিত্র নথিটির শেষ পর্যন্ত খোঁজা হয়েছে। আপনি কি শুরু থেকে খোঁজা অব্যাহত রাখতে চান?"
-#: strings.hrc:466
+#: strings.hrc:468
msgctxt "STR_SAR_WRAP_BACKWARD_DRAW"
msgid "%PRODUCTNAME Draw has searched to the beginning of the document. Do you want to continue at the end?"
msgstr "%PRODUCTNAME এর চিত্র নথিটির শুরু পর্যন্ত খোঁজা হয়েছে। আপনি কি শে‌ষ থেকে খোঁজা অব্যাহত রাখতে চান?"
-#: strings.hrc:468
+#: strings.hrc:470
#, fuzzy
msgctxt "STR_SD_NONE"
msgid "- None -"
@@ -4750,7 +4760,7 @@ msgstr ""
#: optimpressgeneralpage.ui:622
msgctxt "optimpressgeneralpage|cbCompatibility"
-msgid "Add _spacing between paragraphs and tables (in current document)"
+msgid "Add _spacing between paragraphs and tables"
msgstr ""
#: optimpressgeneralpage.ui:645
@@ -5563,14 +5573,13 @@ msgid "Master Background"
msgstr ""
#: sidebarslidebackground.ui:197
-#, fuzzy
msgctxt "sidebarslidebackground|label4"
-msgid "Orientation: "
-msgstr "স্থিতিবিন্যাস"
+msgid "Orientation:"
+msgstr ""
#: sidebarslidebackground.ui:212
msgctxt "sidebarslidebackground|masterslidebutton"
-msgid "Master Slide"
+msgid "Master View"
msgstr ""
#: sidebarslidebackground.ui:226
@@ -5618,10 +5627,9 @@ msgid "Wide"
msgstr "আড়াল"
#: sidebarslidebackground.ui:267
-#, fuzzy
msgctxt "sidebarslidebackground|labelmargin"
-msgid "Margin: "
-msgstr "মার্জিন"
+msgid "Margin:"
+msgstr ""
#: sidebarslidebackground.ui:277
#, fuzzy
diff --git a/source/bn/sfx2/messages.po b/source/bn/sfx2/messages.po
index 98feb6577a0..141cfde3dfd 100644
--- a/source/bn/sfx2/messages.po
+++ b/source/bn/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-11-22 13:53+0100\n"
+"POT-Creation-Date: 2017-12-18 12:31+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -836,28 +836,33 @@ msgctxt "RID_SVXSTR_INCORRECT_PASSWORD"
msgid "Incorrect password"
msgstr "ভুল পাসওয়ার্ড"
-#: strings.hrc:173
+#: strings.hrc:172
+msgctxt "RID_SVXSTR_GPG_ENCRYPT_FAILURE"
+msgid "OpenPGP key not trusted, damaged, or encryption failure. Please try again."
+msgstr ""
+
+#: strings.hrc:174
msgctxt "STR_PASSWD_MIN_LEN"
msgid "(Minimum $(MINLEN) characters)"
msgstr "(সর্বনিম্ন $(MINLEN) ক্যারেক্টার)"
-#: strings.hrc:174
+#: strings.hrc:175
msgctxt "STR_PASSWD_MIN_LEN1"
msgid "(Minimum 1 character)"
msgstr ""
-#: strings.hrc:175
+#: strings.hrc:176
msgctxt "STR_PASSWD_EMPTY"
msgid "(The password can be empty)"
msgstr "(পাসওয়ার্ড খালি হতে পারে)"
-#: strings.hrc:176
+#: strings.hrc:177
#, fuzzy
msgctxt "STR_MODULENOTINSTALLED"
msgid "The action could not be executed. The %PRODUCTNAME program module needed for this action is currently not installed."
msgstr "কাজটি কার্যকর করা যাবে না। এই কাজের জন্য প্রয়োজনীয় %PRODUCTNAME প্রোগ্রাম মডিউলটি বর্তমানে ইনস্টল করা নেই।"
-#: strings.hrc:178
+#: strings.hrc:179
msgctxt "STR_FILTER_NOT_INSTALLED"
msgid ""
"The selected filter $(FILTER) has not been installed.\n"
@@ -866,7 +871,7 @@ msgstr ""
"নির্বাচিত $(FILTER) পরিশোধক ইনস্টল করা হয়নি।\n"
"আপনি কি এখন এটা সম্পন্ন করতে চান?"
-#: strings.hrc:179
+#: strings.hrc:180
msgctxt "STR_FILTER_CONSULT_SERVICE"
msgid ""
"The selected filter $(FILTER) is not included in your edition.\n"
@@ -875,73 +880,73 @@ msgstr ""
"আপনার সংস্করণে নির্বাচিত $(FILTER) ফিল্টার অন্তর্ভুক্ত নয়।\n"
"আমাদের প্রধান পাতা থেকে, আপনি ক্রম সম্পর্কিত তথ্য খুঁজে পেতে পারেন।"
-#: strings.hrc:181
+#: strings.hrc:182
msgctxt "STR_WELCOME_LINE1"
msgid "Welcome to %PRODUCTNAME."
msgstr ""
-#: strings.hrc:182
+#: strings.hrc:183
msgctxt "STR_WELCOME_LINE2"
msgid "Drop a document here or pick an app from the left side to create one."
msgstr ""
-#: strings.hrc:184
+#: strings.hrc:185
msgctxt "STR_SFX_FILEDLG_ACTUALVERSION"
msgid "Current version"
msgstr "বর্তমান সংস্করণ"
-#: strings.hrc:185
+#: strings.hrc:186
msgctxt "STR_SFX_EXPLORERFILE_EXPORT"
msgid "Export"
msgstr "এক্সপোর্ট করুন"
-#: strings.hrc:186
+#: strings.hrc:187
msgctxt "STR_SFX_EXPLORERFILE_INSERT"
msgid "Insert"
msgstr "সন্নিবেশ করান"
-#: strings.hrc:187
+#: strings.hrc:188
msgctxt "STR_SFX_EXPLORERFILE_BUTTONINSERT"
msgid "~Insert"
msgstr "সন্নিবেশ করান (~I)"
-#: strings.hrc:188
+#: strings.hrc:189
msgctxt "STR_SFX_IMPORT_ALL"
msgid "<All formats>"
msgstr "<সব বিন্যাস>"
-#: strings.hrc:189
+#: strings.hrc:190
msgctxt "STR_PB_SAVEACOPY"
msgid "Save a Copy"
msgstr ""
-#: strings.hrc:190
+#: strings.hrc:191
#, fuzzy
msgctxt "STR_PB_COMPAREDOC"
msgid "Compare to"
msgstr "তুলনা #"
-#: strings.hrc:191
+#: strings.hrc:192
msgctxt "STR_PB_MERGEDOC"
msgid "Merge with"
msgstr ""
-#: strings.hrc:193
+#: strings.hrc:194
msgctxt "STR_SFX_NEWOFFICEDOC"
msgid "%PRODUCTNAME document"
msgstr "%PRODUCTNAME নথি"
-#: strings.hrc:194
+#: strings.hrc:195
msgctxt "SFX_ST_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr "ব: %1 মা: %2 দি: %3 ঘ: %4 মি: %5 সে: %6"
-#: strings.hrc:195
+#: strings.hrc:196
msgctxt "STR_SFX_REMOVE_PROPERTY"
msgid "Remove Property"
msgstr "বৈশিষ্ট্য অপসারণ করুন"
-#: strings.hrc:196
+#: strings.hrc:197
#, fuzzy
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
@@ -951,28 +956,28 @@ msgstr ""
"সন্নিবেশকৃত মান নির্ধারিত ধরনের সাথে মিলে না।\n"
"মানটি পাঠ্য হিসেবে সংরক্ষণ করা হবে।"
-#: strings.hrc:198
+#: strings.hrc:199
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "ফাইলটি ইতোমধ্যে বিদ্যমান। উপরিলিখন করতে চান?"
-#: strings.hrc:200
+#: strings.hrc:201
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "পুনঃনির্ধারণ (~R)"
-#: strings.hrc:201
+#: strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "এই নামটি ইতোমধ্যে ব্যবহৃত হচ্ছে।"
-#: strings.hrc:202
+#: strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "এই শৈলীটি বিদ্যমান নয়।"
-#: strings.hrc:203
+#: strings.hrc:204
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -982,7 +987,7 @@ msgstr ""
"এই শৈলীটি ভিত্তির শৈলী হিসেবে ব্যবহার করা যায় না,\n"
"কারণ এটি পুনরাবৃত্ত রেফঅরেন্সে প্রভাব ফেলবে।"
-#: strings.hrc:204
+#: strings.hrc:205
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -991,7 +996,7 @@ msgstr ""
"নাম ইতোমধ্যে পূর্বনির্ধারিত শৈলী হিসেবে বিদ্যমান।\n"
"অনুগ্রহ করে অন্য নাম পছন্দ করুন।"
-#: strings.hrc:205
+#: strings.hrc:206
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -999,98 +1004,98 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: strings.hrc:206
+#: strings.hrc:207
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: strings.hrc:207
+#: strings.hrc:208
#, fuzzy
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "পরিক্রমক"
-#: strings.hrc:208
+#: strings.hrc:209
msgctxt "STR_SID_SIDEBAR"
msgid "Sidebar"
msgstr ""
-#: strings.hrc:209
+#: strings.hrc:210
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "ত্রুটিপূর্ণ পাসওয়ার্ড নিশ্চিতকরণ"
-#: strings.hrc:210
+#: strings.hrc:211
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "প্রেরণ"
-#: strings.hrc:211
+#: strings.hrc:212
#, fuzzy
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "ফন্ট"
-#: strings.hrc:212
+#: strings.hrc:213
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show Previews"
msgstr ""
-#: strings.hrc:214
+#: strings.hrc:215
#, fuzzy
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "সংস্করণ মন্তব্য সন্নিবেশ করান"
-#: strings.hrc:215
+#: strings.hrc:216
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: strings.hrc:217
+#: strings.hrc:218
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "শৈলীর তালিকা"
-#: strings.hrc:218
+#: strings.hrc:219
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "ক্রমবিভক্ত"
-#: strings.hrc:219
+#: strings.hrc:220
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "ভরাট বিন্যাসের মোড"
-#: strings.hrc:220
+#: strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "নির্বাচন থেকে নতুন শৈলী"
-#: strings.hrc:221
+#: strings.hrc:222
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "শৈলী হালনাগাদ (~U)"
-#: strings.hrc:223
+#: strings.hrc:224
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "আপনি কি আসলেই রেকর্ড করা বাতিল করতে চান? এ পর্যন্ত রেকর্ডকৃত সব পদক্ষেপ হারিয়ে যাবে।"
-#: strings.hrc:224
+#: strings.hrc:225
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "রেকর্ডকরণ বাতিল"
-#: strings.hrc:226
+#: strings.hrc:227
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "ফর্মাসমূহ প্রথম-বার ব্যবহারের জন্য প্রস্তুত করা হযেছে।"
-#: strings.hrc:228
+#: strings.hrc:229
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1099,7 +1104,7 @@ msgstr ""
"কোনো পূর্বনির্ধারিত মুদ্রণযন্ত্র পাওয়া যায়নি।\n"
"অনুগ্রহ করে একটি মুদ্রণযন্ত্র নির্বাচন করুন এবং আবার চেষ্টা করুন।"
-#: strings.hrc:229
+#: strings.hrc:230
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1108,17 +1113,17 @@ msgstr ""
"মুদ্রণযন্ত্র চালু করা যাবে না।\n"
"অনুগ্রহ করে আপনার মুদ্রণযন্ত্রের কনফিগারেশন পরীক্ষা করুন।"
-#: strings.hrc:230
+#: strings.hrc:231
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "মুদ্রণযন্ত্রটি ব্যস্ত"
-#: strings.hrc:231
+#: strings.hrc:232
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (শুধুমাত্র-পাঠযোগ্য)"
-#: strings.hrc:232
+#: strings.hrc:233
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1128,7 +1133,7 @@ msgstr ""
"পৃষ্ঠার আকৃতি এবং স্থিতিবিন্যাস পরিবর্তন করা হয়েছে।\n"
"আপনি কি নতুন বিন্যাসটি সক্রিয় নথিতে সংরক্ষণ করতে চান?"
-#: strings.hrc:233
+#: strings.hrc:234
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1138,7 +1143,7 @@ msgstr ""
"পৃষ্ঠার আকৃতি পরিবর্তন করা হয়েছে।\n"
"নতুন বিন্যাস কি সক্রিয় নথিতে সংরক্ষণ করা হবে?"
-#: strings.hrc:234
+#: strings.hrc:235
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1148,7 +1153,7 @@ msgstr ""
"পৃষ্ঠার আকৃতি এবং স্থিতিবিন্যাস পরিবর্তন করা হয়েছে।\n"
"আপনি কি সক্রিয় নথিতে নতুন সেটিং সংরক্ষণ করতে আগ্রহী?"
-#: strings.hrc:235
+#: strings.hrc:236
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1158,7 +1163,7 @@ msgstr ""
"নথিটি বন্ধ করা যাবে না কারণ\n"
"একটি মুদ্রণ কাজ চলছে।"
-#: strings.hrc:236
+#: strings.hrc:237
#, fuzzy
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
@@ -1168,214 +1173,315 @@ msgstr ""
"বার্তা প্রেরণ একটি ত্রুটি দেখা দিয়েছে। অনুপস্থিত ব্যবহারকারীর হিসাব বা ত্রুটিপূর্ণ সেটআপের কারণে সম্ভাব্য ত্রুটি দেখা দিতে পারে।\n"
"অনুগ্রহ করে %PRODUCTNAME সেটিং বা আপনার ই-মেইল সেটিং পরীক্ষা করুন।"
-#: strings.hrc:237
+#: strings.hrc:238
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "সম্ভবত অনুপস্থিত প্রবেশাধিকারের কারণে, এই নথিটি সম্পাদনা করা যাবে না। আপনি কি নথির একটি অনুলিপি সম্পাদনা করতে চান?"
-#: strings.hrc:238
+#: strings.hrc:239
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr "(সংশোধিত নথি)"
-#: strings.hrc:239
+#: strings.hrc:240
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: strings.hrc:240
+#: strings.hrc:241
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: strings.hrc:241
+#: strings.hrc:242
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: strings.hrc:242
+#: strings.hrc:243
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: strings.hrc:243
+#: strings.hrc:244
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: strings.hrc:244
+#: strings.hrc:245
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: strings.hrc:245
+#: strings.hrc:246
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Intellectual Property:"
msgstr ""
-#: strings.hrc:246
+#: strings.hrc:247
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: strings.hrc:247
+#: strings.hrc:248
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: strings.hrc:248
+#: strings.hrc:249
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: strings.hrc:249
+#: strings.hrc:250
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "নথির সম্পাদনা"
-#: strings.hrc:250
+#: strings.hrc:251
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "ফাইল নথি"
-#: strings.hrc:251
+#: strings.hrc:252
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: strings.hrc:252
+#: strings.hrc:253
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: strings.hrc:253
+#: strings.hrc:254
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: strings.hrc:254
+#: strings.hrc:255
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: strings.hrc:255
+#: strings.hrc:256
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: strings.hrc:256
+#: strings.hrc:257
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: strings.hrc:258
+#: strings.hrc:259
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: strings.hrc:259
+#: strings.hrc:260
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "ডক"
-#: strings.hrc:260
+#: strings.hrc:261
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "আনডক"
-#: strings.hrc:262
+#: strings.hrc:263
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "আরও অপশন (~O)"
-#: strings.hrc:263
+#: strings.hrc:264
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: strings.hrc:264
+#: strings.hrc:265
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: strings.hrc:265
+#: strings.hrc:266
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "স্বনির্ধারিত অ্যানিমেশন"
-#: strings.hrc:266
+#: strings.hrc:267
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: strings.hrc:267
+#: strings.hrc:268
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
-#: strings.hrc:269
+#. Translators: default Impress template names
+#: strings.hrc:271
msgctxt "STR_TEMPLATE_NAME1"
-msgid "Abstract Green"
+msgid "Alizarin"
msgstr ""
-#: strings.hrc:270
+#: strings.hrc:272
msgctxt "STR_TEMPLATE_NAME2"
-msgid "Abstract Red"
+msgid "Beehive"
msgstr ""
-#: strings.hrc:271
+#: strings.hrc:273
msgctxt "STR_TEMPLATE_NAME3"
-msgid "Abstract Yellow"
+msgid "Blue Curve"
msgstr ""
-#: strings.hrc:272
+#: strings.hrc:274
msgctxt "STR_TEMPLATE_NAME4"
-msgid "Bright Blue"
-msgstr "উজ্জ্বল নীল"
+msgid "Blueprint Plans"
+msgstr ""
-#: strings.hrc:273
+#: strings.hrc:275
msgctxt "STR_TEMPLATE_NAME5"
-msgid "DNA"
+msgid "Bright Blue"
msgstr ""
-#: strings.hrc:274
+#: strings.hrc:276
msgctxt "STR_TEMPLATE_NAME6"
-msgid "Inspiration"
+msgid "Classy Red"
msgstr ""
-#: strings.hrc:275
+#: strings.hrc:277
msgctxt "STR_TEMPLATE_NAME7"
-msgid "Lush Green"
+msgid "DNA"
msgstr ""
-#: strings.hrc:276
+#: strings.hrc:278
msgctxt "STR_TEMPLATE_NAME8"
-msgid "Metropolis"
+msgid "Focus"
msgstr ""
-#: strings.hrc:277
-#, fuzzy
+#: strings.hrc:279
msgctxt "STR_TEMPLATE_NAME9"
-msgid "Sunset"
-msgstr "উপসেট"
+msgid "Forestbird"
+msgstr ""
-#: strings.hrc:278
+#: strings.hrc:280
msgctxt "STR_TEMPLATE_NAME10"
+msgid "Impress"
+msgstr ""
+
+#: strings.hrc:281
+msgctxt "STR_TEMPLATE_NAME11"
+msgid "Inspiration"
+msgstr ""
+
+#: strings.hrc:282
+msgctxt "STR_TEMPLATE_NAME12"
+msgid "Lights"
+msgstr ""
+
+#: strings.hrc:283
+msgctxt "STR_TEMPLATE_NAME13"
+msgid "Lush Green"
+msgstr ""
+
+#: strings.hrc:284
+msgctxt "STR_TEMPLATE_NAME14"
+msgid "Metropolis"
+msgstr ""
+
+#: strings.hrc:285
+msgctxt "STR_TEMPLATE_NAME15"
+msgid "Midnightblue"
+msgstr ""
+
+#: strings.hrc:286
+msgctxt "STR_TEMPLATE_NAME16"
+msgid "Nature Illustration"
+msgstr ""
+
+#: strings.hrc:287
+msgctxt "STR_TEMPLATE_NAME17"
+msgid "Pencil"
+msgstr ""
+
+#: strings.hrc:288
+msgctxt "STR_TEMPLATE_NAME18"
+msgid "Piano"
+msgstr ""
+
+#: strings.hrc:289
+msgctxt "STR_TEMPLATE_NAME19"
+msgid "Portfolio"
+msgstr ""
+
+#: strings.hrc:290
+msgctxt "STR_TEMPLATE_NAME20"
+msgid "Progress"
+msgstr ""
+
+#: strings.hrc:291
+msgctxt "STR_TEMPLATE_NAME21"
+msgid "Sunset"
+msgstr ""
+
+#: strings.hrc:292
+msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: strings.hrc:280
+#: strings.hrc:293
+msgctxt "STR_TEMPLATE_NAME23"
+msgid "Vivid"
+msgstr ""
+
+#. Translators: default Writer template names
+#: strings.hrc:295
+msgctxt "STR_TEMPLATE_NAME24"
+msgid "CV"
+msgstr ""
+
+#: strings.hrc:296
+msgctxt "STR_TEMPLATE_NAME25"
+msgid "Resume"
+msgstr ""
+
+#: strings.hrc:297
+msgctxt "STR_TEMPLATE_NAME26"
+msgid "Default"
+msgstr ""
+
+#: strings.hrc:298
+msgctxt "STR_TEMPLATE_NAME27"
+msgid "Modern"
+msgstr ""
+
+#: strings.hrc:299
+msgctxt "STR_TEMPLATE_NAME28"
+msgid "Modern business letter sans-serif"
+msgstr ""
+
+#: strings.hrc:300
+msgctxt "STR_TEMPLATE_NAME29"
+msgid "Modern business letter serif"
+msgstr ""
+
+#: strings.hrc:301
+msgctxt "STR_TEMPLATE_NAME30"
+msgid "Businesscard with logo"
+msgstr ""
+
+#: strings.hrc:303
#, fuzzy
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "অপসারণ করুন"
-#: strings.hrc:281
+#: strings.hrc:304
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
diff --git a/source/bn/sw/messages.po b/source/bn/sw/messages.po
index 2a4d40a9b2f..ca73d8cec7d 100644
--- a/source/bn/sw/messages.po
+++ b/source/bn/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-20 08:17+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -85,10 +85,9 @@ msgid "Conditional Styles"
msgstr "শর্তাধীন শৈলী"
#: app.hrc:47
-#, fuzzy
msgctxt "RID_CHARACTERSTYLEFAMILY"
-msgid "All"
-msgstr "সব"
+msgid "All Styles"
+msgstr ""
#: app.hrc:48
msgctxt "RID_CHARACTERSTYLEFAMILY"
@@ -108,10 +107,9 @@ msgid "Custom Styles"
msgstr "স্বনির্ধারিত শৈলী"
#: app.hrc:56
-#, fuzzy
msgctxt "RID_FRAMESTYLEFAMILY"
-msgid "All"
-msgstr "সব"
+msgid "All Styles"
+msgstr ""
#: app.hrc:57
msgctxt "RID_FRAMESTYLEFAMILY"
@@ -131,10 +129,9 @@ msgid "Custom Styles"
msgstr "স্বনির্ধারিত শৈলী"
#: app.hrc:65
-#, fuzzy
msgctxt "RID_PAGESTYLEFAMILY"
-msgid "All"
-msgstr "সব"
+msgid "All Styles"
+msgstr ""
#: app.hrc:66
msgctxt "RID_PAGESTYLEFAMILY"
@@ -154,10 +151,9 @@ msgid "Custom Styles"
msgstr "স্বনির্ধারিত শৈলী"
#: app.hrc:74
-#, fuzzy
msgctxt "RID_LISTSTYLEFAMILY"
-msgid "All"
-msgstr "সব"
+msgid "All Styles"
+msgstr ""
#: app.hrc:75
msgctxt "RID_LISTSTYLEFAMILY"
@@ -177,10 +173,9 @@ msgid "Custom Styles"
msgstr "স্বনির্ধারিত শৈলী"
#: app.hrc:83
-#, fuzzy
msgctxt "RID_TABLESTYLEFAMILY"
-msgid "All"
-msgstr "সব"
+msgid "All Styles"
+msgstr ""
#: app.hrc:84
msgctxt "RID_TABLESTYLEFAMILY"
@@ -1372,28 +1367,28 @@ msgstr "আড়াআড়ি"
#. Numbering rules
#: strings.hrc:199
msgctxt "STR_POOLNUMRULE_NUM1"
-msgid "Numbering 1"
-msgstr "সংখ্যায়ন ১"
+msgid "Numbering 123"
+msgstr ""
#: strings.hrc:200
msgctxt "STR_POOLNUMRULE_NUM2"
-msgid "Numbering 2"
-msgstr "সংখ্যায়ন ২"
+msgid "Numbering ABC"
+msgstr ""
#: strings.hrc:201
msgctxt "STR_POOLNUMRULE_NUM3"
-msgid "Numbering 3"
-msgstr "সংখ্যায়ন ৩"
+msgid "Numbering abc"
+msgstr ""
#: strings.hrc:202
msgctxt "STR_POOLNUMRULE_NUM4"
-msgid "Numbering 4"
-msgstr "সংখ্যায়ন ৪"
+msgid "Numbering IVX"
+msgstr ""
#: strings.hrc:203
msgctxt "STR_POOLNUMRULE_NUM5"
-msgid "Numbering 5"
-msgstr "সংখ্যায়ন ৫"
+msgid "Numbering ivx"
+msgstr ""
#: strings.hrc:204
msgctxt "STR_POOLNUMRULE_BUL1"
@@ -14826,12 +14821,12 @@ msgstr ""
#: optcompatpage.ui:57
msgctxt "optcompatpage|format"
-msgid "Add spacing between paragraphs and tables (in current document)"
+msgid "Add spacing between paragraphs and tables"
msgstr ""
#: optcompatpage.ui:58
msgctxt "optcompatpage|format"
-msgid "Add paragraph and table spacing at tops of pages (in current document)"
+msgid "Add paragraph and table spacing at tops of pages"
msgstr ""
#: optcompatpage.ui:59
@@ -14886,7 +14881,7 @@ msgstr ""
#: optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Tolerate white lines of PDF page backgrounds for compatibility with old documents (in current document)"
+msgid "Tolerate white lines of PDF page backgrounds for compatibility with old documents"
msgstr ""
#: optcompatpage.ui:70
@@ -14901,7 +14896,7 @@ msgstr ""
#: optcompatpage.ui:104
msgctxt "optcompatpage|label11"
-msgid "Compatibility options for %DOCNAME"
+msgid "Compatibility options for '%DOCNAME'"
msgstr ""
#: optfonttabpage.ui:103
@@ -18404,21 +18399,11 @@ msgctxt "textgridpage|labelFT_CHARSPERLINE"
msgid "Characters per line:"
msgstr ""
-#: textgridpage.ui:223
-msgctxt "textgridpage|labelFT_CHARRANGE"
-msgid "(1-45)"
-msgstr ""
-
#: textgridpage.ui:236
msgctxt "textgridpage|labelFT_LINESPERPAGE"
msgid "Lines per page:"
msgstr ""
-#: textgridpage.ui:265
-msgctxt "textgridpage|labelFT_LINERANGE"
-msgid "(1-48)"
-msgstr ""
-
#: textgridpage.ui:303
msgctxt "textgridpage|labelFT_CHARWIDTH"
msgid "Character _width:"
diff --git a/source/bo/cui/messages.po b/source/bo/cui/messages.po
index 392ad97cef8..443532df0ae 100644
--- a/source/bo/cui/messages.po
+++ b/source/bo/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-12-06 15:59+0100\n"
+"POT-Creation-Date: 2017-12-20 08:16+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8408,78 +8408,78 @@ msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "རོགས་རམ།"
-#: optgeneralpage.ui:77
+#: optgeneralpage.ui:76
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAMEབརྡ་སྒྲོམ།"
-#: optgeneralpage.ui:111
+#: optgeneralpage.ui:110
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: optgeneralpage.ui:137
+#: optgeneralpage.ui:136
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAMEབརྡ་སྒྲོམ།"
-#: optgeneralpage.ui:152
+#: optgeneralpage.ui:151
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: optgeneralpage.ui:178
+#: optgeneralpage.ui:177
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: optgeneralpage.ui:193
+#: optgeneralpage.ui:192
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "ཡིག་ཚགས་མིང་།\tགནས་སྟངས།"
-#: optgeneralpage.ui:226
+#: optgeneralpage.ui:225
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: optgeneralpage.ui:252
+#: optgeneralpage.ui:251
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "བསྡོམས་འབོར།"
-#: optgeneralpage.ui:267
+#: optgeneralpage.ui:266
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: optgeneralpage.ui:293
+#: optgeneralpage.ui:292
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: optgeneralpage.ui:308
+#: optgeneralpage.ui:307
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: optgeneralpage.ui:339
+#: optgeneralpage.ui:338
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "启动时载入%PRODUCTNAME"
-#: optgeneralpage.ui:353
+#: optgeneralpage.ui:352
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "མ་ལག་གི་ལས་འགན་གདམ་ཚང་མགྱོགས་མྱུར་འགུལ་སློང་བྱེད་དུ་མི་འཇུག་པ།"
-#: optgeneralpage.ui:373
+#: optgeneralpage.ui:372
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -9321,235 +9321,240 @@ msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr ""
-#: optuserpage.ui:34
+#: optuserpage.ui:12
+msgctxt "optuserpage|liststore1"
+msgid "No key"
+msgstr ""
+
+#: optuserpage.ui:45
#, fuzzy
msgctxt "optuserpage|companyft"
msgid "_Company:"
msgstr "ཀུང་སི།"
-#: optuserpage.ui:48
+#: optuserpage.ui:59
msgctxt "optuserpage|nameft"
msgid "First/last _name/initials:"
msgstr ""
-#: optuserpage.ui:62
+#: optuserpage.ui:73
#, fuzzy
msgctxt "optuserpage|streetft"
msgid "_Street:"
msgstr "ཁྲོམ་ལམ།"
-#: optuserpage.ui:76
+#: optuserpage.ui:87
msgctxt "optuserpage|cityft"
msgid "City/state/_zip:"
msgstr ""
-#: optuserpage.ui:90
+#: optuserpage.ui:101
#, fuzzy
msgctxt "optuserpage|countryft"
msgid "Country/re_gion:"
msgstr "རྒྱལ་ཁབ་བམ་ས་གནས།"
-#: optuserpage.ui:104
+#: optuserpage.ui:115
msgctxt "optuserpage|titleft"
msgid "_Title/position:"
msgstr ""
-#: optuserpage.ui:118
+#: optuserpage.ui:129
msgctxt "optuserpage|phoneft"
msgid "Telephone (home/_work):"
msgstr ""
-#: optuserpage.ui:123
+#: optuserpage.ui:134
msgctxt "phoneft-atkobject"
msgid "Home telephone number"
msgstr ""
-#: optuserpage.ui:137
+#: optuserpage.ui:148
msgctxt "optuserpage|faxft"
msgid "Fa_x/e-mail:"
msgstr ""
-#: optuserpage.ui:160
+#: optuserpage.ui:171
#, fuzzy
msgctxt "optuserpage|firstname-atkobject"
msgid "First name"
msgstr "མིང་།"
-#: optuserpage.ui:178
+#: optuserpage.ui:189
#, fuzzy
msgctxt "lastname-atkobject"
msgid "Last name"
msgstr "མིང་རིགས།"
-#: optuserpage.ui:196
+#: optuserpage.ui:207
#, fuzzy
msgctxt "shortname-atkobject"
msgid "Initials"
msgstr "སྐུངས་ཡིག"
-#: optuserpage.ui:225
+#: optuserpage.ui:236
#, fuzzy
msgctxt "city-atkobject"
msgid "City"
msgstr "གྲོང་ཁྱེར།"
-#: optuserpage.ui:243
+#: optuserpage.ui:254
#, fuzzy
msgctxt "state-atkobject"
msgid "State"
msgstr "ཞིང་ཆེན་དང་། ཐད་སྐྱོང་གྲོང་ཁྱེར། རང་སྐྱོང་ལྗོངས།"
-#: optuserpage.ui:261
+#: optuserpage.ui:272
#, fuzzy
msgctxt "zip-atkobject"
msgid "Zip code"
msgstr "སྦྲག་གནས།"
-#: optuserpage.ui:291
+#: optuserpage.ui:302
#, fuzzy
msgctxt "title-atkobject"
msgid "Title"
msgstr "ཁ་བྱང་།"
-#: optuserpage.ui:309
+#: optuserpage.ui:320
#, fuzzy
msgctxt "position-atkobject"
msgid "Position"
msgstr "གནས་ས།"
-#: optuserpage.ui:338
+#: optuserpage.ui:349
msgctxt "home-atkobject"
msgid "Home telephone number"
msgstr ""
-#: optuserpage.ui:356
+#: optuserpage.ui:367
msgctxt "work-atkobject"
msgid "Work telephone number"
msgstr ""
-#: optuserpage.ui:386
+#: optuserpage.ui:397
msgctxt "fax-atkobject"
msgid "FAX number"
msgstr ""
-#: optuserpage.ui:404
+#: optuserpage.ui:415
#, fuzzy
msgctxt "email-atkobject"
msgid "email address"
msgstr "གློག་རྡུལ་སྦྲགས་ཡིག་ས་གནས།"
-#: optuserpage.ui:421
+#: optuserpage.ui:432
msgctxt "optuserpage|usefordocprop"
msgid "Use data for document properties"
msgstr ""
-#: optuserpage.ui:438
+#: optuserpage.ui:449
msgctxt "optuserpage|rusnameft"
msgid "Last name/first _name/father’s name/initials:"
msgstr ""
-#: optuserpage.ui:461
+#: optuserpage.ui:472
#, fuzzy
msgctxt "ruslastname-atkobject"
msgid "Last name"
msgstr "མིང་རིགས།"
-#: optuserpage.ui:479
+#: optuserpage.ui:490
msgctxt "rusfathersname-atkobject"
msgid "Father's name"
msgstr ""
-#: optuserpage.ui:497
+#: optuserpage.ui:508
#, fuzzy
msgctxt "russhortname-atkobject"
msgid "Initials"
msgstr "སྐུངས་ཡིག"
-#: optuserpage.ui:515
+#: optuserpage.ui:526
#, fuzzy
msgctxt "rusfirstname-atkobject"
msgid "First name"
msgstr "མིང་།"
-#: optuserpage.ui:535
+#: optuserpage.ui:546
msgctxt "optuserpage|eastnameft"
msgid "Last/first _name/initials:"
msgstr ""
-#: optuserpage.ui:558
+#: optuserpage.ui:569
#, fuzzy
msgctxt "eastlastname-atkobject"
msgid "Last name"
msgstr "མིང་རིགས།"
-#: optuserpage.ui:576
+#: optuserpage.ui:587
#, fuzzy
msgctxt "eastfirstname-atkobject"
msgid "First name"
msgstr "མིང་།"
-#: optuserpage.ui:594
+#: optuserpage.ui:605
#, fuzzy
msgctxt "eastshortname-atkobject"
msgid "Initials"
msgstr "སྐུངས་ཡིག"
-#: optuserpage.ui:614
+#: optuserpage.ui:625
msgctxt "optuserpage|russtreetft"
msgid "_Street/apartment number:"
msgstr ""
-#: optuserpage.ui:637
+#: optuserpage.ui:648
#, fuzzy
msgctxt "russtreet-atkobject"
msgid "Street"
msgstr "ཁྲོམ་གཞུང་།"
-#: optuserpage.ui:655
+#: optuserpage.ui:666
msgctxt "ruslastname-atkobject"
msgid "Apartment number"
msgstr ""
-#: optuserpage.ui:675
+#: optuserpage.ui:686
msgctxt "optuserpage|icityft"
msgid "_Zip/city:"
msgstr ""
-#: optuserpage.ui:698
+#: optuserpage.ui:709
#, fuzzy
msgctxt "icity-atkobject"
msgid "City"
msgstr "གྲོང་ཁྱེར།"
-#: optuserpage.ui:716
+#: optuserpage.ui:727
#, fuzzy
msgctxt "izip-atkobject"
msgid "Zip code"
msgstr "སྦྲག་གནས།"
-#: optuserpage.ui:814
+#: optuserpage.ui:825
#, fuzzy
msgctxt "optuserpage|label1"
msgid "Address"
msgstr "གནས་ཡུལ།"
-#: optuserpage.ui:847
+#: optuserpage.ui:861
msgctxt "optuserpage|signingkeylabel"
msgid "OpenPGP signing key:"
msgstr ""
-#: optuserpage.ui:860
+#: optuserpage.ui:875
msgctxt "optuserpage|encryptionkeylabel"
msgid "OpenPGP encryption key:"
msgstr ""
-#: optuserpage.ui:889
+#: optuserpage.ui:908
msgctxt "optuserpage|encrypttoself"
msgid "When encrypting documents, always encrypt to self"
msgstr ""
-#: optuserpage.ui:909
-msgctxt "optuserpage|label2"
+#: optuserpage.ui:930
+msgctxt "optuserpage|cryptographylabel"
msgid "Cryptography"
msgstr ""
diff --git a/source/bo/extras/source/autocorr/emoji.po b/source/bo/extras/source/autocorr/emoji.po
index 991a2de7d5b..4949d285e30 100644
--- a/source/bo/extras/source/autocorr/emoji.po
+++ b/source/bo/extras/source/autocorr/emoji.po