/* -*- 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 #include #include #include #include class BackendTest : public test::BootstrapFixture { // if enabled - check the result images with: // "xdg-open ./workdir/CppunitTest/vcl_backend_test.test.core/" static constexpr const bool mbExportBitmap = false; void exportImage(OUString const& rsFilename, Bitmap const& rBitmap) { if (mbExportBitmap) { Bitmap aBitmap(rBitmap); aBitmap.Scale(Size(128, 128), BmpScaleFlag::Fast); SvFileStream aStream(rsFilename, StreamMode::WRITE | StreamMode::TRUNC); GraphicFilter::GetGraphicFilter().compressAsPNG(aBitmap, aStream); } } public: BackendTest() : BootstrapFixture(true, false) { } // We need to enable tests ONE BY ONE as they fail because of backend bugs // it is still important to have the test defined so we know the issues // exist and we need to fix them. Consistent behaviour of our backends // is of highest priority. #define SKIP_TEST_ASSERTS void testDrawRectWithRectangle() { vcl::test::OutputDeviceTestRect aOutDevTest; Bitmap aBitmap = aOutDevTest.setupRectangle(false); auto eResult = vcl::test::OutputDeviceTestCommon::checkRectangle(aBitmap); exportImage("01-01_rectangle_test-rectangle.png", aBitmap); (void)eResult; #ifndef SKIP_TEST_ASSERTS CPPUNIT_ASSERT(eResult != vcl::test::TestResult::Failed); #endif } void testDrawRectWithPixel() { vcl::test::OutputDeviceTestPixel aOutDevTest; Bitmap aBitmap = aOutDevTest.setupRectangle(false); auto eResult = vcl::test::OutputDeviceTestCommon::checkRectangle(aBitmap); exportImage("01-02_rectangle_test-pixel.png", aBitmap); (void)eResult; #ifndef SKIP_TEST_ASSERTS CPPUNIT_ASSERT(eResult != vcl::test::TestResult::Failed); #endif } void testDrawRectWithLine() { vcl::test::OutputDeviceTestLine aOutDevTest; Bitmap aBitmap = aOutDevTest.setupRectangle(false); auto eResult = vcl::test::OutputDeviceTestCommon::checkRectangle(aBitmap); exportImage("01-03_rectangle_test-line.png", aBitmap); (void)eResult; #ifndef SKIP_TEST_ASSERTS CPPUNIT_ASSERT(eResult != vcl::test::TestResult::Failed); #endif } void testDrawRectWithPolygon() { vcl::test::OutputDeviceTestPolygon aOutDevTest; Bitmap aBitmap = aOutDevTest.setupRectangle(false); auto eResult = vcl::test::OutputDeviceTestCommon::checkRectangle(aBitmap); exportImage("01-04_rectangle_test-polygon.png", aBitmap); (void)eResult; #ifndef SKIP_TEST_ASSERTS CPPUNIT_ASSERT(eResult != vcl::test::TestResult::Failed); #endif } void testDrawRectWithPolyLine() { vcl::test::OutputDeviceTestPolyLine aOutDevTest; Bitmap aBitmap = aOutDevTest.setupRectangle(false); auto eResult = vcl::test::OutputDeviceTestCommon::checkRectangle(aBitmap); exportImage("01-05_rectangle_test-polyline.png", aBitmap); (void)eResult; #ifndef SKIP_TEST_ASSERTS CPPUNIT_ASSERT(eResult != vcl::test::TestResult::Failed); #endif } void testDrawRectWithPolyLineB2D() { vcl::test::OutputDeviceTestPolyLineB2D aOutDevTest; Bitmap aBitmap = aOutDevTest.setupRectangle(false); auto eResult = vcl::test::OutputDeviceTestCommon::checkRectangle(aBitmap); exportImage("01-06_rectangle_test-polyline_b2d.png", aBitmap); (void)eResult; #ifndef SKIP_TEST_ASSERTS CPPUNIT_ASSERT(eResult != vcl::test::TestResult::Failed); #endif } void testDrawRectWithPolyPolygon() { vcl::test::OutputDeviceTestPolyPolygon aOutDevTest; Bitmap aBitmap = aOutDevTest.setupRectangle(false); auto eResult = vcl::test::OutputDeviceTestCommon::checkRectangle(aBitmap); exportImage("01-07_rectangle_test-polypolygon.png", aBitmap); (void)eResult; #ifndef SKIP_TEST_ASSERTS CPPUNIT_ASSERT(eResult != vcl::test::TestResult::Failed); #endif } void testDrawRectWithPolyPolygonB2D() { vcl::test::OutputDeviceTestPolyPolygonB2D aOutDevTest; Bitmap aBitmap = aOutDevTest.setupRectangle(false); auto eResult = vcl::test::OutputDeviceTestCommon::checkRectangle(aBitmap); exportImage("01-08_rectangle_test-polypolygon_b2d.png", aBitmap); (void)eResult; #ifndef SKIP_TEST_ASSERTS CPPUNIT_ASSERT(eResult != vcl::test::TestResult::Failed); #endif } void testDrawRectAAWithRectangle() { vcl::test::OutputDeviceTestRect aOutDevTest; Bitmap aBitmap = aOutDevTest.setupRectangle(true); auto eResult = vcl::test::OutputDeviceTestCommon::checkRectangleAA(aBitmap); exportImage("02-01_rectangle_AA_test-rectangle.png", aBitmap); (void)eResult; #ifndef SKIP_TEST_ASSERTS CPPUNIT_ASSERT(eResult != vcl::test::TestResult::Failed); #endif } void testDrawRectAAWithPixel() { vcl::test::OutputDeviceTestPixel aOutDevTest; Bitmap aBitmap = aOutDevTest.setupRectangle(true); auto eResult = vcl::test::OutputDeviceTestCommon::checkRectangleAA(aBitmap); exportImage("02-02_rectangle_AA_test-pixel.png", aBitmap); (void)eResult; #ifndef SKIP_TEST_ASSERTS CPPUNIT_ASSERT(eResult != vcl::test::TestResult::Failed); #endif } void testDrawRectAAWithLine() { vcl::test::OutputDeviceTestLine aOutDevTest; Bitmap aBitmap = aOutDevTest.setupRectangle(true); auto eResult = vcl::test::OutputDeviceTestCommon::checkRectangleAA(aBitmap); exportImage("02-03_rectangle_AA_test-line.png", aBitmap); (void)eResult; #ifndef SKIP_TEST_ASSERTS CPPUNIT_ASSERT(eResult != vcl::test::TestResult::Failed); #endif } void testDrawRectAAWithPolygon() { vcl::test::OutputDeviceTestPolygon aOutDevTest; Bitmap aBitmap = aOutDevTest.setupRectangle(true); auto eResult = vcl::test::OutputDeviceTestCommon::checkRectangleAA(aBitmap); exportImage("02-04_rectangle_AA_test-polygon.png", aBitmap); (void)eResult; #ifndef SKIP_TEST_ASSERTS CPPUNIT_ASSERT(eResult != vcl::test::TestResult::Failed); #endif } void testDrawRectAAWithPolyLine() { vcl::test::OutputDeviceTestPolyLine aOutDevTest; Bitmap aBitmap = aOutDevTest.setupRectangle(true); auto eResult = vcl::test::OutputDeviceTestCommon::checkRectangleAA(aBitmap); exportImage("02-05_rectangle_AA_test-polyline.png", aBitmap); (void)eResult; #ifndef SKIP_TEST_ASSERTS CPPUNIT_ASSERT(eResult != vcl::test::TestResult::Failed); #endif } void testDrawRectAAWithPolyLineB2D() { vcl::test::OutputDeviceTestPolyLineB2D aOutDevTest; Bitmap aBitmap = aOutDevTest.setupRectangle(true); auto eResult = vcl::test::OutputDeviceTestCommon::checkRectangleAA(aBitmap); exportImage("02-06_rectangle_AA_test-polyline_b2d.png", aBitmap); (void)eResult; #ifndef SKIP_TEST_ASSERTS CPPUNIT_ASSERT(eResult != vcl::test::TestResult::Failed); #endif } void testDrawRectAAWithPolyPolygon() { vcl::test::OutputDeviceTestPolyPolygon aOutDevTest; Bitmap aBitmap = aOutDevTest.setupRectangle(true); auto eResult = vcl::test::OutputDeviceTestCommon::checkRectangleAA(aBitmap); exportImage("02-07_rectangle_AA_test-polypolygon.png", aBitmap); (void)eResult; #ifndef SKIP_TEST_ASSERTS CPPUNIT_ASSERT(eResult != vcl::test::TestResult::Failed); #endif } void testDrawRectAAWithPolyPolygonB2D() { vcl::test::OutputDeviceTestPolyPolygonB2D aOutDevTest; Bitmap aBitmap = aOutDevTest.setupRectangle(true); auto eResult = vcl::test::OutputDeviceTestCommon::checkRectangleAA(aBitmap); exportImage("02-08_rectangle_AA_test-polypolygon_b2d.png", aBitmap); (void)eResult; #ifndef SKIP_TEST_ASSERTS CPPUNIT_ASSERT(eResult != vcl::test::TestResult::Failed); #endif } void testDrawFilledRectWithRectangle() { vcl::test::OutputDeviceTestRect aOutDevTest; Bitmap aBitmap = aOutDevTest.setupFilledRectangle(); auto eResult = vcl::test::OutputDeviceTestCommon::checkFilledRectangle(aBitmap); exportImage("03-01_filled_rectangle_test-rectangle.png", aBitmap); (void)eResult; #ifndef SKIP_TEST_ASSERTS CPPUNIT_ASSERT(eResult != vcl::test::TestResult::Failed); #endif } void testDrawFilledRectWithPolygon() { vcl::test::OutputDeviceTestPolygon aOutDevTest; Bitmap aBitmap = aOutDevTest.setupFilledRectangle(); auto eResult = vcl::test::OutputDeviceTestCommon::checkFilledRectangle(aBitmap); exportImage("03-02_filled_rectangle_test-polygon.png", aBitmap); (void)eResult; #ifndef SKIP_TEST_ASSERTS CPPUNIT_ASSERT(eResult != vcl::test::TestResult::Failed); #endif } void testDrawFilledRectWithPolyPolygon() { vcl::test::OutputDeviceTestPolyPolygon aOutDevTest; Bitmap aBitmap = aOutDevTest.setupFilledRectangle(); auto eResult = vcl::test::OutputDeviceTestCommon::checkFilledRectangle(aBitmap); exportImage("03-03_filled_rectangle_test-polypolygon.png", aBitmap); (void)eResult; #ifndef SKIP_TEST_ASSERTS CPPUNIT_ASSERT(eResult != vcl::test::TestResult::Failed); #endif } void testDrawFilledRectWithPolyPolygon2D() { vcl::test::OutputDeviceTestPolyPolygonB2D aOutDevTest; Bitmap aBitmap = aOutDevTest.setupFilledRectangle(); auto eResult = vcl::test::OutputDeviceTestCommon::checkFilledRectangle(aBitmap); exportImage("03-04_filled_rectangle_test-polypolygon_b2d.png", aBitmap); (void)eResult; #ifndef SKIP_TEST_ASSERTS CPPUNIT_ASSERT(eResult != vcl::test::TestResult::Failed); #endif } void testDrawDiamondWithPolygon() { vcl::test::OutputDeviceTestPolygon aOutDevTest; Bitmap aBitmap = aOutDevTest.setupDiamond(); auto eResult = vcl::test::OutputDeviceTestCommon::checkDiamond(aBitmap); exportImage("04-01_diamond_test-polygon.png", aBitmap); (void)eResult; #ifndef SKIP_TEST_ASSERTS CPPUNIT_ASSERT(eResult != vcl::test::TestResult::Failed); #endif } void testDrawDiamondWithLine() { vcl::test::OutputDeviceTestLine aOutDevTest; Bitmap aBitmap = aOutDevTest.setupDiamond(); auto eResult = vcl::test::OutputDeviceTestCommon::checkDiamond(aBitmap); exportImage("04-02_diamond_test-line.png", aBitmap); (void)eResult; #ifndef SKIP_TEST_ASSERTS CPPUNIT_ASSERT(eResult != vcl::test::TestResult::Failed); #endif } void testDrawDiamondWithPolyline() { vcl::test::OutputDeviceTestPolyLine aOutDevTest; Bitmap aBitmap = aOutDevTest.setupDiamond(); auto eResult = vcl::test::OutputDeviceTestCommon::checkDiamond(aBitmap); exportImage("04-03_diamond_test-polyline.png", aBitmap); (void)eResult; #ifndef SKIP_TEST_ASSERTS CPPUNIT_ASSERT(eResult != vcl::test::TestResult::Failed); #endif } #undef SKIP_TEST_ASSERTS CPPUNIT_TEST_SUITE(BackendTest); CPPUNIT_TEST(testDrawRectWithRectangle); CPPUNIT_TEST(testDrawRectWithPixel); CPPUNIT_TEST(testDrawRectWithLine); CPPUNIT_TEST(testDrawRectWithPolygon); CPPUNIT_TEST(testDrawRectWithPolyLine); CPPUNIT_TEST(testDrawRectWithPolyLineB2D); CPPUNIT_TEST(testDrawRectWithPolyPolygon); CPPUNIT_TEST(testDrawRectWithPolyPolygonB2D); CPPUNIT_TEST(testDrawRectAAWithRectangle); CPPUNIT_TEST(testDrawRectAAWithPixel); CPPUNIT_TEST(testDrawRectAAWithLine); CPPUNIT_TEST(testDrawRectAAWithPolygon); CPPUNIT_TEST(testDrawRectAAWithPolyLine); CPPUNIT_TEST(testDrawRectAAWithPolyLineB2D); CPPUNIT_TEST(testDrawRectAAWithPolyPolygon); CPPUNIT_TEST(testDrawRectAAWithPolyPolygonB2D); CPPUNIT_TEST(testDrawFilledRectWithRectangle); CPPUNIT_TEST(testDrawFilledRectWithPolygon); CPPUNIT_TEST(testDrawFilledRectWithPolyPolygon); CPPUNIT_TEST(testDrawFilledRectWithPolyPolygon2D); CPPUNIT_TEST(testDrawDiamondWithPolygon); CPPUNIT_TEST(testDrawDiamondWithLine); CPPUNIT_TEST(testDrawDiamondWithPolyline); CPPUNIT_TEST_SUITE_END(); }; CPPUNIT_TEST_SUITE_REGISTRATION(BackendTest); CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ LibreOffice 界面翻译代码仓库文档基金会
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2015-10-27 21:36:56 +0100
committerAndras Timar <andras.timar@collabora.com>2015-11-03 19:46:04 +0100
commitac62049051d7d87e127bf0011c44d9322425b184 (patch)
tree1d75cd3a86d253e964a827d43b201686a003ce30
parent3971f0dbbc731eb8b4763d2e16431411bd13339b (diff)
update translations for 4.4.6 rc3 cp-4.4-13cp-4.4-11distro/collabora/cp-4.4
and force-fix errors using pocheck Change-Id: I59590ceef310129ea4700839a01c3119317733f2
-rw-r--r--source/cs/officecfg/registry/data/org/openoffice/Office.po10
-rw-r--r--source/cs/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/cs/sc/source/ui/src.po10
-rw-r--r--source/cs/sd/source/ui/app.po12
-rw-r--r--source/cs/sw/uiconfig/swriter/ui.po11
-rw-r--r--source/cs/uui/uiconfig/ui.po11
-rw-r--r--source/de/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/en-GB/officecfg/registry/data/org/openoffice/Office.po10
-rw-r--r--source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po14
-rw-r--r--source/en-GB/sd/source/ui/app.po12
-rw-r--r--source/en-GB/sw/uiconfig/swriter/ui.po11
-rw-r--r--source/en-GB/uui/uiconfig/ui.po11
-rw-r--r--source/es/avmedia/source/viewer.po10
-rw-r--r--source/es/formula/source/core/resource.po4
-rw-r--r--source/es/helpcontent2/source/text/scalc/01.po32
-rw-r--r--source/es/helpcontent2/source/text/smath/01.po10
-rw-r--r--source/fr/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/is/cui/uiconfig/ui.po6
-rw-r--r--source/is/helpcontent2/source/text/scalc/guide.po11
-rw-r--r--source/is/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/is/helpcontent2/source/text/shared/autopi.po18
-rw-r--r--source/is/helpcontent2/source/text/shared/explorer/database.po8
-rw-r--r--source/is/helpcontent2/source/text/shared/guide.po8
-rw-r--r--source/is/helpcontent2/source/text/simpress/01.po8
-rw-r--r--source/is/helpcontent2/source/text/swriter/01.po16
-rw-r--r--source/is/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/is/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/is/sd/source/ui/app.po12
-rw-r--r--source/is/sw/uiconfig/swriter/ui.po10
-rw-r--r--source/nl/svx/uiconfig/ui.po10
-rw-r--r--source/pt/officecfg/registry/data/org/openoffice/Office.po12
-rw-r--r--source/pt/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/pt/sd/source/ui/app.po10
-rw-r--r--source/pt/sw/uiconfig/swriter/ui.po11
-rw-r--r--source/pt/uui/uiconfig/ui.po11
-rw-r--r--source/ta/dbaccess/source/ui/dlg.po10
-rw-r--r--source/ta/filter/source/config/fragments/filters.po64
-rw-r--r--source/ta/filter/source/config/fragments/types.po24
-rw-r--r--source/ta/instsetoo_native/inc_openoffice/windows/msi_languages.po12
-rw-r--r--source/ta/officecfg/registry/data/org/openoffice/Office.po10
-rw-r--r--source/ta/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/ta/readlicense_oo/docs.po14
-rw-r--r--source/ta/scp2/source/activex.po13
-rw-r--r--source/ta/scp2/source/draw.po16
-rw-r--r--source/ta/scp2/source/winexplorerext.po12
-rw-r--r--source/ta/sw/source/ui/dbui.po10
46 files changed, 286 insertions, 308 deletions
diff --git a/source/cs/officecfg/registry/data/org/openoffice/Office.po b/source/cs/officecfg/registry/data/org/openoffice/Office.po
index 1c0388bd0e6..3aeb7ab73a5 100644
--- a/source/cs/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/cs/officecfg/registry/data/org/openoffice/Office.po
@@ -4,17 +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: 2015-09-29 13:13+0200\n"
-"PO-Revision-Date: 2015-04-22 23:53+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2015-10-15 20:34+0000\n"
+"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\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==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429746793.000000\n"
+"X-POOTLE-MTIME: 1444941298.000000\n"
#: Addons.xcu
msgctxt ""
@@ -89,7 +89,6 @@ msgid "Clear screen"
msgstr "Vymazat obrazovku"
#: Addons.xcu
-#, fuzzy
msgctxt ""
"Addons.xcu\n"
".Addons.AddonUI.OfficeToolBar.LibreLogo.OfficeToolBar.m10\n"
@@ -99,7 +98,6 @@ msgid "Logo command line (press Enter for command execution or F1 for help)"
msgstr "Příkazový řádek pro Logo (pro vykonání příkazu stiskněte Enter, pro nápovědu F1)"
#: Addons.xcu
-#, fuzzy
msgctxt ""
"Addons.xcu\n"
".Addons.AddonUI.OfficeToolBar.LibreLogo.OfficeToolBar.m09\n"
diff --git a/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po b/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po
index b05a81cc6f3..b4cdec06011 100644
--- a/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,17 +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: 2015-09-29 13:13+0200\n"
-"PO-Revision-Date: 2015-04-22 23:53+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2015-10-15 20:35+0000\n"
+"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\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==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429746833.000000\n"
+"X-POOTLE-MTIME: 1444941306.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -3302,7 +3302,6 @@ msgid "Delete Page ~Break"
msgstr "Smazat ~zalomení stránky"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n"
@@ -14996,7 +14995,6 @@ msgid "~Bullets and Numbering..."
msgstr "Odrážky a číslování..."
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:EditDoc\n"
diff --git a/source/cs/sc/source/ui/src.po b/source/cs/sc/source/ui/src.po
index 145125e7237..e0446f800d7 100644
--- a/source/cs/sc/source/ui/src.po
+++ b/source/cs/sc/source/ui/src.po
@@ -4,17 +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: 2015-01-07 11:08+0100\n"
-"PO-Revision-Date: 2015-02-21 20:39+0000\n"
-"Last-Translator: Stanislav <stanislav.horacek@gmail.com>\n"
+"PO-Revision-Date: 2015-10-15 21:22+0000\n"
+"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\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==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Pootle 2.5.1\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1424551168.000000\n"
+"X-POOTLE-MTIME: 1444944163.000000\n"
#: condformatdlg.src
msgctxt ""
@@ -680,7 +680,7 @@ msgctxt ""
"3 Flags\n"
"stringlist.text"
msgid "3 Flags"
-msgstr "3 emotikony"
+msgstr "3 vlajky"
#: condformatdlg.src
msgctxt ""
diff --git a/source/cs/sd/source/ui/app.po b/source/cs/sd/source/ui/app.po
index d1efc7654dd..4a113384f60 100644
--- a/source/cs/sd/source/ui/app.po
+++ b/source/cs/sd/source/ui/app.po
@@ -4,17 +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: 2015-09-29 13:13+0200\n"
-"PO-Revision-Date: 2015-04-22 23:55+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2015-10-15 20:34+0000\n"
+"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\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==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429746940.000000\n"
+"X-POOTLE-MTIME: 1444941265.000000\n"
#: menuids3_tmpl.src
msgctxt ""
@@ -3778,7 +3778,7 @@ msgctxt ""
"STR_FIELD_PLACEHOLDER_SLIDENAME\n"
"string.text"
msgid "<slide-name>"
-msgstr ""
+msgstr "<název-snímku>"
#: strings.src
msgctxt ""
@@ -3786,7 +3786,7 @@ msgctxt ""
"STR_FIELD_PLACEHOLDER_PAGENAME\n"
"string.text"
msgid "<page-name>"
-msgstr ""
+msgstr "<název-stránky>"
#: strings.src
msgctxt ""
diff --git a/source/cs/sw/uiconfig/swriter/ui.po b/source/cs/sw/uiconfig/swriter/ui.po
index 3724566384d..13c02a5d834 100644
--- a/source/cs/sw/uiconfig/swriter/ui.po
+++ b/source/cs/sw/uiconfig/swriter/ui.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-09-29 13:13+0200\n"
-"PO-Revision-Date: 2015-04-22 23:57+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2015-10-15 20:32+0000\n"
+"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: none\n"
"Language: cs\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==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429747072.000000\n"
+"X-POOTLE-MTIME: 1444941172.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -5463,10 +5463,9 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Right-to-left (vertical)"
-msgstr ""
+msgstr "Zprava doleva (svisle)"
#: frmaddpage.ui
-#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"liststore1\n"
diff --git a/source/cs/uui/uiconfig/ui.po b/source/cs/uui/uiconfig/ui.po
index b93b9800739..51b826da845 100644
--- a/source/cs/uui/uiconfig/ui.po
+++ b/source/cs/uui/uiconfig/ui.po
@@ -4,17 +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: 2015-09-29 13:13+0200\n"
-"PO-Revision-Date: 2015-04-22 23:58+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2015-10-15 20:33+0000\n"
+"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\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==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429747080.000000\n"
+"X-POOTLE-MTIME: 1444941209.000000\n"
#: authfallback.ui
msgctxt ""
@@ -196,14 +196,13 @@ msgid "The document contains document macros signed by:"
msgstr "Dokument obsahuje makra podepsaná:"
#: macrowarnmedium.ui
-#, fuzzy
msgctxt ""
"macrowarnmedium.ui\n"
"descr1aLabel\n"
"label\n"
"string.text"
msgid "The document contains document macros."
-msgstr "Dokument obsahuje makra podepsaná:"
+msgstr "Dokument obsahuje makra."
#: macrowarnmedium.ui
msgctxt ""
diff --git a/source/de/officecfg/registry/data/org/openoffice/Office/UI.po b/source/de/officecfg/registry/data/org/openoffice/Office/UI.po
index 6b909dc0c5b..e89c4e3c4ef 100644
--- a/source/de/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/de/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-09-29 13:13+0200\n"
-"PO-Revision-Date: 2015-10-04 13:51+0000\n"
+"PO-Revision-Date: 2015-10-27 05:53+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1443966693.000000\n"
+"X-POOTLE-MTIME: 1445925227.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -24415,7 +24415,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "So~rt..."
-msgstr "~Sortieren..."
+msgstr "S~ortieren..."
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/en-GB/officecfg/registry/data/org/openoffice/Office.po b/source/en-GB/officecfg/registry/data/org/openoffice/Office.po
index 81349f0f318..47e1f6f61f4 100644
--- a/source/en-GB/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/en-GB/officecfg/registry/data/org/openoffice/Office.po
@@ -4,17 +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: 2015-09-29 13:13+0200\n"
-"PO-Revision-Date: 2015-04-23 00:25+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2015-10-20 09:16+0000\n"
+"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\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-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429748707.000000\n"
+"X-POOTLE-MTIME: 1445332594.000000\n"
#: Addons.xcu
msgctxt ""
@@ -89,7 +89,6 @@ msgid "Clear screen"
msgstr "Clear screen"
#: Addons.xcu
-#, fuzzy
msgctxt ""
"Addons.xcu\n"
".Addons.AddonUI.OfficeToolBar.LibreLogo.OfficeToolBar.m10\n"
@@ -99,7 +98,6 @@ msgid "Logo command line (press Enter for command execution or F1 for help)"
msgstr "Logo command line (press Enter for command execution or F1 for help)"
#: Addons.xcu
-#, fuzzy
msgctxt ""
"Addons.xcu\n"
".Addons.AddonUI.OfficeToolBar.LibreLogo.OfficeToolBar.m09\n"
diff --git a/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po b/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po
index c4fde480035..2cd9b2640ae 100644
--- a/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,17 +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: 2015-09-29 13:13+0200\n"
-"PO-Revision-Date: 2015-04-23 00:26+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2015-10-20 09:16+0000\n"
+"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\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-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429748790.000000\n"
+"X-POOTLE-MTIME: 1445332607.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -3302,14 +3302,13 @@ msgid "Delete Page ~Break"
msgstr "Delete Page ~Break"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:FillCellsMenu\n"
"Label\n"
"value.text"
msgid "F~ill"
-msgstr "Fill"
+msgstr "F~ill"
#: CalcCommands.xcu
msgctxt ""
@@ -14996,14 +14995,13 @@ msgid "~Bullets and Numbering..."
msgstr "~Bullets and Numbering..."
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:EditDoc\n"
"Label\n"
"value.text"
msgid "E~dit Mode"
-msgstr "Ed~it Mode"
+msgstr "E~dit Mode"
#: GenericCommands.xcu
msgctxt ""
diff --git a/source/en-GB/sd/source/ui/app.po b/source/en-GB/sd/source/ui/app.po
index 1a277ecea90..20fa1691a06 100644
--- a/source/en-GB/sd/source/ui/app.po
+++ b/source/en-GB/sd/source/ui/app.po
@@ -4,17 +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: 2015-09-29 13:13+0200\n"
-"PO-Revision-Date: 2015-04-23 00:29+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2015-10-20 09:16+0000\n"
+"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\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-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429748952.000000\n"
+"X-POOTLE-MTIME: 1445332617.000000\n"
#: menuids3_tmpl.src
msgctxt ""
@@ -3778,7 +3778,7 @@ msgctxt ""
"STR_FIELD_PLACEHOLDER_SLIDENAME\n"
"string.text"
msgid "<slide-name>"
-msgstr ""
+msgstr "<slide-name>"
#: strings.src
msgctxt ""
@@ -3786,7 +3786,7 @@ msgctxt ""
"STR_FIELD_PLACEHOLDER_PAGENAME\n"
"string.text"
msgid "<page-name>"
-msgstr ""
+msgstr "<page-name>"
#: strings.src
msgctxt ""
diff --git a/source/en-GB/sw/uiconfig/swriter/ui.po b/source/en-GB/sw/uiconfig/swriter/ui.po
index 367398bd429..c02ede1b4fc 100644
--- a/source/en-GB/sw/uiconfig/swriter/ui.po
+++ b/source/en-GB/sw/uiconfig/swriter/ui.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-09-29 13:13+0200\n"
-"PO-Revision-Date: 2015-04-23 00:33+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2015-10-20 09:17+0000\n"
+"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: none\n"
"Language: en_GB\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-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429749232.000000\n"
+"X-POOTLE-MTIME: 1445332629.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -5463,10 +5463,9 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Right-to-left (vertical)"
-msgstr ""
+msgstr "Right-to-left (vertical)"
#: frmaddpage.ui
-#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"liststore1\n"
diff --git a/source/en-GB/uui/uiconfig/ui.po b/source/en-GB/uui/uiconfig/ui.po
index bdc7522f8d0..7a7d584cd4f 100644
--- a/source/en-GB/uui/uiconfig/ui.po
+++ b/source/en-GB/uui/uiconfig/ui.po
@@ -4,17 +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: 2015-09-29 13:13+0200\n"
-"PO-Revision-Date: 2015-04-23 00:34+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2015-10-20 09:17+0000\n"
+"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\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-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429749246.000000\n"
+"X-POOTLE-MTIME: 1445332634.000000\n"
#: authfallback.ui
msgctxt ""
@@ -196,14 +196,13 @@ msgid "The document contains document macros signed by:"
msgstr "The document contains document macros signed by:"
#: macrowarnmedium.ui
-#, fuzzy
msgctxt ""
"macrowarnmedium.ui\n"
"descr1aLabel\n"
"label\n"
"string.text"
msgid "The document contains document macros."
-msgstr "The document contains document macros signed by:"
+msgstr "The document contains document macros."
#: macrowarnmedium.ui
msgctxt ""
diff --git a/source/es/avmedia/source/viewer.po b/source/es/avmedia/source/viewer.po
index 9b5ccc9ebf9..c39b24fcf59 100644
--- a/source/es/avmedia/source/viewer.po
+++ b/source/es/avmedia/source/viewer.po
@@ -4,17 +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: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2014-11-19 15:22+0000\n"
-"Last-Translator: Adolfo <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2015-10-21 11:57+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.5.1\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1416410539.000000\n"
+"X-POOTLE-MTIME: 1445428653.000000\n"
#: mediawindow.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"AVMEDIA_STR_OPENMEDIA_DLG\n"
"string.text"
msgid "Open Audio and Video Dialog"
-msgstr "Abrir cuadro de diálogo «Audio y vídeo»"
+msgstr "Abrir un archivo de audio o vídeo"
#: mediawindow.src
msgctxt ""
diff --git a/source/es/formula/source/core/resource.po b/source/es/formula/source/core/resource.po
index ff1c03d9f9f..0a4ab81664e 100644
--- a/source/es/formula/source/core/resource.po
+++ b/source/es/formula/source/core/resource.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: 2015-02-09 18:04+0100\n"
+"POT-Creation-Date: 2015-10-27 20:55+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"
@@ -1424,7 +1424,7 @@ msgctxt ""
"SC_OPCODE_BINOM_DIST_MS\n"
"string.text"
msgid "BINOM.DIST"
-msgstr "DISTR.BINOM2"
+msgstr "DISTR.BINOM.N"
#: core_resource.src
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/scalc/01.po b/source/es/helpcontent2/source/text/scalc/01.po
index f0103fc8df3..4c5661b3023 100644
--- a/source/es/helpcontent2/source/text/scalc/01.po
+++ b/source/es/helpcontent2/source/text/scalc/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: 2014-11-26 19:57+0100\n"
-"PO-Revision-Date: 2015-10-12 23:41+0000\n"
+"PO-Revision-Date: 2015-10-24 18:23+0000\n"
"Last-Translator: MARIO <mario_dzi@hotmail.com.ar>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1444693297.000000\n"
+"X-POOTLE-MTIME: 1445711018.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -26062,7 +26062,7 @@ msgctxt ""
"156\n"
"help.text"
msgid "<item type=\"input\">=MIDB(\"office\";2;2)</item> returns ff."
-msgstr "<ítem Tipo=\"input\">=MIDB(\"office\";2;2)</ítem> returns ff."
+msgstr "<item type=\"input\">=EXTRAEB(\"oficina\";2;2)</item> devuelve «fi»."
#: 04060110.xhp
msgctxt ""
@@ -30856,7 +30856,7 @@ msgctxt ""
"135\n"
"help.text"
msgid "ERF.PRECISE"
-msgstr "FUN.ERROR.PRECISO"
+msgstr "FUN.ERROR.EXACTO"
#: 04060115.xhp
msgctxt ""
@@ -30919,7 +30919,7 @@ msgctxt ""
"142\n"
"help.text"
msgid "<item type=\"input\">=ERF.PRECISE(0;1)</item> returns 0.842701."
-msgstr "<ítem type=\"input\">=ERF.PRECISO(0;1)</ítem> returns 0.842701."
+msgstr "<item type=\"input\">=FUN.ERROR.EXACTO(0;1)</item> devuelve 0,842701."
#: 04060115.xhp
msgctxt ""
@@ -31007,7 +31007,7 @@ msgctxt ""
"143\n"
"help.text"
msgid "ERFC.PRECISE"
-msgstr "FUN.ERROR.PRECISO"
+msgstr "FUN.ERROR.COMPL.EXACTO"
#: 04060115.xhp
msgctxt ""
@@ -31034,7 +31034,7 @@ msgctxt ""
"146\n"
"help.text"
msgid "ERFC.PRECISE(LowerLimit)"
-msgstr ""
+msgstr "FUN.ERROR.COMPL.EXACTO(LímiteInferior)"
#: 04060115.xhp
msgctxt ""
@@ -31348,14 +31348,13 @@ msgid "Example"
msgstr "Ejemplo"
#: 04060115.xhp
-#, fuzzy
msgctxt ""
"04060115.xhp\n"
"par_id3159341\n"
"101\n"
"help.text"
msgid "<item type=\"input\">=HEX2OCT(\"6a\";4)</item> returns 0152."
-msgstr "<item type=\"input\">=HEX.A.OCT(64;4)</item> devuelve 0144."
+msgstr "<item type=\"input\">=HEX.A.OCT(\"6a\";4)</item> devuelve 0152."
#: 04060116.xhp
msgctxt ""
@@ -39883,14 +39882,13 @@ msgid "<bookmark_value>BETA.INV function</bookmark_value> <bookmark_valu
msgstr ""
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"hd_id2945620\n"
"52\n"
"help.text"
msgid "BETA.INV"
-msgstr "DISTR.BETA.INV"
+msgstr "INV.BETA.N"
#: 04060181.xhp
msgctxt ""
@@ -40124,14 +40122,13 @@ msgid "<bookmark_value>BETA.DIST function</bookmark_value> <bookmark_val
msgstr ""
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"hd_id2956096\n"
"64\n"
"help.text"
msgid "BETA.DIST"
-msgstr "DISTR.BETA"
+msgstr "DISTR.BETA.N"
#: 04060181.xhp
msgctxt ""
@@ -40241,14 +40238,13 @@ msgid "<item type=\"input\">=BETA.DIST(2;8;10;1;1;3)</item> returns the value 0.
msgstr "<item type=\"input\">=DISTR.BETA(0,75;3;4)</item> devuelve el valor 0,96."
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2956119\n"
"74\n"
"help.text"
msgid "<item type=\"input\">=BETA.DIST(2;8;10;0;1;3)</item> returns the value 1.4837646"
-msgstr "<item type=\"input\">=DISTR.BETA(0,75;3;4)</item> devuelve el valor 0,96."
+msgstr "<item type=\"input\">=DISTR.BETA.N(2;8;10;0;1;3)</item> devuelve el valor 1,4837646."
#: 04060181.xhp
msgctxt ""
@@ -40358,23 +40354,21 @@ msgid "<item type=\"input\">=BINOMDIST(A1;12;0.5;1)</item> shows the cumulative
msgstr "<item type=\"input\">=DISTR.BINOM(A1;12;0.5;1)</item> muestra las probabilidades acumuladas para la misma serie. Por ejemplo, si A1 = <item type=\"input\">4</item>, la probabilidad acumulada de la serie es 0, 1, 2, 3 o 4 veces <emph>encabezado</emph> (lógica OR no exclusiva)."
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"bm_id2943228\n"
"help.text"
msgid "<bookmark_value>BINOM.DIST function</bookmark_value>"
-msgstr "<bookmark_value>DISTR.BINOM</bookmark_value>"
+msgstr "<bookmark_value>función DISTR.BINOM.N</bookmark_value>"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"hd_id2943228\n"
"76\n"
"help.text"
msgid "BINOM.DIST"
-msgstr "DISTR.BINOM"
+msgstr "DISTR.BINOM.N"
#: 04060181.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/smath/01.po b/source/es/helpcontent2/source/text/smath/01.po
index f0cefebc5ec..cc39b3f6617 100644
--- a/source/es/helpcontent2/source/text/smath/01.po
+++ b/source/es/helpcontent2/source/text/smath/01.po
@@ -4,17 +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: 2014-11-18 11:24+0100\n"
-"PO-Revision-Date: 2014-12-17 10:17+0000\n"
-"Last-Translator: Adolfo <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2015-10-15 16:35+0000\n"
+"Last-Translator: MARIO <mario_dzi@hotmail.com.ar>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\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-Generator: Pootle 2.5.1\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1418811442.000000\n"
+"X-POOTLE-MTIME: 1444926902.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -2261,7 +2261,7 @@ msgctxt ""
"45\n"
"help.text"
msgid "By typing <emph>oper</emph> in the Commands window, you can insert <emph>user-defined operators</emph> in $[officename] Math, a feature useful for incorporating special characters into a formula. An example is <emph>oper %theta x</emph>. Using the <emph>oper</emph> command, you can also insert characters not in the default $[officename] character set. <emph>oper</emph> can also be used in connection with limits; for example, <emph>oper %union from {i=1} to n x_{i}</emph>. In this example, the union symbol is indicated by the name <emph>union</emph>. However, this is not one of the predefined symbols. To define it, choose <emph>Tools - Catalog</emph>. select <emph>Special</emph> as the symbol set in the dialog that appears, then click the <emph>Edit</emph> button. In the next dialog, select <emph>Special</emph> as the symbol set again. Enter a meaningful name in the <emph>Symbol</emph> text box, for example, \"union\" and then click the union symbol in the set of symbols. Click <emph>Add</emph> and then <emph>OK</emph>. Click <emph>Close</emph> to close the <emph>Symbols</emph> dialog. You are now finished and can type the union symbol in the Commands window, by entering <emph>oper %union</emph>."
-msgstr "Escribiendo <emph>oper</emph> en la ventana Comandos, pueden insertarse <emph>operadores definidos por el usuario</emph> en $[officename] Math, una función útil para incorporar caracteres especiales en una fórmula. Un ejemplo es <emph>oper %theta x</emph>. Mediante el comando <emph>oper</emph> también pueden insertarse caracteres que no se encuentren en el juego de caracteres predeterminados de $[officename]. También es posible usar <emph>oper</emph> en conexión con los límites; por ejemplo, <emph>oper %union from {i=1} to n x_{i}</emph>. En este ejemplo, se indica el símbolo de unión mediante el nombre <emph>union</emph>. No obstante, éste no es uno de los símbolos predefinidos. define Para definirlo, seleccione <emph>Herramientas - Catálogo</emph>; seleccione <emph>Especial</emph> como conjunto de símbolos en el diálogo que aparece y a continuación pulse el botón <emph>Editar</emph>. En el diálogo siguiente, seleccione de nuevo <emph>Especial</emph> como el conjunto de símbolos. Escriba un nombre fácilmente identificable en el cuadro de texto <emph>Símbolo</emph>, por ejemplo \"unión\", y a continuación pulse sobre el símbolo de unión en el conjunto de símbolos. Haga clic en <emph>Agregar</emph> y a continuación <emph>Aceptar</emph>. Haga clic en <emph>Cerrar</emph> para cerrar el diálogo <emph>Símbolos</emph>. Ahora ha terminado y puede escribir el símbolo de unión en la ventana Comandos, escribiendo para ello <emph>oper %union</emph>."
+msgstr "Al escribir <emph>oper</emph> en la ventana Órdenes, pueden insertarse <emph>operadores definidos por el usuario</emph> en $[officename] Math, una función útil para incorporar caracteres especiales en una fórmula. Un ejemplo es <emph>oper %theta x</emph>. Mediante la orden <emph>oper</emph> también pueden insertarse caracteres que no se encuentren en el conjunto de caracteres predeterminado de $[officename]. También es posible combinar <emph>oper</emph> con los límites; por ejemplo, <emph>oper %union from {i=1} to n x_{i}</emph>. En este ejemplo, se indica el símbolo de unión mediante el nombre <emph>union</emph>. No obstante, este no es uno de los símbolos predefinidos. Para definirlo, vaya a <emph>Herramientas ▸ Catálogo</emph>; elija <emph>Especial</emph> como conjunto de símbolos en la ventana que aparece y, a continuación, pulse en el botón <emph>Editar</emph>. En la ventana siguiente, seleccione de nuevo <emph>Especial</emph> como el conjunto de símbolos. Escriba un nombre fácilmente identificable en el cuadro de texto <emph>Símbolo</emph>, por ejemplo «union», y luego pulse sobre el símbolo de unión en el conjunto de símbolos. Pulse en <emph>Añadir</emph> y luego en <emph>Aceptar</emph>. Pulse en <emph>Cerrar</emph> para cerrar la ventana <emph>Símbolos</emph>. Ahora podrá insertar el símbolo de unión al escribir en la ventana Órdenes <emph>oper %union</emph>."
#: 03090300.xhp
msgctxt ""
diff --git a/source/fr/sc/uiconfig/scalc/ui.po b/source/fr/sc/uiconfig/scalc/ui.po
index 492c096b8b5..574680a8fdb 100644
--- a/source/fr/sc/uiconfig/scalc/ui.po
+++ b/source/fr/sc/uiconfig/scalc/ui.po
@@ -4,18 +4,18 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-01-07 11:08+0100\n"
-"PO-Revision-Date: 2015-02-21 15:56+0000\n"
-"Last-Translator: Jean-Baptiste <jbfaure@libreoffice.org>\n"
+"PO-Revision-Date: 2015-10-27 17:18+0000\n"
+"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
"Language: fr\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-Generator: Pootle 2.5.1\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1424534198.000000\n"
+"X-POOTLE-MTIME: 1445966337.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -7977,7 +7977,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "General"
-msgstr "Générale"
+msgstr "Standard"
#: sidebarnumberformat.ui
msgctxt ""
diff --git a/source/is/cui/uiconfig/ui.po b/source/is/cui/uiconfig/ui.po
index 67e00e749e9..fc245c081ed 100644
--- a/source/is/cui/uiconfig/ui.po
+++ b/source/is/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ 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: 2015-01-07 11:08+0100\n"
-"PO-Revision-Date: 2015-10-13 10:39+0000\n"
+"PO-Revision-Date: 2015-10-16 12:27+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
"Language: is\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1444732793.000000\n"
+"X-POOTLE-MTIME: 1444998463.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -9739,7 +9739,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Preview"
-msgstr "Forsýn"
+msgstr "Forskoðun"
#: optappearancepage.ui
msgctxt ""
diff --git a/source/is/helpcontent2/source/text/scalc/guide.po b/source/is/helpcontent2/source/text/scalc/guide.po
index 15efb088717..3c887d979ad 100644
--- a/source/is/helpcontent2/source/text/scalc/guide.po
+++ b/source/is/helpcontent2/source/text/scalc/guide.po
@@ -3,17 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2014-05-30 13:09+0200\n"
-"PO-Revision-Date: 2011-04-12 21:46+0200\n"
-"Last-Translator: Sveinn í Felli <sveinki@nett.is>\n"
+"POT-Creation-Date: 2014-11-18 11:23+0100\n"
+"PO-Revision-Date: 2015-10-16 12:22+0000\n"
+"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: is\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-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1444998140.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -7286,7 +7287,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "Printing and Page Preview"
-msgstr ""
+msgstr "Prentun og prentskoðun"
#: main.xhp
msgctxt ""
diff --git a/source/is/helpcontent2/source/text/shared/01.po b/source/is/helpcontent2/source/text/shared/01.po
index 1534d015e74..8a31eaa2ce9 100644
--- a/source/is/helpcontent2/source/text/shared/01.po
+++ b/source/is/helpcontent2/source/text/shared/01.po