diff -Nru libreoffice-l10n-5.4.3~rc2/basic/qa/cppunit/test_vba.cxx libreoffice-l10n-5.4.4~rc2/basic/qa/cppunit/test_vba.cxx --- libreoffice-l10n-5.4.3~rc2/basic/qa/cppunit/test_vba.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/basic/qa/cppunit/test_vba.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -145,7 +145,11 @@ // Not much point even trying to run except on Windows. // (Without Excel doesn't really do anything anyway, // see "so skip test" below.) -#if defined(_WIN32) + +// Since some time, on a properly updated Windows 10, this works +// only with a 64-bit LibreOffice + +#if defined(_WIN64) // test if we have the necessary runtime environment // to run the OLE tests. uno::Reference< lang::XMultiServiceFactory > xOLEFactory; @@ -185,10 +189,6 @@ const char* macroSource[] = { "ole_ObjAssignNoDflt.vb", "ole_ObjAssignToNothing.vb", -#if !defined(_WIN64) - // This test uses Microsoft.Jet.OLEDB.4.0 Provider, that is unavailable on Win64 - "ole_dfltObjDflMethod.vb", -#endif }; OUString sMacroPathURL = m_directories.getURLFromSrc("/basic/qa/vba_tests/"); diff -Nru libreoffice-l10n-5.4.3~rc2/basic/qa/vba_tests/ole_dfltObjDflMethod.vb libreoffice-l10n-5.4.4~rc2/basic/qa/vba_tests/ole_dfltObjDflMethod.vb --- libreoffice-l10n-5.4.3~rc2/basic/qa/vba_tests/ole_dfltObjDflMethod.vb 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/basic/qa/vba_tests/ole_dfltObjDflMethod.vb 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ -Option VBASupport 1 -Option Explicit - -Rem Test accessing an object that has default object member -Rem which in turn has a default member that is a method -Function doUnitTest(TestData As String, Driver as String) As String -doUnitTest = "Begin" -Dim modifiedTimout As Long -Dim cnn1 As New ADODB.Connection -Dim rst1 As New ADODB.Recordset -Dim conStr As String -cnn1.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _ -"Data Source=" & TestData & ";" & _ -"Extended Properties=""Excel 8.0;HDR=Yes"";" -rst1.Open "SELECT * FROM [Sheet1$];", cnn1, adOpenStatic, adLockReadOnly -Dim val -val = rst1("FirstName") -If val = "Paddy" Then - doUnitTest = "OK" -Else - doUnitTest = "Failed, expected 'Paddy' got " & val -End If - -End Function diff -Nru libreoffice-l10n-5.4.3~rc2/basic/source/runtime/methods1.cxx libreoffice-l10n-5.4.4~rc2/basic/source/runtime/methods1.cxx --- libreoffice-l10n-5.4.3~rc2/basic/source/runtime/methods1.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/basic/source/runtime/methods1.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -2018,17 +2018,26 @@ rnYear = implGetDateYear( dDate ); } -inline sal_Int16 limitToINT16( sal_Int32 n32 ) +/** Limits a date to valid dates within tools' class Date capabilities. + + @return the year number, truncated if necessary and in that case also + rMonth and rDay adjusted. + */ +inline sal_Int16 limitDate( sal_Int32 n32Year, sal_Int16& rMonth, sal_Int16& rDay ) { - if( n32 > 32767 ) + if( n32Year > SAL_MAX_INT16 ) { - n32 = 32767; + n32Year = SAL_MAX_INT16; + rMonth = 12; + rDay = 31; } - else if( n32 < -32768 ) + else if( n32Year < SAL_MIN_INT16 ) { - n32 = -32768; + n32Year = SAL_MIN_INT16; + rMonth = 1; + rDay = 1; } - return (sal_Int16)n32; + return (sal_Int16)n32Year; } RTLFUNC(DateAdd) @@ -2073,7 +2082,8 @@ case INTERVAL_YYYY: { sal_Int32 nTargetYear = lNumber + nYear; - nTargetYear16 = limitToINT16( nTargetYear ); + nTargetYear16 = limitDate( nTargetYear, nMonth, nDay ); + /* TODO: should the result be error if the date was limited? It never was. */ nTargetMonth = nMonth; bOk = implDateSerial( nTargetYear16, nTargetMonth, nDay, false, true, dNewDate ); break; @@ -2118,7 +2128,8 @@ } nTargetYear = (sal_Int32)nYear + nYearsAdd; } - nTargetYear16 = limitToINT16( nTargetYear ); + nTargetYear16 = limitDate( nTargetYear, nTargetMonth, nDay ); + /* TODO: should the result be error if the date was limited? It never was. */ bOk = implDateSerial( nTargetYear16, nTargetMonth, nDay, false, true, dNewDate ); break; } diff -Nru libreoffice-l10n-5.4.3~rc2/chart2/qa/extras/chart2dump/chart2dump.cxx libreoffice-l10n-5.4.4~rc2/chart2/qa/extras/chart2dump/chart2dump.cxx --- libreoffice-l10n-5.4.3~rc2/chart2/qa/extras/chart2dump/chart2dump.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/chart2/qa/extras/chart2dump/chart2dump.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -393,7 +393,7 @@ DECLARE_DUMP_TEST(LegendTest, Chart2DumpTest, false) { - const double fLocalEPS = 700.1; + const double fLocalEPS = 1000.1; const std::vector aTestFiles = { "legend_on_right_side.odp", diff -Nru libreoffice-l10n-5.4.3~rc2/cli_ure/CliLibrary_cli_basetypes.mk libreoffice-l10n-5.4.4~rc2/cli_ure/CliLibrary_cli_basetypes.mk --- libreoffice-l10n-5.4.3~rc2/cli_ure/CliLibrary_cli_basetypes.mk 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/cli_ure/CliLibrary_cli_basetypes.mk 2017-12-12 17:45:07.000000000 +0000 @@ -11,7 +11,7 @@ $(eval $(call gb_CliLibrary_CliLibrary,cli_basetypes)) -$(eval $(call gb_CliLibrary_set_configfile,cli_basetypes,cli_ure/source/basetypes/cli_basetypes_config)) +$(eval $(call gb_CliLibrary_set_configfile,cli_basetypes,cli_ure/source/basetypes/cli_basetypes_config,cli_ure/version/version.txt)) $(eval $(call gb_CliLibrary_set_keyfile,cli_basetypes,$(SRCDIR)/cli_ure/source/cliuno.snk)) diff -Nru libreoffice-l10n-5.4.3~rc2/cli_ure/CliLibrary_cli_ure.mk libreoffice-l10n-5.4.4~rc2/cli_ure/CliLibrary_cli_ure.mk --- libreoffice-l10n-5.4.3~rc2/cli_ure/CliLibrary_cli_ure.mk 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/cli_ure/CliLibrary_cli_ure.mk 2017-12-12 17:45:07.000000000 +0000 @@ -11,7 +11,7 @@ $(eval $(call gb_CliLibrary_CliLibrary,cli_ure)) -$(eval $(call gb_CliLibrary_set_configfile,cli_ure,cli_ure/source/ure/cli_ure_config)) +$(eval $(call gb_CliLibrary_set_configfile,cli_ure,cli_ure/source/ure/cli_ure_config,cli_ure/version/version.txt)) $(eval $(call gb_CliLibrary_set_keyfile,cli_ure,$(SRCDIR)/cli_ure/source/cliuno.snk)) diff -Nru libreoffice-l10n-5.4.3~rc2/cli_ure/CliNativeLibrary_cli_cppuhelper.mk libreoffice-l10n-5.4.4~rc2/cli_ure/CliNativeLibrary_cli_cppuhelper.mk --- libreoffice-l10n-5.4.3~rc2/cli_ure/CliNativeLibrary_cli_cppuhelper.mk 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/cli_ure/CliNativeLibrary_cli_cppuhelper.mk 2017-12-12 17:45:07.000000000 +0000 @@ -13,7 +13,7 @@ $(eval $(call gb_CliNativeLibrary_wrap_library,cli_cppuhelper,cli_cppuhelper)) -$(eval $(call gb_CliNativeLibrary_set_configfile,cli_cppuhelper,cli_ure/source/native/cli_cppuhelper_config)) +$(eval $(call gb_CliNativeLibrary_set_configfile,cli_cppuhelper,cli_ure/source/native/cli_cppuhelper_config,cli_ure/version/version.txt)) $(eval $(call gb_CliNativeLibrary_set_keyfile,cli_cppuhelper,$(SRCDIR)/cli_ure/source/cliuno.snk)) diff -Nru libreoffice-l10n-5.4.3~rc2/cli_ure/CliUnoApi_cli_uretypes.mk libreoffice-l10n-5.4.4~rc2/cli_ure/CliUnoApi_cli_uretypes.mk --- libreoffice-l10n-5.4.3~rc2/cli_ure/CliUnoApi_cli_uretypes.mk 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/cli_ure/CliUnoApi_cli_uretypes.mk 2017-12-12 17:45:07.000000000 +0000 @@ -13,7 +13,7 @@ $(eval $(call gb_CliUnoApi_set_assembly_version,cli_uretypes,$(CLI_URETYPES_NEW_VERSION))) -$(eval $(call gb_CliUnoApi_set_configfile,cli_uretypes,cli_ure/unotypes/cli_uretypes_config)) +$(eval $(call gb_CliUnoApi_set_configfile,cli_uretypes,cli_ure/unotypes/cli_uretypes_config,cli_ure/version/version.txt)) $(eval $(call gb_CliUnoApi_set_keyfile,cli_uretypes,$(SRCDIR)/cli_ure/source/cliuno.snk)) diff -Nru libreoffice-l10n-5.4.3~rc2/comphelper/source/misc/docpasswordhelper.cxx libreoffice-l10n-5.4.4~rc2/comphelper/source/misc/docpasswordhelper.cxx --- libreoffice-l10n-5.4.3~rc2/comphelper/source/misc/docpasswordhelper.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/comphelper/source/misc/docpasswordhelper.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -337,6 +337,8 @@ // Erase KeyData array and leave. rtl_secureZeroMemory (pKeyData, sizeof(pKeyData)); + + rtl_digest_destroy(hDigest); } return aResultKey; diff -Nru libreoffice-l10n-5.4.3~rc2/configure.ac libreoffice-l10n-5.4.4~rc2/configure.ac --- libreoffice-l10n-5.4.3~rc2/configure.ac 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/configure.ac 2017-12-12 17:45:07.000000000 +0000 @@ -9,7 +9,7 @@ # several non-alphanumeric characters, those are split off and used only for the # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no idea. -AC_INIT([LibreOffice],[5.4.3.2],[],[],[http://documentfoundation.org/]) +AC_INIT([LibreOffice],[5.4.4.2],[],[],[http://documentfoundation.org/]) AC_PREREQ([2.59]) @@ -11350,7 +11350,7 @@ fi fi else - TEST_FONTS_MISSING=0 + TEST_FONTS_MISSING=1 fi fi AC_SUBST(WITH_FONTS) diff -Nru libreoffice-l10n-5.4.3~rc2/cui/source/factory/dlgfact.cxx libreoffice-l10n-5.4.4~rc2/cui/source/factory/dlgfact.cxx --- libreoffice-l10n-5.4.3~rc2/cui/source/factory/dlgfact.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/cui/source/factory/dlgfact.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -1007,11 +1007,11 @@ return VclPtr::Create( pDlg ); } -VclPtr AbstractDialogFactory_Impl::CreateGalleryThemePropertiesDialog( +VclPtr AbstractDialogFactory_Impl::CreateGalleryThemePropertiesDialog(vcl::Window* pParent, ExchangeData* pData, SfxItemSet* pItemSet) { - VclPtrInstance pDlg( nullptr, pData, pItemSet); + VclPtrInstance pDlg(pParent, pData, pItemSet); return VclPtr::Create( pDlg ); } diff -Nru libreoffice-l10n-5.4.3~rc2/cui/source/factory/dlgfact.hxx libreoffice-l10n-5.4.4~rc2/cui/source/factory/dlgfact.hxx --- libreoffice-l10n-5.4.3~rc2/cui/source/factory/dlgfact.hxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/cui/source/factory/dlgfact.hxx 2017-12-12 17:45:07.000000000 +0000 @@ -531,7 +531,7 @@ const OUString& rOldText) override; virtual VclPtr CreateGalleryIdDialog( vcl::Window* pParent, GalleryTheme* pThm) override; - virtual VclPtr CreateGalleryThemePropertiesDialog( + virtual VclPtr CreateGalleryThemePropertiesDialog(vcl::Window* pParent, ExchangeData* pData, SfxItemSet* pItemSet) override; virtual VclPtr CreateURLDialog( vcl::Window* pParent, diff -Nru libreoffice-l10n-5.4.3~rc2/cui/source/tabpages/border.cxx libreoffice-l10n-5.4.4~rc2/cui/source/tabpages/border.cxx --- libreoffice-l10n-5.4.3~rc2/cui/source/tabpages/border.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/cui/source/tabpages/border.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -1013,7 +1013,7 @@ for( sal_uInt16 nVSIdx = 1; nVSIdx <= SVX_BORDER_PRESET_COUNT; ++nVSIdx ) { m_pWndPresets->InsertItem( nVSIdx ); - m_pWndPresets->SetItemImage(nVSIdx, Image(m_aBorderImgVec[nVSIdx-1])); + m_pWndPresets->SetItemImage(nVSIdx, Image(m_aBorderImgVec[GetPresetImageId(nVSIdx) - 1])); m_pWndPresets->SetItemText( nVSIdx, CuiResId( GetPresetStringId( nVSIdx ) ) ); } diff -Nru libreoffice-l10n-5.4.3~rc2/debian/changelog libreoffice-l10n-5.4.4~rc2/debian/changelog --- libreoffice-l10n-5.4.3~rc2/debian/changelog 2017-11-06 09:28:54.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/debian/changelog 2017-12-13 08:36:04.000000000 +0000 @@ -1,11 +1,38 @@ -libreoffice-l10n (1:5.4.3~rc2-0ubuntu0.18.04.1~lo1) bionic; urgency=medium +libreoffice-l10n (1:5.4.4~rc2-0ubuntu0.17.10.1~lo1) artful; urgency=medium * New upstream rc release + * debian/rules: Update source-location of fc_local.conf + + -- Rico Tzschichholz Wed, 13 Dec 2017 09:36:04 +0100 + +libreoffice-l10n (1:5.4.3-0ubuntu1) bionic; urgency=medium + + * New upstream release + * debian/patches/icu-60-fixes.patch: refreshed + + -- Olivier Tilloy Wed, 22 Nov 2017 21:49:34 +0100 + +libreoffice-l10n (1:5.4.2-0ubuntu5) bionic; urgency=medium + + * debian/patches/icu-60-fixes.patch: added + (https://bugs.documentfoundation.org/show_bug.cgi?id=113705) + * debian/patches/skip-testLineBreaking-icu60.patch: removed, no longer needed + + -- Olivier Tilloy Mon, 20 Nov 2017 11:18:19 +0100 + +libreoffice-l10n (1:5.4.2-0ubuntu4) bionic; urgency=medium [ Rene Engelhard ] * debian/patches/disable-flaky-tests.diff: disable chart2_dump test + * debian/patches/ww8export-HAVE_MORE_FONTS.diff: temporarily(?) disable + testTableKeep test, fails with --without-fonts even though Liberation + is in Build-Depends:... + + [ Olivier Tilloy ] + * debian/patches/skip-testLineBreaking-icu60.patch: temporarily skip + failing unit test with ICU 60 - -- Rico Tzschichholz Mon, 06 Nov 2017 10:28:54 +0100 + -- Olivier Tilloy Mon, 13 Nov 2017 13:16:45 +0100 libreoffice-l10n (1:5.4.2-0ubuntu2) bionic; urgency=medium diff -Nru libreoffice-l10n-5.4.3~rc2/debian/config libreoffice-l10n-5.4.4~rc2/debian/config --- libreoffice-l10n-5.4.3~rc2/debian/config 2017-11-06 09:28:54.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/debian/config 2017-12-13 08:36:04.000000000 +0000 @@ -1,5 +1,5 @@ BUILD_DEPS:=autoconf, automake, bc, bison, bzip2, fastjar, flex (>= 2.3.35), gperf, libc0.1 (>= 2.10.2-7) [kfreebsd-any], libcups2-dev, libfontconfig1-dev, libfreetype6-dev (>= 2.2.0), libgl1-mesa-dev, libice-dev, libsm-dev, libx11-dev, libxaw7-dev, libxext-dev, libxinerama-dev, libxkbfile-dev, libxrender-dev, libxt-dev, libxtst-dev, pkg-config, unzip, x11proto-render-dev, xsltproc, zip, zlib1g-dev , binutils (>= 2.23) [mips mipsel], libc6 (>= 2.17-6) [mips mipsel] , gcc (>= 4:7) [m68k], g++ (>= 4:7) [m68k] , libpoppler-dev (>= 0.12.0), libpoppler-private-dev, libpoppler-cpp-dev , libgraphite2-dev (>= 0.9.3) , libharfbuzz-dev (>= 0.9.42) , libexttextcat-dev (>= 3.4.1) , libjpeg-dev , libxml2-dev (>= 2.8), libxml2-utils , libxslt1-dev , libxmlsec1-dev (>= 1.2.24) , libexpat1-dev , unixodbc-dev (>= 2.2.11) , libsane-dev , libpng-dev , libcurl4-gnutls-dev , python3 , python3-dev (>= 3.3) , dh-python , debhelper (>= 10) , dpkg-dev (>= 1.18.2~) , locales [!hppa !kfreebsd-amd64 !kfreebsd-i386 !m68k !mips !mips64 !powerpc !powerpcspe !ppc64 !s390 !s390x !sparc !sparc64] , gdb [!hppa !kfreebsd-amd64 !kfreebsd-i386 !m68k !mips !mips64 !powerpc !powerpcspe !ppc64 !s390 !s390x !sparc !sparc64] , fontconfig [!hppa !kfreebsd-amd64 !kfreebsd-i386 !m68k !mips !mips64 !powerpc !powerpcspe !ppc64 !s390 !s390x !sparc !sparc64] , fonts-liberation [!hppa !kfreebsd-amd64 !kfreebsd-i386 !m68k !mips !mips64 !powerpc !powerpcspe !ppc64 !s390 !s390x !sparc !sparc64] , fonts-crosextra-carlito [!hppa !kfreebsd-amd64 !kfreebsd-i386 !m68k !mips !mips64 !powerpc !powerpcspe !ppc64 !s390 !s390x !sparc !sparc64] , fonts-dejavu [!hppa !kfreebsd-amd64 !kfreebsd-i386 !m68k !mips !mips64 !powerpc !powerpcspe !ppc64 !s390 !s390x !sparc !sparc64] , libcppunit-dev (>= 1.14) [!hppa !kfreebsd-amd64 !kfreebsd-i386 !m68k !mips !mips64 !powerpc !powerpcspe !ppc64 !s390 !s390x !sparc !sparc64] , pstoedit [!hppa !kfreebsd-amd64 !kfreebsd-i386 !m68k !mips !mips64 !powerpc !powerpcspe !ppc64 !s390 !s390x !sparc !sparc64] , imagemagick [!hppa !kfreebsd-amd64 !kfreebsd-i386 !m68k !mips !mips64 !powerpc !powerpcspe !ppc64 !s390 !s390x !sparc !sparc64] , ghostscript [!hppa !kfreebsd-amd64 !kfreebsd-i386 !m68k !mips !mips64 !powerpc !powerpcspe !ppc64 !s390 !s390x !sparc !sparc64] , junit4 (>= 4.8.2-2) [!hppa !kfreebsd-amd64 !kfreebsd-i386 !m68k !mips !mips64 !powerpc !powerpcspe !ppc64 !s390 !s390x !sparc !sparc64] , maven-repo-helper , java-common (>= 0.49) , default-jdk (>= 1:1.6) [!hppa !mips64 !s390 !sparc] , default-jdk (>= 2:1.7-52.1) [kfreebsd-any] , default-jdk (>= 2:1.8-55) [sparc64] , ant (>= 1.7.0) [!hppa !ia64 !mips64 !s390 !sparc], ant-optional (>= 1.7.0) [!hppa !ia64 !mips64 !s390 !sparc] , javahelper (>= 0.37~) , libnss3-dev (>= 3.12.3) , libnspr4-dev , ucpp , libhunspell-dev (>= 1.1.5-2) , libhyphen-dev (>= 2.4) , libboost-dev (>= 1.58), libboost-date-time-dev (>= 1.58), libboost-iostreams-dev (>= 1.58), libboost-filesystem-dev (>= 1.58), libboost-locale-dev (>= 1.58) , libmdds-dev (>= 1.2) , liborcus-dev (>= 0.12) , libclucene-dev (>= 2.3.3.4-4.1) , librevenge-dev , libwpd-dev (>= 0.10) , libmythes-dev (>= 2:1.2) , libwps-dev (>= 0.4) , libwps-dev (>= 0.4.6) , libwpg-dev (>= 0.3) , libvisio-dev (>= 0.1) , libcdr-dev (>= 0.1) , libmspub-dev (>= 0.1) , libmwaw-dev (>= 0.3.1) , libmwaw-dev (>= 0.3.11) , libodfgen-dev (>= 0.1) , libetonyek-dev , libetonyek-dev (>= 0.1.5) , libfreehand-dev (>= 0.1) , libabw-dev (>= 0.1) , libpagemaker-dev , libe-book-dev , libe-book-dev (>= 0.1.2) , libcmis-dev (>= 0.5.0-3ubuntu1) , dh-apparmor , libeot-dev , liblcms2-dev , libldap2-dev , liblangtag-dev (>= 0.4) , libicu-dev (>= 52) , libcairo2-dev , kdelibs5-dev (>= 4:4.3.4) , libqt4-dev (>= 4:4.8) , default-libmysqlclient-dev , libmysqlcppconn-dev (>= 1.1.7-4) , libgtk2.0-dev (>= 2.18.0) , libgtk-3-dev (>= 3.8.0), libglib2.0-dev (>= 2.38.0) , gobject-introspection (>= 1.32.0), libgirepository1.0-dev (>= 1.32) , libebook1.2-dev , libpq-dev (>= 9.0~) , libxrandr-dev , libhsqldb1.8.0-java (>> 1.8.0.10) [!hppa !ia64 !mips64 !s390 !sparc], libarchive-zip-perl [!hppa !ia64 !mips64 !s390 !sparc] , liblpsolve55-dev (>= 5.5.0.13-5+b1), lp-solve (>= 5.5.0.13-5+b1) , libsuitesparse-dev (>= 1:3.4.0) , libdbus-glib-1-dev (>= 0.70) , libbluetooth-dev [linux-any] , libavahi-client-dev , libgstreamer1.0-dev , libgstreamer-plugins-base1.0-dev , libneon27-gnutls-dev , librdf0-dev (>= 1.0.16-2) , libepoxy-dev (>= 1.2) , libglm-dev (>= 0.9.6.3) , libgpgmepp-dev, libgpgme-dev, libgpg-error-dev , gettext , libdconf-dev (>= 0.15.2) -CONFIGURE_FLAGS:=--with-vendor='The Document Foundation, Debian and Ubuntu' --with-build-version='1:5.4.3~rc2-0ubuntu0.18.04.1~lo1' --prefix=/usr --mandir=/usr/share/man --docdir=/usr/share/doc/libreoffice --libdir=/usr/lib --host=x86_64-linux-gnu --build=x86_64-linux-gnu --disable-online-update --disable-fetch-external --disable-gstreamer-0-10 --without-fonts --without-myspell-dicts --enable-release-build --with-alloc=system --enable-extension-integration --with-gdrive-client-id=424119844901-gee57209rkbo1rgula4i0arilvgv3lsf.apps.googleusercontent.com --with-gdrive-client-secret=3h1DknIrVsq2wEhIuADVxQ3E --with-system-dicts --with-system-hunspell --with-system-altlinuxhyph --with-system-boost --with-system-mdds --with-system-mythes --with-system-icu --with-system-librevenge --with-system-libwpd --with-system-libwpg --with-system-libwps --with-system-libvisio --with-system-libcdr --with-system-libmspub --with-system-libmwaw --with-system-libodfgen --with-system-libetonyek --with-system-libfreehand --with-system-libebook --with-system-libabw --with-system-libpagemaker --with-system-cairo --with-system-xmlsec --with-system-beanshell --with-system-hsqldb --with-system-lpsolve --with-system-coinmp --with-system-bluez --with-system-neon --with-system-redland --with-system-epoxy --with-system-libgltf --with-system-apache-commons --with-system-graphite --with-system-harfbuzz --with-system-libexttextcat --with-system-cppunit --with-system-mariadb --with-system-mysql-cppconn --with-system-postgresql --with-system-libcmis --with-system-jpeg --with-system-libxml --with-system-expat --with-system-odbc --with-system-curl --with-system-sane --with-system-poppler --with-system-libpng --with-system-nss --with-system-clucene --with-system-lcms2 --with-system-openldap --with-system-liblangtag --with-system-orcus --with-system-ucpp --with-system-libeot --with-system-glm --with-system-gpgmepp --disable-gltf --disable-coinmp --enable-symbols --without-export-validation --with-jdk-home=/usr/lib/jvm/default-java --with-external-dict-dir=/usr/share/hunspell --with-external-hyph-dir=/usr/share/hyphen --with-boost-libdir=/usr/lib/x86_64-linux-gnu --with-external-thes-dir=/usr/share/mythes --enable-eot --enable-kde4 --enable-ext-mariadb-connector --disable-firebird-sdbc --enable-evolution2 --enable-python=system --with-hsqldb-jar=/usr/share/java/hsqldb1.8.0.jar --enable-scripting-beanshell --enable-scripting-javascript --enable-dbus --enable-avahi --enable-gstreamer-1-0 --with-webdav=neon --disable-ccache +CONFIGURE_FLAGS:=--with-vendor='The Document Foundation, Debian and Ubuntu' --with-build-version='1:5.4.4~rc2-0ubuntu0.17.10.1~lo1' --prefix=/usr --mandir=/usr/share/man --docdir=/usr/share/doc/libreoffice --libdir=/usr/lib --host=x86_64-linux-gnu --build=x86_64-linux-gnu --disable-online-update --disable-fetch-external --disable-gstreamer-0-10 --without-fonts --without-myspell-dicts --enable-release-build --with-alloc=system --enable-extension-integration --with-gdrive-client-id=424119844901-gee57209rkbo1rgula4i0arilvgv3lsf.apps.googleusercontent.com --with-gdrive-client-secret=3h1DknIrVsq2wEhIuADVxQ3E --with-system-dicts --with-system-hunspell --with-system-altlinuxhyph --with-system-boost --with-system-mdds --with-system-mythes --with-system-icu --with-system-librevenge --with-system-libwpd --with-system-libwpg --with-system-libwps --with-system-libvisio --with-system-libcdr --with-system-libmspub --with-system-libmwaw --with-system-libodfgen --with-system-libetonyek --with-system-libfreehand --with-system-libebook --with-system-libabw --with-system-libpagemaker --with-system-cairo --with-system-xmlsec --with-system-beanshell --with-system-hsqldb --with-system-lpsolve --with-system-coinmp --with-system-bluez --with-system-neon --with-system-redland --with-system-epoxy --with-system-libgltf --with-system-apache-commons --with-system-graphite --with-system-harfbuzz --with-system-libexttextcat --with-system-cppunit --with-system-mariadb --with-system-mysql-cppconn --with-system-postgresql --with-system-libcmis --with-system-jpeg --with-system-libxml --with-system-expat --with-system-odbc --with-system-curl --with-system-sane --with-system-poppler --with-system-libpng --with-system-nss --with-system-clucene --with-system-lcms2 --with-system-openldap --with-system-liblangtag --with-system-orcus --with-system-ucpp --with-system-libeot --with-system-glm --with-system-gpgmepp --disable-gltf --disable-coinmp --enable-symbols --without-export-validation --with-jdk-home=/usr/lib/jvm/default-java --with-external-dict-dir=/usr/share/hunspell --with-external-hyph-dir=/usr/share/hyphen --with-boost-libdir=/usr/lib/x86_64-linux-gnu --with-external-thes-dir=/usr/share/mythes --enable-eot --enable-kde4 --enable-ext-mariadb-connector --disable-firebird-sdbc --enable-evolution2 --enable-python=system --with-hsqldb-jar=/usr/share/java/hsqldb1.8.0.jar --enable-scripting-beanshell --enable-scripting-javascript --enable-dbus --enable-avahi --enable-gstreamer-1-0 --with-webdav=neon --disable-ccache CONFIGURE_FLAGS_LANG=--with-lang="en-US af am ar as ast be bg bn br bs ca ca-valencia cs cy da de dz el en-GB en-ZA eo es et eu fa fi fr ga gd gl gu gug he hi hr hu id is it ja ka kk km kmr-Latn kn ko lt lv mk mn ml mr nb ne nl nn nr nso oc om or pa-IN pl pt pt-BR ro ru rw si sk sl sr ss st sv ta te tg th tn tr ts ug uk uz ve vi xh zh-CN zh-TW zu" LANGPACKISOS:=en-US af am ar as ast be bg bn br bs ca ca-valencia cs cy da de dz el en-GB en-ZA eo es et eu fa fi fr ga gd gl gu gug he hi hr hu id is it ja ka kk km kmr-Latn kn ko lt lv mk mn ml mr nb ne nl nn nr nso oc om or pa-IN pl pt pt-BR ro ru rw si sk sl sr ss st sv ta te tg th tn tr ts ug uk uz ve vi xh zh-CN zh-TW zu ISOS=en-US af am ar as ast be bg bn br bs ca ca-valencia cs cy da de dz el en-GB en-ZA eo es et eu fa fi fr ga gd gl gu gug he hi hr hu id is it ja ka kk km kmr-Latn kn ko lt lv mk mn ml mr nb ne nl nn nr nso oc om or pa-IN pl pt pt-BR ro ru rw si sk sl sr ss st sv ta te tg th tn tr ts ug uk uz ve vi xh zh-CN zh-TW zu diff -Nru libreoffice-l10n-5.4.3~rc2/debian/patches/icu-60-fixes.patch libreoffice-l10n-5.4.4~rc2/debian/patches/icu-60-fixes.patch --- libreoffice-l10n-5.4.3~rc2/debian/patches/icu-60-fixes.patch 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/debian/patches/icu-60-fixes.patch 2017-12-04 08:15:20.000000000 +0000 @@ -0,0 +1,119 @@ +Description: Upgrade to ICU 60.1 +Author: David Tardon +Author: Eike Rathke +Origin: https://cgit.freedesktop.org/libreoffice/core/commit/?id=9206a08ada00e8762c4a634f242bd566028964bb + +--- a/i18npool/source/breakiterator/breakiterator_unicode.cxx ++++ b/i18npool/source/breakiterator/breakiterator_unicode.cxx +@@ -543,6 +543,27 @@ LineBreakResults SAL_CALL BreakIterator_ + } else { //word boundary break + lbr.breakIndex = pLineBI->preceding(nStartPos); + lbr.breakType = BreakType::WORDBOUNDARY; ++ ++ // Special case for Slash U+002F SOLIDUS in URI and path names. ++ // TR14 defines that as SY: Symbols Allowing Break After (A). ++ // This is unwanted in paths, see also i#17155 ++ if (lbr.breakIndex > 0 && Text[lbr.breakIndex-1] == '/') ++ { ++ // Look backward and take any whitespace before as a break ++ // opportunity. This also glues something like "w/o". ++ // Avoid an overly long path and break it as was indicated. ++ // Overly long here is arbitrarily defined. ++ const sal_Int32 nOverlyLong = 66; ++ sal_Int32 nPos = lbr.breakIndex - 1; ++ while (nPos > 0 && lbr.breakIndex - nPos < nOverlyLong) ++ { ++ if (u_isWhitespace(Text.iterateCodePoints( &nPos, -1))) ++ { ++ lbr.breakIndex = nPos + 1; ++ break; ++ } ++ } ++ } + } + + #define WJ 0x2060 // Word Joiner +--- a/i18nutil/source/utility/unicode.cxx ++++ b/i18nutil/source/utility/unicode.cxx +@@ -716,6 +716,17 @@ OString SAL_CALL unicode::getExemplarLan + sRet = "mis"; // Zsye - Emoji variant + break; + #endif ++#if (U_ICU_VERSION_MAJOR_NUM >= 60) ++ case USCRIPT_MASARAM_GONDI: ++ sRet = "gon-Gonm"; // macro language code, could be wsg,esg,gno ++ break; ++ case USCRIPT_SOYOMBO: ++ sRet = "mn-Soyo"; // abugida to write Mongolian, also Tibetan and Sanskrit ++ break; ++ case USCRIPT_ZANABAZAR_SQUARE: ++ sRet = "mn-Zanb"; // abugida to write Mongolian ++ break; ++#endif + } + return sRet; + } +--- a/include/svx/ucsubset.hrc ++++ b/include/svx/ucsubset.hrc +@@ -302,6 +302,13 @@ + #define RID_SUBSETSTR_OSAGE (RID_SUBSET_START + 274) + #define RID_SUBSETSTR_TANGUT (RID_SUBSET_START + 275) + #define RID_SUBSETSTR_TANGUT_COMPONENTS (RID_SUBSET_START + 276) ++#define RID_SUBSETSTR_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_F (RID_SUBSET_START + 277) ++#define RID_SUBSETSTR_KANA_EXTENDED_A (RID_SUBSET_START + 278) ++#define RID_SUBSETSTR_MASARAM_GONDI (RID_SUBSET_START + 279) ++#define RID_SUBSETSTR_NUSHU (RID_SUBSET_START + 280) ++#define RID_SUBSETSTR_SOYOMBO (RID_SUBSET_START + 281) ++#define RID_SUBSETSTR_SYRIAC_SUPPLEMENT (RID_SUBSET_START + 282) ++#define RID_SUBSETSTR_ZANABAZAR_SQUARE (RID_SUBSET_START + 283) + + // RID_SUBSET_END (RID_SUBSET_START + 299) + +--- a/svx/source/dialog/charmap.cxx ++++ b/svx/source/dialog/charmap.cxx +@@ -1631,6 +1631,29 @@ void SubsetMap::InitList() + aAllSubsets.push_back( Subset( 0x18800, 0x18AFF, aStringList.GetString(aStringList.FindIndex(RID_SUBSETSTR_TANGUT_COMPONENTS)) ) ); + break; + #endif ++#if (U_ICU_VERSION_MAJOR_NUM >= 60) ++ case UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_F: ++ aAllSubsets.push_back( Subset( 0x2CEB0, 0x2EBE0, aStringList.GetString(aStringList.FindIndex(RID_SUBSETSTR_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_F)) ) ); ++ break; ++ case UBLOCK_KANA_EXTENDED_A: ++ aAllSubsets.push_back( Subset( 0x1B100, 0x1B12F, aStringList.GetString(aStringList.FindIndex(RID_SUBSETSTR_KANA_EXTENDED_A)) ) ); ++ break; ++ case UBLOCK_MASARAM_GONDI: ++ aAllSubsets.push_back( Subset( 0x11D00, 0x11D5F, aStringList.GetString(aStringList.FindIndex(RID_SUBSETSTR_MASARAM_GONDI)) ) ); ++ break; ++ case UBLOCK_NUSHU: ++ aAllSubsets.push_back( Subset( 0x1B170, 0x1B2FF, aStringList.GetString(aStringList.FindIndex(RID_SUBSETSTR_NUSHU)) ) ); ++ break; ++ case UBLOCK_SOYOMBO: ++ aAllSubsets.push_back( Subset( 0x11A50, 0x11AAF, aStringList.GetString(aStringList.FindIndex(RID_SUBSETSTR_SOYOMBO)) ) ); ++ break; ++ case UBLOCK_SYRIAC_SUPPLEMENT: ++ aAllSubsets.push_back( Subset( 0x0860, 0x086f, aStringList.GetString(aStringList.FindIndex(RID_SUBSETSTR_SYRIAC_SUPPLEMENT)) ) ); ++ break; ++ case UBLOCK_ZANABAZAR_SQUARE: ++ aAllSubsets.push_back( Subset( 0x11A00, 0x11A4F, aStringList.GetString(aStringList.FindIndex(RID_SUBSETSTR_ZANABAZAR_SQUARE)) ) ); ++ break; ++#endif + + } + +--- a/svx/source/dialog/ucsubset.src ++++ b/svx/source/dialog/ucsubset.src +@@ -302,6 +302,13 @@ StringArray RID_SUBSETMAP + < "Osage"; RID_SUBSETSTR_OSAGE ; > ; + < "Tangut"; RID_SUBSETSTR_TANGUT ; > ; + < "Tangut Components"; RID_SUBSETSTR_TANGUT_COMPONENTS ; > ; ++ < "CJK Unified Ideographs Extension F"; RID_SUBSETSTR_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_F ; > ; ++ < "Kana Extended-A"; RID_SUBSETSTR_KANA_EXTENDED_A ; > ; ++ < "Masaram Gondi"; RID_SUBSETSTR_MASARAM_GONDI ; > ; ++ < "Nushu"; RID_SUBSETSTR_NUSHU ; > ; ++ < "Soyombo"; RID_SUBSETSTR_SOYOMBO ; > ; ++ < "Syriac Supplement"; RID_SUBSETSTR_SYRIAC_SUPPLEMENT ; > ; ++ < "Zanabazar Square"; RID_SUBSETSTR_ZANABAZAR_SQUARE ; > ; + }; + }; + diff -Nru libreoffice-l10n-5.4.3~rc2/debian/patches/series libreoffice-l10n-5.4.4~rc2/debian/patches/series --- libreoffice-l10n-5.4.3~rc2/debian/patches/series 2017-11-06 09:22:56.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/debian/patches/series 2017-12-04 08:21:15.000000000 +0000 @@ -30,6 +30,8 @@ gb_SUPPRESS_TESTS.diff stop-shipping-mimelnk-desktop-files.diff icu-no-icu-config.diff +ww8export-HAVE_MORE_FONTS.diff allow-root-builds-on-lp.diff #lp-753627-readd-updated-Ubuntu-brand-palette-colors.diff #integraltrans.diff +icu-60-fixes.patch diff -Nru libreoffice-l10n-5.4.3~rc2/debian/patches/ww8export-HAVE_MORE_FONTS.diff libreoffice-l10n-5.4.4~rc2/debian/patches/ww8export-HAVE_MORE_FONTS.diff --- libreoffice-l10n-5.4.3~rc2/debian/patches/ww8export-HAVE_MORE_FONTS.diff 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/debian/patches/ww8export-HAVE_MORE_FONTS.diff 2017-12-04 08:15:20.000000000 +0000 @@ -0,0 +1,22 @@ +--- a/sw/qa/extras/ww8export/ww8export.cxx 2017-05-09 19:53:51.214105419 +0200 ++++ b/sw/qa/extras/ww8export/ww8export.cxx 2017-10-08 11:36:36.035930560 +0200 +@@ -1274,14 +1274,17 @@ + } + + #if !defined(MACOSX) +-#if !TEST_FONTS_MISSING ++// A build with fonts works... ++// The intereresting thing is that this file apparently uses the Liberation ++// fonts which _are_ in Build-Depends, so it should work... ++/*#if !TEST_FONTS_MISSING + DECLARE_WW8EXPORT_TEST(testTableKeep, "tdf91083.odt") + { + //emulate table "keep with next" -do not split table + CPPUNIT_ASSERT_EQUAL( OUString("Row 1"), parseDump("/root/page[3]/body/tab[1]/row[2]/cell[1]/txt[1]") ); + CPPUNIT_ASSERT_EQUAL( OUString("Row 1"), parseDump("/root/page[6]/body/tab[1]/row[2]/cell[1]/txt[1]") ); + } +-#endif ++#endif*/ + #endif + + DECLARE_WW8EXPORT_TEST(testTdf76349_textboxMargins, "tdf76349_textboxMargins.doc") diff -Nru libreoffice-l10n-5.4.3~rc2/desktop/source/app/officeipcthread.cxx libreoffice-l10n-5.4.4~rc2/desktop/source/app/officeipcthread.cxx --- libreoffice-l10n-5.4.3~rc2/desktop/source/app/officeipcthread.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/desktop/source/app/officeipcthread.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -53,6 +53,7 @@ #if ENABLE_DBUS #include +#include #endif using namespace desktop; @@ -563,116 +564,75 @@ break; } } - dbus_connection_read_write_dispatch(connection_.connection, -1); - DbusMessageHolder msg( - dbus_connection_pop_message(connection_.connection)); - if (msg.message == nullptr) { - continue; - } - if (dbus_message_is_method_call( - msg.message, "org.libreoffice.LibreOfficeIpcIfc0", "Close")) - { + if (!dbus_connection_read_write(connection_.connection, -1)) { break; } - if (!dbus_message_is_method_call( - msg.message, "org.libreoffice.LibreOfficeIpcIfc0", "Execute")) - { - SAL_INFO("desktop.app", "unknown DBus message ignored"); - continue; - } - DBusMessageIter it; - if (!dbus_message_iter_init(msg.message, &it)) { - SAL_WARN("desktop.app", "DBus message without argument ignored"); - continue; - } - if (dbus_message_iter_get_arg_type(&it) != DBUS_TYPE_STRING) { - SAL_WARN( - "desktop.app", "DBus message with non-string argument ignored"); - continue; - } - char const * argstr; - dbus_message_iter_get_basic(&it, &argstr); - bool waitProcessed = false; - { - osl::MutexGuard g(RequestHandler::GetMutex()); - if (!process(argstr, &waitProcessed)) { + for (;;) { + DbusMessageHolder msg( + dbus_connection_pop_message(connection_.connection)); + if (msg.message == nullptr) { + break; + } + if (!dbus_message_is_method_call( + msg.message, "org.libreoffice.LibreOfficeIpcIfc0", + "Execute")) + { + SAL_INFO("desktop.app", "unknown DBus message ignored"); continue; } + DBusMessageIter it; + if (!dbus_message_iter_init(msg.message, &it)) { + SAL_WARN( + "desktop.app", "DBus message without argument ignored"); + continue; + } + if (dbus_message_iter_get_arg_type(&it) != DBUS_TYPE_STRING) { + SAL_WARN( + "desktop.app", + "DBus message with non-string argument ignored"); + continue; + } + char const * argstr; + dbus_message_iter_get_basic(&it, &argstr); + bool waitProcessed = false; + { + osl::MutexGuard g(RequestHandler::GetMutex()); + if (!process(argstr, &waitProcessed)) { + continue; + } + } + if (waitProcessed) { + m_handler->cProcessed.wait(); + } + DbusMessageHolder repl(dbus_message_new_method_return(msg.message)); + if (repl.message == nullptr) { + SAL_WARN( + "desktop.app", "dbus_message_new_method_return failed"); + continue; + } + dbus_uint32_t serial = 0; + if (!dbus_connection_send( + connection_.connection, repl.message, &serial)) { + SAL_WARN("desktop.app", "dbus_connection_send failed"); + continue; + } + dbus_connection_flush(connection_.connection); } - if (waitProcessed) { - m_handler->cProcessed.wait(); - } - DbusMessageHolder repl(dbus_message_new_method_return(msg.message)); - if (repl.message == nullptr) { - SAL_WARN("desktop.app", "dbus_message_new_method_return failed"); - continue; - } - dbus_uint32_t serial = 0; - if (!dbus_connection_send( - connection_.connection, repl.message, &serial)) { - SAL_WARN("desktop.app", "dbus_connection_send failed"); - continue; - } - dbus_connection_flush(connection_.connection); } } void DbusIpcThread::close() { assert(connection_.connection != nullptr); - DBusError e; - dbus_error_init(&e); - { - // Let DbusIpcThread::execute return from dbus_connection_read_write; - // for now, just abort on failure (the process would otherwise block, - // with DbusIpcThread::execute hanging in dbus_connection_read_write); - // this apparently needs a more DBus-y design anyway: - DbusConnectionHolder con(dbus_bus_get_private(DBUS_BUS_SESSION, &e)); - assert((con.connection == nullptr) == bool(dbus_error_is_set(&e))); - if (con.connection == nullptr) { - SAL_WARN( - "desktop.app", - "dbus_bus_get_private failed with: " << e.name << ": " - << e.message); - dbus_error_free(&e); - std::abort(); - } - DbusMessageHolder msg( - dbus_message_new_method_call( - "org.libreoffice.LibreOfficeIpc0", - "/org/libreoffice/LibreOfficeIpc0", - "org.libreoffice.LibreOfficeIpcIfc0", "Close")); - if (msg.message == nullptr) { - SAL_WARN("desktop.app", "dbus_message_new_method_call failed"); - std::abort(); - } - if (!dbus_connection_send(con.connection, msg.message, nullptr)) - { - SAL_WARN("desktop.app", "dbus_connection_send failed"); - std::abort(); - } - dbus_connection_flush(con.connection); - } - int n = dbus_bus_release_name( - connection_.connection, "org.libreoffice.LibreOfficeIpc0", &e); - assert((n == -1) == bool(dbus_error_is_set(&e))); - switch (n) { - case -1: - SAL_WARN( - "desktop.app", - "dbus_bus_release_name failed with: " << e.name << ": " - << e.message); - dbus_error_free(&e); - break; - case DBUS_RELEASE_NAME_REPLY_RELEASED: - break; - case DBUS_RELEASE_NAME_REPLY_NOT_OWNER: - case DBUS_RELEASE_NAME_REPLY_NON_EXISTENT: - SAL_WARN( - "desktop.app", - "dbus_bus_release_name failed with unexpected " << +n); - break; - default: - for (;;) std::abort(); + // Make dbus_connection_read_write fall out of internal poll call blocking + // on POLLIN: + int fd; + if (!dbus_connection_get_socket(connection_.connection, &fd)) { + SAL_WARN("desktop.app", "dbus_connection_get_socket failed"); + return; + } + if (shutdown(fd, SHUT_RD) == -1) { + auto const e = errno; + SAL_WARN("desktop.app", "shutdown failed with errno " << e); } } diff -Nru libreoffice-l10n-5.4.3~rc2/editeng/source/editeng/editview.cxx libreoffice-l10n-5.4.4~rc2/editeng/source/editeng/editview.cxx --- libreoffice-l10n-5.4.3~rc2/editeng/source/editeng/editview.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/editeng/source/editeng/editview.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -220,11 +220,14 @@ void EditView::SetSelection( const ESelection& rESel ) { - // If someone has just left an empty attribute, and then the outliner - // manipulates the selection: + // If someone has just left an empty attribute, and then the + // outliner manipulates the selection, call the CursorMoved method + // so that empty attributes get cleaned up. if ( !pImpEditView->GetEditSelection().HasRange() ) { - ContentNode* pNode = pImpEditView->GetEditSelection().Max().GetNode(); + // tdf#113591 Get node from EditDoc, as the selection might + // have a pointer to an already deleted node. + ContentNode* pNode = pImpEditView->pEditEngine->GetEditDoc().GetEndPaM().GetNode(); pImpEditView->pEditEngine->CursorMoved( pNode ); } EditSelection aNewSelection( pImpEditView->pEditEngine->pImpEditEngine->ConvertSelection( diff -Nru libreoffice-l10n-5.4.3~rc2/external/curl/CVE-2017-8816.patch libreoffice-l10n-5.4.4~rc2/external/curl/CVE-2017-8816.patch --- libreoffice-l10n-5.4.3~rc2/external/curl/CVE-2017-8816.patch 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/external/curl/CVE-2017-8816.patch 2017-12-12 17:45:07.000000000 +0000 @@ -0,0 +1,67 @@ +From 7947c50bcd09cf471c95511739bc66d2cb506ee2 Mon Sep 17 00:00:00 2001 +From: Daniel Stenberg +Date: Mon, 6 Nov 2017 23:51:52 +0100 +Subject: [PATCH] ntlm: avoid integer overflow for malloc size + +Reported-by: Alex Nichols +Assisted-by: Kamil Dudka and Max Dymond + +CVE-2017-8816 + +Bug: https://curl.haxx.se/docs/adv_2017-11e7.html +--- + lib/curl_ntlm_core.c | 23 +++++++++++++++++++++-- + 1 file changed, 21 insertions(+), 2 deletions(-) + +diff --git a/lib/curl_ntlm_core.c b/lib/curl_ntlm_core.c +index 1309bf0d9..e8962769c 100644 +--- a/lib/curl_ntlm_core.c ++++ b/lib/curl_ntlm_core.c +@@ -644,23 +644,42 @@ CURLcode Curl_hmac_md5(const unsigned char *key, unsigned int keylen, + Curl_HMAC_final(ctxt, output); + + return CURLE_OK; + } + ++#ifndef SIZE_T_MAX ++/* some limits.h headers have this defined, some don't */ ++#if defined(SIZEOF_SIZE_T) && (SIZEOF_SIZE_T > 4) ++#define SIZE_T_MAX 18446744073709551615U ++#else ++#define SIZE_T_MAX 4294967295U ++#endif ++#endif ++ + /* This creates the NTLMv2 hash by using NTLM hash as the key and Unicode + * (uppercase UserName + Domain) as the data + */ + CURLcode Curl_ntlm_core_mk_ntlmv2_hash(const char *user, size_t userlen, + const char *domain, size_t domlen, + unsigned char *ntlmhash, + unsigned char *ntlmv2hash) + { + /* Unicode representation */ +- size_t identity_len = (userlen + domlen) * 2; +- unsigned char *identity = malloc(identity_len); ++ size_t identity_len; ++ unsigned char *identity; + CURLcode result = CURLE_OK; + ++ /* we do the length checks below separately to avoid integer overflow risk ++ on extreme data lengths */ ++ if((userlen > SIZE_T_MAX/2) || ++ (domlen > SIZE_T_MAX/2) || ++ ((userlen + domlen) > SIZE_T_MAX/2)) ++ return CURLE_OUT_OF_MEMORY; ++ ++ identity_len = (userlen + domlen) * 2; ++ identity = malloc(identity_len); ++ + if(!identity) + return CURLE_OUT_OF_MEMORY; + + ascii_uppercase_to_unicode_le(identity, user, userlen); + ascii_to_unicode_le(identity + (userlen << 1), domain, domlen); +-- +2.15.0 + diff -Nru libreoffice-l10n-5.4.3~rc2/external/curl/UnpackedTarball_curl.mk libreoffice-l10n-5.4.4~rc2/external/curl/UnpackedTarball_curl.mk --- libreoffice-l10n-5.4.3~rc2/external/curl/UnpackedTarball_curl.mk 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/external/curl/UnpackedTarball_curl.mk 2017-12-12 17:45:07.000000000 +0000 @@ -23,6 +23,7 @@ external/curl/curl-msvc-schannel.patch.1 \ external/curl/curl-7.26.0_win-proxy.patch \ external/curl/curl-xp.patch.1 \ + external/curl/CVE-2017-8816.patch \ )) ifeq ($(SYSTEM_NSS),) diff -Nru libreoffice-l10n-5.4.3~rc2/external/icu/icu4c-changeset-40324.patch.1 libreoffice-l10n-5.4.4~rc2/external/icu/icu4c-changeset-40324.patch.1 --- libreoffice-l10n-5.4.3~rc2/external/icu/icu4c-changeset-40324.patch.1 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/external/icu/icu4c-changeset-40324.patch.1 2017-12-12 17:45:07.000000000 +0000 @@ -0,0 +1,11 @@ +# https://ssl.icu-project.org/trac/changeset/40324/trunk/icu4c/source/i18n/zonemeta.cpp +Index: trunk/icu4c/source/i18n/zonemeta.cpp +=================================================================== +--- icu.orig/source/i18n/zonemeta.cpp ++++ icu/source/i18n/zonemeta.cpp +@@ -691,5 +691,4 @@ + if (U_FAILURE(status)) { + delete mzMappings; +- deleteOlsonToMetaMappingEntry(entry); + uprv_free(entry); + break; diff -Nru libreoffice-l10n-5.4.3~rc2/external/icu/UnpackedTarball_icu.mk libreoffice-l10n-5.4.4~rc2/external/icu/UnpackedTarball_icu.mk --- libreoffice-l10n-5.4.3~rc2/external/icu/UnpackedTarball_icu.mk 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/external/icu/UnpackedTarball_icu.mk 2017-12-12 17:45:07.000000000 +0000 @@ -27,6 +27,7 @@ $(if $(filter-out ANDROID,$(OS)),external/icu/icu4c-icudata-stdlibs.diff) \ external/icu/khmerbreakengine.patch \ external/icu/icu4c-changeset-39671.patch.1 \ + external/icu/icu4c-changeset-40324.patch.1 \ )) $(eval $(call gb_UnpackedTarball_add_file,icu,source/data/brkitr/khmerdict.dict,external/icu/khmerdict.dict)) diff -Nru libreoffice-l10n-5.4.3~rc2/external/more_fonts/fc_local.snippet libreoffice-l10n-5.4.4~rc2/external/more_fonts/fc_local.snippet --- libreoffice-l10n-5.4.3~rc2/external/more_fonts/fc_local.snippet 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/external/more_fonts/fc_local.snippet 2017-12-12 17:45:07.000000000 +0000 @@ -0,0 +1,29 @@ + + + + Liberation Sans Narrow + + Arial Narrow + + + + + Arial Narrow + + Liberation Sans Narrow + + + + + Calibri + + Carlito + + + + + Cambria + + Caladea + + diff -Nru libreoffice-l10n-5.4.3~rc2/external/more_fonts/fonts/fc_local.conf libreoffice-l10n-5.4.4~rc2/external/more_fonts/fonts/fc_local.conf --- libreoffice-l10n-5.4.3~rc2/external/more_fonts/fonts/fc_local.conf 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/external/more_fonts/fonts/fc_local.conf 1970-01-01 00:00:00.000000000 +0000 @@ -1,35 +0,0 @@ - - - - - - - - Liberation Sans Narrow - - Arial Narrow - - - - - Arial Narrow - - Liberation Sans Narrow - - - - - Calibri - - Carlito - - - - - Cambria - - Caladea - - - - diff -Nru libreoffice-l10n-5.4.3~rc2/external/more_fonts/Module_more_fonts.mk libreoffice-l10n-5.4.4~rc2/external/more_fonts/Module_more_fonts.mk --- libreoffice-l10n-5.4.3~rc2/external/more_fonts/Module_more_fonts.mk 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/external/more_fonts/Module_more_fonts.mk 2017-12-12 17:45:07.000000000 +0000 @@ -10,7 +10,6 @@ $(eval $(call gb_Module_Module,more_fonts)) $(eval $(call gb_Module_add_targets,more_fonts,\ - Package_conf \ ExternalPackage_caladea \ ExternalPackage_carlito \ ExternalPackage_dejavu \ diff -Nru libreoffice-l10n-5.4.3~rc2/external/more_fonts/Package_conf.mk libreoffice-l10n-5.4.4~rc2/external/more_fonts/Package_conf.mk --- libreoffice-l10n-5.4.3~rc2/external/more_fonts/Package_conf.mk 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/external/more_fonts/Package_conf.mk 1970-01-01 00:00:00.000000000 +0000 @@ -1,14 +0,0 @@ -# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- -# -# 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/. -# - -$(eval $(call gb_Package_Package,more_fonts_conf,$(SRCDIR)/external/more_fonts/fonts)) - -$(eval $(call gb_Package_add_file,more_fonts_conf,$(LIBO_SHARE_FOLDER)/fonts/truetype/fc_local.conf,fc_local.conf)) - -# vim: set noet sw=4 ts=4: diff -Nru libreoffice-l10n-5.4.3~rc2/extras/source/autocorr/lang/en-GB/DocumentList.xml libreoffice-l10n-5.4.4~rc2/extras/source/autocorr/lang/en-GB/DocumentList.xml --- libreoffice-l10n-5.4.3~rc2/extras/source/autocorr/lang/en-GB/DocumentList.xml 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/extras/source/autocorr/lang/en-GB/DocumentList.xml 2017-12-12 17:45:07.000000000 +0000 @@ -825,35 +825,47 @@ + + + + + + + + + + + + @@ -952,10 +964,10 @@ + - @@ -1016,7 +1028,6 @@ - @@ -1104,6 +1115,7 @@ + diff -Nru libreoffice-l10n-5.4.3~rc2/extras/source/autocorr/lang/hr/DocumentList.xml libreoffice-l10n-5.4.4~rc2/extras/source/autocorr/lang/hr/DocumentList.xml --- libreoffice-l10n-5.4.3~rc2/extras/source/autocorr/lang/hr/DocumentList.xml 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/extras/source/autocorr/lang/hr/DocumentList.xml 2017-12-12 17:45:07.000000000 +0000 @@ -19,6 +19,8 @@ + + @@ -74,8 +76,6 @@ - - @@ -845,9 +845,9 @@ - + diff -Nru libreoffice-l10n-5.4.3~rc2/extras/source/autocorr/lang/ru/DocumentList.xml libreoffice-l10n-5.4.4~rc2/extras/source/autocorr/lang/ru/DocumentList.xml --- libreoffice-l10n-5.4.3~rc2/extras/source/autocorr/lang/ru/DocumentList.xml 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/extras/source/autocorr/lang/ru/DocumentList.xml 2017-12-12 17:45:07.000000000 +0000 @@ -1037,7 +1037,6 @@ - @@ -1054,6 +1053,7 @@ + diff -Nru libreoffice-l10n-5.4.3~rc2/extras/source/autocorr/lang/zh-TW/DocumentList.xml libreoffice-l10n-5.4.4~rc2/extras/source/autocorr/lang/zh-TW/DocumentList.xml --- libreoffice-l10n-5.4.3~rc2/extras/source/autocorr/lang/zh-TW/DocumentList.xml 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/extras/source/autocorr/lang/zh-TW/DocumentList.xml 2017-12-12 17:45:07.000000000 +0000 @@ -811,23 +811,80 @@ - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -835,21 +892,31 @@ + + - + + + + + + + + + @@ -859,29 +926,61 @@ + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + @@ -889,318 +988,975 @@ - + + + + + + + + + + + + + + + + - + + + + + - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + - + - + - + + + - + + - + + - + + + + + + + + + + + + + + + - - - + + + + + + + + + + + + + + + + + - + + + + + + + + - - - - - + + + + + + + + + + + + + + + - + + + + + + + - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + - + + + + + + + - + + + + + + + + + + + + - + + - + + + + + + + + + - + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + - - - + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + + - - + + + + + - + + + + + + - + + - + + + - + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + - + + + - - - + + + + + + + - - + + + + + + + + + + + + - - - + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + - - - - + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + - + + + + + + + + + + - + + + + + - - - - + + + + + + + + + - - - + + + + + + - - + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + + + + + + - + + + + + + + + - - + + + + + + + - - + + + + + + + + + + + - - + + + + + + + - - + + + + + + + + + + + + + + - + + + + + + + + - - - + + + - - - - + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + diff -Nru libreoffice-l10n-5.4.3~rc2/extras/source/truetype/symbol/fc_local.snippet libreoffice-l10n-5.4.4~rc2/extras/source/truetype/symbol/fc_local.snippet --- libreoffice-l10n-5.4.3~rc2/extras/source/truetype/symbol/fc_local.snippet 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/extras/source/truetype/symbol/fc_local.snippet 2017-12-12 17:45:07.000000000 +0000 @@ -0,0 +1,6 @@ + + Symbol + + OpenSymbol + + diff -Nru libreoffice-l10n-5.4.3~rc2/filter/source/graphicfilter/icgm/class7.cxx libreoffice-l10n-5.4.4~rc2/filter/source/graphicfilter/icgm/class7.cxx --- libreoffice-l10n-5.4.3~rc2/filter/source/graphicfilter/icgm/class7.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/filter/source/graphicfilter/icgm/class7.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -30,16 +30,23 @@ case 0x01 : /*Message */break; case 0x02 : { - sal_uInt8* pAppData = mpSource + 12; + if (mpEndValidSource - mpSource < 12) + throw css::uno::Exception("attempt to read past end of input", nullptr); + sal_uInt16* pTemp = reinterpret_cast(mpSource); sal_uInt16 nOpcode = pTemp[ 4 ]; + sal_uInt8* pAppData = mpSource + 12; + if ( mpChart || ( nOpcode == 0 ) ) { switch ( nOpcode ) { case 0x000 : /*AppData - Beginning of File Opcodes*/ { + if (mpEndValidSource - pAppData < 4) + throw css::uno::Exception("attempt to read past end of input", nullptr); + if ( mpChart == nullptr ) mpChart = new CGMChart; mpChart->mnCurrentFileType = pAppData[ 3 ]; @@ -68,6 +75,9 @@ case 0x262 : /*AppData - ENDGROUP */break; case 0x264 : /*AppData - DATANODE*/ { + if (static_cast(mpEndValidSource - pAppData) < sizeof(DataNode)) + throw css::uno::Exception("attempt to read past end of input", nullptr); + mpChart->mDataNode[ 0 ] = *reinterpret_cast( pAppData ); sal_Int8 nZoneEnum = mpChart->mDataNode[ 0 ].nZoneEnum; if ( nZoneEnum && ( nZoneEnum <= 6 ) ) @@ -76,6 +86,9 @@ break; case 0x2BE : /*AppData - SHWSLIDEREC*/ { + if (mpEndValidSource - pAppData < 16) + throw css::uno::Exception("attempt to read past end of input", nullptr); + if ( pAppData[ 16 ] == 0 ) // a blank template ? { if ( pAppData[ 2 ] == 46 ) @@ -101,6 +114,9 @@ case 0x2CA : /*AppData - SHWAPP */break; case 0x320 : /*AppData - TEXT*/ { + if (mpEndValidSource - pAppData < 9) + throw css::uno::Exception("attempt to read past end of input", nullptr); + TextEntry* pTextEntry = new TextEntry; pTextEntry->nTypeOfText = *(reinterpret_cast( pAppData ) ); pTextEntry->nRowOrLineNum = *(reinterpret_cast( pAppData + 2 ) ); diff -Nru libreoffice-l10n-5.4.3~rc2/filter/source/graphicfilter/idxf/dxftblrd.cxx libreoffice-l10n-5.4.4~rc2/filter/source/graphicfilter/idxf/dxftblrd.cxx --- libreoffice-l10n-5.4.3~rc2/filter/source/graphicfilter/idxf/dxftblrd.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/filter/source/graphicfilter/idxf/dxftblrd.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -68,9 +68,14 @@ rDGR.SetError(); return; } - if (nDashIndex(pRet)->GetSubList() ) + if (pTmp) { - static_cast(pRet)->GetSubList()->NbcInsertObject( pTmp ); - if( nShapeId ) - insertShapeId( nShapeId, pTmp ); + SdrObjGroup* pGroup = dynamic_cast(pRet); + if (pGroup && pGroup->GetSubList()) + { + pGroup->GetSubList()->NbcInsertObject(pTmp); + if (nShapeId) + insertShapeId(nShapeId, pTmp); + } } } else if ( aRecHd2.nRecType == DFF_msofbtSpContainer ) @@ -4115,11 +4119,15 @@ return pRet; sal_Int32 nShapeId; SdrObject* pTmp = ImportShape( aRecHd2, rSt, pClientData, aClientRect, aGlobalChildRect, nCalledByGroup + 1, &nShapeId ); - if ( pTmp && pRet && static_cast(pRet)->GetSubList()) + if (pTmp) { - static_cast(pRet)->GetSubList()->NbcInsertObject( pTmp ); - if( nShapeId ) - insertShapeId( nShapeId, pTmp ); + SdrObjGroup* pGroup = dynamic_cast(pRet); + if (pGroup && pGroup->GetSubList()) + { + pGroup->GetSubList()->NbcInsertObject(pTmp); + if (nShapeId) + insertShapeId(nShapeId, pTmp); + } } } if (!aRecHd2.SeekToEndOfRecord(rSt)) @@ -6026,7 +6034,10 @@ return false; } else - rSt.SeekRel( nLength ); + { + if (!checkSeek(rSt, rSt.Tell() + nLength)) + return false; + } nReadSpGrCont += nLength; } while( nReadSpGrCont < nLenShapeGroupCont ); diff -Nru libreoffice-l10n-5.4.3~rc2/framework/source/services/desktop.cxx libreoffice-l10n-5.4.4~rc2/framework/source/services/desktop.cxx --- libreoffice-l10n-5.4.3~rc2/framework/source/services/desktop.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/framework/source/services/desktop.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -1825,10 +1825,30 @@ rtl::Reference instance; }; -struct Singleton: - public rtl::StaticWithArg< - Instance, css::uno::Reference, Singleton> -{}; +struct InstanceInit { + Instance * operator() (css::uno::Reference const& xContext) { + static Instance instance(xContext); + return &instance; + } +}; + +struct GetSolarMutex { + comphelper::SolarMutex * operator() () + { + return &Application::GetSolarMutex(); + } +}; + +Instance & getInstance(css::uno::Reference const& xContext) +{ + // tdf#114025 init with SolarMutex to avoid deadlock + return *rtl_Instance, + GetSolarMutex, + css::uno::Reference const> + ::create(InstanceInit(), GetSolarMutex(), xContext); +} } @@ -1837,7 +1857,7 @@ css::uno::XComponentContext *context, css::uno::Sequence const &) { - return cppu::acquire(Singleton::get(context).instance.get()); + return cppu::acquire(getInstance(context).instance.get()); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-l10n-5.4.3~rc2/.gitignore libreoffice-l10n-5.4.4~rc2/.gitignore --- libreoffice-l10n-5.4.3~rc2/.gitignore 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/.gitignore 2017-12-12 17:45:07.000000000 +0000 @@ -171,3 +171,6 @@ # Sublime Specific *.sublime-project *.sublime-workspace + +# vim-ide-integration +/compile_commands.json diff -Nru libreoffice-l10n-5.4.3~rc2/.gitreview libreoffice-l10n-5.4.4~rc2/.gitreview --- libreoffice-l10n-5.4.3~rc2/.gitreview 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/.gitreview 2017-12-12 17:45:07.000000000 +0000 @@ -3,5 +3,5 @@ port=29418 project=core defaultremote=logerrit -defaultbranch=libreoffice-5-4-3 +defaultbranch=libreoffice-5-4-4 diff -Nru libreoffice-l10n-5.4.3~rc2/include/oox/drawingml/clrscheme.hxx libreoffice-l10n-5.4.4~rc2/include/oox/drawingml/clrscheme.hxx --- libreoffice-l10n-5.4.3~rc2/include/oox/drawingml/clrscheme.hxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/include/oox/drawingml/clrscheme.hxx 2017-12-12 17:45:07.000000000 +0000 @@ -28,9 +28,42 @@ #include #include +#include namespace oox { namespace drawingml { +enum PredefinedClrSchemeId { + //dk1, + //lt1, + dk2 = 0, + lt2, + accent1, + accent2, + accent3, + accent4, + accent5, + accent6, + hlink, + folHlink, + Count +}; + +static std::map PredefinedClrNames = +{ + //{ dk1, "dk1" }, + //{ lt1, "lt1" }, + { dk2, "dk2" }, + { lt2, "lt2" }, + { accent1, "accent1" }, + { accent2, "accent2" }, + { accent3, "accent3" }, + { accent4, "accent4" }, + { accent5, "accent5" }, + { accent6, "accent6" }, + { hlink, "hlink" }, + { folHlink, "folHlink" } +}; + class ClrMap { std::map < sal_Int32, sal_Int32 > maClrMap; diff -Nru libreoffice-l10n-5.4.3~rc2/include/oox/drawingml/drawingmltypes.hxx libreoffice-l10n-5.4.4~rc2/include/oox/drawingml/drawingmltypes.hxx --- libreoffice-l10n-5.4.3~rc2/include/oox/drawingml/drawingmltypes.hxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/include/oox/drawingml/drawingmltypes.hxx 2017-12-12 17:45:07.000000000 +0000 @@ -151,6 +151,21 @@ /** retrieve the content of CT_IndexRange */ IndexRange GetIndexRange( const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttributes ); +/** +* nRotation is a 100th of a degree and the return value is +* in a 60,000th of a degree +* +* Also rotation is in opposite directions so multiply with -1 +*/ +inline OString calcRotationValue(sal_Int32 nRotation) +{ + if (nRotation > 18000) // 180 degree + { + nRotation -= 36000; + } + nRotation *= -600; + return OString::number(nRotation); +} const sal_Int32 EMU_PER_HMM = 360; /// 360 EMUs per 1/100 mm. const sal_Int32 EMU_PER_PT = 12700; diff -Nru libreoffice-l10n-5.4.3~rc2/include/oox/export/utils.hxx libreoffice-l10n-5.4.4~rc2/include/oox/export/utils.hxx --- libreoffice-l10n-5.4.3~rc2/include/oox/export/utils.hxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/include/oox/export/utils.hxx 2017-12-12 17:45:07.000000000 +0000 @@ -25,9 +25,17 @@ #include inline OString I32S_(sal_Int32 x) { return OString::number(x); } +inline OString I32SHEX_(sal_Int32 x) +{ + OString aStr = OString::number(x, 16); + while (aStr.getLength() < 6) + aStr = OString("0") + aStr; + return aStr.getStr(); +} inline OString I64S_(sal_Int64 x) { return OString::number(x); } #define I32S(x) I32S_(x).getStr() #define I64S(x) I64S_(x).getStr() +#define I32SHEX(x) I32SHEX_(x).getStr() #define IS(x) OString::number( x ).getStr() #define BS(x) (x ? "1":"0") #define USS(x) OUStringToOString( x, RTL_TEXTENCODING_UTF8 ).getStr() diff -Nru libreoffice-l10n-5.4.3~rc2/include/oox/ppt/presentationfragmenthandler.hxx libreoffice-l10n-5.4.4~rc2/include/oox/ppt/presentationfragmenthandler.hxx --- libreoffice-l10n-5.4.3~rc2/include/oox/ppt/presentationfragmenthandler.hxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/include/oox/ppt/presentationfragmenthandler.hxx 2017-12-12 17:45:07.000000000 +0000 @@ -53,6 +53,7 @@ private: void importSlide(sal_uInt32 nSlide, bool bFirstSlide, bool bImportNotes); + void saveThemeToGrabBag(oox::drawingml::ThemePtr pThemePtr, const OUString& sTheme); std::vector< OUString > maSlideMasterVector; std::vector< OUString > maSlidesVector; diff -Nru libreoffice-l10n-5.4.3~rc2/include/sfx2/dispatch.hxx libreoffice-l10n-5.4.4~rc2/include/sfx2/dispatch.hxx --- libreoffice-l10n-5.4.3~rc2/include/sfx2/dispatch.hxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/include/sfx2/dispatch.hxx 2017-12-12 17:45:07.000000000 +0000 @@ -122,11 +122,12 @@ sal_uInt16 nModi = 0, const SfxPoolItem **pInternalArgs = nullptr); - const SfxPoolItem* Execute( sal_uInt16 nSlot, - SfxCallMode nCall, - SfxItemSet* pArgs, - SfxItemSet* pInternalArgs, - sal_uInt16 nModi); + const SfxPoolItem* Execute(sal_uInt16 nSlot, + SfxCallMode nCall, + SfxItemSet const * pArgs, + SfxItemSet const * pInternalArgs, + sal_uInt16 nModi, + vcl::Window* pDialogParent = nullptr); const SfxPoolItem* ExecuteList( sal_uInt16 nSlot, SfxCallMode nCall, diff -Nru libreoffice-l10n-5.4.3~rc2/include/sfx2/request.hxx libreoffice-l10n-5.4.4~rc2/include/sfx2/request.hxx --- libreoffice-l10n-5.4.3~rc2/include/sfx2/request.hxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/include/sfx2/request.hxx 2017-12-12 17:45:07.000000000 +0000 @@ -41,6 +41,11 @@ struct SfxRequest_Impl; enum class SfxCallMode : sal_uInt16; +namespace vcl +{ + class Window; +} + class SFX2_DLLPUBLIC SfxRequest: public SfxHint { friend struct SfxRequest_Impl; @@ -61,7 +66,7 @@ SfxRequest( sal_uInt16 nSlot, SfxCallMode nCallMode, SfxItemPool &rPool ); SfxRequest( const SfxSlot* pSlot, const css::uno::Sequence < css::beans::PropertyValue >& rArgs, SfxCallMode nCallMode, SfxItemPool &rPool ); - SfxRequest( sal_uInt16 nSlot, SfxCallMode nCallMode, const SfxAllItemSet& rSfxArgs ); + SfxRequest(sal_uInt16 nSlot, SfxCallMode nCallMode, const SfxAllItemSet& rSfxArgs, vcl::Window* pDialogParent = nullptr); SfxRequest( sal_uInt16 nSlot, SfxCallMode nCallMode, const SfxAllItemSet& rSfxArgs, const SfxAllItemSet& rSfxInternalArgs ); SfxRequest( const SfxRequest& rOrig ); virtual ~SfxRequest() override; @@ -90,6 +95,10 @@ return nullptr; } + /** Return the window that should be used as the parent for any dialogs this request creates + */ + vcl::Window* GetDialogParent() const; + void ReleaseArgs(); void SetReturnValue(const SfxPoolItem &); const SfxPoolItem* GetReturnValue() const; diff -Nru libreoffice-l10n-5.4.3~rc2/include/svl/zforlist.hxx libreoffice-l10n-5.4.4~rc2/include/svl/zforlist.hxx --- libreoffice-l10n-5.4.3~rc2/include/svl/zforlist.hxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/include/svl/zforlist.hxx 2017-12-12 17:45:07.000000000 +0000 @@ -390,7 +390,8 @@ language/country eNewLnge */ bool PutandConvertEntry( OUString& rString, sal_Int32& nCheckPos, short& nType, sal_uInt32& nKey, - LanguageType eLnge, LanguageType eNewLnge ); + LanguageType eLnge, LanguageType eNewLnge, + bool bForExcelExport = false ); /** Same as PutandConvertEntry but the format code string is considered to be of the System language/country eLnge and is diff -Nru libreoffice-l10n-5.4.3~rc2/include/svx/colorbox.hxx libreoffice-l10n-5.4.4~rc2/include/svx/colorbox.hxx --- libreoffice-l10n-5.4.3~rc2/include/svx/colorbox.hxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/include/svx/colorbox.hxx 2017-12-12 17:45:07.000000000 +0000 @@ -39,7 +39,7 @@ NamedColor m_aSelectedColor; sal_uInt16 m_nSlotId; bool m_bShowNoneButton; - std::unique_ptr m_xPaletteManager; + std::shared_ptr m_xPaletteManager; BorderColorStatus m_aBorderColorStatus; DECL_LINK(MenuActivateHdl, MenuButton *, void); diff -Nru libreoffice-l10n-5.4.3~rc2/include/svx/colorwindow.hxx libreoffice-l10n-5.4.4~rc2/include/svx/colorwindow.hxx --- libreoffice-l10n-5.4.3~rc2/include/svx/colorwindow.hxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/include/svx/colorwindow.hxx 2017-12-12 17:45:07.000000000 +0000 @@ -63,7 +63,7 @@ OUString maCommand; Link maSelectedLink; - PaletteManager& mrPaletteManager; + std::shared_ptr mxPaletteManager; BorderColorStatus& mrBorderColorStatus; ColorSelectFunction maColorSelectFunction; @@ -79,7 +79,7 @@ public: SvxColorWindow(const OUString& rCommand, - PaletteManager& rPaletteManager, + std::shared_ptr& rPaletteManager, BorderColorStatus& rBorderColorStatus, sal_uInt16 nSlotId, const css::uno::Reference< css::frame::XFrame >& rFrame, diff -Nru libreoffice-l10n-5.4.3~rc2/include/svx/paraprev.hxx libreoffice-l10n-5.4.4~rc2/include/svx/paraprev.hxx --- libreoffice-l10n-5.4.3~rc2/include/svx/paraprev.hxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/include/svx/paraprev.hxx 2017-12-12 17:45:07.000000000 +0000 @@ -26,6 +26,7 @@ enum class SvxPrevLineSpace { N1 = 0, + N115, N15, N2, Prop, diff -Nru libreoffice-l10n-5.4.3~rc2/include/svx/svxdlg.hxx libreoffice-l10n-5.4.4~rc2/include/svx/svxdlg.hxx --- libreoffice-l10n-5.4.3~rc2/include/svx/svxdlg.hxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/include/svx/svxdlg.hxx 2017-12-12 17:45:07.000000000 +0000 @@ -359,7 +359,7 @@ const OUString& rOldText ) = 0; virtual VclPtr CreateGalleryIdDialog( vcl::Window* pParent, GalleryTheme* pThm ) = 0; - virtual VclPtr CreateGalleryThemePropertiesDialog( + virtual VclPtr CreateGalleryThemePropertiesDialog(vcl::Window* pParent, ExchangeData* pData, SfxItemSet* pItemSet ) = 0; virtual VclPtr CreateURLDialog( vcl::Window* pParent, diff -Nru libreoffice-l10n-5.4.3~rc2/include/svx/tbcontrl.hxx libreoffice-l10n-5.4.4~rc2/include/svx/tbcontrl.hxx --- libreoffice-l10n-5.4.3~rc2/include/svx/tbcontrl.hxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/include/svx/tbcontrl.hxx 2017-12-12 17:45:07.000000000 +0000 @@ -207,7 +207,7 @@ css::frame::XSubToolbarController > { std::unique_ptr m_xBtnUpdater; - std::unique_ptr m_xPaletteManager; + std::shared_ptr m_xPaletteManager; BorderColorStatus m_aBorderColorStatus; bool m_bSplitButton; ColorSelectFunction m_aColorSelectFunction; diff -Nru libreoffice-l10n-5.4.3~rc2/include/xmloff/xmltoken.hxx libreoffice-l10n-5.4.4~rc2/include/xmloff/xmltoken.hxx --- libreoffice-l10n-5.4.3~rc2/include/xmloff/xmltoken.hxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/include/xmloff/xmltoken.hxx 2017-12-12 17:45:07.000000000 +0000 @@ -266,6 +266,7 @@ XML_AUTHOR_INITIALS, XML_AUTHOR_NAME, XML_AUTO, + XML_AUTO_COMPLETE, XML_AUTO_GROW_HEIGHT, XML_AUTO_GROW_WIDTH, XML_AUTO_RELOAD, @@ -348,6 +349,7 @@ XML_BOTTOM_VALUES, XML_BOTTOMARC, XML_BOTTOMCIRCLE, + XML_BOUND_COLUMN, XML_BREAK_AFTER, XML_BREAK_BEFORE, XML_BREAK_INSIDE, @@ -605,6 +607,7 @@ XML_DEFAULT_STYLE_NAME, XML_DEGREE, XML_DELAY, + XML_DELAY_FOR_REPEAT, XML_DELETE_COLUMNS, XML_DELETE_ROWS, XML_DELETION, @@ -668,6 +671,7 @@ XML_DRAWING, XML_DRAWINGS, XML_DRAWPOOL, + XML_DROPDOWN, XML_DROP_CAP, XML_DYNAMIC, XML_EDGE_ROUNDING, @@ -1135,6 +1139,7 @@ XML_LINENUMBERING_SEPARATOR, XML_LINES, XML_LINES_USED, + XML_LINKED_CELL, XML_LINK_TO_SOURCE_DATA, XML_LIST, XML_LIST_BLOCK, @@ -1145,6 +1150,7 @@ XML_LIST_LEVEL_STYLE_BULLET, XML_LIST_LEVEL_STYLE_IMAGE, XML_LIST_LEVEL_STYLE_NUMBER, + XML_LIST_LINKAGE_TYPE, XML_LIST_NAME, XML_LIST_STYLE, XML_LIST_STYLE_NAME, @@ -1354,6 +1360,7 @@ XML_OPERATION, XML_OPERATOR, XML_OPTIMAL, + XML_OPTION, XML_OR, XML_ORDER, XML_ORDERED_LIST, @@ -1751,6 +1758,7 @@ XML_STDEV, XML_STDEVP, XML_STEPS, + XML_STEP_SIZE, XML_STOCK, XML_STOCK_UPDOWN_BARS, XML_STOCK_WITH_VOLUME, @@ -1830,6 +1838,7 @@ XML_TAN, XML_TANH, XML_TARGET_CELL_ADDRESS, + XML_TARGET_FRAME, XML_TARGET_FRAME_NAME, XML_TARGET_RANGE_ADDRESS, XML_TB_RL, diff -Nru libreoffice-l10n-5.4.3~rc2/librelogo/source/LibreLogo/LibreLogo.py libreoffice-l10n-5.4.4~rc2/librelogo/source/LibreLogo/LibreLogo.py --- libreoffice-l10n-5.4.3~rc2/librelogo/source/LibreLogo/LibreLogo.py 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/librelogo/source/LibreLogo/LibreLogo.py 2017-12-12 17:45:07.000000000 +0000 @@ -17,7 +17,77 @@ except: unicode, long = str, int # support python 3 -urebootstrap = os.environ["URE_BOOTSTRAP"] +__lng__ = {} + +def __trace__(): + if 'PYUNO_LOGLEVEL' in os.environ: + print(traceback.format_exc()) + +# get localized commands and messages +def __l12n__(lng): + global __lng_fallback__ + try: + return __lng__[lng] + except: + try: + # load resource file + __lng__[lng] = dict([[i.decode("unicode-escape").split("=")[0].strip(), i.decode("unicode-escape").split("=")[1].strip().strip("|")] for i in open(__lngpath__ + "LibreLogo_" + lng + ".properties", 'rb').readlines() if b"=" in i]) + return __lng__[lng] + except: + try: + # or use embedded fallback resource dictionary + __lng__[lng] = {} + for i in __lng_fallback__: + try: + __lng__[lng][i] = __lng_fallback__[i][lng] + except: + try: + __lng__[lng][i] = __lng_fallback__[i][lng[:2]] + except: + __lng__[lng][i] = __lng_fallback__[i]["en_US"] + return __lng__[lng] + except Exception: + __trace__() + return None + +try: + urebootstrap = os.environ["URE_BOOTSTRAP"] +except: + # starting in command line updates embedded fallback language dictionary + print("Update fallback language resource using property file arguments") + for i in sys.argv[1:]: + r = re.match("^(.*)LibreLogo_(.*)[.]properties$", i) + __lngpath__= r.group(1) + __l12n__(r.group(2)) + fallback = {} + + # fallback of fallback is en_US + for i in __lng__["en_US"]: + fallback[i] = { "en_US": __lng__["en_US"][i] } + + # create fallback dictionary + for i in __lng__: + dif = 0 + for j in __lng__[i]: + if __lng__[i][j] != __lng__["en_US"][j]: + fallback[j][i] = __lng__[i][j] + dif = dif + 1 + print(i, dif) + + # update fallback resource data in this program file + import fileinput + + for line in fileinput.input(sys.argv[0], inplace=True): + if re.match("^__lng_fallback__", line): + print("__lng_fallback__ = {") + # break it (CPython has problem with very long Unicode line) + for i in fallback: + print("'%s':%s," % (i, str(fallback[i]))) + print("}") + sys.exit(1) + else: + print(line.rstrip("\n")), + if "vnd.sun.star.pathname" in urebootstrap: __lngpath__ = re.sub(r"^vnd.sun.star.pathname:(.*)program(/|\\)fundamental([.]ini|rc)$", "\\1", urebootstrap) else: @@ -28,7 +98,6 @@ __lngpath__ = unohelper.fileUrlToSystemPath(re.sub("program/(fundamental.ini|fundamentalrc)$", "share", urebootstrap)) __lngpath__ = __lngpath__ + "/Scripts/python/LibreLogo/".replace("/", os.sep) __translang__ = "am|ca|cs|de|dk|el|en|eo|es|et|fr|hu|it|ja|nl|no|pl|pt|ru|se|sl" # FIXME supported languages for language guessing, expand this list, according to the localizations -__lng__ = {} __docs__ = {} __prevcode__ = None __prevlang__ = None @@ -160,17 +229,6 @@ createInstanceWithArguments("com.sun.star.configuration.ConfigurationAccess",\ (__getprop__("nodepath", "/org.openoffice.Setup/L10N"),)).getByName("ooLocale") + '-' # handle missing Country of locale 'eo' -def __l12n__(lng): - try: - return __lng__[lng] - except: - try: - __lng__[lng] = dict([[i.decode("unicode-escape").split("=")[0].strip(), i.decode("unicode-escape").split("=")[1].strip().strip("|")] for i in open(__lngpath__ + "LibreLogo_" + lng + ".properties", 'rb').readlines() if b"=" in i]) - return __lng__[lng] - except Exception: - __trace__() - return None - # dot for dotted line (implemented as an array of dot-headed arrows, because PostScript dot isn't supported by Writer) def __gendots__(n): return [__Point__(round(sin(360.0/n * i * pi/180.0) * 600), round(cos(360.0/n * i * pi/180) * 600)) for i in range(n)] @@ -306,10 +364,6 @@ def to_unicode(s): return bytes(s.replace("__x__", r"\x").replace("__u__", "\\u"), "ascii").decode("unicode-escape") -def __trace__(): - if 'PYUNO_LOGLEVEL' in os.environ: - print(traceback.format_exc()) - def __locname__(name, l = -1): if l == -1: l = _.lng @@ -1831,3 +1885,144 @@ g_exportedScripts = left, right, goforward, gobackward, run, stop, home, clearscreen, commandline, __translate__ # vim: set shiftwidth=4 softtabstop=4 expandtab: + +__lng_fallback__ = { +'ORANGE':{'lt': 'oranžinė', 'sid': 'burtukaane', 'fi': 'oranssi', 'ro': 'orange|portocaliu', 'lv': 'oranžs', 'kn': 'ವ್ಯಾಪ್ತಿ', 'nn': 'oransje|orange', 'tr': 'turuncu', 'es': 'naranja', 'el': 'πορτοκαλί|orange', 'hr': 'narančasta', 'cs': 'oranžová', 'sr_Latn': 'narandžasta', 'he': 'כתום', 'nl': 'oranje', 'hu': 'narancssárga|narancs', 'hi': 'दायरा', 'ml': 'ഓറഞ്ച്', 'gu': 'નારંગી', 'ko': '오렌지', 'zh_TW': '橘黃|橙黃|橙|橘|orange', 'mr': 'नारंगी', 'ru': 'оранжевый', 'sl': 'oranžna', 'bn_IN': 'পরিসর', 'am': 'ብርቱካን', 'et': 'oranž|apelsinikarva', 'uk': 'оранжевий', 'pt_BR': 'laranja', 'kk': 'қызғылт-сары', 'te': 'ఆరెంజ్', 'br': 'orañjez', 'is': 'appelsínugult', 'km': '\u200bទឹក\u200bក្រូច', 'bs': 'narandžasta', 'eu': 'laranja', 'cy': 'oren', 'pa_IN': 'ਰੇਜ਼', 'ast': 'naranxa', 'gug': 'narã', 'vi': 'phạm vi', 'as': 'সুমথীৰা', 'gd': 'orains', 'or': 'କମଳା', 'ja': 'オレンジ|オレンジ色|orange', 'hsb': 'oranžowy', 'nb': 'oransje|orange', 'be': 'аранжавы', 'oc': 'irange', 'gl': 'laranxa', 'ar': 'برتقالي', 'en_US': 'orange', 'sk': 'oblasť', 'sr': 'наранџаста', 'zh_CN': '橙色|橙|orange', 'eo': 'oranĝa', 'ta': 'ஆரஞ்சு', 'ca_valencia': 'taronja', 'ne': 'दायरा', 'ca': 'taronja', 'si': 'පරාසය', 'my': 'ကန့်သတ်နယ်ပယ်', 'ka': 'ფორთოხლისფერი'}, +'POINT':{'lt': 'skritulys', 'th': 'จุด', 'sid': 'bixxille', 'fi': 'piste', 'ro': 'point|punct', 'lv': 'punkts', 'kn': 'ಬಿಂದುಗಳು', 'hsb': 'dypk', 'tr': 'nokta', 'es': 'punto', 'el': 'σημείο|point', 'hr': 'točka', 'cs': 'bod|puntík', 'de': 'punkt', 'mn': 'цэг', 'he': 'נקודה', 'nl': 'punt', 'hu': 'pont', 'hi': 'बिंदु', 'ml': 'പോയിന്റ്', 'gu': 'બિંદુ', 'my': 'အမှတ်', 'ko': '점', 'zh_TW': '點|point', 'mr': 'बिंदू', 'ru': 'точка', 'sl': 'točka', 'bn_IN': 'পয়েন্ট', 'am': 'ነጥቦች', 'et': 'punkt', 'uk': 'точка', 'pt_BR': 'ponto', 'kk': 'нүкте', 'te': 'బిందువు', 'br': 'poent', 'is': 'punktur', 'km': 'ចំណុច', 'bs': 'tačka', 'eu': 'puntua', 'cy': 'pwynt', 'pa_IN': 'ਬਿੰਦੂ', 'ast': 'puntu', 'gug': 'kyta', 'vi': 'điểm', 'as': 'বিন্দু', 'gd': 'puing', 'or': 'ବିନ୍ଦୁ', 'ja': '点|point', 'nn': 'punkt|point', 'nb': 'punkt|point', 'be': 'пункт', 'sq': 'pikë', 'oc': 'punt', 'gl': 'punto', 'ar': 'نقطة', 'en_US': 'point', 'sk': 'bod', 'zh_CN': '点|point', 'eo': 'punkto', 'ta': 'புள்ளி', 'ca_valencia': 'punt', 'ne': 'प्वाइन्ट', 'ca': 'punt', 'si': 'ලක්ෂ්\u200dය', 'ug': 'نۇقتا', 'ka': 'წერტილი'}, +'LEFTSTRING':{'lt': '„|“|‘', 'hsb': '„|‚|"|\'', 'hu': '„', 'fi': '"|\'|”', 'en_US': '“|‘', 'sk': '„|"', 'nn': '“|‘|«', 'es': '“|‘|«', 'el': '“|‘|"|\'', 'et': '„', 'zh_TW': '「|『|“|‘', 'cs': '„|"', 'de': '„|‚|"|\'', 'zh_CN': '「|『|“|‘'}, +'ABS':{'lt': 'ilgis|abs|modulis', 'sid': 'abse', 'ka': 'ტაბულაციები', 'fi': 'itseisarvo', 'br': 'dizave', 'pa_IN': 'ਟੈਬ', 'kn': 'ಟ್ಯಾಬ್\u200cಗಳು', 'hsb': 'absolutny', 'bn_IN': 'ট্যাব', 'el': 'απόλυτο', 'lv': 'modulis', 'tr': 'Sekmeler', 'vi': 'Tab', 'cs': 'absolutní', 'de': 'betrag', 'he': 'ערך מוחלט', 'hu': 'abszolútérték|absz?', 'hi': 'टैब्स', 'ar': 'مطلق', 'en_US': 'abs', 'te': 'టాబ్ లు', 'ko': '탭', 'ne': 'ट्याबहरू', 'zh_TW': '絕對值|abs', 'mr': 'ॲब्स', 'si': 'පටිති', 'zh_CN': '绝对值|abs', 'ja': '絶対値|abs', 'my': 'အကွက်ခုန်များ', 'am': 'ፍጹም', 'et': 'absoluutväärtus|abs'}, +'RESUB':{'lt': 'keisk', 'sid': 'cinaancho', 'pt_BR': 'subst', 'fi': 'korvaa', 'br': 'is', 'uk': 'зам', 'lv': 'aizvietot', 'kn': 'ಉಪ', 'nn': 'byt|byt ut|sub', 'ja': '文字のおきかえ|置換|sub', 'el': 'αντικατάσταση', 'cs': 'nahraď', 'de': 'ersetzt', 'nl': 'onderlijn', 'or': 'ଉପ', 'sl': 'zam', 'hsb': 'naruna', 'eu': 'azpi', 'nb': 'bytt|bytt ut|sub', 'hu': 'cserél', 'ar': 'استبدل', 'gu': 'ઉપ', 'en_US': 'sub', 'sk': 'nahraď', 'eo': 'anstataŭu|anst', 'zh_TW': '替換|sub', 'mr': 'सब', 'he': 'שגרה', 'zh_CN': '替换|sub', 'am': 'ንዑስ', 'et': 'asenda'}, +'FILLCOLOR':{'lt': 'spalvinimo.spalva|ssp', 'sid': 'kuulawonshi|kuulawonshi|kw', 'fi': 'täyttöväri|tv', 'ro': 'fillcolor|fillcolour|fc|culoareumplere', 'lv': 'pildījuma_krāsa|pk', 'kn': 'ಬಣ್ಣತುಂಬಿಸು|ಬಣ್ಣತುಂಬಿಸು|fc', 'hsb': 'pjelnjacabarba|pb', 'tr': 'renkdoldur|renkdoldur|rd', 'es': 'color.relleno|cr|fc', 'el': 'χρώμαγεμίσματος|χε|fillcolor|fillcolour|fc', 'hr': 'boja punjenja|boja punjenja|bp', 'cs': 'barvavýplně|bv', 'de': 'füllfarbe|ff', 'he': 'צבעמילוי|צמ', 'nl': 'opvulkleur|ok', 'hu': 'töltőszín|töltőszín!|tlsz!?', 'ko': '색상채우기|색상채우기|fc', 'zh_TW': '填入顏色|填入色彩|填色|fillcolor|fillcolour|fc', 'mr': 'फिलकलर|फिलकलर|fc', 'ru': 'цвет_заливки|цз', 'sl': 'barvapolnila|polnilnabarva|bp', 'am': 'ቀለም መሙያ|ቀለም መሙያ|ቀ.መ', 'et': 'täitevärv|tv', 'uk': 'колір_заповнення|кз', 'pt_BR': 'mudarCorDaPintura|mCorPi|mudecp', 'kk': 'толтыру_түсі|тт', 'km': 'ពណ៌\u200bបំពេញ|fillcolour|fc', 'nb': 'fyllfarge|ff|fillcolor', 'bs': 'popuniboju|popuniboju|fc', 'eu': 'betetzekolorea|bk', 'ast': 'colorrellenu|cr', 'gug': "sa'y.henyhe|ch", 'oc': 'coloremplenatge|coloremplenatge|cr', 'or': 'ରଙ୍ଗପୁରଣ|ରଙ୍ଗପୁରଣ|fc', 'ja': '塗りつぶしの色|fillcolor|fc', 'nn': 'fyllfarge|ff|fillcolor', 'fr': 'couleurremplissage|cremplissage|cr', 'gl': 'cambiarcor|cambiodecor|cc', 'ar': 'ملأ_لون', 'en_US': 'fillcolor|fillcolour|fc', 'sk': 'farbavýplne|fv', 'eo': 'pleniga_koloro|plenkoloro|plk', 'ca_valencia': 'color.emplenament|ce', 'ca': 'color.emplenament|ce', 'zh_CN': '填充颜色|填充色|填色|fillcolor|fillcolour|fc'}, +'SIN':{'sid': 'sayine', 'pt_BR': 'sen', 'gl': 'sen', 'fi': 'sini', 'ar': 'جا', 'en_US': 'sin', 'sat': 'SIN', 'is': 'sín', 'kok': 'SIN', 'sa_IN': 'SIN', 'es': 'sen', 'el': 'ημίτονο|sin', 'mr': 'साइन', 'ast': 'sen', 'dgo': 'SIN', 'gug': 'sen', 'zh_TW': '正弦|sin', 'zh_CN': '正弦|sin', 'am': 'ሳይን', 'he': 'סינוס'}, +'BEVEL':{'lt': 'nuožulnus', 'sid': 'beevele', 'fi': 'viisto', 'ro': 'bevel|teșit', 'lv': 'nošķelts', 'kn': 'ಸ್ತರ', 'hsb': 'nakósny', 'tr': 'eğim', 'es': 'bisel', 'el': 'λοξό|bevel', 'hr': 'nagib', 'cs': 'šikmé', 'de': 'schräg', 'he': 'קטום', 'nl': 'afschuinen', 'hu': 'tompa', 'hi': 'स्तर', 'ml': 'തലം', 'gu': 'સ્તર', 'my': 'အဆင့်', 'ko': '수준', 'zh_TW': '平角|bevel', 'mr': 'बेवेल', 'ru': 'скос', 'sl': 'vbočeno', 'bn_IN': 'স্তর', 'am': 'ስላሽ', 'et': 'faasitud', 'uk': 'скіс', 'pt_BR': 'cortado', 'kk': 'көлбеу', 'te': 'స్థాయి', 'br': 'beskell', 'is': 'flái', 'km': 'ជ្រុង\u200bទេរ', 'nb': 'skråkant|bevel', 'bs': 'kosina', 'eu': 'alakatua', 'cy': 'befel', 'pa_IN': 'ਲੈਵਲ', 'ast': 'moldura', 'gug': 'bisel', 'vi': 'Cấp', 'or': 'ସ୍ତର', 'gd': 'beibheal', 'ja': '角を落とす|bevel', 'nn': 'skråkant|bevel', 'fr': 'biseau', 'be': 'скос', 'oc': 'bisèl', 'gl': 'bisel', 'ar': 'مشطوف', 'ug': 'يانتۇ يۈز', 'sk': 'šikmé', 'zh_CN': '平角|bevel', 'eo': 'bivela', 'ta': 'பெவல்', 'ca_valencia': 'bisell', 'ne': 'स्तर', 'ca': 'bisell', 'si': 'මට්ටම', 'en_US': 'bevel', 'ka': 'დონე'}, +'OUTPUT':{'lt': 'grąžink|išvesk', 'sid': 'guma', 'fi': 'kirjoita', 'ro': 'output|ieșire', 'lv': 'izvade', 'kn': 'ಔಟ್\u200cಪುಟ್', 'hsb': 'wudaće', 'tr': 'çıktı', 'es': 'salida', 'el': 'έξοδος|output', 'hr': 'rezultat', 'cs': 'výsledek', 'de': 'rückgabe', 'he': 'פלט', 'nl': 'output|uitvoer', 'hu': 'eredmény', 'hi': 'आउटपुट', 'ml': 'ഔട്ട്പുട്ട്', 'gu': 'આઉટપુટ', 'ko': '출력', 'zh_TW': '輸出|output', 'mr': 'आउटपुट', 'ru': 'вывод', 'sl': 'izhod', 'bn_IN': 'আউটপুট', 'am': 'ውጤት', 'et': 'väljund', 'uk': 'вивести', 'pt_BR': 'retornar|retorne|devolver|devolva|envie', 'kk': 'шығыс', 'te': 'అవుట్పుట్', 'br': "ec'hankad", 'is': 'frálag', 'km': 'លទ្ធផល', 'nb': 'utdata|output', 'bs': 'izlaz', 'eu': 'Irteera', 'cy': 'allbwn', 'pa_IN': 'ਆਉਟਪੁੱਟ', 'ast': 'salida', 'gug': 'ñeseha', 'vi': 'Đầu ra', 'as': 'আউটপুট', 'or': 'ଫଳାଫଳ', 'ja': '値を返す|output', 'nn': 'utdata|output', 'fr': 'sortie', 'oc': 'sortida', 'gl': 'saída', 'ar': 'أخرِج', 'en_US': 'output', 'sk': 'Výstup', 'zh_CN': '输出|output', 'eo': 'eligaĵo', 'ta': 'வெளியீடு', 'ca_valencia': 'eixida', 'ne': 'निर्गत', 'ca': 'sortida', 'si': 'ප්\u200dරතිදානය', 'my': 'အထုတ်', 'ka': 'გამონატანი'}, +'TUPLE':{'sid': 'tupile', 'ja': '変更できないリスト|タプル|tuple', 'pt_BR': 'tupla', 'kk': 'кортеж', 'fi': 'pari', 'br': 'kemalenn', 'eo': 'opo', 'ro': 'tuple|fix', 'uk': 'кортеж', 'lv': 'kortežs', 'kn': 'ಟಪಲ್', 'hsb': 'tupl', 'tr': 'tüp', 'es': 'tupla', 'be': 'картэж', 'el': 'πλειάδα|tuple', 'ast': 'tupla', 'gug': 'tupla', 'cs': 'ntice', 'de': 'tupel', 'nl': 'tuple|tupel', 'bs': 'pobrojane', 'he': 'סדרהסדורה', 'eu': 'tuploa', 'hu': 'fix', 'gl': 'tupla', 'ca': 'tupla', 'gu': 'ટપલ', 'en_US': 'tuple', 'sk': 'ntica', 'ko': '튜플', 'or': 'ଟ୍ୟୁପଲ', 'ca_valencia': 'tupla', 'zh_TW': '元組|tuple', 'et': 'ennik|korteež', 'ru': 'кортеж', 'sl': 'par', 'zh_CN': '元组|tuple', 'am': 'ቱፕል', 'mr': 'टपल'}, +'ANY':{'lt': 'bet.kas', 'th': 'ใดๆ', 'sid': 'ayee', 'fi': 'jokin', 'ro': 'any|oricare', 'lv': 'jebkurš', 'kn': 'ಯಾವುದಾದರೂ', 'hsb': 'někajki', 'tr': 'herhangi', 'es': 'cualquiera', 'vec': 'calsiasi', 'el': 'όλα|any', 'hr': 'bilo koja', 'cs': 'libovolně|lib', 'de': 'beliebig|bel', 'mn': 'хамаагүй|хам', 'he': 'כלשהו', 'nl': 'elke', 'hu': 'tetszőleges|tetsz', 'hi': 'कोई भी', 'ml': 'ഏതെങ്കിലും', 'gu': 'કોઇપણ', 'ko': '모두', 'sd': 'ڪابە', 'zh_TW': '任一|any', 'mr': 'कोणतेहि', 'sat': 'जाहां गे', 'ru': 'любой', 'sl': 'poljubno', 'sa_IN': 'कांह तॊ', 'bn_IN': 'যেকোনো', 'am': 'ማንኛውም', 'et': 'mistahes', 'uk': 'довільний', 'pt_BR': 'qualquer', 'kk': 'кез-келген', 'te': 'ఏదైనా', 'km': 'ណាមួយ', 'nb': 'alle|any', 'kok': 'कोणूयKoncheim', 'bs': 'bilo koji', 'eu': 'edozein', 'cy': 'unrhyw un', 'pa_IN': 'ਕੋਈ ਵੀ', 'ast': 'cualquier', 'gug': 'mavave', 'as': 'যিকোনো', 'gd': 'gin', 'or': 'ଯେକୌଣସି', 'ja': 'なんでも|どこでも|乱数|any', 'nn': 'alle|any', 'fr': 'tout', 'gl': 'calquera', 'ar': 'أي', 'en_US': 'any', 'sk': 'ľubovoľný|?', 'eo': 'ajna', 'ca_valencia': 'qualsevol', 'ca': 'qualsevol', 'dgo': 'कोई बी', 'zh_CN': '任意|any'}, +'GOLD':{'lt': 'auksinė', 'th': 'ทอง', 'sid': 'clka', 'fi': 'kulta', 'ro': 'gold|auriu', 'lv': 'zelta', 'kn': 'ಬೋಲ್ಡ್\u200d', 'nn': 'gull|gold', 'tr': 'altın rengi', 'es': 'oro', 'el': 'χρυσαφί|gold', 'hr': 'zlatna', 'cs': 'zlatá', 'sr_Latn': 'zlatna', 'he': 'זהב', 'nl': 'goud', 'hu': 'aranysárga|arany', 'hi': 'मोटा', 'ml': 'സ്വര്\u200dണ്ണം', 'gu': 'સોનુ', 'ko': '금색', 'zh_TW': '金黃|金|gold', 'mr': 'सोनेरी', 'ru': 'золотой', 'sl': 'zlata', 'bn_IN': 'গাঢ়', 'am': 'ወርቅማ', 'et': 'kuldne', 'uk': 'золотий', 'pt_BR': 'ouro', 'kk': 'алтын', 'te': 'బంగారం', 'br': 'aour', 'is': 'gull', 'km': 'មាស', 'nb': 'gull|gold', 'bs': 'zlatna', 'eu': 'urrea', 'cy': 'aur', 'pa_IN': 'ਗੂੜ੍ਹੇ', 'ast': 'doráu', 'gug': 'oro', 'vi': 'Đậm', 'as': 'সোন', 'gd': 'òir', 'or': 'ସ୍ୱର୍ଣ୍ଣ', 'ja': '金|金色|gold', 'hsb': 'złoty', 'fr': 'or', 'be': 'залаты', 'oc': 'aur', 'gl': 'ouro', 'ar': 'ذهبي', 'en_US': 'gold', 'sk': 'Tučné', 'sr': 'златна', 'zh_CN': '金色|金|gold', 'eo': 'ora', 'ta': 'தங்கம்', 'ca_valencia': 'or|daurat', 'ne': 'बाक्लो', 'ca': 'or|daurat', 'si': 'තදකුරු', 'my': 'စာလုံးမဲ', 'ka': 'შეკვრა'}, +'NOT':{'lt': 'priešingai', 'sid': "dee'ni", 'fi': 'ei', 'ro': 'not|nu', 'lv': 'nav', 'kn': 'ಇಲ್ಲ', 'hsb': 'nic', 'tr': 'değil', 'es': 'no', 'el': 'όχι|not', 'hr': 'nije', 'cs': 'není', 'de': 'nicht', 'he': 'לא', 'nl': 'niet', 'hu': 'nem', 'hi': 'नहीं', 'gu': 'નથી', 'ko': '없음', 'sd': 'NOT', 'zh_TW': '非|not', 'mr': 'नॉट', 'sat': 'NOT', 'ru': 'не', 'sl': 'ni', 'sa_IN': 'NOT', 'bn_IN': 'নয়', 'am': 'አይደለም', 'et': 'pole|mitte', 'uk': 'не', 'pt_BR': 'não', 'kk': 'емес', 'te': 'కాదు', 'br': 'ket', 'is': 'ekki', 'nb': 'ikke|not', 'kok': 'NOT', 'bs': 'ne', 'eu': 'ez', 'ast': 'non', 'gug': 'no', 'or': 'ନୁହଁ', 'gd': 'chan e', 'ja': '正しくない|否|not', 'nn': 'ikkje|not', 'fr': 'non', 'gl': 'non', 'ar': 'ليس', 'en_US': 'not', 'sk': 'nieje', 'zh_CN': '非|not', 'eo': 'ne', 'ca_valencia': 'no', 'ca': 'no', 'dgo': 'NOT', 'oc': 'non'}, +'PENUP':{'lt': 'eisim|es|pakelk.pieštuką|pakelk.trintuką', 'th': 'ปากกาขึ้น|pu', 'sid': 'biireworora|bw', 'fi': 'kynäylös|ky', 'ro': 'penup|pu|stilousus', 'lv': 'pacelt_spalvu|ps', 'kn': 'ಲೇಖನಿಎತ್ತು|pu', 'hsb': 'lećeć|le', 'tr': 'kalemyukarı|ky', 'es': 'sinpluma|subirlapiz|sp|sl', 'el': 'γραφίδαπάνω|γπ|penup|pu', 'hr': 'olovka gore|og', 'cs': 'peronahoru|pn', 'de': 'fliegen', 'he': 'להריםעט|עטלמעלה|הרםעט|לע', 'nl': 'penomhoog|po', 'hu': 'tollatfel|tf', 'ko': '펜을위로|pu', 'zh_TW': '提筆|penup|pu', 'mr': 'पेनअप|pu', 'ru': 'поднять_перо|пп', 'sl': 'perogor|pg', 'am': 'ብዕር ወደ ላይ |pu', 'et': 'pliiats_üles|pü', 'uk': 'підніми_перо|пп', 'pt_BR': 'usarNada|un|useNada', 'kk': 'қаламды_көтеру|қк', 'nb': 'penn opp|po|penup', 'bs': 'pengore|pu', 'eu': 'lumagora|lg', 'ast': 'llapizxubir|lx', 'gug': "bolígrafo'ỹre|bỹ", 'or': 'ପେନଉପରକୁ|pu', 'ja': 'ペンをあげる|penup|pu', 'nn': 'penn opp|po|penup', 'fr': 'levecrayon|lc', 'gl': 'senestilo|se', 'ar': 'ارفع_القلم|ارفع', 'en_US': 'penup|pu', 'sk': 'perohore|ph', 'eo': 'plumofor|pf', 'ca_valencia': 'aixeca.llapis|al', 'ca': 'aixeca.llapis|al', 'zh_CN': '提笔|抬笔|penup|pu'}, +'FONTFAMILY':{'lt': 'garnitūras|šriftų.šeima|šš', 'sid': 'borangichumine', 'fi': 'fonttiperhe', 'ro': 'fontfamily|familiefont', 'lv': 'fontu_saime', 'kn': 'ಅಕ್ಷರಶೈಲಿಸಮೂಹ', 'hsb': 'družinapisma|dp', 'es': 'tipo.letra|letra|fuente', 'el': 'οικογένειαγραμματοσειράς|fontfamily', 'hr': 'skupina fontova', 'cs': 'druhpísma', 'de': 'schriftart|scha', 'he': 'משפחתגופנים', 'nl': 'tekstfamilie', 'hu': 'betűcsalád', 'gu': 'ફોન્ટકુટુંબ', 'ko': '글꼴 모음', 'zh_TW': '字型家族|字族|fontfamily', 'mr': 'फाँटफॅमिलि', 'ru': 'семейство_шрифтов', 'sl': 'vrstapisave', 'am': 'የፊደል ቤተሰብ', 'et': 'fondi_perekond', 'uk': 'гарнітура', 'pt_BR': 'mudarTipoDaLetra|mTipLe', 'kk': 'қаріптер_отбасы', 'te': 'ఫాంట్\u200cఫ్యామిలీ', 'br': 'spletad nodrezhoù', 'is': 'leturtegund', 'km': 'ក្រុម\u200bពុម្ពអក្សរ', 'nb': 'skriftfamilie|fontfamily', 'bs': 'fontfamilija', 'eu': 'letrafamilia', 'ast': 'familiafonte', 'tr': 'yazıtipi ailesi', 'or': 'ଅକ୍ଷରରୂପ ପରିବାର', 'gd': "teaghlach a' chruth-chlò", 'ja': '文字の種類|フォントファミリー|fontfamily', 'nn': 'skriftfamilie|fontfamily', 'fr': 'famillepolice', 'be': 'гарнітура', 'gl': 'familia de tipo de letra', 'ar': 'عائلة_خط', 'en_US': 'fontfamily', 'sk': 'druhpísma|dp', 'eo': 'tiparofamilio', 'ta': 'எழுத்துரு குடும்பம்', 'ca_valencia': 'família.lletra|fl', 'ca': 'família.lletra|fl', 'zh_CN': '字体|字体家族|字型|fontfamily'}, +'PENJOINT':{'lt': 'pieštuko.sujungimas|linijos.sujungimas|psj', 'sid': 'biiretexaado|xuruuruxaado', 'ja': 'ペンのつなぎ方|角のつなぎ方|penjoint', 'pt_BR': 'mudarCantoDaLinha|mCanLi', 'kk': 'қаламды_біріктіру|сызықтарды_біріктіру', 'fi': 'kynänmuoto', 'eo': 'liniartiko|plumligo', 'ro': 'penjoint|linejoint|colțstilou', 'fr': 'jointurestylo|jointureligne', 'lv': 'spalvas_salaidums|līnijas_salaidums', 'kn': 'ಲೇಖನಿಜೋಡಣೆ|ರೇಖೆಜೋಡಣೆ', 'eu': 'lumajuntura|marrajuntura', 'hr': 'spoj olovke|spoj linije', 'es': 'conjuntopluma|conjuntolínea', 'ca': 'unió.llapis|unió.línia|ul', 'el': 'ένωσηγραφίδας|ένωσηγραμμής|penjoint|linejoint', 'pa_IN': 'ਪੈੱਨ ਜੁਆਇੰਟIਲਾਈਨ ਜੁਆਇੰਟ', 'uk': 'сполучити_перо|сполучити_лінії', 'gug': 'atybolígrafo|atylínea', 'cs': 'napojenípera|napojeníčáry', 'de': 'stiftübergang|linienübergang|sü|lü', 'tr': 'kalembirleşimi|satırbirleşimi', 'nl': 'penverbinding|lijnverbinding', 'bs': 'vezaolovke|vezalinije', 'he': 'מצרףעט|מצרףקו', 'hsb': 'přechodpisaka|přechodlinije|pp|pl', 'nn': 'linjekopling|penjoint', 'nb': 'linjekobling|penjoint', 'hu': 'tollsarok|vonalsarok', 'gl': 'estilounión|uniónliña', 'en_US': 'penjoint|linejoint', 'sk': 'napojeniepera|napojeniečiary|np|nč', 'ko': '펜조인트|선조인트', 'or': 'ପେନସନ୍ଧି|linejoint', 'ca_valencia': 'unió.llapis|unió.línia|ul', 'zh_TW': '筆接點|線接點|線接|penjoint|linejoint', 'mr': 'पेनजॉइंट|लाइनजॉइंट', 'ast': 'llapizxunir|lliniaxunir|lx', 'ru': 'соединить_перо|соединить_линии', 'sl': 'stikperesa|stikčrt', 'zh_CN': '笔接点|线接点|线接|penjoint|linejoint', 'am': 'የብዕር መገናኛ |የመስመር መገናኛ', 'et': 'pliiatsiühendus|jooneühendus'}, +'PI':{'sid': 'payi|π', 'be': 'pi|пі|π', 'kk': 'pi|пи|π', 'gl': 'pi|n', 'fi': 'pii|π', 'ar': 'ط|باي|π', 'en_US': 'pi|π', 'uk': 'pi|пі|π', 'ko': '파이|π', 'el': 'πι|pi|π', 'et': 'pii|π', 'zh_TW': 'pi|π|拍', 'ru': 'pi|пи|π', 'ja': '円周率|pi|π', 'mr': 'पाय|π', 'zh_CN': '圆周率|pi|π', 'am': 'ፓይ|π', 'he': 'פאי|פיי'}, +'NONE':{'fi': 'eimitään', 'kn': 'ಏನೂ ಇಲ್ಲ', 'xh': 'akukho', 'hr': 'ništa', 'de': 'kein', 'he': 'ללא', 'nl': 'geen', 'hu': 'nincs', 'ml': 'ഒന്നുമില്ല', 'st': 'ha di teng', 'ko': '없음', 'mr': 'काहीही नाही', 'mai': 'किछु नहि', 'am': 'ምንም', 'et': 'puudub', 'kk': 'жоқ', 'te': 'ఏదీ కాదు', 'af': 'geen', 'tg': 'ягон', 'km': 'គ្មាន', 'fr': 'aucun(e)', 'kok': 'कोण ना', 'eu': 'bat ere ez', 'pa_IN': 'ਕੋਈ ਨਹੀਂ', 'gug': 'mavave', 'vi': 'không có', 'lo': 'ບໍ່ມີ', 'gd': 'chan eil gin', 'rw': 'ntacyo', 'hsb': 'žadyn', 'nb': 'ingen|none', 'be': 'няма', 'sq': 'asnjë', 'om': 'homaa', 'ug': 'يوق', 'sk': 'žiadne', 'br': 'tra ebet', 'ta': 'ஏதுமில்லை', 'dgo': 'कोई नेईं', 'en_US': 'none', 'lt': 'nieko', 'th': 'ไม่มี', 'sid': 'dino', 'zu': 'lutho', 'mk': 'Нема', 'ro': 'none|nimic', 'lv': 'nav', 'as': 'কোনো নহয়', 'nn': 'ingen|none', 'es': 'ninguno', 'vec': 'njanca uno', 'el': 'κανένα', 'dz': 'ཅི་མེད།', 'tn': 'sepe', 'cs': 'žádné', 'sl': 'brez', 'hi': 'कोई नहीं', 'gu': 'કંઇ નહિં', 've': 'a huna', 'or': 'କିଛି ନାହିଁ', 'sd': 'ڪجهہ بہ نہ', 'zh_TW': '無|none', 'sat': 'ओका हों बाङजाहानाक् बाङ', 'bo': 'མེད་པ།', 'ru': 'нет', 'nso': 'ga go na selo', 'bn_IN': 'কোনটি না', 'uk': 'немає', 'kmr_Latn': 'ne yek jî', 'pt_BR': 'nenhum', 'bn': 'কোনটি না', 'is': 'ekkert', 'bs': 'ništa', 'sa_IN': 'न कोऽपि', 'sw_TZ': 'bila', 'ks': 'كہین نئ', 'my': 'မရှိပါ', 'ast': 'dengún', 'tr': 'hiçbiri', 'brx': 'रावबो नङा', 'mn': 'байхгүй', 'lb': 'keen', 'ja': 'つながない|none', 'cy': 'dim', 'fa': 'هیچ\u200cکدام', 'gl': 'ningún', 'ar': 'بلا', 'oc': 'pas cap', 'zh_CN': '无|none', 'eo': 'neniu', 'ca_valencia': 'cap', 'ne': 'कुनै पनि होइन', 'ca': 'cap', 'si': 'කිසිවක් නැත', 'ts': 'ku hava', 'uz': 'yoʻq', 'mni': 'অমত্তা নত্তবা', 'ka': 'ცარიელი'}, +'FILLSTYLE':{'lt': 'spalvinimo.stilius|sst', 'th': 'กระบวนแบบการเติมสี', 'sid': 'akatawonshi', 'fi': 'täyttötyyli', 'ro': 'fillstyle|stilumplere', 'lv': 'pildījuma_stils', 'kn': 'ತುಂಬಿಸುವ ಶೈಲಿ', 'hsb': 'pjelnjenskistil|ps', 'tr': 'dolgu biçemi', 'es': 'estilorelleno', 'el': 'μορφήγεμίσματος|fillstyle', 'hr': 'stil ispune', 'cs': 'druhvýplně', 'de': 'füllstil|fs', 'he': 'סגנון מילוי', 'nl': 'vulling', 'hu': 'töltőstílus', 'hi': 'भरने की शैली', 'ml': 'നിറയ്ക്കുന്ന ശൈലി', 'id': 'fontcolor|textcolor|textcolour', 'gu': 'ભરવાની શૈલી', 'my': 'စတိုင်လ် ဖြည့်ပါ', 'ko': '채우기 스타일', 'zh_TW': '填入樣式|填樣式|fillstyle', 'mr': 'भरण्याची शैली', 'ru': 'стиль_заливки', 'sl': 'slogpolnila', 'bn_IN': 'ভরাট শৈলী', 'am': 'መሙያ ዘዴ', 'et': 'täitestiil', 'uk': 'стиль_заповнення', 'pt_BR': 'mudarEstiloDaPintura|mEstPi', 'kk': 'толтыру_түрі', 'te': 'నింపు శైలి', 'br': 'stil leuniañ', 'is': 'stíll fyllingar', 'km': 'រចនាប័ទ្ម\u200b\u200bបំពេញ', 'nb': 'fyllstil|fillstyle', 'bs': 'stil popunjavanja', 'eu': 'betetzeestiloa', 'pa_IN': 'ਭਰਨ ਸਟਾਈਲ', 'ast': 'estiluderrellenu', 'gug': 'estilohenyhe', 'vi': 'Kiểu tô đầy', 'or': 'ଶୌଳୀ ପୁରଣ କର', 'gd': 'stoidhle an lìonaidh', 'ja': '塗りつぶしの模様|fillstyle', 'nn': 'fyllstil|fillstyle', 'fr': 'styleremplissage', 'oc': "Estil d'emplenament", 'gl': 'estilo de recheo', 'ar': 'نمط_الملأ', 'ug': 'تولدۇرۇش ئۇسلۇبى', 'sk': 'Výplň', 'zh_CN': '填充样式|填样式|填式|fillstyle', 'eo': 'pleniga_stilo', 'ca_valencia': 'estil.emplenament|ee', 'ne': 'शैली भर्नुहोस्', 'ca': 'estil.emplenament|ee', 'si': 'පිරවුම් රටාව', 'en_US': 'fillstyle', 'ka': 'ჩასხმის სტილი'}, +'FONTWEIGHT':{'lt': 'šrifto.storis|teksto.storis', 'sid': 'brrangichu ayirreenya', 'fi': 'fontinpaksuus', 'ro': 'fontweight|grosimefont', 'lv': 'fonta_treknums', 'kn': 'ಅಕ್ಷರಶೈಲಿ ತೂಕ', 'hsb': 'pismowawaha|pw', 'es': 'peso.letra|pl', 'el': 'πάχοςγραμματοσειράς|fontweight', 'hr': 'debljina slova', 'cs': 'tloušťkapísma', 'de': 'schriftgewicht|schgw', 'he': 'משקלגופן', 'nl': 'letterdikte|tekstdikte', 'hu': 'betűvastagság', 'hi': 'फ़ॉन्ट भार', 'ml': 'ഫോണ്ഡിന്റെ തൂക്കം', 'gu': 'ફોન્ટનો ભાર', 'my': 'စာလုံး အလေးချိန်', 'ko': '글꼴 굵기', 'zh_TW': '字型重量|字重|字粗細|字粗|fontweight', 'mr': 'फाँटचे वजन', 'ru': 'толщина_шрифта', 'sl': 'debelinapisave', 'bn_IN': 'ফন্টের পুরুত্ব', 'am': 'የፊደል ክብደት', 'et': 'fondi_paksus', 'uk': 'товщина_символів', 'pt_BR': 'mudarEspessuraDaLetra|mEspLe', 'kk': 'қаріп_жуандығы', 'te': 'అక్షరశైలి భారం', 'br': 'lard', 'is': 'leturbreidd', 'km': 'កម្រាស់\u200bពុម្ពអក្សរ', 'nb': 'skrifttykkelse|fontweight', 'bs': 'težinafonta', 'eu': 'letralodiera', 'cy': 'pwysau ffont', 'pa_IN': 'ਫੋਂਟ ਗੂੜਾਪਨ', 'ast': 'pesudefonte', 'tr': 'yazı tipi genişliği', 'vi': 'Độ đậm chữ', 'or': 'ଅକ୍ଷରରୂପ ଉଚ୍ଚତା', 'ja': '文字の太さ|フォントの太さ|fontweight', 'nn': 'skrifttjukkleik|fontweight', 'fr': 'graisse', 'oc': 'Graissa', 'gl': 'grosura de tipo de letra', 'ar': 'عرض_الخط', 'ug': 'خەت نۇسخا ئىنچىكە توملۇقى', 'sk': 'Váha písma', 'zh_CN': '字体粗细|字粗细|字粗|fontweight', 'eo': 'tiparopezo', 'ta': 'எழுத்துரு தடிமன்', 'ca_valencia': 'pes.lletra|pl', 'ne': 'फन्ट वजन', 'ca': 'pes.lletra|pl', 'si': 'අකුරු බර', 'en_US': 'fontweight', 'ka': 'შრიფტის სიგანე'}, +'POSITION':{'lt': 'eik.į', 'sid': 'ofolla|ofo|ofoqineessi', 'fi': 'paikka', 'ro': 'position|pos|setpos|poziție', 'lv': 'pozīcija|poz|iest_poz', 'kn': 'ಸ್ಥಾನ|pos|ಸ್ಥಾನಹೊಂದಿಸು', 'hsb': 'pozicija|poz', 'es': 'posición|pos|fijar.posición', 'el': 'θέση|θσ|ορισμόςθέσης|βάλε|position|pos|setpos', 'hr': 'pozicija|poz|postavipoz', 'cs': 'pozice|poz|nastavpoz', 'de': 'position|pos', 'he': 'מיקום|מקום|הגדרמקום|הגדרתמקום|מקו', 'nl': 'positie|pos|setpos', 'hu': 'hely|hely!|pozíció|xy!', 'ko': '위치|pos|위치설정', 'zh_TW': '位置|定位|position|pos|setpos', 'mr': 'स्थान|पॉस|सेटपॉस', 'ru': 'позиция|поз|установить_позицию', 'sl': 'položaj|pol|določipoložaj', 'am': 'ቦታ|ቦታ|ቦታ ማሰናጃ', 'et': 'asukoht|koht|määra_koht', 'uk': 'позиція|поз|встановити_позицію', 'pt_BR': 'posicionar|pos', 'kk': 'орны|орн|орнын_көрсету', 'br': "lec'hiadur|pos|setpos", 'nb': 'plassering|plasser|position', 'bs': 'pozicija|pos|postavipos', 'eu': 'posizioa|pos|ezarriposizioa', 'ast': 'posición|pos|dirposición', 'tr': 'konum|knm|knmayarla', 'oc': 'posicion|pos|definirpos', 'or': 'ସ୍ଥାନ|pos|setpos', 'ja': '位置|場所|position', 'nn': 'plassering|plasser|pos|position', 'fr': 'position|pos|fixepos', 'gl': 'posición|pos|estabelecerposición', 'ar': 'موقع|عين_موقع', 'en_US': 'position|pos|setpos', 'sk': 'pozícia|poz|nastavpoz|np', 'eo': 'pozicio|poz', 'ca_valencia': 'posició|pos|estableix.posició', 'ca': 'posició|pos|estableix.posició', 'zh_CN': '位置|定位|position|pos|setpos'}, +'STOP':{'lt': 'baik', 'sid': 'uurri', 'fi': 'pysäytä', 'lv': 'apturēt', 'kn': 'ನಿಲ್ಲಿಸು', 'hsb': 'stój', 'tr': 'dur', 'es': 'detener', 'el': 'τερματισμός|stop', 'hr': 'zaustavi', 'cs': 'zastav', 'de': 'stopp', 'he': 'עצור|עצירה|לעצור', 'hu': 'stop|visszatér', 'hi': 'रोकें', 'ml': 'നിര്\u200dത്തുക', 'gu': 'અટકાવો', 'ko': '중지', 'sd': 'رُڪو', 'zh_TW': '中止|止|stop', 'mr': 'स्टॉप', 'ru': 'стоп', 'sl': 'ustavi', 'sa_IN': 'ठॆहर', 'bn_IN': 'থামান', 'am': 'ማስቆሚያ', 'et': 'peata', 'uk': 'зупини', 'pt_BR': 'parar|pare', 'kk': 'тоқтату', 'te': 'ఆపుము', 'br': 'arsaviñ', 'is': 'stöðva', 'km': 'បញ្ឈប់', 'bs': 'zaustavi', 'eu': 'gelditu', 'cy': 'atal', 'pa_IN': 'ਰੋਕੋ', 'ast': 'parar', 'gug': 'pyta', 'oc': 'arrestar', 'as': 'বন্ধ কৰক', 'gd': 'sguir', 'or': 'ବନ୍ଦ କର', 'ja': '動きから出る|stop', 'nn': 'stopp|stop', 'nb': 'stopp|stop', 'gl': 'parar', 'ar': 'أوقف', 'en_US': 'stop', 'sk': 'zastav', 'zh_CN': '停止|中止|stop', 'eo': 'haltu', 'ta': 'நிறுத்து', 'ca_valencia': 'atura|para', 'ca': 'atura|para', 'dgo': 'रोको', 'my': 'ရပ်ပါ'}, +'DASH':{'lt': 'brūkšneliai', 'th': 'เส้นประ', 'sid': 'daashshaamo', 'fi': 'katkonainen', 'ro': 'dashed|culiniuțe', 'lv': 'svītrots', 'kn': 'ಅಡ್ಡಗೆರೆಗಳುಳ್ಳ', 'hsb': 'smužkowany', 'tr': 'kesik çizgi', 'es': 'discontinua', 'el': 'με παύλες|dashed', 'hr': 'iscrtkano', 'cs': 'čárkovaná', 'de': 'gestrichelt', 'he': 'מיקוף', 'nl': 'gestreept', 'hu': 'szaggatott', 'hi': 'डैश किया हुआ', 'ml': 'ഡാഷ്ഡ്', 'gu': 'તૂટક', 'my': 'မျဉ်းရှည်', 'ko': '파선', 'zh_TW': '虛線|dashed', 'mr': 'डॅश्ड', 'ru': 'штриховая', 'sl': 'črtkano', 'bn_IN': 'ড্যাশযুক্ত', 'am': 'ዳሽ', 'et': 'kriipsudega', 'uk': 'штрихова', 'pt_BR': 'tracejado', 'kk': 'штрихті', 'te': 'గీతగీయబడెను', 'br': 'gourzhelloù', 'is': 'strikað', 'km': '\u200bដាច់ៗ', 'nb': 'stiplet|dashed', 'bs': 'isprekidano', 'eu': 'marratua', 'cy': 'toredig', 'pa_IN': 'ਧਾਰੀਦਾਰ', 'ast': 'discontinuu', 'gug': 'discontinua', 'vi': 'Gạch gạch', 'as': 'ডেশ্বযুক্ত', 'gd': 'strìochagach', 'or': 'ଡାସ', 'ja': '破線|dashed', 'nn': 'stipla|streka|dashed', 'fr': 'tiret', 'be': 'рыскі', 'oc': 'jonhent', 'gl': 'raiado', 'ar': 'متقطع', 'en_US': 'dashed', 'sk': 'Čiarky', 'zh_CN': '虚线|dashed', 'eo': 'streketa', 'ta': 'டேஷ்', 'ca_valencia': 'traçat', 'ne': 'ड्यासभएको', 'ca': 'traçat', 'si': 'ඉරි යෙදූ', 'ug': 'سىزىقچە', 'ka': 'წყვეტილი'}, +'TEAL':{'lt': 'tamsiai.žydra', 'sid': 'shiima dakiyye', 'fi': 'sinivihreä', 'lv': 'zilzaļš', 'kn': 'ಗಾಢನೀಲಿಹಸಿರು', 'nn': 'mørk grønblå|teal', 'tr': 'deniz mavisi', 'es': 'jade', 'vec': 'grizo-verde', 'el': 'γαλαζοπράσινο|teal', 'hr': 'tirkizna', 'cs': 'zelenomodrá', 'sr_Latn': 'til', 'he': 'צהבהב', 'nl': 'groenblauw|blauwgroen', 'de': 'blaugrün', 'hi': 'हरा-नीला', 'gu': 'બતક', 'zh_TW': '藍綠|teal', 'mr': 'टिअल', 'ru': 'сине-зелёный', 'sl': 'modrozelena', 'bn_IN': 'টিল', 'am': 'ቲል', 'et': 'sinakasroheline', 'uk': 'синьо-зелений', 'pt_BR': 'turquesa', 'kk': 'жасыл_көк', 'te': 'టీల్', 'br': 'houad', 'is': 'djúp-blágrænt', 'km': 'ខៀវ\u200bបៃតង\u200bក្រមៅ', 'nb': 'mørk grønnblå|teal', 'bs': 'grogotovac', 'eu': 'anila', 'hu': 'kékeszöld', 'ast': 'xade', 'gug': 'aky-hovyha', 'as': 'টিল', 'gd': 'dath na crann-lach', 'or': 'କଳହଂସ', 'ja': 'マガモ色|くすんで暗い青|ティール|teal', 'hsb': 'módrozeleny', 'fr': 'bleuclair', 'be': 'бірузовы', 'gl': 'turquesa', 'ar': 'أزرق_مخضر', 'en_US': 'teal', 'sk': 'tyrkysová', 'sr': 'тил', 'zh_CN': '蓝绿色|蓝绿|teal', 'eo': 'bluverda', 'ta': 'டீல்', 'ca_valencia': 'jade', 'ca': 'jade', 'oc': 'baluclar'}, +'FILLTRANSPARENCY':{'lt': 'spalvinimo.skaidrumas|ssk', 'uk': 'прозорість_заповнення', 'ja': '塗りつぶしの透明度|filltransparency', 'pt_BR': 'mudarTransparênciaDaPintura|mTraPi', 'kk': 'толтыру_мөлдірлілігі', 'fi': 'täyttöläpinäkyvyys', 'br': 'boullderleuniañ', 'km': 'បំពេញ\u200bភាព\u200bថ្លា', 'fr': 'transparenceremplir', 'pa_IN': 'ਪਾਰਦਰਸ਼ਤਾ ਭਰੋ', 'kn': 'ಪಾರದರ್ಶಕತೆಭರ್ತಿಮಾಡು', 'eu': 'betetzegardentasuna', 'hr': 'prozirnostispune', 'es': 'relleno.transparencia', 'el': 'διαφάνειαγεμίσματος', 'lv': 'pildījuma_caurspīdīgums', 'gug': 'myenyhẽ.tesakã', 'oc': 'transparénciaemplenar', 'cs': 'průhlednostvýplně|průhlvýplně', 'de': 'fülltransparenz|ft', 'tr': 'şeffaflıkladoldur', 'nl': 'vullingstransparantie', 'or': 'ପୂରଣସ୍ୱଚ୍ଛତା', 'he': 'שקיפות_המילוי', 'hsb': 'pjelnjacatransparenca', 'nn': 'fyllgjennomsikt', 'nb': 'fyllgjennomsiktighet', 'hu': 'töltőátlátszóság', 'gl': 'transparenciarecheo', 'ar': 'ملأ_شفافية', 'en_US': 'filltransparency', 'sk': 'priehľadnosťvýplne|pv', 'ko': '투명채우기', 'eo': 'plenigtravideblo', 'ca_valencia': 'transparència.emplenament', 'zh_TW': '填入透明|填透明|filltransparency', 'et': 'täite_läbipaistvus|tlp', 'zh_CN': '填充透明|填透明|filltransparency', 'ru': 'прозр_заливки|пз', 'sl': 'prosojnostpolnila', 'ug': 'تولدۇرۇش سۈزۈكلۈكى', 'am': 'ግልጽነት መሙያ', 'ca': 'transparència.emplenament'}, +'BACKWARD':{'lt': 'atgal|at', 'th': 'กลับหลัง|bk', 'sid': 'badhera|br', 'fi': 'taakse|tk', 'ro': 'back|bk|înapoi', 'lv': 'atpakaļ|at', 'kn': 'ಹಿಂದಕ್ಕೆ|bk', 'hsb': 'wróćo|wr', 'tr': 'geri|ge', 'es': 'retrocede|atras|re|at', 'el': 'πίσω|πι|back|bk', 'hr': 'nazad|nz', 'cs': 'vzad|vz', 'de': 'zurück|zk', 'he': 'אחורה|אח', 'nl': 'terug|tg', 'hu': 'hátra|h', 'ko': '뒤로|bk', 'zh_TW': '後退|退|back|bk', 'mr': 'मागे|bk', 'ru': 'назад|н', 'sl': 'nazaj|nz', 'am': 'ወደ ኋላ|ወደ ኋላ', 'et': 'tagasi|t', 'uk': 'назад|нд', 'pt_BR': 'paraTrás|pt', 'kk': 'артқа|ар', 'br': 'war-gil|bk', 'km': 'ថយក្រោយ|bk', 'nb': 'tilbake|bakover|tb', 'bs': 'nazad|bk', 'eu': 'atzera|atz', 'ast': 'atrás|pt', 'gug': 'tapykuépe|jere', 'or': 'ପଛକୁ|bk', 'ja': 'もどる|back|bk', 'nn': 'tilbake|bakover|tb|back', 'fr': 'recule|re', 'be': 'назад|нз', 'sq': 'prapa|bk', 'gl': 'atrás|bk', 'ar': 'للخلف|خف', 'en_US': 'back|bk', 'sk': 'vzad|vz', 'eo': 'retro|r', 'ca_valencia': 'retrocedeix|recula|arrere|re', 'ca': 'retrocedeix|recula|enrere|re', 'zh_CN': '后退|退|back|bk'}, +'BLUE':{'lt': 'mėlyna', 'th': 'น้ำเงิน', 'sid': 'gordaamo', 'fi': 'sininen', 'ro': 'blue|albastru', 'lv': 'zils', 'kn': 'ನೀಲಿ', 'hsb': 'módry', 'tr': 'mavi', 'es': 'azul', 'vec': 'blè', 'el': 'γαλάζιο|blue', 'hr': 'plava', 'cs': 'modrá', 'sr_Latn': 'plava', 'he': 'כחול', 'nl': 'blauw', 'de': 'blau', 'hi': 'नीला', 'ml': 'നീല', 'gu': 'વાદળી', 'my': 'အပြာရောင်', 'ko': '청색', 'zh_TW': '藍|blue', 'mr': 'निळा', 'ru': 'синий', 'sl': 'modra', 'bn_IN': 'নীল', 'am': 'ሰማያዊ', 'et': 'sinine', 'uk': 'синій', 'pt_BR': 'azul', 'kk': 'көк', 'te': 'నీలం', 'br': 'glas', 'is': 'blátt', 'km': 'ខៀវ', 'nb': 'blå|blue', 'bs': 'plava', 'eu': 'urdina', 'hu': 'kék', 'cy': 'glas', 'pa_IN': 'ਨੀਲਾ', 'ast': 'azul', 'gug': 'hovy', 'vi': 'Xanh', 'as': 'নীলা', 'gd': 'gorm', 'or': 'ନୀଳ', 'ja': '青|blue', 'nn': 'blå|blue', 'fr': 'bleu', 'be': 'сіні', 'oc': 'blau', 'gl': 'azul', 'ar': 'أزرق', 'en_US': 'blue', 'sk': 'modrá', 'sr': 'плава', 'zh_CN': '蓝|蓝色|blue', 'eo': 'blua', 'ta': 'நீலம்', 'ca_valencia': 'blau', 'ne': 'नीलो', 'ca': 'blau', 'si': 'නිල්', 'ug': 'كۆك', 'ka': 'ლურჯი'}, +'GRAY':{'lt': 'pilka', 'sid': 'boora|bulla', 'fi': 'harmaa', 'ro': 'gray|grey|gri', 'lv': 'pelēks', 'kn': 'ಬೂದು|ಬೂದು', 'hsb': 'šěry', 'tr': 'gri|gri', 'es': 'gris', 'el': 'γκρίζο|gray|grey', 'hr': 'sivo|sivo', 'cs': 'šedá', 'sr_Latn': 'siva', 'he': 'אפור', 'nl': 'grijs', 'de': 'grau', 'ko': '회색|회색', 'zh_TW': '灰|gray|grey', 'mr': 'ग्रे|ग्रे', 'ru': 'серый', 'sl': 'siva', 'am': 'ግራጫ|ግራጫ', 'et': 'hall', 'uk': 'сірий', 'pt_BR': 'cinza', 'kk': 'сұр', 'br': 'loued|grey', 'is': 'grátt', 'km': 'ប្រផះ|grey', 'nb': 'grå|gray', 'bs': 'siva|siva', 'eu': 'grisa', 'hu': 'szürke', 'ast': 'buxu', 'gug': 'hũndy', 'or': 'ଧୂସର|grey', 'ja': '灰色|gray', 'nn': 'grå|gray', 'fr': 'gris|gris', 'be': 'шэры', 'gl': 'gris', 'ar': 'رمادي|رصاصي', 'en_US': 'gray|grey', 'sk': 'sivá', 'sr': 'сива', 'zh_CN': '灰|灰色|gray|grey', 'eo': 'griza', 'ca_valencia': 'gris', 'ca': 'gris', 'oc': 'gris|gris'}, +'SQRT':{'lt': 'šaknis|sqrt', 'uk': 'корінь', 'ja': '平方根|sqrt', 'pt_BR': 'raiz|raizQ', 'fi': 'neliöjuuri', 'br': 'daouvonad', 'sat': 'SQRT', 'is': 'kvaðratr', 'fr': 'racine', 'kok': 'SQRT', 'bs': 'korijen', 'hsb': 'korjeń', 'tr': 'karekök', 'es': 'raiz.cuadrada|raiz|sqrt', 'ca': 'arrel', 'el': 'τετραγωνικήρίζα|sqrt', 'lv': 'kvadrātsakne', 'ast': 'raiz', 'gug': 'raiz.cuadrada|raiz|sqrt', 'cs': 'odmocnina', 'de': 'wurzel', 'nl': 'sqrt|vierkantswortel|vw', 'he': 'שורש', 'nn': 'kvrot|rot|sqrt', 'nb': 'kvrot|sqrt', 'hu': 'gyök', 'gl': 'raizc', 'ar': 'الجذر_التربيعي', 'en_US': 'sqrt', 'sk': 'odmocnina', 'eo': 'kvrad', 'ca_valencia': 'arrel', 'zh_TW': '開根|方根|sqrt', 'et': 'ruutjuur|rtjr|√', 'dgo': 'SQRT', 'sl': 'koren', 'sa_IN': 'SQRT', 'zh_CN': '平方根|方根|开方|sqrt', 'am': 'ስኴር ሩት', 'mr': 'स्केअररूट'}, +'FONTHEIGHT':{'lt': 'šrifto.dydis|teksto.dydis', 'sid': 'borangichu bikka|borrotebikka|borrotehojja', 'ja': '文字の大きさ|フォントの大きさ|fontsize|fontheight', 'pt_BR': 'mudarTamanhoDaLetra|mTamLe', 'kk': 'қаріп_өлшемі|мәтін_өлшемі|мәтін_биіктігі', 'fi': 'fonttikoko', 'ro': 'fontsize|textsize|textheight|mărimefont', 'km': 'ទំហំ\u200bពុម្ពអក្សរ|textsize|textheight', 'fr': 'taillepolice|tailletexte|largeurtexte', 'lv': 'fonta_izmērs|teksta_izmērs|teksta_augstums', 'kn': 'ಅಕ್ಷರಶೈಲಿಗಾತ್ರ|ಪಠ್ಯಗಾತ್ರ|ಪಠ್ಯಎತ್ತರ', 'eu': 'letratamaina|testutamaina|testualtuera', 'tr': 'yazıtipiboyutu|metinboyutu|metinyüksekliği', 'es': 'tamaño.texto|tamaño.letra', 'ca': 'mida.lletra|mida.text', 'el': 'μέγεθοςγραμματοσειράς|μέγεθοςκειμένου|ύψοςκειμένου|fontsize|textsize|textheight', 'uk': 'кегль|розмір_символів|висота_символів', 'hr': 'veličina fonta|veličina teksta|visina teksta', 'cs': 'velikostpísma|velikosttextu', 'de': 'schriftgrösse|textgrösse|schgr|tgr', 'nl': 'lettergrootte|tekstgrootte|teksthoogte', 'bs': 'veličinafonta|veličinateksta|visinateksta', 'he': 'גודלגופן|גודלטקסט|גובהטקסט', 'hsb': 'wulkosćpisma|wulkosćteksta|wysokosćteksta|wp|wt', 'nn': 'tekststorleik|teksthøgd|textsize', 'nb': 'tekststørrelse|teksthøyde|textsize', 'hu': 'betűméret', 'gl': 'tamañodeletra|tamañodetexto|alturadetexto', 'ar': 'حجم_الخط', 'en_US': 'fontsize|textsize|textheight', 'sk': 'veľkosťpísma|veľkosťtextu|vp|vt', 'ko': '글꼴크기|글자크기|글자높이', 'or': 'ଅକ୍ଷରରୂପ ଆକାର|ପାଠ୍ୟଆକାର|textheight', 'eo': 'tiparogrando|tekstoalto|tekstogrando', 'ca_valencia': 'mida.lletra|mida.text', 'zh_TW': '字型大小|文字大小|字大小|字高|字級|fontsize|textsize|textheight', 'mr': 'फाँटआकार|मजकूरआकार|मजकूरऊंची', 'ast': 'tamañulletra|tamañutestu|altortestu', 'ru': 'кегль|размер_текста|высота_текста', 'sl': 'velikostpisave|velikostčrk|velikostbesedila', 'zh_CN': '文字大小|字体大小|字大小|字高|fontsize|textsize|textheight', 'am': 'የፊደል መጠን|የጽሁፍ መጠን|የጽሁፍ እርዝመት', 'et': 'fondi_suurus|teksti_suurus|teksti_kõrgus'}, +'BLACK':{'lt': 'juoda', 'sid': 'kolishsho', 'zu': 'okumnyama', 'fi': 'musta', 'ss': 'mnyama', 'nr': 'nzima', 'ro': 'black|negru', 'lv': 'melns', 'kn': 'ಕಪ್ಪು', 'hsb': 'čorny', 'tr': 'siyah', 'xh': 'mnyama', 'el': 'μαύρο|black', 'hr': 'crna', 'tn': 'bontsho', 'cs': 'černé', 'sr_Latn': 'crna', 'he': 'שחור', 'nl': 'zwart', 'de': 'schwarz', 'hi': 'काला', 'ml': 'കറുത്ത', 'nso': 'ntsho', 'gu': 'કાળો', 've': 'ntswu', 'my': 'အနက်', 'ko': '검정', 'st': 'botsho', 'tt': 'кара', 'zh_TW': '黑|black', 'mr': 'काळा', 'sat': 'हेंदे', 'oc': 'negre', 'ru': 'чёрный', 'sl': 'črna', 'sa_IN': 'करूहुन', 'bn_IN': 'কালো', 'am': 'ጥቁር', 'et': 'must', 'lb': 'schwaarz', 'uk': 'чорний', 'kmr_Latn': 'reş', 'pt_BR': 'preto', 'kk': 'қара', 'te': 'నలుపు', 'af': 'swart', 'is': 'svart', 'km': 'ខ្មៅ\u200b', 'nb': 'svart|black', 'bs': 'crna', 'eu': 'beltza', 'hu': 'fekete', 'cy': 'du', 'pa_IN': 'ਕਾਲਾ', 'ast': 'prietu', 'gug': 'hũ', 'vi': 'đen', 'as': 'কলা', 'gd': 'dubh', 'eo': 'nigra', 'or': 'କଳା', 'ja': '黒|black', 'nn': 'svart|black', 'fr': 'noir', 'be': 'чорны', 'br': 'Du', 'fa': 'سیاه', 'gl': 'negro', 'ar': 'أسود', 'en_US': 'black', 'sk': 'čierna', 'es': 'negro', 'sr': 'црна', 'zh_CN': '黑|黑色|black', 'bn': 'কালো', 'ta': 'கருப்பு', 'ca_valencia': 'negre', 'ne': 'कालो', 'ca': 'negre', 'si': 'කළු', 'ts': 'ntima', 'ug': 'قارا', 'ka': 'შავი'}, +'HOME':{'lt': 'namo', 'th': 'บ้าน', 'sid': 'Mine', 'fi': 'kotiin', 'ro': 'home|acasă', 'lv': 'mājas', 'kn': 'ನೆಲೆ', 'hsb': 'spočatk', 'tr': 'başlangıç', 'es': 'inicio|casa|centro', 'el': 'αρχή|home', 'hr': 'polazno', 'cs': 'domů', 'de': 'anfang', 'mn': 'эхлэл хуудас', 'he': 'בית', 'nl': 'thuis', 'hu': 'haza', 'hi': 'घर', 'ml': 'ആസ്ഥാനം', 'gu': 'ઘર', 'ko': '처음', 'sd': 'گهر', 'zh_TW': '回家|家|home', 'mr': 'होम', 'sat': 'ओड़ाक्', 'ru': 'начало', 'sl': 'začetek', 'bn_IN': 'Home', 'am': 'ቤት', 'et': 'koju', 'uk': 'центр', 'pt_BR': 'paraCentro|centro|pc', 'kk': 'басы', 'te': 'నివాసం', 'br': 'Degemer', 'is': 'heim', 'km': 'ដើម', 'nb': 'hjem|home', 'kok': 'घरGhor', 'bs': 'kući', 'eu': 'hasiera', 'cy': 'cartref', 'pa_IN': 'ਘਰ', 'ast': 'aniciu', 'gug': 'óga', 'vi': 'Home', 'as': 'ঘৰ', 'gd': 'dhachaigh', 'or': 'ମୂଳ ସ୍ଥାନ', 'ja': 'もとの場所へ|home', 'nn': 'heim|home', 'fr': 'origine', 'sq': 'shtëpia', 'oc': 'acuèlh', 'gl': 'inicio', 'ar': 'المنزل', 'en_US': 'home', 'sk': 'domov', 'zh_CN': '归位|回归|回家|家|home', 'eo': 'hejmen', 'ca_valencia': 'inici|centre', 'ca': 'inici|centre', 'si': 'සමහර', 'dgo': 'घर', 'my': 'အချို့'}, +'ROUND':{'lt': 'apvalink', 'sid': 'doyiissi', 'fi': 'pyöreä', 'ro': 'round|rotund', 'lv': 'apaļš', 'kn': 'ದುಂಡಾದ', 'hsb': 'kulojty', 'tr': 'yuvarla', 'es': 'redondear', 'el': 'στρογγυλοποίηση|round', 'hr': 'okruglo', 'cs': 'oblé', 'de': 'runde', 'he': 'עגול', 'nl': 'rondaf', 'hu': 'kerek', 'hi': 'गोल', 'ml': 'ഉരുണ്ട', 'gu': 'રાઉન્ડ', 'my': 'ပတ်လည်', 'ko': '반올림', 'zh_TW': '四捨五入|round', 'mr': 'गोलाकार', 'ru': 'скруглить', 'sl': 'zaokroži', 'bn_IN': 'রাউন্ড', 'am': 'ክብ', 'et': 'ümar', 'uk': 'закруглити', 'pt_BR': 'arred|arredonde', 'kk': 'домалақтау', 'te': 'రౌండ్', 'br': 'ront', 'is': 'rúnnað', 'km': 'មូល', 'nb': 'avrund|round', 'bs': 'okruglo', 'eu': 'biribildua', 'cy': 'crwn', 'pa_IN': 'ਗੋਲ', 'ast': 'redondu', 'gug': "emoapu'a", 'vi': 'Làm tròn', 'as': 'গোলাকাৰ', 'gd': 'cruinn', 'or': 'ଗୋଲାକାର', 'ja': '四捨五入|round', 'nn': 'avrund|round', 'fr': 'arrondi', 'sq': 'rrumbullak', 'oc': 'arredondit', 'gl': 'arredondar', 'ar': 'دائري', 'en_US': 'round', 'sk': 'Zaokrúhlenie', 'zh_CN': '四舍五入|舍入|round', 'eo': 'ronda', 'ta': 'வட்டம்', 'ca_valencia': 'arrodoneix|arrod', 'ne': 'गोलाकार', 'ca': 'arrodoneix|arrod', 'si': 'වටකුරු', 'ug': 'يۇمۇلاق', 'ka': 'მრგვალი'}, +'BREAK':{'lt': 'nutrauk', 'sid': 'tayisi', 'fi': 'keskeytä', 'ro': 'break|întrerupere', 'lv': 'pārtraukt', 'kn': 'ತಡೆ', 'hsb': 'přetorhnjenje', 'tr': 'sonlandır', 'es': 'saltar|interrumpir', 'el': 'διακοπή|break', 'hr': 'prijelom', 'cs': 'ukonči', 'de': 'abbruch', 'he': 'שבירה|לשבור', 'nl': 'afbreken', 'hu': 'kilép', 'hi': 'खण्डन', 'ml': 'വിഭജിക്കുക', 'gu': 'વિભાજક', 'ko': '분할', 'zh_TW': '中斷|斷|break', 'mr': 'ब्रेक', 'ru': 'прервать', 'sl': 'prekini', 'bn_IN': 'বিরতি', 'am': 'መጨረሻ', 'et': 'katkesta', 'uk': 'перерви', 'pt_BR': 'interromper|interrompa', 'kk': 'үзу', 'te': 'విరుపు', 'br': 'rannadur', 'is': 'rofstaður', 'km': 'បំបែក', 'nb': 'avbryt|break', 'bs': 'iskoči', 'eu': 'jauzia', 'cy': 'toriad', 'pa_IN': 'ਬਰੇਕ', 'ast': 'saltu', 'gug': 'kytĩ', 'vi': 'Ngắt', 'or': 'ଭାଙ୍ଗ', 'ja': 'くりかえしから出る|break', 'nn': 'avbryt|break', 'fr': 'saut', 'oc': 'fraccionar', 'gl': 'quebrar', 'ar': 'اكسر', 'en_US': 'break', 'sk': 'Zalomenie', 'zh_CN': '中断|break', 'eo': 'saltu', 'ta': 'முறி', 'ca_valencia': 'salta|trenca', 'ne': 'विच्छेद', 'ca': 'salta|trenca', 'si': 'බිදුම', 'my': 'ကြားဖြတ်ပါ', 'ka': 'შეწყვეტა'}, +'PURPLE':{'lt': 'violetinė', 'sid': 'Hamara', 'fi': 'purppura', 'ro': 'purple|violet', 'lv': 'purpura', 'kn': 'ನೇರಳೆ', 'hsb': 'purpurny', 'tr': 'mor', 'es': 'púrpura|morado', 'vec': 'vioła', 'el': 'πορφυρό|purple', 'hr': 'ljubičasta', 'cs': 'tmavě purpurová', 'sr_Latn': 'ljubičasta', 'he': 'סגול', 'nl': 'lila', 'de': 'lila', 'hi': 'बैंगनी', 'ml': 'പര്\u200dപ്പിള്\u200d', 'gu': 'જાંબુડિયો', 'ko': '자주색', 'sd': 'واڱڻائي', 'zh_TW': '紫|purple', 'mr': 'जांभळा', 'sat': 'कुरसे बाहा रोङ गाड़माक्', 'ru': 'фиолетовый', 'sl': 'škrlatna', 'sa_IN': 'परपोल', 'bn_IN': 'গোলাপী', 'am': 'ወይን ጠጅ', 'et': 'lilla', 'uk': 'фіолетовий', 'pt_BR': 'roxo', 'kk': 'күлгін', 'te': 'వంకాయరంగు', 'br': 'limestra', 'is': 'purpurablátt', 'km': 'ស្វាយ', 'nb': 'lilla|purple', 'kok': 'जांबळोZamblli', 'bs': 'ljubičasta', 'eu': 'morea', 'hu': 'lila', 'cy': 'porffor', 'pa_IN': 'ਵੈਂਗਣੀ', 'ast': 'púrpura', 'gug': 'lila', 'vi': 'Tía', 'as': 'জামুকলীয়া', 'gd': 'purpaidh', 'or': 'ବାଇଗଣୀ', 'ja': '紫|purple', 'nn': 'lilla|purple', 'fr': 'pourpre', 'be': 'пурпурны', 'gl': 'púrpura', 'ar': 'بنفسجي', 'en_US': 'purple', 'sk': 'Purpurová', 'sr': 'љубичаста', 'zh_CN': '紫|紫色|purple', 'eo': 'purpura', 'ta': 'ஊதா', 'ca_valencia': 'porpra|púrpura', 'ca': 'porpra|púrpura', 'dgo': 'जामुनी', 'oc': 'porpra'}, +'BROWN':{'lt': 'ruda', 'th': 'น้ำตาล', 'sid': 'daama', 'fi': 'ruskea', 'ro': 'brown|maro', 'lv': 'brūns', 'kn': 'ಕಂದು', 'hsb': 'bruny', 'tr': 'kahverengi', 'es': 'marrón|café', 'el': 'καφέ|brown', 'hr': 'smeđa', 'cs': 'hnědá', 'sr_Latn': 'braon', 'he': 'חום', 'nl': 'bruin', 'de': 'braun', 'hi': 'भूरा', 'ml': 'ബ്രൌണ്\u200d', 'gu': 'તપખીરિયા રંગનું', 'ko': '갈색', 'zh_TW': '棕|brown', 'mr': 'ब्राउन', 'ru': 'коричневый', 'sl': 'rjava', 'bn_IN': 'বাদামি', 'am': 'ቡናማ', 'et': 'pruun', 'uk': 'коричневий', 'pt_BR': 'marrom', 'kk': 'қоңыр', 'te': 'గోధుమరంగు', 'br': 'liv kistin', 'is': 'brúnt', 'km': 'ត្នោត', 'nb': 'brun|brown', 'bs': 'smeđa', 'eu': 'marroia', 'hu': 'barna', 'pa_IN': 'ਭੂਰਾ', 'ast': 'marrón', 'gug': 'marrón', 'vi': 'Nâu', 'as': 'মূগা', 'gd': 'donn', 'or': 'ବାଦାମୀ', 'ja': '茶色|ブラウン|brown', 'nn': 'brun|brown', 'fr': 'marronclair', 'be': 'карычневы', 'oc': 'marron', 'gl': 'marrón', 'ar': 'بني', 'en_US': 'brown', 'sk': 'Hnedá', 'sr': 'браон', 'zh_CN': '棕色|棕|brown', 'eo': 'bruna', 'ta': 'பழுப்பு', 'ca_valencia': 'marró', 'ne': 'कैलो', 'ca': 'marró', 'si': 'දුඹුරු', 'my': 'အညို', 'ka': 'ყავისფერი'}, +'FALSE':{'lt': 'melas', 'th': 'เท็จ', 'sid': 'xara', 'fi': 'epätosi', 'ro': 'false|fals', 'lv': 'aplams', 'kn': 'ಅಸತ್ಯ', 'hsb': 'wopačny', 'tr': 'yanlış', 'es': 'falso', 'el': 'ψευδής|false', 'hr': 'netočno', 'cs': 'nepravda', 'de': 'falsch', 'he': 'שקר', 'nl': 'onwaar', 'hu': 'hamis', 'hi': 'गलत', 'gu': 'ખોટુ', 'my': 'အမှား', 'ko': '거짓', 'br': 'diwir', 'zh_TW': '假|false', 'mr': 'फॉल्स', 'ru': 'ложь', 'sl': 'niresnično', 'bn_IN': 'মিথ্যা', 'am': 'ሀሰት', 'et': 'väär', 'uk': 'хиба', 'kmr_Latn': 'şaşî ye', 'pt_BR': 'falso', 'kk': 'жалған', 'te': 'అసత్యము', 'af': 'onwaar', 'is': 'ósatt', 'tg': 'дурӯғ', 'km': 'មិន\u200bពិត', 'nb': 'usann|false', 'eu': 'faltsua', 'cy': 'ffug', 'pa_IN': 'ਗਲਤ', 'ast': 'falso', 'gug': 'japu', 'vi': 'sai', 'as': 'মিছা', 'ja': '偽|なりたたない|false', 'nn': 'usann|false', 'fr': 'faux', 'bn': 'মিথ্যা', 'oc': 'fals', 'gl': 'falso', 'ar': 'خطأ', 'om': 'soba', 'ug': 'يالغان', 'sk': 'nepravda', 'zh_CN': '假|false', 'eo': 'falsa', 'ta': 'தவறு', 'ca_valencia': 'fals', 'ne': 'झूटो', 'ca': 'fals', 'si': 'අසත්\u200dය', 'en_US': 'false', 'ka': 'მცდარი'}, +'MM':{'th': 'มม.', 'uk': 'мм', 'mk': 'мм', 'kk': 'мм', 'bn': 'মিমি', 'tg': 'мм', 'km': 'ម.ម.', 'zh_CN': '毫米|mm', 'kok': 'मिमि', 'kn': 'ಮಿ.ಮಿ', 'ks': 'ملی میٹر', 'nr': 'i-mm', 'el': 'χιλιοστά|mm', 'dz': 'ཨེམ་ཨེམ་', 'as': 'মি.মি.', 'mn': 'мм', 'ru': 'мм', 'or': 'ମିଲିମିଟର', 'he': 'מ"מ|מ״מ', 'be': 'мм', 'sq': '0 mm', 'hi': 'मिमी', 'ml': 'മിമി', 'ar': 'مم', 'en_US': 'mm', 'my': 'မီလီမီတာ', 'bn_IN': 'মিমি', 'ta': 'மி.மீ', 'tt': 'мм', 'ne': 'मिलिमिटर', 'zh_TW': '公釐|mm', 'dgo': 'मी.मी.', 'bo': 'ཧའི་སྨི།', 'mai': 'मिमी', 'ja': 'ミリメートル|mm', 'mni': 'মি.মি.', 'ug': 'مىللىمېتىر', 'am': 'ሚ/ሚ', 'ka': 'მმ'}, +'END':{'fi': 'loppu', 'kn': 'ಕೊನೆ', 'xh': 'ekugqibeleni', 'hr': 'kraj', 'de': 'ende', 'he': 'סוף', 'nl': 'E', 'hu': 'vége', 'ml': 'അന്ത്യം', 'st': 'qetello', 'ko': '최종 기간', 'mr': 'एंड', 'mai': 'अंत', 'am': 'መጨረሻ', 'et': 'lõpp', 'kk': 'соңы', 'te': 'ముగింపు', 'af': 'einde', 'tg': 'Давраи охир', 'km': 'ពេលបញ្ចប់', 'fr': 'fin', 'kok': 'अंत', 'eu': 'amaiera', 'pa_IN': 'ਅੰਤ', 'gug': 'opa', 'vi': 'kết thúc', 'lo': 'ຈົບ', 'gd': 'deireadh', 'rw': 'impera', 'hsb': 'kónc', 'nb': 'slutt|end', 'sq': 'fund', 'om': 'dhuma', 'en_US': 'end', 'sk': 'koniec', 'ta': 'முடிவு', 'dgo': 'अंत', 'zh_CN': '定义终|终|结束|end', 'lt': 'taškas', 'th': 'สิ้นสุด', 'sid': 'gofimarcho', 'zu': 'isiphetho', 'ss': 'kugcina', 'mk': 'Крај', 'ro': 'end|sfârșit', 'lv': 'beigas', 'as': 'অন্ত', 'nn': 'slutt|end', 'es': 'fin', 'el': 'τέλος|end', 'dz': 'མཇུག', 'tn': 'bofelo', 'cs': 'konec', 'sl': 'konec', 'hi': 'अंत', 'gu': 'અંત', 've': 'magumo', 'sd': 'آخر', 'zh_TW': '結束|迄|end', 'sat': 'मुचात् मुचा़त्', 'bo': 'end_period', 'ru': 'конец', 'nso': 'mafelelo', 'bn_IN': 'শেষ', 'uk': 'Кін_період', 'kmr_Latn': 'dawî', 'pt_BR': 'fim', 'bn': 'শেষ', 'is': 'endar', 'bs': 'kraj', 'sa_IN': 'समाप्तः', 'sw_TZ': 'mwisho', 'ks': 'اند', 'my': 'အဆုံးသတ်', 'ast': 'final', 'tr': 'son', 'brx': 'जोबनाय', 'mn': 'төгсгөл', 'or': 'ଶେଷ', 'ja': 'おわり|end', 'cy': 'diwedd', 'nr': 'phela', 'br': 'Marevezh echuiñ', 'ar': 'النهاية', 'oc': 'fin', 'eo': 'fino', 'ca_valencia': 'final|fi', 'ne': 'अन्त्य', 'ca': 'final|fi', 'si': 'අවසානය', 'ts': 'makumu', 'mni': 'অরোয়বা'}, +'SLEEP':{'lt': 'lauk', 'sid': 'goxi', 'fi': 'nuku', 'ro': 'sleep|adormire', 'lv': 'gulēt', 'kn': 'ಜಡ', 'hsb': 'čakać', 'tr': 'askıya al', 'es': 'dormir|espera', 'el': 'αναμονή|sleep', 'hr': 'spavaj', 'cs': 'čekej', 'de': 'warte', 'he': 'לישון', 'nl': 'slaap', 'hu': 'vár|várj', 'hi': 'सुप्त', 'gu': 'નિદ્રા', 'ko': '대기 모드', 'zh_TW': '睡眠|休息|sleep', 'mr': 'स्लीप', 'ru': 'ждать', 'sl': 'miruj', 'am': 'ማስተኛ', 'et': 'oota', 'uk': 'чекай', 'pt_BR': 'esperar|espere', 'kk': 'күту', 'te': 'స్లీమ్', 'br': 'kousket', 'is': 'svæfa', 'km': 'ដេក', 'nb': 'sov|pause|sleep', 'bs': 'spavanje', 'eu': 'loegin', 'cy': 'cysgu', 'ast': 'dormir', 'gug': 'ke', 'as': 'নিদ্ৰা', 'or': 'ସୁପ୍ତ', 'ja': '待つ|sleep', 'nn': 'sov|pause|sleep', 'fr': 'suspendre', 'gl': 'durmir', 'ar': 'نَم', 'en_US': 'sleep', 'sk': 'čakaj', 'zh_CN': '休息|睡眠|sleep', 'eo': 'dormu', 'ca_valencia': 'dorm|espera', 'ca': 'dorm|espera', 'oc': 'arrestar'}, +'BOLD':{'lt': 'pusjuodis', 'th': 'ตัวหนา', 'sid': "kee'misi", 'zu': 'okugqamile', 'fi': 'lihavointi', 'ss': 'licinsi', 'ml': 'ബോള്\u200dഡ്', 'ro': 'bold|îngroșat', 'lv': 'trekns', 'kn': 'ಬೋಲ್ಡ್\u200d', 'hsb': 'tučny', 'tr': 'kalın', 'xh': 'ngqindilili', 'vec': 'groseto', 'el': 'έντονα|bold', 'hr': 'podebljano', 'tn': 'tiisa', 'cs': 'tučné', 'de': 'fett', 'he': 'מודגש', 'nl': 'vet', 'hu': 'félkövér|kövér|vastag', 'hi': 'मोटा', 'bn': 'গাঢ়', 'nso': 'mokoto', 'gu': 'ઘટ્ટ', 've': 'ndenya', 'my': 'မဲ', 'ko': '굵은', 'st': 'botenya', 'tt': 'калын', 'zh_TW': '粗體|粗|bold', 'mr': 'ठळक', 'oc': 'gras', 'ru': 'жирный', 'sl': 'krepko', 'bn_IN': 'গাঢ়', 'am': 'ማድመቂያ', 'et': 'paks|rasvane', 'lb': 'fett', 'uk': 'жирний', 'kmr_Latn': 'qalind', 'pt_BR': 'negrito', 'kk': 'жуан', 'te': 'మందం', 'af': 'vetdruk', 'is': 'feitletrað', 'km': 'ដិត\u200b', 'nb': 'fet|bold', 'bs': 'masno', 'eu': 'lodia', 'nr': 'darhileko', 'cy': 'trwm', 'pa_IN': 'ਗੂੜ੍ਹੇ', 'ast': 'gruesu', 'gug': "hũ'i", 'vi': 'đậm', 'as': 'ডাঠ', 'gd': 'trom', 'eo': 'grasa', 'or': 'ଗାଢ଼', 'ja': '太く|太字|bold', 'nn': 'feit|bold', 'fr': 'gras', 'be': 'цёмны', 'sq': 'të trasha', 'fa': 'ضخیم', 'gl': 'grosa', 'ar': 'عريض', 'en_US': 'bold', 'sk': 'tučné', 'es': 'grueso', 'zh_CN': '粗体|粗|bold', 'br': 'Tev', 'ta': 'தடிமன்', 'ca_valencia': 'negreta', 'ne': 'बाक्लो', 'ca': 'negreta', 'si': 'තදකුරු', 'ts': 'dzwihala', 'ug': 'توم', 'ka': 'შეკვრა'}, +'ELLIPSE':{'lt': 'elipsė', 'th': 'วงรี', 'sid': 'suduudaamo', 'fi': 'ellipsi', 'ro': 'ellipse|elipsă', 'lv': 'elipse', 'kn': 'ದೀರ್ಘವೃತ್ತ', 'hsb': 'elipsa', 'tr': 'elips', 'es': 'elipse', 'vec': 'ełise', 'el': 'έλλειψη|ellipse', 'hr': 'elipsa', 'cs': 'elipsa', 'mn': 'эллипс', 'he': 'אליפסה', 'nl': 'Ellips', 'hu': 'ellipszis', 'hi': 'दीर्घवृत्त', 'ml': 'അണ്ഡവൃത്തം', 'gu': 'ઉપવલય', 'my': 'ဘဲဥပုံ', 'ko': '타원', 'zh_TW': '橢圓|ellipse', 'mr': 'दीर्घवृत्त', 'ru': 'эллипс', 'sl': 'elipsa', 'bn_IN': 'উপবৃত্ত', 'am': 'ኤሊፕስ', 'et': 'ellips', 'uk': 'еліпс', 'pt_BR': 'elipse', 'kk': 'эллипс', 'te': 'దీర్ఘవృత్తం', 'br': 'elipsenn', 'is': 'sporbaugur', 'km': 'ពង\u200bក្រពើ', 'bs': 'elipsa', 'eu': 'elipsea', 'pa_IN': 'ਅੰਡਾਕਾਰ', 'ast': 'elipse', 'gug': 'elipse', 'vi': 'Bầu dục', 'as': 'উপবৃত্ত', 'gd': 'eileaps', 'or': 'ଅଣ୍ଡାକୃତ', 'ja': '楕円|ellipse', 'cy': 'elips', 'be': 'эліпс', 'sq': 'elips', 'oc': 'ellipsa', 'gl': 'elipse', 'ar': 'بيضاوي', 'ug': 'ئېللىپىس', 'sk': 'elipsa', 'zh_CN': '椭圆|ellipse', 'eo': 'elipso', 'ta': 'நீள்வட்டம்', 'ca_valencia': 'el·lipse', 'ne': 'दीर्घवृत्त', 'ca': 'el·lipse', 'si': 'ඉලිප්සය', 'en_US': 'ellipse', 'ka': 'ელიფსი'}, +'SHOWTURTLE':{'lt': 'rodyk.vėžliuką|rodykis|rd', 'sid': 'bukukaleelshi|bukukaleelshi|bl|aneleelshi', 'fi': 'näytäkonna|nk', 'ro': 'showturtle|st|showme|vizibil', 'lv': 'rādīt_rupuci|rr|rādīt_mani', 'kn': 'ಆಮೆತೋರಿಸು|st|ನನ್ನನ್ನುತೋರಿಸು', 'hsb': 'pokazać', 'tr': 'kaplumbağagöster|kg|benigöster', 'es': 'mostrartortuga|mt|mostrarme', 'el': 'εμφάνισηχελώνας|εμφάνισεμε|εε|showturtle|st|showme', 'hr': 'pokažikursor|st|pokažime', 'cs': 'ukažželvu|ukaž|už', 'de': 'zeigen', 'he': 'הצגצב|להציבצב|הצגתהצב|להציגאותי|הצ', 'nl': 'toon|tn', 'hu': 'látható', 'ko': '거북이표시|st|표시', 'zh_TW': '顯示海龜|顯示龜|顯示|showturtle|st|showme', 'mr': 'शोटर्टल|st|शोमि', 'ru': 'показать_черепаху|пч|показать_меня', 'sl': 'pokažiželvo|pž|pokažime', 'am': 'ኤሊ ማሳያ|st|ያሳዩኝ', 'et': 'näita|näita_kilpkonna|nk', 'uk': 'покажи_черепашку|пч', 'pt_BR': 'mostrarTat|mostreTat|at|apareçaTat|aparecerTat', 'kk': 'тасбақаны_көрсету|тк|мені_көрсету', 'br': 'diskouezbaot|st|showme', 'nb': 'vismeg|vm|showturtle', 'bs': 'prikažikornjaču|st|prikažimene', 'eu': 'erakutsidortoka|rd|erakutsini', 'ast': 'amuesatortuga|veme|vt', 'gug': 'hechaukakarumbe|hk|ajehecha', 'oc': 'afichartortuga|at|afichar', 'or': 'କଇଁଛଦର୍ଶାଇବା|st|showme', 'ja': 'タートルを出す|showturtle|st', 'nn': 'vismeg|vm|showturtle', 'fr': 'montretortue|mt|montremoi', 'gl': 'amosartartaruga|mt|amosarme', 'ar': 'أظهر_السلحفاة|أظهر', 'en_US': 'showturtle|st|showme', 'sk': 'ukážkorytnačku|ukáž|uk', 'eo': 'vidigu_testudon|vt', 'ca_valencia': 'mostra.tortuga|mt', 'ca': 'mostra.tortuga|mt', 'zh_CN': '显示海龟|显示龟|显龟|showturtle|st|showme'}, +'SQUARE':{'lt': 'kvadratas', 'th': 'สี่เหลี่ยมจัตุรัส', 'sid': 'isikuwere', 'fi': 'neliö', 'ro': 'square|pătrat', 'lv': 'kvadrāts', 'kn': 'ಚೌಕ', 'hsb': 'kwadrat', 'tr': 'kare', 'es': 'cuadrado', 'vec': 'cuadrato', 'el': 'τετράγωνο|square', 'hr': 'kvadrat', 'cs': 'čtverec', 'de': 'quadrat', 'mn': 'квадрат', 'he': 'ריבוע', 'nl': 'vierkant', 'hu': 'négyzet', 'hi': 'वर्ग', 'ml': 'സമചതുരം', 'gu': 'ચોરસ', 'my': 'စတုရန်း', 'ko': '정사각형', 'zh_TW': '正方形|方|square', 'mr': 'चौरस', 'ru': 'квадрат', 'sl': 'kvadrat', 'bn_IN': 'বর্গক্ষেত্র', 'am': 'ስኴር', 'et': 'ruut', 'uk': 'квадрат', 'pt_BR': 'quadrado', 'kk': 'шаршы', 'te': 'చతురస్రము', 'br': 'karrez', 'is': 'ferningur', 'km': 'ការេ', 'nb': 'kvadrat|square', 'bs': 'kvadrat', 'eu': 'koadroa', 'cy': 'sgwâr', 'pa_IN': 'ਵਰਗ', 'ast': 'cuadráu', 'gug': 'cuadrado', 'vi': 'Vuông', 'as': 'বৰ্গ', 'gd': 'ceàrnag', 'or': 'ବର୍ଗାକାର', 'ja': '正方形|square', 'nn': 'kvadrat|square', 'fr': 'carré', 'be': 'квадрат', 'sq': 'katror', 'oc': 'carrat', 'gl': 'cadrado', 'ar': 'مربع', 'en_US': 'square', 'sk': 'štvorec', 'zh_CN': '正方形|方|square', 'eo': 'kvadrato', 'ta': 'சதுரம்', 'ca_valencia': 'quadrat', 'ne': 'वर्ग', 'ca': 'quadrat', 'si': 'සමචතුරශ්\u200dරය', 'ug': 'كۋادرات', 'ka': 'კვადრატი'}, +'LOG10':{'zh_TW': '對數|log10', 'zh_CN': '对数|log10', 'ar': 'لوغاريثم_عشري', 'en_US': 'log10', 'ug': 'لوگارىفما|log10', 'am': 'ሎግ10', 'he': 'לוגריתם_10'}, +'FILL':{'lt': 'spalvink', 'th': 'เติม', 'sid': 'wonshi', 'fi': 'täytä', 'ro': 'fill|umplere', 'lv': 'aizpildīt', 'kn': 'ತುಂಬಿಸು', 'hsb': 'pjelnić', 'tr': 'doldur', 'es': 'relleno|rellenar', 'vec': 'Inpienasion', 'el': 'γέμισμα|fill', 'hr': 'ispuni', 'cs': 'vyplň', 'de': 'füllen', 'he': 'מילוי', 'nl': 'vullen', 'hu': 'tölt', 'hi': 'भरें', 'ml': 'നിറയ്ക്കുക', 'gu': 'ભરો', 'my': 'ဖြည့်ပါ', 'ko': '채우기', 'zh_TW': '填入|fill', 'mr': 'भरा', 'ru': 'заливка', 'sl': 'zapolni', 'bn_IN': 'পূরণ করুন', 'am': 'መሙያ', 'et': 'täida', 'uk': 'заповнення', 'pt_BR': 'pintar|pinte|preencher', 'kk': 'толтыру', 'te': 'నింపు', 'br': 'leuniañ', 'is': 'fylling', 'km': 'បំពេញ', 'nb': 'fyll|fill', 'bs': 'popuni', 'eu': 'bete', 'cy': 'llanw', 'pa_IN': 'ਭਰੋ', 'ast': 'rellenar', 'gug': 'myenyhẽ', 'oc': 'emplenar', 'as': 'পূৰ্ণ কৰক', 'or': 'ପୁରଣ କରନ୍ତୁ', 'ja': '塗りつぶし|fill', 'nn': 'fyll|fill', 'fr': 'remplir', 'be': 'запаўненне', 'sq': 'mbush', 'gl': 'encher', 'ar': 'املأ', 'ug': 'تولدۇر', 'sk': 'výplň', 'zh_CN': '填充|fill', 'eo': 'plenigu', 'ta': 'நிரப்பு', 'ca_valencia': 'omple|emplena', 'ne': 'भर्नुहोस्', 'ca': 'omple|emplena', 'dgo': 'भराई', 'en_US': 'fill', 'ka': 'შევსება'}, +'SILVER':{'lt': 'sidabrinė', 'sid': 'siwiila', 'fi': 'hopea', 'ro': 'silver|argintiu', 'lv': 'sudraba', 'kn': 'ಬೆಳ್ಳಿ', 'hsb': 'slěbro', 'tr': 'gümüş', 'es': 'plata', 'vec': 'arzento', 'el': 'ασημί|silver', 'hr': 'srebrno', 'cs': 'stříbrná', 'sr_Latn': 'srebrna', 'he': 'כסף', 'nl': 'zilver', 'de': 'silber', 'gu': 'ચાંદી', 'ko': '은색', 'zh_TW': '銀灰|銀|silver', 'mr': 'चंदेरी', 'ru': 'серебряный', 'sl': 'srebrna', 'bn_IN': 'রূপালী', 'am': 'ብር', 'et': 'hõbedane', 'uk': 'срібний', 'pt_BR': 'prata', 'kk': 'күміс', 'te': 'సిల్వర్', 'br': 'argant', 'is': 'silfur', 'km': 'ប្រាក់', 'nb': 'sølv|silver', 'bs': 'srebrena', 'eu': 'zilarra', 'hu': 'világosszürke|ezüst', 'cy': 'arian', 'ast': 'plata', 'gug': 'plata', 'as': 'ৰূপ', 'gd': 'airgid', 'or': 'ସିଲଭର', 'ja': '銀|silver', 'nn': 'sølv|silver', 'fr': 'argent', 'be': 'срэбны', 'gl': 'prata', 'ar': 'فضي', 'en_US': 'silver', 'sk': 'strieborná', 'sr': 'сребрна', 'eo': 'arĝenta', 'ta': 'சில்வர்', 'ca_valencia': 'plata|argent', 'ca': 'plata|argent', 'zh_CN': '银|银色|silver'}, +'VIOLET':{'lt': 'alyvų', 'sid': 'hamara', 'fi': 'violetti', 'lv': 'violets', 'kn': 'ನೇರಳೆ', 'hsb': 'fijałkojty', 'tr': 'menekşe', 'es': 'violeta', 'el': 'βιολετί|violet', 'hr': 'ljubičasta', 'cs': 'fialová', 'sr_Latn': 'ljubičasta', 'he': 'סגולעדין', 'de': 'violett', 'hi': 'बैंगनी', 'ml': 'വയലറ്റ്', 'gu': 'જાંબલી', 'my': 'ခရမ်းရောင်', 'ko': '보라색', 'zh_TW': '紫蘿蘭|藍紫|violet', 'mr': 'गडद जांभळा', 'ru': 'лиловый', 'sl': 'vijolična', 'bn_IN': 'বেগুনী', 'am': 'ወይን ጠጅ', 'et': 'violetne', 'uk': 'фіалковий', 'pt_BR': 'violeta', 'kk': 'күлгін', 'te': 'వంకాయరంగు', 'br': 'mouk', 'is': 'fjólublátt', 'km': 'ស្វាយ', 'bs': 'ljubičasta', 'eu': 'bioleta', 'hu': 'ibolyakék|ibolya|viola', 'cy': 'fioled', 'pa_IN': 'ਵੈਂਗਣੀ', 'ast': 'violeta', 'gug': 'violeta', 'vi': 'Tím xanh', 'as': 'বেঙুনীয়া', 'gd': 'purpaidh', 'or': 'ବାଇଗଣି', 'ja': 'すみれ色|バイオレット|ヴァイオレット|violet', 'nn': 'fiolett|violet', 'nb': 'fiolett|violet', 'be': 'бэзавы', 'gl': 'violeta', 'ar': 'بنفسجي', 'en_US': 'violet', 'sk': 'Fialová', 'sr': 'љубичаста', 'zh_CN': '紫罗兰|蓝紫|violet', 'eo': 'viola', 'ta': 'ஊதா', 'ca_valencia': 'violat|violeta', 'ne': 'बैजनी', 'ca': 'violat|violeta', 'si': 'ජම්බුල වර්ණය', 'ug': 'بىنەپشە', 'ka': 'იისფერი'}, +'ERR_BLOCK':{'lt': 'Klaida (per daug arba per mažai tarpų skliausteliuose?)', 'sid': 'Soro (qoqqowubbate aana ledote woy hawamme fooquwa?)', 'fi': 'Virhe (liikaa tai liian vähän välejä sulkumerkkien vieressä?)', 'ro': 'Eroare (spații sau paranteze în plus sau lipsă?)', 'lv': 'Kļūda (liekas vai trūkstošas atstarpes pie iekavām?)', 'kn': 'ದೋಷ (ಆವರಣಗಳಲ್ಲಿ ಹೆಚ್ಚುವರಿ ಅಂತರಗಳು ಇವೆಯೆ ಅಥವ ಕಾಣಿಸುತ್ತಿಲ್ಲವೆ?)', 'hsb': 'Zmylk (přidatne abo falowace mjezoty pola spinkow?)', 'es': 'Error (¿faltan o sobran espacios en los corchetes?)', 'vec': 'Eror (spasi in pì o in manco so łe parèntezi?)', 'el': 'Σφάλμα (πρόσθετα ή ελλείποντα κενά στις παρενθέσεις;)', 'sv': 'Fel (för många eller saknade blanksteg vid parenteser?)', 'hr': 'Greška (ima previše ili nedostaje razmaka u zagradama?)', 'cs': 'Chyba (přebývající nebo chybějící mezery u závorek?)', 'sr_Latn': 'Greška (mogući višak ili manjak razmaka uz zagrade?)', 'pl': 'Błąd (nadmiarowe lub brakujące spacje w nawiasach?)', 'he': 'שגיאה (יכול להיות שיש יותר מדי או שאין רווחים עם הסוגריים?)', 'nl': 'Error (extra of ontbrekende spaties bij haakjes?)', 'de': 'Fehler (zusätzliche oder fehlende Leerstelle bei Klammern?)', 'hi': 'त्रुटि (ब्रैकेट में अतिरिक्त या अनुपस्थित स्थान?)', 'ml': 'പിശക്', 'id': 'Galat (spasi ekstra atau kurang pada kurung?)', 'gu': 'ભૂલ (વધારાની અથવા ગેરહાજર જગ્યાઓ કૌંસમાં છે?)', 'ko': '오류 (괄호안에 불필요하게 추가되었거나 누락된 빈칸)', 'zh_TW': '錯誤 (括弧中有額外空格或遺漏空格?)', 'et': 'Viga (liiga palju või vähe tühikuid sulgude juures?)', 'ru': 'Ошибка (лишние или недостающие пробелы в скобках?)', 'sl': 'Napaka (odvečni ali manjkajoči presledki pri oklepajih?)', 'bn_IN': 'ত্রুটি (ব্র্যাকেটে অতিরিক্ত বা অনুপস্থিত স্পেস?)', 'am': 'ስህተት (ተጨማሪ ወይንም በቅንፉ ውስጥ ባዶ ቦታ የለም?)', 'mr': 'त्रुटी (ब्रॅकेट्सकडील अगाउ किंवा न आढळलेली मोकळी जागा?)', 'uk': 'Помилка (надлишок або нестача пробілів у дужках?)', 'pt_BR': 'Erro (há espaços faltando ou a mais nos colchetes?)', 'kk': 'Қате (жақша ішіндегі бос аралықтар артық немесе жетіспейді?)', 'te': 'దోషం (బ్రాకెట్ల వద్ద అదనపు లేదా లేని ఖాళీలు వున్నాయా?)', 'br': "Fazi (esaouioù a vank pe a zo re etre ar c'hrommelloù ?)", 'is': 'Villa (vantar eða er ofaukið bilum við sviga?)', 'km': 'កំហុស (បាត់\u200b ឬ\u200bមាន\u200bចន្លោះ\u200bបន្ថែម\u200bនៅ\u200bវង់\u200bក្រចក?)', 'nb': 'Feil (ekstra eller manglende mellomrom ved parenteser?)', 'bg': 'Грешка (излишни или липсващи интервали при скоби?)', 'bs': 'Greška (viška ili fali razmaka u ragradama?)', 'eu': 'Errorea (zuriuneak soberan edo faltan parentesietan?)', 'hu': 'Hiba (hiányzó vagy felesleges szóköz a kapcsos zárójelnél?)', 'cy': 'Gwall (bylchau ychwanegol neu goll wrth y cromfachau?)', 'ast': 'Error (¿sobren o falten espacios nos paréntesis?)', 'it': 'Errore (spazi aggiuntivi o mancanti alle parentesi?)', 'tr': 'Hata (köşeli ayraçlarda fazladan veya eksik boşluk?)', 'oc': 'Error (espacis suplementaris o mancants entre las parentèsis ?)', 'da': 'Fejl (ekstra eller manglende mellemrum ved kantede parenteser?)', 'as': 'ত্ৰুটি (ব্ৰেকেটসমূহত অতিৰিক্ত অথবা সন্ধানহিন স্পেইচ?)', 'gd': 'Mearachd (cus àitichean no feadhainn a dhìth aig na bracaidean?)', 'or': 'ତ୍ରୁଟି (ବନ୍ଧନିଗୁଡ଼ିକରେ ଅତିରିକ୍ତ କିମ୍ବା ଅନୁପସ୍ଥିତ ଖାଲିସ୍ଥାନ ଅଛି?)', 'ja': 'エラー(括弧の辺りにスペースが重複または不足しているかもしれません)', 'nn': 'Feil (Kan vera feil bruk av mellomrom ved parentesar)', 'fr': 'Erreur (espaces supplémentaires ou manquants entre les parenthèses ?)', 'pt': 'Erro (espaços em falta ou a mais nos parênteses?)', 'gl': 'Erro (espazos extra ou que faltan nas parénteses?)', 'ar': 'خطأ (مسافات إضافية أو مفقودة في الأقواس؟)', 'en_US': 'Error (extra or missing spaces at brackets?)', 'sk': 'Chyba (nadbytočné nebo chýbajúce medzery pri zátvorkách?)', 'sr': 'Грешка (могући вишак или мањак размака уз заграде?)', 'zh_CN': '错误 (括号处多用或少用了空格?)', 'eo': 'Eraro (ekstra aŭ mankanta spaceto ĉe krampoj?)', 'ta': 'பிழை (பிறையடைப்புகளில் இடைவெளிகள் கூடுதலாக அல்லது விடுபட்டுள்ளதா?)', 'ca_valencia': "S'ha produït un error (espais extra o omesos als parèntesis?)", 'ga': 'Earráid (spásanna breise nó ar iarraidh in aice leis na lúibíní?)', 'ca': "S'ha produït un error (espais extra o omesos als parèntesis?)", 'be': 'Памылка (лішнія ці недастатковыя прабелы ў дужках?)', 'ug': 'خاتالىق (تىرناقتا بوشلۇق ئاز ياكى كۆپ؟)'}, +'TURNLEFT':{'lt': 'kairėn|kr', 'th': 'ซ้าย|เลี้ยวซ้าย|lt', 'sid': 'gura|guraraqole|gr', 'fi': 'vasemmalle|vas', 'ro': 'left|turnleft|lt|stânga', 'lv': 'pa_kreisi|kreisi|gk', 'kn': 'ಎಡ|ಎಡಕ್ಕೆ ತಿರುಗಿಸು|lt', 'hsb': 'nalěwo|nl', 'tr': 'sol|soladön|sl', 'es': 'izquierda|giraizquierda|iz|gi', 'el': 'αριστερά|στροφήαριστερά|αρ|left|turnleft|lt', 'hr': 'lijevo|okreni lijevo|li', 'cs': 'vlevo|vl', 'de': 'links|li', 'he': 'שמאלה|לפנותשמאלה|פנייהשמאלה|שמ', 'nl': 'links|linksaf|ls', 'hu': 'balra|b', 'ko': '왼쪽|왼쪽으로회전|lt', 'zh_TW': '左|左轉|left|turnleft|lt', 'mr': 'डावे|डावीकडे वळा|lt', 'ru': 'влево|поворот_налево|л', 'sl': 'levo|obrnilevo|lv', 'am': 'ግራ|ወደ ግራ ማዟሪያ|ወደ ግራ', 'et': 'vasakule|vasakpööre|v', 'uk': 'ліворуч|поворот_ліворуч|лв', 'pt_BR': 'paraEsquerda|pe|girarEsquerda|giraEsquerda', 'kk': 'солға|солға_бұрылу|с', 'km': 'ឆ្វេង|turnleft|lt', 'nb': 'venstre|snu venstre|ve', 'bs': 'lijevo|skrenilijevo|lt', 'eu': 'ezkerra|ezkerrera|ezk', 'ast': 'izquierda|xiraizquierda|xi', 'gug': 'asúpe|jereasúpe|as', 'or': 'ବାମକୁ|ବାମକୁ ଯାଆନ୍ତୁ|lt', 'ja': '左|左に曲がる|left|turnleft|lt', 'nn': 'venstre|snu venstre|ve|left', 'fr': 'gauche|tournegauche|ga', 'be': 'улева|паварот_улева|лв', 'sq': 'majtaj|kthehumajtas|lt', 'gl': 'esquerda|voltaesquerda|lt', 'ar': 'لليسار', 'en_US': 'left|turnleft|lt', 'sk': 'vľavo|vl', 'eo': 'maldekstren|turnu_liven|lt', 'ca_valencia': 'esquerra|giraesquerra|gira.esquerra|ge', 'ca': 'esquerra|giraesquerra|gira.esquerra|ge', 'zh_CN': '左|左转|left|turnleft|lt'}, +'NAVY':{'lt': 'jūros', 'sid': 'baaruwolqa', 'fi': 'laivasto', 'lv': 'tumšzils', 'kn': 'ಗಾಢಬೂದು ನೀಲಿ', 'hsb': 'ćmowomódry', 'tr': 'lacivert', 'es': 'azul.marino|marino', 'vec': 'blè marina', 'el': 'θαλασσί|navy', 'hr': 'tamnoplava', 'cs': 'tmavomodrá', 'sr_Latn': 'mornarsko plava', 'he': 'כחולכהה', 'nl': 'navyblauw', 'de': 'dunkelblau', 'hi': 'नेवी', 'ml': 'നേവി', 'gu': 'નેવી', 'ko': '군청색', 'zh_TW': '海藍|靛|深藍|navy', 'mr': 'नेव्हि', 'ru': 'тёмно-синий', 'sl': 'mornarskomodra', 'bn_IN': 'অাকাশি', 'am': 'የባህር ኃይል', 'et': 'meresinine', 'uk': 'темно-синій', 'pt_BR': 'marinho', 'kk': 'қою_көк', 'te': 'నావి', 'br': 'glaz mor', 'is': 'flotablátt', 'km': 'ខៀវ\u200bចាស់', 'bs': 'mornarska', 'eu': 'itsasurdina', 'hu': 'sötétkék', 'cy': 'glas y llynges', 'ast': 'azulmarín|marín', 'gug': 'hovy.marino|marino', 'as': 'ইষৎনীলা', 'gd': "gorm a' chabhlaich", 'or': 'ଗାଢ଼ ନୀଳ', 'ja': '濃い青|ネイビー|navy', 'nn': 'marineblå|navy', 'nb': 'marineblå|navy', 'be': 'цёмна-сіні', 'gl': 'mariño', 'ar': 'أزرق_بحري', 'en_US': 'navy', 'sk': 'tmavomodrá', 'sr': 'морнарско плава', 'zh_CN': '海蓝|深蓝|navy', 'eo': 'malhelblua', 'ta': 'நேவி', 'ca_valencia': 'blau.marí|marí', 'ca': 'blau.marí|marí', 'oc': 'blaumarina'}, +'PENCAP':{'lt': 'pieštuko.pabaiga|linijos.pabaiga|pp', 'uk': 'шапка пера|шапка лінії', 'ja': 'ペンのはじ|線のはじ|linecap', 'pt_BR': 'mudarPontaDoLápis|mPonLa|mPonLi', 'kk': 'сызық_басы|сызық_аяғы', 'fi': 'viivanpää', 'br': 'pennkreion|pennlinenn', 'ro': 'pencap|linecap|capătstilou', 'fr': 'coiffecrayon|coiffeligne', 'pa_IN': 'ਪੈੱਨ ਕੈਪIਲਾਈਨ ਕੈਪ', 'kn': 'ಲೇಖನಿಕ್ಯಾಪ್|ಸಾಲಿನಕ್ಯಾಪ್', 'eu': 'lumaestalkia|marraestalkia', 'hr': 'vrh olovke|vrh linije', 'es': 'fin.línea|punta.línea|fl', 'el': 'άκρογραφίδας|άκρογραμμής|pencap|linecap', 'lv': 'spalvas_gals|līnijas_gals', 'ast': 'finllapiz|finllinia', 'gug': 'tapabolígrafo|kyta.línea', 'oc': 'coifagredon|coifalinha', 'cs': 'zakončenípera|zakončeníčáry', 'de': 'stiftende|linienende|se|le', 'tr': 'kalemyazısı|satıryazısı', 'nl': 'peneinde|lijneinde', 'he': 'סיומתעט|סיומתקו', 'hsb': 'kónčkpisaka|linijowykónčk|kp|lk', 'nn': 'linjeende|pencap|linecap', 'nb': 'linjeende|pencap|linecap', 'hu': 'tollhegy|vonalvég', 'gl': 'rematelápis|remateliña', 'en_US': 'pencap|linecap', 'sk': 'zakončeniepera|zakončeniečiary|zp|zč', 'ko': '펜끝|선끝', 'eo': 'plumĉapo/liniĉapo', 'ca_valencia': 'tap.llapis|final.línia|extrem.línia', 'zh_TW': '筆端帽|線端帽|線端|pencap|linecap', 'et': 'jooneots', 'zh_CN': '笔帽|线帽|笔端帽|线端帽|pencap|linecap', 'ru': 'угол_пера|угол_линии', 'sl': 'konicaperesa|konicačrte', 'ug': 'قەلەم ئىزى|سىزىق ئىزى|pencap|linecap', 'am': 'የብዕር መገናኛ |የመስመር መገናኛ', 'ca': 'tap.llapis|final.línia|extrem.línia'}, +'GLOBAL':{'lt': 'išorinis', 'sid': 'kalqe', 'sk': 'globálne', 'kk': 'жалпы', 'fi': 'yhteinen', 'br': 'hollek', 'is': 'víðvært', 'km': 'សកល\u200b', 'uk': 'загальне', 'lv': 'globāls', 'kn': 'ಜಾಗತಿಕ', 'hsb': 'globalny', 'tr': 'küresel', 'ja': 'どこからでも見える|グローバル|global', 'el': 'καθολικό|global', 'hr': 'opći', 'cs': 'globální', 'as': 'বিশ্বব্যাপী', 'nl': 'globaal', 'bs': 'opšte', 'he': 'כללי', 'eu': 'globala', 'hu': 'globális|globálisváltozó|globvál', 'hi': 'वैश्विक', 'cy': 'byd eang', 'gu': 'વૈશ્વિક', 'en_US': 'global', 'te': 'గ్లోబల్', 'ko': '전역', 'or': 'ଜାଗତିକ', 'ar': 'عمومي', 'zh_TW': '全域|共用|global', 'mr': 'ग्लोबल', 'eo': 'ĉie', 'zh_CN': '全局|共用|global', 'ru': 'общее', 'sl': 'globalno', 'bn_IN': 'গ্লোবাল', 'am': 'አለም አቀፍ', 'et': 'üldine'}, +'ERR_INDEX':{'lt': 'Rodyklė už ribų', 'sid': 'Hakkageeshshu gobayiidi mashalaqisaancho.', 'fi': 'Indeksimuuttuja arvoalueen ulkopuolella.', 'ro': 'Index în afara intervalului.', 'lv': 'Indekss ir ārpus diapazona.', 'kn': 'ಸೂಚಿಯು ವ್ಯಾಪ್ತಿಯ ಹೊರಗಿದೆ.', 'hsb': 'Indeks zwonka wobłuka.', 'es': 'Índice fuera del intervalo.', 'vec': "Ìndeze fora de l'area.", 'el': 'Δείκτης εκτός περιοχής.', 'sv': 'Indexet ligger utanför intervallet.', 'hr': 'Indeks je izvan raspona.', 'cs': 'Index mimo rozsah.', 'sr_Latn': 'indeksiranje van opsega.', 'pl': 'Indeks poza zakresem.', 'he': 'האינדקס מחוץ לטווח.', 'nl': 'Index buiten gedefinieerd bereik.', 'de': 'Index außerhalb des Bereichs.', 'hi': 'अनुक्रमणिका दायरे से बाहर है.', 'ml': 'സൂചിക പരിധിയ്ക്കു് പുറത്തു്', 'id': 'Indeks di luar jangkauan.', 'gu': 'અનુક્રમણિકા વ્યાખ્યાયિત મર્યાદાની બહાર છે.', 'ko': '범위 외의 인덱스', 'zh_TW': '索引超出範圍。', 'et': 'Indeks vahemikust väljas.', 'ru': 'Индекс вне диапазона.', 'sl': 'Kazalo je izven območja.', 'bn_IN': 'সূচি মান সীমাবহির্ভূত।', 'am': 'ማውጫው ከተወሰነው ውጪ ነው', 'mr': 'इंडेक्स आउट ऑफ रेंज.', 'uk': 'Індекс поза діапазоном.', 'pt_BR': 'Índice fora do intervalo.', 'kk': 'Индекс ауқымнан тыс.', 'te': 'విషయసూచిక విస్తృతి బయటవుంది.', 'br': 'Ibil er maez eus al lijorenn.', 'is': 'Vísir er ekki innan skilgreinds sviðs.', 'km': 'លិបិក្រម\u200bក្រៅ\u200bជួរ។', 'nb': 'Indeksen er utenfor området.', 'bg': 'Индекс извън обхвата.', 'bs': 'Indeks van opsega.', 'eu': 'Indizea barrutitik kanpo.', 'hu': 'Nem létező elemre hivatkozás.', 'cy': "Mynegai tu allan o'r ystod.", 'ast': 'Índiz fuera de rangu.', 'it': "Indice fuori dall'area.", 'tr': 'Dizin aralık dışında.', 'oc': 'Indèx en defòra de la plaja.', 'da': 'Indeks uden for tilladt område.', 'as': 'সূচী বিস্তাৰৰ বাহিৰ।', 'gd': 'Tha an clàr-amais taobh a-muigh na rainse.', 'or': 'ଅନୁକ୍ରମଣିକା ପରିସର ବାହାରେ ଅଛି।', 'ja': 'インデックスが範囲外です。', 'nn': 'Indeksen er utanfor området.', 'fr': 'Index en dehors de la plage.', 'pt': 'Índice fora do intervalo', 'gl': 'Índice fóra de intervalo.', 'ar': 'الفهرس خارج المجال.', 'en_US': 'Index out of range.', 'sk': 'Index je mimo rozsahu.', 'sr': 'индексирање ван опсега.', 'zh_CN': '索引越界。', 'eo': 'Indekso ekster amplekso.', 'ta': 'குறியீடு வரம்பைத் தாண்டியுள்ளது.', 'ca_valencia': "L'índex és fora de l'interval.", 'ga': 'Innéacs as raon.', 'ca': "L'índex és fora de l'interval.", 'be': 'Індэкс па-за абсягам.', 'ug': 'ئىندېكىس دائىرىدىن ھالقىدى.'}, +'IN':{'lt': 'kur', 'th': 'น.', 'sid': 'giddo', 'zu': 'phakathi', 'fi': ':ssa|:ssä', 'mk': 'инчи', 'ro': 'in|în', 'lv': 'iekš', 'as': 'ইন', 'hsb': 'w', 'xh': 'ngaphakathi', 'el': 'στο', 'dz': 'ཨའི་ཨེན།', 'hr': 'dolazno', 'tn': 'gare', 'cs': 'z', 'he': 'בתוך', 'eo': 'en', 'hu': '-ban|-ben', 'hi': 'इंच', 'nso': 'go', 'mn': 'дотор', 'ts': 'endzeni', 'sd': '۾', 'zh_TW': '自|in', 'mr': 'इन', 'bo': 'དབྱིན་ཚུན།', 'mai': 'इँच', 'sl': 'v', 'bn_IN': 'ইঞ্চি', 'am': 'ኢንች', 'et': 'hulgas', 'uk': 'дюйм', 'kmr_Latn': 'înç', 'pt_BR': 'em', 'kk': 'ішінде', 'te': 'లోపల', 'af': 'dm', 'is': 'í', 'tg': 'ин', 'km': 'គិត\u200bជា', 'nb': 'tommer|in', 'kok': 'इंच', 'bs': 'u', 'eu': 'hemen', 'sw_TZ': 'katika', 'ks': 'میں', 'cy': 'mod', 'my': 'လက်မ', 'ast': 'en', 'gug': 'en', 'fa': 'اینچ', 'lo': 'ໃນ', 'or': 'ରେ', 'gd': 'òirleach', 'ru': 'в', 'ja': 'を次から取り出して|in', 'nn': 'i|in', 'fr': 'dans', 'br': 'e', 'oc': 'dins', 'gl': 'pol', 'ar': 'في', 'ug': 'ديۇيم', 'es': 'en', 'zh_CN': '自|in', 'bn': 'ইঞ্চি', 'ta': 'அங்.', 'ca_valencia': 'a|en', 'ca': 'a|en', 'dgo': 'इं', 'uz': 'dyuym', 'mni': 'ইন', 'en_US': 'in', 'ka': 'დი'}, +'DECIMAL':{'lt': ',', 'hsb': ',', 'nb': ',', 'hu': ',', 'fi': ',', 'en_US': '.', 'nn': ',', 'ca_valencia': ',', 'ca': ',', 'et': ',', 'ast': ',', 'cs': ',', 'de': ',', 'eo': ',', 'sl': ','}, +'CONTINUE':{'lt': 'tęsk', 'sid': 'albisufi', 'fi': 'jatka', 'ro': 'continue|continuă', 'lv': 'turpināt', 'kn': 'ಮುಂದುವರಿಸು', 'hsb': 'dale', 'tr': 'devam', 'es': 'continuar', 'el': 'συνέχεια|continue', 'hr': 'nastavi', 'cs': 'pokračuj', 'de': 'weiter', 'he': 'המשך|להמשיך', 'nl': 'doorgaan|verdergaan', 'hu': 'újra', 'hi': 'जारी रखें', 'ml': 'തുടരുക', 'gu': 'ચાલુ રાખો', 'ko': '계속', 'zh_TW': '繼續|續|continue', 'mr': 'कंटिन्यु', 'ru': 'продолжить', 'sl': 'nadaljuj', 'bn_IN': 'পরবর্তী (~C)', 'am': 'ይቀጥሉ', 'et': 'jätka', 'uk': 'продовжити', 'pt_BR': 'continuar|continue', 'kk': 'жалғастыру', 'te': 'కొనసాగించు', 'br': "kenderc'hel", 'is': 'áfram', 'km': 'បន្ត', 'bs': 'nastavak', 'eu': 'jarraitu', 'cy': 'parhau', 'pa_IN': 'ਜਾਰੀ ਰੱਖੋ', 'ast': 'siguir', 'gug': 'segui', 'vi': 'Tiếp tục', 'as': 'অব্যাহত ৰাখক', 'or': 'ଚାଲୁରଖ', 'ja': 'はじめにもどる|continue', 'nn': 'hald fram|continue', 'nb': 'fortsett|continue', 'sq': 'vazhdo', 'oc': 'contunhar', 'gl': 'continuar', 'ar': 'تابع', 'en_US': 'continue', 'sk': 'Pokračovať', 'zh_CN': '继续|continue', 'eo': 'daŭrigu', 'ta': 'தொடர்', 'ca_valencia': 'continua', 'ne': 'जारी राख्नुहोस्', 'ca': 'continua', 'si': 'දිගටම කරගෙන යන්න (~C)', 'my': 'ဆက်လုပ်ပါ', 'ka': 'გაგრძელება'}, +'YELLOW':{'lt': 'geltona', 'th': 'เหลือง', 'sid': 'baqqala', 'fi': 'keltainen', 'ro': 'yellow|galben', 'lv': 'dzeltens', 'kn': 'ಹಳದಿ', 'hsb': 'žołty', 'tr': 'sarı', 'es': 'amarillo', 'vec': 'zało', 'el': 'κίτρινο|yellow', 'hr': 'žuta', 'cs': 'žlutá', 'sr_Latn': 'žuta', 'he': 'צהוב', 'nl': 'geel', 'de': 'gelb', 'hi': 'पीला', 'ml': 'മഞ്ഞ', 'gu': 'પીળો', 'my': 'အဝါ', 'ko': '노랑', 'zh_TW': '黃|yellow', 'mr': 'पिवळा', 'ru': 'жёлтый', 'sl': 'rumena', 'bn_IN': 'হলুদ', 'am': 'ቢጫ', 'et': 'kollane', 'uk': 'жовтий', 'pt_BR': 'amarelo', 'kk': 'сары', 'te': 'పసుపు', 'br': 'melen', 'is': 'gult', 'km': 'លឿង', 'nb': 'gul|yellow', 'bs': 'žuta', 'eu': 'horia', 'hu': 'sárga', 'cy': 'melyn', 'pa_IN': 'ਪੀਲਾ', 'ast': 'mariellu', 'gug': "sa'yju", 'vi': 'Vàng', 'as': 'হালধীয়া', 'gd': 'buidhe', 'or': 'ହଳଦିଆ', 'ja': '黄|yellow', 'nn': 'gul|yellow', 'fr': 'jaune', 'be': 'жоўты', 'sq': 'e verdhë', 'oc': 'jaune', 'gl': 'amarelo', 'ar': 'أصفر', 'en_US': 'yellow', 'sk': 'žltá', 'sr': 'жута', 'zh_CN': '黄|黄色|yellow', 'eo': 'flava', 'ta': 'மஞ்சள்', 'ca_valencia': 'groc', 'ne': 'पहेलो', 'ca': 'groc', 'si': 'කහ', 'ug': 'سېرىق', 'ka': 'ყვითელი'}, +'SORTED':{'fi': 'lajiteltu', 'kn': 'ವಿಂಗಡಿಸಲಾದ', 'xh': 'hlela-hlela', 'hr': 'razvrstano', 'de': 'sortiert', 'he': 'עםמיון', 'nl': 'gesorteerd', 'hu': 'rendez', 'ml': 'വകതിരിച്ച', 'st': 'hlophilwe', 'ko': '정렬', 'mr': 'सॉर्टेड', 'mai': 'सोर्ट कएल गेल', 'am': 'ተለይቷል', 'et': 'sorditud', 'kk': 'сұрыпталған', 'te': 'క్రమబద్దీకరించబడినది', 'af': 'gesorteer', 'tg': 'низомнокшуда', 'km': 'បាន\u200bតម្រៀប', 'fr': 'trié', 'kok': 'वर्गीकृत', 'eu': 'ordenatua', 'pa_IN': 'ਲੜੀਬੱਧ', 'vi': 'đã sắp xếp', 'lo': 'ຈັດລຽງ', 'gd': 'air a sheòrsachadh', 'rw': 'bishunguwe', 'hsb': 'sortěrowany', 'nb': 'sortert|sorted', 'sq': 'klasifikuar', 'om': "foo'amaa", 'en_US': 'sorted', 'sk': 'zoradené', 'br': 'rummet', 'ta': 'அடுக்கப்பட்டது', 'dgo': 'छांटेआ', 'my': 'စနစ်တကျစီထားသည်', 'lt': 'rikiuok', 'th': 'เรียง', 'sid': 'diramino', 'zu': 'ihleliwe', 'ss': 'kuhlelekile', 'mk': 'Подредување', 'ro': 'sorted|sortat', 'lv': 'sakārtots', 'as': 'বৰ্গীকৰণ কৰি থোৱা', 'nn': 'sortert|sorted', 'es': 'ordenado', 'el': 'ταξινομημένα|sorted', 'dz': 'དབྱེ་སེལ་འབད་ཡོདཔ།', 'tn': 'bakantswe', 'cs': 'seřazeno', 'sl': 'razvrščeno', 'hi': 'छांटा हुआ', 'gu': 'ગોઠવાયેલ', 've': 'yo dzudzanywa', 'sd': 'वर्गीकृत केलेले', 'zh_TW': '排序|sorted', 'sat': 'साला आकान', 'bo': 'range_lookup', 'ru': 'отсортировано', 'nso': 'arogantšwe', 'bn_IN': 'বিন্যস্ত', 'uk': 'сортований', 'kmr_Latn': 'Rêzkirî', 'pt_BR': 'ordenado', 'bn': 'বিন্যস্ত', 'is': 'raðað', 'bs': 'sortirano', 'sa_IN': 'क्रमितम्', 'sw_TZ': 'i-liyopangwa', 'ks': 'ساٹ كرمُت', 'ast': 'ordenao', 'tr': 'sıralanmış', 'brx': 'थाखो खालाखानाय', 'mn': 'эрэмбэлэгдсэн', 'or': 'ସଜାହୋଇଥିବା', 'ja': '並び替える|ソート|sorted', 'cy': 'trefnwyd', 'nr': 'hleliwe', 'fa': 'مرتب\u200cشده', 'gl': 'ordenado', 'ar': 'افرز', 'oc': 'triat', 'zh_CN': '排序|sorted', 'eo': 'ordigita', 'ca_valencia': 'ordenat', 'ne': 'क्रमबद्व गरिएको', 'ca': 'ordenat', 'si': 'සුබෙදන ලදි', 'ts': 'xaxametiwile', 'uz': 'saralangan', 'mni': 'মথং-মনাও শেম্লবা'}, +'GROUP':{'lt': 'piešinys', 'sid': 'misile|mis', 'fi': 'kuva', 'ro': 'picture|pic|imagine', 'lv': 'attēls|att', 'kn': 'ಚಿತ್ರ|pic', 'hsb': 'wobraz|wb', 'tr': 'resim|res', 'es': 'imagen|img', 'el': 'εικόνα|εικ|picture|pic', 'hr': 'slika|slika', 'cs': 'obrázek|obr', 'de': 'bild', 'he': 'תמונה|תמ', 'nl': 'afbeelding|afb', 'hu': 'kép', 'ko': '사진|pic', 'zh_TW': '圖片|圖|圖組|picture|pic', 'mr': 'चित्र|पिक', 'ru': 'изображение|изо', 'sl': 'slika|sli', 'am': 'ስእል|ስእል', 'et': 'pilt', 'uk': 'зображення|зобр', 'pt_BR': 'agrupar|grupo|grp|figura', 'kk': 'сурет|сур', 'km': 'រូបភាព|pic', 'nb': 'bilde|fig|picture', 'bs': 'slika|pic', 'eu': 'irudia|irud', 'ast': 'figura|fig', 'gug': "ta'anga|img", 'oc': 'imatge|img', 'or': 'ଛବି|pic', 'ja': '図|図のグループ|picture|pic', 'nn': 'bilete|fig|picture', 'fr': 'image|ima', 'gl': 'imaxe|imx', 'ar': 'رسم|صور', 'en_US': 'picture|pic', 'sk': 'obrázok|obr', 'eo': 'bildo|b', 'ca_valencia': 'figura|fig', 'ca': 'figura|fig', 'zh_CN': '图片|图|图组|组|picture|pic|group'}, +'HIDETURTLE':{'lt': 'slėpk.vėžliuką|slėpkis|sl', 'sid': 'bukukaamamaaxi|bukukaamamaaxi|bm|anemaaxi', 'fi': 'piilotakonna|pk', 'ro': 'hideturtle|ht|hideme|invizibil', 'lv': 'slēpt_rupuci|sr|slēpt_mani', 'kn': 'ಆಮೆಅಡಗಿಸು|ht|ನನ್ನನ್ನುಅಡಗಿಸು', 'hsb': 'schować', 'tr': 'kaplumbağagizle|kg|gizlebeni', 'es': 'ocultartortuga|ot|ocultarme', 'el': 'απόκρυψηχελώνας|αχ|κρύψεμε|hideturtle|ht|hideme', 'hr': 'sakrikursor|sk|sakrijme', 'cs': 'skryjželvu|skryj|sž', 'de': 'verbergen', 'he': 'הסתרצב|להסתירצב|הסתרתהצב|להסתיראותי|הס', 'nl': 'verberg|vb', 'hu': 'elrejt|láthatatlan|elrejtteknőc|rejttek', 'ko': '거북이숨기기|ht|숨기기', 'zh_TW': '隱藏海龜|隱藏|hideturtle|ht|hideme', 'mr': 'हाइडटर्टल|ht|हाइडमि', 'ru': 'скрыть_черепаху|сч|скрыть_меня', 'sl': 'skrijželvo|sž|skrijme', 'am': 'ኤሊ መደበቂያ|ht|ይደብቁኝ', 'et': 'peida|peida_kilpkonn|pk', 'uk': 'сховай_черепашку|сч', 'pt_BR': 'desaparecerTat|dt|desapareçaTat|ocultarTat|escondeTat', 'kk': 'тасбақаны_жасыру|тж|мені_жасыру', 'br': 'kuzhatbaot|ht|hideme', 'nb': 'skjulmeg|sm|hideturtle', 'bs': 'sakrijkornjaču|ht|sakrijmene', 'eu': 'ezkutatudortoka|ed|ezkutatuni', 'ast': 'anubretortuga|anubrime|at', 'gug': 'mokañykarumbe|ñk|añeñomi', 'oc': 'amagartortuga|mt|amagar', 'or': 'କଇଁଛଲୁଚାଇବା|ht|hideme', 'ja': 'タートルを隠す|hideturtle|ht', 'nn': 'gøymmeg|gm|hideturtle', 'fr': 'cachetortue|ct|cachemoi', 'gl': 'agochartartaruga|at|agocharme', 'ar': 'أخف_السلحفاة|أخف', 'en_US': 'hideturtle|ht|hideme', 'sk': 'skrykorytnačku|skry|sk', 'eo': 'kaŝu_testudon|kt', 'ca_valencia': 'amaga.tortuga|oculta.tortuga|at|ot', 'ca': 'amaga.tortuga|oculta.tortuga|at|ot', 'zh_CN': '隐藏海龟|隐龟|隐藏龟|hideturtle|ht|hideme'}, +'PENWIDTH':{'lt': 'pieštuko.storis|linijos.storis|ps', 'sid': 'biiretebikka|biiretebaqo|xuruurubaqo|bb', 'fi': 'kynänleveys|kl', 'ro': 'pensize|penwidth|linewidth|ps|mărimestilou', 'lv': 'spalvas_izmērs|spalvas_platums|līnijas_platums|sp', 'kn': 'ಲೇಖನಿಗಾತ್ರ|ಲೇಖನಅಗಲ|ರೇಖೆಅಗಲ|ps', 'hsb': 'wulkosćpisaka|šěrokosćpisaka|šěrokosćlinije|wp|wl', 'tr': 'kalemboyutu|kalemgenişliği|satırgenişliği|kb', 'es': 'tamaño.lápiz|tl', 'el': 'μέγεθοςγραφίδας|πλάτοςγραφίδας|πλάτοςγραμμής|μγ|pensize|penwidth|linewidth|ps', 'hr': 'veličina olovke|širina olovke|širina linije|vo', 'cs': 'tloušťkapera|tloušťkačáry|tp', 'de': 'stiftbreite|linienbreite|sb|lb', 'he': 'גודלעט|עוביעט|רוחבעט|גע', 'nl': 'pengrootte|pendikte|penbreedte|pg', 'hu': 'tollvastagság|tollvastagság!|tv!?|vonalvastagság', 'ko': '펜크기|펜너비|선너비|ps', 'zh_TW': '筆大小|筆粗|線粗|pensize|penwidth|linewidth|ps', 'mr': 'पेनआकार|पेनरूंदी|रेघरूंदी|ps', 'ru': 'размер_пера|толщина_пера|толщина_линии|тл', 'sl': 'velikostperesa|širinaperesa|širinačrte|vp', 'am': 'የ ብዕር መጠን |የ ብዕር ስፋት |የ መስመር ስፋት |ps', 'et': 'pliiatsi_paksus|pliiatsi_jämedus|joonepaksus|joonelaius|jl', 'uk': 'розмір_пера|ширина_пера|ширина_лінії|рп', 'pt_BR': 'mudarEspessuraDoLápis|mEspLa', 'kk': 'қалам_өлшемі|қалам_жуандығы|сызық_жуандығы|сж', 'km': 'ទំហំ\u200bប៉ិក|penwidth|linewidth|ps', 'nb': 'pennstørrelse|pennbredde|linjebredde|ps', 'bs': 'veličinaolovke|širinaolovke|širinalinije|ps', 'eu': 'lumatamaina|lumazabalera|marrazabalera|lz', 'ast': 'llapiztamañu|llapizanchor|lliniaanchor|lt', 'gug': 'tamaño.bolígrafo|tb', 'or': 'ପେନଆକାର|ପେନଓସାର|ଧାଡ଼ିଓସାର|ps', 'mn': 'үзэгний өргөн|шугамын өргөн|үөр|шөр', 'ja': 'ペンの太さ|線の太さ|penwidth|ps', 'nn': 'pennstorleik|pennbreidd|linjebreidd|ps|pensize', 'fr': 'tailleplume|taillecrayon|largeurligne|ta', 'gl': 'estilotamaño|estilolargura|larguraliña|et', 'ar': 'حجم_القلم|عرض_القلم', 'en_US': 'pensize|penwidth|linewidth|ps', 'sk': 'hrúbkapera|hrúbkačiary|hp|hč', 'eo': 'plumlarĝo|plumgrando|pg', 'ca_valencia': 'mida.llapis|mida.línia|ml', 'ca': 'mida.llapis|mida.línia|ml', 'zh_CN': '笔大小|笔粗|线粗|pensize|penwidth|linewidth|ps'}, +'CLEARSCREEN':{'lt': 'valyk.vėžliuko.lauką|vvl', 'sid': 'coichaleelshalba|cl', 'fi': 'tyhjennänäyttö|tn', 'ro': 'clearscreen|cs|ștergeecran', 'lv': 'attīrīt_ekrānu|ae', 'kn': 'ತೆರೆಅಳಿಸು|cs', 'hsb': 'čisćić', 'tr': 'ekranıtemizle|cs', 'es': 'limpiar.pantalla|lp|cs', 'el': 'καθαρισμόςοθόνης|κο|clearscreen|cs', 'hr': 'očistizaslon|oz', 'cs': 'smažobrazovku|so', 'de': 'säubern', 'he': 'לנקותמסך|ניקוימסך|נקהמסך|נמ', 'nl': 'schermleegmaken|schoon|sl', 'hu': 'törölképernyő|törölkép|törölrajzlap|tr', 'ko': '화면지우기|cs', 'zh_TW': '清除畫面|清畫面|清除|clearscreen|cs', 'mr': 'क्लिअरस्क्रिन|cs', 'ru': 'очистить_экран|оэ', 'sl': 'počistizaslon|pz', 'am': 'መመልከቻ ማጽጃ|መ.ማ', 'et': 'puhasta_ekraan|pe', 'uk': 'очистити_екран|ое', 'pt_BR': 'tartaruga|tat', 'kk': 'экранды_тазарту|эт', 'br': 'skarzhañskramm|cs', 'is': 'hreinsaskjá|hs', 'km': 'សម្អាត\u200bអេក្រង់|cs', 'nb': 'tømskjermen|ts|clearscreen', 'bs': 'očistiekran|cs', 'eu': 'garbitupantaila|gp', 'ast': 'llimpiapantalla|lp', 'gug': 'monandipantalla|mp', 'or': 'ପରଦା ପରିଷ୍କାର|cs', 'ja': '画面を消す|clearscreen|cs', 'nn': 'tømskjermen|ts|clearscreen', 'fr': 'effaceécran|ee', 'gl': 'limparpantalla|lp', 'ar': 'محو_الشاشة|محو', 'en_US': 'clearscreen|cs', 'sk': 'zmažobrazovku|zo', 'eo': 'vakigi_ekranon|ek', 'ca_valencia': 'neteja.dibuix|inicia.dibuix|net|id', 'ca': 'neteja.dibuix|inicia.dibuix|net|id', 'zh_CN': '清屏|清除|clearscreen|cs'}, +'WHILE':{'lt': 'kol', 'sid': 'waajjo', 'fi': 'kunhan', 'ro': 'while|până', 'lv': 'kamēr', 'kn': 'ಬಿಳಿ', 'hsb': 'doniž', 'tr': 'beyaz', 'es': 'mientras', 'el': 'όσο|while', 'hr': 'bijela', 'cs': 'dokud', 'de': 'solange', 'he': 'כלעוד', 'nl': 'zolang', 'hu': 'amíg', 'hi': 'के दौरान', 'gu': 'સફેદ', 'ko': '흰색', 'zh_TW': '當|while', 'mr': 'व्हाइल', 'ru': 'пока', 'sl': 'dokler', 'bn_IN': 'যেখানে', 'am': 'ትንሽ', 'et': 'kuniks', 'uk': 'поки', 'pt_BR': 'enquanto', 'kk': 'дейін', 'te': 'జరుగుతున్నప్పుడు', 'br': 'e pad ma', 'is': 'meðan', 'nb': 'mens|while', 'bs': 'dok', 'eu': 'bitartean', 'pa_IN': 'ਚਿੱਟਾ', 'ast': 'mentanto', 'gug': 'jave', 'or': 'ଯେତେବେଳେ', 'ja': 'くりかえすのは次の間|while', 'nn': 'medan|while', 'fr': 'pendant', 'sq': 'ndërsa', 'gl': 'mentres', 'ar': 'طالما', 'en_US': 'while', 'sk': 'Biela', 'zh_CN': '当|while', 'eo': 'dum', 'ca_valencia': 'mentre', 'ne': 'सेतो', 'ca': 'mentre', 'si': 'සුදු', 'oc': 'mentre', 'ka': 'თეთრი'}, +'AQUA':{'lt': 'žydra', 'th': 'สีน้ำทะเล|สีฟ้าอมเขียว (Cyan)', 'sid': 'aqua|cyaan', 'fi': 'syaani', 'lv': 'gaišzils', 'kn': 'ನೀಲಿಹಸಿರು|ಹಸಿರುನೀಲಿ', 'hsb': 'akwamarinwoy|cyanowy', 'tr': 'gök mavisi', 'es': 'agua|cian', 'el': 'ανοιχτόγαλάζιο|aqua|cyan', 'hr': 'vodena|cijan', 'cs': 'azurová', 'sr_Latn': 'vodeno plava|cijan', 'he': 'ים|ציאן|מים', 'nl': 'water|cyaan', 'de': 'türkis|cyan', 'ko': '아쿠아|시안', 'zh_TW': '青藍|青|水藍|aqua|cyan', 'mr': 'ॲक्वा|सिअन', 'ru': 'голубой', 'sl': 'vodenomodra|cijanska', 'am': 'ዉሀ|አረንጓዴ', 'et': 'rohekassinine|tsüaan', 'uk': 'блакитний', 'pt_BR': 'ciano', 'kk': 'көгілдір', 'br': 'dour|cyan', 'is': 'blágrænt', 'bs': 'vodena|cyan', 'eu': 'ura|cyana', 'hu': 'ciánkék|cián', 'ast': 'agua|cian', 'gug': 'y|cian', 'or': 'ପାଣି|cyan', 'gd': 'aqcua|saidhean', 'ja': 'アクア|シアン|aqua', 'nn': 'cyanblå|cyan', 'nb': 'cyanblå|cyan', 'be': 'блакітны', 'gl': 'auga|ciano', 'ar': 'سماوي|سيان', 'en_US': 'aqua|cyan', 'sk': 'azúrová', 'sr': 'водено плава|цијан', 'zh_CN': '青|青色|aqua|cyan', 'eo': 'cejanblua', 'ca_valencia': 'cian', 'ca': 'cian', 'oc': 'aqua|cian'}, +'SOLID':{'lt': 'vientisas', 'th': 'ทึบ', 'sid': 'kaajjado', 'fi': 'yhtenäinen', 'ro': 'solid|continuu', 'lv': 'vienlaidu', 'kn': 'ಘನ', 'hsb': 'połny', 'tr': 'düz', 'es': 'sólido', 'el': 'συμπαγές|solid', 'hr': 'puno', 'cs': 'plná', 'de': 'voll', 'he': 'אחיד', 'nl': 'vol', 'hu': 'folyamatos', 'hi': 'ठोस', 'gu': 'ઘટ્ટ', 'ko': '단색', 'sd': 'ٺوس', 'zh_TW': '實線|solid', 'mr': 'गडद', 'sat': 'जिनिस', 'ru': 'сплошная', 'sl': 'polno', 'sa_IN': 'ठोस', 'bn_IN': 'নিরেট', 'am': 'ሙሉ', 'et': 'pidev', 'uk': 'суцільна', 'pt_BR': 'sólido', 'kk': 'бүтін', 'te': 'గట్టి', 'br': 'unvan', 'is': 'einlitt', 'km': 'តាន់', 'nb': 'ensfarget|solid', 'bs': 'čvrsto', 'eu': 'solidoa', 'cy': 'solet', 'pa_IN': 'ਗੂੜ੍ਹਾ', 'ast': 'sólidu', 'gug': 'hatã', 'vi': 'Đặc', 'as': 'কঠিন', 'gd': 'soladach', 'or': 'କଠିନ', 'ja': '実線|ふつうの線|solid', 'nn': 'einsfarga|solid', 'fr': 'plein', 'be': 'суцэльны', 'oc': 'plen', 'gl': 'sólido', 'ar': 'صلب', 'en_US': 'solid', 'sk': 'vyplnené', 'zh_CN': '实线|solid', 'eo': 'solida', 'ta': 'திடம்', 'ca_valencia': 'sòlid', 'ne': 'ठोस', 'ca': 'sòlid', 'ug': 'ئۇيۇل', 'ka': 'მყარი'}, +'ERR_NAME':{'lt': 'Nežinoma komanda: „%s“.', 'uk': 'Невідома назва: “%s”.', 'ja': '不明な名前: “%s”。', 'sr_Latn': 'Nepoznato ime: „%s“.', 'kk': 'Аты белгісіз: "%s".', 'fi': 'Tuntematon nimi: ”%s”.', 'ro': 'Nume necunoscut: „%s”.', 'fr': 'Nom inconnu : “%s”.', 'lv': 'Nezināms nosaukums: “%s”.', 'nn': 'Ukjend namn: «%s».', 'tr': 'Bilinmeyen ad: “%s”.', 'es': 'Nombre desconocido: «%s».', 'pt': 'Nome desconhecido: “%s”', 'el': 'Άγνωστο όνομα: “%s”.', 'bg': 'Непознато име: „%s“.', 'it': 'Nome sconosciuto: “%s”.', 'hr': 'Nepoznato ime: “%s”.', 'pt_BR': 'Nome desconhecido: “%s”', 'da': 'Ukendt navn: “%s”.', 'de': 'Unbekannter Name: „%s“.', 'gd': 'Ainm neo-aithnichte: “%s”.', 'cs': 'Neznámý název: „%s“.', 'sl': 'Neznano ime: “%s”.', 'hsb': 'Njeznate mjeno: “%s”.', 'eu': 'Izen ezezaguna: ‘%s”.', 'nb': 'Ukjent navn: «%s».', 'hu': 'Ismeretlen név: „%s”.', 'gl': 'Nome descoñecido: «%s».', 'id': 'Nama tak dikenal: "%s".', 'cy': 'Enw anhysbys: “%s”.', 'en_US': 'Unknown name: “%s”.', 'sk': 'Neznámy názov: „%s“.', 'sr': 'Непознато име: „%s“.', 'eo': 'Nekonata nomo: ‘%s”.', 'ca': 'Nom desconegut: «%s».', 'vec': 'Nome mìa conosesto: “%s”.', 'et': 'Tundmatu nimi: „%s”.', 'ru': 'Неизвестное имя: «%s».', 'be': 'Невядомая назва: “%s”.', 'zh_CN': '未知名称:“%s”。', 'am': 'ያልታወቀ ስም: “%s”.', 'nl': 'Onbekende naam: ‘%s”.'}, +'FONTCOLOR':{'lt': 'šrifto.spalva|teksto.spalva', 'sid': 'borangichukuula|borrotekuula|borrotekuulamme', 'fi': 'fontinväri', 'ro': 'fontcolor|textcolor|textcolour|culoarefont', 'lv': 'fonta_krāsa|teksta_krāsa', 'kn': 'ಅಕ್ಷರಶೈಲಿಬಣ್ಣ|ಪಠ್ಯಬಣ್ಣ|ಪಠ್ಯಬಣ್ಣ', 'hsb': 'pismowabarba|tekstowabarba|pb|tb', 'tr': 'yazıtipirengi|metinrengi|metinrengi', 'es': 'color.texto|color.letra', 'el': 'χρώμαγραμματοσειράς|χρώμακειμένου|fontcolor|textcolor|textcolour', 'hr': 'boja fonta|boja teksta|boja teksta', 'cs': 'barvapísma|barvatextu', 'de': 'schriftfarbe|textfarbe|schf|tf', 'he': 'צבעגופן|צבעפונט|צבעטקסט', 'nl': 'letterkleur|tekstkleur', 'hu': 'betűszín', 'ko': '글꼴색상|글자색상|글자색상', 'zh_TW': '字型顏色|文字顏色|字型色彩|文字色彩|字色|fontcolor|textcolor|textcolour', 'mr': 'फाँटरंग|मजकूररंग|मजकूररंग', 'ru': 'цвет_шрифта|цвет_текста', 'sl': 'barvapisave|barvačrk|barvabesedila', 'am': 'የ ፊደል ቀለም|የ ጽሁፍ ቀለም|የ ጽሁፍ ቀለም', 'et': 'fondi_värv|teksti_värv', 'uk': 'колір_символів|колір_тексту', 'pt_BR': 'mudarCorDaLetra|mCorLe', 'kk': 'қаріп_түсі|мәтін_түсі', 'km': 'ពណ៌\u200bពុម្ពអក្សរ|textcolor|textcolour', 'nb': 'tekstfarge|textcolor', 'bs': 'bojafonta|bojateksta|bojateksta', 'eu': 'letrakolorea|testukolorea', 'ast': 'colorlletra|colortestu', 'gug': "sa'y.moñe'ẽrã|sa'y.letra", 'or': 'ଅକ୍ଷରରୂପରଙ୍ଗ|ପାଠ୍ୟରଙ୍ଗ|textcolour', 'ja': '文字の色|fontcolor', 'nn': 'tekstfarge|textcolor', 'fr': 'couleurpolice|couleurtexte|ctexte', 'gl': 'cordeletra|cordetexto|cordetexto', 'ar': 'لون_الخط', 'en_US': 'fontcolor|textcolor|textcolour', 'sk': 'farbapísma|farbatextu|fp|ft', 'eo': 'tiparkoloro|tekstokoloro|tk', 'ca_valencia': 'color.lletra|color.text', 'ca': 'color.lletra|color.text', 'zh_CN': '文字颜色|字体颜色|字颜色|字色|fontcolor|textcolor|textcolour'}, +'ERR_KEY':{'lt': 'Nežinomas elementas: %s', 'sid': 'Afaminokki miila: %s', 'fi': 'Tuntematon elementti: %s', 'ro': 'Element necunoscut: %s', 'lv': 'Nezināms elements — %s', 'kn': 'ಗೊತ್ತಿರದ ಘಟಕ: %s', 'hsb': 'Njeznaty element: %s', 'tr': 'Bilinmeyen öge: %s', 'es': 'Elemento desconocido: %s', 'vec': 'Ełemento mìa conosesto: %s', 'el': 'Άγνωστο στοιχείο: %s', 'sv': 'Okänt element: %s', 'hr': 'Nepoznati element: %s', 'cs': 'Neznámý prvek: %s', 'sr_Latn': 'Nepoznati element: %s', 'pl': 'Nieznany element: %s', 'he': 'רכיב לא ידוע: %s', 'nl': 'Onbekend element %s', 'de': 'Unbekanntes Element: %s', 'hi': 'अज्ञात तत्व: %s', 'ml': 'അപരിചിതമായ എലമെന്റ്: %s', 'id': 'Elemen tak diketahui: %s', 'gu': 'અજ્ઞાત ઘટક: %s', 'ko': '알수 없는 요소: %s', 'zh_TW': '未知元素:%s', 'et': 'Tundmatu element: %s', 'ru': 'Неизвестный элемент: %s', 'sl': 'Neznan element: %s', 'bn_IN': 'অজানা স্বত্বা %s', 'am': 'ያልታወቀ አካል: %s', 'mr': 'अपरिचीत एलिमेंट: %s', 'uk': 'Невідомий елемент: %s', 'pt_BR': 'Elemento desconhecido: %s', 'kk': 'Белгісіз элемент: %s', 'te': 'తెలియని మూలకం: %s', 'br': 'Elfenn dianav : %s', 'is': 'Óþekkt stak: %s', 'km': 'មិន\u200bស្គាល់\u200bធាតុ៖ %s', 'nb': 'Ukjent element: %s', 'bg': 'Непознат елемент: %s', 'bs': 'Nepoznat element: %s', 'eu': 'Elementu ezezaguna: %s', 'hu': 'Ismeretlen elem: %s', 'cy': 'Elfen anhysbys: %s', 'ast': 'Elementu desconocíu: %s', 'it': 'Elemento sconosciuto: %s', 'gug': "Elemento ojekuaa'ỹva: %s", 'oc': 'Element desconegut : %s', 'da': 'Ukendt element: %s', 'as': 'অজ্ঞাত উপাদান: %s', 'gd': 'Eileamaid neo-aithnichte: %s', 'or': 'ଅଜଣା ଉପାଦାନ: %s', 'ja': '不明な要素: %s', 'nn': 'Ukjent element: %s', 'fr': 'Élément inconnu : %s', 'pt': 'Elemento desconhecido: %s', 'gl': 'Elemento descoñecido: %s', 'ar': 'عنصر مجهول: %s', 'en_US': 'Unknown element: %s', 'sk': 'Neznámy prvok: %s', 'sr': 'Непознати елемент: %s', 'zh_CN': '未知元素: %s', 'eo': 'Nekonata elemento: %s', 'ta': 'தெரியாத கூறு: %s', 'ca_valencia': "L'element «%s» no és conegut.", 'ga': 'Eilimint anaithnid: %s', 'ca': "L'element «%s» no és conegut.", 'be': 'Невядомы элемент: %s', 'ug': 'يوچۇن ئېلېمېنت: %s'}, +'INPUT':{'lt': 'įvesk', 'sid': 'eo', 'fi': 'syötä', 'ro': 'input|intrare', 'lv': 'ievade', 'kn': 'ಇನ್\u200cಪುಟ್\u200c', 'hsb': 'zapodaće', 'tr': 'girdi', 'es': 'entrada', 'el': 'είσοδος|input', 'hr': 'unos', 'cs': 'vstup', 'de': 'eingabe', 'he': 'קלט', 'nl': 'invoer', 'hu': 'be', 'hi': 'इनपुट', 'ml': 'ഇന്\u200dപുട്ട്', 'gu': 'ઈનપુટ', 'ko': '입력', 'sd': 'اِن پُٽ', 'zh_TW': '輸入|input', 'mr': 'इंपुट', 'sat': 'आदेर', 'ru': 'ввод', 'sl': 'vnos', 'bn_IN': 'ইনপুট', 'am': 'ማስገቢያ', 'et': 'sisend', 'uk': 'ввести', 'pt_BR': 'ler|leia', 'kk': 'кіріс', 'te': 'ఇన్పుట్', 'br': 'enankañ', 'is': 'inntak', 'km': '\u200bបញ្ចូល', 'nb': 'inndata|input', 'bs': 'ulaz', 'eu': 'sarrera', 'cy': 'mewnbwn', 'pa_IN': 'ਇੰਪੁੱਟ', 'ast': 'entrada', 'gug': 'jeikeha', 'vi': 'Nhập', 'or': 'ନିବେଶ', 'ja': '値を聞く|input', 'nn': 'inndata|input', 'fr': 'saisie', 'be': 'увод', 'gl': 'entrada', 'ar': 'أدخِل', 'en_US': 'input', 'sk': 'Vstup', 'zh_CN': '输入|input', 'eo': 'enigu', 'ta': 'உள்ளீடு', 'ca_valencia': 'entrada', 'ne': 'आगत', 'ca': 'entrada', 'si': 'ආදානය', 'dgo': 'इनपुट', 'oc': 'picada', 'ka': 'შეტანა'}, +'ITALIC':{'lt': 'kursyvas', 'sid': 'hawiitto-borro', 'fi': 'kursivointi', 'ro': 'italic|cursiv', 'lv': 'kursīvs', 'kn': 'ಇಟಾಲಿಕ್', 'hsb': 'kursiwny', 'tr': 'italik', 'es': 'cursiva', 'vec': 'corsivo', 'el': 'πλάγια|italic', 'hr': 'kurziv', 'cs': 'kurzíva', 'de': 'kursiv', 'pl': 'kursywa', 'he': 'נטוי', 'nl': 'cursief', 'hu': 'kurzív|dőlt', 'hi': 'तिरछा', 'ml': 'ചരിഞ്ഞ', 'gu': 'ઇટાલિક', 'my': 'စာလုံးစောင်း', 'ko': '이탤릭체', 'sd': 'اِٽيلڪ', 'zh_TW': '斜體|斜|italic', 'mr': 'तिरके', 'sat': 'कोचे ओलाक्', 'ru': 'курсив', 'sl': 'ležeče', 'sa_IN': 'इटेलिक', 'bn_IN': 'তির্যক', 'am': 'ማዝመሚያ', 'et': 'kaldkiri|kursiiv', 'uk': 'курсив', 'pt_BR': 'itálico', 'kk': 'курсив', 'te': 'వాలు', 'br': 'stouet', 'is': 'skáletrað', 'km': 'ទ្រេត', 'nb': 'kursiv|italic', 'bs': 'koso', 'eu': 'etzana', 'cy': 'italig', 'pa_IN': 'ਤਿਰਛੇ', 'ast': 'cursiva', 'gug': 'cursiva', 'vi': 'Nghiêng', 'as': 'ইতালিক', 'gd': 'eadailteach', 'or': 'ତେର୍ଚ୍ଛା', 'ja': '斜め|斜体|italic', 'nn': 'kursiv|italic', 'fr': 'italique', 'be': 'курсіў', 'oc': 'italica', 'gl': 'cursiva', 'ar': 'مائل', 'en_US': 'italic', 'sk': 'Kurzíva', 'zh_CN': '斜体|斜|italic', 'eo': 'kursiva', 'ta': 'சாய்வு', 'ca_valencia': 'cursiva|itàlica', 'ne': 'छड्के', 'ca': 'cursiva|itàlica', 'si': 'ඇල අකුරු', 'dgo': 'इटैलिक', 'ug': 'يانتۇ', 'ka': 'კურსივი'}, +'INVISIBLE':{'lt': 'nematoma', 'sid': 'leellannokkiha', 'fi': 'näkymätön', 'ro': 'invisible|invizibil', 'lv': 'neredzams', 'kn': 'ಅದೃಶ್ಯ', 'hsb': 'njewidźomny', 'tr': 'görünmez', 'el': 'αόρατο|invisible', 'hr': 'nevidljiv', 'cs': 'neviditelná', 'de': 'ohne', 'he': 'בלתי נראה', 'nl': 'onzichtbaar', 'hu': 'láthatatlan', 'hi': 'अदृश्य', 'ml': 'അദൃശ്യമായ', 'gu': 'અદ્ધશ્ય', 'ko': '숨김', 'zh_TW': '看不見|隱形|invisible', 'mr': 'अदृश्य', 'ru': 'невидимый', 'sl': 'nevidno', 'bn_IN': 'অদৃশ্য', 'am': 'የማይታይ', 'et': 'nähtamatu', 'uk': 'невидимий', 'pt_BR': 'invisível', 'kk': 'жасырын', 'te': 'అగోచరమైన', 'br': 'diwelus', 'is': 'ósýnilegt', 'km': 'មើល\u200bមិន\u200bឃើញ', 'bs': 'nevidljivo', 'eu': 'Ikusezina', 'cy': 'anweledig', 'pa_IN': 'ਅਦਿੱਖ', 'gug': 'nojekuaái', 'vi': 'Vô hình', 'as': 'অদৃশ্য', 'gd': 'do-fhaicsinneach', 'or': 'ଅଦୃଶ୍ଯ', 'ja': '見えない|不可視|invisible', 'nn': 'usynleg|invisible', 'nb': 'usynlig|invisible', 'be': 'нябачны', 'sq': 'i padukshëm', 'gl': 'invisíbel', 'ar': 'مخفي', 'en_US': 'invisible', 'sk': 'Neviditeľná', 'zh_CN': '看不见|不可见|invisible', 'eo': 'nevidebla', 'ta': 'தென்படாத', 'ne': 'अदृश्य', 'si': 'අදිසි', 'my': 'မမြင်နိုင်သော', 'ka': 'უხილავი'}, +'PAGESIZE':{'lt': 'lapo.kampas', 'sid': 'qoolubikka', 'fi': 'sivukoko', 'ro': 'pagesize|mărimepagină', 'lv': 'lappuses_izmērs', 'kn': 'ಪುಟದಗಾತ್ರ', 'hsb': 'wulkosćstrony|ws', 'tr': 'sayfa boyutu', 'es': 'tamañopágina', 'el': 'μέγεθοςσελίδας|pagesize', 'hr': 'veličinastranice', 'cs': 'velikoststránky', 'de': 'seite', 'he': 'גודלעמוד', 'nl': 'paginagrootte', 'hu': 'oldalméret', 'ml': 'താള്\u200dവ്യാപ്തി', 'gu': 'પાનાંમાપ', 'ko': '페이지크기', 'zh_TW': '頁面大小|紙張大小|頁大小|紙大小|pagesize', 'mr': 'पेजसाइज', 'ru': 'размер_страницы', 'sl': 'velikoststrani', 'bn_IN': 'কাগজের মাপ', 'am': 'የ ገጽ መጠን', 'et': 'lehe_suurus', 'uk': 'розмір_сторінки', 'pt_BR': 'tamanhoDaPágina|tamPág', 'kk': 'бет_өлшемі', 'te': 'పేజీపరిమాణం', 'br': 'ment ar bajenn', 'km': 'ទំហំ\u200bទំព័រ', 'nb': 'sidestørrelse|pagesize', 'bs': 'veličinastranice', 'eu': 'orritamaina', 'ast': 'tamañupaxina', 'gug': 'tamañorogue', 'or': 'ପୃଷ୍ଠା ଆକାର', 'ja': 'ページサイズ|pagesize', 'nn': 'sidestorleik|pagesize', 'fr': 'taillepage', 'be': 'памеры_старонкі', 'gl': 'tamaño da páxina', 'ar': 'حجم_الصفحة', 'en_US': 'pagesize', 'sk': 'veľkosťstránky|vs', 'zh_CN': '页面大小|纸张大小|纸大小|页大小|pagesize', 'eo': 'paĝogrando', 'ca_valencia': 'mida.pàgina|mp', 'ca': 'mida.pàgina|mp', 'oc': 'talhapagina'}, +'SET':{'lt': 'parink', 'sid': 'qineessi', 'fi': 'joukko', 'lv': 'iestatīt', 'hsb': 'mnohosć', 'tr': 'ayarla', 'es': 'conjunto', 'el': 'σύνολο|set', 'hr': 'skup', 'cs': 'množina', 'de': 'menge', 'he': 'קבוצה', 'nl': 'set|instellen', 'hu': 'halmaz', 'gu': 'સુયોજન', 'ko': '설정', 'sd': 'سيٽ', 'zh_TW': '集合|set', 'mr': 'सेट', 'sat': 'साजाव', 'ru': 'установить', 'sl': 'množica', 'bn_IN': 'সেট', 'am': 'ማሰናጃ', 'et': 'hulk', 'uk': 'встановити', 'pt_BR': 'conjunto', 'kk': 'орнату', 'br': 'arventenn', 'km': 'កំណត់', 'is': 'setja', 'nb': 'sett|set', 'kok': 'संचSonch', 'bs': 'postavi', 'eu': 'ezarri', 'ast': 'establecer', 'gug': 'aty', 'or': 'ସେଟ', 'ja': '同じ値を一つに|集合に|集合|set', 'sa_IN': 'सॆट', 'fr': 'fixe', 'gl': 'estabelecer', 'ar': 'مصفوفة', 'en_US': 'set', 'sk': 'množina', 'eo': 'aro', 'ca_valencia': 'conjunt', 'ca': 'conjunt', 'dgo': 'सैट्ट करो', 'zh_CN': '集合|set'}, +'CM':{'th': 'ซม.', 'uk': 'см', 'mk': 'см', 'kk': 'см', 'bn': 'সেমি', 'is': 'sm', 'tg': 'см', 'km': 'ស.ម.', 'kok': 'सेंमी', 'kn': 'ಸೆಂ.ಮಿ', 'sw_TZ': 'sm', 'ks': 'سینٹی میٹر', 'nr': 'i-cm', 'el': 'εκατοστά|cm', 'dz': 'སི་ཨེམ', 'as': 'ছে.মি.', 'mn': 'см', 'ru': 'см', 'or': 'ସେଣ୍ଟିମିଟର', 'he': 'ס"מ|ס״מ', 'be': 'см', 'zh_CN': '厘米|cm', 'hi': 'सेमी', 'ml': 'സിമി', 'st': 'sm', 'ar': 'سم', 'om': 'sm', 'en_US': 'cm', 'my': 'စင်တီမီတာ', 'bn_IN': 'সেমি', 'ta': 'செ.மீ', 'tt': 'см', 'ne': 'सेन्टिमिटर', 'zh_TW': '公分|cm', 'dgo': 'सैं.मी.', 'uz': 'sm', 'bo': 'ལིའི་སྨི།', 'mai': 'सेमी', 'ja': 'センチ|センチメートル|cm', 'mni': 'সে.মি.', 'ug': 'سانتىمېتىر', 'am': 'ሴ/ሚ', 'ka': 'სმ'}, +'TURNRIGHT':{'lt': 'dešinėn|dš', 'th': 'ขวา|เลี้ยวขวา|rt', 'sid': 'qiniite|qiniitiraqoli|qt', 'fi': 'oikealle|oik', 'ro': 'right|turnright|rt|dreapta', 'lv': 'pa_labi|labi|gl', 'kn': 'ಬಲ|ಬಲಕ್ಕೆ ತಿರುಗಿಸು|rt', 'hsb': 'naprawo|np', 'tr': 'sağ|sağadön|sğ', 'es': 'derecha|giraderecha|de|gd', 'el': 'δεξιά|στροφήδεξιά|δξ|right|turnright|rt', 'hr': 'desno|okreni desno|de', 'cs': 'vpravo|vp', 'de': 'rechts|re', 'he': 'ימינה|לפנותימינה|פנייהימינה|ימ', 'nl': 'rechts|rechtsaf|rs', 'hu': 'jobbra|j', 'ko': '오른쪽|오른쪽으로회전|rt', 'zh_TW': '右|右轉|right|turnright|rt', 'mr': 'उजवी|उजवीकडे वळा|rt', 'ru': 'вправо|поворот_направо|п', 'sl': 'desno|obrnidesno|ds', 'am': 'ቀኝ|ወደ ቀኝ ማዟሪያ|ወደ ቀኝ', 'et': 'paremale|parempööre|p', 'uk': 'праворуч|поворот_праворуч|пр', 'pt_BR': 'paraDireita|pd|girarDireita|giraDireita', 'kk': 'оңға|оңға_бұрылу|о', 'br': 'dehou|trotudehou|de', 'km': 'ស្ដាំ|turnright|rt', 'nb': 'høyre|snu høyre|hg', 'bs': 'desno|skrenidesno|rt', 'eu': 'eskuina|eskuinera|esk', 'ast': 'drecha|xiradrecha|xd', 'gug': 'akatúa|jereakatúa|ak', 'or': 'ଡ଼ାହାଣ|ଡ଼ାହାଣକୁ ଯାଆନ୍ତୁ|rt', 'ja': '右|右に曲がる|right|turnright|rt', 'nn': 'høgre|snu høgre|hg|right', 'fr': 'droite|tournedroite|dr', 'be': 'управа|паварот_управа|пр', 'sq': 'djathtas|kthehudjathtas|rt', 'gl': 'dereita|voltadereita|rt', 'ar': 'لليمين', 'en_US': 'right|turnright|rt', 'sk': 'vpravo|vp', 'zh_CN': '右|右转|right|turnright|rt', 'eo': 'dekstren|turnu_dekstren|dt', 'ca_valencia': 'dreta|giradreta|gira.dreta|gd', 'ca': 'dreta|giradreta|gira.dreta|gd', 'oc': 'dreita|virardreita|de'}, +'IF':{'lt': 'jeigu.tiesa', 'sid': 'ikkiro', 'fi': 'jos', 'ro': 'if|dacă', 'lv': 'ja', 'kn': 'ಇದು ಆದಲ್ಲಿ', 'nn': 'dersom|viss|if', 'tr': 'eğer', 'es': 'si', 'el': 'αν|if', 'hr': 'ako', 'cs': 'když', 'de': 'wenn', 'he': 'אם', 'nl': 'als', 'hu': 'ha', 'hi': 'यदि', 'ml': 'എങ്കില്\u200d', 'gu': 'જો', 'zh_TW': '若|if', 'mr': 'इफ', 'sat': 'IF', 'ru': 'если', 'sl': 'če', 'sa_IN': 'IF', 'bn_IN': 'যদি', 'am': 'ከ', 'et': 'kui', 'uk': 'якщо', 'pt_BR': 'se', 'kk': 'егер', 'te': 'ఒకవేళ', 'br': 'mar', 'is': 'ef', 'nb': 'dersom|hvis|if', 'kok': 'IF', 'bs': 'ako', 'eu': 'bada', 'ast': 'si', 'gug': 'si', 'or': 'ଯଦି', 'ja': 'もし|if', 'hsb': 'jeli', 'fr': 'si', 'gl': 'se', 'ar': 'إن', 'en_US': 'if', 'sk': 'ak', 'zh_CN': '如果|若|if', 'eo': 'se', 'ca_valencia': 'si', 'ca': 'si', 'dgo': 'IF', 'oc': 'se'}, +'RIGHTSTRING':{'lt': '“|”|’', 'hsb': '“|‘|"|\'', 'hu': '”', 'fi': '"|\'|”', 'en_US': '”|’', 'sk': '“|"', 'nn': '”|’|»', 'es': '”|’|»', 'el': '”|’|"|\'', 'et': '”|“', 'zh_TW': '」|』|”|’', 'cs': '“|"', 'de': '“|‘|"|\'', 'zh_CN': '」|』|”|’'}, +'STR':{'lt': 'teksto.eilutė|te', 'uk': 'рядок', 'kk': 'жол', 'fi': 'mjono', 'br': 'hedad', 'lv': 'virkne', 'hsb': 'znamješka', 'be': 'радок', 'el': 'συμβολοσειρά|str', 'tr': 'dizi', 'cs': 'řetězec', 'de': 'zeichen', 'he': 'מחרוזת', 'fr': 'car', 'hu': 'karakterlánc|lánc', 'ar': 'سلسلة', 'en_US': 'str', 'sk': 'reťazec', 'eo': 'ĉeno', 'zh_TW': '字串|str', 'et': 'sõne|string', 'ru': 'строка', 'sl': 'niz', 'zh_CN': '字串|字符串|str', 'ja': '文字列|文字列に|str', 'mr': 'स्ट्रिंग'}, +'COUNT':{'lt': 'kiek', 'th': 'นับ', 'sid': 'kiiri', 'fi': 'lukumäärä', 'mk': 'Број', 'ro': 'count|contor', 'pa_IN': 'ਗਿਣਤੀ', 'kn': 'ಎಣಿಕೆ', 'hsb': 'ličić', 'tr': 'sayım', 'es': 'conteo', 'el': 'πλήθος|count', 'dz': 'གྱངས་ཁ་རྐྱབས།', 'hr': 'brojanje', 'cs': 'počet', 'de': 'zähle', 'mn': 'тоо хэмжээ', 'he': 'ספירה', 'nl': 'Aantal', 'hu': 'darab|db|elemszám', 'hi': 'गिनती', 'brx': 'साननाय', 'gu': 'ગણતરી', 'sl': 'preštej', 'ko': '수', 'br': 'Niver', 'zh_TW': '計數|count', 'mr': 'काउंट', 'sat': 'लेखाक्', 'mai': 'गिनती', 'rw': 'kubara', 'sa_IN': 'गणना', 'oc': 'nb_decimalas', 'am': 'መቁጠሪያ', 'et': 'loenda', 'uk': 'кількість', 'kmr_Latn': 'Bihijmêre', 'pt_BR': 'contagem', 'kk': 'саны', 'te': 'లెక్క', 'af': 'telling', 'is': 'fjöldi', 'tg': 'Шумора', 'km': 'ចំនួន', 'nb': 'tell|count', 'kok': 'गणन', 'bs': 'mjesta', 'eu': 'zenbaketa', 'sw_TZ': 'hesabu', 'ks': 'شمار', 'cy': 'cyfrif', 'lv': 'skaits', 'ast': 'contéu', 'gug': 'econta', 'vi': 'đếm', 'lo': 'ນັບ', 'as': 'গণনা', 'gd': 'cunntas', 'ru': 'количество', 'or': 'ଗଣନା', 'ja': '文字数|持っている数|count', 'nn': 'tel|plassar|count', 'fr': 'compte', 'sq': 'numëro', 'ml': 'എണ്ണം', 'gl': 'decimais', 'ar': 'عُدّ', 'om': "baay'ina", 'en_US': 'count', 'sk': 'počet', 'zh_CN': '计数|count', 'eo': 'nombru', 'ta': 'எண்ணிக்கை', 'ca_valencia': 'compte', 'ne': 'गणना', 'ca': 'compte', 'si': 'ගණන් කරන්න', 'dgo': 'गिनतरी', 'uz': 'Miqdor', 'mni': 'মশিং থীয়ু', 'my': 'ရေတွက်ပါ', 'ka': 'თვლა'}, +'UPRIGHT':{'lt': 'įprastinis', 'sid': 'aliqiniitira|rosaminoha', 'fi': 'pysty', 'ro': 'upright|normal|înpicioare', 'lv': 'taisns|normāls', 'kn': 'ನೆಟ್ಟಗೆ|ಸಾಮಾನ್ಯ', 'hsb': 'normalny', 'tr': 'üstsağ|normal', 'es': 'normal', 'el': 'όρθιο|κανονικό|upright|normal', 'hr': 'uspravan|normalan', 'cs': 'normální', 'de': 'normal', 'he': 'רגיל|עומד', 'nl': 'rechtop|normaal', 'hu': 'álló|normál', 'ko': '우상단|일반', 'zh_TW': '正體|正|一般|upright|normal', 'mr': 'उभे|सामान्य', 'ru': 'прямой|обычный', 'sl': 'pokonci|navadno', 'am': 'ቀጥተኛ|መደበኛ', 'et': 'püstine|tavaline', 'uk': 'прямий|звичайний', 'pt_BR': 'vertical', 'kk': 'тура|қалыпты', 'br': 'a-serzh|normal', 'is': 'upprétt|venjulegt', 'km': 'ស្ដាំ|ធម្មតា', 'nb': 'stående|normal', 'bs': 'goredesno|normalno', 'eu': 'tente|normala', 'ast': 'normal', 'gug': 'normal', 'or': 'ଡ଼ାହାଣପାଖ ଉପର|normal', 'ja': 'ふつう|標準|upright', 'nn': 'normal|upright', 'fr': 'hautdroit|normal', 'gl': 'vertical|normal', 'ar': 'معتدل|عادي', 'en_US': 'upright|normal', 'sk': 'normálne|no', 'eo': 'rekta|vertikala|normala', 'ca_valencia': 'vertical|normal', 'ca': 'vertical|normal', 'zh_CN': '正体|正|一般|upright|normal'}, +'PRINT':{'lt': 'spausdink|spd|rašyk', 'sid': 'attami', 'fi': 'tulosta', 'ro': 'print|afișează', 'lv': 'drukāt', 'kn': 'ಮುದ್ರಿಸು', 'hsb': 'ćišćeć', 'tr': 'yazdır', 'es': 'imprimir|escribir', 'el': 'τύπωσε|print', 'hr': 'ispis', 'cs': 'piš', 'de': 'ausgabe', 'he': 'הדפסה', 'nl': 'afdrukken', 'hu': 'ki|kiír', 'hi': 'छापें', 'ml': 'പ്രിന്റ് ചെയ്യുക', 'gu': 'છાપો', 'ko': '인쇄', 'zh_TW': '印出|print', 'mr': 'प्रिंट', 'ru': 'печать', 'sl': 'izpiši', 'bn_IN': 'মুদ্রণ', 'am': 'ማተሚያ', 'et': 'kirjuta|prindi', 'uk': 'друк', 'pt_BR': 'escrever|esc|escreva', 'kk': 'баспа', 'te': 'ముద్రణ', 'br': 'moullañ', 'is': 'prenta', 'km': 'បោះ\u200b\u200bពុម្ព\u200b', 'nb': 'skriv ut|skriv|print', 'bs': 'štampaj', 'eu': 'inprimatu', 'cy': 'argraffu', 'pa_IN': 'ਛਾਪੋ', 'ast': 'imprentar', 'gug': 'imprimir', 'vi': 'In', 'or': 'ମୁଦ୍ରଣ', 'gd': 'clò-bhuail', 'ja': '表示|print', 'nn': 'skriv ut|skriv|print', 'fr': 'écris', 'be': 'друк', 'oc': 'imprimir', 'gl': 'imprimir', 'ar': 'اطبع', 'en_US': 'print', 'sk': 'Tlač', 'zh_CN': '打印|印出|print', 'eo': 'presu|p', 'ta': 'அச்சிடு', 'ca_valencia': 'imprimeix', 'ne': 'मुद्रण गर्नुहोस्', 'ca': 'imprimeix', 'si': 'මුද්\u200dරණය කරන්න', 'my': 'ပရင့်ထုတ်ပါ', 'ka': 'ბეჭდვა'}, +'RESEARCH':{'lt': 'ieškok', 'sid': 'hasi', 'fi': 'etsi', 'ro': 'search|caută', 'lv': 'meklēt', 'kn': 'ಹುಡುಕು', 'hsb': 'pytać', 'tr': 'ara', 'es': 'buscar', 'el': 'αναζήτηση|search', 'hr': 'pretraživanje', 'cs': 'hledej', 'de': 'suche', 'he': 'חיפוש', 'nl': 'zoeken', 'hu': 'keres', 'hi': 'खोजें', 'ml': 'തെരയുക', 'gu': 'શોધો', 'ko': '검색', 'zh_TW': '搜尋|search', 'mr': 'शोधा', 'ru': 'найти', 'sl': 'išči', 'bn_IN': 'অনুসন্ধান', 'am': 'መፈለጊያ', 'et': 'otsi', 'uk': 'знайти', 'pt_BR': 'pesquisa', 'kk': 'іздеу', 'te': 'వెతుకు', 'br': 'klask', 'is': 'leita', 'km': 'ស្វែងរក\u200b', 'nb': 'søk|finn|search', 'bs': 'traži', 'eu': 'bilatu', 'cy': 'chwilio', 'pa_IN': 'ਲੱਭੋ', 'ast': 'guetar', 'gug': 'heka', 'vi': 'Tìm', 'as': 'সন্ধান কৰক', 'or': 'ଖୋଜନ୍ତୁ', 'ja': '探す|みつける|検索|search', 'nn': 'søk|finn|search', 'fr': 'recherche', 'be': 'знайсці', 'sq': 'kërko', 'oc': 'recercar', 'gl': 'buscar', 'ar': 'ابحث', 'en_US': 'search', 'sk': 'Hľadať', 'zh_CN': '查找|搜索|search', 'eo': 'serĉu', 'ta': 'தேடு', 'ca_valencia': 'cerca', 'ne': 'खोज गर्नुहोस्', 'ca': 'cerca', 'my': 'ရှာဖွေပါ'}, +'OLIVE':{'lt': 'alyvuogių', 'sid': 'ejersa', 'fi': 'oliivi', 'lv': 'olīvu', 'kn': 'ಆಲಿವ್', 'hsb': 'oliwozeleny', 'tr': 'zeytin yeşili', 'es': 'oliva', 'vec': 'ołiva', 'el': 'λαδί|olive', 'hr': 'maslinasta', 'cs': 'olivová', 'sr_Latn': 'maslinasta', 'he': 'ירוקזית', 'nl': 'olijfgroen', 'de': 'dunkelgrün', 'hi': 'जैतून', 'ml': 'ഒലീവ്', 'gu': 'ઓલિવ', 'ko': '올리브', 'zh_TW': '橄欖綠|黃綠|olive', 'mr': 'ऑलिव्ह', 'ru': 'оливковый', 'sl': 'olivnozelena', 'bn_IN': 'জলপাই রং', 'am': 'ወይራ', 'et': 'kollakasroheline|oliivroheline|oliivikarva', 'uk': 'оливковий', 'pt_BR': 'oliva', 'kk': 'зәйтүн', 'te': 'ఆలివ్', 'br': 'olivez', 'is': 'ólífugrænt', 'km': 'អូលីវ', 'bs': 'maslinasta', 'eu': 'oliba', 'hu': 'olajzöld', 'cy': 'olewydden', 'ast': 'oliva', 'gug': 'oliva', 'as': 'জলফাই', 'gd': 'donn-uaine', 'or': 'ଓଲିଭ', 'ja': '柿色|オリーブ色|olive', 'nn': 'olivengrøn|olive', 'nb': 'olivengrønn|olive', 'be': 'аліўкавы', 'gl': 'oliva', 'ar': 'زيتوني', 'en_US': 'olive', 'sk': 'olivová', 'sr': 'маслинаста', 'zh_CN': '橄榄绿|黄绿|olive', 'eo': 'oliva', 'ta': 'ஆலிவ்', 'ca_valencia': 'oliva|verd.oliva', 'ca': 'oliva|verd.oliva', 'oc': 'oliva'}, +'MIN':{'lt': 'min.|minimumas', 'sid': 'shiima', 'pt_BR': 'mínimo|mín', 'kk': 'мин', 'te': 'కనిష్ట', 'br': 'izek', 'is': 'lágm', 'sat': 'कोम उता़र, (~c)', 'km': 'នាទី', 'uk': 'мін', 'kok': 'किमान (~c)Konixtt (~c)', 'kn': 'ಕನಿಷ್ಟ', 'sa_IN': 'कम ख्तॆ कम', 'ja': 'いちばん小さな数|最小値|最小|min', 'el': 'ελάχιστο|min', 'or': 'ସର୍ବନିମ୍ନ', 'gd': 'as lugha', 'sl': 'najmanj', 'cy': 'mun', 'be': 'мін', 'ar': 'الأدنى', 'gu': 'ન્યૂનત્તમ', 'en_US': 'min', 'fi': 'pienin', 'zh_CN': '最小值|最小|min', 'sd': 'گهٽِ ۾ گهٽ', 'ca_valencia': 'mín|min', 'zh_TW': '最小值|最小|min', 'mr': 'मिन', 'dgo': 'घट्टोघट्ट', 'ru': 'мин', 'he': 'מזערי', 'bn_IN': 'সর্বনিম্ন', 'am': 'አነስተኛ', 'ca': 'mín|min'}, +'TRUE':{'lt': 'tiesa', 'th': 'จริง', 'sid': 'halaale', 'fi': 'tosi', 'ro': 'true|adevărat', 'lv': 'patiess', 'kn': 'ಸತ್ಯ', 'hsb': 'wěrny', 'tr': 'doğru', 'es': 'verdadero', 'el': 'αληθής|true', 'hr': 'točno', 'cs': 'pravda', 'de': 'wahr', 'he': 'אמת', 'nl': 'waar', 'hu': 'igaz', 'hi': 'सही', 'gu': 'સાચુ', 'my': 'အမှန်', 'ko': '참', 'br': 'gwir', 'zh_TW': '真|true', 'mr': 'ट्रु', 'ru': 'истина', 'sl': 'jeresnično', 'bn_IN': 'সত্য', 'am': 'እውነት', 'et': 'tõene', 'uk': 'істина', 'kmr_Latn': 'rast e', 'pt_BR': 'verdadeiro|verd', 'kk': 'ақиқат', 'te': 'సత్యము', 'af': 'waar', 'is': 'satt', 'tg': 'саҳеҳ', 'km': 'ពិត', 'nb': 'sann|true', 'eu': 'egiazkoa', 'cy': 'gwir', 'pa_IN': 'ਸਹੀਂ', 'ast': 'braero', 'gug': 'ete', 'vi': 'đúng', 'as': 'সঁচা', 'ja': '真|なりたつ|true', 'nn': 'sann|true', 'fr': 'vrai', 'bn': 'সত্য', 'oc': 'verai', 'gl': 'verdadeiro', 'ar': 'صحيح', 'om': 'dhugaa', 'ug': 'راست', 'sk': 'pravda', 'zh_CN': '真|true', 'eo': 'vera', 'ta': 'உண்மை', 'ca_valencia': 'cert|veritat', 'ne': 'सत्य', 'ca': 'cert|veritat', 'si': 'සත්\u200dය', 'en_US': 'true', 'ka': 'ჭეშმარიტი'}, +'AND':{'fi': 'ja', 'kn': 'ಮತ್ತು', 'xh': 'kunye', 'hr': 'i', 'de': 'und', 'he': 'וגם', 'nl': 'en', 'hu': 'és', 'st': 'le', 'ko': '및', 'mr': 'अँड', 'mai': 'आओर', 'am': 'እና', 'et': 'ja', 'kk': 'және', 'te': 'మరియు', 'af': 'en', 'tg': 'ва', 'km': 'និង', 'fr': 'et', 'kok': 'आनिक', 'eu': 'eta', 'lv': 'un', 'gug': 'ha', 'vi': 'và', 'gd': 'agus', 'rw': 'na', 'nn': 'og|and', 'nb': 'og|and', 'sq': 'dhe', 'om': 'fi', 'ug': 'ۋە', 'sk': 'a', 'br': 'ha', 'en_US': 'and', 'lt': 'kiekvienas', 'th': 'และ', 'sid': 'nna', 'zu': 'kanye', 'ss': 'ne', 'ro': 'and|și', 'pa_IN': 'ਅਤੇ', 'hsb': 'a', 'es': 'y', 'el': 'και|and', 'dz': 'དང་།', 'tn': 'le', 'cs': 'azároveň|az', 'sl': 'in', 'hi': 'और', 'gu': 'અને', 've': 'na', 'or': 'ଏବଂ', 'sd': '۽', 'zh_TW': '且|and', 'sat': 'आर आर', 'ru': 'и', 'nso': 'le', 'bn_IN': 'এবং', 'uk': 'та', 'kmr_Latn': 'û', 'pt_BR': 'e', 'tt': 'һәм', 'bn': 'এবং', 'is': 'og', 'bs': 'i', 'sa_IN': 'च', 'sw_TZ': 'na', 'ks': 'بےیئ', 'my': 'နှင့်', 'ast': 'y', 'tr': 've', 'brx': 'आरो', 'mn': 'ба', 'lb': 'an', 'ja': 'と|かつ|and', 'cy': 'a', 'fa': 'و', 'gl': 'e', 'ar': 'و', 'oc': 'e', 'zh_CN': '且|与|and', 'eo': 'kaj', 'ca_valencia': 'i', 'ne': 'र', 'ca': 'i', 'si': 'සහ', 'uz': 'va', 'ka': 'და'}, +'PENSTYLE':{'lt': 'pieštuko.stilius|linijos.stilius', 'th': 'กระบวนแบบปากกา|กระบวนแบบเส้น', 'sid': 'biireteakata|xuruuruakata', 'fi': 'kynäntyyli', 'ro': 'penstyle|linestyle|stilstilou', 'lv': 'spalvas_stils|līnijas_stils', 'kn': 'ಲೇಖನಿಶೈಲಿ|ಗೆರೆಶೈಲಿ', 'hsb': 'stilpisaka|linijowystil|sp|ls', 'tr': 'kalembiçemi|satırbiçemi', 'es': 'estilopluma|estilolínea', 'el': 'μορφήγραφίδας|μορφήγραμμής|penstyle|linestyle', 'hr': 'stil olovke|stil linije', 'cs': 'druhpera|druhčáry', 'de': 'stiftstil|linienstil|ss|ls', 'he': 'סגנוןעט|סגנוןקו', 'nl': 'penstijl|lijnstijl|lijnopmaak', 'hu': 'tollstílus|vonalstílus', 'ko': '펜스타일|선스타일', 'zh_TW': '筆樣式|線樣式|penstyle|linestyle', 'mr': 'पेनशैली|रेघशैली', 'ru': 'стиль_пера|стиль_линии', 'sl': 'slogperesa|slogčrte', 'am': 'የብዕር ዘዴ |የ መስመር ዘዴ', 'et': 'pliiatsi_stiil|joonestiil', 'uk': 'стиль_пера|стиль_лінії', 'pt_BR': 'mudarEstiloDoLápis|mEstLa', 'kk': 'қалам_стилі|сызық_стилі', 'km': 'រចនាប័ទ្ម\u200bប៉ិក|linestyle', 'nb': 'pennstil|linjestil', 'bs': 'stilolovke|stillinije', 'eu': 'lumaestiloa|marraestiloa', 'pa_IN': 'ਪੈੱਨ ਸਟਾਈਲ|ਲਾਈਨ ਸਟਾਈਲ', 'ast': 'llapizestilu|lliniaestilu|le', 'gug': 'tipobolígrafo|estilolínea', 'or': 'ପେନଶୈଳୀ|linestyle', 'mn': 'үзэгний загвар|шугамын загвар|үз|шз', 'ja': 'ペンの種類|線の種類|penstyle', 'nn': 'pennstil|linjestil|penstyle', 'fr': 'stylecrayon|styleligne', 'gl': 'estiloestilo|estiloliña', 'ar': 'نمط_القلم', 'en_US': 'penstyle|linestyle', 'sk': 'štýlpera|štýlčiary|šp|šč', 'eo': 'plumstilo|linistilo', 'ca_valencia': 'estil.llapis|estil.línia|el', 'ca': 'estil.llapis|estil.línia|el', 'zh_CN': '笔型|线型|笔样式|线样式|penstyle|linestyle'}, +'LIME':{'lt': 'citrininė', 'sid': 'boloticho', 'fi': 'limetti', 'lv': 'neonzaļš', 'kn': 'ಸಮಯ', 'hsb': 'swětłozeleny', 'tr': 'sarımsı yeşil', 'es': 'lima', 'el': 'ανοιχτοπράσινο|lime', 'hr': 'limun-žuta', 'cs': 'žlutozelená', 'sr_Latn': 'svetlo zelena', 'he': 'ליים', 'nl': 'limoen', 'de': 'hellgrün', 'hi': 'समय', 'ml': 'നാരങ്ങ', 'gu': 'લીંબુ', 'ko': '라임', 'zh_TW': '萊姆綠|亮綠|lime', 'mr': 'वेळ', 'ru': 'лимонный', 'sl': 'limetna', 'bn_IN': 'সময়', 'am': 'ሎሚ', 'et': 'laimiroheline|laimikarva', 'uk': 'лайм', 'pt_BR': 'lima', 'kk': 'ашық жасыл', 'te': 'నిమ్మరంగు', 'br': 'sitroñs', 'is': 'límónugrænt', 'km': 'បៃតង', 'nb': 'grasgrønn|lime', 'eu': 'lima', 'hu': 'világoszöld', 'cy': 'leim', 'pa_IN': 'ਸਮਾਂ', 'ast': 'llima', 'gug': 'lima', 'vi': 'Giờ', 'as': 'নেমু', 'gd': 'dath na liomaideig', 'or': 'ଲେମ୍ବୁ ରଙ୍ଗ', 'ja': '明るい緑|ライム色|lime', 'nn': 'grasgrøn|lime', 'fr': 'citron', 'be': 'ярка-зялёны', 'oc': 'limon', 'gl': 'lima', 'ar': 'ليموني', 'en_US': 'lime', 'sk': 'Čas', 'sr': 'светло зелена', 'zh_CN': '酸橙色|lime', 'eo': 'limeta', 'ta': 'எலுமிச்சை', 'ca_valencia': 'llima|verd.llima', 'ne': 'समय', 'ca': 'llima|verd.llima', 'si': 'වෙලාව', 'my': 'အချိန်', 'ka': 'დრო'}, +'INCH':{'lt': 'col|"', 'uk': 'дюйм|"', 'pt_BR': 'pol|"', 'kk': 'дюйм|"', 'fi': 'tuuma', 'br': 'meutad|"', 'lv': 'colla|"', 'nn': 'tomme|in|"', 'gug': 'in|pulg|"', 'es': 'in|pulg|"', 'el': 'ίντσα|in|"', 'tr': 'inç|"', 'or': 'ଇଞ୍ଚ|"', 'gd': 'òirlich|"', 'sl': 'pal|"', 'nb': 'tommer|"', 'be': 'цаль|"', 'gl': 'pol|"', 'ar': 'في|"', 'en_US': 'in|"', 'eo': 'colo|"', 'zh_TW': '英吋|in', 'et': 'tolli|"|″', 'ru': 'дюйм|"', 'he': "אינץ׳|אינץ'|אינטש", 'zh_CN': '英寸|in', 'ja': 'インチ|in|"'}, +'ERR_MEMORY':{'lt': 'nepakanka atminties.', 'sid': 'kkitinnokki qaaggo.', 'fi': 'muisti ei riitä.', 'ro': 'Memorie insuficientă.', 'lv': 'nepietiek atmiņas.', 'kn': 'ಸಾಕಷ್ಟು ಸ್ಮೃತಿ ಇಲ್ಲ.', 'hsb': 'Njeje dosć składa.', 'es': 'no hay memoria suficiente.', 'vec': 'Ła memoria no ła basta mìa.', 'el': 'ανεπαρκής μνήμη.', 'sv': 'otillräckligt minne.', 'hr': 'nema dovoljno memorije.', 'cs': 'nedostatek paměti.', 'sr_Latn': 'Nema dovoljno memorije.', 'pl': 'za mało pamięci.', 'he': 'אין די זכרון.', 'nl': 'onvoldoende geheugen.', 'de': 'Nicht genügend Arbeitsspeicher.', 'hi': 'स्मृति प्रर्याप्त नहीं.', 'ml': 'ആവശ്യമായ മെമ്മറി ലഭ്യമല്ല.', 'id': 'Apakah Anda ingin menjalankan dokumen teks ini?', 'gu': 'પૂરતી મેમરી નથી.', 'my': 'မှတ်ဉာဏ်မလုံလောက်ပါ။', 'ko': '메모리가 부족합니다.', 'ne': 'पर्याप्त स्मृति छैन ।', 'zh_TW': '記憶體不足。', 'et': 'pole piisavalt mälu.', 'ru': 'недостаточно памяти.', 'sl': 'Ni dovolj pomnilnika.', 'bn_IN': 'অপ্রতুল মেমরি।', 'am': 'በቂ memory የለም', 'mr': 'पुरेशी मेमरि नाही.', 'uk': "недостатньо пам'яті.", 'pt_BR': 'memória insuficiente.', 'kk': 'жады жеткіліксіз.', 'te': 'సరిపోవునంత మెమొరీ లేదు.', 'br': 'memor re skort.', 'is': 'ekki nægt minni.', 'km': 'អង្គ\u200bចងចាំ\u200bមិន\u200bគ្រប់គ្រាន់\xa0។', 'nb': 'ikke nok minne.', 'bg': 'недостатъчна памет.', 'bs': 'nema dovoljnomemorije.', 'eu': 'nahiko memoriarik ez.', 'hu': 'Nincs elég memória.', 'cy': 'dim digon o gof.', 'pa_IN': 'ਲੋੜੀਂਦੀ ਮੈਮੋਰੀ ਨਹੀਂ ਹੈ', 'ast': 'nun hai memoria bastante.', 'it': 'memoria insufficiente.', 'tr': 'yeterli bellek yok.', 'vi': 'Không đủ bộ nhớ.', 'da': 'ikke nok hukommelse', 'as': 'পৰ্যাপ্ত মেমৰি নাই।', 'gd': 'chan eil cuimhne gu leòr ann.', 'or': 'ଯଥେଷ୍ଟ ସ୍ମୃତି ସ୍ଥାନ ନାହିଁ।', 'ja': 'メモリーが足りません。', 'nn': 'det ikkje er nok minne.', 'fr': 'mémoire insuffisante.', 'pt': 'memória insuficiente', 'sq': 'memorie të pamjaftueshme.', 'oc': 'memòria insufisenta.', 'gl': 'non hai memoria suficiente.', 'ar': 'لا ذاكرة كافية.', 'en_US': 'not enough memory.', 'sk': 'nedostatok pamäte.', 'sr': 'Нема довољно меморије.', 'zh_CN': '内存不足。', 'eo': 'nesufiĉa memoro.', 'ta': 'நினைவகம் போதவில்லை.', 'ca_valencia': 'no hi ha prou memòria.', 'ga': 'cuimhne ídithe.', 'ca': 'no hi ha prou memòria.', 'si': 'මතකය ප්\u200dරමාණවත් නැත.', 'be': 'недастаткова памяці.', 'ug': 'يېتەرلىك ئەسلەك يوق.', 'ka': 'არ არის საკმარისი მეხსიერება.'}, +'TO':{'lt': 'tai', 'sid': 'ra', 'fi': 'tee', 'ro': 'to|la', 'lv': 'līdz', 'kn': 'ಗೆ', 'nn': 'til|to', 'tr': 'buraya', 'es': 'a', 'el': 'σε|to', 'hr': 'za', 'cs': 'příkaz', 'de': 'zu|als', 'he': 'עד', 'nl': 'naar', 'hu': 'ez|eljárás|elj|tanuld', 'hi': 'प्रति', 'ml': 'ഏങ്ങോട്ട്', 'gu': 'પ્રતિ', 'zh_TW': '定義|起|to', 'mr': 'टु', 'ru': 'к', 'sl': 'pri', 'bn_IN': 'প্রতি', 'am': 'ለ', 'et': 'funktsioon|f', 'uk': 'до', 'pt_BR': 'aprender|aprenda', 'kk': 'қайда', 'te': 'కు', 'br': 'e', 'is': 'til', 'km': 'ដល់', 'nb': 'til|to', 'bs': 'do', 'eu': 'nora', 'ast': 'a', 'gug': 'a', 'as': 'লৈ', 'gd': 'gu', 'or': 'କୁ', 'ja': '動きを作る|to', 'hsb': 'přikaz', 'fr': 'à', 'gl': 'para', 'ar': 'إلى', 'en_US': 'to', 'sk': 'k', 'zh_CN': '定义|定义起始|起始|to', 'eo': 'al', 'ta': 'இதற்கு', 'ca_valencia': 'fins.a', 'ca': 'fins.a', 'oc': 'a'}, +'GREEN':{'lt': 'žalia', 'th': 'เขียว', 'sid': 'haanja', 'fi': 'vihreä', 'ro': 'green|verde', 'lv': 'zaļš', 'kn': 'ಹಸಿರು', 'hsb': 'zeleny', 'tr': 'yeşil', 'es': 'verde', 'vec': 'verde', 'el': 'πράσινο|green', 'hr': 'zelena', 'cs': 'zelená', 'sr_Latn': 'zelena', 'he': 'ירוק', 'nl': 'groen', 'de': 'grün', 'hi': 'हरा', 'ml': 'പച്ച', 'gu': 'લીલો', 'my': 'အစိမ်းရောင်', 'ko': '녹색', 'zh_TW': '綠|green', 'mr': 'हिरवा', 'ru': 'зелёный', 'sl': 'zelena', 'bn_IN': 'সবুজ', 'am': 'አረንጓዴ', 'et': 'roheline', 'uk': 'зелений', 'pt_BR': 'verde', 'kk': 'жасыл', 'te': 'ఆకుపచ్చ', 'br': 'gwer', 'is': 'grænt', 'km': 'បៃតង', 'nb': 'grønn|green', 'bs': 'zelena', 'eu': 'berdea', 'hu': 'zöld', 'pa_IN': 'ਹਰਾ', 'ast': 'verde', 'gug': 'aky', 'vi': 'Lục', 'as': 'সেউজীয়া', 'gd': 'uaine', 'or': 'ସବୁଜ', 'ja': '緑|green', 'nn': 'grøn|green', 'fr': 'vert', 'be': 'зялёны', 'oc': 'verd', 'gl': 'verde', 'ar': 'أخضر', 'en_US': 'green', 'sk': 'zelená', 'sr': 'зелена', 'zh_CN': '绿|绿色|green', 'eo': 'verda', 'ta': 'பச்சை', 'ca_valencia': 'verd', 'ne': 'हरियो', 'ca': 'verd', 'si': 'කොළ', 'ug': 'يېشىل', 'ka': 'მწვანე'}, +'NORMAL':{'lt': 'įprastinis', 'th': 'ปกติ', 'sid': 'rosaminoha', 'zu': 'okwejwayelekile', 'fi': 'tavallinen', 'ss': 'vamile', 'ml': 'സാധാരണ', 'lv': 'normāls', 'kn': 'ಸಾಮಾನ್ಯ', 'hsb': 'normalny', 'xh': 'ngokuqhelekileyo', 'el': 'κανονικό|normal', 'hr': 'obično', 'tn': 'tlwaelo', 'cs': 'normální', 'he': 'רגיל', 'nl': 'normaal', 'hu': 'normál', 'hi': 'सामान्य', 'bn': 'সাধারণ', 'nso': 'tlwaelegilego', 'gu': 'સામાન્ય', 've': 'ḓoweleaho', 'my': 'ပုံမှန်', 'ko': '보통', 'st': 'tlwaelehileng', 'tt': 'гадәти', 'zh_TW': '一般|normal', 'mr': 'सामान्य', 'ru': 'обычный', 'sl': 'navadno', 'bn_IN': 'সাধারণ', 'am': 'መደበኛ', 'et': 'keskmine', 'uk': 'звичайний', 'kmr_Latn': 'asayî', 'kk': 'қалыпты', 'te': 'సాధారణ', 'af': 'normaal', 'is': 'venjulegt', 'ts': 'tolovelekeeke', 'km': 'ធម្មតា\u200b', 'bs': 'obicno', 'eu': 'normala', 'nr': 'jayelekileko', 'pa_IN': 'ਸਧਾਰਨ', 'vi': 'thông thường', 'as': 'সাধাৰন', 'gd': 'àbhaisteach', 'eo': 'normala', 'or': 'ସାଧାରଣ', 'ja': 'ふつう|標準|normal', 'sa_IN': 'आम', 'be': 'звычайны', 'sq': 'normale', 'fa': 'معمولی', 'ar': 'عادي', 'ug': 'نورمال', 'sk': 'normálne', 'zh_CN': '一般|常规|normal', 'br': 'Reizh', 'ta': 'சாதாரண', 'ne': 'सामान्य', 'si': 'සාමාන්\u200dය', 'dgo': 'आम', 'en_US': 'normal', 'ka': 'ჩვეულებრივი'}, +'PINK':{'lt': 'rausva', 'th': 'ชมพู', 'sid': 'dumamo', 'fi': 'pinkki', 'ro': 'pink|roz', 'lv': 'rozā', 'kn': 'ಸಂಪರ್ಕಕೊಂಡಿ', 'hsb': 'róžowy', 'tr': 'pembe', 'es': 'rosa', 'el': 'ροζ|pink', 'hr': 'ružićasta', 'cs': 'růžová', 'sr_Latn': 'roze', 'he': 'ורוד', 'nl': 'roze', 'de': 'rosa', 'hi': 'कड़ी', 'ml': 'പിങ്ക്', 'gu': 'ગુલાબી', 'ko': '분홍', 'zh_TW': '粉紅|pink', 'mr': 'पिंक', 'ru': 'розовый', 'sl': 'roza', 'bn_IN': 'লিংক', 'am': 'ሮዝ', 'et': 'roosa', 'uk': 'рожевий', 'pt_BR': 'rosa', 'kk': 'қызғылт', 'te': 'పింక్', 'br': 'roz', 'is': 'bleikt', 'km': 'ផ្កាឈូក', 'nb': 'rosa|pink', 'bs': 'roza', 'eu': 'arrosa', 'hu': 'rózsaszín', 'cy': 'pinc', 'pa_IN': 'ਲਿੰਕ', 'ast': 'rosa', 'gug': 'pytãngy', 'vi': 'Liên kết', 'as': 'গোলাপী', 'gd': 'pinc', 'or': 'ଗୋଲାପି', 'ja': 'ピンク|pink', 'nn': 'rosa|pink', 'fr': 'rose', 'be': 'ружовы', 'sq': 'rozë', 'oc': 'ròse', 'gl': 'rosa', 'ar': 'وردي', 'en_US': 'pink', 'sk': 'Odkaz', 'sr': 'розе', 'zh_CN': '粉色|粉|pink', 'eo': 'rozkolora', 'ta': 'இளஞ்சிவப்பு', 'ca_valencia': 'rosa', 'ne': 'लिङ्क', 'ca': 'rosa', 'si': 'සබඳින්න', 'my': 'ကွင်းဆက်', 'ka': 'ბმული'}, +'PENTRANSPARENCY':{'lt': 'pieštuko.skaidrumas|linijos.skaidrumas|psk', 'uk': 'прозорість_пера|прозорість_лінії', 'pt_BR': 'mudarTransparênciaDoLápis|mTraLa|mTraLi', 'kk': 'қалам_мөлдірлілігі|сызық_мөлдірлілігі', 'fi': 'kynänläpinäkyvyys', 'br': 'boullderkreion|boullderlinenn', 'km': 'ភាព\u200bថ្លា|ភាពថ្លាបន្ទាត់', 'fr': 'transparencecrayon|tranparenceligne', 'lv': 'spalvas_caurspīdīgums|līnijas_caurspīdīgums', 'kn': 'ಲೇಖನಿಪಾರದರ್ಶಕತೆ|ಸಾಲಿನಪಾರದರ್ಶಕತೆ', 'eu': 'lumagardentasuna|marragardentasuna', 'hr': 'prozirnostolovke|prozirnostlinije', 'es': 'pluma.transparencia|línea.transparencia', 'nn': 'penngjennomsikt|linjegjennomsikt', 'gug': 'bolígrafo.hesakã|línea.hesakã', 'oc': 'transparénciagredon|tranparéncialinha', 'cs': 'průhlednostpera|průhlednostčáry|průhlpera|průhlčáry', 'de': 'stifttransparenz|linientransparenz|st|lt', 'tr': 'kalemşeffaflığı|çizgişeffaflığı', 'nl': 'pentranparantie|lijntransparantie', 'or': 'କଲମସ୍ୱଚ୍ଛତା|ଧାଡ଼ିସ୍ୱଚ୍ଛତା', 'he': 'שקיפות_עט|שקיפות_קו', 'hsb': 'transparencapisaka|transparencalinije|tp|tl', 'nb': 'penngjennomsiktighet|linjegjennomsiktighet', 'hu': 'tollátlátszóság', 'gl': 'transparencialapis|transparencialiña', 'ar': 'شفافية_القلم', 'en_US': 'pentransparency|linetransparency', 'sk': 'priehľadnosťpera|priehľadnosťčiary|pp|pč', 'ko': '투명펜', 'eo': 'plumtravideblo|linitravideblo', 'ca_valencia': 'llapis.transparència|línia.transparència', 'zh_TW': '筆透明|線透明|pentransparency|linetransparency', 'et': 'pliiatsi_läbipaistvus|joone_läbipaistvus', 'zh_CN': '笔透明|线透明|pentransparency|linetransparency', 'el': 'διαφάνειαγραφίδας|διαφάνειαγραμμής', 'ru': 'прозр_пера|прозр_линии|пп', 'sl': 'prosojnostperesa|prosojnostčrte', 'ug': 'قەلەم سۈزۈك|سىزىق سۈزۈك|pentransparency|linetransparency', 'ja': 'ペンの透明度|pentransparency|linetransparency', 'ca': 'llapis.transparència|línia.transparència'}, +'PENCOLOR':{'lt': 'pieštuko.spalva|linijos.spalva|psp', 'th': 'pencolor|สีปากกา|สีเส้น|pc', 'sid': 'biiretekuula|biiretekuula|xuruurukuula|bk', 'fi': 'kynänväri|kv', 'ro': 'pencolor|pencolour|linecolor|pc|culoarestilou', 'lv': 'spalvas_krāsa|linijas_krāsa|sk', 'kn': 'ಲೇಖನಿಬಣ್ಣ|ಲೇಖನಿಯಬಣ್ಣ|ರೇಖೆಬಣ್ಣ|pc', 'hsb': 'barbapisaka|barbalinije|bp|bl', 'tr': 'kalemrengi|kalemrengi|satırrengi|kr', 'es': 'color.lápiz|color.línea|cl', 'el': 'χρώμαγραφίδας|χρώμαγραμμής|χγ|pencolor|pencolour|linecolor|pc', 'hr': 'boja olovke|boja olovke|boja linije|bo', 'cs': 'barvapera|barvačáry|bp', 'de': 'stiftfarbe|linienfarbe|sf|lf', 'he': 'צבעעט|צבעט|צבעקו|צק', 'nl': 'penkleur|lijnkleur|pk', 'hu': 'tollszín|tollszín!|tsz!?|vonalszín', 'ko': '펜색상|펜색상|선색상|pc', 'zh_TW': '筆顏色|筆色|線顏色|線色|筆色彩|線色彩|pencolor|pencolour|linecolor|pc', 'mr': 'पेनकलर|पेनकलर|लाइनकलर|pc', 'ru': 'цвет_пера|цвет_линии|ц', 'sl': 'barvaperesa|barvačrte|bp', 'am': 'የ ብዕር ቀለም|የ ብዕር ቀለም|የ መስመር ቀለም|ብ/ቀ', 'et': 'pliiatsi_värv|joonevärv|pv|jv', 'uk': 'колір_пера|колір_лінії|кп', 'pt_BR': 'mudarCorDoLápis|mCorLa|mudeCorDoLápis|mudecl', 'kk': 'қалам_түсі|сызық_түсі|т', 'km': 'ពណ៌\u200bប៉ិក|pencolour|linecolor|pc', 'nb': 'pennfarge|pencolour|pf|linjefarge|pc', 'bs': 'bojaolovke|bojaolovke|bojalinije|pc', 'eu': 'lumakolorea|marrakolorea|lk', 'ast': 'llapizcolor|lliniacolor|lc', 'gug': "sa'y.lápiz|sa'y.línea|cl", 'or': 'ପେନରଙ୍ଗ|ପେନରଙ୍ଗ|ଧାଡ଼ିରଙ୍ଗ|pc', 'mn': 'үзэгний өнгө|шугамын өнгө|үөн|шөн', 'ja': 'ペンの色|線の色|pencolor|pc', 'nn': 'pennfarge|linjefarge|pf|pencolor', 'fr': 'couleurcrayon|ccrayon|couleurligne|cc', 'gl': 'estilocor|estilodacor|liñadecor|ec', 'ar': 'لون_القلم', 'en_US': 'pencolor|pencolour|linecolor|pc', 'sk': 'farbapera|farbačiary|fp|fč', 'eo': 'plumkoloro|linikoloro|pk', 'ca_valencia': 'color.llapis|color.línia|cl', 'ca': 'color.llapis|color.línia|cl', 'zh_CN': '笔颜色|笔色|线颜色|线色|pencolor|pencolour|linecolor|pc'}, +'HEADING':{'lt': 'žvelk', 'sid': 'umallo|umalloqineessi|uqineessi', 'ja': '進む向き|向き|heading', 'pt_BR': 'mudarDireção|mDir|direção', 'kk': 'атауы|атауын_орнату|ата', 'fi': 'suunta', 'br': 'talbenn|setheading|seth', 'eo': 'direkto|dir', 'ro': 'heading|setheading|seth|direcție', 'fr': 'cap|fixecap|fc', 'lv': 'azimuts|iestatīt_azimutu|iest_az', 'kn': 'ಶೀರ್ಷಿಕೆ|ಶೀರ್ಷಿಕೆಹೊಂದಿಸು|seth', 'eu': 'izenburua|ezarriizenburua|ezarrig', 'tr': 'başlık|başlığıayarla|baş.ayarla', 'es': 'sentido|dirección|dir', 'ca': 'canvia.sentit|sentit|heading|setheading|seth', 'el': 'επικεφαλίδα|ορισμόςεπικεφαλίδας|ορε|heading|setheading|seth', 'uk': 'заголовок|задати_заголовок|заг', 'hr': 'naslov|postavinaslov|postavin', 'cs': 'směr|nastavsměr', 'de': 'richtung|ri', 'nl': 'richting', 'bs': 'zaglavlje|postavizaglavlje|seth', 'he': 'כותרת|הגדרתכותרת|הגכ', 'hsb': 'směr', 'nb': 'retning|settretning|heading', 'hu': 'irány|irány!', 'gl': 'cabeceira|estabelecercabeceira|ec', 'ar': 'ترويسة|عين_ترويسة', 'en_US': 'heading|setheading|seth', 'sk': 'smer|nastavsmer|ns', 'ko': '제목|제목설정|seth', 'or': 'ଶୀର୍ଷକ|ଶୀର୍ଷକ ବିନ୍ୟାସ|seth', 'ca_valencia': 'canvia.sentit|sentit|heading|setheading|seth', 'zh_TW': '朝向|定向|heading|setheading|seth', 'mr': 'हेडिंग|सेटहेडिंग|सेटएच', 'zh_CN': '朝向|定向|heading|setheading|seth', 'ast': 'direición|pondireición|dir', 'ru': 'заголовок|установить_заголовок|заг', 'sl': 'smer|določismer|dols', 'oc': 'títol|definirtítol|deft', 'am': 'ራስጌ|ራስጌ ማሰናጃ|ራ.ማ', 'et': 'pealkiri|määra_pealkiri'}, +'MITER':{'lt': 'kampinis', 'sid': 'metire', 'fi': 'jiiri', 'ro': 'miter|ascuțit', 'lv': 'spics', 'kn': 'ಮಿಟರ್', 'hsb': 'nakosa', 'tr': 'köşe', 'es': 'mitra|inglete|bies', 'el': 'μύτη|miter', 'hr': 'koljeno', 'cs': 'ostré', 'de': 'gehrung', 'he': 'משלים', 'nl': 'snijdend', 'hu': 'hegyes', 'hi': 'माइटर', 'gu': 'મિટર', 'ko': '미터', 'zh_TW': '尖角|miter', 'mr': 'मीटर', 'ru': 'скос45', 'sl': 'izbočeno', 'am': 'መጋጠሚያ', 'et': 'terav', 'uk': 'скіс45', 'pt_BR': 'pontudo', 'kk': 'көлбеу45', 'br': 'garan', 'is': 'hornskeyting', 'km': 'ផ្គុំ', 'nb': 'skarp|miter', 'bs': 'kosispoj', 'eu': 'ebakia', 'cy': 'meitr', 'pa_IN': 'ਕਣ', 'ast': 'inglete', 'gug': 'mitra|inglete|bies', 'oc': 'mitra', 'or': 'ମିଟର', 'gd': 'bairrin', 'ja': '角をとがらせる|miter', 'nn': 'skarp|miter', 'fr': 'mitre', 'gl': 'bispel', 'ar': 'قلنسوة', 'en_US': 'miter', 'sk': 'ostré', 'zh_CN': '尖角|miter', 'eo': 'oblikva', 'ta': 'மைட்டர்', 'ca_valencia': 'esbiaixa|biaix', 'ca': 'esbiaixa|biaix', 'ug': 'چېتىق'}, +'SKYBLUE':{'lt': 'dangaus', 'sid': 'gordukuula', 'fi': 'taivaansininen', 'lv': 'debeszils', 'kn': 'ಆಕಾಶನೀಲಿ', 'hsb': 'njebjomódry', 'tr': 'gök mavisi', 'es': 'azulcielo|celeste', 'el': 'ουρανί|skyblue', 'hr': 'nebeskoplava', 'cs': 'bleděmodrá', 'sr_Latn': 'nebesko plava', 'he': 'כחולשמיים|כחולשמים|שמיים|שמים', 'nl': 'hemelsblauw', 'de': 'hellblau', 'hi': 'आसमानी', 'ml': 'സ്കൈബ്ലൂ', 'gu': 'આકાશીવાદળી', 'ko': '하늘색', 'zh_TW': '天藍|skyblue', 'mr': 'स्कायब्ल्यु', 'ru': 'небесно-голубой', 'sl': 'nebesnomodra', 'bn_IN': 'অাকাশি নীল', 'am': 'ሰማያዊ', 'et': 'taevasinine', 'uk': 'небесно-синій', 'pt_BR': 'celeste', 'kk': 'ашық_көк', 'te': 'నింగినీలం', 'br': 'glaz oabl', 'is': 'himinblátt', 'km': 'ផ្ទៃមេឃ', 'nb': 'himmelblå|skyblue', 'bs': 'nebeskoplava', 'eu': 'zeruurdina', 'hu': 'égszínkék|világoskék', 'ast': 'celeste', 'it': 'celeste', 'gug': 'hovyyvága|celeste', 'as': 'আকাশনীলা', 'gd': 'speur-ghorm', 'or': 'ଆକାଶୀ ନୀଳ', 'ja': '空色|スカイブルー|skyblue', 'nn': 'himmelblå|skyblue', 'fr': 'bleuciel', 'be': 'нябесна-блакітны', 'gl': 'celeste', 'ar': 'سماوي', 'en_US': 'skyblue', 'sk': 'bledomodrá', 'sr': 'небеско плава', 'eo': 'ĉielblua', 'ta': 'வான்நீலம்', 'ca_valencia': 'blau.cel|cel', 'ca': 'blau.cel|cel', 'zh_CN': '天蓝|天蓝色|skyblue'}, +'FONTSTYLE':{'lt': 'šrifto.stilius|teksto.stilius', 'th': 'รูปแบบอักขระ', 'sid': 'borangichuakat', 'fi': 'fonttityyli', 'ro': 'fontstyle|stilfont', 'lv': 'fonta_stils', 'kn': 'ಅಕ್ಷರಶೈಲಿ', 'hsb': 'stilpisma|sp', 'es': 'estilo.letra|estilo.fuente', 'el': 'μορφήγραμματοσειράς|fontstyle', 'hr': 'stil fonta', 'cs': 'stylpísma', 'de': 'schriftstil|schs', 'he': 'סגנוןגופן', 'nl': 'tekststijl|letterstijl', 'hu': 'betűstílus', 'gu': 'ફોન્ટ શૈલી', 'ko': '글꼴스타일', 'zh_TW': '字型樣式|字樣式|fontstyle', 'mr': 'फाँटची शैली', 'ru': 'стиль_шрифта', 'sl': 'slogpisave', 'bn_IN': 'হরফ-শৈলী', 'am': 'የፊደል ዘዴ', 'et': 'fondi_stiil', 'uk': 'стиль_символів', 'pt_BR': 'mudarEstiloDaLetra|mEstLe', 'kk': 'қаріп_стилі', 'te': 'ఫాంటుశైలి', 'br': 'stil an nodrezh', 'is': 'leturstíll', 'km': 'រចនាប័ទ្ម\u200bពុម្ពអក្សរ', 'nb': 'skriftstil|fontstyle', 'bs': 'stilfonta', 'eu': 'letraestiloa', 'ast': 'estiludefonte', 'tr': 'yazı tipi biçemi', 'or': 'ଅକ୍ଷରରୂପ ଶୈଳୀ', 'ja': '文字の書き方|文字のスタイル|フォントのスタイル|fontstyle', 'nn': 'skriftstil|fontstyle', 'fr': 'stylepolice', 'gl': 'estilo de tipo de letra', 'ar': 'نمط_الخط', 'en_US': 'fontstyle', 'sk': 'štýlpísma|šp', 'zh_CN': '字体样式|字样式|字样|fontstyle', 'eo': 'tiparostilo', 'ta': 'எழுத்துரு பாணி', 'ca_valencia': 'estil.lletra|el', 'ca': 'estil.lletra|el', 'ug': 'خەت نۇسخا ئۇسلۇبى'}, +'LIST':{'lt': 'gauk.sąrašą|sąrašas|gksr', 'sid': 'dirto', 'fi': 'lista', 'ro': 'list|listă', 'lv': 'saraksts', 'kn': 'ಪಟ್ಟಿ', 'hsb': 'lisćina', 'tr': 'liste', 'es': 'lista', 'el': 'κατάλογος|list', 'hr': 'popis', 'cs': 'seznam', 'de': 'liste', 'he': 'רשימה', 'nl': 'Lijst', 'hu': 'lista', 'hi': 'सूची', 'gu': 'યાદી', 'ko': '목록', 'zh_TW': '清單|列表|list', 'mr': 'लिस्ट', 'sat': 'लिसटी', 'ru': 'список', 'sl': 'izpišiseznam', 'bn_IN': 'তালিকা', 'am': 'ዝርዝር', 'et': 'loend', 'uk': 'список', 'pt_BR': 'lista', 'kk': 'тізім', 'te': 'జాబిత', 'br': 'roll', 'is': 'listi', 'km': 'បញ្ជី', 'nb': 'liste|list', 'bs': 'lista', 'eu': 'zerrenda', 'cy': 'rhestr', 'ka': 'სია', 'ast': 'llista', 'gug': 'lista', 'oc': 'lista', 'or': 'ତାଲିକା', 'ja': 'リスト|list', 'nn': 'liste|list', 'fr': 'liste', 'be': 'спіс', 'sq': 'lista', 'gl': 'lista', 'ar': 'قائمة', 'en_US': 'list', 'sk': 'Zoznam', 'zh_CN': '列表|list', 'eo': 'listo', 'ta': 'பட்டியல்', 'ca_valencia': 'llista', 'ne': 'सूची', 'ca': 'llista', 'si': 'ලැයිස්තුව', 'dgo': 'सूची', 'my': 'စာရင်း'}, +'ERR_ZERODIVISION':{'fi': 'Jako nollalla.', 'kn': 'ಶೂನ್ಯದಿಂದ ಭಾಗಾಕಾರ.', 'sv': 'Division med noll.', 'hr': 'Dijeljenje s nulom.', 'de': 'Division durch Null.', 'he': 'חלוקה באפס.', 'nl': 'Deling door nul.', 'hu': 'Osztás nullával.', 'brx': 'लाथिखजों राननाय.', 'ko': '영(0)으로 나눔', 'et': 'Nulliga jagamine.', 'mai': 'सुन्नासँ भाग', 'am': 'በዜሮ ማካፈል', 'mr': 'डिविजन बाय झिरो.', 'kk': 'Нөлге бөлу.', 'te': 'సున్నాతో భాగహారము.', 'af': 'Deling deur nul.', 'tg': 'Тақсим бар сифр.', 'km': 'ចែក\u200bនឹង\u200bសូន្យ\xa0។', 'fr': 'Division par zéro.', 'kok': 'शून्यान भाग', 'eu': 'Zatitzailea zero.', 'pt': 'Divisão por zero', 'pa_IN': 'ਜ਼ੀਰੋ ਨਾਲ ਭਾਗ', 'it': 'Divisione per zero.', 'gug': 'División por cero.', 'vi': 'Chia cho không.', 'da': 'Division med nul.', 'gd': 'Roinneadh le neoini.', 'hsb': 'Diwizija přez nulu.', 'nb': 'Deling med null.', 'be': 'Дзяленне на нуль.', 'sq': 'Pjesëtim me zero.', 'om': 'Qooddii zeeroodhaanii.', 'ug': 'نۆلگە بۆلۈنگەن.', 'sk': 'Delenie nulou.', 'ta': 'சுழியால் வகுத்தல்.', 'dgo': 'सिफर कन्नै तक्सीम', 'en_US': 'Division by zero.', 'lt': 'Dalyba iš nulio.', 'th': 'หารด้วยศูนย์', 'sid': 'Zeerotenni beeha.', 'ml': 'പൂജ്യം കൊണ്ടു് ഹരിക്കുക.', 'mk': 'Делење со нула.', 'ro': 'Împărțire la zero.', 'lv': 'Dalīšana ar nulli.', 'as': 'শুণ্যৰে হৰণ কৰা ।', 'nn': 'Deling med null.', 'es': 'División por cero.', 'vec': 'Divizion par zero.', 'el': 'Διαίρεση με το μηδέν.', 'dz': 'ཀླད་ཀོར་གིས་བགོ་རྩིས།', 'cs': 'Dělení nulou.', 'sr_Latn': 'Deljenje nulom.', 'sl': 'Deljenje z nič.', 'hi': 'शून्य से विभाजन.', 'id': 'Pembagian oleh nol.', 'gu': 'શૂન્ય દ્વારા વિભાજન.', 'my': 'သုံညဖြင့်စားခြင်း။', 'sd': 'ٻڙيءَ سان ونڊيو', 'zh_TW': '除以零。', 'sat': 'सुन दाराय ते हा़टिञ', 'bo': 'ཀླད་ཀོར་ཕུད།', 'ru': 'Деление на ноль.', 'rw': 'Kugabanya na zeru.', 'bn_IN': 'শূন্য দিয়ে বিভাজন।', 'uk': 'Ділення на нуль.', 'kmr_Latn': 'Li sifirê parva kirin.', 'pt_BR': 'Divisão por zero.', 'tt': 'Нульгә бүлү.', 'bn': 'শূন্য দিয়ে বিভাজন।', 'is': 'Deiling með núlli.', 'pl': 'Dzielenie przez zero.', 'sa_IN': 'शून्यतः विभाजनम् ।', 'sw_TZ': 'Gawanyika kwa sifuri', 'ks': 'صفرسئتھ تقسیم كرُن', 'ga': 'Roinnt le nialas.', 'bg': 'Деление на нула.', 'ast': 'División por cero.', 'tr': 'Sıfıra bölme.', 'bs': 'Dijeljenje sa nulom.', 'mn': 'Тэгд хуваагдаж байна.', 'or': 'ଶୂନ୍ୟ ଦ୍ୱାରା ବିଭାଜିତ।', 'ja': 'ゼロで割り算した。', 'cy': 'Rhannu gyda sero.', 'br': 'Rannadur dre vann.', 'fa': 'تقسیم بر صفر', 'gl': 'División por cero.', 'ar': 'القسمة على صفر.', 'oc': 'Division per zèro.', 'sr': 'Дељење нулом.', 'zh_CN': '被零除。', 'eo': 'Divido per nul.', 'ca_valencia': 'Divisió per zero.', 'ne': 'शून्यद्वारा विभाजन ।', 'ca': 'Divisió per zero.', 'si': 'ශුන්\u200dයයෙන් බෙදීම.', 'uz': 'Nolga boʻlish', 'mni': 'শূন্যনা য়েন্নবা.', 'ka': 'ნულზე გაყოფა.'}, +'ERR_ARGUMENTS':{'lt': 'Komandai „%s“ reikia %s argumentų (nurodyta %s).', 'sid': '%s tidho %s adhanno (%s uyinoonniha).', 'fi': '%s tarvitsee %s argumenttia (%s annettu).', 'ro': '%s dă %s argumente (%s date).', 'lv': '%s pieņem %s parametrus (nevis %s).', 'kn': '%s ಎನ್ನುವುದು %s ಆರ್ಗ್ಯುಮೆಂಟ್\u200cಗಳನ್ನು ತೆಗೆದುಕೊಳ್ಳುತ್ತದೆ (%s ಒದಗಿಸಲಾದ).', 'hsb': '%s trjeba %s argumentow (%s podate).', 'tr': '%s, %s bağımsız değişken alır (%s verilen).', 'es': '%s toma %s argumentos (se proporcionaron %s).', 'vec': '%s el ciapa %s argomenti (%s dati).', 'el': 'το %s παίρνει τα ορίσματα %s (%s δεδομένα).', 'sv': '%s tar %s argument (%s givna).', 'hr': '%s ima %s argumente (%s dano).', 'cs': '%s vyžaduje %s argumentů (předáno %s).', 'sr_Latn': '%s uzima %s argumenata (navedeno %s).', 'pl': '%s pobiera %s argumenty (%s podane).', 'he': '%s מקבלת %s ארגומנטים (%s סופקו).', 'nl': '%s heeft %s argumenten nodig (%s gegeven).', 'de': '%s benötigt %s Argumente (%s angegeben).', 'hi': '%s लेता %s वितर्क (%s दिया हुआ).', 'ml': '%s, %s ആര്\u200dഗ്രുമെന്റുകള്\u200d സ്വീകരിയ്ക്കുന്നു (%s നല്\u200dകിയിരിയ്ക്കുന്നു).', 'id': '%s perlu %s argumen (diberikan %s).', 'gu': '%s એ %s દલીલો લે છે (%s આપેલ છે).', 'ko': '%s 은(는) %s 개의 파라미터를 갖습니다.(%s 제공됨).', 'zh_TW': '%s 取用 %s 個引數 (已給 %s 個)。', 'et': '%s võtab %s argumenti (aga anti %s).', 'ru': '%s принимает %s аргументов (передано %s).', 'sl': '%s potrebuje %s argumentov (%s jih je podanih).', 'am': '%s የሚወስደው %s ክርክር (%s የተሰጠው)', 'mr': '%s %s आर्ग्युमेंट्स (%s दिलेले) प्राप्त करते.', 'uk': '%s отримує %s аргументів (передано %s).', 'pt_BR': '%s usa %s argumentos (%s definidos).', 'kk': '%s үшін %s аргумент керек (%s берілді).', 'te': '%s అనునది %s ఆర్గుమెంట్లు తీసుకొనును (%s యీయబడెను).', 'br': '%s a geler %s arguzenn (%s roet).', 'is': '%s tekur %s viðföng (%s gefið).', 'km': '%s ចាប់\u200bយក\u200bអាគុយម៉ង់ %s (បាន\u200bផ្ដល់ឲ្យ %s )។', 'nb': '%s tar %s argumenter (%s er angitt).', 'bg': '%s приема %s аргумента (подадени са %s).', 'bs': '%s uzima %s argumenata (%s dato).', 'eu': '%s(e)k %s argumentu hartu ditu (%s emanda).', 'hu': '%s: %s adatot vár, de %s lett megadva.', 'cy': 'Mae %s yn cymryd %s ymresymiad (Derbyn %s ).', 'ast': '%s lleva %s argumentos (%s daos).', 'it': '%s prende %s argomenti (%s dati).', 'gug': '%s toma %s argumentos (se proporcionaron %s).', 'oc': '%s pren los arguments %s (%s donat).', 'da': '%s tager %s argumenter (%s givet).', 'as': '%s এ %s তৰ্কসমূহ গ্ৰহণ কৰে (%s দিয়া হৈছে)।', 'gd': 'Gabhaidh %s %s argamaidean (thug thu seachad %s).', 'or': '%s ଟି %s ପ୍ରାଚଳ ନେଇଥାଏ (%s ପ୍ରଦତ୍ତ)।', 'ja': '%s は %s 個の引数をとります(%s 個与えられました)。', 'nn': '%s tar %s argument (%s er gjevne).', 'fr': '%s prend les arguments %s (%s donné).', 'pt': '%s recebe %s argumentos (indicou %s)', 'gl': '%s toma %s argumentos (%s dados).', 'ar': '%s يأخذ %s من المعاملات (%s أُعطيت).', 'en_US': '%s takes %s arguments (%s given).', 'sk': '%s vyžaduje %s argumentov ( zadaných bolo %s).', 'sr': '%s узима %s аргумената (наведено %s).', 'zh_CN': '%s 需要 %s 个参数 (已给出 %s 个)。', 'eo': '%s prenas %s argumentojn (%s donitaj).', 'ta': '%s ஆனது %s மதிப்புருக்களை எடுத்துக்கொள்ளும் (%s கொடுக்கப்பட்டது).', 'ca_valencia': '%s pren %s arguments (%s donats).', 'ga': 'Glacann %s le %s argóint (bhí %s argóint ann).', 'ca': '%s pren %s arguments (%s donats).', 'be': '%s прымае %s аргументаў (пададзена %s).', 'ug': '%s غا %s ئۆزگەرگۈچى زۆرۈر (%s بېرىلگەن).'}, +'REPCOUNT':{'lt': 'kartojimai', 'sid': 'wirrotekiiro', 'sk': 'počítadlo|poč', 'pt_BR': 'contVezes|conteVezes', 'kk': 'қайталау', 'te': 'రెప్\u200cకౌంట్', 'br': 'arren ar gont', 'ro': 'repcount|câtelea', 'fr': 'nombrerep', 'lv': 'atkārt_skaits', 'bs': 'repbroji', 'nn': 'teljar|repcount', 'hr': 'br. ponavljanja', 'es': 'conteo.veces', 'ca': 'repeteix.vegades|repv', 'el': 'αριθμόςεπαναλήψεων|repcount', 'uk': 'повтори', 'gug': "ha'ejevy.papa", 'cs': 'počítadlo|poč', 'de': 'zähler', 'tr': 'tekrarsayısı', 'nl': 'keerherhaal', 'or': 'ପୁନରାବୃତ୍ତି ସଂଖ୍ୟା', 'he': 'ספירתחזרה', 'hsb': 'ličak', 'eu': 'errepzenbak', 'nb': 'teller|repcount', 'hu': 'hányadik', 'gl': 'contarep', 'ar': 'عداد_التكرار', 'en_US': 'repcount', 'fi': 'toistokerrat', 'eo': 'ripetonombro', 'ca_valencia': 'repeteix.vegades|repv', 'zh_TW': '重複數|重復數|repcount', 'et': 'korduse_number', 'ast': 'repetirvegaes', 'ru': 'повторить', 'sl': 'števecpon', 'zh_CN': '重复数|repcount', 'ja': 'くりかえした数|repcount', 'mr': 'रिपकाउंट'}, +'ERR_STOP':{'lt': 'Programos darbas nutrauktas:', 'sid': 'Pirogirame gooffino:', 'fi': 'Ohjelma on lopetettu:', 'ro': 'Programul s-a terminat:', 'lv': 'Programma pārtraukta:', 'kn': 'ಪ್ರೋಗ್ರಾಂ ಅಂತ್ಯಗೊಂಡಿದೆ:', 'hsb': 'Program skónčeny:', 'es': 'Programa finalizado:', 'vec': 'Programa terminà:', 'el': 'Το πρόγραμμα τερματίστηκε:', 'sv': 'Program avslutades:', 'hr': 'Program je završen:', 'cs': 'Program ukončen:', 'sr_Latn': 'Program prekinut:', 'pl': 'Program zakończony:', 'he': 'התכנית חוסלה:', 'nl': 'Programma afgebroken:', 'de': 'Programm beendet:', 'hi': 'प्रोग्राम बाहर हुआ:', 'ml': 'പ്രോഗ്രാം നിര്\u200dത്തിയിരിയ്ക്കുന്നു:', 'id': 'Program diakhiri:', 'gu': 'કાર્યક્રમનો અંત આવ્યો:', 'ko': '프로그램이 종료됨:', 'zh_TW': '程式已中止:', 'et': 'Programm lõpetatud:', 'ru': 'Программа остановлена:', 'sl': 'Program se je zaključil:', 'bn_IN': 'প্রোগ্রাম সাময়িক ভাবে বন্ধ করা হয়েছে:', 'am': 'መተግበሪያው ተቋርጧል :', 'mr': 'प्रोग्राम बंद केले:', 'uk': 'Програму зупинено:', 'pt_BR': 'Programa encerrado:', 'kk': 'Бағдарлама үзілді:', 'te': 'ప్రోగ్రామ్ అంతమైను:', 'br': 'Goulev arsavet :', 'is': 'Forritið hætti:', 'km': 'បាន\u200bបញ្ចប់\u200bកម្មវិធី៖', 'nb': 'Programmet ble avsluttet:', 'bg': 'Програмата е прекратена:', 'bs': 'Program okončan:', 'eu': 'Programa eten da:', 'hu': 'A futás leállítva:', 'cy': 'Rhaglen wedi dod i ben:', 'ast': 'Programa fináu:', 'it': 'Programma terminato:', 'tr': 'Program sonlandırıldı:', 'oc': 'Programa arrestat :', 'da': 'Programmet afbrudt:', 'as': 'প্ৰগ্ৰাম অন্ত কৰা হল:', 'gd': "Chaidh crìoch a chur air a' phrògram:", 'or': 'ପ୍ରଗ୍ରାମ ସମାପ୍ତ ହୋଇଛି:', 'ja': 'プログラムが終了しました:', 'nn': 'Programmet vart avslutta fordi', 'fr': 'Programme arrêté :', 'pt': 'Programa terminado:', 'gl': 'Programa pechado:', 'ar': 'توقف البرنامج:', 'en_US': 'Program terminated:', 'sk': 'Program ukončený:', 'sr': 'Програм прекинут:', 'zh_CN': '程序已中断:', 'eo': 'Programo haltita:', 'ta': 'நிரல் முடிக்கப்பட்டது:', 'ca_valencia': 'El programa ha acabat:', 'ga': 'Stopadh an ríomhchlár:', 'ca': 'El programa ha acabat:', 'be': 'Праграма спынена:', 'ug': 'پىروگرامما توختىدى:'}, +'PENDOWN':{'lt': 'piešim|pš|nuleisk.pieštuką', 'th': 'ปากกาลง|pd', 'sid': 'biireworora|bw', 'fi': 'kynäalas|ka', 'ro': 'pendown|pd|stiloujos', 'lv': 'nolikt_spalvu|ns', 'kn': 'ಲೇಖನಿಇಳಿಸು|pd', 'hsb': 'běžeć|bž', 'tr': 'kalemaşağı|ka', 'es': 'conpluma|bajarlapiz|cp|bl', 'el': 'γραφίδακάτω|γκ|pendown|pd', 'hr': 'olovka dolje|od', 'cs': 'perodolů|pd', 'de': 'laufen', 'he': 'להורידעט|עטלמטה|הורדעט|הע', 'nl': 'penneer|pn', 'hu': 'tollatle|tl', 'ko': '펜아래로|pd', 'zh_TW': '下筆|pendown|pd', 'mr': 'पेनडाउन|pd', 'ru': 'опустить_перо|оп', 'sl': 'perodol|pd', 'am': 'ብዕር ወደ ታች |pd', 'et': 'pliiats_alla|pa', 'uk': 'опусти_перо|оп', 'pt_BR': 'usarLápis|ul|useLápis', 'kk': 'қаламды_түсіру|қт', 'km': 'pendown', 'nb': 'penn ned|pn|pendown', 'bs': 'pendole|pd', 'eu': 'lumabehera|lb', 'ast': 'llapizbaxar|lb', 'gug': 'bolígrafo|bo', 'or': 'ପେନତଳକୁ|pd', 'ja': 'ペンをおろす|pendown|pd', 'nn': 'penn ned|pn|pendown', 'fr': 'baissecrayon|bc', 'gl': 'conestilo|ce', 'ar': 'أنزل_القلم|أنزل', 'en_US': 'pendown|pd', 'sk': 'perodolu|pd', 'eo': 'plumoek|pe', 'ca_valencia': 'baixa.llapis|bl', 'ca': 'baixa.llapis|bl', 'zh_CN': '下笔|落笔|pendown|pd'}, +'LABEL':{'lt': 'piešk.tekstą|pštk', 'th': 'ป้ายกำกับ', 'sid': 'somaasincho', 'fi': 'selite', 'ro': 'label|etichetă', 'lv': 'etiķete', 'kn': 'ಲೇಬಲ್', 'hsb': 'pomjenowanje', 'tr': 'etiket', 'es': 'etiqueta', 'vec': 'marca', 'el': 'ετικέτα|label', 'hr': 'oznaka', 'cs': 'text', 'de': 'schreibe', 'mn': 'пайз', 'he': 'תווית', 'nl': 'bijschrift', 'hu': 'címke', 'hi': 'लेबल', 'ml': 'ലേബല്\u200d', 'gu': 'લેબલ', 'ko': '레이블', 'sd': 'ليبلُ', 'zh_TW': '標籤|label', 'mr': 'लेबल', 'sat': 'चिखना़', 'ru': 'надпись', 'sl': 'oznaka', 'sa_IN': 'अंकितकम्', 'bn_IN': 'লেবেল', 'am': 'ምልክት', 'et': 'silt', 'uk': 'напис', 'pt_BR': 'rotular|rotule', 'kk': 'белгі', 'te': 'లేబుల్', 'br': 'tikedenn', 'is': 'skýring', 'km': 'ស្លាក', 'nb': 'etikett|label', 'bs': 'naljepnica', 'eu': 'etiketa', 'pa_IN': 'ਲੇਬਲ', 'ast': 'etiqueta', 'gug': 'etiqueta', 'vi': 'Nhãn', 'as': 'লেবেল', 'gd': 'leubail', 'or': 'ନାମପଟି', 'ja': 'ラベル|label', 'nn': 'etikett|label', 'fr': 'étiquette', 'be': 'метка', 'sq': 'etiketë', 'oc': 'etiqueta', 'gl': 'etiqueta', 'ar': 'تسمية', 'en_US': 'label', 'sk': 'popis', 'zh_CN': '标签|label', 'eo': 'etikedo', 'ta': 'லேபிள்', 'ca_valencia': 'etiqueta', 'ca': 'etiqueta', 'si': 'ලේබලය', 'dgo': 'लेबल', 'ug': 'ئەن'}, +'HOUR':{'lt': 'val', 'nb': 't', 'hu': 'ó|h', 'kk': 'с', 'br': 'e', 'en_US': 'h', 'is': 'klst', 'nn': 't|h', 'ar': 'س', 'zh_TW': 'h|小時', 'et': 't', 'he': 'שע', 'zh_CN': 'h|小时', 'ja': '時間|h', 'sl': 'u'}, +'ERROR':{'lt': 'Klaida (%s eilutėje)', 'sid': 'Soro (%s xuruuri giddo)', 'fi': 'Virhe (rivillä %s)', 'ro': 'Eroare (la linia %s)', 'lv': 'Kļūda (rindā %s)', 'kn': 'ದೋಷ (%s ಸಾಲಿನಲ್ಲಿ)', 'hsb': 'Zmylk (w lince %s)', 'tr': 'Hata (%s satırında)', 'es': 'Error (en el renglón %s)', 'vec': 'Eror (inte ła riga %s)', 'el': 'Σφάλμα (στη γραμμή %s)', 'sv': 'Fel (på rad %s)', 'hr': 'Greška (u retku %s)', 'cs': 'Chyba (na řádku %s)', 'sr_Latn': 'Greška (red %s)', 'pl': 'Błąd (w linii %s)', 'he': 'שגיאה (בשורה %s)', 'nl': 'Error (op regel %s)', 'de': 'Fehler (in Zeile %s)', 'hi': 'त्रुटि (%s पंक्ति में)', 'ml': 'പിശക് (%s വരിയില്\u200d)', 'id': 'Galat (dalam baris %s)', 'gu': 'ભૂલ (વાક્ય %s માં)', 'ko': '오류 (%s 번째 줄)', 'zh_TW': '錯誤 (第 %s 列)', 'et': 'Viga (real %s)', 'ru': 'Ошибка (в строке %s)', 'sl': 'Napaka (v vrstici %s)', 'bn_IN': 'ত্রুটি (ইন লাইন %s)', 'am': 'ስህተት (በ መስመር %s) ላይ', 'mr': 'त्रुटी (ओळ %s वरील)', 'uk': 'Помилка (в рядку %s)', 'pt_BR': 'Erro (na linha %s)', 'kk': 'Қате (%s жолында)', 'te': 'దోషం (వరుస %s నందు)', 'br': 'Fazi (gant linenn %s)', 'is': 'Villa (á línu %s)', 'km': 'កំហុស (ក្នុង\u200bតួ %s)', 'nb': 'Feil (i linje %s)', 'bg': 'Грешка (в ред %s)', 'bs': 'Greška (u liniji %s)', 'eu': 'Errorea (%s lerroan)', 'hu': 'Hiba (%s. sor)', 'cy': 'Gwall (yn llinell: %s)', 'ast': 'Fallu (na llinia %s)', 'it': 'Errore (nella riga %s)', 'gug': 'Jejavy (líneape %s)', 'oc': 'Error (a la linha %s)', 'da': 'Fejl (i linje %s)', 'as': 'ত্ৰুটি (শাৰী %s ত)', 'gd': 'Mearachd (ann an loidhne %s)', 'or': 'ତ୍ରୁଟି (ଧାଡ଼ି %s ରେ)', 'ja': '(%s 行目で)エラー', 'nn': 'Feil (i linje %s)', 'fr': 'Erreur (à la ligne %s)', 'pt': 'Erro (na linha %s)', 'gl': 'Erro (na liña %s)', 'ar': 'خطأ (في السطر %s)', 'en_US': 'Error (in line %s)', 'sk': 'Chyba (na riadku %s)', 'sr': 'Грешка (ред %s)', 'zh_CN': '错误 (在第 %s 行)', 'eo': 'Eraro (en linio %s)', 'ta': 'பிழை (வரி %s இல்)', 'ca_valencia': "S'ha produït un error (a la línia %s)", 'ga': 'Earráid (ar líne %s)', 'ca': "S'ha produït un error (a la línia %s)", 'be': 'Памылка (у радку %s)', 'ug': 'خاتالىق(%s قۇردا)'}, +'REFINDALL':{'lt': 'rask.viską', 'sid': 'baalahasi', 'fi': 'etsikaikki', 'ro': 'findall|cautătoate', 'lv': 'atrast_visu', 'kn': 'ಎಲ್ಲಾಹುಡುಕು', 'hsb': 'pytajwšě', 'tr': 'hepsinibul', 'es': 'buscar.todo|encontrar.todo|bt', 'el': 'εύρεσηόλων|findall', 'hr': 'pronađi sve', 'cs': 'najdivše', 'de': 'findealle', 'he': 'חיפושהכול', 'nl': 'vindalles', 'hu': 'talál', 'gu': 'બધુ શોધો', 'ko': '모두 찾기', 'zh_TW': '找全部|全找|findall', 'mr': 'सर्व शोधा', 'ru': 'найти_всё', 'sl': 'najdivse', 'am': 'ሁሉንም መፈለጊያ', 'et': 'leia_kõik', 'uk': 'знайти_все', 'pt_BR': 'localizaTudo', 'kk': 'барлығын_табу', 'br': 'kavout an holl', 'is': 'finnaallt', 'nb': 'finnalle|findall', 'bs': 'nadjisve', 'eu': 'bilatudenak', 'ast': 'alcontrartoo', 'gug': 'hekaopavave', 'or': 'ସମସ୍ତଙ୍କୁ ଖୋଜନ୍ତୁ', 'ja': '見つかったものを全部ならべる|findall', 'nn': 'finnalle|findall', 'fr': 'touttrouver', 'gl': 'atopartodo', 'ar': 'اعثر_على_كل', 'en_US': 'findall', 'sk': 'nájsťvšetko|nv', 'zh_CN': '查找全部|全部查找|findall', 'eo': 'serĉu_ĉion|ĉionserĉu', 'ca_valencia': 'cerca.tot|troba.tot', 'ca': 'cerca.tot|troba.tot', 'oc': 'trobartot'}, +'TEXT':{'lt': 'tekstas', 'th': 'ข้อความ', 'sid': 'borro', 'fi': 'teksti', 'mk': 'Текст', 'sl': 'besedilo', 'lv': 'teksts', 'kn': 'ಪಠ್ಯ', 'hsb': 'tekst', 'tr': 'metin', 'es': 'texto', 'el': 'κείμενο|text', 'dz': 'ཚིག་ཡིག', 'hr': 'tekst', 'cs': 'popisek', 'as': 'লিখনী', 'ug': 'تېكست', 'he': 'טקסט', 'nl': 'Tekst', 'hu': 'szöveg', 'hi': 'पाठ', 'ml': 'വാചകം', 'gu': 'લખાણ', 'ko': '텍스트', 'br': 'testenn', 'zh_TW': '文字|text', 'mr': 'मजकूर', 'sat': 'ओनोलओनोल.', 'oc': 'tèxte', 'mai': 'पाठ', 'rw': 'umwandiko', 'sa_IN': 'पाठ्यम्', 'bn_IN': 'পাঠ্য', 'am': 'ጽሁፍ', 'et': 'tekst', 'uk': 'текст', 'kmr_Latn': 'Nivîs', 'pt_BR': 'texto', 'kk': 'мәтін', 'te': 'పాఠ్యము', 'af': 'teks', 'is': 'texti', 'tg': 'матн', 'km': 'អត្ថបទ', 'nb': 'tekst|text', 'kok': 'मजकूर', 'bs': 'tekst', 'eu': 'testua', 'sw_TZ': 'matini', 'ks': 'مواد', 'cy': 'testun', 'pa_IN': 'ਟੈਕਸਟ', 'ast': 'testu', 'gug': "moñe'ẽrã", 'vi': 'văn bản', 'lo': 'ຂໍ້ຄວາມ', 'brx': 'फराय बिजाब', 'gd': 'teacsa', 'ru': 'текст', 'or': 'ପାଠ୍ୟ', 'ja': '文字|テキスト|text', 'nn': 'tekst|text', 'fr': 'texte', 'be': 'тэкст', 'sq': 'tekst', 'fa': 'متن', 'gl': 'texto', 'ar': 'نص', 'om': 'barruu', 'en_US': 'text', 'si': 'පෙළ', 'zh_CN': '文字|文本|text', 'bn': 'পাঠ্য', 'ta': 'உரை', 'ne': 'पाठ', 'eo': 'teksto', 'dgo': 'इबारत', 'uz': 'matn', 'mn': 'бичвэр', 'mni': 'তেক্স', 'my': 'စာသား', 'ka': 'ტექსტი'}, +'ROUNDED':{'lt': 'apvalus', 'sid': 'doyssi', 'fi': 'pyöreä', 'ro': 'round|rotund', 'lv': 'apaļš', 'kn': 'ದುಂಡಾದ', 'hsb': 'kulojty', 'tr': 'yuvarla', 'es': 'redondear', 'el': 'στρογγυλό|round', 'hr': 'okruglo', 'cs': 'oblé', 'de': 'rund', 'he': 'עגול', 'nl': 'rondaf', 'hu': 'kerek', 'hi': 'गोल', 'ml': 'ഉരുണ്ട', 'gu': 'રાઉન્ડ', 'my': 'ပတ်လည်', 'ko': '반올림', 'zh_TW': '圓角|round', 'mr': 'गोलाकार', 'ru': 'скруглить', 'sl': 'zaobljeno', 'bn_IN': 'রাউন্ড', 'am': 'ክብ', 'et': 'ümar', 'uk': 'закруглити', 'pt_BR': 'arredondado', 'kk': 'домалақтау', 'te': 'రౌండ్', 'br': 'ront', 'is': 'rúnnað', 'km': 'មូល', 'nb': 'avrundet|round', 'bs': 'okruglo', 'eu': 'biribildua', 'cy': 'crwn', 'pa_IN': 'ਗੋਲ', 'ast': 'redondu', 'gug': "emoapu'a", 'vi': 'Làm tròn', 'as': 'গোলাকাৰ', 'gd': 'cruinn', 'or': 'ଗୋଲାକାର', 'ja': '角を丸くする|round', 'nn': 'avrunda|round', 'fr': 'arrondi', 'be': 'круглы', 'sq': 'rrumbullak', 'oc': 'arredondit', 'gl': 'arredondar', 'ar': 'دائري', 'en_US': 'round', 'sk': 'zaokrúhlené', 'zh_CN': '圆角|rounded|round', 'eo': 'ronda', 'ta': 'வட்டம்', 'ca_valencia': 'arrodoneix|arrod', 'ne': 'गोलाकार', 'ca': 'arrodoneix|arrod', 'si': 'වටකුරු', 'ug': 'يۇمۇلاق', 'ka': 'მრგვალი'}, +'RANGE':{'fi': 'alue', 'kn': 'ವ್ಯಾಪ್ತಿ', 'hr': 'raspon', 'de': 'folge', 'he': 'טווח', 'nl': 'Bereik', 'hu': 'sor', 'ml': 'പരന്പര', 'ko': '범위', 'mr': 'रेंज', 'mai': 'परिसर', 'am': 'መጠን', 'et': 'vahemik', 'kk': 'ауқым', 'te': 'విస్తృతి', 'af': 'omvang', 'tg': 'Қитъа', 'km': 'ជួរ', 'fr': 'plage', 'kok': 'व्याप्ती', 'eu': 'barrutia', 'lv': 'diapazons', 'gug': 'intervalo', 'vi': 'phạm vi', 'lo': 'ຂອບເຂດ', 'gd': 'rainse', 'hsb': 'slěd', 'nb': 'område|range', 'be': 'дыяпазон', 'sq': 'interval', 'om': 'hangii', 'en_US': 'range', 'sk': 'oblasť', 'ta': 'வரம்பு', 'dgo': 'फलाऽ', 'zh_CN': '范围|range', 'lt': 'sritis', 'th': 'ช่วง', 'sid': 'hakkigeeshsha', 'mk': 'Опсег', 'ro': 'range|interval', 'pa_IN': 'ਰੇਜ਼', 'as': 'বিস্তাৰ', 'nn': 'område|range', 'es': 'intervalo', 'el': 'περιοχή|range', 'dz': 'ཁྱབ་ཚད།', 'cs': 'rozsah', 'sl': 'obseg', 'hi': 'दायरा', 'gu': 'વિસ્તાર', 'bn': 'পরিসর', 'zh_TW': '範圍|range', 'sat': 'पासनाव', 'ru': 'диапазон', 'rw': 'igice', 'bn_IN': 'পরিসর', 'uk': 'діапазон', 'kmr_Latn': 'Navber', 'pt_BR': 'intervalo', 'br': 'lijorenn', 'is': 'svið', 'bs': 'opseg', 'sa_IN': 'प्रसरः', 'sw_TZ': 'masafa', 'ks': 'حد', 'my': 'ကန့်သတ်နယ်ပယ်', 'ast': 'rangu', 'tr': 'aralık', 'brx': 'सारि', 'mn': 'муж', 'or': 'ପରିସର', 'ja': '範囲|range', 'cy': 'ystod', 'fa': 'محدوده', 'gl': 'intervalo', 'ar': 'النطاق', 'oc': 'plaja', 'eo': 'amplekso', 'ca_valencia': 'interval', 'ne': 'दायरा', 'ca': 'interval', 'si': 'පරාසය', 'uz': 'oraliq', 'mni': 'রেন্জ', 'ka': 'ფორთოხლისფერი'}, +'CIRCLE':{'lt': 'apskritimas', 'th': 'วงกลม', 'sid': 'doyicho', 'fi': 'ympyrä', 'ro': 'circle|cerc', 'lv': 'aplis', 'kn': 'ವೃತ್ತ', 'hsb': 'kruh', 'tr': 'daire', 'es': 'circulo|círculo', 'el': 'κύκλος|circle', 'hr': 'krug', 'cs': 'kruh', 'de': 'kreis', 'mn': 'тойрог', 'he': 'עיגול', 'nl': 'Cirkel', 'hu': 'kör', 'hi': 'वृत्त', 'ml': 'വൃത്തം', 'gu': 'વતૃળ', 'my': 'စက်ဝိုင်းပုံစံ', 'ko': '원', 'zh_TW': '圓|circle', 'mr': 'वर्तुळ', 'ru': 'круг', 'sl': 'krog', 'bn_IN': 'বৃত্ত', 'am': 'ክብ', 'et': 'ring', 'uk': 'коло', 'pt_BR': 'círculo|circunferência', 'kk': 'шеңбер', 'te': 'వృత్తము', 'br': "kelc'h", 'is': 'hringur', 'km': 'រង្វង់', 'nb': 'sirkel|circle', 'bs': 'krug', 'eu': 'zirkulua', 'cy': 'cylch', 'pa_IN': 'ਚੱਕਰ', 'ast': 'círculu', 'gug': 'círculo', 'vi': 'Tròn', 'as': 'বৃত্ত', 'gd': 'cearcall', 'or': 'ବୃତ୍ତ', 'ja': '円|circle', 'nn': 'sirkel|circle', 'fr': 'cercle', 'be': 'акружына', 'sq': 'rreth', 'oc': 'cercle', 'gl': 'círculo', 'ar': 'دائرة', 'en_US': 'circle', 'sk': 'obryskruhu', 'zh_CN': '圆|circle', 'eo': 'cirklo', 'ta': 'வட்டம்', 'ca_valencia': 'cercle', 'ne': 'वृत्त', 'ca': 'cercle', 'si': 'කවය', 'ug': 'چەمبەر', 'ka': 'წრე'}, +'RANDOM':{'lt': 'bet.koks', 'sid': 'hedeweelcho', 'fi': 'satunnainen', 'ro': 'random|aleator', 'lv': 'nejaušs', 'kn': 'ಯಾವುದಾದರು', 'hsb': 'připadny', 'tr': 'rastgele', 'es': 'aleatorio', 'el': 'τυχαίο|random', 'hr': 'nasumično', 'cs': 'náhodné', 'de': 'zufällig', 'he': 'אקראי', 'nl': 'random|willekeurig', 'hu': 'véletlen|véletlenszám|vszám|kiválaszt', 'hi': 'बेतरतीब', 'gu': 'અવ્યવસ્થિત', 'ko': '임의', 'zh_TW': '隨機|random', 'mr': 'रँडम', 'ru': 'случайно', 'sl': 'naključno', 'bn_IN': 'এলোমেলো', 'am': 'በነሲብ', 'et': 'juhuslik', 'uk': 'випадкове', 'pt_BR': 'aleatório|sorteieNúmero|sortNum', 'kk': 'кездейсоқ', 'te': 'యాదృశ్చిక', 'br': 'dargouezhek', 'is': 'slembið', 'km': 'ចៃដន្យ', 'nb': 'tilfeldig|random', 'bs': 'slučajno', 'eu': 'ausazkoa', 'cy': 'ar hap', 'ast': 'aleatoriu', 'gug': "Po'a Oimeraẽa (azar)", 'as': 'যাদৃচ্ছিক', 'or': 'ଅନିୟମିତ', 'ja': 'でたらめな数|乱数|ランダム|random', 'nn': 'tilfeldig|random', 'fr': 'hasard', 'gl': 'aleatorio', 'ar': 'عشوائي', 'en_US': 'random', 'sk': 'náhodné', 'zh_CN': '随机|random', 'eo': 'harzarda', 'ca_valencia': 'aleatori', 'ca': 'aleatori', 'oc': 'aleatòri'}, +'CLOSE':{'lt': 'sujunk', 'th': 'ปิด', 'sid': 'cufi', 'fi': 'sulje', 'ro': 'close|închide', 'lv': 'aizvērt', 'kn': 'ಮುಚ್ಚು', 'hsb': 'začinić', 'tr': 'kapat', 'es': 'cerrar', 'el': 'κλείσιμο|close', 'hr': 'zatvori', 'cs': 'uzavři', 'de': 'schliessen|schließen', 'he': 'סגירה', 'nl': 'sluiten', 'hu': 'zár', 'hi': 'बन्द करें', 'ml': 'അടയ്ക്കുക', 'gu': 'બંધ કરો', 'my': 'ပိတ်ပါ', 'ko': '닫기', 'zh_TW': '關閉|close', 'mr': 'बंद करा', 'ru': 'закрыть', 'sl': 'zaključi', 'bn_IN': 'বন্ধ', 'am': 'መዝጊያ', 'et': 'sulge', 'uk': 'закрити', 'pt_BR': 'fechar|feche', 'kk': 'жабу', 'te': 'మూయు', 'br': 'serriñ', 'is': 'loka', 'km': 'បិទ', 'nb': 'lukk|close', 'bs': 'blizu', 'eu': 'itxi', 'cy': 'cau', 'pa_IN': 'ਬੰਦ ਕਰੋ', 'ast': 'zarrar', 'gug': 'mboty', 'vi': 'Đóng', 'as': 'বন্ধ কৰক', 'or': 'ବନ୍ଦ କରନ୍ତୁ', 'ja': '折れ線を閉じる|close', 'nn': 'lukk|close', 'fr': 'fermer', 'be': 'закрыць', 'sq': 'mbylle', 'oc': 'tampar', 'gl': 'pechar', 'ar': 'أغلق', 'ug': 'ياپ', 'sk': 'Zatvoriť', 'zh_CN': '关闭|close', 'eo': 'fermu', 'ta': 'மூடு', 'ca_valencia': 'tanca', 'ne': 'बन्द गर्नुहोस्', 'ca': 'tanca', 'si': 'වසන්න', 'en_US': 'close', 'ka': 'დახურვა'}, +'INT':{'lt': 'sveikoji.dalis|svdl', 'sid': 'di"ikkanno', 'kk': 'бүтін', 'fi': 'kokonaisl', 'br': 'kevan', 'sat': 'INT', 'is': 'heilt', 'fr': 'ent', 'kok': 'INT', 'bs': 'cijeli broj', 'nn': 'heiltal', 'tr': 'Tamsayı', 'el': 'ακέραιο|int', 'lv': 'vesels', 'uk': 'ціле', 'cs': 'celé', 'de': 'ganz', 'or': 'ଗଣନ ସଂଖ୍ୟା', 'he': 'שלם', 'hsb': 'cyły', 'eu': 'osoa', 'nb': 'heltall|int', 'hu': 'egészszám|egész', 'ar': 'عدد_صحيح', 'en_US': 'int', 'sk': 'celé', 'ko': '정수', 'eo': 'entjero|ent', 'zh_TW': '整數|int', 'et': 'täisarv', 'dgo': 'INT', 'ru': 'целое', 'sl': 'celo', 'sa_IN': 'INT', 'zh_CN': '整数|int', 'ja': '切り捨て|整数|整数に|int', 'mr': 'इंट'}, +'FLOAT':{'lt': 'trupmeninis.skaičius|trsk', 'sid': 'womi', 'fi': 'desimaalil', 'lv': 'reāls', 'kn': 'ತೇಲು', 'hsb': 'decimalny', 'tr': 'kayan', 'el': 'κινητήυποδιαστολή|float', 'hr': 'plutajući', 'cs': 'desetinné', 'de': 'dezimal', 'he': 'שבר', 'hu': 'törtszám|tört', 'hi': 'प्लावित करें', 'ml': 'ഫ്\u200dളോട്ട്', 'gu': 'અપૂર્ણાંક', 'ko': '둥둥 뜨기', 'zh_TW': '浮點|float', 'mr': 'फ्लोट', 'sat': 'चापे.', 'ru': 'дробное', 'sl': 'plavajoče', 'bn_IN': 'ভাসমান', 'am': 'ማንሳፈፊያ', 'et': 'ujukoma', 'uk': 'дробове', 'pt_BR': 'real', 'kk': 'бөлшек', 'te': 'ఫ్లోట్', 'br': 'tonnañ', 'is': 'fleyti', 'km': 'អណ្ដែត', 'nb': 'flyttall|float', 'bs': 'realni', 'eu': 'dezimala', 'cy': 'arnofio', 'pa_IN': 'ਤੈਰਦਾ', 'ast': 'flotante', 'gug': 'vevúi', 'vi': 'Nổi', 'or': 'ଚଳମାନ', 'ja': '小数|小数に|float', 'nn': 'flyttal|desimaltal|float', 'fr': 'virgule', 'be': 'дробавае', 'oc': 'virgula', 'gl': 'flotante', 'ar': 'عدد_عشري', 'en_US': 'float', 'sk': 'Plávať', 'zh_CN': '浮点|小数|float', 'eo': 'reelo', 'ne': 'फ्लोट', 'si': 'පාවීම', 'my': 'ပေါလောပေါ်သည်', 'ka': 'მოლივლივე'}, +'LIBRELOGO':{'hi': 'लिब्रेलोगो', 'or': 'Libre ପ୍ରତୀକ', 'mr': 'लाइबरलोगो', 'ml': 'ലിബര്\u200dലോഗോ', 'te': 'లిబ్రేలోగో', 'ar': 'ليبر\u200cلوغو', 'sr': 'Либрелого', 'en_US': 'LibreLogo', 'sr_Latn': 'Librelogo', 'am': 'የሊብሬ ምልክት', 'ko': '리브레로고'}, +'FORWARD':{'lt': 'priekin|pr', 'th': 'เดินหน้า|fd', 'sid': 'albira|ar', 'fi': 'eteen|et', 'ro': 'forward|fd|înainte', 'lv': 'uz_priekšu|pr', 'kn': 'ಮುಂದಕ್ಕೆ|fd', 'hsb': 'doprědka|dp', 'tr': 'ileri|il', 'es': 'avanza|adelante|av|ad', 'el': 'μπροστά|μπ|forward|fd', 'hr': 'naprijed|np', 'cs': 'dopředu|do', 'de': 'vor|vr', 'he': 'קדימה|קד', 'nl': 'vooruit|vu', 'hu': 'előre|e', 'ko': '앞으로|fd', 'zh_TW': '前進|進|forward|fd', 'mr': 'पुढे|fd', 'ru': 'вперёд|в', 'sl': 'naprej|np', 'am': 'ወደ ፊት|ወደ ፊት', 'et': 'edasi|e', 'uk': 'вперед|вп', 'pt_BR': 'paraFrente|pf', 'kk': 'алға|ал', 'br': 'war-raok|fd', 'km': 'បញ្ជូន\u200bបន្ត|fd', 'nb': 'forover|fram|fd', 'bs': 'naprijed|fd', 'eu': 'aurrera|aur', 'cy': 'ymlaen|fd', 'ast': 'avanzar|av', 'gug': 'tenondépe|td', 'or': 'ଆଗକୁ|fd', 'ja': 'すすむ|forward|fd', 'nn': 'fram|framover|forover|fr|forward', 'fr': 'avance|av', 'be': 'наперад|нп', 'sq': 'përpara|fd', 'gl': 'reenviada|fd', 'ar': 'للأمام|أم', 'en_US': 'forward|fd', 'sk': 'dopredu|do', 'eo': 'antaŭen|a', 'ca_valencia': 'avança|avant|davant|av', 'ca': 'avança|endavant|davant|av', 'zh_CN': '前进|进|forward|fd'}, +'REPEAT':{'lt': 'kartok|amžinai', 'sid': 'wirroqoli|hegerera', 'fi': 'toista', 'ro': 'repeat|forever|repetă', 'lv': 'atkārtot|mūžīgi', 'kn': 'ಪುನರಾವರ್ತಿಸು|ಯಾವಾಗಲೂ', 'hsb': 'wospjetować|wsp', 'tr': 'tekrarla|sürekli', 'es': 'repetir|rep|siempre', 'el': 'επανάληψη|repeat|forever', 'hr': 'ponavljaj|zauvijek', 'cs': 'opakuj|pořád', 'de': 'wiederhole|wdh', 'he': 'חזרה|לעד|לנצח|לתמיד', 'nl': 'herhaal|vooraltijd', 'hu': 'ismét|ism|ismétlés|végtelenszer|vszer', 'ko': '반복|계속', 'zh_TW': '重複|重復|永遠|repeat|forever', 'mr': 'रिपिट|फॉरएव्हेर', 'ru': 'повторять|бесконечно', 'sl': 'ponovi|neskončno', 'am': 'መድገሚያ|ለዘለአለም', 'et': 'korda|igavesti|lõpmatuseni', 'uk': 'завжди', 'pt_BR': 'repetir|repita', 'kk': 'қайталау|шексіз', 'br': 'arren|forever', 'km': 'ធ្វើ\u200bឡើង\u200bវិញ|រហូត', 'nb': 'gjenta|for alltid|repeat', 'bs': 'ponavljaj|zauvijek', 'eu': 'errepikatu|betiko', 'ast': 'repetir|pasiempres', 'gug': "ha'ejevy|tapia", 'or': 'ପୁନରାବୃତ୍ତି|forever', 'ja': 'くりかえす|repeat', 'nn': 'gjenta|for alltid|repeat', 'fr': 'répète|toujours', 'be': 'паўтараць|бясконца', 'gl': 'repetir|sempre', 'ar': 'كرر|للأبد', 'en_US': 'repeat|forever', 'sk': 'opakovať|stále', 'eo': 'ripetu|ĉiame|ĉiam', 'ca_valencia': 'repeteix|rep', 'ca': 'repeteix|rep', 'zh_CN': '重复|repeat|forever'}, +'ERR_MAXRECURSION':{'lt': 'viršytas didžiausias rekursijos lygis (%d).', 'sid': 'jawiidi wirro higate linxe (%d) roortino.', 'fi': 'suurin sallittu rekursion syvyys (%d) on saavutettu.', 'ro': 'Numărul maxim de recursii (%d) depășit.', 'lv': 'pārsniegts maksimālais rekursijas dziļums (%d).', 'kn': 'ಗರಿಷ್ಟ ಪುನರಾವರ್ತನಾ ಆಳವು (%d) ಮೀರಿದೆ.', 'hsb': 'Maksimalna rekursijna hłubokosć (%d) překročena.', 'es': 'se ha superado la profundidad máxima de recursividad (%d).', 'vec': 'suparà ła profondità recorsiva màsima (%d).', 'el': 'το μέγιστο βάθος αναδρομής (%d) ξεπεράστηκε.', 'sv': 'maximalt rekursionsdjup (%d) har överskridits.', 'hr': 'premašena je maksimalna dubina rekurzije (%d).', 'cs': 'překročena maximální hloubka rekurze (%d).', 'sr_Latn': 'Prekoračena je maksimalna dubina rekurzije(%d).', 'pl': 'przekroczono maksymalną głębokość (%d) rekursji.', 'he': 'הגעת לעומק הנסיגה/רקורסיה (%d) המרבי.', 'nl': 'maximum van recursiediepte (%d) overschreden.', 'de': 'Maximale Rekursionstiefe (%d) erreicht.', 'hi': 'अधिकतम रिकर्सन गहराई (%d) बढ़ गया.', 'ml': 'ഏറ്റവും കൂടിയ റിക്കര്\u200dഷന്\u200d വ്യാപ്തി (%d) വര്\u200dദ്ധിച്ചിരിയ്ക്കുന്നു.', 'id': 'kedalaman rekursi maksimum (%d) terlampaui.', 'gu': 'મહત્તમ રિકર્ઝન ઊંડાઈ (%d) ઓળંગાઈ.', 'ko': '최대 재귀 수준(%d)을 초과하였습니다.', 'zh_TW': '已超出最大遞迴深度 (%d)。', 'et': 'ületati suurim rekursioonisügavus (%d).', 'ru': 'превышена максимальная глубина рекурсии (%d).', 'sl': 'največja globina rekurzije (%d) presežena.', 'bn_IN': 'সর্বাধিক রিকারসিয়ন ডেপথ (%d) ছাড়িয়ে গেছে।', 'am': 'ከፍተኛውን መደጋገሚያ መጠን (%d) አልፏል', 'mr': 'मॅक्सिमम रिकर्शन डेप्थ (%d) वाढले.', 'uk': 'перевищено найбільшу глибину рекурсії (%d).', 'pt_BR': 'profundidade máxima de recursão (%d) excedida.', 'kk': 'рекурсияның максималды тереңдігінен (%d) асып кеттік.', 'te': 'గరిష్ట రికర్షన్ డెప్త్ (%d) మించెను.', 'br': "aet eo dreist an donder (%d) askizañ uc'hek .", 'is': 'hámarki endurkvæmrar dýptar (%d) náð.', 'km': 'ជម្រៅ\u200bកើត\u200bឡើង\u200b\u200bដដែល\u200bអតិបរមា (%d) បាន\u200bលើស។', 'nb': 'maksimum rekursjonsdypde (%d) overskredet.', 'bg': 'надхвърлена е максималната дълбочина на рекурсия (%d).', 'bs': 'maksimalna dubina rekurzija (%d) premašena.', 'eu': 'gehieneko errekurtsio-sakonera (%d) gainditu da.', 'hu': 'Elérve az újrahívási korlát (%d).', 'cy': "tu hwnt i'r uchafswm dychweliad dyfnder (%d).", 'ast': 'fondura máxima recursiva (%d) perpasada.', 'it': 'profondità ricorsiva massima (%d) superata.', 'tr': 'en çok yineleme derinliği (%d) aşıldı.', 'oc': 'prigondor (%d) de recursion maximum depassat.', 'da': 'maksimale gennemløb (%d) blev overskredet.', 'as': 'সৰ্বাধিক ৰিকাৰ্চন গভিৰতা (%d) অতিক্ৰম হৈছে।', 'gd': 'barrachd ath-chùrsaidh na tha ceadaichte (%d).', 'or': 'ସର୍ବାଧିକ ପୁନଃପୌନିକ ଘଭୀରତା (%d) ଅତିକ୍ରମ କରିଛି।', 'ja': '再帰の深さが最大値(%d)を越えました。', 'nn': 'maksimum rekursjonsdjupn (%d) er overskride.', 'fr': 'profondeur (%d) de récursion maximum dépassée.', 'pt': 'profundidade máxima (%d) excedida', 'gl': 'máxima profundidade recursiva (%d) sobrepasada.', 'en_US': 'maximum recursion depth (%d) exceeded.', 'sk': 'bola prekročená maximálna hĺbka rekurzie (%d).', 'sr': 'Прекорачена је максимална дубина рекурзије(%d).', 'zh_CN': '已超出最大递归深度 (%d)。', 'eo': 'superis la maksimuman rekuran profundon (%d).', 'ta': 'அதிகபட்ச மீள் நிகழ்வு அளவு (%d) மீறப்பட்டது.', 'ca_valencia': "s'ha superat la profunditat màxima de recursivitat (%d).", 'ga': 'sáraíodh an uasdoimhneacht athchúrsála (%d).', 'ca': "s'ha superat la profunditat màxima de recursivitat (%d).", 'be': 'перавышана максімальная глыбіня рэкурсіі (%d).', 'ug': 'ئەڭ يۇقىرى قايتىلاش چوڭقۇرلۇقى (%d) دىن ئېشىپ كەتتى.'}, +'TOMATO':{'lt': 'pomidorų', 'sid': 'timaatime', 'fi': 'tomaatti', 'lv': 'tomātu', 'kn': 'ಟೊಮ್ಯಾಟೊ', 'hsb': 'ćmowočerwjeny', 'tr': 'koyu kırmızı', 'es': 'tomate|jitomate', 'el': 'τοματί|tomato', 'hr': 'rajčica', 'cs': 'cihlová', 'sr_Latn': 'paradajz crvena', 'he': 'עגבניה', 'nl': 'tomaat', 'de': 'dunkelrot', 'hi': 'टमाटर', 'ml': 'തക്കാളി', 'gu': 'ટોમેટો', 'ko': '토마토', 'zh_TW': '蕃茄紅|茄紅|tomato', 'mr': 'टोमॅटो', 'ru': 'тёмно-красный', 'sl': 'paradižnikova', 'bn_IN': 'টোমাটো', 'am': 'ቲማቲም', 'et': 'tomatipunane|tomatikarva', 'uk': 'томатний', 'pt_BR': 'tomate', 'kk': 'күңгірт_қызыл', 'te': 'టొమాటో', 'br': 'tomatez', 'is': 'tómatur', 'km': 'ប៉េងប៉ោះ', 'nb': 'tomatrød|tomato', 'bs': 'paradajz', 'eu': 'tomatea', 'hu': 'világospiros', 'ast': 'tomate', 'gug': 'tomate', 'as': 'টমেটো', 'gd': 'tomàto', 'or': 'ଟୋମାଟୋ', 'ja': 'トマト|トマト色|tomate', 'nn': 'tomatraud|tomato', 'fr': 'tomate', 'be': 'тамат', 'gl': 'tomate', 'ar': 'طماطمي', 'en_US': 'tomato', 'sk': 'paradajková', 'sr': 'парадајз црвена', 'eo': 'tomata', 'ta': 'தக்காளி', 'ca_valencia': 'tomàquet|tomata', 'ca': 'tomàquet|tomata', 'zh_CN': '番茄红|tomato'}, +'RED':{'lt': 'raudona', 'th': 'แดง', 'sid': 'duumo', 'fi': 'punainen', 'ro': 'red|roșu', 'lv': 'sarkans', 'kn': 'ಕೆಂಪು', 'hsb': 'čerwjeny', 'tr': 'kırmızı', 'es': 'rojo', 'el': 'κόκκινο|red', 'hr': 'crvena', 'cs': 'červená', 'sr_Latn': 'crvena', 'he': 'אדום', 'nl': 'rood', 'de': 'rot', 'hi': 'लाल', 'ml': 'ചുവപ്പ്', 'gu': 'લાલ', 'ko': '빨간색', 'sd': 'ڳاڙهو', 'zh_TW': '紅|red', 'mr': 'लाल', 'sat': 'आराक्', 'ru': 'красный', 'sl': 'rdeča', 'sa_IN': 'वुज़ुल', 'bn_IN': 'লাল', 'am': 'ቀይ', 'et': 'punane', 'uk': 'червоний', 'pt_BR': 'vermelho', 'kk': 'қызыл', 'te': 'ఎరుపు', 'br': 'ruz', 'is': 'rautt', 'km': 'ក្រហម', 'nb': 'rød|red', 'kok': 'तांबडोTambddo', 'bs': 'crvena', 'eu': 'gorria', 'hu': 'piros|vörös', 'cy': 'coch', 'ast': 'bermeyu', 'gug': 'pytã', 'as': 'ৰঙা', 'gd': 'dearg', 'or': 'ଲାଲି', 'ja': '赤|red', 'nn': 'raud|red', 'fr': 'rouge', 'be': 'чырвоны', 'gl': 'vermello', 'ar': 'أحمر', 'en_US': 'red', 'sk': 'červená', 'sr': 'црвена', 'zh_CN': '红|红色|red', 'eo': 'ruĝa', 'ta': 'சிவப்பு', 'ca_valencia': 'roig|roig', 'ca': 'vermell|roig', 'dgo': 'सूहा', 'oc': 'roge'}, +'RECTANGLE':{'lt': 'stačiakampis', 'th': 'สี่เหลี่ยมผืนผ้า', 'sid': 'rekitaangile', 'fi': 'suorakulmio', 'ro': 'rectangle|dreptunghi', 'lv': 'taisnstūris', 'kn': 'ಆಯತ', 'hsb': 'praworóžk', 'tr': 'dikdörtgen', 'es': 'rectangulo|rectángulo', 'el': 'ορθογώνιο|rectangle', 'hr': 'pravokutnik', 'cs': 'obdélník', 'de': 'rechteck', 'mn': 'тэгш өнцөгт', 'he': 'מלבן', 'nl': 'rechthoek', 'hu': 'téglalap', 'hi': 'आयत', 'ml': 'ചതുര്ഭുജം', 'gu': 'લંબચોરસ', 'my': 'ထောင့်မှန်စတုဂံ', 'ko': '직사각형', 'zh_TW': '長方形|矩|rectangle', 'mr': 'आयत', 'ru': 'прямоугольник', 'sl': 'pravokotnik', 'bn_IN': 'আয়তক্ষেত্র', 'am': 'አራት ማእዘን', 'et': 'ristkülik', 'uk': 'прямокутник', 'pt_BR': 'retângulo', 'kk': 'тіктөртбұрыш', 'te': 'దీర్ఘ చతురస్రము', 'br': 'reizhkorneg', 'is': 'rétthyrningur', 'km': 'ចតុកោណកែង', 'bs': 'pravougao', 'eu': 'laukizuzena', 'cy': 'petryal', 'pa_IN': 'ਚਤੁਰਭੁਜ', 'ast': 'rectángulu', 'gug': 'rectángulo', 'vi': 'Hình chữ nhật', 'as': 'আয়ত', 'gd': 'ceart-cheàrnach', 'or': 'ଆୟତକ୍ଷେତ୍ର', 'ja': '長方形|rectangle', 'nn': 'rektangel|rectangle', 'nb': 'rektangel|rectangle', 'be': 'прамавугольнік', 'sq': 'drejtkëndësh', 'gl': 'rectángulo', 'ar': 'مستطيل', 'en_US': 'rectangle', 'sk': 'obdĺžnik', 'zh_CN': '矩形|矩|长方形|rectangle', 'eo': 'ortangulo', 'ta': 'செவ்வகம்', 'ne': 'आयात', 'si': 'ත්\u200dරිකෝණය', 'ug': 'تىك تۆت بۇلۇڭ', 'ka': 'მართკუთხედი'}, +'DEG':{'en_US': '°', 'zh_TW': '°|度', 'zh_CN': '°|度'}, +'FUCHSIA':{'lt': 'purpurinė', 'sid': 'daama|addama', 'fi': 'fuksia', 'lv': 'fuksiju|koši_rozā', 'kn': 'ನೇರಳೆಗೆಂಪು|ಕಡುಗೆಂಪು', 'hsb': 'magenta', 'tr': 'eflatun|mor', 'es': 'fucsia|magenta', 'el': 'φούξια|ματζέντα|fuchsia|magenta', 'hr': 'fuksija|magneta', 'cs': 'purpurová', 'sr_Latn': 'purpurna', 'he': "פוקסיה|מג׳נטה|מג'נטה", 'nl': 'fuchsia|foksia|magenta', 'de': 'magenta', 'ko': 'fuchsia|마젠타', 'zh_TW': '洋紅|紅紫|fuchsia|magenta', 'mr': 'फुशिआ|मजेंटा', 'ru': 'пурпурный', 'sl': 'fuksija|magentna', 'et': 'magenta|fuksiapunane', 'uk': 'пурпуровий', 'pt_BR': 'magenta', 'kk': 'қарақошқыл', 'br': 'fuchia|magenta', 'km': 'ស្វាយ\u200bខ្ចី|ស្វាយខ្ចី', 'is': 'blárauður', 'eu': 'magenta', 'hu': 'bíbor|ciklámen', 'ast': 'fucsia|maxenta', 'gug': 'fucsia|magenta', 'oc': 'fúcsia|magenta', 'ja': '明るい紫|フクシア|マゼンタ|fuchsia', 'nn': 'fuksia|magentaraud|magenta', 'nb': 'fuksia|magentarød|magenta', 'be': 'фуксія|пурпурны', 'gl': 'fucsia|maxenta', 'ar': 'فوشيا|أرجواني', 'en_US': 'fuchsia|magenta', 'sk': 'purpurová', 'sr': 'пурпурна', 'eo': 'fuksina', 'ca_valencia': 'fúcsia|magenta', 'ca': 'fúcsia|magenta', 'zh_CN': '紫红|紫红色|洋红|洋红色|fuchsia|magenta'}, +'FOR':{'fi': 'jokaiselle', 'kn': 'ಗಾಗಿ', 'xh': 'ukwenzela', 'hr': 'za', 'de': 'für', 'he': 'עבור', 'nl': 'voor', 'hu': 'fut', 'ml': 'വേണ്ടി', 'st': 'bakeng sa', 'ko': '유형', 'mr': 'फॉर', 'mai': "क'लेल", 'am': 'ለ', 'et': 'igale_elemendile', 'kk': 'үшін', 'te': 'కొరకు', 'af': 'vir', 'tg': 'барои', 'km': 'សម្រាប់', 'kok': 'खातीर', 'eu': 'honentzat', 'lv': 'katram', 'gug': 'haguã', 'vi': 'cho', 'lo': 'ສຳລັບ', 'gd': 'airson', 'rw': 'Cya', 'fr': 'pour', 'sq': 'për', 'om': 'kanaaf', 'ug': 'ئۈچۈن', 'sk': 'pre', 'br': 'evit', 'dgo': 'लेई', 'en_US': 'for', 'lt': 'ciklas.intervale|nuo.iki', 'th': 'สำหรับ', 'sid': 'ra', 'zu': 'kwe', 'ss': 'ye', 'mk': 'за', 'ro': 'for|pentru', 'pa_IN': 'ਲਈ', 'as': 'কাৰণে', 'hsb': 'za', 'es': 'para', 'el': 'γιαόσο|for', 'dz': 'དོན་ལུ།', 'tn': 'ya', 'cs': 'pro', 'sl': 'za', 'hi': 'के लिए', 'gu': 'માટે', 've': 'u itela', 'sd': 'لاءِ', 'zh_TW': '取|for', 'sat': 'ला़गितला़गित्', 'bo': 'ལ་སྤྱོད།', 'ru': 'для', 'nso': 'bakeng sa', 'bn_IN': 'জন্য', 'uk': 'для', 'kmr_Latn': 'ji bo', 'pt_BR': 'para', 'bn': 'জন্য', 'is': 'fyrir', 'bs': 'za', 'cy': 'ar gyfer', 'sw_TZ': 'kwa', 'ks': 'کےلئے', 'my': 'အတွက်', 'ast': 'pa', 'tr': 'için', 'brx': 'थाखाय', 'mn': 'хувьд', 'or': 'ପାଇଁ', 'ja': 'ひとつずつ|for', 'sa_IN': 'कृते', 'nr': 'kwe', 'fa': 'برای', 'gl': 'Para', 'ar': 'لـ', 'oc': 'per', 'zh_CN': '取|for', 'eo': 'por', 'ca_valencia': 'per.a', 'ne': 'लागि', 'ca': 'per.a', 'si': 'සඳහා', 'ts': 'eka', 'uz': 'uchun', 'mni': '-গীদমক', 'ka': '-'}, +'COS':{'eo': 'kos', 'sid': 'koose', 'fi': 'kosini', 'br': 'kos', 'en_US': 'cos', 'sat': 'COS', 'is': 'kós', 'kok': 'COS', 'sa_IN': 'COS', 'ar': 'جتا', 'el': 'συνημίτονο|cos', 'mr': 'कॉस', 'dgo': 'COS', 'tr': 'kos', 'zh_TW': '餘弦|cos', 'zh_CN': '余弦|cos', 'am': 'ኮስ', 'he': 'קוסינוס'}, +'MAX':{'lt': 'maks.|maksimumas', 'sid': 'jawa', 'fi': 'suurin', 'lv': 'maks', 'kn': 'ಗರಿಷ್ಟ', 'nn': 'maks|max', 'el': 'μέγιστο|max', 'hr': 'maks', 'he': 'מרבי', 'gu': 'મહત્તમ', 'ko': '최대값', 'sd': 'وڌِ ۾ وَڌِ', 'zh_TW': '最大值|最大|max', 'mr': 'मॅक्स', 'sat': 'ढेर उता़र,', 'ru': 'макс', 'sl': 'največ', 'sa_IN': 'ज़यादॆ खूते ज़यादॆ', 'bn_IN': 'সর্বোচ্চ', 'am': 'ከፍተኛ', 'et': 'max|maks', 'uk': 'макс', 'pt_BR': 'máximo|máx', 'kk': 'макс', 'te': 'గరిష్ట', 'br': "uc'hek", 'km': 'អតិបរមា', 'is': 'hám', 'kok': 'कमालGarixtt', 'cy': 'uchaf', 'tr': 'en çok', 'or': 'ସର୍ବାଧିକ', 'gd': 'as motha', 'ja': 'いちばん大きな数|最大値|最大|max', 'hsb': 'maks', 'nb': 'maks|max', 'be': 'макс', 'gl': 'máx', 'ar': 'الأقصى', 'en_US': 'max', 'eo': 'maks', 'ca_valencia': 'màx|max', 'ca': 'màx|max', 'dgo': 'बद्धोबद्ध', 'zh_CN': '最大值|max'}, +'DOTTED':{'lt': 'taškeliai', 'th': 'จุดประ', 'sid': 'bixxillisama', 'fi': 'pisteistä', 'ro': 'dotted|punctat', 'lv': 'punktēts', 'kn': 'ಚುಕ್ಕಿಯುಕ್ತ', 'hsb': 'dypkowany', 'tr': 'noktalı', 'es': 'punteado', 'vec': 'pontinà', 'el': 'διάστικτο|dotted', 'hr': 'istočkano', 'cs': 'tečkovaná', 'de': 'gepunktet', 'he': 'ניקוד', 'nl': 'gestippeld', 'hu': 'pontozott', 'hi': 'बिंदुयुक्त', 'ml': 'ഡോട്ടുള്ള', 'gu': 'ટપકાંવાળુ', 'my': 'အစက်', 'ko': '점선', 'sd': 'نقطن وارو', 'zh_TW': '點線|dotted', 'mr': 'डॉटेड', 'sat': 'टुडा़क् आकान', 'ru': 'пунктирная', 'sl': 'pikasto', 'sa_IN': 'डाटिड', 'bn_IN': 'ডটেড', 'am': 'ነጠብጣብ', 'et': 'punktiir', 'uk': 'пунктирна', 'pt_BR': 'pontilhado', 'kk': 'пунктирлі', 'te': 'చుక్కలు', 'br': 'pikennaoueg', 'is': 'punktalína', 'km': 'ចុចៗ', 'nb': 'prikket|dotted', 'kok': "डॉटडTiboyil'lem", 'bs': 'tačkasto', 'eu': 'puntukatua', 'cy': 'dotiog', 'pa_IN': 'ਬਿੰਦੂ', 'ast': 'puntiáu', 'gug': "kyta'i kuéra", 'vi': 'Chấm chấm', 'as': 'ডটেড', 'gd': 'dotagach', 'or': 'ବିନ୍ଦୁମୟ', 'ja': '点線|dotted', 'nn': 'prikka|dotted', 'fr': 'pointillé', 'be': 'пункцір', 'oc': 'puntejat', 'gl': 'punteado', 'ar': 'منقط', 'en_US': 'dotted', 'sk': 'Bodkované', 'zh_CN': '点线|dotted', 'eo': 'punkta', 'ta': 'புள்ளியிட்ட', 'ca_valencia': 'puntejat', 'ca': 'puntejat', 'si': 'තිත් වැටුනු', 'dgo': 'बिंदीदार', 'ug': 'چېكىت سىزىق', 'ka': 'წერტილოვანი'}, +'PT':{'lt': 'tšk', 'th': 'พอยต์', 'mk': 'точки', 'kk': 'пт', 'bn': 'পয়েন্ট', 'tg': 'пт', 'kok': 'पॉ', 'tr': 'nk', 'ks': 'پی ٹی', 'nr': 'i-pt', 'el': 'στιγμή|pt', 'dz': 'པི་ཊི།', 'hr': 'tč', 'or': 'ପିଟି', 'mn': 'цэг', 'tt': 'пт', 'be': 'пт', 'fa': 'نقطه', 'hi': 'पॉइंट', 'he': 'נק|נקודה', 'ar': 'نقطة', 'en_US': 'pt', 'ja': 'ポイント|pt', 'my': 'ပွိုင့်', 'zh_CN': '磅|pt', 'zh_TW': '點|pt', 'ru': 'пт', 'sl': 'tč', 'bn_IN': 'পয়েন্ট', 'am': 'ነጥብ', 'ka': 'პტ'}, +'OR':{'fi': 'tai', 'kn': 'ಅಥವ', 'xh': 'okanye', 'hr': 'ili', 'de': 'oder', 'he': 'או', 'nl': 'of', 'hu': 'vagy', 'st': 'kapa', 'ko': '또는', 'mr': 'ऑर', 'mai': 'अथवा', 'am': 'ወይም', 'et': 'või', 'kk': 'немесе', 'te': 'లేదా', 'af': 'of', 'tg': 'ё', 'fr': 'ou', 'kok': 'वा', 'eu': 'edo', 'lv': 'vai', 'gug': 'o', 'vi': 'hoặc', 'gd': 'no', 'rw': 'cyangwa', 'nn': 'eller|or', 'nb': 'eller|or', 'sq': 'ose', 'om': 'ykn', 'ug': 'ياكى', 'sk': 'alebo', 'br': 'pe', 'dgo': 'जां', 'en_US': 'or', 'lt': 'nors.vienas|arba|or', 'th': 'หรือ', 'sid': 'woy', 'zu': 'noma', 'ss': 'nome', 'ro': 'or|sau', 'pa_IN': 'ਜਾਂ', 'hsb': 'abo', 'es': 'o', 'el': 'ή|or', 'dz': 'ཡང་ན།', 'tn': 'kgotsa', 'cs': 'nebo', 'sl': 'ali', 'hi': 'या', 'gu': 'અથવા', 've': 'kana', 'or': 'କିମ୍ବା', 'sd': 'يا', 'zh_TW': '或|or', 'sat': 'आर', 'bo': 'ཡང་ན།', 'ru': 'или', 'nso': 'goba', 'bn_IN': 'অথবা', 'uk': 'або', 'pt_BR': 'ou', 'tt': 'яки', 'bn': 'অথবা', 'is': 'eða', 'bs': 'ili', 'sa_IN': 'वा', 'sw_TZ': 'au', 'ks': 'یا', 'my': 'သို့မဟုတ်', 'ast': 'o', 'tr': 'veya', 'brx': 'एबा', 'mn': 'буюу', 'lb': 'oder', 'ja': 'または|or', 'cy': 'neu', 'nr': 'namkha', 'fa': 'یا', 'gl': 'ou', 'ar': 'أو', 'oc': 'o', 'zh_CN': '或|or', 'eo': 'aŭ', 'ca_valencia': 'o', 'ne': 'वा', 'ca': 'o', 'si': 'හෝ', 'ts': 'kumbe', 'uz': 'yoki', 'mni': 'নত্রগা', 'ka': 'ან'}, +'ERR_NOTAPROGRAM':{'lt': 'Ar norite vykdyti šį teksto dokumentą?', 'sid': 'Tenne borrote bortaje harisa hasiratto?', 'fi': 'Haluatko suorittaa tämän tekstiasiakirjan?', 'ro': 'Doriți să rulați acest document text?', 'lv': 'Vai vēlaties izpildīt šo teksta dokumentu?', 'kn': 'ನೀವು ಈ ಪಠ್ಯ ದಸ್ತಾವೇಜನ್ನು ಚಲಾಯಿಸಲು ಬಯಸುವಿರಾ?', 'hsb': 'Chceće tutón tekstowy dokument wuwjesć?', 'tr': 'Bu metin belgesini çalıştırmak istiyor musunuz?', 'es': '¿Quiere ejecutar este documento de texto?', 'vec': "Vuto far partir 'sto documento de testo?", 'el': 'Θέλετε να τρέξετε αυτό το έγγραφο κειμένου;', 'sv': 'Vill du köra detta textdokument?', 'hr': 'Želite li pokrenuti ovaj tekstni dokument?', 'cs': 'Přejete si spustit tento textový dokument?', 'sr_Latn': 'Želite li da izvršite naredbe iz dokumenta?', 'pl': 'Czy na pewno chcesz uruchomić ten dokument tekstowy?', 'he': 'האם ברצונך להריץ מסמך טקסט זה?', 'nl': 'Wilt u dit tekstdocument uitvoeren?', 'de': 'Möchten Sie dieses Textdokument ausführen?', 'hi': 'क्या आप इस पाठ दस्तावेज़ को चलाना चाहते हैं?', 'ml': 'നിങ്ങള്\u200dക്കു് ഈ രേഖ നടപ്പിലാക്കണമോ?', 'id': 'Apakah Anda ingin menjalankan dokumen teks ini?', 'gu': 'શું તમે આ લખાણ દસ્તાવેજને ચલાવવા માંગો છો?', 'ko': '이 텍스트 문서에서 실행하시겠습니까?', 'zh_TW': '您是否要執行這份文字文件?', 'et': 'Kas soovid seda tekstidokumenti käivitada?', 'ru': 'Выполнить этот текстовый документ?', 'sl': 'Želite zagnati ta besedilni dokument?', 'bn_IN': 'অাপনি কি এই পাঠ্য নথি চালাতে চান?', 'am': 'ይህን የጽሁፍ ሰነድ ማስኬድ ይፈልጋሉ?', 'mr': 'तुम्हाला हे मजकूर दस्तऐवज चालवायचे?', 'uk': 'Виконати цей текстовий документ?', 'pt_BR': 'Deseja executar este documento de texto?', 'kk': 'Бұл мәтіндік құжатты орындау керек пе?', 'te': 'మీరు యీ పాఠం పత్రమును నడుపాలి అనుకొనుచున్నారా?', 'br': "Ha fellout a ra deoc'h erounit an teul mod testenn-mañ ?", 'is': 'Viltu keyra þetta textaskjal?', 'km': 'តើ\u200bអ្នក\u200bចង់\u200bដំណើរការ\u200bឯកសារ\u200bនេះ?', 'nb': 'Vil du kjøre dette tekstdokumentet?', 'bg': 'Желаете ли да се изпълни този текстов документ?', 'bs': 'Da li želite pokrenuti ovaj tekstualni dokument?', 'eu': 'Testu-dokumentu hau exekutatu nahi duzu?', 'hu': 'Szeretné futtatni ezt a szöveges dokumentumot?', 'cy': 'Hoffech chi redeg y ddogfen testun hon?', 'ast': '¿Quier executar esti documentu de testu?', 'it': 'Vuoi eseguire questo documento di testo?', 'gug': "¿Remomba'apo sépa ko documento moñe'ẽrãgui?", 'oc': 'Volètz executar aqueste document tèxte ?', 'da': 'Ønsker du at køre dette tekstdokument?', 'as': 'আপুনি এই লিখনী দস্তাবেজ চলাব বিচাৰে নে?', 'gd': 'A bheil thu airson an sgrìobhainn teacsa seo a ruith?', 'or': 'ଆପଣ ଏହି ପାଠ୍ଯ ଦଲିଲ ଚଲାଇବାକୁ ଚାହୁଁଛନ୍ତି କି?', 'ja': 'このテキスト文書をプログラムとして実行しますか?', 'nn': 'Vil du køyra dette tekstdokumentet?', 'fr': 'Souhaitez-vous exécuter ce document texte ?', 'pt': 'Deseja executar este documento de texto?', 'gl': 'Quere executar este documento de texto?', 'ar': 'أتريد تشغيل هذا المستند النصّيّ؟', 'en_US': 'Do you want to run this text document?', 'sk': 'Spustiť tento textový dokument?', 'sr': 'Желите ли да извршите наредбе из документа?', 'zh_CN': '是否希望运行该文本文档?', 'eo': 'Ĉu vi volas ruli ĉi tiun dokumenton?', 'ta': 'இந்த உரை ஆவணத்தை இயக்க வேண்டுமா?', 'ca_valencia': 'Voleu executar este document de text?', 'ga': 'An bhfuil fonn ort an cháipéis téacs a chur ar siúl?', 'ca': 'Voleu executar aquest document de text?', 'be': 'Выканаць гэты тэкставы дакумент?', 'ug': 'بۇ تېكىست پۈتۈكنى ئىجرا قىلامسىز؟'}, +'MAROON':{'lt': 'kaštoninė', 'sid': 'maarone', 'fi': 'punaruskea', 'ro': 'maroon|maro', 'lv': 'tumšsarkans', 'kn': 'ಕಂದುಗೆಂಪು', 'hsb': 'čerwjenobruny', 'tr': 'bordo', 'es': 'guinda|granate', 'vec': 'granada', 'el': 'καστανέρυθρο|maroon', 'hr': 'kestenjasta', 'cs': 'kaštanová', 'sr_Latn': 'kestenasta', 'he': 'חוםכהה', 'nl': 'kastanjebruin', 'de': 'rotbraun', 'hi': 'मरून', 'ml': 'മറൂണ്\u200d', 'gu': 'મરૂન', 'ko': '적갈색', 'zh_TW': '咖啡|黑褐|紅棕|maroon', 'mr': 'मरून', 'ru': 'бордовый', 'sl': 'kostanjeva', 'bn_IN': 'মেরুন', 'am': 'የሸክላ ቀለም', 'et': 'kastanpruun', 'uk': 'каштановий', 'pt_BR': 'castanho', 'kk': 'қызыл-қоңыр', 'te': 'మెరూన్', 'br': 'gell', 'is': 'ljósbrúnt', 'km': 'ត្នោត\u200bចាស់', 'nb': 'rødbrun|maroon', 'bs': 'kestenjasta', 'eu': 'granatea', 'hu': 'sötétbarna', 'cy': 'marŵn', 'ast': 'marrón', 'gug': 'marrón', 'as': 'কৃষ্ণৰক্তবৰ্ণ', 'gd': 'ciar-dhonn', 'or': 'ଖଇରିଆ', 'ja': 'くり色|マルーン|maroon', 'nn': 'raudbrun|maroon', 'fr': 'marron', 'be': 'бардовы', 'gl': 'granate', 'ar': 'كستنائي', 'en_US': 'maroon', 'sk': 'gaštanová', 'sr': 'кестенаста', 'eo': 'karmezina', 'ta': 'மரூன்', 'ca_valencia': 'granat|grana', 'ca': 'granat|grana', 'zh_CN': '咖啡|黑褐|红棕|栗色|maroon'}, +'CHOCOLATE':{'lt': 'šokolado', 'sid': 'chokolete', 'fi': 'suklaa', 'ro': 'chocolate|ciocolatiu', 'lv': 'gaišbrūns', 'kn': 'ಚಾಕೋಲೇಟ್', 'hsb': 'ćmowobruny', 'el': 'σοκολατί|chocolate', 'hr': 'čokoladna', 'cs': 'čokoládová', 'sr_Latn': 'čokolada', 'he': 'שוקולד', 'nl': 'chocolade', 'de': 'dunkelbraun', 'hi': 'चॉकलेट', 'ml': 'ചോക്കോളേറ്റ്', 'gu': 'ચોકલેટ', 'ko': '초콜릿색', 'zh_TW': '巧克力|褐|chocolate', 'mr': 'चॉकोलेट', 'ru': 'шоколадный', 'sl': 'čokoladna', 'bn_IN': 'চকোলেট', 'am': 'ጥቁር ቡናማ', 'et': 'šokolaadipruun|šokolaadikarva', 'uk': 'шоколадний', 'kk': 'шоколад_түсті', 'te': 'చాకోలేట్', 'br': 'chokolad', 'is': 'súkkulaði', 'km': 'សូកូឡា', 'nb': 'sjokoladebrun|chocolate', 'bs': 'čokolada', 'eu': 'txokolatea', 'hu': 'világosbarna', 'cy': 'siocled', 'tr': 'çikolata', 'as': 'চকোলেট', 'gd': 'dath na seòclaid', 'or': 'ଚକୋଲେଟ', 'ja': '薄い茶色|チョコレート|チョコレート色|chocolate', 'nn': 'sjokoladebrun|chocolate', 'fr': 'chocolat', 'be': 'шакаладны', 'ar': 'شوكولاتي', 'en_US': 'chocolate', 'sk': 'čokoládová', 'sr': 'чоколада', 'eo': 'ĉokolada', 'ta': 'சாக்லேட்', 'ca_valencia': 'xocolata|xocolate', 'ca': 'xocolata|xocolate', 'zh_CN': '巧克力|褐色|chocolate'}, +'WHITE':{'lt': 'balta', 'sid': 'waajjo', 'fi': 'valkoinen', 'ro': 'white|alb', 'lv': 'balts', 'kn': 'ಬಿಳಿ', 'hsb': 'běły', 'tr': 'beyaz', 'es': 'blanco', 'el': 'λευκό|white', 'hr': 'bijela', 'cs': 'bílá', 'sr_Latn': 'bela', 'he': 'לבן', 'nl': 'wit', 'de': 'weiß', 'hi': 'सफ़ेद', 'ml': 'വെള്ള', 'gu': 'સફેદ', 'ko': '흰색', 'zh_TW': '白|white', 'mr': 'पांढरा', 'ru': 'белый', 'sl': 'bela', 'sa_IN': 'सफ़ीद', 'bn_IN': 'সাদা', 'am': 'ነጭ', 'et': 'valge', 'uk': 'білий', 'pt_BR': 'branco', 'kk': 'ақ', 'te': 'తెలుపు', 'br': 'gwenn', 'is': 'hvítt', 'km': 'ស', 'nb': 'hvit|white', 'bs': 'bijela', 'eu': 'zuria', 'hu': 'fehér', 'cy': 'gwyn', 'pa_IN': 'ਚਿੱਟਾ', 'ast': 'blancu', 'gug': 'morotĩ', 'as': 'বগা', 'gd': 'geal', 'or': 'ଧଳା', 'ja': '白|white', 'nn': 'kvit|white', 'fr': 'blanc', 'be': 'белы', 'gl': 'branco', 'ar': 'أبيض', 'en_US': 'white', 'sk': 'Biela', 'sr': 'бела', 'zh_CN': '白|白色|white', 'eo': 'blanka', 'ta': 'வெள்ளை', 'ca_valencia': 'blanc', 'ne': 'सेतो', 'ca': 'blanc', 'si': 'සුදු', 'oc': 'blanc', 'ka': 'თეთრი'}, +} diff -Nru libreoffice-l10n-5.4.3~rc2/libreofficekit/source/gtk/lokdocview.cxx libreoffice-l10n-5.4.4~rc2/libreofficekit/source/gtk/lokdocview.cxx --- libreoffice-l10n-5.4.3~rc2/libreofficekit/source/gtk/lokdocview.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/libreofficekit/source/gtk/lokdocview.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -178,10 +178,8 @@ /// Cached document type, returned by getDocumentType(). LibreOfficeKitDocumentType m_eDocumentType; - /** - * Contains a freshly set zoom level: logic size of a tile. - * It gets reset back to 0 when LOK was informed about this zoom change. - */ + /// Contains a freshly set zoom level: logic size of a tile. + /// It gets reset back to 0 when LOK was informed about this zoom change. int m_nTileSizeTwips; GdkRectangle m_aVisibleArea; diff -Nru libreoffice-l10n-5.4.3~rc2/lotuswordpro/source/filter/bento.hxx libreoffice-l10n-5.4.4~rc2/lotuswordpro/source/filter/bento.hxx --- libreoffice-l10n-5.4.3~rc2/lotuswordpro/source/filter/bento.hxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/lotuswordpro/source/filter/bento.hxx 2017-12-12 17:45:07.000000000 +0000 @@ -369,7 +369,7 @@ { public: // Internal methods CBenTypeName(LtcBenContainer * pContainer, BenObjectID ObjectID, - CBenObject * pPrevObject, const OString& rName, + CUtListElmt * pPrevObject, const OString& rName, CUtListElmt * pPrevNamedObjectListElmt) : CBenNamedObject(pContainer, ObjectID, pPrevObject, rName, pPrevNamedObjectListElmt) { ; } diff -Nru libreoffice-l10n-5.4.3~rc2/lotuswordpro/source/filter/tocread.cxx libreoffice-l10n-5.4.4~rc2/lotuswordpro/source/filter/tocread.cxx --- libreoffice-l10n-5.4.3~rc2/lotuswordpro/source/filter/tocread.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/lotuswordpro/source/filter/tocread.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -306,8 +306,7 @@ return BenErr_DuplicateName; } - CBenObject * pPrevObject = static_cast( cpContainer-> - GetObjects().GetLast()); + CUtListElmt* pPrevObject = cpContainer->GetObjects().GetLast(); if (PropertyID == BEN_PROPID_GLOBAL_PROPERTY_NAME) pObject = new CBenPropertyName(cpContainer, ObjectID, diff -Nru libreoffice-l10n-5.4.3~rc2/Makefile.in libreoffice-l10n-5.4.4~rc2/Makefile.in --- libreoffice-l10n-5.4.3~rc2/Makefile.in 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/Makefile.in 2017-12-12 17:45:07.000000000 +0000 @@ -345,9 +345,10 @@ rm -rf $(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app/Contents/Frameworks/LibreOfficePython.framework/Versions/[1-9]*/lib/python[1-9]*/config-[1-9]* # ifneq ($(ENABLE_MACOSX_SANDBOX),) -# Remove the gengal binary and unopkg script that we don't want +# Remove the gengal binary and unopkg and unoinfo scripts that we don't want rm $(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app/Contents/MacOS/gengal rm $(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app/Contents/MacOS/unopkg + rm $(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app/Contents/MacOS/unoinfo endif # # Then use the macosx-codesign-app-bundle script diff -Nru libreoffice-l10n-5.4.3~rc2/oox/source/crypto/AgileEngine.cxx libreoffice-l10n-5.4.4~rc2/oox/source/crypto/AgileEngine.cxx --- libreoffice-l10n-5.4.3~rc2/oox/source/crypto/AgileEngine.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/oox/source/crypto/AgileEngine.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -130,7 +130,7 @@ std::vector hash(mInfo.hashSize, 0); hashCalc(hash, hashInput, mInfo.hashAlgorithm); - if (std::equal (hash.begin(), hash.end(), hashValue.begin()) ) + if (hash.size() <= hashValue.size() && std::equal(hash.begin(), hash.end(), hashValue.begin())) { std::vector& encryptedKeyValue = mInfo.encryptedKeyValue; calculateBlock(constBlock3, hashFinal, encryptedKeyValue, mKey); diff -Nru libreoffice-l10n-5.4.3~rc2/oox/source/crypto/CryptTools.cxx libreoffice-l10n-5.4.4~rc2/oox/source/crypto/CryptTools.cxx --- libreoffice-l10n-5.4.3~rc2/oox/source/crypto/CryptTools.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/oox/source/crypto/CryptTools.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -34,9 +34,12 @@ EVP_CIPHER_CTX_cleanup( &mContext ); #endif #if USE_TLS_NSS - PK11_DestroyContext( mContext, PR_TRUE ); - PK11_FreeSymKey( mSymKey ); - SECITEM_FreeItem( mSecParam, PR_TRUE ); + if (mContext) + PK11_DestroyContext(mContext, PR_TRUE); + if (mSymKey) + PK11_FreeSymKey(mSymKey); + if (mSecParam) + SECITEM_FreeItem(mSecParam, PR_TRUE); #endif } @@ -101,6 +104,9 @@ keyItem.len = key.size(); mSymKey = PK11_ImportSymKey(pSlot, mechanism, PK11_OriginUnwrap, CKA_ENCRYPT, &keyItem, nullptr); + if (!mSymKey) + throw css::uno::RuntimeException("NSS SymKey failure", css::uno::Reference()); + mSecParam = PK11_ParamFromIV(mechanism, pIvItem); mContext = PK11_CreateContextBySymKey(mechanism, operation, mSymKey, mSecParam); } diff -Nru libreoffice-l10n-5.4.3~rc2/oox/source/crypto/Standard2007Engine.cxx libreoffice-l10n-5.4.4~rc2/oox/source/crypto/Standard2007Engine.cxx --- libreoffice-l10n-5.4.3~rc2/oox/source/crypto/Standard2007Engine.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/oox/source/crypto/Standard2007Engine.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -113,6 +113,8 @@ buffer[i] ^= hash[i]; hash = comphelper::Hash::calculateHash(buffer.data(), buffer.size(), comphelper::HashType::SHA1); + if (mKey.size() > hash.size()) + return false; std::copy(hash.begin(), hash.begin() + mKey.size(), mKey.begin()); return true; diff -Nru libreoffice-l10n-5.4.3~rc2/oox/source/drawingml/customshapegeometry.cxx libreoffice-l10n-5.4.4~rc2/oox/source/drawingml/customshapegeometry.cxx --- libreoffice-l10n-5.4.3~rc2/oox/source/drawingml/customshapegeometry.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/oox/source/drawingml/customshapegeometry.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -929,7 +929,7 @@ { public: Path2DContext( ContextHandler2Helper& rParent, const AttributeList& rAttribs, CustomShapeProperties& rCustomShapeProperties, std::vector< css::drawing::EnhancedCustomShapeSegment >& rSegments, Path2D& rPath2D ); - virtual ~Path2DContext() override; + virtual void onEndElement() override; virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const ::oox::AttributeList& rAttribs ) override; @@ -952,7 +952,7 @@ rPath2D.extrusionOk = rAttribs.getBool( XML_extrusionOk, true ); } -Path2DContext::~Path2DContext() +void Path2DContext::onEndElement() { EnhancedCustomShapeSegment aNewSegment; switch ( mrPath2D.fill ) diff -Nru libreoffice-l10n-5.4.3~rc2/oox/source/drawingml/fillproperties.cxx libreoffice-l10n-5.4.4~rc2/oox/source/drawingml/fillproperties.cxx --- libreoffice-l10n-5.4.3~rc2/oox/source/drawingml/fillproperties.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/oox/source/drawingml/fillproperties.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -378,7 +378,7 @@ ::std::swap( aGradient.StartColor, aGradient.EndColor ); ::std::swap( nStartTrans, nEndTrans ); } - else + else if (!maGradientProps.maGradientStops.empty()) { // A copy of the gradient stops for local modification GradientFillProperties::GradientStopMap aGradientStops(maGradientProps.maGradientStops); diff -Nru libreoffice-l10n-5.4.3~rc2/oox/source/drawingml/table/tableproperties.cxx libreoffice-l10n-5.4.4~rc2/oox/source/drawingml/table/tableproperties.cxx --- libreoffice-l10n-5.4.3~rc2/oox/source/drawingml/table/tableproperties.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/oox/source/drawingml/table/tableproperties.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -58,7 +58,8 @@ xTableRows->insertByIndex( 0, rvTableRows.size() - 1 ); std::vector< TableRow >::const_iterator aTableRowIter( rvTableRows.begin() ); uno::Reference< container::XIndexAccess > xIndexAccess( xTableRows, UNO_QUERY_THROW ); - for ( sal_Int32 n = 0; n < xIndexAccess->getCount(); n++ ) + sal_Int32 nCols = std::min(xIndexAccess->getCount(), rvTableRows.size()); + for (sal_Int32 n = 0; n < nCols; ++n) { Reference< XPropertySet > xPropSet( xIndexAccess->getByIndex( n ), UNO_QUERY_THROW ); xPropSet->setPropertyValue( "Height", Any( static_cast< sal_Int32 >( aTableRowIter->getHeight() / 360 ) ) ); @@ -72,7 +73,8 @@ xTableColumns->insertByIndex( 0, rvTableGrid.size() - 1 ); std::vector< sal_Int32 >::const_iterator aTableGridIter( rvTableGrid.begin() ); uno::Reference< container::XIndexAccess > xIndexAccess( xTableColumns, UNO_QUERY_THROW ); - for ( sal_Int32 n = 0; n < xIndexAccess->getCount(); n++ ) + sal_Int32 nCols = std::min(xIndexAccess->getCount(), rvTableGrid.size()); + for (sal_Int32 n = 0; n < nCols; ++n) { Reference< XPropertySet > xPropSet( xIndexAccess->getByIndex( n ), UNO_QUERY_THROW ); xPropSet->setPropertyValue( "Width", Any( static_cast< sal_Int32 >( *aTableGridIter++ / 360 ) ) ); diff -Nru libreoffice-l10n-5.4.3~rc2/oox/source/drawingml/textbody.cxx libreoffice-l10n-5.4.4~rc2/oox/source/drawingml/textbody.cxx --- libreoffice-l10n-5.4.3~rc2/oox/source/drawingml/textbody.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/oox/source/drawingml/textbody.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -96,6 +96,9 @@ { assert(isEmpty()); + if (maParagraphs.empty()) + return; + // Apply character properties TextListStyle aCombinedTextStyle; aCombinedTextStyle.apply( *pMasterTextListStylePtr ); diff -Nru libreoffice-l10n-5.4.3~rc2/oox/source/export/chartexport.cxx libreoffice-l10n-5.4.4~rc2/oox/source/export/chartexport.cxx --- libreoffice-l10n-5.4.3~rc2/oox/source/export/chartexport.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/oox/source/export/chartexport.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -1038,26 +1038,6 @@ pFS->endElement( FSNS( XML_c, XML_legend ) ); } -namespace { - -/** - * nRotation is a 100th of a degree and the return value is - * in a 60,000th of a degree - * - * Also rotation is in opposite directions so multiply with -1 - */ -OString calcRotationValue(sal_Int32 nRotation) -{ - if (nRotation > 18000) // 180 degree - { - nRotation -= 36000; - } - nRotation *= -600; - return OString::number(nRotation); -} - -} - void ChartExport::exportTitle( const Reference< XShape >& xShape ) { OUString sText; @@ -1090,7 +1070,7 @@ pFS->singleElement( FSNS( XML_a, XML_bodyPr ), XML_vert, sWritingMode, - XML_rot, calcRotationValue(nRotation).getStr(), + XML_rot, oox::drawingml::calcRotationValue(nRotation).getStr(), FSEND ); // TODO: lstStyle pFS->singleElement( FSNS( XML_a, XML_lstStyle ), diff -Nru libreoffice-l10n-5.4.3~rc2/oox/source/export/drawingml.cxx libreoffice-l10n-5.4.4~rc2/oox/source/export/drawingml.cxx --- libreoffice-l10n-5.4.3~rc2/oox/source/export/drawingml.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/oox/source/export/drawingml.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -1186,11 +1186,17 @@ awt::Point aPos = rXShape->getPosition(); awt::Size aSize = rXShape->getSize(); + bool bPositiveY = true; + bool bPositiveX = true; + if (m_xParent.is()) { awt::Point aParentPos = m_xParent->getPosition(); aPos.X -= aParentPos.X; aPos.Y -= aParentPos.Y; + + bPositiveX = aParentPos.X > 0; + bPositiveY = aParentPos.Y > 0; } if ( aSize.Width < 0 ) @@ -1208,6 +1214,17 @@ aPos.X-=(1-faccos*cos(nRotation*F_PI18000))*aSize.Width/2-facsin*sin(nRotation*F_PI18000)*aSize.Height/2; aPos.Y-=(1-faccos*cos(nRotation*F_PI18000))*aSize.Height/2+facsin*sin(nRotation*F_PI18000)*aSize.Width/2; } + else if(nRotation == 18000) + { + if (!bFlipV && bPositiveX) + { + aPos.X -= aSize.Width; + } + if (!bFlipH && bPositiveY) + { + aPos.Y -= aSize.Height; + } + } // The RotateAngle property's value is independent from any flipping, and that's exactly what we need here. uno::Reference xPropertySet(rXShape, uno::UNO_QUERY); @@ -2098,6 +2115,8 @@ if( !xXText.is() ) return; + sal_Int32 nTextRotateAngle = 0; + #define DEFLRINS 254 #define DEFTBINS 127 sal_Int32 nLeft, nRight, nTop, nBottom; @@ -2137,7 +2156,6 @@ { for ( sal_Int32 i = 0, nElems = aProps.getLength(); i < nElems; ++i ) { - sal_Int32 nTextRotateAngle = 0; if ( aProps[ i ].Name == "TextPreRotateAngle" && ( aProps[ i ].Value >>= nTextRotateAngle ) ) { if ( nTextRotateAngle == -90 ) @@ -2194,6 +2212,7 @@ XML_anchor, sVerticalAlignment, XML_anchorCtr, bHorizontalCenter ? "1" : nullptr, XML_vert, sWritingMode, + XML_rot, (nTextRotateAngle != 0) ? oox::drawingml::calcRotationValue( nTextRotateAngle * 100 ).getStr() : nullptr, FSEND ); if( !presetWarp.isEmpty()) { @@ -2807,7 +2826,7 @@ aProperties[i].Value >>= aTransformations; } mpFS->startElementNS( XML_a, nTokenId, XML_idx, I32S( nIdx ), FSEND ); - WriteColor( sSchemeClr, aTransformations ); + WriteColor(sSchemeClr, aTransformations); mpFS->endElementNS( XML_a, nTokenId ); } else @@ -3448,16 +3467,22 @@ return OUStringToOString( aCachedItem->second, RTL_TEXTENCODING_UTF8 ); OUString sFileName = "media/hdphoto" + OUString::number( mnWdpImageCounter++ ) + ".wdp"; - uno::Reference< io::XOutputStream > xOutStream = - mpFB->openFragmentStream( "word/" + sFileName, - "image/vnd.ms-photo" ); + Reference< XOutputStream > xOutStream = mpFB->openFragmentStream( OUStringBuffer() + .appendAscii( GetComponentDir() ) + .append( "/" ) + .append( sFileName ) + .makeStringAndClear(), + "image/vnd.ms-photo" ); OUString sId; xOutStream->writeBytes( rPictureData ); xOutStream->closeOutput(); sId = mpFB->addRelation( mpFS->getOutputStream(), oox::getRelationship(Relationship::HDPHOTO), - sFileName ); + OUStringBuffer() + .appendAscii( GetRelationCompPrefix() ) + .append( sFileName ) + .makeStringAndClear() ); maWdpCache[rFileId] = sId; return OUStringToOString( sId, RTL_TEXTENCODING_UTF8 ); diff -Nru libreoffice-l10n-5.4.3~rc2/oox/source/ppt/presentationfragmenthandler.cxx libreoffice-l10n-5.4.4~rc2/oox/source/ppt/presentationfragmenthandler.cxx --- libreoffice-l10n-5.4.3~rc2/oox/source/ppt/presentationfragmenthandler.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/oox/source/ppt/presentationfragmenthandler.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -61,6 +61,22 @@ namespace oox { namespace ppt { +static std::map PredefinedClrTokens = +{ + //{ dk1, XML_dk1 }, + //{ lt1, XML_lt1 }, + { dk2, XML_dk2 }, + { lt2, XML_lt2 }, + { accent1, XML_accent1 }, + { accent2, XML_accent2 }, + { accent3, XML_accent3 }, + { accent4, XML_accent4 }, + { accent5, XML_accent5 }, + { accent6, XML_accent6 }, + { hlink, XML_hlink }, + { folHlink, XML_folHlink } +}; + PresentationFragmentHandler::PresentationFragmentHandler( XmlFilterBase& rFilter, const OUString& rFragmentPath ) throw() : FragmentHandler2( rFilter, rFragmentPath ) , mpTextListStyle( new TextListStyle ) @@ -140,6 +156,65 @@ } } +void PresentationFragmentHandler::saveThemeToGrabBag(oox::drawingml::ThemePtr pThemePtr, const OUString& sTheme) +{ + if (!pThemePtr) + return; + + try + { + uno::Reference xDocProps(getFilter().getModel(), uno::UNO_QUERY); + if (xDocProps.is()) + { + uno::Reference xPropsInfo = xDocProps->getPropertySetInfo(); + + const OUString aGrabBagPropName = "InteropGrabBag"; + if (xPropsInfo.is() && xPropsInfo->hasPropertyByName(aGrabBagPropName)) + { + // get existing grab bag + comphelper::SequenceAsHashMap aGrabBag(xDocProps->getPropertyValue(aGrabBagPropName)); + + uno::Sequence aTheme(1); + comphelper::SequenceAsHashMap aThemesHashMap; + + // create current theme + uno::Sequence aCurrentTheme(PredefinedClrSchemeId::Count); + + ClrScheme rClrScheme = pThemePtr->getClrScheme(); + for (int nId = PredefinedClrSchemeId::dk2; nId != PredefinedClrSchemeId::Count; nId++) + { + sal_uInt32 nToken = PredefinedClrTokens[static_cast(nId)]; + const OUString& sName = PredefinedClrNames[static_cast(nId)]; + sal_Int32 nColor = 0; + + rClrScheme.getColor(nToken, nColor); + const uno::Any& rColor = uno::makeAny(nColor); + + aCurrentTheme[nId].Name = sName; + aCurrentTheme[nId].Value = rColor; + } + + // add new theme to the sequence + aTheme[0].Name = sTheme; + const uno::Any& rCurrentTheme = makeAny(aCurrentTheme); + aTheme[0].Value = rCurrentTheme; + + aThemesHashMap << aTheme; + + // put the new items + aGrabBag.update(aThemesHashMap); + + // put it back to the document + xDocProps->setPropertyValue(aGrabBagPropName, uno::Any(aGrabBag.getAsConstPropertyValueList())); + } + } + } + catch (const uno::Exception&) + { + SAL_WARN("oox", "oox::ppt::PresentationFragmentHandler::saveThemeToGrabBag, Failed to save grab bag"); + } +} + void PresentationFragmentHandler::importSlide(sal_uInt32 nSlide, bool bFirstPage, bool bImportNotesPage) { PowerPointImport& rFilter = dynamic_cast< PowerPointImport& >( getFilter() ); @@ -229,6 +304,7 @@ UNO_QUERY_THROW)); rThemes[ aThemeFragmentPath ] = pThemePtr; pThemePtr->setFragment(xDoc); + saveThemeToGrabBag(pThemePtr, aThemeFragmentPath); } else { diff -Nru libreoffice-l10n-5.4.3~rc2/oox/source/vml/vmlformatting.cxx libreoffice-l10n-5.4.4~rc2/oox/source/vml/vmlformatting.cxx --- libreoffice-l10n-5.4.3~rc2/oox/source/vml/vmlformatting.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/oox/source/vml/vmlformatting.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -311,7 +311,8 @@ { switch ( state ) { - case MOVE_REL: // 2* params -> param count reset + case MOVE_REL: + aCoordList.resize(2, 0); // 2* params -> param count reset if ( rPointLists.size() > 0 && rPointLists.back().size() > 0 ) { rPointLists.push_back( ::std::vector< Point >() ); @@ -323,18 +324,20 @@ nParamCount = 2; break; - case MOVE_ABS: // 2 params -> no param count reset + case MOVE_ABS: + aCoordList.resize(2, 0); // 2 params -> no param count reset if ( rPointLists.size() > 0 && rPointLists.back().size() > 0 ) { rPointLists.push_back( ::std::vector< Point >() ); rFlagLists.push_back( ::std::vector< PolygonFlags >() ); } - rPointLists.back().push_back( Point( (aCoordList[ 0 ]), (aCoordList.size() > 1 ? aCoordList[ 1 ] : 0) ) ); + rPointLists.back().push_back( Point( (aCoordList[ 0 ]), aCoordList[ 1 ] ) ); rFlagLists.back().push_back( PolygonFlags_NORMAL ); aCurrentPoint = rPointLists.back().back(); break; - case BEZIER_REL: // 6* params -> param count reset + case BEZIER_REL: + aCoordList.resize(6, 0); // 6* params -> param count reset rPointLists.back().push_back( Point( aCurrentPoint.X + aCoordList[ 0 ], aCurrentPoint.Y + aCoordList[ 1 ] ) ); rPointLists.back().push_back( Point( aCurrentPoint.X + aCoordList[ 2 ], @@ -348,7 +351,8 @@ nParamCount = 6; break; - case BEZIER_ABS: // 6* params -> param count reset + case BEZIER_ABS: + aCoordList.resize(6, 0); // 6* params -> param count reset rPointLists.back().push_back( Point( aCoordList[ 0 ], aCoordList[ 1 ] ) ); rPointLists.back().push_back( Point( aCoordList[ 2 ], aCoordList[ 3 ] ) ); rPointLists.back().push_back( Point( aCoordList[ 4 ], aCoordList[ 5 ] ) ); @@ -359,7 +363,8 @@ nParamCount = 6; break; - case LINE_REL: // 2* params -> param count reset + case LINE_REL: + aCoordList.resize(2, 0); // 2* params -> param count reset rPointLists.back().push_back( Point( aCurrentPoint.X + aCoordList[ 0 ], aCurrentPoint.Y + aCoordList[ 1 ] ) ); rFlagLists.back().push_back( PolygonFlags_NORMAL ); @@ -367,8 +372,9 @@ nParamCount = 2; break; - case LINE_ABS: // 2* params -> param count reset - rPointLists.back().push_back( Point( aCoordList[ 0 ], (aCoordList.size() > 1 ? aCoordList[ 1 ] : 0) ) ); + case LINE_ABS: + aCoordList.resize(2, 0); // 2* params -> param count reset + rPointLists.back().push_back( Point( aCoordList[ 0 ], aCoordList[ 1 ] ) ); rFlagLists.back().push_back( PolygonFlags_NORMAL ); aCurrentPoint = rPointLists.back().back(); nParamCount = 2; diff -Nru libreoffice-l10n-5.4.3~rc2/package/source/zipapi/MemoryByteGrabber.hxx libreoffice-l10n-5.4.4~rc2/package/source/zipapi/MemoryByteGrabber.hxx --- libreoffice-l10n-5.4.3~rc2/package/source/zipapi/MemoryByteGrabber.hxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/package/source/zipapi/MemoryByteGrabber.hxx 2017-12-12 17:45:07.000000000 +0000 @@ -39,6 +39,8 @@ } const sal_Int8 * getCurrentPos () { return mpBuffer + mnCurrent; } + sal_Int32 remainingSize() const { return mnEnd - mnCurrent; } + // XInputStream chained /// @throws css::io::NotConnectedException diff -Nru libreoffice-l10n-5.4.3~rc2/package/source/zipapi/ZipFile.cxx libreoffice-l10n-5.4.4~rc2/package/source/zipapi/ZipFile.cxx --- libreoffice-l10n-5.4.3~rc2/package/source/zipapi/ZipFile.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/package/source/zipapi/ZipFile.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -923,6 +923,9 @@ if ( aEntry.nExtraLen < 0 ) throw ZipException("unexpected extra header info length" ); + if (aEntry.nPathLen > aMemGrabber.remainingSize()) + throw ZipException("name too long"); + // read always in UTF8, some tools seem not to set UTF8 bit aEntry.sPath = OUString::intern ( reinterpret_cast(aMemGrabber.getCurrentPos()), aEntry.nPathLen, diff -Nru libreoffice-l10n-5.4.3~rc2/package/source/zippackage/ZipPackage.cxx libreoffice-l10n-5.4.4~rc2/package/source/zippackage/ZipPackage.cxx --- libreoffice-l10n-5.4.3~rc2/package/source/zippackage/ZipPackage.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/package/source/zippackage/ZipPackage.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -524,7 +524,12 @@ pCurrent = pPkgFolder; } else - pCurrent = pCurrent->doGetByName( sTemp ).pFolder; + { + ZipContentInfo& rInfo = pCurrent->doGetByName(sTemp); + if (!rInfo.bFolder) + throw css::packages::zip::ZipIOException("Bad Zip File, stream as folder"); + pCurrent = rInfo.pFolder; + } nOldIndex = nIndex+1; } if ( nStreamIndex != -1 && !sDirName.isEmpty() ) @@ -825,7 +830,10 @@ if ( pCurrent->hasByName( sTemp ) ) { pPrevious = pCurrent; - pCurrent = pCurrent->doGetByName( sTemp ).pFolder; + ZipContentInfo& rInfo = pCurrent->doGetByName(sTemp); + if (!rInfo.bFolder) + throw css::packages::zip::ZipIOException("Bad Zip File, stream as folder"); + pCurrent = rInfo.pFolder; } else throw NoSuchElementException(THROW_WHERE ); @@ -908,7 +916,10 @@ if ( pCurrent->hasByName( sTemp ) ) { pPrevious = pCurrent; - pCurrent = pCurrent->doGetByName( sTemp ).pFolder; + ZipContentInfo& rInfo = pCurrent->doGetByName(sTemp); + if (!rInfo.bFolder) + throw css::packages::zip::ZipIOException("Bad Zip File, stream as folder"); + pCurrent = rInfo.pFolder; } else return false; diff -Nru libreoffice-l10n-5.4.3~rc2/postprocess/CustomTarget_fontconfig.mk libreoffice-l10n-5.4.4~rc2/postprocess/CustomTarget_fontconfig.mk --- libreoffice-l10n-5.4.3~rc2/postprocess/CustomTarget_fontconfig.mk 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/postprocess/CustomTarget_fontconfig.mk 2017-12-12 17:45:07.000000000 +0000 @@ -0,0 +1,30 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t; fill-column: 100 -*- +# +# 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/. +# + +$(eval $(call gb_CustomTarget_CustomTarget,postprocess/fontconfig)) + +$(call gb_CustomTarget_get_workdir,postprocess/fontconfig)/fc_local.conf: \ + $(SRCDIR)/extras/source/truetype/symbol/fc_local.snippet \ + $(SRCDIR)/postprocess/CustomTarget_fontconfig.mk \ + | $(call gb_CustomTarget_get_workdir,postprocess/fontconfig)/.dir + +ifneq ($(filter MORE_FONTS,$(BUILD_TYPE)),) +$(call gb_CustomTarget_get_workdir,postprocess/fontconfig)/fc_local.conf: \ + $(SRCDIR)/external/more_fonts/fc_local.snippet +endif + +$(call gb_CustomTarget_get_workdir,postprocess/fontconfig)/fc_local.conf: + printf '\n\n\n' >$@ + cat $(SRCDIR)/extras/source/truetype/symbol/fc_local.snippet >>$@ +ifneq ($(filter MORE_FONTS,$(BUILD_TYPE)),) + cat $(SRCDIR)/external/more_fonts/fc_local.snippet >>$@ +endif + printf '\n' >>$@ + +# vim: set noet sw=4 ts=4: diff -Nru libreoffice-l10n-5.4.3~rc2/postprocess/Module_postprocess.mk libreoffice-l10n-5.4.4~rc2/postprocess/Module_postprocess.mk --- libreoffice-l10n-5.4.3~rc2/postprocess/Module_postprocess.mk 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/postprocess/Module_postprocess.mk 2017-12-12 17:45:07.000000000 +0000 @@ -28,6 +28,19 @@ )) endif +# For configurations that use fontconfig (cf. inclusion of +# vcl/unx/generic/fontmanager/fontconfig.cxx in Library_vcl), add +# instdir/share/fonts/truetype/fc_local.conf when it shall +# contain content from at least one of external/more_fonts/fc_local.snippet +# (conditional on MORE_FONTS in BUILD_TYPE) and +# extras/source/truetype/symbol/fc_local.snippet (unconditional): +ifneq ($(USING_X11)$(ENABLE_HEADLESS)$(filter ANDROID,$(OS)),) +$(eval $(call gb_Module_add_targets,postprocess, \ + CustomTarget_fontconfig \ + Package_fontconfig \ +)) +endif + $(eval $(call gb_Module_add_check_targets,postprocess,\ CppunitTest_services \ )) diff -Nru libreoffice-l10n-5.4.3~rc2/postprocess/Package_fontconfig.mk libreoffice-l10n-5.4.4~rc2/postprocess/Package_fontconfig.mk --- libreoffice-l10n-5.4.3~rc2/postprocess/Package_fontconfig.mk 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/postprocess/Package_fontconfig.mk 2017-12-12 17:45:07.000000000 +0000 @@ -0,0 +1,18 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t; fill-column: 100 -*- +# +# 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/. +# + +$(eval $(call gb_Package_Package,postprocess_fontconfig,$(call gb_CustomTarget_get_workdir,postprocess/fontconfig))) + +$(eval $(call gb_Package_add_files,postprocess_fontconfig,$(LIBO_SHARE_FOLDER)/fonts/truetype, \ + fc_local.conf \ +)) + +$(eval $(call gb_Package_use_custom_target,postprocess_fontconfig,postprocess/fontconfig)) + +# vim: set noet sw=4 ts=4: diff -Nru libreoffice-l10n-5.4.3~rc2/readlicense_oo/license/CREDITS.fodt libreoffice-l10n-5.4.4~rc2/readlicense_oo/license/CREDITS.fodt --- libreoffice-l10n-5.4.3~rc2/readlicense_oo/license/CREDITS.fodt 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/readlicense_oo/license/CREDITS.fodt 2017-12-12 17:45:07.000000000 +0000 @@ -1,10 +1,10 @@ - Credits » LibreOfficeCreditscontributorscodersdevelopersCredits for the LibreOffice development/coding.LibreOffice/5.4.2.2$Linux_X86_64 LibreOffice_project/22b09f6418e8c2d508a9eaf86b2399209b0990f42012-02-20T22:17:18.060000000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA + Credits » LibreOfficeCreditscontributorscodersdevelopersCredits for the LibreOffice development/coding.LibreOffice/5.4.3.2$Linux_X86_64 LibreOffice_project/92a7159f7e4af62137622921e809f8546db437e52012-02-20T22:17:18.060000000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA - 647 + 690 501 41965 21327 @@ -16,9 +16,9 @@ 3649 3471 501 - 647 + 690 42464 - 21973 + 22015 0 0 false @@ -71,7 +71,7 @@ false false true - 7209331 + 7292632 false false false @@ -317,21 +317,21 @@ - + - + - + - + @@ -395,16 +395,16 @@ - + - + - + - + @@ -412,7 +412,7 @@ - + @@ -1044,7 +1044,7 @@ Credits - 1290 individuals contributed to OpenOffice.org (and whose contributions were imported into LibreOffice) or LibreOffice until 2017-11-02 22:13:32. + 1298 individuals contributed to OpenOffice.org (and whose contributions were imported into LibreOffice) or LibreOffice until 2017-12-11 16:20:17. * marks developers whose first contributions happened after 2010-09-28. Developers committing code since 2010-09-28 @@ -1071,10 +1071,10 @@ Vladimir GlazunovCommits: 25434Joined: 2000-12-04 - Caolán McNamaraCommits: 22889Joined: 2000-10-10 + Caolán McNamaraCommits: 23201Joined: 2000-10-10 - Stephan BergmannCommits: 15196Joined: 2000-10-04 + Stephan BergmannCommits: 15377Joined: 2000-10-04 Ivo HinkelmannCommits: 9480Joined: 2002-09-09 @@ -1082,35 +1082,35 @@ - *Noel GrandinCommits: 8297Joined: 2011-12-12 + *Noel GrandinCommits: 8414Joined: 2011-12-12 - Tor LillqvistCommits: 8001Joined: 2010-03-23 + Tor LillqvistCommits: 8070Joined: 2010-03-23 - Miklos VajnaCommits: 6605Joined: 2010-07-29 + Miklos VajnaCommits: 6699Joined: 2010-07-29 - Michael StahlCommits: 6224Joined: 2008-06-16 + Michael StahlCommits: 6266Joined: 2008-06-16 - Kohei YoshidaCommits: 5523Joined: 2009-06-19 + Kohei YoshidaCommits: 5528Joined: 2009-06-19 - *Markus MohrhardCommits: 5084Joined: 2011-03-17 + *Markus MohrhardCommits: 5085Joined: 2011-03-17 Frank Schoenheit [fs]Commits: 5008Joined: 2000-09-19 - Eike RathkeCommits: 4148Joined: 2000-10-11 + Eike RathkeCommits: 4227Joined: 2000-10-11 - David TardonCommits: 3541Joined: 2009-11-12 + David TardonCommits: 3576Joined: 2009-11-12 Hans-Joachim LankenauCommits: 3007Joined: 2000-09-19 @@ -1127,13 +1127,13 @@ Oliver SpechtCommits: 2548Joined: 2000-09-21 - Jan HolesovskyCommits: 2478Joined: 2009-06-23 + Jan HolesovskyCommits: 2488Joined: 2009-06-23 - Michael MeeksCommits: 2253Joined: 2004-08-05 + *Julien NabetCommits: 2336Joined: 2010-11-04 - *Julien NabetCommits: 2247Joined: 2010-11-04 + Michael MeeksCommits: 2265Joined: 2004-08-05 @@ -1155,13 +1155,13 @@ Christian LippkaCommits: 1805Joined: 2000-09-25 - *Andras TimarCommits: 1768Joined: 2010-10-02 + *Andras TimarCommits: 1775Joined: 2010-10-02 - *Matúš KukanCommits: 1712Joined: 2011-04-06 + *Tomaž VajngerlCommits: 1715Joined: 2012-06-02 - *Tomaž VajngerlCommits: 1678Joined: 2012-06-02 + *Matúš KukanCommits: 1712Joined: 2011-04-06 @@ -1169,10 +1169,10 @@ Luboš LuňákCommits: 1524Joined: 2010-09-21 - *Takeshi AbeCommits: 1365Joined: 2010-11-08 + *Takeshi AbeCommits: 1378Joined: 2010-11-08 - Armin Le GrandCommits: 1343Joined: 2000-09-25 + Armin Le GrandCommits: 1359Joined: 2000-09-25 Fridrich ŠtrbaCommits: 1332Joined: 2007-02-22 @@ -1180,13 +1180,13 @@ - Thomas Lange [tl]Commits: 1310Joined: 2000-09-22 + Thorsten BehrensCommits: 1317Joined: 2001-04-25 - Niklas NebelCommits: 1296Joined: 2000-09-19 + Thomas Lange [tl]Commits: 1310Joined: 2000-09-22 - Thorsten BehrensCommits: 1271Joined: 2001-04-25 + Niklas NebelCommits: 1296Joined: 2000-09-19 Daniel Rentz [dr]Commits: 1206Joined: 2000-09-28 @@ -1194,10 +1194,10 @@ - *Matteo CasalinCommits: 1174Joined: 2011-11-13 + *Matteo CasalinCommits: 1178Joined: 2011-11-13 - *Chris SherlockCommits: 1129Joined: 2013-02-25 + *Chris SherlockCommits: 1130Joined: 2013-02-25 *Lionel Elie MamaneCommits: 1011Joined: 2011-01-15 @@ -1211,7 +1211,7 @@ Noel PowerCommits: 950Joined: 2002-09-24 - *Tamás ZolnaiCommits: 923Joined: 2012-08-06 + *Tamás ZolnaiCommits: 937Joined: 2012-08-06 Kai AhrensCommits: 909Joined: 2000-09-21 @@ -1270,7 +1270,7 @@ Kai SommerfeldCommits: 651Joined: 2000-10-10 - *Maxim MonastirskyCommits: 640Joined: 2013-10-27 + *Maxim MonastirskyCommits: 644Joined: 2013-10-27 Ingrid HalamaCommits: 639Joined: 2001-01-19 @@ -1278,44 +1278,44 @@ - *Rafael DominguezCommits: 606Joined: 2011-02-13 + Christian LohmaierCommits: 623Joined: 2008-06-01 - Christian LohmaierCommits: 605Joined: 2008-06-01 + *Rafael DominguezCommits: 606Joined: 2011-02-13 Thomas Benisch [tbe]Commits: 551Joined: 2000-10-23 - *Xisco FauliCommits: 536Joined: 2011-02-06 + *Xisco FauliCommits: 544Joined: 2011-02-06 - *Olivier HallotCommits: 518Joined: 2010-10-25 + *Olivier HallotCommits: 533Joined: 2010-10-25 - Jürgen SchmidtCommits: 512Joined: 2000-10-09 + *Yousuf PhilipsCommits: 532Joined: 2014-09-21 - *Jochen NitschkeCommits: 502Joined: 2016-02-02 + *Samuel MehrbrodtCommits: 526Joined: 2011-06-08 - *Yousuf PhilipsCommits: 500Joined: 2014-09-21 + *Jochen NitschkeCommits: 514Joined: 2016-02-02 - *Samuel MehrbrodtCommits: 493Joined: 2011-06-08 + Jürgen SchmidtCommits: 512Joined: 2000-10-09 *Peter FoleyCommits: 488Joined: 2011-09-04 - *Khaled HosnyCommits: 478Joined: 2011-01-28 + *Khaled HosnyCommits: 480Joined: 2011-01-28 - *Katarina BehrensCommits: 472Joined: 2010-10-13 + *Katarina BehrensCommits: 479Joined: 2010-10-13 @@ -1323,144 +1323,147 @@ Andreas BregasCommits: 470Joined: 2000-09-25 - *Zdeněk CrhonekCommits: 444Joined: 2016-05-19 + *Zdeněk CrhonekCommits: 449Joined: 2016-05-19 - Rene EngelhardCommits: 424Joined: 2005-03-14 + Rene EngelhardCommits: 433Joined: 2005-03-14 - Dirk VoelzkeCommits: 392Joined: 2000-11-27 + *Andrea GelminiCommits: 396Joined: 2014-10-30 - *Ivan TimofeevCommits: 380Joined: 2011-09-16 + Dirk VoelzkeCommits: 392Joined: 2000-11-27 - Oliver-Rainer WittmannCommits: 372Joined: 2002-08-09 + *Jan-Marek GlogowskiCommits: 380Joined: 2013-11-14 - Martin HollmichelCommits: 371Joined: 2000-09-19 + *Ivan TimofeevCommits: 380Joined: 2011-09-16 - Matthias Huetsch [mhu]Commits: 360Joined: 2000-09-28 + Oliver-Rainer WittmannCommits: 372Joined: 2002-08-09 - *Andrea GelminiCommits: 359Joined: 2014-10-30 + Martin HollmichelCommits: 371Joined: 2000-09-19 - *Jan-Marek GlogowskiCommits: 351Joined: 2013-11-14 + *Gabor KelemenCommits: 364Joined: 2013-06-18 - Patrick LubyCommits: 335Joined: 2000-09-21 + *jan IversenCommits: 362Joined: 2015-11-03 - *David OstrovskyCommits: 327Joined: 2012-04-01 + Matthias Huetsch [mhu]Commits: 360Joined: 2000-09-28 - *jan IversenCommits: 319Joined: 2015-11-03 + Patrick LubyCommits: 335Joined: 2000-09-21 - *Gabor KelemenCommits: 317Joined: 2013-06-18 + *David OstrovskyCommits: 329Joined: 2012-04-01 *Adolfo Jayme BarrientosCommits: 314Joined: 2013-06-21 - Radek DoulikCommits: 305Joined: 2010-05-03 + *Pranav KantCommits: 312Joined: 2015-03-01 - *Chr. RossmanithCommits: 299Joined: 2011-01-03 + Radek DoulikCommits: 305Joined: 2010-05-03 - *August SodoraCommits: 285Joined: 2011-10-18 + *Chr. RossmanithCommits: 300Joined: 2011-01-03 - *Siqi LiuCommits: 277Joined: 2013-04-13 + *August SodoraCommits: 285Joined: 2011-10-18 - *Pierre-André JacquodCommits: 276Joined: 2010-11-13 + *Mike KaganskiCommits: 282Joined: 2015-04-26 - *Pranav KantCommits: 268Joined: 2015-03-01 + *Siqi LiuCommits: 277Joined: 2013-04-13 - Lars LanghansCommits: 260Joined: 2000-09-22 + *Pierre-André JacquodCommits: 276Joined: 2010-11-13 - *Justin LuthCommits: 255Joined: 2014-09-30 + Lars LanghansCommits: 260Joined: 2000-09-22 - Muthu SubramanianCommits: 250Joined: 2010-08-25 + *Justin LuthCommits: 260Joined: 2014-09-30 - *Robert Antoni Buj GelonchCommits: 247Joined: 2014-06-11 + *László NémethCommits: 251Joined: 2010-09-29 - *László NémethCommits: 243Joined: 2010-09-29 + Muthu SubramanianCommits: 250Joined: 2010-08-25 - *Mike KaganskiCommits: 239Joined: 2015-04-26 + *Robert Antoni Buj GelonchCommits: 247Joined: 2014-06-11 - *Laurent BPCommits: 222Joined: 2011-08-31 + *Laurent BPCommits: 223Joined: 2011-08-31 - *Arnaud VersiniCommits: 218Joined: 2010-10-05 + *Marco CecchettiCommits: 222Joined: 2011-04-14 - *Marco CecchettiCommits: 216Joined: 2011-04-14 + *Arnaud VersiniCommits: 221Joined: 2010-10-05 - Ingo SchmidtCommits: 202Joined: 2004-02-05 + *andreas kainzCommits: 204Joined: 2015-03-18 - *Jacobo Aragunde PérezCommits: 192Joined: 2013-09-25 + Ingo SchmidtCommits: 202Joined: 2004-02-05 - *Stanislav HoracekCommits: 191Joined: 2012-12-09 + *Jens CarlCommits: 193Joined: 2014-05-28 - *Robert NagyCommits: 191Joined: 2010-11-04 + *Jacobo Aragunde PérezCommits: 192Joined: 2013-09-25 - *Marcos Paulo de SouzaCommits: 191Joined: 2012-09-26 + *Stanislav HoracekCommits: 191Joined: 2012-12-09 - *andreas kainzCommits: 184Joined: 2015-03-18 + *Robert NagyCommits: 191Joined: 2010-11-04 - *François TigeotCommits: 176Joined: 2011-01-31 + *Marcos Paulo de SouzaCommits: 191Joined: 2012-09-26 - *Winfried DonkersCommits: 176Joined: 2011-11-11 + *Winfried DonkersCommits: 185Joined: 2011-11-11 - *Philipp RiemerCommits: 171Joined: 2012-05-25 + *François TigeotCommits: 176Joined: 2011-01-31 - *Nigel HawkinsCommits: 160Joined: 2010-10-28 + *Philipp RiemerCommits: 171Joined: 2012-05-25 - *Jens CarlCommits: 159Joined: 2014-05-28 + *Nigel HawkinsCommits: 160Joined: 2010-10-28 + + + *Ashod NakashianCommits: 155Joined: 2015-01-07 *Artur DordaCommits: 151Joined: 2012-04-15 @@ -1468,55 +1471,52 @@ *Gert FallerCommits: 151Joined: 2010-10-25 - - *Alexander WilmsCommits: 151Joined: 2012-05-26 - - Gregor HartmannCommits: 141Joined: 2000-10-12 + *Alexander WilmsCommits: 151Joined: 2012-05-26 - *Ashod NakashianCommits: 140Joined: 2015-01-07 + Bartosz KosiorekCommits: 148Joined: 2010-09-17 - Giuseppe CastagnoCommits: 138Joined: 2007-12-09 + Gregor HartmannCommits: 141Joined: 2000-10-12 - *Artur DryomovCommits: 137Joined: 2013-03-14 + Giuseppe CastagnoCommits: 138Joined: 2007-12-09 - Bartosz KosiorekCommits: 134Joined: 2010-09-17 + *Artur DryomovCommits: 137Joined: 2013-03-14 *Jesús CorriusCommits: 130Joined: 2010-10-07 - *Philipp WeissenbacherCommits: 129Joined: 2011-10-28 + *Muhammet KaraCommits: 130Joined: 2016-03-20 - *Ariel Constenla-HaileCommits: 126Joined: 2012-01-16 + *Philipp WeissenbacherCommits: 129Joined: 2011-10-28 - *haochenCommits: 126Joined: 2013-10-10 + *Matthias FreundCommits: 127Joined: 2013-02-08 - *Matthias FreundCommits: 126Joined: 2013-02-08 + *Ariel Constenla-HaileCommits: 126Joined: 2012-01-16 - Helge Delfs [hde]Commits: 126Joined: 2009-07-28 + *haochenCommits: 126Joined: 2013-10-10 - *Tomáš ChvátalCommits: 125Joined: 2011-07-27 + *Tomáš ChvátalCommits: 126Joined: 2011-07-27 - *Muhammet KaraCommits: 123Joined: 2016-03-20 + Helge Delfs [hde]Commits: 126Joined: 2009-07-28 Takashi OnoCommits: 122Joined: 2009-12-10 @@ -1533,32 +1533,32 @@ Kalman Szalai - KAMICommits: 116Joined: 2010-09-14 - *Joren De CuyperCommits: 114Joined: 2013-01-07 + *Henry CastroCommits: 115Joined: 2015-01-09 - *I-Jui (Ray) SungCommits: 112Joined: 2013-09-30 + *Joren De CuyperCommits: 114Joined: 2013-01-07 - *Akshay DeepCommits: 110Joined: 2016-01-23 + *I-Jui (Ray) SungCommits: 112Joined: 2013-09-30 - *Henry CastroCommits: 103Joined: 2015-01-09 + *Akshay DeepCommits: 110Joined: 2016-01-23 - *Mark HungCommits: 103Joined: 2014-11-04 + *Mark HungCommits: 108Joined: 2014-11-04 - *Louis-Francis Ratté-BoulianneCommits: 102Joined: 2014-10-29 + *Jean-Pierre LedureCommits: 103Joined: 2013-10-12 - *Rishabh KumarCommits: 100Joined: 2015-02-13 + *Louis-Francis Ratté-BoulianneCommits: 102Joined: 2014-10-29 - *Jean-Pierre LedureCommits: 99Joined: 2013-10-12 + *Rishabh KumarCommits: 100Joined: 2015-02-13 *Thomas KlausnerCommits: 98Joined: 2010-10-01 @@ -1592,15 +1592,15 @@ *Adam CoCommits: 86Joined: 2013-04-28 - Mihaela KedikovaCommits: 85Joined: 2009-10-30 + *Korrawit PruegsanusakCommits: 86Joined: 2011-05-28 - *Javier FernandezCommits: 84Joined: 2013-03-06 + Mihaela KedikovaCommits: 85Joined: 2009-10-30 - *Korrawit PruegsanusakCommits: 84Joined: 2011-05-28 + *Javier FernandezCommits: 84Joined: 2013-03-06 Tobias KrauseCommits: 83Joined: 2007-10-02 @@ -1614,6 +1614,9 @@ + *Tamas BunthCommits: 74Joined: 2016-03-08 + + *Tobias MadlCommits: 74Joined: 2014-09-15 @@ -1622,11 +1625,11 @@ *weigaoCommits: 72Joined: 2014-05-07 + + Thorsten BosbachCommits: 70Joined: 2008-06-18 - - *Michaël LefèvreCommits: 68Joined: 2011-02-22 @@ -1636,25 +1639,25 @@ *Riccardo MagliocchettiCommits: 68Joined: 2012-01-25 + + *Kevin HunterCommits: 67Joined: 2010-10-22 - - *Jelle van der WaaCommits: 66Joined: 2013-06-16 - *Tamas BunthCommits: 66Joined: 2016-03-08 + *Johnny_MCommits: 66Joined: 2016-05-12 *Rohan KumarCommits: 65Joined: 2016-02-23 + + *Michael WeghornCommits: 63Joined: 2014-09-10 - - *Rosemary SebastianCommits: 62Joined: 2015-06-23 @@ -1664,36 +1667,33 @@ Wolfram Garten [wg]Commits: 61Joined: 2009-10-23 - - Oliver Craemer [oc]Commits: 60Joined: 2009-10-23 - - *Jaskaran SinghCommits: 60Joined: 2016-02-18 + Oliver Craemer [oc]Commits: 60Joined: 2009-10-23 - *Juergen FunkCommits: 59Joined: 2014-09-17 + *Jaskaran SinghCommits: 60Joined: 2016-02-18 - *Mohammed Abdul AzeemCommits: 59Joined: 2016-02-08 + *Simon SteinbeissCommits: 59Joined: 2015-06-01 - Marc Neumann [msc]Commits: 59Joined: 2008-06-20 + *Juergen FunkCommits: 59Joined: 2014-09-17 - *shiming zhangCommits: 59Joined: 2013-11-04 + *Mohammed Abdul AzeemCommits: 59Joined: 2016-02-08 - *Simon SteinbeissCommits: 58Joined: 2015-06-01 + Marc Neumann [msc]Commits: 59Joined: 2008-06-20 - *Johnny_MCommits: 58Joined: 2016-05-12 + *Martin HoskenCommits: 59Joined: 2011-02-25 - *Martin HoskenCommits: 58Joined: 2011-02-25 + *shiming zhangCommits: 59Joined: 2013-11-04 @@ -1729,16 +1729,19 @@ *Rob SneldersCommits: 53Joined: 2011-02-08 + *heiko tietzeCommits: 52Joined: 2016-10-06 + + *Efe Gürkan YALAMANCommits: 52Joined: 2012-08-01 *Will ThompsonCommits: 51Joined: 2012-03-21 + + *Faisal M. Al-OtaibiCommits: 51Joined: 2012-06-25 - - *Rachit GuptaCommits: 51Joined: 2014-01-18 @@ -1748,53 +1751,53 @@ *Ptyl DragonCommits: 50Joined: 2013-05-09 + + + + *Vasily MelenchukCommits: 49Joined: 2015-01-27 + *Lior KaplanCommits: 49Joined: 2010-10-05 - - *Urs FässlerCommits: 48Joined: 2013-02-14 *Marcel MetzCommits: 48Joined: 2011-12-05 + + *Emmanuel Gil PeyrotCommits: 48Joined: 2015-11-19 *mingli juCommits: 48Joined: 2013-11-05 - - *J. Graeme LingardCommits: 47Joined: 2010-09-29 *Alexandre VicenziCommits: 46Joined: 2014-01-15 + + *hongyu zhongCommits: 46Joined: 2013-11-04 *Mihai VargaCommits: 46Joined: 2014-02-27 - - *Susobhan GhoshCommits: 45Joined: 2016-01-03 mb93783Commits: 45Joined: 2009-07-15 - - *Vasily MelenchukCommits: 45Joined: 2015-01-27 - + + *Eilidh McAdamCommits: 45Joined: 2011-03-10 - - *Daniel RobertsonCommits: 44Joined: 2015-06-27 @@ -1804,142 +1807,139 @@ *Luc CastermansCommits: 43Joined: 2011-11-13 - - *Philippe JungCommits: 43Joined: 2015-05-01 - - *Peter JentschCommits: 42Joined: 2011-01-07 + *Philippe JungCommits: 43Joined: 2015-05-01 - *Mark WielaardCommits: 42Joined: 2013-05-13 + *Regina HenschelCommits: 43Joined: 2010-11-04 - *Regina HenschelCommits: 42Joined: 2010-11-04 + *Peter JentschCommits: 42Joined: 2011-01-07 - *Sébastien Le RayCommits: 41Joined: 2011-02-10 + *Mark WielaardCommits: 42Joined: 2013-05-13 - *Christian M. HellerCommits: 41Joined: 2013-02-24 + *Sébastien Le RayCommits: 41Joined: 2011-02-10 - *Tsutomu UchinoCommits: 41Joined: 2014-01-08 + *Christian M. HellerCommits: 41Joined: 2013-02-24 - *Francisco SaitoCommits: 40Joined: 2011-03-21 + *Tsutomu UchinoCommits: 41Joined: 2014-01-08 - *Gulsah KoseCommits: 40Joined: 2015-03-14 + *Gulsah KoseCommits: 41Joined: 2015-03-14 + *tageziCommits: 41Joined: 2015-09-16 + + + *Francisco SaitoCommits: 40Joined: 2011-03-21 + + *Kayo HamidCommits: 39Joined: 2010-10-09 *minwangCommits: 39Joined: 2013-11-04 + + *Valentin KettnerCommits: 38Joined: 2014-03-17 *abdulmajeed ahmedCommits: 37Joined: 2012-07-07 - - *Iain BillettCommits: 37Joined: 2012-04-11 *Jennifer LiebelCommits: 37Joined: 2014-08-29 + + *Vinaya MandkeCommits: 36Joined: 2013-02-08 - *heiko tietzeCommits: 36Joined: 2016-10-06 - - - - *Radu IoanCommits: 36Joined: 2012-08-17 *Csikós TamásCommits: 36Joined: 2013-07-01 + *Damjan JovanovicCommits: 36Joined: 2015-08-26 + + + + *Luke DellerCommits: 36Joined: 2012-11-26 *Guillaume PousselCommits: 36Joined: 2010-12-22 - - *Priyanka GaikwadCommits: 36Joined: 2013-11-12 *Christophe JAILLETCommits: 36Joined: 2012-06-14 + + *Santiago MartinezCommits: 35Joined: 2012-01-20 *Łukasz HryniukCommits: 35Joined: 2015-01-02 - - *xukai liuCommits: 35Joined: 2013-11-01 *Laurent CharrièreCommits: 35Joined: 2010-10-14 + + - *Damjan JovanovicCommits: 35Joined: 2015-08-26 + *Tobias LippertCommits: 35Joined: 2014-01-02 - *Tobias LippertCommits: 35Joined: 2014-01-02 + *Mark PageCommits: 35Joined: 2016-04-29 - - *dechuangCommits: 35Joined: 2013-11-04 *Rodolfo Ribeiro GomesCommits: 34Joined: 2012-12-19 + + *Steve YinCommits: 34Joined: 2013-11-14 *Marc-André LaverdièreCommits: 34Joined: 2011-06-21 - - - - *Mark PageCommits: 34Joined: 2016-04-29 - *Yogesh BharateCommits: 33Joined: 2013-10-11 - *Andreas MantkeCommits: 33Joined: 2010-09-29 - - - *tageziCommits: 33Joined: 2015-09-16 + *Aron BudeaCommits: 33Joined: 2014-12-22 - *GokulCommits: 32Joined: 2012-07-10 + *Andreas MantkeCommits: 33Joined: 2010-09-29 - *Aron BudeaCommits: 32Joined: 2014-12-22 + *GokulCommits: 32Joined: 2012-07-10 *Vishv BrahmbhattCommits: 32Joined: 2013-01-28 @@ -2023,16 +2023,19 @@ *Aurimas FišerasCommits: 28Joined: 2010-10-11 + *Serge KrotCommits: 28Joined: 2015-10-25 + + Andre Fischer<andre.f.fischerCommits: 28Joined: 2010-07-21 *Joel MaderoCommits: 27Joined: 2012-06-15 + + *Andres GomezCommits: 27Joined: 2013-04-09 - - *Gökçen EraslanCommits: 27Joined: 2012-04-15 @@ -2042,11 +2045,11 @@ *Jorenz ParagasCommits: 27Joined: 2015-06-23 + + *José Guilherme VanzCommits: 27Joined: 2012-09-26 - - *Grzegorz AraminowiczCommits: 27Joined: 2017-04-01 @@ -2056,11 +2059,11 @@ *Akash JainCommits: 26Joined: 2016-03-25 + + *Josh HeidenreichCommits: 26Joined: 2011-07-20 - - *Nicolas ChristenerCommits: 26Joined: 2011-03-10 @@ -2070,53 +2073,53 @@ *Maxime de RoucyCommits: 26Joined: 2012-03-08 + + + + *Ximeng ZuCommits: 25Joined: 2017-03-17 + *VortCommits: 25Joined: 2014-01-21 - - *Prashant PandeyCommits: 25Joined: 2013-02-20 *Kurosawa TakeshiCommits: 25Joined: 2011-01-04 + + *aleksandar-stefanovicCommits: 25Joined: 2016-12-29 *Uray M. JánosCommits: 24Joined: 2012-07-17 - - *Cor NouwsCommits: 24Joined: 2011-11-19 *Baptiste DaroussinCommits: 24Joined: 2011-01-31 + + *Tomofumi YagiCommits: 24Joined: 2011-10-20 *Pedro GiffuniCommits: 24Joined: 2011-10-28 - - *Felix ZhangCommits: 23Joined: 2011-10-19 *Julien ChaffraixCommits: 23Joined: 2011-04-12 - - *Ximeng ZuCommits: 23Joined: 2017-03-17 - + + *Lucas BaudinCommits: 23Joined: 2011-01-25 - - *Sören MöllerCommits: 23Joined: 2011-01-03 @@ -2126,11 +2129,11 @@ *Christian DywanCommits: 23Joined: 2011-04-14 + + *Mario J. RugieroCommits: 23Joined: 2015-10-11 - - *zhenyu yuanCommits: 22Joined: 2013-11-06 @@ -2140,11 +2143,11 @@ *Jacek WolszczakCommits: 22Joined: 2010-10-07 + + *Ruslan KabatsayevCommits: 22Joined: 2012-05-11 - - *Frédéric WangCommits: 22Joined: 2013-06-22 @@ -2154,50 +2157,47 @@ *Rohit DeshmukhCommits: 21Joined: 2013-09-30 - - *Tushar BendeCommits: 20Joined: 2013-09-27 - - *Brad SowdenCommits: 20Joined: 2011-12-27 + *Tushar BendeCommits: 20Joined: 2013-09-27 - *Andy HolderCommits: 20Joined: 2010-12-06 + *Vitaliy AndersonCommits: 20Joined: 2016-12-09 - Eric BachardCommits: 20Joined: 2005-10-19 + *Bernhard WidlCommits: 20Joined: 2017-03-27 - *Petr VorelCommits: 20Joined: 2012-02-17 + *Brad SowdenCommits: 20Joined: 2011-12-27 - *Serge KrotCommits: 20Joined: 2015-10-25 + *Andy HolderCommits: 20Joined: 2010-12-06 - *Peilin XiaoCommits: 19Joined: 2013-12-09 + Eric BachardCommits: 20Joined: 2005-10-19 - *Lennard WasserthalCommits: 19Joined: 2012-08-11 + *Petr VorelCommits: 20Joined: 2012-02-17 - *krishna keshavCommits: 19Joined: 2016-05-05 + *Peilin XiaoCommits: 19Joined: 2013-12-09 - *Aleksas PantechovskisCommits: 19Joined: 2016-03-03 + *Lennard WasserthalCommits: 19Joined: 2012-08-11 - *Vitaliy AndersonCommits: 19Joined: 2016-12-09 + *krishna keshavCommits: 19Joined: 2016-05-05 - *AndrewCommits: 19Joined: 2014-02-26 + *Aleksas PantechovskisCommits: 19Joined: 2016-03-03 - *Bernhard WidlCommits: 19Joined: 2017-03-27 + *AndrewCommits: 19Joined: 2014-02-26 @@ -2216,6 +2216,9 @@ + *Paul TrojahnCommits: 18Joined: 2017-05-27 + + *Joost WezenbeekCommits: 18Joined: 2010-10-24 @@ -2224,11 +2227,11 @@ Hanno Meyer-ThurowCommits: 18Joined: 2010-09-16 + + *Richard PALOCommits: 18Joined: 2014-11-09 - - *Federico BassiniCommits: 18Joined: 2016-10-06 @@ -2238,25 +2241,25 @@ *Alfonso EusebioCommits: 17Joined: 2011-01-16 + + *Francisco Adrián SánchezCommits: 17Joined: 2016-10-07 - - - *Jian Hong ChengCommits: 17Joined: 2012-06-26 + *Thomas BeckCommits: 17Joined: 2017-03-27 - *Paul TrojahnCommits: 17Joined: 2017-05-27 + *Jian Hong ChengCommits: 17Joined: 2012-06-26 *Bálint DózsaCommits: 17Joined: 2011-02-10 + + *melikeyurtogluCommits: 17Joined: 2015-10-09 - - *Umesh KadamCommits: 17Joined: 2014-01-10 @@ -2266,11 +2269,11 @@ *Niko RönkköCommits: 16Joined: 2010-10-31 + + *Jean-Noël RouvignacCommits: 16Joined: 2013-01-09 - - *tsahi glikCommits: 16Joined: 2013-06-04 @@ -2280,11 +2283,11 @@ *Anders JonssonCommits: 16Joined: 2010-12-11 + + *Chris LaplanteCommits: 16Joined: 2014-04-07 - - Florian ReuterCommits: 16Joined: 2010-09-14 @@ -2294,11 +2297,11 @@ *Maciej RumianowskiCommits: 16Joined: 2011-07-19 + + *Luke DixonCommits: 16Joined: 2010-10-26 - - *Lei De BinCommits: 16Joined: 2012-07-04 @@ -2308,16 +2311,13 @@ *Catalin IacobCommits: 15Joined: 2012-02-10 - - *Luke SymesCommits: 15Joined: 2010-10-01 - - *Heena GuptaCommits: 15Joined: 2014-06-17 + *Luke SymesCommits: 15Joined: 2010-10-01 - *Thomas BeckCommits: 15Joined: 2017-03-27 + *Heena GuptaCommits: 15Joined: 2014-06-17 *Yifan JCommits: 15Joined: 2010-12-16 @@ -2370,50 +2370,61 @@ + *Andreas BrandnerCommits: 13Joined: 2017-09-04 + + *Prashant ShahCommits: 13Joined: 2010-10-10 *Mathias HasselmannCommits: 13Joined: 2013-01-14 + *Jim RaykowskiCommits: 13Joined: 2017-04-16 + + + + *Muhammad HaggagCommits: 13Joined: 2012-02-01 *Alia AlmusaireaeCommits: 13Joined: 2012-11-05 - - *Olivier RCommits: 13Joined: 2011-08-01 *Jean-Baptiste FaureCommits: 13Joined: 2011-02-20 + + *Gábor StefanikCommits: 12Joined: 2012-04-07 *Mariusz DykierekCommits: 12Joined: 2012-01-16 - - *Abhilash SinghCommits: 12Joined: 2016-07-22 *Greg Kroah-HartmanCommits: 12Joined: 2012-02-06 + + *Jani MonosesCommits: 12Joined: 2010-10-30 + *Patrick JaapCommits: 12Joined: 2017-08-01 + + *Mirek MazelCommits: 12Joined: 2012-06-05 - - *Wei WeiCommits: 12Joined: 2013-11-16 + + *tymyjanCommits: 12Joined: 2016-04-03 @@ -2423,6 +2434,9 @@ *Tomas HlavatyCommits: 12Joined: 2011-12-06 + + *jmzambonCommits: 11Joined: 2017-05-19 + @@ -2443,10 +2457,10 @@ *Abdulaziz A AlayedCommits: 11Joined: 2013-01-22 - *Phillip SzCommits: 11Joined: 2015-03-16 + *Ilmari LauhakangasCommits: 11Joined: 2017-04-15 - *Patrick JaapCommits: 11Joined: 2017-08-01 + *Phillip SzCommits: 11Joined: 2015-03-16 *Fakabbir AminCommits: 11Joined: 2017-01-29 @@ -2496,9 +2510,6 @@ - *jmzambonCommits: 10Joined: 2017-05-19 - - *Benjamin NiCommits: 10Joined: 2015-04-02 @@ -2507,37 +2518,29 @@ *Chirag ManwaniCommits: 10Joined: 2016-02-16 - - *Krunoslav ŠebetićCommits: 10Joined: 2013-07-18 - - *Ilmari LauhakangasCommits: 10Joined: 2017-04-15 - + + *Troy RolloCommits: 10Joined: 2011-07-11 - *Andreas BrandnerCommits: 10Joined: 2017-09-04 + *Theo van KlaverenCommits: 10Joined: 2011-03-10 - - - *Theo van KlaverenCommits: 10Joined: 2011-03-10 + *Arkadiy IllarionovCommits: 10Joined: 2017-01-15 *Dilek UzulmezCommits: 10Joined: 2016-10-15 + + *Luke PetrolekasCommits: 10Joined: 2011-02-12 - *Jim RaykowskiCommits: 10Joined: 2017-04-16 - - - - *Stefan WeibergCommits: 10Joined: 2014-08-28 @@ -2546,11 +2549,11 @@ *Arul MichaelCommits: 10Joined: 2016-01-05 + + *Timo HeinoCommits: 10Joined: 2010-11-22 - - *Dinesh PatilCommits: 9Joined: 2014-03-12 @@ -2560,11 +2563,11 @@ *skswalesCommits: 9Joined: 2016-05-06 + + *Robinson TryonCommits: 9Joined: 2012-06-21 - - *Michael DunphyCommits: 9Joined: 2013-04-18 @@ -2574,9 +2577,6 @@ *Matthew PottageCommits: 9Joined: 2014-07-26 - - *Arkadiy IllarionovCommits: 9Joined: 2017-01-15 - @@ -2670,58 +2670,69 @@ *Ahmad H. Al HarthiCommits: 8Joined: 2012-12-31 - *IanCommits: 8Joined: 2015-08-06 + *Manfred BlumeCommits: 8Joined: 2017-03-27 - *RaalCommits: 7Joined: 2014-12-31 + *IanCommits: 8Joined: 2015-08-06 + *RaalCommits: 7Joined: 2014-12-31 + + *Martin SrebotnjakCommits: 7Joined: 2010-12-19 + *ekuiitrCommits: 7Joined: 2017-10-13 + + *Tiago SantosCommits: 7Joined: 2016-08-12 + + *David DelmaCommits: 7Joined: 2014-05-13 *Roi IllouzCommits: 7Joined: 2013-10-20 - - *Gert van ValkenhoefCommits: 7Joined: 2012-02-14 *Thies PierdolaCommits: 7Joined: 2011-01-28 + + *Mathias MichelCommits: 7Joined: 2012-11-19 *Giuseppe BilottaCommits: 7Joined: 2014-09-09 - - *iremCommits: 7Joined: 2015-10-11 *apurvapriyadarshiCommits: 7Joined: 2016-05-27 + + *Terrence EngerCommits: 7Joined: 2011-10-27 + *Ulrich GemkowCommits: 7Joined: 2016-10-27 + + *SJacobiCommits: 7Joined: 2013-03-05 - - *Christopher CopitsCommits: 7Joined: 2012-09-19 + + *Deena FrancisCommits: 7Joined: 2014-07-29 @@ -2731,11 +2742,11 @@ *Issa AlkurtassCommits: 7Joined: 2012-09-04 - - *Keith McRaeCommits: 7Joined: 2012-01-18 + + *Wang LeiCommits: 7Joined: 2012-06-14 @@ -2745,10 +2756,13 @@ *Trent MacAlpineCommits: 7Joined: 2014-03-06 + + *Sergey DavidoffCommits: 7Joined: 2011-04-11 + - *Sergey DavidoffCommits: 7Joined: 2011-04-11 + *Marina LatiniCommits: 7Joined: 2016-11-10 *Christoph LutzCommits: 7Joined: 2011-09-06 @@ -2804,6 +2818,9 @@ + *Kiyotaka NishiboriCommits: 6Joined: 2017-08-27 + + *Ricardo MorenoCommits: 6Joined: 2010-11-03 @@ -2812,25 +2829,25 @@ *Kay SchenkCommits: 6Joined: 2014-09-19 + + *David VerrierCommits: 6Joined: 2013-02-26 - - *Guillaume SmahaCommits: 6Joined: 2015-11-25 - *Ulrich GemkowCommits: 6Joined: 2016-10-27 + *ShinnokCommits: 6Joined: 2017-09-06 *tianyaoCommits: 6Joined: 2013-11-09 + + *Jean-Sebastien BevilacquaCommits: 6Joined: 2017-02-09 - - *Anurag KanungoCommits: 6Joined: 2013-04-19 @@ -2840,11 +2857,11 @@ *Gian Domenico CeccariniCommits: 6Joined: 2017-01-13 + + *udareechkCommits: 6Joined: 2017-09-20 - - *Fabio BusoCommits: 6Joined: 2015-11-01 @@ -2854,11 +2871,11 @@ *shiraharaCommits: 6Joined: 2011-01-28 + + *giaccoCommits: 6Joined: 2016-10-11 - - *Sedat AkCommits: 6Joined: 2015-11-08 @@ -2868,11 +2885,11 @@ *ChamalCommits: 6Joined: 2016-08-01 + + *Alexander O. AnisimovCommits: 6Joined: 2010-11-06 - - *Werner KoernerCommits: 5Joined: 2012-12-11 @@ -2882,11 +2899,11 @@ *Timothy MarkleCommits: 5Joined: 2014-01-31 + + *ericb2Commits: 5Joined: 2011-10-30 - - *Ciorba EdmondCommits: 5Joined: 2013-06-11 @@ -2896,11 +2913,11 @@ *Jan KantertCommits: 5Joined: 2014-06-12 + + *Matthias HofmannCommits: 5Joined: 2013-03-08 - - *Bernhard RosenkraenzerCommits: 5Joined: 2010-11-01 @@ -2910,16 +2927,13 @@ *Berk GurekenCommits: 5Joined: 2015-10-01 - - *pje335_NLCommits: 5Joined: 2013-05-10 - - *Pavel JaníkCommits: 5Joined: 2012-11-29 + *pje335_NLCommits: 5Joined: 2013-05-10 - *Kiyotaka NishiboriCommits: 5Joined: 2017-08-27 + *Pavel JaníkCommits: 5Joined: 2012-11-29 *MÁTÉ GergelyCommits: 5Joined: 2013-07-19 @@ -2975,19 +2989,16 @@ *Lionel DricotCommits: 5Joined: 2012-06-04 - *Manfred BlumeCommits: 5Joined: 2017-03-27 - - *Jeffrey ChangCommits: 5Joined: 2011-06-01 *Pavel KysilkaCommits: 5Joined: 2012-06-25 - - *Tom TromeyCommits: 4Joined: 2011-08-11 + + *Santiago AlessandriCommits: 4Joined: 2010-11-11 @@ -2997,149 +3008,141 @@ *Andrew C. E. DentCommits: 4Joined: 2010-10-24 - - *Kate GossCommits: 4Joined: 2012-02-11 - - *ekuiitrCommits: 4Joined: 2017-10-13 - + + *coypuCommits: 4Joined: 2016-02-03 *ClioCommits: 4Joined: 2011-01-30 - - *Elie RouxCommits: 4Joined: 2013-05-29 *Simon DannerCommits: 4Joined: 2014-08-02 + + *Thomas ViehmannCommits: 4Joined: 2014-08-15 *Mihkel TõnnovCommits: 4Joined: 2012-07-02 - - *pasqual milvaquesCommits: 4Joined: 2015-12-02 *Alex HenrieCommits: 4Joined: 2014-03-05 + + *Derrick RochaCommits: 4Joined: 2015-08-26 *Maja DjordjevicCommits: 4Joined: 2011-01-06 - - *Michael MuenchCommits: 4Joined: 2011-02-13 *Andrea PescettiCommits: 4Joined: 2013-10-07 + + *Ulrich KitzingerCommits: 4Joined: 2013-11-30 *Kevin SuoCommits: 4Joined: 2014-11-06 - - *Sameer DeshmukhCommits: 4Joined: 2013-04-20 *Patrick JaapCommits: 4Joined: 2017-01-30 + + *Burcin AkalinCommits: 4Joined: 2015-12-18 *XiaoliCommits: 4Joined: 2013-03-23 - - *Mariana MarasoiuCommits: 4Joined: 2012-03-14 *Kumar ThangavelCommits: 4Joined: 2016-01-04 + + *Nicholas ShanksCommits: 4Joined: 2012-09-04 *Gaurav DhingraCommits: 4Joined: 2016-12-03 - - *Sahasranaman M SCommits: 4Joined: 2015-10-04 *ccshellerCommits: 4Joined: 2015-10-08 + + *Jeffrey StedfastCommits: 4Joined: 2014-07-26 *An LeendersCommits: 4Joined: 2011-01-25 - - *Florian ReisingerCommits: 4Joined: 2012-06-22 *Tim EvesCommits: 4Joined: 2016-02-23 + + *Cheng-Chia TsengCommits: 4Joined: 2012-01-16 *aqcoderCommits: 4Joined: 2015-12-13 - - *Chris SherlockCommits: 4Joined: 2015-12-23 *Florian BircherCommits: 4Joined: 2010-10-16 + + *Wolfgang PechlanerCommits: 4Joined: 2011-09-04 *tinoCommits: 4Joined: 2012-12-03 - - *Piotr DrągCommits: 4Joined: 2017-03-05 *GurkaranCommits: 4Joined: 2016-03-17 + + *André SchnabelCommits: 4Joined: 2011-05-31 - *Marina LatiniCommits: 4Joined: 2016-11-10 - - - - *Nourah.AlShoeibiCommits: 4Joined: 2013-07-07 @@ -3148,11 +3151,11 @@ *Fridrich StrbaCommits: 4Joined: 2013-03-08 + + *lbenesCommits: 4Joined: 2016-07-30 - - *Pantelis KoukousoulasCommits: 4Joined: 2011-03-14 @@ -3162,11 +3165,11 @@ *Andreas BeckerCommits: 4Joined: 2011-04-04 + + *Zheng FanCommits: 4Joined: 2013-04-22 - - *Matthias SeidelCommits: 4Joined: 2017-02-18 @@ -3176,11 +3179,11 @@ *Raimundo MouraCommits: 4Joined: 2012-06-16 + + *Honza HavlíčekCommits: 4Joined: 2013-07-27 - - *Samphan RaruenromCommits: 4Joined: 2011-03-24 @@ -3190,11 +3193,11 @@ *Stefan SchickCommits: 3Joined: 2013-02-18 + + *Petr KrausCommits: 3Joined: 2013-03-26 - - *Gioele BarabucciCommits: 3Joined: 2010-11-18 @@ -3204,11 +3207,11 @@ *Cameron PaulCommits: 3Joined: 2012-02-27 + + *Markus MaierCommits: 3Joined: 2012-11-25 - - *Gabriele BulfonCommits: 3Joined: 2013-07-05 @@ -3218,11 +3221,11 @@ *Jonathan AquilinaCommits: 3Joined: 2011-01-18 + + *vjinochCommits: 3Joined: 2013-04-09 - - *Stefan HeinemannCommits: 3Joined: 2012-02-16 @@ -3232,69 +3235,80 @@ *Fabio BiocchettiCommits: 3Joined: 2016-10-24 + + *Michael BauerCommits: 3Joined: 2011-11-23 - - + + *DanielCommits: 3Joined: 2017-09-24 + *Ivan SafonovCommits: 3Joined: 2017-07-13 *Popa Adrian MariusCommits: 3Joined: 2015-03-23 + + *Mathieu VonlanthenCommits: 3Joined: 2012-07-19 *Matthew NichollsCommits: 3Joined: 2015-04-01 - - *Florian Allmann-RahnCommits: 3Joined: 2011-08-22 *n.r.pearsonCommits: 3Joined: 2015-09-09 + + *Giovanni CaligarisCommits: 3Joined: 2015-11-30 *Dávid VastagCommits: 3Joined: 2013-02-04 - - *Peter BaumgartenCommits: 3Joined: 2012-11-24 *Dimitri DucCommits: 3Joined: 2011-04-19 + + *Peter Senna TschudinCommits: 3Joined: 2014-05-26 *Marek DoleželCommits: 3Joined: 2015-07-06 - - *Mayank GuptaCommits: 3Joined: 2016-03-11 *David NalleyCommits: 3Joined: 2011-03-03 + + + + *Mark VecsernyesCommits: 3Joined: 2017-11-15 + *Golnaz IrannejadCommits: 3Joined: 2013-04-02 *Alex McMurchy1917Commits: 3Joined: 2011-08-14 + + *Tantai TanakanokCommits: 3Joined: 2011-02-09 + - *Tantai TanakanokCommits: 3Joined: 2011-02-09 + *Ricardo PalomaresCommits: 3Joined: 2016-01-16 *Sérgio MarquesCommits: 3Joined: 2011-11-25 @@ -3527,11 +3541,14 @@ *Adam MrózCommits: 2Joined: 2013-02-24 - *Ed DeanCommits: 2Joined: 2011-01-14 + *Fyodor YemelyanenkoCommits: 2Joined: 2017-08-21 + *Ed DeanCommits: 2Joined: 2011-01-14 + + *Jean Charles PapinCommits: 2Joined: 2011-02-11 @@ -3540,11 +3557,11 @@ *Kishor BhatCommits: 2Joined: 2015-01-28 + + *Anderson RobertoCommits: 2Joined: 2014-01-15 - - *Akash DeshpandeCommits: 2Joined: 2016-08-13 @@ -3554,11 +3571,11 @@ Loiseleur MichelCommits: 2Joined: 2010-09-14 + + *Mukhiddin YusupovCommits: 2Joined: 2014-05-19 - - *Sergey FarbotkaCommits: 2Joined: 2012-09-21 @@ -3568,11 +3585,11 @@ *Milos SramekCommits: 2Joined: 2012-01-20 + + *JeevanCommits: 2Joined: 2017-03-04 - - *Boris EgorovCommits: 2Joined: 2014-09-08 @@ -3582,16 +3599,13 @@ *Laszlo Kis-AdamCommits: 2Joined: 2015-03-12 - - *Abeer SethiCommits: 2Joined: 2012-04-12 - - *Rico TzschichholzCommits: 2Joined: 2016-02-09 + *Abeer SethiCommits: 2Joined: 2012-04-12 - *Ricardo PalomaresCommits: 2Joined: 2016-01-16 + *Rico TzschichholzCommits: 2Joined: 2016-02-09 *Jesso Clarence MuruganCommits: 2Joined: 2012-06-23 @@ -3653,11 +3667,14 @@ *Sabin FrandesCommits: 2Joined: 2017-09-15 - *Christoph NoackCommits: 2Joined: 2010-12-13 + *G??bor KoruhelyCommits: 2Joined: 2017-10-25 + *Christoph NoackCommits: 2Joined: 2010-12-13 + + *Sean McMurrayCommits: 2Joined: 2010-10-20 @@ -3666,11 +3683,11 @@ *Seo SanghyeonCommits: 2Joined: 2010-09-29 + + *George KorepanovCommits: 2Joined: 2017-01-06 - - *Marc GarciaCommits: 2Joined: 2012-05-04 @@ -3680,11 +3697,11 @@ *Mark WolfCommits: 2Joined: 2012-04-04 + + *Mateusz ZasuwikCommits: 2Joined: 2011-12-20 - - *Rimas KudelisCommits: 2Joined: 2015-01-06 @@ -3694,11 +3711,11 @@ *Chris HoppeCommits: 2Joined: 2013-06-27 + + *Greggory HernandezCommits: 2Joined: 2012-02-22 - - *David SteeleCommits: 2Joined: 2012-04-24 @@ -3708,11 +3725,11 @@ *PKEuSCommits: 2Joined: 2012-02-05 + + *Horacio FernandesCommits: 2Joined: 2012-07-20 - - *Austin ChenCommits: 2Joined: 2015-03-25 @@ -3722,11 +3739,11 @@ *Marcin eXine MCommits: 2Joined: 2010-11-02 + + *Benedikt MorbachCommits: 2Joined: 2013-03-10 - - *Mark WilliamsCommits: 2Joined: 2014-12-17 @@ -3736,11 +3753,11 @@ *fxwanCommits: 2Joined: 2017-05-15 + + *Arne de BruijnCommits: 2Joined: 2012-12-11 - - *Flex LiuCommits: 2Joined: 2012-09-04 @@ -3750,11 +3767,11 @@ *Janos FaragoCommits: 2Joined: 2013-09-03 + + *Hussian AlamriCommits: 2Joined: 2014-05-14 - - *Christos StrubulisCommits: 2Joined: 2012-12-09 @@ -3764,11 +3781,11 @@ *Neil MooreCommits: 2Joined: 2013-08-09 + + *Jagan LokanathaCommits: 2Joined: 2013-11-19 - - *Arno TeigsethCommits: 2Joined: 2011-09-14 @@ -3778,11 +3795,11 @@ *Karsten GerloffCommits: 2Joined: 2011-02-06 + + *Sophie GautierCommits: 2Joined: 2010-12-19 - - *Markus WernigCommits: 2Joined: 2015-03-18 @@ -3792,11 +3809,11 @@ *dbeurleCommits: 2Joined: 2015-01-12 + + *Carlos LuqueCommits: 2Joined: 2015-07-16 - - *Robert SedakCommits: 2Joined: 2010-10-05 @@ -3806,11 +3823,11 @@ *Janit AnjariaCommits: 2Joined: 2013-04-19 + + *Sheikha AL-HinaiCommits: 2Joined: 2015-12-28 - - *Moritz KuettCommits: 2Joined: 2013-03-23 @@ -3820,11 +3837,11 @@ *ackepenekCommits: 2Joined: 2016-02-21 + + *Richard HughesCommits: 2Joined: 2013-10-01 - - *Cyril RoelandtCommits: 2Joined: 2011-04-26 @@ -3834,42 +3851,50 @@ *Yury TarasievichCommits: 2Joined: 2011-11-23 + + *John Paul Adrian GlaubitzCommits: 2Joined: 2016-11-27 - - *Hideki IkedaCommits: 2Joined: 2014-06-25 + *geri1245Commits: 2Joined: 2017-11-28 + + *Takashi NakamotoCommits: 2Joined: 2011-08-28 + + *Daniel HerdeCommits: 2Joined: 2012-08-09 *Michael NattererCommits: 2Joined: 2011-04-08 - - *Alexey VlasovCommits: 2Joined: 2017-04-12 *Johann MessnerCommits: 2Joined: 2012-08-28 + + + + *Gabriel ChiquiniCommits: 2Joined: 2017-10-01 + *Supreme AryalCommits: 2Joined: 2014-12-04 *Nadav VinikCommits: 2Joined: 2010-10-21 - - *Yash SrivastavCommits: 2Joined: 2017-06-20 + + *Bisal NayalCommits: 2Joined: 2014-05-07 @@ -3879,11 +3904,11 @@ *Nurhak ALTINCommits: 1Joined: 2016-05-01 - - *Goran RakicCommits: 1Joined: 2013-03-30 + + *Ross BurtonCommits: 1Joined: 2012-04-18 @@ -3893,11 +3918,11 @@ *pavelCommits: 1Joined: 2010-12-10 - - *Martin BrownCommits: 1Joined: 2013-02-23 + + *Philipp KaluzaCommits: 1Joined: 2012-10-21 @@ -3907,11 +3932,11 @@ *Rich WarehamCommits: 1Joined: 2012-01-12 - - *Christina AccioneCommits: 1Joined: 2016-11-22 + + *Swachhand LokhandeCommits: 1Joined: 2015-03-07 @@ -3921,11 +3946,11 @@ *Ruggero CyrilleCommits: 1Joined: 2014-10-18 - - *Pádraig BradyCommits: 1Joined: 2011-10-21 + + *Foo Lai ChooCommits: 1Joined: 2014-11-26 @@ -3935,11 +3960,11 @@ *Tzvetelina TzenevaCommits: 1Joined: 2011-12-22 - - *Kenneth BeckCommits: 1Joined: 2013-03-02 + + *Udo SchuermannCommits: 1Joined: 2012-04-16 @@ -3949,11 +3974,11 @@ *Francesco GradiCommits: 1Joined: 2017-05-29 - - *Valek FilippovCommits: 1Joined: 2013-02-23 + + *Jörg SonnenbergerCommits: 1Joined: 2014-08-28 @@ -3963,11 +3988,11 @@ *Mattias PõldaruCommits: 1Joined: 2014-12-06 - - *Kevin HausmannCommits: 1Joined: 2012-08-17 + + *serdarot5Commits: 1Joined: 2017-08-05 @@ -3977,11 +4002,11 @@ *Jeff AignerCommits: 1Joined: 2011-06-09 - - *Otto KekäläinenCommits: 1Joined: 2016-07-03 + + *Ta Duc TungCommits: 1Joined: 2011-08-08 @@ -3991,11 +4016,11 @@ *Gabriel HerreraCommits: 1Joined: 2017-04-05 - - *Tjipke van der HeideCommits: 1Joined: 2017-10-12 + + *Robin KumarCommits: 1Joined: 2014-06-17 @@ -4005,11 +4030,11 @@ *Zhengqiang WangCommits: 1Joined: 2016-06-02 - - *Mathieu DCommits: 1Joined: 2012-11-19 + + *Benjamin OtteCommits: 1Joined: 2013-06-15 @@ -4019,11 +4044,11 @@ *Willian BriottoCommits: 1Joined: 2015-11-21 - - *nigeldiasCommits: 1Joined: 2017-10-02 + + *Dobra GaborCommits: 1Joined: 2015-04-02 @@ -4033,11 +4058,11 @@ *Naser SharifiCommits: 1Joined: 2012-11-26 - - *Shreyansh GandhiCommits: 1Joined: 2014-06-10 + + *Michael KovarikCommits: 1Joined: 2015-01-07 @@ -4047,11 +4072,11 @@ *Eric S. RaymondCommits: 1Joined: 2013-06-07 - - *Bernhard M. WiedemannCommits: 1Joined: 2011-10-17 + + *Neil Voss (fourier)Commits: 1Joined: 2013-05-24 @@ -4061,11 +4086,11 @@ *tinderboxCommits: 1Joined: 2013-04-11 - - *pgajdosCommits: 1Joined: 2011-01-31 + + *Roman EiseleCommits: 1Joined: 2011-11-23 @@ -4075,11 +4100,11 @@ *Simon WilperCommits: 1Joined: 2015-01-24 - - *Andreas K. Huettel (dilfridge)Commits: 1Joined: 2015-01-04 + + *JesseCommits: 1Joined: 2011-12-14 @@ -4089,11 +4114,11 @@ *Apachev IvanCommits: 1Joined: 2016-03-08 - - *n5xgdhCommits: 1Joined: 2016-12-04 + + *yjw9012Commits: 1Joined: 2013-12-30 @@ -4103,11 +4128,11 @@ *KappanneoCommits: 1Joined: 2017-05-29 - - *66kesara99Commits: 1Joined: 2017-09-23 + + *armijnCommits: 1Joined: 2010-12-30 @@ -4117,67 +4142,67 @@ *Italo VignoliCommits: 1Joined: 2012-03-09 - - *massinissaHamidiCommits: 1Joined: 2015-05-07 + + *James ClarkeCommits: 1Joined: 2016-08-05 - *DanielCommits: 1Joined: 2017-09-24 - - *ritztroCommits: 1Joined: 2015-04-11 - - *Jihui ChoiCommits: 1Joined: 2015-06-22 *Srijan ChoudharyCommits: 1Joined: 2013-08-10 + + *Marcel HBCommits: 1Joined: 2011-05-03 *Xavi Escriche GalindoCommits: 1Joined: 2012-04-24 - - *Stefan WeigelCommits: 1Joined: 2011-10-17 *Keigo KawamuraCommits: 1Joined: 2015-11-16 + + *Mirco RondiniCommits: 1Joined: 2016-10-10 *Helena SvobodovaCommits: 1Joined: 2016-05-25 - - *Seraphime KirkovskiCommits: 1Joined: 2016-04-29 *Paula MannesCommits: 1Joined: 2012-11-30 + + *Trevor MurphyCommits: 1Joined: 2010-10-20 + *qzhengCommits: 1Joined: 2017-11-14 + + *Marco BiscaroCommits: 1Joined: 2012-08-27 - - *Johannes WidmerCommits: 1Joined: 2013-03-23 + + *Ryo ONODERACommits: 1Joined: 2014-04-07 @@ -4187,11 +4212,11 @@ *Zenaan HarknessCommits: 1Joined: 2016-08-22 - - *Masataka ShinkeCommits: 1Joined: 2012-02-15 + + *Tim RichardsonCommits: 1Joined: 2013-06-04 @@ -4201,40 +4226,40 @@ *Michal SiedlaczekCommits: 1Joined: 2014-01-25 - - *Victor LeeCommits: 1Joined: 2011-12-24 - - *Fyodor YemelyanenkoCommits: 1Joined: 2017-08-21 - + + *Andreas SägerCommits: 1Joined: 2017-03-26 *AWASHIRO IkuyaCommits: 1Joined: 2011-01-04 - - *Christoph BrillCommits: 1Joined: 2016-02-09 *Joshua CogliatiCommits: 1Joined: 2012-01-06 + + *xjclCommits: 1Joined: 2014-08-04 *Andrea MussapCommits: 1Joined: 2016-10-02 - - *Javier Silva SanahujaCommits: 1Joined: 2012-04-23 + *Matti LehtonenCommits: 1Joined: 2017-10-07 + + + + *Andrew RistCommits: 1Joined: 2012-10-05 @@ -4243,11 +4268,11 @@ *Péter SzathmáryCommits: 1Joined: 2015-01-07 - - *Arianna MascioliniCommits: 1Joined: 2017-05-29 + + *Hiroto KagotaniCommits: 1Joined: 2014-08-19 @@ -4257,11 +4282,11 @@ *Petr GajdosCommits: 1Joined: 2015-04-07 - - *Stefano FacchiniCommits: 1Joined: 2013-08-22 + + *Milan ZelenkaCommits: 1Joined: 2014-03-26 @@ -4271,11 +4296,11 @@ *Ilya PonamarevCommits: 1Joined: 2016-10-05 - - *Piet van OostrumCommits: 1Joined: 2015-03-12 + + *roopak12345Commits: 1Joined: 2014-03-09 @@ -4285,11 +4310,11 @@ *shubhamtibraCommits: 1Joined: 2016-01-16 - - *Vincent PovirkCommits: 1Joined: 2011-12-19 + + *Furkan Ahmet KaraCommits: 1Joined: 2017-10-21 @@ -4299,11 +4324,11 @@ *Andy HearnCommits: 1Joined: 2011-01-09 - - *Karl KoehlerCommits: 1Joined: 2011-11-11 + + *Alexandre FournierCommits: 1Joined: 2010-11-06 @@ -4313,11 +4338,11 @@ *Edmund LaugassonCommits: 1Joined: 2015-01-07 - - *Douglas Rodrigues de AlmeidaCommits: 1Joined: 2012-09-15 + + *Hamza AbdelkebirCommits: 1Joined: 2013-02-23 @@ -4327,11 +4352,11 @@ *Aditya KaleCommits: 1Joined: 2014-04-01 - - *Jonathan RiddellCommits: 1Joined: 2014-11-22 + + *James CCommits: 1Joined: 2011-12-20 @@ -4341,11 +4366,11 @@ *ComputingDwarfCommits: 1Joined: 2017-03-12 - - *Hannah LyhneCommits: 1Joined: 2014-04-01 + + *Florent GallaireCommits: 1Joined: 2012-04-21 @@ -4355,11 +4380,11 @@ *Steve HartCommits: 1Joined: 2015-11-17 - - *William LachanceCommits: 1Joined: 2011-06-08 + + *krishnan parthasarathiCommits: 1Joined: 2010-10-07 @@ -4369,11 +4394,11 @@ *ZirkCommits: 1Joined: 2015-01-07 - - *Paolo PozzanCommits: 1Joined: 2010-12-19 + + *Rolf KoetterCommits: 1Joined: 2013-11-05 @@ -4383,11 +4408,11 @@ *Naeil ZOUEIDICommits: 1Joined: 2017-04-26 - - *Arkadiusz MiśkiewiczCommits: 1Joined: 2014-10-09 + + *Pierre SauterCommits: 1Joined: 2015-12-01 @@ -4397,11 +4422,11 @@ *Miguel FernándezCommits: 1Joined: 2012-04-26 - - *Gábor NyersCommits: 1Joined: 2013-03-02 + + *Fabio BioccettiCommits: 1Joined: 2016-10-21 @@ -4411,11 +4436,11 @@ *Kristóf UmannCommits: 1Joined: 2017-10-25 - - *Kevin PengCommits: 1Joined: 2012-07-20 + + *Tadele AssefaCommits: 1Joined: 2013-01-15 @@ -4425,11 +4450,11 @@ *Neven ĆosićCommits: 1Joined: 2012-10-08 - - *Martin LiškaCommits: 1Joined: 2014-03-26 + + *Шиповський РоманCommits: 1Joined: 2016-10-28 @@ -4439,11 +4464,11 @@ *Fernando PiraniCommits: 1Joined: 2015-08-04 - - *Michael DuelliCommits: 1Joined: 2013-08-01 + + *Vojta KoukalCommits: 1Joined: 2013-03-03 @@ -4453,11 +4478,11 @@ *Marc BessièresCommits: 1Joined: 2016-01-29 - - *Irányossy Knoblauch ArtúrCommits: 1Joined: 2013-04-06 + + *Mike GorseCommits: 1Joined: 2017-03-11 @@ -4467,6 +4492,9 @@ *ricardobottoCommits: 1Joined: 2013-05-18 + + *martinb214Commits: 1Joined: 2017-11-28 + @@ -4487,16 +4515,19 @@ *Manas JoshiCommits: 1Joined: 2014-03-17 + *Timotej LazarCommits: 1Joined: 2017-11-22 + + *Mohamed ThabetCommits: 1Joined: 2016-03-13 *sagarCommits: 1Joined: 2012-09-15 + + *Karan DesaiCommits: 1Joined: 2012-04-01 - - *Steven MeyerCommits: 1Joined: 2013-03-13 @@ -4506,19 +4537,16 @@ *Paulo JoséCommits: 1Joined: 2011-04-01 - - *Dona HertelCommits: 1Joined: 2011-04-14 - - *ShinnokCommits: 1Joined: 2017-09-06 + *Dona HertelCommits: 1Joined: 2011-04-14 *Aldo Román NureñaCommits: 1Joined: 2012-04-09 - *Gábor KoruhelyCommits: 1Joined: 2017-10-25 + *Kshitij PathaniaCommits: 1Joined: 2017-09-28 *Kalman KemenczyCommits: 1Joined: 2010-10-28 @@ -5011,11 +5039,14 @@ *Dave RichardsCommits: 1Joined: 2012-08-22 - *Alex GulyásCommits: 1Joined: 2014-04-27 + *Ahmed GHANMICommits: 1Joined: 2017-12-04 + *Alex GulyásCommits: 1Joined: 2014-04-27 + + *Yurii KolesnykovCommits: 1Joined: 2015-05-10 @@ -5024,11 +5055,11 @@ *Nicola PovoleriCommits: 1Joined: 2015-11-28 + + *Tamás GulácsiCommits: 1Joined: 2016-11-11 - - *frederic vromanCommits: 1Joined: 2017-05-12 @@ -5038,11 +5069,11 @@ *Linus BehrensCommits: 1Joined: 2015-04-23 + + *Alexandr N. ZamaraevCommits: 1Joined: 2010-10-01 - - *Nico WeyandCommits: 1Joined: 2012-09-02 @@ -5052,11 +5083,11 @@ *Colomban WendlingCommits: 1Joined: 2017-03-15 + + *Sean StanglCommits: 1Joined: 2017-07-09 - - *scitoCommits: 1Joined: 2015-04-13 @@ -5066,11 +5097,11 @@ *LesterCommits: 1Joined: 2012-10-23 + + *christianjuCommits: 1Joined: 2014-02-10 - - *Seyeong KimCommits: 1Joined: 2014-10-06 @@ -5080,11 +5111,11 @@ *Michal HorakCommits: 1Joined: 2014-04-21 + + *Lucian ConstantinCommits: 1Joined: 2013-03-24 - - *Owen GenatCommits: 1Joined: 2016-11-20 @@ -5094,11 +5125,11 @@ *Jakub GolebiewskiCommits: 1Joined: 2013-04-09 + + *Umang JainCommits: 1Joined: 2017-03-13 - - *PhyzerCommits: 1Joined: 2014-09-13 @@ -5106,9 +5137,6 @@ *Dolives BenoitCommits: 1Joined: 2011-07-04 - *gabrielchiquiniCommits: 1Joined: 2017-10-01 - - *Damien ChambeCommits: 1Joined: 2014-06-15 @@ -5116,7 +5144,7 @@ *galbarnissanCommits: 1Joined: 2014-12-03 - + @@ -5145,24 +5173,24 @@ - *Laurent Balland-PoirierCommits: 3Joined: 2015-11-19 + *Laurent BPCommits: 4Joined: 2015-11-19 *Caolán McNamaraCommits: 3Joined: 2011-01-07 - *Olivier HallotCommits: 3Joined: 2012-03-26 + *heiko tietzeCommits: 3Joined: 2017-08-04 - *Michael MeeksCommits: 2Joined: 2010-12-08 + *Olivier HallotCommits: 3Joined: 2012-03-26 - *Istvan TuriCommits: 2Joined: 2012-08-16 + *Michael MeeksCommits: 2Joined: 2010-12-08 - *heiko tietzeCommits: 2Joined: 2017-08-04 + *Istvan TuriCommits: 2Joined: 2012-08-16 *David TardonCommits: 2Joined: 2012-08-20 @@ -5725,7 +5753,7 @@ We do not distinguish between commits that were imported from the OOo code base and those who went directly into the LibreOffice code base as: - + a) it is technically not possible to distinguish between commits that go directly into the LibreOffice code base and commits that were merged in from the OpenOffice.org code base, and @@ -5735,7 +5763,7 @@ Do note that LibreOffice used to be divided into 20 git repositories. Pushing a change into all repositories will be counted as 20 commits as there is no way to distinguish this from 20 separate commits. Total contributions to the TDF Wiki - 2758 individuals contributed: + 2985 individuals contributed: @@ -5743,21 +5771,21 @@ - K-j (7696) + K-j (7816) - Roczek, Dennis (7154) + Roczek, Dennis (7180) - Goncharuk, Lera (5366) + Goncharuk, Lera (5367) - Pierre-yves samyn (4439) + Pierre-yves samyn (4528) - Uroveits (4277) + Uroveits (4300) Tagezibot (3924) @@ -5766,29 +5794,29 @@ Tryon, Robinson (3712) - Gautier, Sophie (3126) + Gautier, Sophie (3129) - (2929) + (2932) Hrbrgr (2486) - Balland-Poirier, Laurent (2364) + Balland-Poirier, Laurent (2391) - Jeanweber (2201) + Jeanweber (2203) - Bielefeld, Rainer (2075) + Bielefeld, Rainer (2076) - Effenberger, Florian (1648) + Effenberger, Florian (1649) Michaelsen, Björn (1524) @@ -5802,7 +5830,7 @@ Marcpare (1388) - Filmsi (1306) + Filmsi (1371) Adailton (1203) @@ -5813,13 +5841,13 @@ - Buzzatti Pacheco, Gustavo (1140) + Kompilainenn (1149) - Kompilainenn (1137) + Buzzatti Pacheco, Gustavo (1141) - GerryT (1130) + GerryT (1131) Haas, Uwe (1095) @@ -5833,15 +5861,15 @@ Novak, Nino (976) - Jayme Barrientos, Adolfo (951) + Jayme Barrientos, Adolfo (969) - Hallot, Olivier (939) + Hallot, Olivier (958) - Naruoga (937) + Naruoga (943) Tom (926) @@ -5855,21 +5883,21 @@ - Enoki (862) + Enoki (868) - Nouws, Cor (858) + Nouws, Cor (859) Teo91 (733) - Iversen, Jan (693) + Hibagonsan (694) - Hibagonsan (690) + Iversen, Jan (693) H-k (659) @@ -5883,27 +5911,27 @@ - Behrens, Thorsten (620) + Behrens, Thorsten (625) - Jmadero (596) + LibreOfficiant (597) - Jmpierre (577) + Jmadero (596) - LibreOfficiant (567) + X1sc0 (591) - ChristophNoack (549) + Jmpierre (577) - Paulo (546) + ChristophNoack (549) - X1sc0 (543) + Paulo (546) Knorr, Stefan (521) @@ -5917,7 +5945,7 @@ Elianedomingos (508) - Rathke, Eike (491) + Rathke, Eike (503) Reisinger, Florian (491) @@ -5925,16 +5953,16 @@ - Lohmaier, Christian (471) + Lohmaier, Christian (473) - Sefran (460) + Sefran (464) - Vajna, Miklos (457) + Vajna, Miklos (461) - Raulpacheco (454) + Raulpacheco (456) @@ -5945,18 +5973,18 @@ Mladek, Petr (450) - Eskroni (437) + Philips, Yousuf (443) - Rmfaile (436) + Eskroni (437) - RobertG (435) + Rmfaile (436) - Philips, Yousuf (432) + RobertG (435) Holešovský, Jan (431) @@ -5973,7 +6001,7 @@ Luz Coelho, Rogério (409) - Beluga (398) + Beluga (408) Yoshida, Kohei (393) @@ -5995,13 +6023,13 @@ - Emanuel Marcatinco (374) + Henschel, Regina (378) - Henschel, Regina (371) + Emanuel Marcatinco (374) - AndrasTimar (369) + AndrasTimar (372) Tardon, David (364) @@ -6015,24 +6043,24 @@ SteenRønnow (360) - Sam m (345) + Sam m (351) - Thiebaud, Norbert (341) + Mike.saunders (344) - Stahl, Michael (340) + Stahl, Michael (343) - Mike.saunders (335) + Thiebaud, Norbert (341) - Pruegsanusak, Korrawit (330) + Elcico (333) - Elcico (329) + Pruegsanusak, Korrawit (330) @@ -6046,11 +6074,14 @@ Veracape (321) - Heinzws (292) + Khanson679 (300) + Heinzws (292) + + Librelegal (292) @@ -6059,11 +6090,11 @@ Tseng, Cheng-Chia (286) + + Thackert (279) - - Epix (268) @@ -6071,15 +6102,12 @@ Helen russian (268) - Khanson679 (254) - - - Remarques (252) + Lillqvist, Tor (255) - Lillqvist, Tor (251) + Remarques (252) Deemonizer (248) @@ -6096,13 +6124,13 @@ Steve (237) - Bosdonnat, Cédric (231) + Kaplan, Lior (235) - Bedipp (226) + Bosdonnat, Cédric (231) - Kaplan, Lior (223) + Bedipp (226) @@ -6116,12 +6144,12 @@ Gilvanvilarim (217) - Khirano (215) + Kerwyn (216) - Kerwyn (213) + Khirano (215) Jbfaure (212) @@ -6141,28 +6169,31 @@ Erhardt (193) - Schulz, Charles-H. (189) + Vignoli, Italo (190) - DmitryBowie (188) + Schulz, Charles-H. (189) - Tarnhold (187) + DmitryBowie (188) - Bergmann, Stephan (186) + Tarnhold (187) - Vignoli, Italo (185) + Tietze, Heiko (186) - Méixome, Antón (179) + Bergmann, Stephan (186) + Méixome, Antón (179) + + Alkurtass, Issa (178) @@ -6171,11 +6202,11 @@ Madl, Tobias (175) + + Fridrich (172) - - Luizheli (172) @@ -6183,9 +6214,6 @@ Furusho (170) - Tietze, Heiko (170) - - Jiang, Yifan (168) @@ -6205,7 +6233,7 @@ - Drodriguez (151) + Drodriguez (152) Pietro (150) @@ -6214,11 +6242,14 @@ Herzog, Christoph (149) - Back69 (146) + Xystina (148) + Back69 (146) + + Mipmap (144) @@ -6227,11 +6258,11 @@ Lorenzo (140) + + Óvári (140) - - De Cuyper, Joren (138) @@ -6241,11 +6272,11 @@ Heliojsf (137) + + P.guimberteau (137) - - Mamane, Lionel Elie (135) @@ -6255,81 +6286,81 @@ Norah (135) - - Filhocf (132) - - Xystina (132) + Zolnai, Tamás (134) + + + Kosiorek, Bartosz (133) + + + Filhocf (132) Richteruwe (131) + + Michel, Mathias (129) Shunesburg69 (129) - - Nik (127) Ikuya (126) + + + + Kara, Muhammet (126) + Junmeguro (125) Krackedpress (123) - - RGB.ES (123) + + Abe, Takeshi (123) - Zolnai, Tamás (123) + Kitaygrad (122) - Kosiorek, Bartosz (122) - - - - Trapezus (122) Jucasaca (121) + + Deneb (120) JohnSmith (120) - - Liebel, Jennifer (119) - Kara, Muhammet (119) - - Phorious (118) + + Ki Drupadi (115) - - Spaeth, Sebastian (115) @@ -6337,9 +6368,6 @@ Markers (114) - Kitaygrad (113) - - Massimo.zaffaina (113) @@ -6365,14 +6393,17 @@ Bachka (109) - Nyucel (108) + Nemeth (109) - Salix (107) + Nyucel (108) + Salix (107) + + Bitsfritz (104) @@ -6381,16 +6412,13 @@ Kevin, Suo (锁琨珑) (102) - - Pechlaner, Wolfgang (102) - - JZA (101) + Pechlaner, Wolfgang (102) - Nemeth (101) + JZA (101) Android272 (99) @@ -6407,14 +6435,17 @@ AlanC (98) - Chris-hoh (94) + Monthoflibreoffice bot (95) - Andreasg (92) + Chris-hoh (94) + Andreasg (92) + + Llunak (92) @@ -6423,11 +6454,11 @@ Jeanmi2403 (91) + + Franklin (90) - - Frombenny (90) @@ -6437,11 +6468,11 @@ Dan (88) + + Hertel, Jesper (88) - - Milos (87) @@ -6451,11 +6482,11 @@ Omori (86) + + Nabet, Julien (86) - - KorrawitBot (84) @@ -6465,11 +6496,11 @@ Evy (83) + + Steve- - (83) - - Nogajun (82) @@ -6479,11 +6510,11 @@ JamesWalker (81) + + Fišeras, Aurimas (80) - - 80686 (79) @@ -6493,11 +6524,11 @@ MDDN (79) + + Ogervasi (79) - - Xosé (78) @@ -6507,11 +6538,11 @@ Horáček, Stanislav (76) + + Albino (75) - - Baffclan (75) @@ -6519,9 +6550,6 @@ K.K.Ashisuto (75) - Monthoflibreoffice bot (75) - - Emoreno (74) @@ -6578,26 +6606,29 @@ Karbasion, Bersam (65) - StanG (65) + Köse, Gülşah (65) - Oipila (64) + StanG (65) - Bmcs (63) + Kaganski, Mike (64) - Kudelis, Rimas (63) + Oipila (64) - Sikeler (63) + Bmcs (63) - Köse, Gülşah (62) + Kudelis, Rimas (63) + + + Sikeler (63) Popa, Adrian Marius (62) @@ -6605,11 +6636,11 @@ Denco (61) + + Frieder (61) - - Arnaudlecam (60) @@ -6617,42 +6648,42 @@ Jlgrenar (60) + Timur LOL (59) + + + + Neel, Daniel (58) Loflex (58) - - Kukan, Matúš (58) Camillem (57) + + Slacka (57) Vpanter (57) - - Davefilms (56) Glen.reesor (56) + + Ramones (56) - Timur LOL (56) - - - - Hunt, Andrzej (55) @@ -6661,11 +6692,11 @@ Jrahemipour (55) + + Cornell, Clayton (54) - - Fanthomas (54) @@ -6675,11 +6706,11 @@ Heben2 (53) + + Sunny2038 (53) - - Petrizzo (52) @@ -6689,11 +6720,11 @@ Chtfn (51) + + Helmar (51) - - Jaani (51) @@ -6703,13 +6734,10 @@ Ponzo, Gabriele (50) - - Halparker (50) - - Kaganski, Mike (50) + Halparker (50) Paz (50) @@ -6718,15 +6746,15 @@ Ronaldo (50) - Mpescador (49) + Teseu (50) - Magliocchetti, Riccardo (49) + Mpescador (49) - Teseu (49) + Magliocchetti, Riccardo (49) Vardomescro (49) @@ -6793,49 +6821,52 @@ + JARF (42) + + KAMI (42) + Lendo (42) + + Another sam (41) + + Arjunaraoc (41) Joey (41) - - Pedlino (41) Raal (41) + + Kraucer (40) - Lendo (40) - - - - Quikee (40) Sveinki (40) - Enervation (38) - - - Pje335 (38) + Afaccioli74 (38) - Afaccioli74 (37) + Enervation (38) + + + Pje335 (38) Alex Thurgood (37) @@ -6843,11 +6874,11 @@ Cjenkins (37) + + Ivanslf (37) - - Aragunde Pérez, Jacobo (37) @@ -6857,11 +6888,11 @@ Kinshuksunil (37) + + Castle, John LeMoyne (37) - - RaducuG (37) @@ -6871,11 +6902,11 @@ Uwealtmann (37) + + Caco13 (36) - - Danishka (36) @@ -6885,11 +6916,11 @@ Sci citation (36) + + Yan Pashkovsky (36) - - Liongold (35) @@ -6899,11 +6930,11 @@ Pingping111 (35) + + Stalker08 (35) - - Subramanian, Muthu (35) @@ -6913,11 +6944,11 @@ Davidlamhauge (33) + + Corrius, Jesús (33) - - Lmartinezh (33) @@ -6927,11 +6958,11 @@ Mateus.m.luna (33) + + Pereriksson (33) - - Rafi (33) @@ -6941,11 +6972,11 @@ Clio (32) + + Daud (32) - - Lenochod (32) @@ -6953,114 +6984,122 @@ Dryomov, Artur (32) + Monocat (32) + + + + Vulcain (32) Xuacu (32) - - Alexanderwerner (31) Bormant (31) + + Jingtao, Yan (31) IvanM (31) - - Njsg (30) Ptoye (30) + + Speck (30) Sherlock, Chris (30) - - Tclovis (30) Thardeck (30) + + Cida.Coltro (29) Darbe (29) - - EdvaldoSCruz (29) Haaninjo (29) + + RodolfoRG (29) Серж (29) - - Ace-dent (28) Arnaud versini (28) + + Elmau (28) Riemer, Philipp (28) - - H (28) Jihui choi (28) + + المسيكين (28) Crossmanles5 (27) - - Marcofilippozzi (27) Marcos Paulo de Souza (27) + + Micm (27) PeppinoLib (27) - - + + Sangfono11 (27) + Thuswaldner, Albert (27) + + Alayaran (26) @@ -7070,11 +7109,11 @@ Daveb (26) - - Eresus (26) + + Ezeperez26 (26) @@ -7084,11 +7123,11 @@ Grandin, Noel (26) - - Linuxman (26) + + Lutch (26) @@ -7098,11 +7137,11 @@ Pirat Michi (26) - - Schiavinatto (26) + + Vaslav (26) @@ -7112,11 +7151,11 @@ AnXh3L0 (25) - - Roßmanith, Christina (25) + + Freddyrh (25) @@ -7124,6 +7163,9 @@ Sullivan, Gatlin (25) + Jstnlth (25) + + Lboccia (25) @@ -7160,19 +7202,16 @@ Gérard24 (24) - Jstnlth (24) - - Kelemeng (24) Ksoviero (24) - - Nik vr (24) + + Olivier (24) @@ -7182,11 +7221,11 @@ Fábio Coelho (23) - - Hamurcu (23) + + Montané, Joan (23) @@ -7196,11 +7235,11 @@ TaeWong (23) - - Team One (23) + + Tommy27 (23) @@ -7210,15 +7249,18 @@ Aphaia (22) - - Bellerophon (22) + + Bjoern (22) + Kłos, Szymon (22) + + HenryGR (22) @@ -7233,16 +7275,13 @@ Toxitom (22) - Kłos, Szymon (21) - - Jeppebundsgaard (21) - - Johannes (21) + + Liusiqi43 (21) @@ -7252,6 +7291,9 @@ Puster (21) + + Ruskoqoi95 (21) + @@ -7278,68 +7320,82 @@ LLyaudet (20) - Mattsturgeon (20) + Lindersmduxe41 (20) + Mattsturgeon (20) + + + Maullagi9 (20) + + Vdragon (20) Vmalep (20) + + XMatence (20) Yorick (20) - - Zapata (20) Clarice Vigliazzi (19) + + Guateconexion (19) JaronBaron (19) - - Jem (19) Juergenfenn (19) + + Kentarch (19) Magee, Timothy (18) - - Jstaerk (18) Narayan (18) + + + + Nestifea61 (18) + Power, Noel (18) Richard (18) + + Sooth (18) + - Sooth (18) + SophiaS (18) UriHerrera (18) @@ -7381,20 +7437,23 @@ - Rubembarreto (17) + Padfieldpet3 (17) - SophiaS (17) + Pokeyujo5 (17) - Taken (17) + Rubembarreto (17) - Uznomis (17) + Taken (17) + Uznomis (17) + + Yumakino (17) @@ -7403,21 +7462,32 @@ Airon90 (16) + + Alexpikptz (16) - - + + Bryantyic29 (16) + Dhersh (16) + Hassingleau6 (16) + + + + Houbsi (16) Funk, Juergen (16) + Maeganiame1 (16) + + MoIshihara (16) @@ -7538,19 +7608,30 @@ Librosaurus (14) + Louisuel40 (14) + + + Luginbilwub57 (14) + + Mderoucy (14) + + Rania (14) Reinsle (14) - - + + RiderExMachina (14) + Susobhang70 (14) + + Tamiliam (14) @@ -7560,11 +7641,11 @@ Thangamani-arun (14) - - Vipin121 (14) + + Akoscomp (13) @@ -7574,10 +7655,16 @@ Alyssonware (13) + + Beuss (13) + - Beuss (13) + Brendanludi90 (13) + + + Brianaoiu0 (13) Cedric31 (13) @@ -7585,11 +7672,11 @@ Gallaecio (13) + + Jobo (13) - - Kadekilo (13) @@ -7599,11 +7686,11 @@ Ljelly (13) + + Luc (13) - - Luked (13) @@ -7613,11 +7700,11 @@ Mihkel (13) + + Mortense (13) - - Odd123 (13) @@ -7627,11 +7714,11 @@ S.Gecko (13) + + Samtuke (13) - - Sanyii (13) @@ -7641,11 +7728,11 @@ ThierryM (13) + + Tnishiki (13) - - Vivaelcelta (13) @@ -7655,11 +7742,11 @@ Webmink (13) + + Alfabech (12) - - And471 (12) @@ -7667,23 +7754,34 @@ AustinW (12) + Budea, Áron (12) + + + + Bhaskar (12) Cralin (12) - - Al-Otaibi, Faisal M. (12) + Grzesiek a (12) + + + + Halan (12) Immanuelg (12) + Kennethoiki3 (12) + + Krabina (12) @@ -7737,16 +7835,27 @@ Gokul, S (11) - Kallecarl (11) + Hansonmutu01 (11) - Luiz Henrique Natalino (11) + Johnny M (11) + Kallecarl (11) + + + Lahomasuoo06 (11) + + + Luiz Henrique Natalino (11) + + MNeto (11) + + Pearson, Timothy (11) @@ -7756,11 +7865,11 @@ NON (11) - - Johansson, Niklas (11) + + Nuernbergerj (11) @@ -7770,10 +7879,13 @@ Priyanka singh (11) + + Rogeniobelem (11) + - Rogeniobelem (11) + Ryszjen72 (11) Salmaan (11) @@ -7796,25 +7908,28 @@ Vrlivre (11) - Zero0w (11) + Yanmua60 (11) - Admasonscottisha (10) + Zahnkelux9 (11) - Aeusebio (10) + Zero0w (11) - Algotruneman (10) + Admasonscottisha (10) - Bearon (10) + Aeusebio (10) + Algotruneman (10) + + Castagno, Giuseppe (10) @@ -7823,11 +7938,11 @@ Crolidge (10) + + Diginin (10) - - Eagles051387 (10) @@ -7837,11 +7952,11 @@ Eficheux (10) + + El7r (10) - - J.baer (10) @@ -7851,11 +7966,11 @@ Jdittrich (10) + + Kadertarlan (10) - - Kirill NN (10) @@ -7865,88 +7980,99 @@ Linuxuser330250 (10) + + Lionlinux (10) - - Pinto, Marco A.G. (10) + Masaracclan4 (10) + + Chung, Elton (10) + + Mikalai (10) Mikeyy (10) - - Morvan (10) Nateyee (10) + + Otto (10) Revol (10) - - Ronja (10) Tatat (10) + + Tomg (10) Twstdude0to1 (10) - - User8192 (10) Wlenon (10) + + Al-Abdulrazzaq, Abdulmajeed (9) Agger (9) - - AtkinsSJ (9) Calisgarge (9) + + Camargo (9) Cnuss (9) - - Crazyskeggy (9) + Czarneckyej8 (9) + + + + Dennisfrancis (9) + Devonsuc89 (9) + + Dupreyb (9) @@ -7986,68 +8112,82 @@ Jowyta (9) + Knoedleryoge88 (9) + + Kscanne (9) + Laeliav77 (9) + + + + Lapetec (9) Lexeii (9) - - Mapper (9) Marco (9) + + Markharry08 (9) Meo (9) - - Msaffron (9) Ohnemax (9) + + Onting (9) Oprea.luci (9) - - Foley, Peter (9) Pixpray (9) + + Dricot, Lionel (9) Portieuoh3 (9) - - Rantaro (9) Rogawa (9) + + Rpr (9) + Shareniob39 (9) + + + Ionita, Teodor-Mircea (9) + + Spacebat (9) @@ -8084,16 +8224,19 @@ Alexxed (8) + Amoakua87 (8) + + AndikaTriwidada (8) AndreasL (8) + + Brandner, Andreas (8) - - Ausserirdischegesund (8) @@ -8103,11 +8246,11 @@ Cusiri (8) + + Dashohoxha (8) - - DrDub (8) @@ -8117,42 +8260,50 @@ Elacheche (8) + + + + Harleypiuo33 (8) + Horst (8) - - Israel Chaves (8) JR (8) + + Jadapone13 (8) Jrsiqueira (8) - - Jslozier (8) Hoffimann Mendes, Júlio (8) + + Dywan, Christian (8) + Kanavic54 (8) + + Kednar (8) - - Kemberlyjuxa9 (8) + + Rietveld, Kristian (8) @@ -8162,11 +8313,11 @@ Lee (8) - - Leigh, Jack (8) + + Leo.h.hildebrandt (8) @@ -8174,6 +8325,9 @@ Manj k (8) + Mihalchiuote2 (8) + + Mrmox2 (8) @@ -8213,16 +8367,27 @@ Troumad (8) - Vbkaisetsu (8) + Tubmanjate2 (8) - VlhOwn (8) + Vbkaisetsu (8) + Vivancokako6 (8) + + + VlhOwn (8) + + + Whittlesmube1 (8) + + Yakusha (8) + + Yostane (8) @@ -8232,6 +8397,9 @@ Alberthuddle1 (7) + + Amejoradmure7 (7) + @@ -8241,14 +8409,17 @@ Ashishku9888 (7) - Bastik (7) + Barribeayib37 (7) - Bjherbison (7) + Bastik (7) + Bjherbison (7) + + Bookman900 (7) @@ -8257,47 +8428,72 @@ Capiscuas (7) + + Chin Zee Yuen (7) + + Ciaran (7) + + + Colfleshteiu5 (7) + + + Crissyraa6 (7) + - Ciaran (7) + Cucinottquo06 (7) Dado (7) - Drose (7) + Darnellbiy33 (7) - Esbardu (7) + Drose (7) - Grimaudkoo88 (7) + Esbardu (7) + + + Eugeneeow4 (7) + + + Franklinaequ5 (7) - Grzesiek a (7) + Grimaudkoo88 (7) + + GuKK-Devel (7) + Gunnettqoq5 (7) + + Gussiefij59 (7) + + Huettmanvika85 (7) + Hunter, Kevin (7) - Ingotian (7) + Illabisa70 (7) - Johnny M (7) + Ingotian (7) Johnrudelee (7) @@ -8308,19 +8504,30 @@ Šebetić, Krunoslav (7) + Kumxee0 (7) + + Levith (7) Lonelyhiker (7) + + + + Luciatuui2 (7) + M1cky (7) - - + + Mackrij6 (7) + Mariosv (7) + + Mbayer (7) @@ -8330,11 +8537,11 @@ MephistoBooks (7) - - Weghorn, Michael (7) + + Mietusquaa9 (7) @@ -8344,11 +8551,11 @@ Nathanjh13 (7) - - Ndduong (7) + + Nemo bis (7) @@ -8358,11 +8565,11 @@ Opensas (7) - - Peggysiu4 (7) + + Polte (7) @@ -8370,6 +8577,9 @@ RMCampos (7) + Rayfero6 (7) + + Rileyoaj92 (7) @@ -8381,10 +8591,10 @@ Shady (7) - Ionita, Teodor-Mircea (7) + Simosx (7) - Simosx (7) + Susanoox93 (7) @@ -8403,6 +8613,9 @@ + Wilberguwi73 (7) + + Woordje (7) @@ -8411,11 +8624,11 @@ Alexandrorodrigez (6) + + Andreas ka (6) - - Armin Dänzer (6) @@ -8425,11 +8638,11 @@ Higginson, Andrew (6) + + Barend (6) - - Bobe (6) @@ -8439,11 +8652,11 @@ Cccfr (6) + + ClausKofoed (6) - - Coypu (6) @@ -8453,71 +8666,79 @@ BEN MANSOUR, Mohamed-Ali (6) + + Darencim6 (6) - - Ddxavier (6) + Deannuap96 (6) + + Dfriedman (6) + + DotnetCarpenter (6) Mencken, Douglas (6) - - Dr.Faust (6) Druzhshchienschkyj (6) + + Edmond ciorba (6) Edmund.laugasson (6) - - Equis (6) FPhoenix (6) + + Fdekruijf (6) Gallaire, Florent (6) - - Fisiu (6) Florian heckl (6) + + Ghune (6) Googly Googly (6) - - HdV (6) + Herbeol59 (6) + + + + Hmoi (6) @@ -8526,11 +8747,11 @@ Infoprof (6) - - Iplaw67 (6) + + Timofeev, Ivan (6) @@ -8540,11 +8761,11 @@ Jeffersonx (6) - - Jonatoni (6) + + Jonyjony (6) @@ -8554,11 +8775,11 @@ Kingu (6) - - Levlazinskiy (6) + + Link Mauve (6) @@ -8568,23 +8789,29 @@ Manas (6) + + Manop (6) + - Manop (6) + Marco c (6) Mas (6) - Mgommel (6) + Melvingoce71 (6) - Mmetz (6) + Mgommel (6) + Mmetz (6) + + Rimkus, Modestas (6) @@ -8593,11 +8820,11 @@ Öttl, Gerhard (6) + + Only you (6) - - Os cib (6) @@ -8605,23 +8832,34 @@ PLNET (6) + Peppinbuy9 (6) + + + + Pescetti (6) Peter Chastain (6) - - Peterhuang1kimo (6) Puggan (6) + + RegisPerdreau (6) + Remonahabu73 (6) + + + Robairlas31 (6) + + Rotaj (6) @@ -8706,55 +8944,80 @@ AleXanDeR G (5) - Alfalb (5) + Alexandrmuh8 (5) + Alfalb (5) + + Alvarez, Octavio (5) + Amoerado58 (5) + + Andrea Gelmini (5) + + Anousak (5) Liwen, Fan (5) - - Art.Gilvanov (5) Sodora, August (5) + + AustinSaintAubin (5) Baumgarp (5) - - Belkacem77 (5) Bellorata08 (5) + + + + Bernardieofi80 (5) + Bitigchi (5) - BloodIce (5) + Bleckqig5 (5) + + + Bleseryel33 (5) + BloodIce (5) + + + Borgenvud70 (5) + + + Bretluese45 (5) + + Cornehel8 (5) + + Cray85 (5) @@ -8762,6 +9025,9 @@ Cronholmgem3 (5) + Croninnani0 (5) + + Dejourdain (5) @@ -8787,16 +9053,27 @@ Earlesuoxe58 (5) - Elly15 (5) + Elenorral50 (5) - Fazbdillah (5) + Elly15 (5) + Emblybevu75 (5) + + + Erroliue61 (5) + + + Fazbdillah (5) + + Florian.haftmann (5) + + Francewhoa (5) @@ -8806,15 +9083,18 @@ GaboXandre (5) - - Ggurley (5) + + Gpoussel (5) + Guilhem (5) + + H.Sparks (5) @@ -8826,16 +9106,19 @@ Heiermanouhu61 (5) + Holliieh7 (5) + + HubPfalz (5) Humbertoyolu7 (5) + + Hummer5354 (5) - - HwangTW (5) @@ -8843,45 +9126,53 @@ Icyitscold (5) + Isabelniuu69 (5) + + + + Isaiasjoy1 (5) Jacquelyyot5 (5) - - Jaysponsored (5) JoeP (5) + + Johan123 (5) John.pratt (5) - - Joselyncaj7 (5) Kabe (5) + + KadlecOn (5) Kamataki (5) - - Katinawuqi3 (5) + Kennithnof2 (5) + + + + Kirti35 (5) @@ -8890,20 +9181,37 @@ Koji Annoura (5) + + Kuhsmor7 (5) + LibreOfficeUser1 (5) + Lucioaaja7 (5) + + Mak (5) + Markitayib3 (5) + + + + Marklh9 (5) + Maureenraou31 (5) + + Mccareysid07 (5) + + Mckimmyron0 (5) + @@ -8952,16 +9260,19 @@ Pepe (5) + Peteryoc0 (5) + + Pkoroau (5) Poeml (5) + + Radish (5) - - Rajesh (5) @@ -8971,11 +9282,11 @@ Raulpaes (5) + + Rautamiekka (5) - - ReneEngelhard (5) @@ -8985,14 +9296,22 @@ Richietuw75 (5) + + Rogerio DA (5) - - + + Sabaterxoku61 (5) + + + SabinGC (5) + Salavine1 (5) + + Chvátal, Tomáš (5) @@ -9002,11 +9321,11 @@ Sergej (5) - - Shinaberaoa60 (5) + + So solid moo (5) @@ -9016,15 +9335,18 @@ Starseeker (5) - - Sundarbhai (5) + + Svante (5) + Swederiei47 (5) + + Taylorh140 (5) @@ -9056,11 +9378,14 @@ Wt (5) - Yaron (5) + Yanirakosi8 (5) + Yaron (5) + + Yury Tarasievich (5) @@ -9069,11 +9394,11 @@ Aaronkyle (4) + + Aas (4) - - Adderbox76 (4) @@ -9081,17 +9406,25 @@ Agron (4) + Ahmadgix13 (4) + + + + Albertoeda (4) Nureña, Aldo Román (4) - - Alex1 (4) + Alfredeisi3 (4) + + + + Alvarenga (4) @@ -9100,11 +9433,11 @@ Amire80 (4) - - Andrusmith1 (4) + + Andréb (4) @@ -9114,11 +9447,11 @@ Arhitectul (4) - - Axel (4) + + Ayhanyalcinsoy (4) @@ -9128,11 +9461,11 @@ Bardo (4) - - Widl, Bernhard (4) + + Bigbek (4) @@ -9142,11 +9475,11 @@ Blender3dartist (4) - - Bntser (4) + + Br983288 (4) @@ -9154,16 +9487,33 @@ Cam AW (4) - ConquerorsHaki (4) + Charleybiro56 (4) + + + Clarettagefi60 (4) + ConquerorsHaki (4) + + + Coreymuo16 (4) + + Crankybot (4) CyrilBeaussier (4) + + + + Darcangebica4 (4) + + + Deidreteou04 (4) + Deivan (4) @@ -9210,11 +9560,14 @@ Erx700 (4) - Fmolinero (4) + Ferrycoy1 (4) + Fmolinero (4) + + Ftigeot (4) @@ -9223,110 +9576,138 @@ Garrowolf (4) + + Girschtav54 (4) - - Gmjs (4) + Heathjaei99 (4) + + Hossein (4) + + ImperfectlyInformed (4) Ionepab25 (4) - - Jamesleader (4) Jessefrgsmith (4) + + Jiehong (4) Jjmeric (4) - - JnRouvignac (4) Jonata (4) + + Jones (4) Jooste (4) - - Joriki (4) Le Bigot, Jean-Tiare (4) + + Juanboled (4) Laquitauun1 (4) - - Lethargilistic (4) Loren.rogers (4) + + + + Lucretiaueu6 (4) + Haggag, Muhammad (4) MPascual (4) + + Rumianowski, Maciej (4) + - Rumianowski, Maciej (4) + Marcelluned7 (4) - Marco c (4) + Mccullumueme74 (4) Mhonline (4) - Mikedoherty ca (4) + Mihlfeldheh12 (4) + Mikedoherty ca (4) + + Morgan greywolf (4) Mortgage01 (4) + Myeshakiio7 (4) + + + + NGHLibreOffice (4) + Nieshavece19 (4) + + + O.villani (4) + + Offidocs (4) + Ollieweye1 (4) + + Orson69 (4) @@ -9335,11 +9716,11 @@ Paolopoz (4) + + Pegasus (4) - - Pgassmann (4) @@ -9349,11 +9730,11 @@ Pjacquod (4) + + Prolog.guy (4) - - Psao (4) @@ -9363,40 +9744,55 @@ Rana121 (4) + + + + Rebbeccakex3 (4) + Reyn100 (4) - - Ricgal (4) Rodhos (4) + + Samson (4) Sasha (4) + + Sealview (4) + + + Serge Krot (4) + - Sealview (4) + Shennajaq6 (4) Smithjohne256 (4) - SpencerMann (4) + Speakeval12 (4) - Sswales (4) + SpencerMann (4) + + Sswales (4) + + Stevenmw (4) @@ -9405,11 +9801,11 @@ Surat (4) + + Tct (4) - - Thetic (4) @@ -9419,11 +9815,11 @@ Txwikinger (4) + + Ufas (4) - - UlKu (4) @@ -9433,11 +9829,11 @@ Urhixidur (4) + + Uzadmin (4) - - Melenchuk, Vasily (4) @@ -9447,11 +9843,11 @@ Wcolen (4) + + Wikiuser (4) - - Williamjmorenor (4) @@ -9461,11 +9857,11 @@ Денис (4) + + Aalam (3) - - AbhilashSingh (3) @@ -9475,18 +9871,29 @@ Aexyn (3) + + + + Ahheeyev94 (3) + + + Aileneqone6 (3) + Jain, Atishay (3) - - Alex.simoes (3) + + Alexsfagundes (3) + Alexstrand7 (3) + + Almorca (3) @@ -9504,11 +9911,14 @@ Arkanosis (3) - Armin (3) + Armandasie03 (3) + Armin (3) + + Armin W. (3) @@ -9517,11 +9927,11 @@ Aurelien (3) + + Avi1234 (3) - - Baena (3) @@ -9531,11 +9941,11 @@ Benjwgarner (3) + + Bernardi, Paolo (3) - - Bholisingh (3) @@ -9545,42 +9955,50 @@ Bodhi-Baum (3) + + + + Bonifacikeq28 (3) + Bootingman (3) - - Bos (3) Prajapati, Gautam (3) + + Brub (3) Buddingtfid4 (3) - - Burdakov (3) CIB.Mathias (3) + + CallieCarney (3) + Cameronriaa6 (3) + + Carleypaua70 (3) - - Castro (3) + + Charu (3) @@ -9588,6 +10006,9 @@ Chavianosac2 (3) + Cheryleoib42 (3) + + Chuchano2 (3) @@ -9621,15 +10042,29 @@ + Danareb4 (3) + + Beurle, Darcy (3) Bankston, Daniel (3) + Decambrafis1 (3) + + + + Dhsung (3) + Dillashabol58 (3) + + + Dittusqur94 (3) + + Donbrookman (3) @@ -9644,50 +10079,64 @@ Eeha0120 (3) - Elnafafe0 (3) + Eisa01 (3) + Elnafafe0 (3) + + + Elnorasiki59 (3) + + Elproferoman (3) ErSey (3) + + Eric.ficheux (3) Ericatamiris (3) - - Estebanmonge (3) Eviepoc13 (3) + + Farukuzun (3) Fraang (3) - - Franzjakob (3) Frob tea (3) + + Fulldecent (3) FunkyPenguin (3) + + Geoffreyboi01 (3) + + + Gettmanpan04 (3) + @@ -9705,50 +10154,61 @@ + Hafflingbaee64 (3) + + Hansgerd.schneider (3) Hassonvuku19 (3) + Hermajemi56 (3) + + + + Herrmarder (3) Hwpplayer1 (3) - - IanL (3) Imcon (3) + + It-christian (3) IvanMM (3) - - JDM (3) JO3EMC (3) + + Jamescarter (3) + Jamieqey78 (3) + + Jennifer.park (3) - - Murugan, Jesso Clarence (3) + + Jhbn (3) @@ -9758,11 +10218,11 @@ Joe312213 (3) - - Johannes Rohr (3) + + Joseroberto (3) @@ -9772,11 +10232,11 @@ Julianm (3) - - K Karthikeyan (3) + + Kbiondi (3) @@ -9786,11 +10246,11 @@ Kfogel (3) - - Khunshan (3) + + Kisamar7 (3) @@ -9798,6 +10258,9 @@ Kkrothapalli (3) + Kristiiaci7 (3) + + Kristof (3) @@ -9809,13 +10272,26 @@ LO Rob (3) + Lacyvoce00 (3) + + + Lacyxuki70 (3) + + + + + Lawyerixtu (3) + + + Leifkira42 (3) + + Lennoazevedo (3) Lenoragagi67 (3) - LewisCowles (3) @@ -9838,14 +10314,17 @@ Luuk (3) - Margott (3) + Lyndiayof8 (3) - Marializ (3) + Margott (3) + Marializ (3) + + Matteocam (3) @@ -9854,126 +10333,134 @@ Maxwell (3) + + Maya (3) - - Mbalabanov (3) + Mcnameexusu81 (3) + + Measure for Measure (3) + + Melike (3) Merlinnec0 (3) - - Mhoes (3) Mhsmsantos (3) + + Michaelwheatland (3) Neookano (3) - - Nicolas.abel (3) Niconil (3) + + Ragnarsson, Björgvin (3) Nloira (3) - - Noel Power (3) OOarthurOo (3) + + Steinbeiß, Simon (3) Ojeremyj (3) - - - + Oliverguenther (3) Oprea luci (3) + + Pearcycaw01 (3) Penalvch (3) - - van Oostrum, Piet (3) Pr410 (3) + + Prakash72 (3) Radha013 (3) - - Rajatvijay (3) Rajkumar0044 (3) + + Rapha.ksf (3) Rauloliverpaes (3) - - Raykowj (3) RebeccaHodgson (3) + + Rick (3) Robert.E.A.Harvey (3) - - + + Rosalindweke74 (3) + Rosemary (3) + + Rosierhua84 (3) @@ -9983,11 +10470,11 @@ Sander Klootwijk (3) - - Sangeeta (3) + + Saper (3) @@ -9997,11 +10484,11 @@ Saurav111 (3) - - Sayt (3) + + Schroed(ing)er (3) @@ -10011,11 +10498,11 @@ Sebby (3) - - Sergey Aka (3) + + Sethigosu84 (3) @@ -10025,10 +10512,13 @@ Shantayoov2 (3) + + Shelandy (3) + - Shelandy (3) + Shetroneyak3 (3) Skinnerbird (3) @@ -10051,11 +10541,14 @@ StefanRing (3) - SteveKelem (3) + Stempertaate08 (3) + SteveKelem (3) + + Strugee (3) @@ -10064,11 +10557,11 @@ Sushils (3) + + Tamieyai0 (3) - - Taylor46 (3) @@ -10078,42 +10571,50 @@ Timsamoff (3) + + Tititou36 (3) - - Kumar, Tarun (3) + Tobyqeno83 (3) + + Toki (3) + + Tomi Toivio (3) Tovahon5 (3) - - Toxifier (3) Trapassosibo31 (3) + + + + Tremblelux21 (3) + TrnsltLife (3) Tushantin (3) - - Ubap (3) + + Kitzinger, Ulrich (3) @@ -10123,11 +10624,11 @@ Vikashkumar (3) - - Vinctor (3) + + Vljubovic (3) @@ -10137,20 +10638,37 @@ Wagnerluis1982 (3) - - Khoo, Wei Ming (3) + + WesPeacock (3) + Wickershbeni5 (3) + + + Wickizerboiu1 (3) + + Williamendorson48 (3) + + + + Wilsonqun4 (3) + Xaker1 (3) + + Yolondayoko2 (3) + + + Youncehafa3 (3) + @@ -10546,6 +11064,9 @@ + Cœur, Antoine (2) + + DaCaPo (2) @@ -10554,11 +11075,11 @@ Dairdev (2) + + DaisieQuigley (2) - - Damascene (2) @@ -10568,11 +11089,11 @@ Danese (2) + + Dannyjoj59 (2) - - Danthedev (2) @@ -10582,11 +11103,11 @@ Darkixion (2) + + David4you (2) - - Bolen, David (2) @@ -10596,11 +11117,11 @@ Debugercz (2) + + DelinaRomano5 (2) - - DellePoole7 (2) @@ -10610,82 +11131,82 @@ Dennis' Spam test account (2) + + Denytracom (2) - - + + Devenneyhaoo92 (2) + Devilcynthy (2) Diazbastian (2) + + Retout, Tim (2) Django (2) - - DoctorBaxter7 (2) Domasj (2) + + Domsau2 (2) DonaldBryant7 (2) - - DrDrack (2) Dreambox Cccam (2) + + Röllin, Lukas (2) Duiliodias (2) - - DukeDejesus7 (2) EarleSiegel7 (2) + + Ed (2) EdaFreeman3 (2) - - Eduardoarandah (2) Edwardcottreau (2) + + Efs710920mex (2) - Eisa01 (2) - - - - Ejep520 (2) @@ -10694,11 +11215,11 @@ Eldan (2) + + ElisabethHolcomb (2) - - Elixir (2) @@ -10708,11 +11229,11 @@ ElmaGray6 (2) + + Eloquence (2) - - ElsieMacias7 (2) @@ -10722,11 +11243,11 @@ EmperorErnst5 (2) + + EnosKraus6 (2) - - Erdalronahi (2) @@ -10736,11 +11257,11 @@ ErieTovar6 (2) + + Erikcht (2) - - Ersteinmal (2) @@ -10750,11 +11271,11 @@ EssieKeller8 (2) + + EsterEngland7 (2) - - EthylCardenas (2) @@ -10764,11 +11285,11 @@ FateHarrington (2) + + Fcojavmc (2) - - Feldo (2) @@ -10778,11 +11299,11 @@ FlaviaPratt8 (2) + + FlorenceGrossman (2) - - FlorenceKim1 (2) @@ -10792,11 +11313,11 @@ Foolfitz (2) + + FordRhodes5 (2) - - FranciscoByrne (2) @@ -10806,11 +11327,11 @@ Fukanchik, Sergey (2) + + Fyodor, Yemelyanenko (2) - - Garcia.marc (2) @@ -10820,11 +11341,11 @@ GayeRossetti (2) + + GeoDowning4 (2) - - GeoffLawrence (2) @@ -10834,11 +11355,11 @@ Gerardgiraud (2) + + Gerpunzel (2) - - GertieEllington (2) @@ -10848,11 +11369,11 @@ Girvinh (2) + + GiuseppOQH (2) - - Glanbeav (2) @@ -10862,11 +11383,11 @@ Gmealer (2) + + Gmolleda (2) - - GraciaNorwood (2) @@ -10876,13 +11397,10 @@ Grim (2) - - Gualtiero (2) - - Guilhem (2) + Gualtiero (2) Guillem (2) @@ -11028,14 +11546,17 @@ JayStafford3 (2) - Jcentel (2) + Jcarl (2) - Jcubic (2) + Jcentel (2) + Jcubic (2) + + Jeraldinesewell (2) @@ -11044,11 +11565,11 @@ JettieGibson2 (2) + + Jgpestana (2) - - Lingard, J. Graeme (2) @@ -11058,112 +11579,120 @@ Jnicolas (2) + + JoWi (2) - - + + Joewoj11 (2) + Johnplay1 (2) JonesRichter8 (2) + + Jospeheeai49 (2) Jowenshaw (2) - - João Pedro (2) Jstaniek (2) + + JudasPeoples9 (2) JudasPritchard (2) - - JudithGraves6 (2) Jumoun (2) + + JustinaEldridge (2) K.euser (2) - - Kamran Mackey (2) Karakartala (2) + + KarkGunn4 (2) Karolus (2) - - Kasos (2) Kazuyuki Yoshimura (2) + + Keepiledar (2) KeithC (2) - - Khokkanen (2) KittyBauer5 (2) + + KlementynaMckinney (2) Kmr (2) - - KolbeKline1 (2) Kolorguild (2) + + + + Komanwumu0 (2) + Krauss (2) keshav, krishna (2) - - KroniK907 (2) + + KrystalMinchin (2) @@ -11173,11 +11702,11 @@ Kwilliams (2) - - L (2) + + Lalaji (2) @@ -11185,6 +11714,9 @@ LariaJohn3 (2) + LawyerKixFunk (2) + + LeanaParks2 (2) @@ -11291,285 +11823,296 @@ Marcinz (2) + Marcio Oliveira (2) + + Marco74 (2) MargeretRiley (2) + + MargeryThorpe (2) - - + + Marianelwif0 (2) + MarillaMarsh7 (2) Marius (2) + + Markcooper (2) Marric (2) - - MartaRollins2 (2) MarthaBright4 (2) + + MartinPC (2) MateuszDominguez (2) - - - + Matt 51 (2) MattieSchleinit (2) + + Mazuritz (2) Mbemidio (2) - - MercedesDelatorre (2) Merchantbusiness (2) + + Kepplinger, Martin (2) MerleGlass6 (2) - - Mesutkullar (2) Mgiri (2) + + Michaelx (2) Michel Gagnon (2) - - Michiel (2) MikeyZ (2) + + MinaHuggins7 (2) Mind4z (2) - - MinervaLuna8 (2) Mitcoes (2) + + Mjkopp (2) Mklever (2) - - Lechner, Marco (2) Mloiseleur (2) + + Mnalima (2) Mnsoto (2) - - Mordocai (2) MorganJohnstone (2) + + Rugiero, Mario (2) Msmac02 (2) - - Msofcspk (2) Mst0 (2) + + Mttza1 (2) Musicstave (2) - - Nathansen, Martin (2) Mzalewski (2) + + Nacerix (2) Narcisgarcia (2) - - NealEspinoza6 (2) Nenadeq3 (2) + + Nestor (2) NettaHurd9 (2) - - NettieParra1 (2) NewtonZuniga9 (2) + + Nishino, Daisuke (2) NicholasLanier (2) - - Nickk (2) Christener, Nicolas (2) + + Nicolas PAOUR (2) NinaLam6 (2) - - Noirin (2) NoricumArthur (2) + + NorrisAndersen (2) NovemberVogel (2) - - Nsharifi (2) Nuclearbob (2) + + Naeil, Zoueidi (2) OUPS (2) - - Oashnic (2) Odalcet (2) + + Office2016 (2) Oiaohm (2) - - OlaPost6 (2) OlieBooth3 (2) + + OlivierC (2) OnopriyBrandon (2) - - OrlandoArellano (2) OscarMeredith (2) + + + + Paolobenve (2) + Pascaje (2) Percherie (2) - - PercherskySanford (2) + + Senna Tschudin, Peter (2) @@ -11579,11 +12122,11 @@ Phil.davis (2) - - Szelat, Phillip (2) + + Pierre (2) @@ -11593,11 +12136,11 @@ Pitonyak (2) - - Pkst (2) + + PolishHungarianSharp (2) @@ -11607,11 +12150,11 @@ PragueBergman (2) - - Pulsifer (2) + + R.Yu. (2) @@ -11621,11 +12164,11 @@ Rbecke (2) - - ReaganBaudin (2) + + ReeseShepherd (2) @@ -11635,11 +12178,11 @@ RenniePrescott (2) - - RetaStern5 (2) + + Retjewdsryd4 (2) @@ -11649,6 +12192,9 @@ RiceBurger3 (2) + + Ritlay (2) + @@ -11717,11 +12263,14 @@ Bosio, Santiago (2) - Seanyoung (2) + Scottiekolu52 (2) + Seanyoung (2) + + SebastianNorth (2) @@ -11730,11 +12279,11 @@ Sergwish (2) + + Sfeuser (2) - - Sgrotz (2) @@ -11744,11 +12293,11 @@ Shankar (2) + + Shaun.schutte (2) - - Shelpbeo52 (2) @@ -11758,11 +12307,11 @@ SidneyArredondo (2) + + Silwol (2) - - Simplecontrast (2) @@ -11772,11 +12321,11 @@ Kasztenny, Adam (2) + + Soothsilver (2) - - Sotrud nik (2) @@ -11786,11 +12335,11 @@ Spledger (2) + + Spyros (2) - - Sshelagh (2) @@ -11800,11 +12349,11 @@ StaciBorthwick (2) + + Stappers (2) - - Weiberg, Stefan (2) @@ -11814,11 +12363,11 @@ Stevesmith (2) + + Stuarta0 (2) - - Sturm (2) @@ -11828,11 +12377,11 @@ Superurbi (2) + + SusanSwain3 (2) - - Sven.fischer.de (2) @@ -11842,11 +12391,11 @@ Synanceia (Pierre) (2) + + Syntaxerrormmm (2) - - Takakiiaua85 (2) @@ -11856,11 +12405,11 @@ Techal (2) + + Teelittle (2) - - TeenaWilburn (2) @@ -11870,11 +12419,11 @@ Teresavillegas1 (2) + + TerraShears (2) - - TheaGallardo8 (2) @@ -11884,11 +12433,11 @@ TheophilusHess (2) + + Thomase (2) - - Thomeck (2) @@ -11898,11 +12447,11 @@ Tim1075 (2) + + Timeshifter (2) - - TimothyChilds (2) @@ -11912,11 +12461,11 @@ Tomkeb (2) + + Tomrobert87 (2) - - TraciKQAZnsqjho (2) @@ -11924,185 +12473,193 @@ TressieCulver (2) + Trudeloal35 (2) + + + + Tsimonq2 (2) TuMadre (2) - - Isnard, Timothée (2) Tux40000 (2) + + Unknown 32 (2) Usik64 (2) - - ValessioBrito (2) VanHogan7 (2) + + Dhall, Varun (2) VasylynaKendall (2) - - VerneDodd5 (2) VernitaDonley (2) + + VeronaXiong3 (2) VeronicaGrimes (2) - - ViolaPraed (2) Viper550 (2) + + VirginArredondo (2) VladimirBassett (2) - - VladimirPrince (2) VladislavA (2) + + Volker (2) VolodymyraGagnon (2) - - Vossman (2) WaclawaSavage (2) + + Wadehiso2 (2) WalentynaPatrick (2) - - WallaceSolano (2) WarrenChristian (2) + + WashingtonOakley (2) Watermelons (2) - - WeronikaKeene (2) WikiImporter (2) + + WilhelminaEaton (2) Williamjames5611 (2) - - Willsoncartlea (2) WincentyMorrison (2) + + Wirelessben (2) Wkn (2) - - Wulei (2) Xoristzatziki (2) + + Yaw (2) ZiriaKo (2) - - ZoraWinkler1 (2) ريماس هيثم (2) + + 流星依旧 (2) 紅龍國際水産有限公司 (2) - - 29jm (1) A H (1) + + AaronPeterson (1) Abde.jarti99 (1) - - Abdulaziz A Alayed (1) + Abrahamwor3 (1) + + + + Absolute Garcinia (1) @@ -12111,15 +12668,18 @@ Acetfntfh (1) - - Kepenek, Ahmet Can (1) + + AdalberDesailll (1) + Adirapinjamandana (1) + + Adityachunar (1) @@ -12218,14 +12778,17 @@ Ali (1) - Alliot486 (1) + Alicubenjohe8 (1) - AlphonsDen (1) + Alliot486 (1) + AlphonsDen (1) + + Alvaropg (1) @@ -12234,153 +12797,164 @@ Amacater (1) + + Amplesearch (1) - - + + Anasuka7 (1) + Andarilhobotto (1) AndreasEk (1) + + AndreasK (1) AndreasNeudecker (1) - - AndresZapata (1) Andrey.turkin (1) + + Andriazdk2177 (1) AngelaRusconi (1) - - AngelinChisolm (1) AniVar (1) + + Anjilajoli (1) Anjilojilo (1) - - Anne (1) AntoineVe (1) + + Antonello Lobianco (1) AntoniePonder (1) - - Anurag kanungo (1) Apfelsaft (1) + + Priyadarshi, Apurva (1) ArdenRatcliff (1) - - Arekm (1) Ari (1) + + ArielleWx (1) Arkonide (1) - - Armandos (1) Arnaudc (1) + + Arnoldu (1) Teigseth, Arno (1) - - Artintal (1) Arulm (1) + + Asdf (1) Asiersar (1) - - Asselbornmauro (1) Astalaseven (1) + + AstridGoo (1) Attydknise (1) - - Tang, Audrey (1) Augustina (1) + + AundreaPqf (1) AvaPANumrgiabjx (1) + + Avantika (1) + + + Avellaneyon25 (1) + - Avantika (1) + Axtelliiu0 (1) Ayoooub (1) @@ -12389,11 +12963,14 @@ B3t (1) - Bailiwick (1) + Babitschyisu5 (1) + Bailiwick (1) + + Bailly02 (1) @@ -12402,11 +12979,11 @@ Bandera (1) + + Le Garrec, Vincent (1) - - Barbara21F (1) @@ -12416,11 +12993,11 @@ Vincent, Babu (1) + + Bckurera (1) - - Belinda101010 (1) @@ -12428,9 +13005,20 @@ BelindaApplerot (1) + Bereniceuiv01 (1) + + + + BernardHannafor (1) + Bernardsaja3 (1) + + + Bertgau30 (1) + + Bestdating (1) @@ -12487,11 +13075,14 @@ Blandyna (1) - Bobmarley (1) + Blevinsqequ28 (1) + Bobmarley (1) + + Boboo (1) @@ -12500,11 +13091,11 @@ BookerSoderlund (1) + + Borowcm (1) - - Bortis (1) @@ -12514,56 +13105,64 @@ Sowden, Brad (1) + + BrentHawthorne (1) - - + + Bretlhova93 (1) + BridgettC (1) Brinzing, Oliver (1) + + Brochardyoy71 (1) BroderiHolyman (1) - - BryceBrassell (1) BryceMoorhouse (1) + + Budo (1) Burcin (1) - - Bureken (1) Burger.ga (1) + + + + Burrowcab32 (1) + Bzsolt (1) BáthoryPéter (1) - - CalebSommer (1) + + CalebWgypcu (1) @@ -12573,11 +13172,11 @@ Paul, Cameron (1) - - CandelariaJageu (1) + + Capira (1) @@ -12587,15 +13186,18 @@ Carlos (1) - - Carlos.gilaranz (1) + + CarlotaF42 (1) + Carminexew5 (1) + + Castarco (1) @@ -12677,16 +13279,19 @@ Clint7236c (1) + Clintnus1 (1) + + Cnzhx (1) Comcasthelp (1) + + Company (1) - - Cora17 (1) @@ -12696,11 +13301,11 @@ Cosmopolitan (1) + + Cpatrick08 (1) - - Cpinedar (1) @@ -12710,11 +13315,11 @@ Craigsbookclub (1) + + Crouchetoupu7 (1) - - CrystleGravatt (1) @@ -12724,13 +13329,10 @@ Csongorhalmai (1) - - Css17 (1) - - Cœur, Antoine (1) + Css17 (1) DaisieDavison (1) @@ -12809,11 +13411,14 @@ Decs75 (1) - DelbertChristie (1) + Degunyatap8 (1) + DelbertChristie (1) + + DelilahBock (1) @@ -12822,11 +13427,11 @@ Deva09 (1) + + Dezsiszabi (1) - - Kis-Ádám, László (1) @@ -12836,11 +13441,11 @@ Dhiren (1) + + Dianasedlak (1) - - Dianita (1) @@ -12848,17 +13453,25 @@ Dicksondeoo92 (1) + Dignaues8 (1) + + + + Kettner, Valentin (1) Do Nhu Vy (1) - - DocuFree (1) + Domingauiau93 (1) + + + + Dominiko (1) @@ -12867,11 +13480,11 @@ Donadel (1) - - Dontepave56 (1) + + DoreenDuell (1) @@ -12881,11 +13494,11 @@ Drizamanuber (1) - - Drlandi (1) + + Drtimwright (1) @@ -12895,11 +13508,11 @@ Dwilsonq05 (1) - - Dwilsonqq005 (1) + + Dxider (1) @@ -12909,11 +13522,11 @@ EHGSammyevumvzq (1) - - EarnestLamaro (1) + + EarnestT57 (1) @@ -12923,11 +13536,11 @@ Echada (1) - - EdgardoRios (1) + + Edsonlead (1) @@ -12937,11 +13550,11 @@ Efcis (1) - - Efegurkan (1) + + Brill, Christoph (1) @@ -12949,6 +13562,9 @@ Ehenryb (1) + Ehliwor34 (1) + + ElahiMohammad (1) @@ -13002,72 +13618,83 @@ Roux, Elie (1) - Esben aaberg (1) + Erroleoao90 (1) - EstebanUD (1) + Esben aaberg (1) + EstebanUD (1) + + EstelaAWTxiu (1) Evelyn3794 (1) + Everlethliu3 (1) + + + + Evfool (1) EyalRozenberg (1) - - FMA (1) Factooor (1) + + Faiq Aminuddin (1) Falatooni (1) - - Falcao (1) Farhaf (1) + + Farhank (1) Farlfr (1) - - FarzanehSarafraz (1) Faseeh1218 (1) + + FelipaSwan (1) Fenchi (1) - - + + Fenechiag05 (1) + Ferlodev (1) + + FerminAndrade (1) @@ -13077,11 +13704,11 @@ Fghj (1) - - Fgland (1) + + Fitzeriova8 (1) @@ -13091,11 +13718,11 @@ Foadv (1) - - Foobar (1) + + Fourdollars (1) @@ -13103,6 +13730,9 @@ Francesco (1) + Francesmago3 (1) + + Frangrie25 (1) @@ -13114,44 +13744,55 @@ Fredbenj24 (1) - Manas Joshi (1) + Fruiteahu1 (1) - GabrielSwart (1) + Manas Joshi (1) + GabrielSwart (1) + + Gabrielezorzi (1) + Gallerr (1) + + Garhitusqr (1) + + Gautrucdo (1) Bilotta, Giuseppe (1) - - Gcoelho (1) GeeZ (1) + + Gekacheka (1) + Genesisauy0 (1) + + Geoff newson (1) - - Gerard (1) + + van Valkenhoef, Gert (1) @@ -13161,10 +13802,13 @@ Giancav (1) + + Gicmo (1) + - Gicmo (1) + Giuseppejiti41 (1) Gmeijssen (1) @@ -13198,16 +13842,27 @@ GroverYQVvwokac (1) - Gstein (1) + Grundennab10 (1) - Guhde (1) + Gstein (1) + Guelespepaia41 (1) + + + Guhde (1) + + + Guignardyav9 (1) + + Guillaume (1) + + Gwidion (1) @@ -13217,11 +13872,11 @@ H Wettlaufer (1) - - HFujimaki (1) + + HKagerer (1) @@ -13231,11 +13886,11 @@ Haggai (1) - - Hagos (1) + + Hamati (1) @@ -13245,10 +13900,13 @@ Hasinasi (1) + + Hbr (1) + - Hbr (1) + Heathmei4 (1) Rui Wang (1) @@ -13268,14 +13926,17 @@ Hermeli2856 (1) - Heygo (1) + Hertwor3 (1) - Heyheyitshay (1) + Heygo (1) + Heyheyitshay (1) + + Hfischer (1) @@ -13284,11 +13945,11 @@ Hillrich (1) + + HiltonFtel (1) - - Hitomi t (1) @@ -13298,11 +13959,11 @@ Hlavaty, Tomas (1) + + Hoaivan27299 (1) - - Holtzlefa6 (1) @@ -13312,112 +13973,120 @@ Honza.havlicek (1) + + HoracioRydge (1) - - + + Horaciorou5 (1) + Hornmichaels (1) Hosiryuhosi (1) + + Hriostat (1) HumbertGno (1) - - - + Hwoehrle (1) Ialbors (1) + + Ian (1) Iandol (1) - - Ianjo (1) IbraM (1) + + IceBlur (1) Ida (1) - - Gilham, Ian (1) Igorizyumin (1) + + Imypsychconsult (1) Indiraruw9 (1) - - Ipodsoft (1) Şendur, İrem (1) + + Irene (1) IrrevdJohn (1) - - IrvinFunkw (1) IslaXTDhiovhyzo (1) + + IsraelGill (1) IvanP (1) - - JDługosz (1) JK2308 (1) + + Jab (1) + Jacalynham53 (1) + + Jacquelin (1) - - JacquelineEqf (1) + + Jailletc36 (1) @@ -13427,11 +14096,11 @@ JameyAllred (1) - - Jamil (1) + + JamisonDamron (1) @@ -13441,6 +14110,9 @@ Janani (1) + + Janettamole17 (1) + @@ -13500,6 +14172,9 @@ + Jenetteweb9 (1) + + Jentron256 (1) @@ -13508,28 +14183,36 @@ Bicha, Jeremy (1) + + + + Jererioo1 (1) + JerryShi (1) - - JessicaParker (1) Gao, Qiwen (1) + + JestineNww (1) + Lazar, Timotej (1) + + Jflory7 (1) - - Bruhn, Jan-Henrik (1) + + Jimmyhaynbj (1) @@ -13539,11 +14222,11 @@ JiroMatsuzawa (1) - - Jj151515 (1) + + Jmarchn (1) @@ -13553,11 +14236,11 @@ Joanluc (1) - - Joaofernando (1) + + JoelH (1) @@ -13567,11 +14250,11 @@ Johnjoseph (1) - - Johnplay2 (1) + + Johnsim (1) @@ -13581,11 +14264,11 @@ JomarSilva (1) - - Jonatanpc8 (1) + + JonelleFritz (1) @@ -13595,11 +14278,11 @@ Wu, Haidong (1) - - JordanS (1) + + Jorge Rodríguez Fonseca (1) @@ -13609,10 +14292,13 @@ Joselaurian (1) + + Joshun (1) + - Joshun (1) + Josiahqeya46 (1) José Eduardo (1) @@ -13702,29 +14388,43 @@ Bhat, Kishor (1) - KendraDunstan (1) + Keith Long (1) - Kenneth.venken (1) + KendraDunstan (1) + Kenneth.venken (1) + + Kenton3255 (1) KerrieMarino (1) + Keturahsaku1 (1) + + + + + Keymap19 (1) + + Khjkhjkhjk hjk (1) KieraY22at (1) + + Kieslingcewi7 (1) + - Kieslingcewi7 (1) + Kiyabudat74 (1) Kiyotaka Nishibori (1) @@ -13733,11 +14433,14 @@ Knobo (1) - Koeleman (1) + Knostwaia6 (1) + Koeleman (1) + + Kosmous (1) @@ -13746,56 +14449,64 @@ Kr1shna (1) + + Krotow (1) - - + + Kudouoso3 (1) + Kumar, Thangavel (1) Kumuuf13 (1) + + Kushavaha (1) Kying (1) - - LKPSharylptwsdo (1) LMKemm (1) + + LOFF (1) LaPingvino (1) - - Laddwai75 (1) Lamontrak10 (1) + + + + Larajohnson (1) + Laskov (1) LatoshaZnu (1) - - LaunaEgpeeoc (1) + + LaurelLangton (1) @@ -13805,10 +14516,13 @@ LavinaVandermar (1) + + LavonneSchindle (1) + - LavonneSchindle (1) + Lawrenceuiyu16 (1) Learner (1) @@ -13822,6 +14536,9 @@ + Leingangwema04 (1) + + Libo02 (1) @@ -13830,28 +14547,36 @@ Librestez54 (1) + + + + Lieglergag14 (1) + Likoski (1) - - LilianG44nxresx (1) LillianaRad (1) + + LillieNlowccx (1) + Lindsayvadu90 (1) + + Lineinthesand (1) - - Literacyglenys (1) + + Litishia (1) @@ -13861,11 +14586,11 @@ Llalllal1 (1) - - Lobillo (1) + + Scheidt, Heiko (1) @@ -13875,11 +14600,11 @@ Lorne (1) - - Lovelawsoutlaws (1) + + Lplatypus (1) @@ -13889,11 +14614,11 @@ Lucas Filho (1) - - Lucker1 (1) + + LudieNutter (1) @@ -13903,11 +14628,11 @@ Luiz Cláudio (1) - - Luke (1) + + LydiaDgxuysav (1) @@ -13917,11 +14642,11 @@ M.sacharewicz (1) - - M1ndfr3ak (1) + + MJW (1) @@ -13931,11 +14656,11 @@ Mabel7997eelu (1) - - MadelineShort (1) + + Maemst (1) @@ -13945,11 +14670,11 @@ Magicienap (1) - - Magmag (1) + + Mahdiekrani (1) @@ -13959,11 +14684,11 @@ Mainwarigesa0 (1) - - Maliuta (1) + + Manish.miits (1) @@ -13973,11 +14698,11 @@ MarcelProut (1) - - MarcelaHeffron (1) + + MarcoZ (1) @@ -13987,11 +14712,11 @@ MarcosHanson (1) - - Marcosalex (1) + + Marcosps (1) @@ -14001,11 +14726,11 @@ MargoBergman (1) - - MarianaConnell (1) + + Mariano Gaudix (1) @@ -14015,10 +14740,13 @@ MarkWielaaard (1) + + Markcoomes (1) + - Markcoomes (1) + Markusweha4 (1) Markzog21 (1) @@ -14027,14 +14755,25 @@ MarlonMarcum (1) - MarthaWaterman (1) + Maronpeha6 (1) + MarthaWaterman (1) + + + Martyvae3 (1) + + Marwan (1) + Maryanndefo91 (1) + + + + MaryellenW31 (1) @@ -14043,11 +14782,11 @@ Masaki tamakoshi (1) - - Massao (1) + + Mastizada (1) @@ -14057,11 +14796,11 @@ MattTheGeek (1) - - Campanelli, Matteo (1) + + Matěj (1) @@ -14071,11 +14810,11 @@ MavisReit (1) - - Maxjf1 (1) + + Bechler, Moritz (1) @@ -14085,11 +14824,11 @@ Mcartorsei5 (1) - - Mdanrana0123 (1) + + Doležel, Marek (1) @@ -14099,11 +14838,11 @@ Meleev9 (1) - - Melikeyurtoglu (1) + + MelisaBroughton (1) @@ -14113,10 +14852,13 @@ Menturi (1) + + MeriMerideth (1) + - MeriMerideth (1) + Merrillsev01 (1) Mesarosgob58 (1) @@ -14189,16 +14931,19 @@ Minarja4 (1) + Minhgive86 (1) + + Mirsad (1) MitchellP (1) + + Miurahr (1) - - Mixer (1) @@ -14208,11 +14953,11 @@ Mlager (1) + + Mmeof (1) - - Moberg (1) @@ -14222,79 +14967,90 @@ Mohammedzalta (1) + + Momo50 (1) - - Monikayadav (1) + Moseyiw8 (1) + + Soini, Mox (1) + + Muhammadsufyanzainalabidin (1) Mw (1) - - Myan (1) MyraBlacklow (1) + + N3rd4i (1) NEOhidra (1) - - NNe8Lx2gc (1) NannetteFreedma (1) + + Nanotron (1) Nattu (1) - - Ncaio (1) Nedrichards (1) + + NellieSMWX (1) Neteler (1) - - Nevanos (1) Newtonhode99 (1) + + + + Ngoswami (1) + - Ngoswami (1) + Nicholoelu09 (1) Nickko (1) + + Nicklesouuh2 (1) + @@ -14438,6 +15194,9 @@ + Papillioyeg68 (1) + + Particiaaugu37 (1) @@ -14446,11 +15205,11 @@ Pastim (1) + + Patelumesh (1) - - PatriceMerrick (1) @@ -14460,11 +15219,11 @@ Paulmenzel (1) + + Paulolima (1) - - PearlFelton (1) @@ -14474,98 +15233,106 @@ Pelambrera (1) + + PenelopHewlett (1) - - Nowee, Peter (1) + Petrikhoke0 (1) + + Vorel, Petr (1) + + Pharmankur (1) Phb.nbnet.nb.ca (1) - - Pherjung (1) PhilDur (1) + + Philhart (1) PhilipTimms (1) - - Philippe43 (1) PhillippBethea (1) + + Phomes (1) Paraiso, Joan (1) - - Piero (1) PieterDeBruijn (1) + + Pietro.caballeri (1) Pilavi (1) - - Piratu (1) Piternoize (1) + + Pjotr (1) Pkavinda (1) - - Plastique (1) Plastovicka (1) + + Moscu, Alexandru (1) + Polanskifufo63 (1) + + Poonama (1) - - PoppyHart (1) + + PopularOutcast (1) @@ -14575,11 +15342,11 @@ PorfiriMansergh (1) - - PorterEncarnaci (1) + + Carter, Travis (1) @@ -14589,11 +15356,11 @@ Provostloy19 (1) - - Psauthor (1) + + Psmits (1) @@ -14601,6 +15368,9 @@ Psychicread531 (1) + Pullingqoou7 (1) + + Vidhey Pv (1) @@ -14629,11 +15399,14 @@ Quickbooktech (1) - Qwe (1) + Quintoncoc4 (1) + Qwe (1) + + Qwerfgh (1) @@ -14642,55 +15415,66 @@ RafaelaTrudel (1) + + Rafealandrande (1) - - Rahuldeshmukh101 (1) + Rainfortviwe9 (1) + + Rainy (1) + + Ramonturner (1) Randolp1949 (1) - - RashadEsp (1) Ratias (1) + + Rcampbelllaos (1) Bevilacqua, Jean-Sébastien (1) - - RebeccaToscano (1) Recoverymail (1) + + Rettichschnidi (1) ReubenFow (1) + + RexRTEJnlzus (1) + + + Reyiel16 (1) + - RexRTEJnlzus (1) + Reynaldosoqi0 (1) Rholler (1) @@ -14805,16 +15589,19 @@ Rosemarie (1) + Rouillarwosa1 (1) + + Rpott (1) Rsedak (1) + + RuleAndLine (1) - - Rvr (1) @@ -14824,9 +15611,6 @@ ONODERA, Ryo (1) - - Frandes, Sabin (1) - @@ -14892,16 +15676,13 @@ Senopen (1) - Serge Krot (1) - - ShannaCockrell (1) - - Shay030 (1) + + ShaynaMan (1) @@ -14911,11 +15692,11 @@ SherrillGabriel (1) - - SherylMillingto (1) + + Shore, Shimon (1) @@ -14925,11 +15706,11 @@ Shirlenegan87 (1) - - Shirleyjoou2 (1) + + Shortblack (1) @@ -14939,11 +15720,11 @@ Silvestr (1) - - Silvia (1) + + Simonbr (1) @@ -14953,54 +15734,68 @@ SiobhanLandale (1) - - Skierpage (1) + + SkyeCorreia (1) + Sloweybui31 (1) + + Smalalur (1) - Socialmitchell (1) + Sobelpoh9 (1) + Socialmitchell (1) + + Sojatasingh (1) Son Sonson (1) + Sonnybih44 (1) + + + + SonyaBunnell (1) Sophietixo96 (1) - - Sovichet (1) Sphericalhorse (1) + + Spreadsheetsorter (1) Srijanani (1) - - Stewart75H (1) + Stiegsiwo8 (1) + + + + Stifinpark (1) @@ -15009,11 +15804,11 @@ Stuckertwia8 (1) - - Subhash (1) + + Supportex (1) @@ -15023,11 +15818,11 @@ Svalo (1) - - SvenHornung (1) + + Svend-ev (1) @@ -15037,6 +15832,9 @@ Svtlichnijj (1) + + Swederoyu7 (1) + @@ -15049,11 +15847,14 @@ Talueses (1) - Tanguy k (1) + Tammarauema9 (1) + Tanguy k (1) + + Thanakanok, Tantai (1) @@ -15062,11 +15863,11 @@ TeganCreswick (1) + + Tegas (1) - - Testsflirt (1) @@ -15076,70 +15877,78 @@ ThePokehach (1) + + Thephilosoft (1) - - TheronAbdullah (1) + Thilloax9 (1) + + Thom (1) + + Thor574 (1) Threattfiva70 (1) - - ThudDriver (1) Tifroumi (1) + + Tigerbeard (1) Tilt (1) - - TimothyDempster (1) Tmongkol (1) + + Today (1) Tolandnuge1 (1) - - Tomasdd (1) Viehmann, Thomas (1) + + + + Tonyceg46 (1) + Tpokorra (1) Tracyeaui70 (1) - - Transcend (1) + + TrevorPfe (1) @@ -15149,11 +15958,11 @@ Ttv20 (1) - - Tuliouel (1) + + Tuping (1) @@ -15163,11 +15972,11 @@ Jain, Umang (1) - - Udit Sharma (1) + + Shahid, Umair (1) @@ -15177,11 +15986,11 @@ Unho (1) - - UrmasD (1) + + UrsulaHorrell (1) @@ -15191,11 +16000,11 @@ VIPSylar (1) - - VO Genesis (1) + + VPUJamikajklq (1) @@ -15205,22 +16014,28 @@ Vandenoever (1) + + Varagonaheou67 (1) + Veeven (1) + Venierguii6 (1) + + Vera Cavalcante (1) VerenaGaskins (1) + + Verisonhelpline (1) - - VernaSchulze (1) @@ -15230,11 +16045,11 @@ VickyShick (1) + + Vidya002050 (1) - - Vincentvikram (1) @@ -15244,11 +16059,11 @@ Virus009 (1) + + WMZGiseleun (1) - - WOBFriedauk (1) @@ -15258,11 +16073,11 @@ Wadrian (1) + + WandaSingletary (1) - - Waqas mirza6 (1) @@ -15272,11 +16087,11 @@ Wastl (1) + + Waynemcl (1) - - Webistrator (1) @@ -15286,11 +16101,11 @@ Westantenna (1) + + Wezchlebaty (1) - - Wilhelm (1) @@ -15300,11 +16115,11 @@ Williewortel (1) + + Wilsonsim (1) - - Wiltonwev60 (1) @@ -15314,28 +16129,36 @@ Woulouf (1) + + XSXKristin (1) - - Baudin, Lucas (1) + Xochitlnax79 (1) + + Xsdcfghjk (1) + + XtinaS (1) Xtrusia (1) - - + + Yagiciu2 (1) + Yangyiji (1) + + Yara (1) @@ -15345,11 +16168,11 @@ Yazu (1) - - Yeliztaneroglu (1) + + Desai, Yogesh (1) @@ -15359,11 +16182,11 @@ Yowbooks (1) - - Yufducv98 (1) + + YvanM (1) @@ -15373,11 +16196,11 @@ Bölöny, Zsolt (1) - - ZAXHesterlpu (1) + + ZBMCallumbwire (1) @@ -15387,21 +16210,22 @@ Zangune (1) - - Zizzle (1) + + 鄒延 (1) - + + - If you want to replace your Wiki user name with your full name, go to this wiki page and add yourself to the name mapping list. + If you want to replace your Wiki user name with your full name, go to this wiki page and add yourself to the name mapping list. diff -Nru libreoffice-l10n-5.4.3~rc2/reportdesign/source/ui/dlg/Condition.cxx libreoffice-l10n-5.4.4~rc2/reportdesign/source/ui/dlg/Condition.cxx --- libreoffice-l10n-5.4.3~rc2/reportdesign/source/ui/dlg/Condition.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/reportdesign/source/ui/dlg/Condition.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -105,6 +105,7 @@ Condition::Condition( vcl::Window* _pParent, IConditionalFormatAction& _rAction, ::rptui::OReportController& _rController ) : VclHBox(_pParent) + , m_xPaletteManager(new PaletteManager) , m_aColorWrapper(this) , m_rController(_rController) , m_rAction(_rAction) @@ -231,7 +232,7 @@ m_aColorWrapper.SetSlotId(nSlotId); m_pColorFloat = VclPtr::Create( OUString() /*m_aCommandURL*/, - m_aPaletteManager, + m_xPaletteManager, m_aBorderColorStatus, nSlotId, nullptr, diff -Nru libreoffice-l10n-5.4.3~rc2/reportdesign/source/ui/dlg/Condition.hxx libreoffice-l10n-5.4.4~rc2/reportdesign/source/ui/dlg/Condition.hxx --- libreoffice-l10n-5.4.3~rc2/reportdesign/source/ui/dlg/Condition.hxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/reportdesign/source/ui/dlg/Condition.hxx 2017-12-12 17:45:07.000000000 +0000 @@ -87,7 +87,7 @@ sal_uInt16 m_nBackgroundColorId; sal_uInt16 m_nFontColorId; sal_uInt16 m_nFontDialogId; - PaletteManager m_aPaletteManager; + std::shared_ptr m_xPaletteManager; BorderColorStatus m_aBorderColorStatus; ConditionColorWrapper m_aColorWrapper; diff -Nru libreoffice-l10n-5.4.3~rc2/Repository.mk libreoffice-l10n-5.4.4~rc2/Repository.mk --- libreoffice-l10n-5.4.3~rc2/Repository.mk 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/Repository.mk 2017-12-12 17:45:07.000000000 +0000 @@ -797,10 +797,10 @@ cli_basetypes_copy \ desktop_install \ $(if $(filter DESKTOP,$(BUILD_TYPE)),desktop_scripts_install) \ + $(if $(filter-out WNT,$(OS)),postprocess_fontconfig) \ extras_fonts \ extras_wordbook \ $(if $(filter MSC,$(COM)),msvc_dlls) \ - more_fonts_conf \ instsetoo_native_setup \ $(if $(ENABLE_OOENV),instsetoo_native_ooenv) \ odk_headers_generated \ diff -Nru libreoffice-l10n-5.4.3~rc2/sc/inc/stringutil.hxx libreoffice-l10n-5.4.4~rc2/sc/inc/stringutil.hxx --- libreoffice-l10n-5.4.3~rc2/sc/inc/stringutil.hxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sc/inc/stringutil.hxx 2017-12-12 17:45:07.000000000 +0000 @@ -31,7 +31,7 @@ * Store parameters used in the ScDocument::SetString() method. Various * options for string-setting operation are specified herein. */ -struct SC_DLLPUBLIC ScSetStringParam +struct SAL_WARN_UNUSED SC_DLLPUBLIC ScSetStringParam { enum TextFormatPolicy { @@ -47,6 +47,12 @@ SpecialNumberOnly, /** + * Keep an existing number format, do not set Text number format and do + * not set another number format. + */ + Keep, + + /** * Never set Text number format. */ Never Binary files /tmp/tmpeqd4tK/oD0ffcKnq6/libreoffice-l10n-5.4.3~rc2/sc/qa/unit/data/xlsx/built-in_ranges.xlsx and /tmp/tmpeqd4tK/4ft5T1CAQZ/libreoffice-l10n-5.4.4~rc2/sc/qa/unit/data/xlsx/built-in_ranges.xlsx differ diff -Nru libreoffice-l10n-5.4.3~rc2/sc/qa/unit/subsequent_export-test.cxx libreoffice-l10n-5.4.4~rc2/sc/qa/unit/subsequent_export-test.cxx --- libreoffice-l10n-5.4.3~rc2/sc/qa/unit/subsequent_export-test.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sc/qa/unit/subsequent_export-test.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -105,6 +105,7 @@ void testConditionalFormatRangeListXLSX(); void testMiscRowHeightExport(); void testNamedRangeBugfdo62729(); + void testBuiltinRangesXLSX(); void testRichTextExportODS(); void testRichTextCellFormatXLSX(); void testFormulaRefSheetNameODS(); @@ -214,6 +215,7 @@ CPPUNIT_TEST(testConditionalFormatRangeListXLSX); CPPUNIT_TEST(testMiscRowHeightExport); CPPUNIT_TEST(testNamedRangeBugfdo62729); + CPPUNIT_TEST(testBuiltinRangesXLSX); CPPUNIT_TEST(testRichTextExportODS); CPPUNIT_TEST(testRichTextCellFormatXLSX); CPPUNIT_TEST(testFormulaRefSheetNameODS); @@ -1144,6 +1146,32 @@ xDocSh->DoClose(); } + +void ScExportTest::testBuiltinRangesXLSX() +{ + ScDocShellRef xShell = loadDoc("built-in_ranges.", FORMAT_XLSX); + CPPUNIT_ASSERT(xShell.is()); + ScDocShellRef xDocSh = saveAndReload(xShell.get(), FORMAT_XLSX); + CPPUNIT_ASSERT(xDocSh.is()); + xShell->DoClose(); + + xmlDocPtr pDoc = XPathHelper::parseExport(*xDocSh, m_xSFactory, "xl/workbook.xml", FORMAT_XLSX); + CPPUNIT_ASSERT(pDoc); + + //assert the existing OOXML built-in names are still there + assertXPathContent(pDoc, "/x:workbook/x:definedNames/x:definedName[@name='_xlnm._FilterDatabase'][@localSheetId='0']", "'Sheet1 Test'!$A$1:$A$5"); + assertXPathContent(pDoc, "/x:workbook/x:definedNames/x:definedName[@name='_xlnm._FilterDatabase'][@localSheetId='1']", "'Sheet2 Test'!$K$10:$K$14"); + assertXPathContent(pDoc, "/x:workbook/x:definedNames/x:definedName[@name='_xlnm.Print_Area'][@localSheetId='0']", "'Sheet1 Test'!$A$1:$A$5"); + assertXPathContent(pDoc, "/x:workbook/x:definedNames/x:definedName[@name='_xlnm.Print_Area'][@localSheetId='1']", "'Sheet2 Test'!$K$10:$M$18"); + + //...and that no extra ones are added (see tdf#112571) + assertXPath(pDoc, "/x:workbook/x:definedNames/x:definedName[@name='_xlnm._FilterDatabase_0'][@localSheetId='0']", 0); + assertXPath(pDoc, "/x:workbook/x:definedNames/x:definedName[@name='_xlnm._FilterDatabase_0'][@localSheetId='1']", 0); + assertXPath(pDoc, "/x:workbook/x:definedNames/x:definedName[@name='_xlnm.Print_Area_0'][@localSheetId='0']", 0); + assertXPath(pDoc, "/x:workbook/x:definedNames/x:definedName[@name='_xlnm.Print_Area_0'][@localSheetId='1']", 0); + + xDocSh->DoClose(); +} void ScExportTest::testRichTextExportODS() { diff -Nru libreoffice-l10n-5.4.3~rc2/sc/source/core/data/column3.cxx libreoffice-l10n-5.4.4~rc2/sc/source/core/data/column3.cxx --- libreoffice-l10n-5.4.3~rc2/sc/source/core/data/column3.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sc/source/core/data/column3.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -1795,7 +1795,8 @@ } } } - else if (aParam.meSetTextNumFormat != ScSetStringParam::Always) + else if (aParam.meSetTextNumFormat == ScSetStringParam::Never || + aParam.meSetTextNumFormat == ScSetStringParam::SpecialNumberOnly) { // Only check if the string is a regular number. const LocaleDataWrapper* pLocale = aParam.mpNumFormatter->GetLocaleData(); @@ -1821,7 +1822,14 @@ if (rCell.meType == CELLTYPE_NONE) { - if (aParam.meSetTextNumFormat != ScSetStringParam::Never && aParam.mpNumFormatter->IsNumberFormat(rString, nIndex, nVal)) + // If we reach here with ScSetStringParam::SpecialNumberOnly it + // means a simple number was not detected above, so test for + // special numbers. In any case ScSetStringParam::Always does not + // mean always, but only always for content that could be any + // numeric. + if ((aParam.meSetTextNumFormat == ScSetStringParam::Always || + aParam.meSetTextNumFormat == ScSetStringParam::SpecialNumberOnly) && + aParam.mpNumFormatter->IsNumberFormat(rString, nIndex, nVal)) { // Set the cell format type to Text. applyTextNumFormat(*this, nRow, aParam.mpNumFormatter); diff -Nru libreoffice-l10n-5.4.3~rc2/sc/source/core/tool/compiler.cxx libreoffice-l10n-5.4.4~rc2/sc/source/core/tool/compiler.cxx --- libreoffice-l10n-5.4.3~rc2/sc/source/core/tool/compiler.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sc/source/core/tool/compiler.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -325,7 +325,7 @@ /* $ */ t[36] = ScCharFlags::CharWord | ScCharFlags::Word | ScCharFlags::CharIdent | ScCharFlags::Ident; if (FormulaGrammar::CONV_ODF == meConv) /* $ */ t[36] |= ScCharFlags::OdfNameMarker; -/* % */ t[37] = ScCharFlags::Value; +/* % */ t[37] = ScCharFlags::Char | ScCharFlags::WordSep | ScCharFlags::ValueSep; /* & */ t[38] = ScCharFlags::Char | ScCharFlags::WordSep | ScCharFlags::ValueSep; /* ' */ t[39] = ScCharFlags::NameSep; /* ( */ t[40] = ScCharFlags::Char | ScCharFlags::WordSep | ScCharFlags::ValueSep; @@ -1942,7 +1942,7 @@ static sal_Unicode* lcl_UnicodeStrNCpy( sal_Unicode* pDst, const sal_Unicode* pSrc, sal_Int32 nMax ) { const sal_Unicode* const pStop = pDst + nMax; - while ( *pSrc && pDst < pStop ) + while ( pDst < pStop ) { *pDst++ = *pSrc++; } @@ -2225,14 +2225,16 @@ { // One range operator may form Sheet1.A:A, which we need to // pass as one entity to IsReference(). - mnRangeOpPosInSymbol = pSym - &cSymbol[0]; if( pSym == &cSymbol[ MAXSTRLEN-1 ] ) { SetError(FormulaError::StringOverflow); eState = ssStop; } else + { + mnRangeOpPosInSymbol = pSym - &cSymbol[0]; *pSym++ = c; + } } else if ( 128 <= c || '\'' == c ) { // High values need reparsing with i18n, @@ -2682,6 +2684,8 @@ SetError( FormulaError::StringOverflow ); nLen = MAXSTRLEN-1; } + if (mnRangeOpPosInSymbol >= nLen) + mnRangeOpPosInSymbol = -1; lcl_UnicodeStrNCpy( cSymbol, aSymbol.getStr(), nLen ); pSym = &cSymbol[nLen]; } @@ -3268,6 +3272,8 @@ return true; // Now try with a symbol up to the range operator, rewind source // position. + if (mnRangeOpPosInSymbol == MAXSTRLEN-1) + return false; sal_Int32 nLen = mnRangeOpPosInSymbol; while (cSymbol[++nLen]) ; diff -Nru libreoffice-l10n-5.4.3~rc2/sc/source/filter/excel/xlescher.cxx libreoffice-l10n-5.4.4~rc2/sc/source/filter/excel/xlescher.cxx --- libreoffice-l10n-5.4.3~rc2/sc/source/filter/excel/xlescher.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sc/source/filter/excel/xlescher.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -146,10 +146,10 @@ ScDocument& rDoc = rRoot.GetDoc(); double fScale = lclGetTwipsScale( eMapUnit ); tools::Rectangle aRect( - lclGetXFromCol( rDoc, nScTab, maFirst.mnCol, mnLX, fScale ), - lclGetYFromRow( rDoc, nScTab, maFirst.mnRow, mnTY, fScale ), - lclGetXFromCol( rDoc, nScTab, maLast.mnCol, mnRX + 1, fScale ), - lclGetYFromRow( rDoc, nScTab, maLast.mnRow, mnBY, fScale ) ); + lclGetXFromCol(rDoc, nScTab, std::min(maFirst.mnCol, MAXCOL), mnLX, fScale), + lclGetYFromRow(rDoc, nScTab, std::min(maFirst.mnRow, MAXROW), mnTY, fScale), + lclGetXFromCol(rDoc, nScTab, std::min(maLast.mnCol, MAXCOL), mnRX + 1, fScale), + lclGetYFromRow(rDoc, nScTab, std::min(maLast.mnRow, MAXROW), mnBY, fScale)); // adjust coordinates in mirrored sheets if( rDoc.IsLayoutRTL( nScTab ) ) diff -Nru libreoffice-l10n-5.4.3~rc2/sc/source/filter/excel/xltools.cxx libreoffice-l10n-5.4.4~rc2/sc/source/filter/excel/xltools.cxx --- libreoffice-l10n-5.4.3~rc2/sc/source/filter/excel/xltools.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sc/source/filter/excel/xltools.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -482,8 +482,12 @@ sal_Unicode XclTools::GetBuiltInDefNameIndex( const OUString& rDefName ) { - sal_Int32 nPrefixLen = strlen(maDefNamePrefix); + sal_Int32 nPrefixLen = 0; if( rDefName.startsWithIgnoreAsciiCase( maDefNamePrefix ) ) + nPrefixLen = strlen(maDefNamePrefix); + else if( rDefName.startsWithIgnoreAsciiCase( maDefNamePrefixXml ) ) + nPrefixLen = strlen(maDefNamePrefixXml); + if( nPrefixLen > 0 ) { for( sal_Unicode cBuiltIn = 0; cBuiltIn < EXC_BUILTIN_UNKNOWN; ++cBuiltIn ) { diff -Nru libreoffice-l10n-5.4.3~rc2/sc/source/filter/inc/formel.hxx libreoffice-l10n-5.4.4~rc2/sc/source/filter/inc/formel.hxx --- libreoffice-l10n-5.4.3~rc2/sc/source/filter/inc/formel.hxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sc/source/filter/inc/formel.hxx 2017-12-12 17:45:07.000000000 +0000 @@ -143,31 +143,51 @@ inline void LotusConverterBase::Read( sal_uInt8& nByte ) { aIn.ReadUChar( nByte ); - nBytesLeft--; + if (aIn.good()) + nBytesLeft--; + else + { + // SvStream::ReadUChar() does not init a single char on failure. This + // behaviour is even tested in a unit test. + nByte = 0; + nBytesLeft = -1; // bail out early + } } inline void LotusConverterBase::Read( sal_uInt16& nUINT16 ) { aIn.ReadUInt16( nUINT16 ); - nBytesLeft -= 2; + if (aIn.good()) + nBytesLeft -= 2; + else + nBytesLeft = -1; // bail out early } inline void LotusConverterBase::Read( sal_Int16& nINT16 ) { aIn.ReadInt16( nINT16 ); - nBytesLeft -= 2; + if (aIn.good()) + nBytesLeft -= 2; + else + nBytesLeft = -1; // bail out early } inline void LotusConverterBase::Read( double& fDouble ) { aIn.ReadDouble( fDouble ); - nBytesLeft -= 8; + if (aIn.good()) + nBytesLeft -= 8; + else + nBytesLeft = -1; // bail out early } inline void LotusConverterBase::Read( sal_uInt32& nUINT32 ) { aIn.ReadUInt32( nUINT32 ); - nBytesLeft -= 4; + if (aIn.good()) + nBytesLeft -= 4; + else + nBytesLeft = -1; // bail out early } #endif diff -Nru libreoffice-l10n-5.4.3~rc2/sc/source/filter/inc/xltools.hxx libreoffice-l10n-5.4.4~rc2/sc/source/filter/inc/xltools.hxx --- libreoffice-l10n-5.4.3~rc2/sc/source/filter/inc/xltools.hxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sc/source/filter/inc/xltools.hxx 2017-12-12 17:45:07.000000000 +0000 @@ -189,8 +189,8 @@ static OUString GetBuiltInDefNameXml( sal_Unicode cBuiltIn ); /** Returns the Excel built-in name index of the passed defined name from Calc. @descr Ignores any characters following a valid representation of a built-in name. - @param pcBuiltIn (out-param) If not 0, the index of the built-in name will be returned here. - @return true = passed string is a built-in name; false = user-defined name. */ + @param rDefName raw English UI representation of a built-in defined name used in NAME records. + @return the index of the built-in name, or EXC_BUILTIN_UNKNOWN if it is not a built-in name. */ static sal_Unicode GetBuiltInDefNameIndex( const OUString& rDefName ); // built-in style names --------------------------------------------------- diff -Nru libreoffice-l10n-5.4.3~rc2/sc/source/filter/oox/stylesbuffer.cxx libreoffice-l10n-5.4.4~rc2/sc/source/filter/oox/stylesbuffer.cxx --- libreoffice-l10n-5.4.3~rc2/sc/source/filter/oox/stylesbuffer.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sc/source/filter/oox/stylesbuffer.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -266,14 +266,16 @@ void Color::importColor( const AttributeList& rAttribs ) { - if( rAttribs.getBool( XML_auto, false ) ) - setAuto(); + // tdf#113271 The order of import color is very important in case of more than one color attributes was provided. + // This order (theme -> rgb -> indexed -> auto) is not documented and was gathered experimentally based on MS Excel 2013. + if( rAttribs.hasAttribute( XML_theme ) ) + setTheme( rAttribs.getInteger( XML_theme, -1 ), rAttribs.getDouble( XML_tint, 0.0 ) ); else if( rAttribs.hasAttribute( XML_rgb ) ) setRgb( rAttribs.getIntegerHex( XML_rgb, API_RGB_TRANSPARENT ), rAttribs.getDouble( XML_tint, 0.0 ) ); - else if( rAttribs.hasAttribute( XML_theme ) ) - setTheme( rAttribs.getInteger( XML_theme, -1 ), rAttribs.getDouble( XML_tint, 0.0 ) ); else if( rAttribs.hasAttribute( XML_indexed ) ) setIndexed( rAttribs.getInteger( XML_indexed, -1 ), rAttribs.getDouble( XML_tint, 0.0 ) ); + else if( rAttribs.getBool( XML_auto, false ) ) + setAuto(); else { OSL_FAIL( "Color::importColor - unknown color type" ); diff -Nru libreoffice-l10n-5.4.3~rc2/sc/source/filter/qpro/qproform.cxx libreoffice-l10n-5.4.4~rc2/sc/source/filter/qpro/qproform.cxx --- libreoffice-l10n-5.4.3~rc2/sc/source/filter/qpro/qproform.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sc/source/filter/qpro/qproform.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -172,6 +172,14 @@ nRef-=amt; \ } while(false) +#define SAFEREAD_OR_BREAK( aStream, i, nRef, eRet, ret ) \ + if (!aStream.good()) \ + { \ + i = nRef-1; /* will be incremented at end of while */ \ + eRet = ret; \ + break; /* switch */ \ + } + ConvErr QProToSc::Convert( const ScTokenArray*& pArray ) { sal_uInt8 nFmla[ nBufSize ], nArg; @@ -245,6 +253,7 @@ nDLLCount = 0; nArgCount = 0; nStringCount = 0; + ConvErr eRet = ConvErr::OK; while( i < nRef && ( nFmla[ i ] != 0x03 ) ) { @@ -298,14 +307,17 @@ case FT_Cref : // Single cell reference maIn.ReadUInt16( nNote ).ReadSChar( nCol ).ReadSChar( nPage ).ReadUInt16( nRelBits ); + SAFEREAD_OR_BREAK( maIn, i, nRef, eRet, ConvErr::Count); ReadSRD( aSRD, nPage, nCol, nRelBits ); aStack << aPool.Store( aSRD ); break; case FT_Range: // Block reference maIn.ReadUInt16( nNote ).ReadSChar( nCol ).ReadSChar( nPage ).ReadUInt16( nRelBits ); + SAFEREAD_OR_BREAK( maIn, i, nRef, eRet, ConvErr::Count); ReadSRD( aCRD.Ref1, nPage, nCol, nRelBits ); maIn.ReadSChar( nCol ).ReadSChar( nPage ).ReadUInt16( nRelBits ); + SAFEREAD_OR_BREAK( maIn, i, nRef, eRet, ConvErr::Count); ReadSRD( aCRD.Ref2, nPage, nCol, nRelBits ); // Sheet name of second corner is not displayed if identical if (aCRD.Ref1.IsFlag3D() && aCRD.Ref1.Tab() == aCRD.Ref2.Tab() && @@ -368,7 +380,7 @@ i++; } pArray = aPool[ aStack.Get() ]; - return ConvErr::OK; + return eRet; } static const struct diff -Nru libreoffice-l10n-5.4.3~rc2/sc/source/filter/rtf/rtfparse.cxx libreoffice-l10n-5.4.4~rc2/sc/source/filter/rtf/rtfparse.cxx --- libreoffice-l10n-5.4.3~rc2/sc/source/filter/rtf/rtfparse.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sc/source/filter/rtf/rtfparse.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -272,6 +272,8 @@ nLastWidth = maDefaultList.back()->nTwips; nColCnt = 0; + if (pActDefault != pInsDefault) + pActDefault = nullptr; maDefaultList.clear(); pDefMerge = nullptr; nRtfLastToken = pInfo->nToken; diff -Nru libreoffice-l10n-5.4.3~rc2/sc/source/ui/app/inputhdl.cxx libreoffice-l10n-5.4.4~rc2/sc/source/ui/app/inputhdl.cxx --- libreoffice-l10n-5.4.3~rc2/sc/source/ui/app/inputhdl.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sc/source/ui/app/inputhdl.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -2020,7 +2020,8 @@ DeleteRangeFinder(); // Deletes the list and the labels on the table } -bool ScInputHandler::StartTable( sal_Unicode cTyped, bool bFromCommand, bool bInputActivated ) +bool ScInputHandler::StartTable( sal_Unicode cTyped, bool bFromCommand, bool bInputActivated, + ScEditEngineDefaulter* pTopEngine ) { bool bNewTable = false; @@ -2141,6 +2142,13 @@ } } + if (pTopEngine) + { + // Necessary to sync SvxAutoCorrect behavior. This has to be + // done before InitRangeFinder() below. + MergeLanguageAttributes( *pTopEngine); + } + // UpdateSpellSettings enables online spelling if needed // -> also call if attributes are unchanged UpdateSpellSettings( true ); // uses pLastPattern @@ -2272,7 +2280,7 @@ bInOwnChange = true; // disable ModifyHdl (reset in DataChanged) if ( eMode == SC_INPUT_NONE ) - return StartTable( cTyped, bFromCommand, false ); + return StartTable( cTyped, bFromCommand, false, nullptr ); else return false; } @@ -2488,7 +2496,7 @@ // --------------- public methods -------------------------------------------- -void ScInputHandler::SetMode( ScInputMode eNewMode, const OUString* pInitText ) +void ScInputHandler::SetMode( ScInputMode eNewMode, const OUString* pInitText, ScEditEngineDefaulter* pTopEngine ) { if ( eMode == eNewMode ) return; @@ -2519,7 +2527,7 @@ { if (eOldMode == SC_INPUT_NONE) // not if switching between modes { - if (StartTable(0, false, eMode == SC_INPUT_TABLE)) + if (StartTable(0, false, eMode == SC_INPUT_TABLE, pTopEngine)) { if (pActiveViewSh) pActiveViewSh->GetViewData().GetDocShell()->PostEditView( mpEditEngine.get(), aCursorPos ); diff -Nru libreoffice-l10n-5.4.3~rc2/sc/source/ui/app/inputwin.cxx libreoffice-l10n-5.4.4~rc2/sc/source/ui/app/inputwin.cxx --- libreoffice-l10n-5.4.3~rc2/sc/source/ui/app/inputwin.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sc/source/ui/app/inputwin.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -1108,13 +1108,7 @@ ScInputHandler* pHdl = mpViewShell->GetInputHandler(); if (pHdl) - { - bool bStarting = !pHdl->IsEditMode(); - pHdl->SetMode(SC_INPUT_TOP); - if (bStarting) - // necessary to sync SvxAutoCorrect behavior - pHdl->MergeLanguageAttributes( *mpEditEngine); - } + pHdl->SetMode(SC_INPUT_TOP, nullptr, mpEditEngine.get()); SfxViewFrame* pViewFrm = SfxViewFrame::Current(); if (pViewFrm) @@ -1368,13 +1362,6 @@ void ScTextWnd::Command( const CommandEvent& rCEvt ) { - //pass alt press/release to parent impl - if (rCEvt.GetCommand() == CommandEventId::ModKeyChange) - { - Window::Command(rCEvt); - return; - } - bInputMode = true; CommandEventId nCommand = rCEvt.GetCommand(); if ( mpEditView /* && nCommand == CommandEventId::StartDrag */ ) diff -Nru libreoffice-l10n-5.4.3~rc2/sc/source/ui/inc/inputhdl.hxx libreoffice-l10n-5.4.4~rc2/sc/source/ui/inc/inputhdl.hxx --- libreoffice-l10n-5.4.3~rc2/sc/source/ui/inc/inputhdl.hxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sc/source/ui/inc/inputhdl.hxx 2017-12-12 17:45:07.000000000 +0000 @@ -128,9 +128,13 @@ * for text or number. * @param bInputActivated true if the cell input mode is activated (via * F2), false otherwise. + * @param pTopEngine top window input line EditEngine. If not nullptr then + * some default attributes are merged to it from the + * table EditEngine. * @return true if the new edit mode has been started. */ - bool StartTable( sal_Unicode cTyped, bool bFromCommand, bool bInputActivated ); + bool StartTable( sal_Unicode cTyped, bool bFromCommand, bool bInputActivated, + ScEditEngineDefaulter* pTopEngine ); void RemoveSelection(); void UpdateFormulaMode(); static void InvalidateAttribs(); @@ -168,7 +172,8 @@ ScInputHandler(); ~ScInputHandler(); - void SetMode( ScInputMode eNewMode, const OUString* pInitText = nullptr ); + void SetMode( ScInputMode eNewMode, const OUString* pInitText = nullptr, + ScEditEngineDefaulter* pTopEngine = nullptr ); bool IsInputMode() const { return (eMode != SC_INPUT_NONE); } bool IsEditMode() const { return (eMode != SC_INPUT_NONE && eMode != SC_INPUT_TYPE); } diff -Nru libreoffice-l10n-5.4.3~rc2/sc/source/ui/inc/tptable.hxx libreoffice-l10n-5.4.4~rc2/sc/source/ui/inc/tptable.hxx --- libreoffice-l10n-5.4.3~rc2/sc/source/ui/inc/tptable.hxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sc/source/ui/inc/tptable.hxx 2017-12-12 17:45:07.000000000 +0000 @@ -46,6 +46,9 @@ void ShowImage(); private: + sal_uInt16 m_nOrigScalePageWidth; + sal_uInt16 m_nOrigScalePageHeight; + VclPtr m_pBtnTopDown; VclPtr m_pBtnLeftRight; VclPtr m_pBmpPageDir; @@ -66,7 +69,9 @@ VclPtr m_pEdScaleAll; VclPtr m_pGrHeightWidth; VclPtr m_pEdScalePageWidth; + VclPtr m_pCbScalePageWidth; VclPtr m_pEdScalePageHeight; + VclPtr m_pCbScalePageHeight; VclPtr m_pBxScalePageNum; VclPtr m_pEdScalePageNum; @@ -74,8 +79,9 @@ // Handler: DECL_LINK(PageDirHdl, Button*, void); - DECL_LINK( PageNoHdl, Button*, void ); + DECL_LINK(PageNoHdl, Button*, void); DECL_LINK(ScaleHdl, ListBox&, void); + DECL_LINK(ToggleHdl, CheckBox&, void); }; #endif // INCLUDED_SC_SOURCE_UI_INC_TPTABLE_HXX diff -Nru libreoffice-l10n-5.4.3~rc2/sc/source/ui/pagedlg/tptable.cxx libreoffice-l10n-5.4.4~rc2/sc/source/ui/pagedlg/tptable.cxx --- libreoffice-l10n-5.4.3~rc2/sc/source/ui/pagedlg/tptable.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sc/source/ui/pagedlg/tptable.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -55,9 +55,11 @@ SfxItemSet& rCoreSet, const SfxItemSet& rOldSet, const ListBox& rListBox, - sal_uInt16 nLBEntry, + sal_uInt16 nLBEntry, const NumericField& rEd1, - const NumericField& rEd2 ); + sal_uInt16 nOrigScalePageWidth, + const NumericField& rEd2, + sal_uInt16 nOrigScalePageHeight ); static bool lcl_PutBoolItem( sal_uInt16 nWhich, SfxItemSet& rCoreSet, @@ -78,9 +80,10 @@ #define SC_TPTABLE_SCALE_TO 1 #define SC_TPTABLE_SCALE_TO_PAGES 2 -ScTablePage::ScTablePage( vcl::Window* pParent, const SfxItemSet& rCoreAttrs ) : - - SfxTabPage( pParent, "SheetPrintPage","modules/scalc/ui/sheetprintpage.ui", &rCoreAttrs ) +ScTablePage::ScTablePage(vcl::Window* pParent, const SfxItemSet& rCoreAttrs) + : SfxTabPage(pParent, "SheetPrintPage","modules/scalc/ui/sheetprintpage.ui", &rCoreAttrs) + , m_nOrigScalePageWidth(0) + , m_nOrigScalePageHeight(0) { get(m_pBtnTopDown,"radioBTN_TOPDOWN"); get(m_pBtnLeftRight,"radioBTN_LEFTRIGHT"); @@ -102,7 +105,9 @@ get(m_pEdScaleAll,"spinED_SCALEALL"); get(m_pGrHeightWidth,"gridWH"); get(m_pEdScalePageWidth,"spinED_SCALEPAGEWIDTH"); + get(m_pCbScalePageWidth,"unsetwidth"); get(m_pEdScalePageHeight,"spinED_SCALEPAGEHEIGHT"); + get(m_pCbScalePageHeight,"unsetheight"); get(m_pBxScalePageNum,"boxNP"); get(m_pEdScalePageNum,"spinED_SCALEPAGENUM"); @@ -112,7 +117,8 @@ m_pBtnTopDown->SetClickHdl( PAGEDIR_HDL ); m_pBtnLeftRight->SetClickHdl( PAGEDIR_HDL ); m_pLbScaleMode->SetSelectHdl( LINK(this,ScTablePage,ScaleHdl) ); - + m_pCbScalePageWidth->SetToggleHdl(LINK(this, ScTablePage, ToggleHdl)); + m_pCbScalePageHeight->SetToggleHdl(LINK(this, ScTablePage, ToggleHdl)); } void ScTablePage::ShowImage() @@ -146,7 +152,9 @@ m_pBxScaleAll.clear(); m_pEdScaleAll.clear(); m_pGrHeightWidth.clear(); + m_pCbScalePageWidth.clear(); m_pEdScalePageWidth.clear(); + m_pCbScalePageHeight.clear(); m_pEdScalePageHeight.clear(); m_pBxScalePageNum.clear(); m_pEdScalePageNum.clear(); @@ -203,10 +211,12 @@ /* width==0 and height==0 is invalid state, used as "not selected". Dialog shows width=height=1 then. */ bool bValid = nWidth || nHeight; - if( bValid ) + if (bValid) m_pLbScaleMode->SelectEntryPos( SC_TPTABLE_SCALE_TO ); m_pEdScalePageWidth->SetValue( bValid ? nWidth : 1 ); m_pEdScalePageHeight->SetValue( bValid ? nHeight : 1 ); + m_pCbScalePageWidth->Check(bValid && !nWidth); + m_pCbScalePageHeight->Check(bValid && !nHeight); } nWhich = GetWhich(SID_SCATTR_PAGE_SCALETOPAGES); @@ -244,8 +254,8 @@ m_pBtnPageNo->SaveValue(); m_pEdPageNo->SaveValue(); m_pEdScaleAll->SaveValue(); - m_pEdScalePageWidth->SaveValue(); - m_pEdScalePageHeight->SaveValue(); + m_nOrigScalePageWidth = m_pEdScalePageWidth->IsEnabled() ? m_pEdScalePageWidth->GetValue() : 0; + m_nOrigScalePageHeight = m_pEdScalePageHeight->IsEnabled() ? m_pEdScalePageHeight->GetValue() : 0; m_pEdScalePageNum->SaveValue(); } @@ -317,7 +327,7 @@ *rCoreSet, rOldSet, *m_pBtnDrawings ); // scaling: - if( !m_pEdScalePageWidth->GetValue() && !m_pEdScalePageHeight->GetValue() ) + if( !m_pEdScalePageWidth->IsEnabled() && !m_pEdScalePageHeight->IsEnabled() ) { m_pLbScaleMode->SelectEntryPos( SC_TPTABLE_SCALE_PERCENT ); m_pEdScaleAll->SetValue( 100 ); @@ -331,7 +341,8 @@ bDataChanged |= lcl_PutScaleItem2( GetWhich(SID_SCATTR_PAGE_SCALETO), *rCoreSet, rOldSet, *m_pLbScaleMode, SC_TPTABLE_SCALE_TO, - *m_pEdScalePageWidth, *m_pEdScalePageHeight ); + *m_pEdScalePageWidth, m_nOrigScalePageWidth, + *m_pEdScalePageHeight, m_nOrigScalePageHeight ); bDataChanged |= lcl_PutScaleItem( GetWhich(SID_SCATTR_PAGE_SCALETOPAGES), *rCoreSet, rOldSet, @@ -387,6 +398,36 @@ m_pBxScalePageNum->Show(m_pLbScaleMode->GetSelectEntryPos() == SC_TPTABLE_SCALE_TO_PAGES); } +IMPL_LINK(ScTablePage, ToggleHdl, CheckBox&, rBox, void) +{ + if (&rBox == m_pCbScalePageWidth) + { + if (rBox.IsChecked()) + { + m_pEdScalePageWidth->SetText(OUString()); + m_pEdScalePageWidth->Disable(); + } + else + { + m_pEdScalePageWidth->SetValue(1); + m_pEdScalePageWidth->Enable(); + } + } + else + { + if (rBox.IsChecked()) + { + m_pEdScalePageHeight->SetText(OUString()); + m_pEdScalePageHeight->Disable(); + } + else + { + m_pEdScalePageHeight->SetValue(1); + m_pEdScalePageHeight->Enable(); + } + } +} + // Helper functions for FillItemSet: static bool lcl_PutBoolItem( sal_uInt16 nWhich, @@ -450,16 +491,18 @@ SfxItemSet& rCoreSet, const SfxItemSet& rOldSet, const ListBox& rListBox, - sal_uInt16 nLBEntry, + sal_uInt16 nLBEntry, const NumericField& rEd1, - const NumericField& rEd2 ) + sal_uInt16 nOrigScalePageWidth, + const NumericField& rEd2, + sal_uInt16 nOrigScalePageHeight ) { - sal_uInt16 nValue1 = (sal_uInt16)rEd1.GetValue(); - sal_uInt16 nValue2 = (sal_uInt16)rEd2.GetValue(); + sal_uInt16 nValue1 = rEd1.IsEnabled() ? rEd1.GetValue() : 0; + sal_uInt16 nValue2 = rEd2.IsEnabled() ? rEd2.GetValue() : 0; bool bIsSel = (rListBox.GetSelectEntryPos() == nLBEntry); bool bDataChanged = (rListBox.GetSavedValue() != nLBEntry) || - rEd1.IsValueChangedFromSaved() || - rEd2.IsValueChangedFromSaved() || + nValue1 != nOrigScalePageWidth || + nValue1 != nOrigScalePageHeight || !WAS_DEFAULT( nWhich, rOldSet ); if( bDataChanged ) diff -Nru libreoffice-l10n-5.4.3~rc2/sc/source/ui/undo/undocell.cxx libreoffice-l10n-5.4.4~rc2/sc/source/ui/undo/undocell.cxx --- libreoffice-l10n-5.4.3~rc2/sc/source/ui/undo/undocell.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sc/source/ui/undo/undocell.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -459,7 +459,9 @@ { ScSetStringParam aParam; aParam.setTextInput(); - rDoc.SetString(maPos, rVal.mpString->getString()); + // Undo only cell content, without setting any number format. + aParam.meSetTextNumFormat = ScSetStringParam::Keep; + rDoc.SetString(maPos, rVal.mpString->getString(), &aParam); } break; case CELLTYPE_EDIT: diff -Nru libreoffice-l10n-5.4.3~rc2/sc/uiconfig/scalc/ui/sheetprintpage.ui libreoffice-l10n-5.4.4~rc2/sc/uiconfig/scalc/ui/sheetprintpage.ui --- libreoffice-l10n-5.4.3~rc2/sc/uiconfig/scalc/ui/sheetprintpage.ui 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sc/uiconfig/scalc/ui/sheetprintpage.ui 2017-12-12 17:45:07.000000000 +0000 @@ -1,6 +1,7 @@ + - + 1.05 9999.0400000000009 @@ -72,8 +73,6 @@ 0 0 - 1 - 1 @@ -93,8 +92,6 @@ 0 1 - 1 - 1 @@ -110,8 +107,6 @@ 0 2 - 1 - 1 @@ -125,8 +120,6 @@ 1 2 - 1 - 1 @@ -176,8 +169,6 @@ 0 0 - 1 - 1 @@ -213,8 +204,6 @@ 0 0 - 1 - 1 @@ -231,8 +220,6 @@ 0 1 - 1 - 1 @@ -248,8 +235,6 @@ 0 2 - 1 - 1 @@ -265,8 +250,6 @@ 0 3 - 1 - 1 @@ -282,8 +265,6 @@ 2 0 - 1 - 1 @@ -299,8 +280,6 @@ 2 1 - 1 - 1 @@ -316,8 +295,6 @@ 2 2 - 1 - 1 @@ -333,8 +310,6 @@ 2 3 - 1 - 1 @@ -367,8 +342,6 @@ 0 1 - 1 - 1 @@ -392,16 +365,14 @@ True False - 0 Scaling _mode: True comboLB_SCALEMODE + 0 0 0 - 1 - 1 @@ -419,10 +390,10 @@ True False - 0 _Scaling factor: True spinED_SCALEALL:0% + 0 False @@ -435,7 +406,6 @@ True True - True adjustmentScalingFactor @@ -462,32 +432,28 @@ True False - 0 _Width in pages: True spinED_SCALEPAGEWIDTH + 0 0 0 - 1 - 1 True False - 0 _Height in pages: True spinED_SCALEPAGEHEIGHT + 0 0 1 - 1 - 1 @@ -496,14 +462,11 @@ True none - True adjustmentPage 1 0 - 1 - 1 @@ -511,14 +474,39 @@ True True - True adjustmentPage 1 1 - 1 - 1 + + + + + gtk-clear + True + True + False + True + True + + + 2 + 0 + + + + + gtk-clear + True + True + False + True + True + + + 2 + 1 @@ -537,10 +525,10 @@ True False - 0 N_umber of pages: True spinED_SCALEPAGENUM + 0 False @@ -553,7 +541,6 @@ True True - True adjustmentPage if-valid @@ -574,19 +561,12 @@ 1 1 - 1 - 1 - - - True False - 0 - 1 Reduce/enlarge printout Fit print range(s) to width/height @@ -596,10 +576,11 @@ 1 0 - 1 - 1 + + + @@ -618,8 +599,6 @@ 0 2 - 1 - 1 diff -Nru libreoffice-l10n-5.4.3~rc2/scp2/source/ooo/file_font_ooo.scp libreoffice-l10n-5.4.4~rc2/scp2/source/ooo/file_font_ooo.scp --- libreoffice-l10n-5.4.3~rc2/scp2/source/ooo/file_font_ooo.scp 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/scp2/source/ooo/file_font_ooo.scp 2017-12-12 17:45:07.000000000 +0000 @@ -69,13 +69,13 @@ // fontconfig updates to allow proper use of local fonts -#ifdef UNX +#ifdef USING_X11 #ifndef WITHOUT_FONTS File gid_File_FcLocal_Conf Dir = FILELIST_DIR; USER_FILE_BODY; Styles = (FILELIST); - Name = "more_fonts_conf.filelist"; + Name = "postprocess_fontconfig.filelist"; End #endif #endif diff -Nru libreoffice-l10n-5.4.3~rc2/sd/qa/unit/data/objectwithtext.fodg libreoffice-l10n-5.4.4~rc2/sd/qa/unit/data/objectwithtext.fodg --- libreoffice-l10n-5.4.3~rc2/sd/qa/unit/data/objectwithtext.fodg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sd/qa/unit/data/objectwithtext.fodg 2017-12-12 17:45:07.000000000 +0000 @@ -0,0 +1,189 @@ + + + 2017-11-06T19:36:05.7708592582017-11-06T19:38:11.864425937PT2M6S1LibreOfficeDev/6.0.0.0.alpha1$Linux_X86_64 LibreOffice_project/2f8c1379a07d581ac46337ca0f91609c544c3d6e + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + foobar + + + + 1 + + + 1 + + 1+1 + + + + VkNMTVRGAQAxAAAAAAAAAAEAGwAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAZYDAADX + AQAAHQAAAJYAAQACAAAACQCLAAEAAgAAAP//gQABABAAAAAAAAAAAAAAAJUDAADWAQAAlQAB + AAQAAAAAAAAAlgABAAIAAAAJAIsAAQACAAAAHwCKAAEAQgAAAAMAPAAAABAATGliZXJhdGlv + biBTZXJpZgAAAAAAAKYBAAAAAAAAAAAFAAAAAAAAAP8DAAAAAAAAAAEA/wMAAAAAAIgAAQAC + AAAAAQCHAAEABQAAAP////8AhgABAAQAAAAAAAAAcgACABcAAABqAAAAcgEAAAEAMdQAAAAA + AAEAAQAxAIwAAQAAAAAAiwABAAIAAAAfAIoAAQA8AAAAAwA2AAAACgBPcGVuU3ltYm9sAAAA + AAAApgEAAP//AAAAAAUAAAAAAAAA/wMAAAAAAAAAAQD/AwAAAAAAiAABAAIAAAABAIcAAQAF + AAAA/////wCGAAEABAAAAAAAAAByAAIAGgAAAFgBAAByAQAAAQAAACsA9gAAAAAAAQABACsA + jAABAAAAAACLAAEAAgAAAB8AigABAEIAAAADADwAAAAQAExpYmVyYXRpb24gU2VyaWYAAAAA + AACmAQAAAAAAAAAABQAAAAAAAAD/AwAAAAAAAAABAP8DAAAAAACIAAEAAgAAAAEAhwABAAUA + AAD/////AIYAAQAEAAAAAAAAAHIAAgAXAAAAYQIAAHIBAAABADHUAAAAAAABAAEAMQCMAAEA + AAAAAJUAAQAEAAAAAAAAAJYAAQACAAAACQCMAAEAAAAAAA== + + + + + + + Binary files /tmp/tmpeqd4tK/oD0ffcKnq6/libreoffice-l10n-5.4.3~rc2/sd/qa/unit/data/pptx/accent-color.pptx and /tmp/tmpeqd4tK/4ft5T1CAQZ/libreoffice-l10n-5.4.4~rc2/sd/qa/unit/data/pptx/accent-color.pptx differ Binary files /tmp/tmpeqd4tK/oD0ffcKnq6/libreoffice-l10n-5.4.3~rc2/sd/qa/unit/data/pptx/group.pptx and /tmp/tmpeqd4tK/4ft5T1CAQZ/libreoffice-l10n-5.4.4~rc2/sd/qa/unit/data/pptx/group.pptx differ Binary files /tmp/tmpeqd4tK/oD0ffcKnq6/libreoffice-l10n-5.4.3~rc2/sd/qa/unit/data/pptx/group-rot.pptx and /tmp/tmpeqd4tK/4ft5T1CAQZ/libreoffice-l10n-5.4.4~rc2/sd/qa/unit/data/pptx/group-rot.pptx differ Binary files /tmp/tmpeqd4tK/oD0ffcKnq6/libreoffice-l10n-5.4.3~rc2/sd/qa/unit/data/pptx/shape-text-rotate.pptx and /tmp/tmpeqd4tK/4ft5T1CAQZ/libreoffice-l10n-5.4.4~rc2/sd/qa/unit/data/pptx/shape-text-rotate.pptx differ Binary files /tmp/tmpeqd4tK/oD0ffcKnq6/libreoffice-l10n-5.4.3~rc2/sd/qa/unit/data/pptx/smartart-rotation2.pptx and /tmp/tmpeqd4tK/4ft5T1CAQZ/libreoffice-l10n-5.4.4~rc2/sd/qa/unit/data/pptx/smartart-rotation2.pptx differ Binary files /tmp/tmpeqd4tK/oD0ffcKnq6/libreoffice-l10n-5.4.3~rc2/sd/qa/unit/data/pptx/tdf112633.pptx and /tmp/tmpeqd4tK/4ft5T1CAQZ/libreoffice-l10n-5.4.4~rc2/sd/qa/unit/data/pptx/tdf112633.pptx differ diff -Nru libreoffice-l10n-5.4.3~rc2/sd/qa/unit/export-tests.cxx libreoffice-l10n-5.4.4~rc2/sd/qa/unit/export-tests.cxx --- libreoffice-l10n-5.4.3~rc2/sd/qa/unit/export-tests.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sd/qa/unit/export-tests.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -93,9 +93,11 @@ void testTdf62176(); void testTransparentBackground(); void testEmbeddedPdf(); + void testEmbeddedText(); void testAuthorField(); void testTdf100926(); void testPageWithTransparentBackground(); + void testTextRotation(); CPPUNIT_TEST_SUITE(SdExportTest); @@ -111,9 +113,11 @@ CPPUNIT_TEST(testTdf62176); CPPUNIT_TEST(testTransparentBackground); CPPUNIT_TEST(testEmbeddedPdf); + CPPUNIT_TEST(testEmbeddedText); CPPUNIT_TEST(testAuthorField); CPPUNIT_TEST(testTdf100926); CPPUNIT_TEST(testPageWithTransparentBackground); + CPPUNIT_TEST(testTextRotation); CPPUNIT_TEST_SUITE_END(); @@ -659,6 +663,36 @@ #endif } +void SdExportTest::testEmbeddedText() +{ + sd::DrawDocShellRef xShell = loadURL(m_directories.getURLFromSrc("/sd/qa/unit/data/objectwithtext.fodg"), FODG); + xShell = saveAndReload( xShell.get(), ODG ); + + uno::Reference xPage = getPage(0, xShell); + uno::Reference xShape(xPage->getByIndex(0), uno::UNO_QUERY); + uno::Reference xText(xShape, uno::UNO_QUERY); + CPPUNIT_ASSERT(xText.is()); + + uno::Reference xEA(xShape, uno::UNO_QUERY); + CPPUNIT_ASSERT(xEA->hasElements()); + uno::Reference xEnum(xEA->createEnumeration()); + uno::Reference xTC; + xEnum->nextElement() >>= xTC; + CPPUNIT_ASSERT(xTC.is()); + + uno::Reference xParaEA(xTC, uno::UNO_QUERY); + uno::Reference xParaEnum(xParaEA->createEnumeration()); + uno::Reference xPortion(xParaEnum->nextElement(), uno::UNO_QUERY); + CPPUNIT_ASSERT(xPortion.is()); + uno::Reference xRange(xPortion, uno::UNO_QUERY); + OUString type; + xPortion->getPropertyValue("TextPortionType") >>= type; + CPPUNIT_ASSERT_EQUAL(OUString("Text"), type); + CPPUNIT_ASSERT_EQUAL(OUString("foobar"), xRange->getString()); //tdf#112547 + + xShell->DoClose(); +} + void SdExportTest::testAuthorField() { ::sd::DrawDocShellRef xDocShRef = loadURL(m_directories.getURLFromSrc("/sd/qa/unit/data/odp/author_fixed.odp"), ODP); @@ -729,6 +763,28 @@ xDocShRef->DoClose(); } + +void SdExportTest::testTextRotation() +{ + ::sd::DrawDocShellRef xDocShRef = loadURL(m_directories.getURLFromSrc("sd/qa/unit/data/pptx/shape-text-rotate.pptx"), PPTX); + utl::TempFile tempFile; + xDocShRef = saveAndReload(xDocShRef.get(), ODP, &tempFile); + + uno::Reference xPage(getPage(0, xDocShRef)); + uno::Reference xPropSet(getShape(0, xPage)); + + CPPUNIT_ASSERT(xPropSet.is()); + + auto aGeomPropSeq = xPropSet->getPropertyValue("CustomShapeGeometry").get>(); + comphelper::SequenceAsHashMap aCustomShapeGeometry(aGeomPropSeq); + + auto it = aCustomShapeGeometry.find("TextRotateAngle"); + CPPUNIT_ASSERT(it != aCustomShapeGeometry.end()); + + CPPUNIT_ASSERT_EQUAL((double)(-90), aCustomShapeGeometry["TextRotateAngle"].get()); + + xDocShRef->DoClose(); +} CPPUNIT_TEST_SUITE_REGISTRATION(SdExportTest); diff -Nru libreoffice-l10n-5.4.3~rc2/sd/qa/unit/export-tests-ooxml1.cxx libreoffice-l10n-5.4.4~rc2/sd/qa/unit/export-tests-ooxml1.cxx --- libreoffice-l10n-5.4.3~rc2/sd/qa/unit/export-tests-ooxml1.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sd/qa/unit/export-tests-ooxml1.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -104,6 +104,7 @@ void testBulletCharAndFont(); void testBulletMarginAndIndentation(); void testParaMarginAndindentation(); + void testTdf112633(); CPPUNIT_TEST_SUITE(SdOOXMLExportTest1); @@ -131,6 +132,7 @@ CPPUNIT_TEST(testBulletCharAndFont); CPPUNIT_TEST(testBulletMarginAndIndentation); CPPUNIT_TEST(testParaMarginAndindentation); + CPPUNIT_TEST(testTdf112633); CPPUNIT_TEST_SUITE_END(); @@ -779,6 +781,34 @@ xDocShRef->DoClose(); } +void SdOOXMLExportTest1::testTdf112633() +{ + // Load document and export it to a temporary file + ::sd::DrawDocShellRef xDocShRef = loadURL(m_directories.getURLFromSrc("sd/qa/unit/data/pptx/tdf112633.pptx"), PPTX); + utl::TempFile tempFile; + xDocShRef = saveAndReload(xDocShRef.get(), PPTX, &tempFile); + xDocShRef->DoClose(); + + xmlDocPtr pXmlDoc = parseExport(tempFile, "ppt/slides/slide1.xml"); + xmlDocPtr pRelsDoc = parseExport(tempFile, "ppt/slides/_rels/slide1.xml.rels"); + + // Check image with artistic effect exists in the slide + assertXPath(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:pic/p:blipFill/a:blip/a:extLst/a:ext/a14:imgProps/" + "a14:imgLayer/a14:imgEffect/a14:artisticPencilGrayscale", + "pencilSize", "80"); + + // Check there is a relation with the .wdp file that contains the backed up image + OUString sEmbedId1 = getXPath(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:pic/p:blipFill/a:blip/a:extLst/" + "a:ext/a14:imgProps/a14:imgLayer", "embed"); + OUString sXmlPath = "/rels:Relationships/rels:Relationship[@Id='" + sEmbedId1 + "']"; + assertXPath(pRelsDoc, OUStringToOString( sXmlPath, RTL_TEXTENCODING_UTF8 ), "Target", "../media/hdphoto1.wdp"); + + // Check the .wdp file exists + uno::Reference xNameAccess = packages::zip::ZipFileAccess::createWithURL( + comphelper::getComponentContext(m_xSFactory), tempFile.GetURL()); + CPPUNIT_ASSERT_EQUAL(true, bool(xNameAccess->hasByName("ppt/media/hdphoto1.wdp"))); +} + CPPUNIT_TEST_SUITE_REGISTRATION(SdOOXMLExportTest1); CPPUNIT_PLUGIN_IMPLEMENT(); diff -Nru libreoffice-l10n-5.4.3~rc2/sd/qa/unit/export-tests-ooxml2.cxx libreoffice-l10n-5.4.4~rc2/sd/qa/unit/export-tests-ooxml2.cxx --- libreoffice-l10n-5.4.3~rc2/sd/qa/unit/export-tests-ooxml2.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sd/qa/unit/export-tests-ooxml2.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -106,6 +106,10 @@ void testTdf112552(); void testTdf112557(); void testTdf112647(); + void testSmartartRotation2(); + void testGroupsPosition(); + void testGroupsRotatedPosition(); + void testAccentColor(); CPPUNIT_TEST_SUITE(SdOOXMLExportTest2); @@ -133,6 +137,10 @@ CPPUNIT_TEST(testTdf112552); CPPUNIT_TEST(testTdf112557); CPPUNIT_TEST(testTdf112647); + CPPUNIT_TEST(testSmartartRotation2); + CPPUNIT_TEST(testGroupsPosition); + CPPUNIT_TEST(testGroupsRotatedPosition); + CPPUNIT_TEST(testAccentColor); CPPUNIT_TEST_SUITE_END(); @@ -789,7 +797,6 @@ xShell->DoClose(); } - void SdOOXMLExportTest2::testTdf112552() { // Background fill was not displayed, but it was because of the wrong geometry @@ -832,6 +839,60 @@ xDocShRef->DoClose(); } +void SdOOXMLExportTest2::testSmartartRotation2() +{ + ::sd::DrawDocShellRef xDocShRef = loadURL(m_directories.getURLFromSrc("sd/qa/unit/data/pptx/smartart-rotation2.pptx"), PPTX); + utl::TempFile tempFile; + xDocShRef = saveAndReload(xDocShRef.get(), PPTX, &tempFile); + xDocShRef->DoClose(); + + xmlDocPtr pXmlDocContent = parseExport(tempFile, "ppt/slides/slide1.xml"); + assertXPath(pXmlDocContent, "/p:sld/p:cSld/p:spTree/p:sp[3]/p:txBody/a:bodyPr", "rot", "10800000"); +} + +void SdOOXMLExportTest2::testGroupsPosition() +{ + ::sd::DrawDocShellRef xDocShRef = loadURL(m_directories.getURLFromSrc("sd/qa/unit/data/pptx/group.pptx"), PPTX); + utl::TempFile tempFile; + xDocShRef = saveAndReload(xDocShRef.get(), PPTX, &tempFile); + xDocShRef->DoClose(); + + xmlDocPtr pXmlDocContent = parseExport(tempFile, "ppt/slides/slide1.xml"); + assertXPath(pXmlDocContent, "/p:sld/p:cSld/p:spTree/p:sp[3]/p:spPr/a:xfrm/a:off", "x", "4817880"); + assertXPath(pXmlDocContent, "/p:sld/p:cSld/p:spTree/p:sp[3]/p:spPr/a:xfrm/a:off", "y", "1810440"); + assertXPath(pXmlDocContent, "/p:sld/p:cSld/p:spTree/p:sp[1]/p:spPr/a:xfrm/a:off", "x", "457200"); + assertXPath(pXmlDocContent, "/p:sld/p:cSld/p:spTree/p:sp[1]/p:spPr/a:xfrm/a:off", "y", "1798560"); +} + +void SdOOXMLExportTest2::testGroupsRotatedPosition() +{ + ::sd::DrawDocShellRef xDocShRef = loadURL(m_directories.getURLFromSrc("sd/qa/unit/data/pptx/group-rot.pptx"), PPTX); + utl::TempFile tempFile; + xDocShRef = saveAndReload(xDocShRef.get(), PPTX, &tempFile); + xDocShRef->DoClose(); + + xmlDocPtr pXmlDocContent = parseExport(tempFile, "ppt/slides/slide1.xml"); + assertXPath(pXmlDocContent, "/p:sld/p:cSld/p:spTree/p:sp[3]/p:spPr/a:xfrm/a:off", "x", "2857320"); + assertXPath(pXmlDocContent, "/p:sld/p:cSld/p:spTree/p:sp[3]/p:spPr/a:xfrm/a:off", "y", "4026960"); +} + +void SdOOXMLExportTest2::testAccentColor() +{ + ::sd::DrawDocShellRef xDocShRef = loadURL(m_directories.getURLFromSrc("sd/qa/unit/data/pptx/accent-color.pptx"), PPTX); + utl::TempFile tempFile; + xDocShRef = saveAndReload(xDocShRef.get(), PPTX, &tempFile); + xDocShRef->DoClose(); + + xmlDocPtr pXmlDocContent1 = parseExport(tempFile, "ppt/slides/slide1.xml"); + assertXPath(pXmlDocContent1, "/p:sld/p:cSld/p:spTree/p:sp/p:style/a:fillRef/a:schemeClr", "val", "accent6"); + xmlDocPtr pXmlDocContent2 = parseExport(tempFile, "ppt/slides/slide2.xml"); + assertXPath(pXmlDocContent2, "/p:sld/p:cSld/p:spTree/p:sp/p:style/a:fillRef/a:schemeClr", "val", "accent6"); + xmlDocPtr pXmlDocTheme1 = parseExport(tempFile, "ppt/theme/theme1.xml"); + assertXPath(pXmlDocTheme1, "/a:theme/a:themeElements/a:clrScheme/a:accent6/a:srgbClr", "val", "70ad47"); + xmlDocPtr pXmlDocTheme2 = parseExport(tempFile, "ppt/theme/theme2.xml"); + assertXPath(pXmlDocTheme2, "/a:theme/a:themeElements/a:clrScheme/a:accent6/a:srgbClr", "val", "deb340"); +} + CPPUNIT_TEST_SUITE_REGISTRATION(SdOOXMLExportTest2); CPPUNIT_PLUGIN_IMPLEMENT(); diff -Nru libreoffice-l10n-5.4.3~rc2/sd/source/filter/eppt/epptooxml.hxx libreoffice-l10n-5.4.4~rc2/sd/source/filter/eppt/epptooxml.hxx --- libreoffice-l10n-5.4.3~rc2/sd/source/filter/eppt/epptooxml.hxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sd/source/filter/eppt/epptooxml.hxx 2017-12-12 17:45:07.000000000 +0000 @@ -26,6 +26,8 @@ #include #include "epptbase.hxx" +using ::sax_fastparser::FSHelperPtr; + namespace com { namespace sun { namespace star { namespace animations { class XAnimate; @@ -92,6 +94,8 @@ virtual void ImplWriteSlideMaster( sal_uInt32 nPageNum, css::uno::Reference< css::beans::XPropertySet > const & aXBackgroundPropSet ) override; virtual void ImplWriteLayout( sal_Int32 nOffset, sal_uInt32 nMasterNum ) override; void ImplWritePPTXLayout( sal_Int32 nOffset, sal_uInt32 nMasterNum ); + bool WriteColorSchemes(FSHelperPtr pFS, const OUString& rThemePath); + static void WriteDefaultColorSchemes(FSHelperPtr pFS); void WriteTheme( sal_Int32 nThemeNum ); virtual bool ImplCreateDocument() override; diff -Nru libreoffice-l10n-5.4.3~rc2/sd/source/filter/eppt/pptx-epptooxml.cxx libreoffice-l10n-5.4.4~rc2/sd/source/filter/eppt/pptx-epptooxml.cxx --- libreoffice-l10n-5.4.3~rc2/sd/source/filter/eppt/pptx-epptooxml.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sd/source/filter/eppt/pptx-epptooxml.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -20,6 +20,7 @@ #include #include #include +#include #include #include #include @@ -29,6 +30,7 @@ #include #include +#include #include #include #include @@ -1958,46 +1960,14 @@ return *this; } -#define MINIMAL_THEME " \ - \ - \ +#define SYS_COLOR_SCHEMES " \ \ \ \ \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ + " + +#define MINIMAL_THEME " \ \ \ \ @@ -2174,25 +2144,163 @@ \ \ \ - \ - " + " + +void PowerPointExport::WriteDefaultColorSchemes(FSHelperPtr pFS) +{ + for (int nId = PredefinedClrSchemeId::dk2; nId != PredefinedClrSchemeId::Count; nId++) + { + OUString sName = PredefinedClrNames[static_cast(nId)]; + sal_Int32 nColor = 0; + + switch (nId) + { + case PredefinedClrSchemeId::dk2: + nColor = 0x1F497D; + break; + case PredefinedClrSchemeId::lt2: + nColor = 0xEEECE1; + break; + case PredefinedClrSchemeId::accent1: + nColor = 0x4F81BD; + break; + case PredefinedClrSchemeId::accent2: + nColor = 0xC0504D; + break; + case PredefinedClrSchemeId::accent3: + nColor = 0x9BBB59; + break; + case PredefinedClrSchemeId::accent4: + nColor = 0x8064A2; + break; + case PredefinedClrSchemeId::accent5: + nColor = 0x4BACC6; + break; + case PredefinedClrSchemeId::accent6: + nColor = 0xF79646; + break; + case PredefinedClrSchemeId::hlink: + nColor = 0x0000FF; + break; + case PredefinedClrSchemeId::folHlink: + nColor = 0x800080; + break; + } + + OUString sOpenColorScheme = OUStringBuffer() + .append("") + .makeStringAndClear(); + pFS->write(sOpenColorScheme); + + pFS->singleElementNS(XML_a, XML_srgbClr, XML_val, I32SHEX(nColor), FSEND); + + OUString sCloseColorScheme = OUStringBuffer() + .append("") + .makeStringAndClear(); + pFS->write(sCloseColorScheme); + } +} + +bool PowerPointExport::WriteColorSchemes(FSHelperPtr pFS, const OUString& rThemePath) +{ + try + { + uno::Reference xDocProps(getModel(), uno::UNO_QUERY); + if (xDocProps.is()) + { + uno::Reference xPropsInfo = xDocProps->getPropertySetInfo(); + + const OUString aGrabBagPropName = "InteropGrabBag"; + if (xPropsInfo.is() && xPropsInfo->hasPropertyByName(aGrabBagPropName)) + { + comphelper::SequenceAsHashMap aGrabBag(xDocProps->getPropertyValue(aGrabBagPropName)); + uno::Sequence aCurrentTheme; + + aGrabBag.getValue(rThemePath) >>= aCurrentTheme; + + // Order is important + for (int nId = PredefinedClrSchemeId::dk2; nId != PredefinedClrSchemeId::Count; nId++) + { + OUString sName = PredefinedClrNames[static_cast(nId)]; + sal_Int32 nColor = 0; + + for (auto aIt = aCurrentTheme.begin(); aIt != aCurrentTheme.end(); aIt++) + { + if (aIt->Name == sName) + { + aIt->Value >>= nColor; + break; + } + } + + OUString sOpenColorScheme = OUStringBuffer() + .append("") + .makeStringAndClear(); + pFS->write(sOpenColorScheme); + + pFS->singleElementNS(XML_a, XML_srgbClr, XML_val, I32SHEX(nColor), FSEND); + + OUString sCloseColorScheme = OUStringBuffer() + .append("") + .makeStringAndClear(); + pFS->write(sCloseColorScheme); + } + + // TODO: write complete color schemes & only if successful, protection against partial export + return true; + } + } + } + catch (const uno::Exception&) + { + SAL_WARN("writerfilter", "Failed to save documents grab bag"); + } + + return false; +} void PowerPointExport::WriteTheme( sal_Int32 nThemeNum ) { - FSHelperPtr pFS = openFragmentStreamWithSerializer( OUStringBuffer() - .append( "ppt/theme/theme" ) - .append( nThemeNum + 1 ) - .append( ".xml" ) - .makeStringAndClear(), - "application/vnd.openxmlformats-officedocument.theme+xml" ); - - pFS->startElementNS( XML_a, XML_theme, - FSNS( XML_xmlns, XML_a), OUStringToOString(this->getNamespaceURL(OOX_NS(dml)), RTL_TEXTENCODING_UTF8), - XML_name, "Office Theme", - FSEND ); + OUString sThemePath = OUStringBuffer() + .append("ppt/theme/theme") + .append(nThemeNum + 1) + .append(".xml") + .makeStringAndClear(); + + FSHelperPtr pFS = openFragmentStreamWithSerializer(sThemePath, + "application/vnd.openxmlformats-officedocument.theme+xml"); + + pFS->startElementNS(XML_a, XML_theme, + FSNS(XML_xmlns, XML_a), OUStringToOString(this->getNamespaceURL(OOX_NS(dml)), RTL_TEXTENCODING_UTF8), + XML_name, "Office Theme", + FSEND); + + pFS->startElementNS(XML_a, XML_themeElements, FSEND); + pFS->startElementNS(XML_a, XML_clrScheme, XML_name, "Office", FSEND); + + pFS->write(SYS_COLOR_SCHEMES); + + if (!WriteColorSchemes(pFS, sThemePath)) + { + // color schemes are required - use default values + WriteDefaultColorSchemes(pFS); + } + + pFS->endElementNS(XML_a, XML_clrScheme); + + // export remaining part + pFS->write(MINIMAL_THEME); - pFS->write( MINIMAL_THEME ); - pFS->endElementNS( XML_a, XML_theme ); + pFS->endElementNS(XML_a, XML_themeElements); + pFS->endElementNS(XML_a, XML_theme); } bool PowerPointExport::ImplCreateDocument() diff -Nru libreoffice-l10n-5.4.3~rc2/sd/source/filter/ppt/pptin.cxx libreoffice-l10n-5.4.4~rc2/sd/source/filter/ppt/pptin.cxx --- libreoffice-l10n-5.4.3~rc2/sd/source/filter/ppt/pptin.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sd/source/filter/ppt/pptin.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -855,7 +855,7 @@ bool bSuccess = aHd.SeekToEndOfRecord(rStCtrl); if (!bSuccess) { - SAL_WARN("filter.ms", "Count not seek to end of record"); + SAL_WARN("filter.ms", "Could not seek to end of record"); break; } } diff -Nru libreoffice-l10n-5.4.3~rc2/sd/source/ui/slidesorter/cache/SlsPageCacheManager.cxx libreoffice-l10n-5.4.4~rc2/sd/source/ui/slidesorter/cache/SlsPageCacheManager.cxx --- libreoffice-l10n-5.4.3~rc2/sd/source/ui/slidesorter/cache/SlsPageCacheManager.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sd/source/ui/slidesorter/cache/SlsPageCacheManager.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -89,10 +89,10 @@ bool operator()(const ::sd::slidesorter::cache::PageCacheManager::BestFittingPageCaches::value_type& rElement1, const ::sd::slidesorter::cache::PageCacheManager::BestFittingPageCaches::value_type& rElement2) { - if (rElement1.first == maPreferredSize) - return true; - else if (rElement2.first == maPreferredSize) + if (rElement2.first == maPreferredSize) return false; + else if (rElement1.first == maPreferredSize) + return true; else return (rElement1.first.Width()*rElement1.first.Height() > rElement2.first.Width()*rElement2.first.Height()); diff -Nru libreoffice-l10n-5.4.3~rc2/sd/source/ui/slidesorter/controller/SlideSorterController.cxx libreoffice-l10n-5.4.4~rc2/sd/source/ui/slidesorter/controller/SlideSorterController.cxx --- libreoffice-l10n-5.4.3~rc2/sd/source/ui/slidesorter/controller/SlideSorterController.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sd/source/ui/slidesorter/controller/SlideSorterController.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -356,15 +356,7 @@ pWindow->ReleaseMouse(); Point aMenuLocation (0,0); - if (rEvent.IsMouseEvent()) - { - // We have to explicitly specify the location of the menu - // when the slide sorter is placed in an undocked child - // menu. But when it is docked it does not hurt, so we - // specify the location always. - aMenuLocation = rEvent.GetMousePosPixel(); - } - else + if (!rEvent.IsMouseEvent()) { // The event is not a mouse event. Use the center of the // focused page as top left position of the context menu. @@ -388,7 +380,10 @@ if (pDispatcher != nullptr) { mbContextMenuOpen = true; - pDispatcher->ExecutePopup( aPopupId, pWindow, &aMenuLocation ); + if (!rEvent.IsMouseEvent()) + pDispatcher->ExecutePopup(aPopupId, pWindow, &aMenuLocation); + else + pDispatcher->ExecutePopup(aPopupId); mbContextMenuOpen = false; mrSlideSorter.GetView().UpdatePageUnderMouse(); ::rtl::Reference pFunction(GetCurrentSelectionFunction()); diff -Nru libreoffice-l10n-5.4.3~rc2/sfx2/sdi/sfx.sdi libreoffice-l10n-5.4.4~rc2/sfx2/sdi/sfx.sdi --- libreoffice-l10n-5.4.3~rc2/sfx2/sdi/sfx.sdi 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sfx2/sdi/sfx.sdi 2017-12-12 17:45:07.000000000 +0000 @@ -1062,9 +1062,9 @@ RecordAbsolute = FALSE, RecordPerSet; - AccelConfig = FALSE, - MenuConfig = FALSE, - ToolBoxConfig = FALSE, + AccelConfig = TRUE, + MenuConfig = TRUE, + ToolBoxConfig = TRUE, GroupId = GID_TEMPLATE; ] diff -Nru libreoffice-l10n-5.4.3~rc2/sfx2/source/control/dispatch.cxx libreoffice-l10n-5.4.4~rc2/sfx2/source/control/dispatch.cxx --- libreoffice-l10n-5.4.3~rc2/sfx2/source/control/dispatch.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sfx2/source/control/dispatch.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -961,7 +961,7 @@ } const SfxPoolItem* SfxDispatcher::Execute(sal_uInt16 nSlot, SfxCallMode nCall, - SfxItemSet* pArgs, SfxItemSet* pInternalArgs, sal_uInt16 nModi) + SfxItemSet const * pArgs, SfxItemSet const * pInternalArgs, sal_uInt16 nModi, vcl::Window* pDialogParent) { if ( IsLocked() ) return nullptr; @@ -980,7 +980,7 @@ pArg = aIter.NextItem() ) MappedPut_Impl( aSet, *pArg ); } - SfxRequest aReq( nSlot, nCall, aSet ); + SfxRequest aReq(nSlot, nCall, aSet, pDialogParent); if (pInternalArgs) aReq.SetInternalArgs_Impl( *pInternalArgs ); aReq.SetModifier( nModi ); diff -Nru libreoffice-l10n-5.4.3~rc2/sfx2/source/control/request.cxx libreoffice-l10n-5.4.4~rc2/sfx2/source/control/request.cxx --- libreoffice-l10n-5.4.3~rc2/sfx2/source/control/request.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sfx2/source/control/request.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -67,6 +67,7 @@ bool bAllowRecording; std::unique_ptr pInternalArgs; + VclPtr xDialogParent; SfxViewFrame* pViewFrame; css::uno::Reference< css::frame::XDispatchRecorder > xRecorder; @@ -250,7 +251,8 @@ ( sal_uInt16 nSlotId, SfxCallMode nMode, - const SfxAllItemSet& rSfxArgs + const SfxAllItemSet& rSfxArgs, + vcl::Window* pDialogParent ) // creates a SfxRequest with arguments @@ -266,6 +268,7 @@ pImpl->pShell = nullptr; pImpl->pSlot = nullptr; pImpl->nCallMode = nMode; + pImpl->xDialogParent = pDialogParent; } @@ -756,4 +759,9 @@ pImpl->pInternalArgs.reset(); } +vcl::Window* SfxRequest::GetDialogParent() const +{ + return pImpl->xDialogParent; +} + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-l10n-5.4.3~rc2/sfx2/source/control/unoctitm.cxx libreoffice-l10n-5.4.4~rc2/sfx2/source/control/unoctitm.cxx --- libreoffice-l10n-5.4.3~rc2/sfx2/source/control/unoctitm.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sfx2/source/control/unoctitm.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -30,6 +30,7 @@ #include #include #include +#include #include #include #include @@ -645,6 +646,8 @@ SfxCallMode nCall = SfxCallMode::RECORD; sal_Int32 nMarkArg = -1; + VclPtr xDialogParent; + // Filter arguments which shouldn't be part of the sequence property value sal_uInt16 nModifier(0); std::vector< css::beans::PropertyValue > aAddArgs; @@ -657,6 +660,12 @@ if( rProp.Value >>= bTemp ) nCall = bTemp ? SfxCallMode::SYNCHRON : SfxCallMode::ASYNCHRON; } + else if( rProp.Name == "DialogParent" ) + { + Reference xWindow; + if (rProp.Value >>= xWindow) + xDialogParent = VCLUnoHelper::GetWindow(xWindow); + } else if( rProp.Name == "Bookmark" ) { nMarkArg = n; @@ -741,7 +750,7 @@ if (xSet->Count()) { // execute with arguments - call directly - pItem = pDispatcher->Execute(GetId(), nCall, xSet.get(), &aInternalSet, nModifier); + pItem = pDispatcher->Execute(GetId(), nCall, xSet.get(), &aInternalSet, nModifier, xDialogParent); if ( pItem != nullptr ) { if (const SfxBoolItem* pBoolItem = dynamic_cast(pItem)) @@ -778,10 +787,10 @@ TransformParameters( GetId(), lNewArgs, aSet ); if ( aSet.Count() ) - pItem = pDispatcher->Execute( GetId(), nCall, &aSet, &aInternalSet, nModifier ); + pItem = pDispatcher->Execute(GetId(), nCall, &aSet, &aInternalSet, nModifier, xDialogParent); else // SfxRequests take empty sets as argument sets, GetArgs() returning non-zero! - pItem = pDispatcher->Execute( GetId(), nCall, nullptr, &aInternalSet, nModifier ); + pItem = pDispatcher->Execute(GetId(), nCall, nullptr, &aInternalSet, nModifier, xDialogParent); // no bindings, no invalidate ( usually done in SfxDispatcher::Call_Impl()! ) if (SfxApplication* pApp = SfxApplication::Get()) diff -Nru libreoffice-l10n-5.4.3~rc2/sfx2/source/doc/objcont.cxx libreoffice-l10n-5.4.4~rc2/sfx2/source/doc/objcont.cxx --- libreoffice-l10n-5.4.3~rc2/sfx2/source/doc/objcont.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sfx2/source/doc/objcont.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -384,6 +384,11 @@ // update only for documents loaded from the local file system return; + // tdf#113935 - do not remove this line - somehow, it makes the process + // of switching from viewing a read-only document to opening it in writable + // mode much faster. + uno::Reference< embed::XStorage > xDocStor = pFile->GetStorage(); + // only for own storage formats if ( !pFile->GetFilter() || !pFile->GetFilter()->IsOwnFormat() ) return; diff -Nru libreoffice-l10n-5.4.3~rc2/sfx2/source/sidebar/SidebarController.cxx libreoffice-l10n-5.4.4~rc2/sfx2/source/sidebar/SidebarController.cxx --- libreoffice-l10n-5.4.3~rc2/sfx2/source/sidebar/SidebarController.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sfx2/source/sidebar/SidebarController.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -619,6 +619,7 @@ if (pPanel != nullptr) { aNewPanels[nWriteIndex] = pPanel; + pPanel->SetExpanded( rPanelContexDescriptor.mbIsInitiallyVisible ); ++nWriteIndex; } else diff -Nru libreoffice-l10n-5.4.3~rc2/slideshow/source/engine/shapes/drawshape.cxx libreoffice-l10n-5.4.4~rc2/slideshow/source/engine/shapes/drawshape.cxx --- libreoffice-l10n-5.4.3~rc2/slideshow/source/engine/shapes/drawshape.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/slideshow/source/engine/shapes/drawshape.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -134,11 +134,26 @@ ViewShape::RenderArgs DrawShape::getViewRenderArgs() const { + uno::Reference const xPropSet(mxPage, + uno::UNO_QUERY_THROW); + sal_Int32 nWidth = 0; + sal_Int32 nHeight = 0; + xPropSet->getPropertyValue("Width") >>= nWidth; + xPropSet->getPropertyValue("Height") >>= nHeight; + basegfx::B2DRectangle slideRect(0, 0, nWidth, nHeight); + basegfx::B2DRectangle origBounds(maBounds); + origBounds.intersect(slideRect); + basegfx::B2DRectangle updateBounds(getUpdateArea()); + updateBounds.intersect(slideRect); + basegfx::B2DRectangle bounds(getBounds()); + bounds.intersect(slideRect); + basegfx::B2DRectangle unitBounds(getActualUnitShapeBounds()); + unitBounds.intersect(slideRect); return ViewShape::RenderArgs( - maBounds, - getUpdateArea(), - getBounds(), - getActualUnitShapeBounds(), + origBounds, + updateBounds, + bounds, + unitBounds, mpAttributeLayer, maSubsetting.getActiveSubsets(), mnPriority); diff -Nru libreoffice-l10n-5.4.3~rc2/solenv/bin/assemble-flatpak.sh libreoffice-l10n-5.4.4~rc2/solenv/bin/assemble-flatpak.sh --- libreoffice-l10n-5.4.3~rc2/solenv/bin/assemble-flatpak.sh 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/solenv/bin/assemble-flatpak.sh 2017-12-12 17:45:07.000000000 +0000 @@ -24,6 +24,8 @@ -e 's/^Icon=libreoffice-/Icon=org.libreoffice.LibreOffice-/' "$i" \ >/app/share/applications/org.libreoffice.LibreOffice-"${i#"${PREFIXDIR?}"/share/applications/libreoffice-}" done +mv /app/share/applications/org.libreoffice.LibreOffice-startcenter.desktop \ + /app/share/applications/org.libreoffice.LibreOffice.desktop ## icons/hicolor/*/apps/libreoffice-* -> ## icons/hicolor/*/apps/org.libreoffice.LibreOffice-*: diff -Nru libreoffice-l10n-5.4.3~rc2/solenv/bin/concat-deps.c libreoffice-l10n-5.4.4~rc2/solenv/bin/concat-deps.c --- libreoffice-l10n-5.4.3~rc2/solenv/bin/concat-deps.c 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/solenv/bin/concat-deps.c 2017-12-12 17:45:07.000000000 +0000 @@ -1082,6 +1082,11 @@ created_line = generate_phony_line(src_relative, "o"); rc = generate_phony_file(fn, created_line); } + else if(strncmp(src_relative, "GenCxxClrObject/", 16) == 0) + { + created_line = generate_phony_line(src_relative, "o"); + rc = generate_phony_file(fn, created_line); + } else { fprintf(stderr, "no magic for %s(%s) in %s\n", fn, src_relative, work_dir); diff -Nru libreoffice-l10n-5.4.3~rc2/solenv/gbuild/CliAssembly.mk libreoffice-l10n-5.4.4~rc2/solenv/gbuild/CliAssembly.mk --- libreoffice-l10n-5.4.3~rc2/solenv/gbuild/CliAssembly.mk 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/solenv/gbuild/CliAssembly.mk 2017-12-12 17:45:07.000000000 +0000 @@ -12,8 +12,6 @@ gb_CliConfigTarget_TARGET := $(SRCDIR)/solenv/bin/clipatchconfig.pl gb_CliConfigTarget_COMMAND := $(PERL) -w $(gb_CliConfigTarget_TARGET) -gb_CliConfigTarget_VERSIONFILE_DEFAULT := $(SRCDIR)/cli_ure/version/version.txt - define gb_CliConfigTarget__command $(call gb_Output_announce,$(2),$(true),CPA,1) $(call gb_Helper_abbreviate_dirs,\ @@ -35,11 +33,11 @@ # # gb_CliConfigTarget_CliConfigTarget target source define gb_CliConfigTarget_CliConfigTarget -$(call gb_CliConfigTarget_get_target,$(1)) : CLI_CONFIG_VERSIONFILE := $(gb_CliConfigTarget_VERSIONFILE_DEFAULT) +$(call gb_CliConfigTarget_get_target,$(1)) : CLI_CONFIG_VERSIONFILE := $(3) $(call gb_CliConfigTarget_get_target,$(1)) : $(2) $(call gb_CliConfigTarget_get_target,$(1)) : $(gb_CliConfigTarget_TARGET) -$(call gb_CliConfigTarget_get_target,$(1)) : $(gb_CliConfigTarget_VERSIONFILE_DEFAULT) +$(call gb_CliConfigTarget_get_target,$(1)) : $(3) $(call gb_CliConfigTarget_get_target,$(1)) :| $(dir $(call gb_CliConfigTarget_get_target,$(1))).dir endef @@ -63,7 +61,7 @@ -keyfile:$(1).tmp.snk \ -link:$(CLI_ASSEMBLY_CONFIGFILE) \ $(if $(CLI_ASSEMBLY_PLATFORM),-platform:$(CLI_ASSEMBLY_PLATFORM)) && \ - rm -f $(1).tmp/snk && \ + rm -f $(1).tmp.snk && \ touch $(1) \ ) endef @@ -107,6 +105,7 @@ define gb_CliAssemblyTarget_set_configfile $(call gb_CliAssemblyTarget_get_target,$(1)) : CLI_ASSEMBLY_CONFIGFILE := $(2) $(call gb_CliAssemblyTarget_get_target,$(1)) : $(2) +$(call gb_CliAssemblyTarget_get_clean_target,$(1)) : $(3) endef @@ -169,19 +168,19 @@ endef define gb_CliAssembly__set_configfile_impl -$(call gb_CliAssemblyTarget_set_configfile,$(1),$(2)) +$(call gb_CliAssemblyTarget_set_configfile,$(1),$(2),$(3)) $(call gb_CliAssembly__add_file,$(1),$(2)) endef define gb_CliAssembly__set_configfile -$(call gb_CliConfigTarget_CliConfigTarget,$(2),$(3)) -$(call gb_CliAssembly__set_configfile_impl,$(1),$(call gb_CliConfigTarget_get_target,$(2))) +$(call gb_CliConfigTarget_CliConfigTarget,$(2),$(3),$(4)) +$(call gb_CliAssembly__set_configfile_impl,$(1),$(call gb_CliConfigTarget_get_target,$(2)),$(call gb_CliConfigTarget_get_clean_target,$(2))) endef define gb_CliAssembly_set_configfile -$(call gb_CliAssembly__set_configfile,$(1),$(patsubst %_config,%,$(2)),$(SRCDIR)/$(2)) +$(call gb_CliAssembly__set_configfile,$(1),$(patsubst %_config,%,$(2)),$(SRCDIR)/$(2),$(SRCDIR)/$(3)) endef diff -Nru libreoffice-l10n-5.4.3~rc2/solenv/gbuild/CliLibrary.mk libreoffice-l10n-5.4.4~rc2/solenv/gbuild/CliLibrary.mk --- libreoffice-l10n-5.4.3~rc2/solenv/gbuild/CliLibrary.mk 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/solenv/gbuild/CliLibrary.mk 2017-12-12 17:45:07.000000000 +0000 @@ -82,7 +82,7 @@ endef define gb_CliLibrary_set_configfile -$(call gb_CliAssembly_set_configfile,$(1),$(2)) +$(call gb_CliAssembly_set_configfile,$(1),$(2),$(3)) endef diff -Nru libreoffice-l10n-5.4.3~rc2/solenv/gbuild/CliNativeLibrary.mk libreoffice-l10n-5.4.4~rc2/solenv/gbuild/CliNativeLibrary.mk --- libreoffice-l10n-5.4.3~rc2/solenv/gbuild/CliNativeLibrary.mk 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/solenv/gbuild/CliNativeLibrary.mk 2017-12-12 17:45:07.000000000 +0000 @@ -63,7 +63,7 @@ endef define gb_CliNativeLibrary_set_configfile -$(call gb_CliAssembly_set_configfile,$(1),$(2)) +$(call gb_CliAssembly_set_configfile,$(1),$(2),$(3)) endef diff -Nru libreoffice-l10n-5.4.3~rc2/solenv/gbuild/CliUnoApi.mk libreoffice-l10n-5.4.4~rc2/solenv/gbuild/CliUnoApi.mk --- libreoffice-l10n-5.4.3~rc2/solenv/gbuild/CliUnoApi.mk 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/solenv/gbuild/CliUnoApi.mk 2017-12-12 17:45:07.000000000 +0000 @@ -67,7 +67,7 @@ endef define gb_CliUnoApi_set_configfile -$(call gb_CliAssembly_set_configfile,$(1),$(2)) +$(call gb_CliAssembly_set_configfile,$(1),$(2),$(3)) endef diff -Nru libreoffice-l10n-5.4.3~rc2/solenv/gbuild/Library.mk libreoffice-l10n-5.4.4~rc2/solenv/gbuild/Library.mk --- libreoffice-l10n-5.4.3~rc2/solenv/gbuild/Library.mk 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/solenv/gbuild/Library.mk 2017-12-12 17:45:07.000000000 +0000 @@ -177,6 +177,7 @@ add_objcxxobjects \ add_cxxclrobject \ add_cxxclrobjects \ + add_generated_cxxclrobjects \ add_asmobject \ add_asmobjects \ add_exception_objects \ diff -Nru libreoffice-l10n-5.4.3~rc2/solenv/gbuild/LinkTarget.mk libreoffice-l10n-5.4.4~rc2/solenv/gbuild/LinkTarget.mk --- libreoffice-l10n-5.4.3~rc2/solenv/gbuild/LinkTarget.mk 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/solenv/gbuild/LinkTarget.mk 2017-12-12 17:45:07.000000000 +0000 @@ -173,9 +173,9 @@ # Overview of dependencies and tasks of LinkTarget # # target task depends on -# LinkTarget linking AsmObject CObject CxxObject GenCObject GenCxxObject ObjCObject ObjCxxObject CxxClrObject +# LinkTarget linking AsmObject CObject CxxObject GenCObject GenCxxObject ObjCObject ObjCxxObject CxxClrObject GenCxxClrObject # LinkTarget/headers -# LinkTarget/dep joined dep file AsmObject/dep CObject/dep CxxObject/dep GenCObject/dep GenCxxObject/dep ObjCObject/dep ObjCxxObject/dep CxxClrObject/dep +# LinkTarget/dep joined dep file AsmObject/dep CObject/dep CxxObject/dep GenCObject/dep GenCxxObject/dep ObjCObject/dep ObjCxxObject/dep CxxClrObject/dep GenCxxClrObject/dep # | LinkTarget/headers # LinkTarget/headers all headers available # including own generated @@ -189,6 +189,8 @@ # ObjCObject objective c compile | LinkTarget/headers # ObjCxxObject objective c++ compile | LinkTarget/headers # CxxClrObject C++ CLR compile | LinkTarget/headers +# GenCxxClrObject C++ CLR compile from | LinkTarget/headers +# generated source # # AsmObject asm compile | LinkTarget # @@ -199,6 +201,7 @@ # ObjCObject/dep dependencies # ObjCxxObject/dep dependencies # CxxClrObject/dep dependencies +# GenCxxClrObject/dep dependencies # AsmObject/dep dependencies # LinkTarget/headers means gb_LinkTarget_get_headers_target etc. @@ -350,6 +353,28 @@ endif +# GenCxxClrObject class + +gb_GenCxxClrObject_get_source = $(WORKDIR)/$(1).$(gb_LinkTarget_CXX_SUFFIX_$(call gb_LinkTarget__get_workdir_linktargetname,$(2))) + +$(call gb_GenCxxClrObject_get_target,%) : $(gb_FORCE_COMPILE_ALL_TARGET) + $(call gb_Output_announce,$(subst $(BUILDDIR)/,,$(GEN_CXXCLR_SOURCE)),$(true),CLR,3) + test -f $(GEN_CXXCLR_SOURCE) || (echo "Missing generated source file $(GEN_CXXCLR_SOURCE)" && false) + $(call gb_CObject__command_pattern,$@,$(T_CXXCLRFLAGS) $(T_CXXCLRFLAGS_APPEND),$(GEN_CXXCLR_SOURCE),$(call gb_GenCxxClrObject_get_dep_target,$*),$(COMPILER_PLUGINS)) + +ifeq ($(gb_FULLDEPS),$(true)) +$(dir $(call gb_GenCxxClrObject_get_dep_target,%)).dir : + $(if $(wildcard $(dir $@)),,mkdir -p $(dir $@)) + +$(dir $(call gb_GenCxxClrObject_get_dep_target,%))%/.dir : + $(if $(wildcard $(dir $@)),,mkdir -p $(dir $@)) + +$(call gb_GenCxxClrObject_get_dep_target,%) : + $(if $(wildcard $@),touch $@) + +endif + + # YaccTarget class # XXX: This is more complicated than necessary, but we cannot just use @@ -532,6 +557,8 @@ $(foreach object,$(GENCOBJECTS),$(call gb_GenCObject_get_dep_target,$(object))) \ $(foreach object,$(GENCXXOBJECTS),$(call gb_GenCxxObject_get_target,$(object))) \ $(foreach object,$(GENCXXOBJECTS),$(call gb_GenCxxObject_get_dep_target,$(object))) \ + $(foreach object,$(GENCXXCLROBJECTS),$(call gb_GenCxxClrObject_get_target,$(object))) \ + $(foreach object,$(GENCXXCLROBJECTS),$(call gb_GenCxxClrObject_get_dep_target,$(object))) \ $(call gb_LinkTarget_get_target,$(LINKTARGET)) \ $(call gb_LinkTarget_get_dep_target,$(LINKTARGET)) \ $(call gb_LinkTarget_get_headers_target,$(LINKTARGET)) \ @@ -557,6 +584,7 @@ $(foreach object,$(ASMOBJECTS),$(call gb_AsmObject_get_dep_target,$(object)))\ $(foreach object,$(GENCOBJECTS),$(call gb_GenCObject_get_dep_target,$(object))) \ $(foreach object,$(GENCXXOBJECTS),$(call gb_GenCxxObject_get_dep_target,$(object))) \ + $(foreach object,$(GENCXXCLROBJECTS),$(call gb_GenCxxClrObject_get_dep_target,$(object))) \ ) && \ $(call gb_Executable_get_command,concat-deps) $${RESPONSEFILE} > $(1)) && \ rm -f $${RESPONSEFILE} @@ -574,6 +602,7 @@ $(foreach object,$(ASMOBJECTS),$(call gb_AsmObject_get_target,$(object))) \ $(foreach object,$(GENCOBJECTS),$(call gb_GenCObject_get_target,$(object))) \ $(foreach object,$(GENCXXOBJECTS),$(call gb_GenCxxObject_get_target,$(object))) \ + $(foreach object,$(GENCXXCLROBJECTS),$(call gb_GenCxxClrObject_get_target,$(object))) \ $(PCHOBJS)) && \ $(if $(EXTRAOBJECTLISTS),cat $(EXTRAOBJECTLISTS) >> $${TEMPFILE} && ) \ mv $${TEMPFILE} $(1) @@ -716,6 +745,8 @@ $(call gb_LinkTarget_get_target,$(1)) : GENCOBJECTS := $(call gb_LinkTarget_get_clean_target,$(1)) \ $(call gb_LinkTarget_get_target,$(1)) : GENCXXOBJECTS := +$(call gb_LinkTarget_get_clean_target,$(1)) \ +$(call gb_LinkTarget_get_target,$(1)) : GENCXXCLROBJECTS := $(call gb_LinkTarget_get_target,$(1)) : T_CFLAGS := $$(gb_LinkTarget_CFLAGS) $(call gb_LinkTarget_get_target,$(1)) : T_CFLAGS_APPEND := $(call gb_LinkTarget_get_target,$(1)) : T_CXXFLAGS := $$(gb_LinkTarget_CXXFLAGS) @@ -765,6 +796,7 @@ $(call gb_LinkTarget_get_dep_target,$(1)) : ASMOBJECTS := $(call gb_LinkTarget_get_dep_target,$(1)) : GENCOBJECTS := $(call gb_LinkTarget_get_dep_target,$(1)) : GENCXXOBJECTS := +$(call gb_LinkTarget_get_dep_target,$(1)) : GENCXXCLROBJECTS := $(call gb_LinkTarget_get_dep_target,$(1)) : YACCOBJECTS := endif @@ -1226,6 +1258,28 @@ endef +# call gb_LinkTarget_add_generated_cxxclrobject,linktarget,sourcefile,cxxclrflags,linktargetmakefilename +define gb_LinkTarget_add_generated_cxxclrobject +$(call gb_LinkTarget_get_target,$(1)) : GENCXXCLROBJECTS += $(2) +$(call gb_LinkTarget_get_clean_target,$(1)) : GENCXXCLROBJECTS += $(2) + +$(call gb_LinkTarget_get_target,$(1)) : $(call gb_GenCxxClrObject_get_target,$(2)) +$(call gb_GenCxxClrObject_get_target,$(2)) : $(call gb_GenCxxClrObject_get_source,$(2),$(1)) +$(call gb_GenCxxClrObject_get_target,$(2)) : | $(call gb_LinkTarget_get_headers_target,$(1)) +$(call gb_GenCxxClrObject_get_target,$(2)) : T_CXXCLRFLAGS += $(call gb_LinkTarget__get_cxxclrflags,$(4)) $(3) +$(call gb_GenCxxClrObject_get_target,$(2)) : \ + OBJECTOWNER := $(call gb_Object__owner,$(2),$(1)) +$(call gb_GenCxxClrObject_get_target,$(2)) : GEN_CXXCLR_SOURCE := $(call gb_GenCxxClrObject_get_source,$(2),$(1)) + +ifeq ($(gb_FULLDEPS),$(true)) +$(call gb_LinkTarget_get_dep_target,$(1)) : GENCXXCLROBJECTS += $(2) +$(call gb_LinkTarget_get_dep_target,$(1)) : $(call gb_GenCxxClrObject_get_dep_target,$(2)) +$(call gb_GenCxxClrObject_get_dep_target,$(2)) :| $(dir $(call gb_GenCxxClrObject_get_dep_target,$(2))).dir +$(call gb_GenCxxClrObject_get_target,$(2)) :| $(dir $(call gb_GenCxxClrObject_get_dep_target,$(2))).dir +endif + +endef + # Add a bison grammar to the build. # call gb_LinkTarget_add_grammar,linktarget,yaccfile,linktargetmakefilename,cxxflags define gb_LinkTarget_add_grammar @@ -1361,6 +1415,11 @@ $(foreach obj,$(2),$(call gb_LinkTarget_add_generated_exception_object,$(1),$(obj),$(4))) endef +# call gb_LinkTarget_add_generated_cxxclrobjects,linktarget,sourcefiles,cxxclrflags,linktargetmakefilename +define gb_LinkTarget_add_generated_cxxclrobjects +$(foreach obj,$(2),$(call gb_LinkTarget_add_generated_cxxclrobject,$(1),$(obj),$(3),$(4))) +endef + # call gb_LinkTarget_set_targettype,linktarget,targettype define gb_LinkTarget_set_targettype $(call gb_LinkTarget_get_target,$(1)) : TARGETTYPE := $(2) diff -Nru libreoffice-l10n-5.4.3~rc2/solenv/gbuild/platform/com_MSC_class.mk libreoffice-l10n-5.4.4~rc2/solenv/gbuild/platform/com_MSC_class.mk --- libreoffice-l10n-5.4.3~rc2/solenv/gbuild/platform/com_MSC_class.mk 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/solenv/gbuild/platform/com_MSC_class.mk 2017-12-12 17:45:07.000000000 +0000 @@ -164,6 +164,7 @@ $(foreach object,$(COBJECTS),$(call gb_CObject_get_target,$(object))) \ $(foreach object,$(GENCOBJECTS),$(call gb_GenCObject_get_target,$(object))) \ $(foreach object,$(CXXCLROBJECTS),$(call gb_CxxClrObject_get_target,$(object))) \ + $(foreach object,$(GENCXXCLROBJECTS),$(call gb_GenCxxClrObject_get_target,$(object))) \ $(foreach object,$(ASMOBJECTS),$(call gb_AsmObject_get_target,$(object))) \ $(foreach extraobjectlist,$(EXTRAOBJECTLISTS),$(shell cat $(extraobjectlist))) \ $(PCHOBJS) $(NATIVERES)) && \ diff -Nru libreoffice-l10n-5.4.3~rc2/solenv/gbuild/TargetLocations.mk libreoffice-l10n-5.4.4~rc2/solenv/gbuild/TargetLocations.mk --- libreoffice-l10n-5.4.3~rc2/solenv/gbuild/TargetLocations.mk 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/solenv/gbuild/TargetLocations.mk 2017-12-12 17:45:07.000000000 +0000 @@ -128,6 +128,7 @@ gb_ObjCxxObject_get_target = $(WORKDIR)/ObjCxxObject/$(1).o gb_ObjCObject_get_target = $(WORKDIR)/ObjCObject/$(1).o gb_CxxClrObject_get_target = $(WORKDIR)/CxxClrObject/$(1).o +gb_GenCxxClrObject_get_target = $(WORKDIR)/GenCxxClrObject/$(1).o gb_Pagein_get_target = $(WORKDIR)/Pagein/pagein-$(1) gb_Package_get_preparation_target = $(WORKDIR)/Package/prepared/$(1) gb_Package_get_target = $(WORKDIR)/Package/$(1).filelist @@ -317,6 +318,7 @@ AsmObject \ GenCObject \ GenCxxObject \ + GenCxxClrObject \ SdiTarget \ SrsPartTarget \ SrsTarget \ diff -Nru libreoffice-l10n-5.4.3~rc2/svl/source/numbers/zforlist.cxx libreoffice-l10n-5.4.4~rc2/svl/source/numbers/zforlist.cxx --- libreoffice-l10n-5.4.3~rc2/svl/source/numbers/zforlist.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/svl/source/numbers/zforlist.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -636,14 +636,15 @@ short& nType, sal_uInt32& nKey, LanguageType eLnge, - LanguageType eNewLnge) + LanguageType eNewLnge, + bool bForExcelExport ) { bool bRes; if (eNewLnge == LANGUAGE_DONTKNOW) { eNewLnge = IniLnge; } - pFormatScanner->SetConvertMode(eLnge, eNewLnge); + pFormatScanner->SetConvertMode(eLnge, eNewLnge, false, bForExcelExport); bRes = PutEntry(rString, nCheckPos, nType, nKey, eLnge); pFormatScanner->SetConvertMode(false); return bRes; @@ -821,7 +822,7 @@ short nType = css::util::NumberFormat::DEFINED; sal_uInt32 nTempKey; OUString aTemp( pEntry->GetFormatstring()); - rTempFormatter.PutandConvertEntry( aTemp, nCheckPos, nType, nTempKey, nLang, LANGUAGE_ENGLISH_US); + rTempFormatter.PutandConvertEntry( aTemp, nCheckPos, nType, nTempKey, nLang, LANGUAGE_ENGLISH_US, true); SAL_WARN_IF( nCheckPos != 0, "svl.numbers", "SvNumberFormatter::GetFormatStringForExcel - format code not convertible"); if (nTempKey != NUMBERFORMAT_ENTRY_NOT_FOUND) diff -Nru libreoffice-l10n-5.4.3~rc2/svl/source/numbers/zforscan.cxx libreoffice-l10n-5.4.4~rc2/svl/source/numbers/zforscan.cxx --- libreoffice-l10n-5.4.3~rc2/svl/source/numbers/zforscan.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/svl/source/numbers/zforscan.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -47,6 +47,7 @@ pFormatter = pFormatterP; xNFC = css::i18n::NumberFormatMapper::create( pFormatter->GetComponentContext() ); bConvertMode = false; + mbConvertForExcelExport = false; bConvertSystemToSystem = false; //! All keywords MUST be UPPERCASE! sKeyword[NF_KEY_E] = "E"; // Exponent @@ -1580,7 +1581,10 @@ pLoc = pFormatter->GetLocaleData(); //! init new keywords InitKeywords(); - bNewDateOrder = (eOldDateOrder != pLoc->getDateOrder()); + // Adapt date order to target locale, but Excel does not handle date + // particle re-ordering for the target locale when loading documents, + // though it does exchange separators, tdf#113889 + bNewDateOrder = (!mbConvertForExcelExport && eOldDateOrder != pLoc->getDateOrder()); } const CharClass* pChrCls = pFormatter->GetCharClass(); diff -Nru libreoffice-l10n-5.4.3~rc2/svl/source/numbers/zforscan.hxx libreoffice-l10n-5.4.4~rc2/svl/source/numbers/zforscan.hxx --- libreoffice-l10n-5.4.3~rc2/svl/source/numbers/zforscan.hxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/svl/source/numbers/zforscan.hxx 2017-12-12 17:45:07.000000000 +0000 @@ -124,12 +124,13 @@ } void SetConvertMode(LanguageType eTmpLge, LanguageType eNewLge, - bool bSystemToSystem = false ) + bool bSystemToSystem = false, bool bForExcelExport = false) { bConvertMode = true; eNewLnge = eNewLge; eTmpLnge = eTmpLge; bConvertSystemToSystem = bSystemToSystem; + mbConvertForExcelExport = bForExcelExport; } // Only changes the bool variable, in order to temporarily pause the convert mode void SetConvertMode(bool bMode) { bConvertMode = bMode; } @@ -183,6 +184,7 @@ OUString sErrStr; // String for error output bool bConvertMode; // Set in the convert mode + bool mbConvertForExcelExport; // Set in the convert mode whether to convert for Excel export LanguageType eNewLnge; // Language/country which the scanned string is converted to (for Excel filter) LanguageType eTmpLnge; // Language/country which the scanned string is converted from (for Excel filter) diff -Nru libreoffice-l10n-5.4.3~rc2/svtools/source/control/filectrl.cxx libreoffice-l10n-5.4.4~rc2/svtools/source/control/filectrl.cxx --- libreoffice-l10n-5.4.3~rc2/svtools/source/control/filectrl.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/svtools/source/control/filectrl.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -174,6 +174,8 @@ void FileControl::GetFocus() { + if (!maEdit || maEdit->IsDisposed()) + return; maEdit->GrabFocus(); } diff -Nru libreoffice-l10n-5.4.3~rc2/svtools/source/svrtf/parrtf.cxx libreoffice-l10n-5.4.4~rc2/svtools/source/svrtf/parrtf.cxx --- libreoffice-l10n-5.4.3~rc2/svtools/source/svrtf/parrtf.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/svtools/source/svrtf/parrtf.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -336,7 +336,9 @@ sal_Char nSlash = '\\'; while (!bBreak) { - wchar_t next=GetNextChar(); + auto next = GetNextChar(); + if (sal_Unicode(EOF) == next) + break; if (next>0xFF) // fix for #i43933# and #i35653# { if (!aByteString.isEmpty()) diff -Nru libreoffice-l10n-5.4.3~rc2/svx/sdi/svx.sdi libreoffice-l10n-5.4.4~rc2/svx/sdi/svx.sdi --- libreoffice-l10n-5.4.3~rc2/svx/sdi/svx.sdi 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/svx/sdi/svx.sdi 2017-12-12 17:45:07.000000000 +0000 @@ -11079,9 +11079,9 @@ RecordAbsolute = FALSE, RecordPerSet; - AccelConfig = TRUE, - MenuConfig = TRUE, - ToolBoxConfig = TRUE, + AccelConfig = FALSE, + MenuConfig = FALSE, + ToolBoxConfig = FALSE, GroupId = GID_FORMAT; ] diff -Nru libreoffice-l10n-5.4.3~rc2/svx/source/accessibility/AccessibleShape.cxx libreoffice-l10n-5.4.4~rc2/svx/source/accessibility/AccessibleShape.cxx --- libreoffice-l10n-5.4.3~rc2/svx/source/accessibility/AccessibleShape.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/svx/source/accessibility/AccessibleShape.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -408,7 +408,9 @@ ::osl::MutexGuard aGuard (maMutex); Reference xStateSet; - if (IsDisposed()) + bool bDisposed = IsDisposed(); + + if (bDisposed) { // Return a minimal state set that only contains the DEFUNC state. xStateSet = AccessibleContextBase::getAccessibleStateSet (); @@ -459,7 +461,7 @@ xStateSet.set( new ::utl::AccessibleStateSetHelper (*pStateSet)); } } - if (mpParent && mpParent->IsDocumentSelAll()) + if (!bDisposed && xStateSet.is() && mpParent && mpParent->IsDocumentSelAll()) { ::utl::AccessibleStateSetHelper* pStateSet = static_cast< ::utl::AccessibleStateSetHelper*>(xStateSet.get()); diff -Nru libreoffice-l10n-5.4.3~rc2/svx/source/dialog/fntctrl.cxx libreoffice-l10n-5.4.4~rc2/svx/source/dialog/fntctrl.cxx --- libreoffice-l10n-5.4.3~rc2/svx/source/dialog/fntctrl.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/svx/source/dialog/fntctrl.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -611,6 +611,24 @@ pImpl->mbUseResText = true; } +/* + * removes line feeds and carriage returns from string + * returns if param is empty + */ +bool CleanAndCheckEmpty(OUString& rText) +{ + bool bEmpty = true; + for (sal_Int32 i = 0; i < rText.getLength(); ++i) + { + if (0xa == rText[i] || 0xd == rText[i]) + rText = rText.replaceAt(i, 1, " "); + else + bEmpty = false; + } + return bEmpty; +} + + void SvxFontPrevWindow::Paint(vcl::RenderContext& rRenderContext, const tools::Rectangle&) { ApplySettings(rRenderContext); @@ -644,7 +662,7 @@ { pImpl->maText = pSh->GetSelectionText(); pImpl->mbGetSelection = true; - pImpl->mbSelection = !pImpl->maText.isEmpty(); + pImpl->mbSelection = !CleanAndCheckEmpty(pImpl->maText); } if (!pImpl->mbSelection || pImpl->mbUseFontNameAsText) @@ -680,16 +698,8 @@ pImpl->maText = makeRepresentativeTextForFont(LATIN, rFont); } - // remove line feeds and carriage returns from string - bool bNotEmpty = false; - for (sal_Int32 i = 0; i < pImpl->maText.getLength(); ++i) - { - if (0xa == pImpl->maText[i] || 0xd == pImpl->maText[i]) - pImpl->maText = pImpl->maText.replaceAt(i, 1, " "); - else - bNotEmpty = true; - } - if (!bNotEmpty) + bool bEmpty = CleanAndCheckEmpty(pImpl->maText); + if (bEmpty) pImpl->maText = GetText(); if (pImpl->maText.getLength() > (TEXT_WIDTH - 1)) diff -Nru libreoffice-l10n-5.4.3~rc2/svx/source/dialog/paraprev.cxx libreoffice-l10n-5.4.4~rc2/svx/source/dialog/paraprev.cxx --- libreoffice-l10n-5.4.3~rc2/svx/source/dialog/paraprev.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/svx/source/dialog/paraprev.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -120,6 +120,9 @@ { case SvxPrevLineSpace::N1: break; + case SvxPrevLineSpace::N115: + aPnt.Y() += nH / 6.67; // 1/.15 = 6.(6) + break; case SvxPrevLineSpace::N15: aPnt.Y() += nH / 2; break; diff -Nru libreoffice-l10n-5.4.3~rc2/svx/source/gallery2/galbrws1.cxx libreoffice-l10n-5.4.4~rc2/svx/source/gallery2/galbrws1.cxx --- libreoffice-l10n-5.4.3~rc2/svx/source/gallery2/galbrws1.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/svx/source/gallery2/galbrws1.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -266,7 +266,7 @@ SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create(); assert(pFact && "Got no AbstractDialogFactory!"); - mpThemePropertiesDialog = pFact->CreateGalleryThemePropertiesDialog( mpExchangeData, mpThemePropsDlgItemSet ); + mpThemePropertiesDialog = pFact->CreateGalleryThemePropertiesDialog(this, mpExchangeData, mpThemePropsDlgItemSet); assert(mpThemePropertiesDialog && "Got no GalleryThemePropertiesDialog!"); if ( bCreateNew ) diff -Nru libreoffice-l10n-5.4.3~rc2/svx/source/tbxctrls/bulletsnumbering.cxx libreoffice-l10n-5.4.4~rc2/svx/source/tbxctrls/bulletsnumbering.cxx --- libreoffice-l10n-5.4.3~rc2/svx/source/tbxctrls/bulletsnumbering.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/svx/source/tbxctrls/bulletsnumbering.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -15,6 +15,7 @@ #include #include #include +#include #include #include #include @@ -183,7 +184,8 @@ } else if ( getSelectedEntryId() == 1 ) { - auto aArgs( comphelper::InitPropertySequence( { { "Page", css::uno::makeAny( OUString("customize") ) } } ) ); + auto aArgs( comphelper::InitPropertySequence( { { "Page", css::uno::makeAny( OUString("customize") ) }, + { "DialogParent", css::uno::makeAny(VCLUnoHelper::GetInterface(GetParent())) } } ) ); mrController.dispatchCommand( ".uno:OutlineBullet", aArgs ); } } diff -Nru libreoffice-l10n-5.4.3~rc2/svx/source/tbxctrls/PaletteManager.cxx libreoffice-l10n-5.4.4~rc2/svx/source/tbxctrls/PaletteManager.cxx --- libreoffice-l10n-5.4.3~rc2/svx/source/tbxctrls/PaletteManager.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/svx/source/tbxctrls/PaletteManager.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -57,6 +57,7 @@ pColorList = XColorList::CreateStdColorList(); LoadPalettes(); mnNumOfPalettes += m_Palettes.size(); + } PaletteManager::~PaletteManager() @@ -290,7 +291,8 @@ void PaletteManager::SetBtnUpdater(svx::ToolboxButtonColorUpdater* pBtnUpdater) { mpBtnUpdater = pBtnUpdater; - mLastColor = mpBtnUpdater->GetCurrentColor(); + if (mpBtnUpdater) + mLastColor = mpBtnUpdater->GetCurrentColor(); } void PaletteManager::SetColorSelectFunction(const std::function& aColorSelectFunction) diff -Nru libreoffice-l10n-5.4.3~rc2/svx/source/tbxctrls/tbcontrl.cxx libreoffice-l10n-5.4.4~rc2/svx/source/tbxctrls/tbcontrl.cxx --- libreoffice-l10n-5.4.3~rc2/svx/source/tbxctrls/tbcontrl.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/svx/source/tbxctrls/tbcontrl.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -459,6 +459,8 @@ pViewFrm->ShowChildWindow( SID_SIDEBAR ); ::sfx2::sidebar::Sidebar::ShowPanel("StyleListPanel", pViewFrm->GetFrame().GetFrameInterface()); + //tdf#113214 change text back to previous entry + SetText(GetSavedValue()); bDoIt = false; } } @@ -1253,7 +1255,7 @@ SvxColorWindow::SvxColorWindow(const OUString& rCommand, - PaletteManager& rPaletteManager, + std::shared_ptr& rPaletteManager, BorderColorStatus& rBorderColorStatus, sal_uInt16 nSlotId, const Reference< XFrame >& rFrame, @@ -1265,7 +1267,7 @@ rFrame ), theSlotId( nSlotId ), maCommand( rCommand ), - mrPaletteManager( rPaletteManager ), + mxPaletteManager( rPaletteManager ), mrBorderColorStatus( rBorderColorStatus ), maColorSelectFunction(aFunction) { @@ -1324,7 +1326,7 @@ mpPaletteListBox->SetStyle( mpPaletteListBox->GetStyle() | WB_BORDER | WB_AUTOSIZE ); mpPaletteListBox->SetSelectHdl( LINK( this, SvxColorWindow, SelectPaletteHdl ) ); mpPaletteListBox->AdaptDropDownLineCountToMaximum(); - std::vector aPaletteList = mrPaletteManager.GetPaletteList(); + std::vector aPaletteList = mxPaletteManager->GetPaletteList(); for( std::vector::iterator it = aPaletteList.begin(); it != aPaletteList.end(); ++it ) { mpPaletteListBox->InsertEntry( *it ); @@ -1333,7 +1335,7 @@ mpPaletteListBox->SelectEntry( aPaletteName ); const sal_Int32 nSelectedEntry(mpPaletteListBox->GetSelectEntryPos()); if (nSelectedEntry != LISTBOX_ENTRY_NOTFOUND) - mrPaletteManager.SetPalette(nSelectedEntry); + mxPaletteManager->SetPalette(nSelectedEntry); mpButtonAutoColor->SetClickHdl( LINK( this, SvxColorWindow, AutoColorClickHdl ) ); mpButtonNoneColor->SetClickHdl( LINK( this, SvxColorWindow, AutoColorClickHdl ) ); @@ -1344,14 +1346,14 @@ SetHelpId( HID_POPUP_COLOR ); mpColorSet->SetHelpId( HID_POPUP_COLOR_CTRL ); - mrPaletteManager.ReloadColorSet(*mpColorSet); + mxPaletteManager->ReloadColorSet(*mpColorSet); const sal_uInt32 nMaxItems(SvxColorValueSet::getMaxRowCount() * SvxColorValueSet::getColumnCount()); Size aSize = mpColorSet->layoutAllVisible(nMaxItems); mpColorSet->set_height_request(aSize.Height()); mpColorSet->set_width_request(aSize.Width()); - mrPaletteManager.ReloadRecentColorSet(*mpRecentColorSet); - aSize = mpRecentColorSet->layoutAllVisible(mrPaletteManager.GetRecentColorCount()); + mxPaletteManager->ReloadRecentColorSet(*mpRecentColorSet); + aSize = mpRecentColorSet->layoutAllVisible(mxPaletteManager->GetRecentColorCount()); mpRecentColorSet->set_height_request(aSize.Height()); mpRecentColorSet->set_width_request(aSize.Width()); @@ -1465,9 +1467,9 @@ if ( pColorSet != mpRecentColorSet ) { - mrPaletteManager.AddRecentColor(aNamedColor.first, aNamedColor.second); + mxPaletteManager->AddRecentColor(aNamedColor.first, aNamedColor.second); if ( !IsInPopupMode() ) - mrPaletteManager.ReloadRecentColorSet( *mpRecentColorSet ); + mxPaletteManager->ReloadRecentColorSet(*mpRecentColorSet); } if ( IsInPopupMode() ) @@ -1481,9 +1483,9 @@ IMPL_LINK_NOARG(SvxColorWindow, SelectPaletteHdl, ListBox&, void) { sal_Int32 nPos = mpPaletteListBox->GetSelectEntryPos(); - mrPaletteManager.SetPalette( nPos ); - mrPaletteManager.ReloadColorSet(*mpColorSet); - mpColorSet->layoutToGivenHeight(mpColorSet->GetSizePixel().Height(), mrPaletteManager.GetColorCount()); + mxPaletteManager->SetPalette( nPos ); + mxPaletteManager->ReloadColorSet(*mpColorSet); + mpColorSet->layoutToGivenHeight(mpColorSet->GetSizePixel().Height(), mxPaletteManager->GetColorCount()); } NamedColor SvxColorWindow::GetAutoColor() const @@ -1513,7 +1515,7 @@ if ( IsInPopupMode() ) EndPopupMode(); - mrPaletteManager.PopupColorPicker(maCommand, GetSelectEntryColor().first); + mxPaletteManager->PopupColorPicker(maCommand, GetSelectEntryColor().first); } void SvxColorWindow::StartSelection() @@ -1541,10 +1543,10 @@ void SvxColorWindow::statusChanged( const css::frame::FeatureStateEvent& rEvent ) { if ( rEvent.IsEnabled && rEvent.FeatureURL.Complete == ".uno:ColorTableState" - && mrPaletteManager.GetPalette() == 0) + && mxPaletteManager->GetPalette() == 0) { - mrPaletteManager.ReloadColorSet(*mpColorSet); - mpColorSet->layoutToGivenHeight(mpColorSet->GetSizePixel().Height(), mrPaletteManager.GetColorCount()); + mxPaletteManager->ReloadColorSet(*mpColorSet); + mpColorSet->layoutToGivenHeight(mpColorSet->GetSizePixel().Height(), mxPaletteManager->GetColorCount()); } else { @@ -1607,8 +1609,8 @@ if (!bFoundColor) { const OUString& rColorName = rNamedColor.second; - mrPaletteManager.AddRecentColor(rColor, rColorName, false); - mrPaletteManager.ReloadRecentColorSet(*mpRecentColorSet); + mxPaletteManager->AddRecentColor(rColor, rColorName, false); + mxPaletteManager->ReloadRecentColorSet(*mpRecentColorSet); SelectValueSetEntry(mpRecentColorSet, rColor); } } @@ -2811,6 +2813,8 @@ SvxColorToolBoxControl::~SvxColorToolBoxControl() { + if (m_xPaletteManager) + m_xPaletteManager->SetBtnUpdater(nullptr); } void SvxColorToolBoxControl::setColorSelectFunction(const ColorSelectFunction& aColorSelectFunction) @@ -2826,7 +2830,7 @@ VclPtrInstance pColorWin( m_aCommandURL, - *m_xPaletteManager, + m_xPaletteManager, m_aBorderColorStatus, GetSlotId(), m_xFrame, @@ -3198,6 +3202,8 @@ void SvxListBoxColorWrapper::operator()(const OUString& /*rCommand*/, const NamedColor& rColor) { + if (!mxControl) + return; mxControl->Selected(rColor); } @@ -3224,7 +3230,7 @@ if (!m_xPaletteManager) { m_xPaletteManager.reset(new PaletteManager); - m_xPaletteManager->SetColorSelectFunction(m_aColorWrapper); + m_xPaletteManager->SetColorSelectFunction(std::ref(m_aColorWrapper)); m_xPaletteManager->SetLastColor(m_aSelectedColor.first); } } @@ -3312,7 +3318,7 @@ m_xColorWindow = VclPtr::Create( OUString() /*m_aCommandURL*/, - *m_xPaletteManager, + m_xPaletteManager, m_aBorderColorStatus, m_nSlotId, xFrame, diff -Nru libreoffice-l10n-5.4.3~rc2/sw/inc/redline.hxx libreoffice-l10n-5.4.4~rc2/sw/inc/redline.hxx --- libreoffice-l10n-5.4.3~rc2/sw/inc/redline.hxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sw/inc/redline.hxx 2017-12-12 17:45:07.000000000 +0000 @@ -274,9 +274,10 @@ bool operator<( const SwRangeRedline& ) const; void dumpAsXml(struct _xmlTextWriter* pWriter) const; - void MaybeNotifyModification(); }; +SW_DLLPUBLIC void MaybeNotifyRedlineModification(SwRangeRedline* pRedline, SwDoc* pDoc); + /// Base object for 'Redlines' that are not of 'Ranged' type (like table row insert\delete) class SW_DLLPUBLIC SwExtraRedline { diff -Nru libreoffice-l10n-5.4.3~rc2/sw/inc/unodraw.hxx libreoffice-l10n-5.4.4~rc2/sw/inc/unodraw.hxx --- libreoffice-l10n-5.4.3~rc2/sw/inc/unodraw.hxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sw/inc/unodraw.hxx 2017-12-12 17:45:07.000000000 +0000 @@ -127,6 +127,7 @@ { friend class SwXGroupShape; friend class SwXDrawPage; + friend class SwFmDrawPage; css::uno::Reference< css::uno::XAggregation > xShapeAgg; // reference to , determined in the @@ -214,7 +215,7 @@ virtual void Modify( const SfxPoolItem* pOld, const SfxPoolItem *pNew) override; public: - SwXShape(css::uno::Reference< css::uno::XInterface > & xShape); + SwXShape(css::uno::Reference< css::uno::XInterface > & xShape, SwDoc * pDoc = nullptr); static const css::uno::Sequence< sal_Int8 > & getUnoTunnelId(); virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type& aType ) override; @@ -274,7 +275,7 @@ protected: virtual ~SwXGroupShape() override; public: - SwXGroupShape(css::uno::Reference< css::uno::XInterface > & xShape); + SwXGroupShape(css::uno::Reference< css::uno::XInterface > & xShape, SwDoc * pDoc = nullptr); virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type& aType ) override; virtual void SAL_CALL acquire( ) throw() override; Binary files /tmp/tmpeqd4tK/oD0ffcKnq6/libreoffice-l10n-5.4.3~rc2/sw/qa/extras/odfimport/data/Word2010AsCharShape.odt and /tmp/tmpeqd4tK/4ft5T1CAQZ/libreoffice-l10n-5.4.4~rc2/sw/qa/extras/odfimport/data/Word2010AsCharShape.odt differ diff -Nru libreoffice-l10n-5.4.3~rc2/sw/qa/extras/odfimport/odfimport.cxx libreoffice-l10n-5.4.4~rc2/sw/qa/extras/odfimport/odfimport.cxx --- libreoffice-l10n-5.4.3~rc2/sw/qa/extras/odfimport/odfimport.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sw/qa/extras/odfimport/odfimport.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -20,6 +20,7 @@ #include #include #include +#include #include #include @@ -792,6 +793,17 @@ CPPUNIT_ASSERT_EQUAL(sal_Int32(1), xIndexAccess->getCount()); } +DECLARE_ODFIMPORT_TEST(testWordAsCharShape, "Word2010AsCharShape.odt") +{ + // As-char shape had VertOrient "from-top"/NONE default from GetVOrient() + uno::Reference const xShape(getShape(1)); + CPPUNIT_ASSERT_EQUAL(text::TextContentAnchorType_AS_CHARACTER, getProperty(xShape, "AnchorType")); + CPPUNIT_ASSERT_EQUAL(text::VertOrientation::TOP, getProperty(xShape, "VertOrient")); + // also, the paragraph default fo:bottom-margin was wrongly applied to + // the shape + CPPUNIT_ASSERT_EQUAL(sal_Int32(0), getProperty(xShape, "BottomMargin")); +} + DECLARE_ODFIMPORT_TEST(testTdf100033_2, "tdf100033_2.odt") { // Test document have three different frames anchored to different paragraphs -> import all frames Binary files /tmp/tmpeqd4tK/oD0ffcKnq6/libreoffice-l10n-5.4.3~rc2/sw/qa/extras/ooxmlexport/data/tdf107111.docx and /tmp/tmpeqd4tK/4ft5T1CAQZ/libreoffice-l10n-5.4.4~rc2/sw/qa/extras/ooxmlexport/data/tdf107111.docx differ Binary files /tmp/tmpeqd4tK/oD0ffcKnq6/libreoffice-l10n-5.4.3~rc2/sw/qa/extras/ooxmlexport/data/tdf112352_nextPageColumns.docx and /tmp/tmpeqd4tK/4ft5T1CAQZ/libreoffice-l10n-5.4.4~rc2/sw/qa/extras/ooxmlexport/data/tdf112352_nextPageColumns.docx differ diff -Nru libreoffice-l10n-5.4.3~rc2/sw/qa/extras/ooxmlexport/ooxmlexport9.cxx libreoffice-l10n-5.4.4~rc2/sw/qa/extras/ooxmlexport/ooxmlexport9.cxx --- libreoffice-l10n-5.4.3~rc2/sw/qa/extras/ooxmlexport/ooxmlexport9.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sw/qa/extras/ooxmlexport/ooxmlexport9.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -323,6 +323,17 @@ CPPUNIT_ASSERT_EQUAL( 2, getPages() ); } +DECLARE_OOXMLEXPORT_TEST(testTdf112352_nextPageColumns, "tdf112352_nextPageColumns.docx") +{ + uno::Reference xTextSection = getProperty< uno::Reference >(getParagraph(2), "TextSection"); + uno::Reference xTextColumns = getProperty< uno::Reference >(xTextSection, "TextColumns"); + CPPUNIT_ASSERT_EQUAL(sal_Int16(2), xTextColumns->getColumnCount()); + + xTextSection = getProperty< uno::Reference >(getParagraph(3), "TextSection"); + xTextColumns = getProperty< uno::Reference >(xTextSection, "TextColumns"); + CPPUNIT_ASSERT_EQUAL(sal_Int16(0), xTextColumns->getColumnCount()); +} + DECLARE_OOXMLEXPORT_TEST(testTdf103389, "tdf103389.docx") { xmlDocPtr pXmlDoc = parseExport("word/document.xml"); @@ -673,6 +684,19 @@ CPPUNIT_ASSERT_EQUAL(xPropertySet1->getPropertyValue("TextAutoGrowHeight"), xPropertySet2->getPropertyValue("TextAutoGrowHeight")); } +DECLARE_OOXMLEXPORT_TEST(testTdf107111, "tdf107111.docx") +{ + xmlDocPtr pXmlDoc = parseExport("word/document.xml"); + if (!pXmlDoc) + return; + + // Ensure that hyperlink and its properties are in place. + assertXPath(pXmlDoc, "/w:document/w:body/w:p[5]/w:hyperlink/w:r/w:rPr", 1); + + // Ensure that hyperlink properties do not contain . + assertXPath(pXmlDoc, "/w:document/w:body/w:p[5]/w:hyperlink/w:r/w:rPr/w:webHidden", 0); +} + CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-l10n-5.4.3~rc2/sw/qa/extras/rtfexport/data/tdf104079.rtf libreoffice-l10n-5.4.4~rc2/sw/qa/extras/rtfexport/data/tdf104079.rtf --- libreoffice-l10n-5.4.3~rc2/sw/qa/extras/rtfexport/data/tdf104079.rtf 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sw/qa/extras/rtfexport/data/tdf104079.rtf 2017-12-12 17:45:07.000000000 +0000 @@ -0,0 +1,48 @@ +{\rtf1\mac\ansicpg10000\uc1 \deff0\deflang1033\deflangfe1033 +{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0;\red255\green255\blue255;\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0; +\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;} +{\stylesheet +{\sa120\nowidctlpar\adjustright \cgrid \snext0 Normal;} +{\s24\sa120\nowidctlpar\tqr\tx9360\adjustright \b\caps\cgrid \sbasedon0 \snext0 \sautoupd toc 1;} +} +\margl1440\margr1440\margt1296\margb1296 \widowctrl\ftnbj\aenddoc\hyphcaps0\viewkind1\viewscale100 \fet0\sectd \linex0\sectdefaultcl +\pard\plain \s24\sa120\nowidctlpar\tqr\tx9360\adjustright \b\caps\cgrid +{\field\fldedit +{\*\fldinst TOC \\o "1-3" } +{\fldrslt +{\lang1024 toc1\tab } +{\field\flddirty +{\*\fldinst GOTOBUTTON _Toc434317063 +{\field +{\*\fldinst PAGEREF _Toc434317063 } +{\fldrslt 3 } +} +} +} +{\lang1024 +\par } +\pard\plain \s24\sa120\nowidctlpar\tqr\tx9360\adjustright \b\caps\cgrid +{\lang1024 toc2\tab } +{\field\flddirty +{\*\fldinst GOTOBUTTON _Toc434317068 +{\field +{\*\fldinst PAGEREF _Toc434317068 } +{\fldrslt 8 } +} +} +} +{\lang1024 +\par toc3\tab } +{\field\flddirty +{\*\fldinst GOTOBUTTON _Toc434317069 +{\field +{\*\fldinst PAGEREF _Toc434317069 } +{\fldrslt 8 } +} +} +} +\par +\pard\plain \s24\sa120\nowidctlpar\tqr\tx9360\adjustright \b\caps\cgrid } +} +\prad\par +} diff -Nru libreoffice-l10n-5.4.3~rc2/sw/qa/extras/rtfexport/data/tdf113202.rtf libreoffice-l10n-5.4.4~rc2/sw/qa/extras/rtfexport/data/tdf113202.rtf --- libreoffice-l10n-5.4.3~rc2/sw/qa/extras/rtfexport/data/tdf113202.rtf 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sw/qa/extras/rtfexport/data/tdf113202.rtf 2017-12-12 17:45:07.000000000 +0000 @@ -0,0 +1,42 @@ +{\rtf1\adeflang1037\ansi\ansicpg1252\uc1\adeff1\deff0\stshfdbch31506\stshfloch31506\stshfhich31506\stshfbi31507\deflang1033\deflangfe1033\themelang1033\themelangfe0\themelangcs0 +{\fonttbl +{\f0\fbidi \froman\fcharset238\fprq2 Times New Roman;} +{\f3\fbidi \froman\fcharset2\fprq2 Symbol;} +{\f40\fbidi \fswiss\fcharset238\fprq2 Verdana;} +} +\noqfpromote +{\stylesheet +{\s15\ql \li720\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\contextualspace \rtlch\fcs1 \af1\afs22\alang1025 \ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext15 \sqformat \spriority34 List Paragraph;} +} +{\*\listtable +{\list\listtemplateid1644085804\listhybrid +{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0 +{\leveltext +\leveltemplateid67698689\'01\u-3913 ?;} +{\levelnumbers;} +\f3\fbias0 \fi-360\li720\lin720 } +{\listname ;} +\listid2028170298} +} +{\*\listoverridetable +{\listoverride\listid2028170298\listoverridecount0\ls1} +} +\paperw12240\paperh15840\margl1417\margr1417\margt1417\margb1417 +\pard\plain \ltrpar +\s15\ql \fi-360\li720\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\ls1\adjustright\rin0\lin720\itap0\contextualspace \rtlch\fcs1 \af1\afs22\alang1025 \ltrch\fcs0 +\f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 +{\rtlch\fcs1 \af37\afs16 \ltrch\fcs0 \f40\fs16 Profile 1 \endash A1\par} +{\rtlch\fcs1 \af37\afs16 \ltrch\fcs0 \f40\fs16 Profile 1 \endash A2\par} +{\rtlch\fcs1 \af37\afs16 \ltrch\fcs0 \f40\fs16 Profile 1 \endash A3\par} +\pard \ltrpar\s15\ql \fi-360\li720\ri0\sl276\slmult1 +\widctlpar\wrapdefault\aspalpha\aspnum\faauto\ls1\adjustright\rin0\lin720\itap0\contextualspace +{\rtlch\fcs1 \af37\afs16 \ltrch\fcs0 \f40\fs16 Profile 4 } +{\rtlch\fcs1 \af37\afs16 \ltrch\fcs0 +\f40\fs16 \endash } +{\rtlch\fcs1 \af37\afs16 \ltrch\fcs0 \f40\fs16 } +{\rtlch\fcs1 \af37\afs16 \ltrch\fcs0 \f40\fs16 A4} +{\rtlch\fcs1 \af37\afs16 \ltrch\fcs0 +\f40\fs16 +\par } +\pard\plain\par +} diff -Nru libreoffice-l10n-5.4.3~rc2/sw/qa/extras/rtfexport/data/tdf113408.rtf libreoffice-l10n-5.4.4~rc2/sw/qa/extras/rtfexport/data/tdf113408.rtf --- libreoffice-l10n-5.4.3~rc2/sw/qa/extras/rtfexport/data/tdf113408.rtf 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sw/qa/extras/rtfexport/data/tdf113408.rtf 2017-12-12 17:45:07.000000000 +0000 @@ -0,0 +1,24 @@ +{\rtf1\adeflang1037\ansi\ansicpg1252\uc1\adeff1\deff0\stshfdbch0\stshfloch0\stshfhich0\stshfbi0\deflang1033\deflangfe1033\themelang1033\themelangfe0\themelangcs1025 +{\fonttbl +{\f0\fbidi \froman\fcharset238\fprq2 Times New Roman;} +} +{\stylesheet +{Normal;} +{\s66\li720\ri0 List Paragraph;} +} +{\*\listtable +{\list\listtemplateid1275618250\listhybrid +{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0 +\levelstartat1\levelspace0\levelindent0 +{\leveltext\leveltemplateid67698703\'02\'00.;} +{\levelnumbers\'01;} +\rtlch\fcs1 \af0 \fbias0 \fi-360\li720 } +{\listname ;} +\listid1880166401} +} +{\*\listoverridetable +{\listoverride\listid1880166401\listoverridecount0\ls9} +} +\paperw12240\paperh15840\margl1440\margr1440\margt1800\margb1440\gutter0\viewkind1 +\pard \s66\li720\ri0\itap0 \par +} diff -Nru libreoffice-l10n-5.4.3~rc2/sw/qa/extras/rtfexport/data/tdf113550.rtf libreoffice-l10n-5.4.4~rc2/sw/qa/extras/rtfexport/data/tdf113550.rtf --- libreoffice-l10n-5.4.3~rc2/sw/qa/extras/rtfexport/data/tdf113550.rtf 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sw/qa/extras/rtfexport/data/tdf113550.rtf 2017-12-12 17:45:07.000000000 +0000 @@ -0,0 +1,17 @@ +{\rtf1\adeflang1037\ansi\ansicpg1252\uc1\adeff1\deff0\stshfdbch31505\stshfloch31506\stshfhich31506\stshfbi0\deflang1033\deflangfe1033\themelang1033\themelangfe0\themelangcs0 +{\fonttbl +{\f0\fbidi \froman\fcharset238\fprq2 Times New Roman;} +} +{\stylesheet +{\ql \li0\ri0 Normal;} +{\s22\ql \li0\ri0 S22;} +{\s442\ql \li1418\ri0 \sbasedon22 S442;} +} +\paperw12240\paperh15840\margl1134\margr1134\margt1134\margb1410 +\trowd \cellx10008 +\pard\plain \ltrpar\s442\ql \li0\ri0\intbl +hello\par +\pard\cell\row +} +\pard\plain\par +} diff -Nru libreoffice-l10n-5.4.3~rc2/sw/qa/extras/rtfexport/rtfexport.cxx libreoffice-l10n-5.4.4~rc2/sw/qa/extras/rtfexport/rtfexport.cxx --- libreoffice-l10n-5.4.3~rc2/sw/qa/extras/rtfexport/rtfexport.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sw/qa/extras/rtfexport/rtfexport.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -745,6 +745,12 @@ CPPUNIT_ASSERT_EQUAL(sal_Int32(convertTwipToMm100(-67)), getProperty(getShape(1), "VertOrientPosition")); } +DECLARE_RTFEXPORT_TEST(testTdf113408, "tdf113408.rtf") +{ + // This was 0, left margin was not inherited from style properly. + CPPUNIT_ASSERT_EQUAL(static_cast(1270), getProperty(getParagraph(1), "ParaLeftMargin")); +} + DECLARE_RTFEXPORT_TEST(testAbi10039, "abi10039.odt") { // Make sure we don't just crash on export, and additionally the shape should not be inline (as it's at-page anchored originally). @@ -1003,6 +1009,22 @@ CPPUNIT_ASSERT_EQUAL(12.f, getProperty(getRun(getParagraphOfText(2, xText, "asdf12"), 1), "CharHeight")); } +DECLARE_RTFEXPORT_TEST(testTdf104079, "tdf104079.rtf") +{ + bool bFound = false; + int nIndex = 0; + while (!bFound) + { + uno::Reference xParagraph = getParagraph(++nIndex); + if (!xParagraph->getString().startsWith("toc3")) + continue; + + bFound = true; + // This was 0, 3rd paragraph of ToC lost its bottom paragraph margin. + CPPUNIT_ASSERT_EQUAL(static_cast(212), getProperty(xParagraph, "ParaBottomMargin")); + } +} + DECLARE_RTFEXPORT_TEST(testPageBackground, "page-background.rtf") { // The problem was that \background was ignored. @@ -1184,6 +1206,16 @@ CPPUNIT_FAIL("no BulletChar property"); } +DECLARE_RTFEXPORT_TEST(testTdf113550, "tdf113550.rtf") +{ + uno::Reference xTable(getParagraphOrTable(1), uno::UNO_QUERY); + uno::Reference xCell(xTable->getCellByName("A1"), uno::UNO_QUERY); + uno::Reference xParagraph = getParagraphOfText(1, xCell->getText()); + // This was 2501, 0 as direct formatting was ignored on the paragraph (and + // the style had this larger value). + CPPUNIT_ASSERT_EQUAL(static_cast(0), getProperty(xParagraph, "ParaLeftMargin")); +} + DECLARE_RTFEXPORT_TEST(testLeveljcCenter, "leveljc-center.rtf") { // Tests that \leveljc1 is mapped to Adjust=Center for a numbering rule. @@ -1293,6 +1325,12 @@ CPPUNIT_ASSERT_EQUAL(static_cast(-635), aRule["FirstLineIndent"].get()); } +DECLARE_RTFEXPORT_TEST(testTdf113202, "tdf113202.rtf") +{ + // This failed, contextual spacing in 4th paragraph was lost. + CPPUNIT_ASSERT(getProperty(getParagraph(4), "ParaContextMargin")); +} + CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ Binary files /tmp/tmpeqd4tK/oD0ffcKnq6/libreoffice-l10n-5.4.3~rc2/sw/qa/extras/uiwriter/data/tdf103978_backgroundTextShape.docx and /tmp/tmpeqd4tK/4ft5T1CAQZ/libreoffice-l10n-5.4.4~rc2/sw/qa/extras/uiwriter/data/tdf103978_backgroundTextShape.docx differ Binary files /tmp/tmpeqd4tK/oD0ffcKnq6/libreoffice-l10n-5.4.3~rc2/sw/qa/extras/uiwriter/data/tdf113790.docx and /tmp/tmpeqd4tK/4ft5T1CAQZ/libreoffice-l10n-5.4.4~rc2/sw/qa/extras/uiwriter/data/tdf113790.docx differ diff -Nru libreoffice-l10n-5.4.3~rc2/sw/qa/extras/uiwriter/uiwriter.cxx libreoffice-l10n-5.4.4~rc2/sw/qa/extras/uiwriter/uiwriter.cxx --- libreoffice-l10n-5.4.3~rc2/sw/qa/extras/uiwriter/uiwriter.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sw/qa/extras/uiwriter/uiwriter.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -211,6 +211,7 @@ void testTdf87922(); void testTdf77014(); void testTdf92648(); + void testTdf103978_backgroundTextShape(); void testTdf96515(); void testTdf96943(); void testTdf96536(); @@ -249,6 +250,7 @@ void testMsWordCompTrailingBlanks(); void testCreateDocxAnnotation(); void testTdf107976(); + void testTdf113790(); CPPUNIT_TEST_SUITE(SwUiWriterTest); CPPUNIT_TEST(testReplaceForward); @@ -347,6 +349,7 @@ CPPUNIT_TEST(testTdf87922); CPPUNIT_TEST(testTdf77014); CPPUNIT_TEST(testTdf92648); + CPPUNIT_TEST(testTdf103978_backgroundTextShape); CPPUNIT_TEST(testTdf96515); CPPUNIT_TEST(testTdf96943); CPPUNIT_TEST(testTdf96536); @@ -385,6 +388,7 @@ CPPUNIT_TEST(testMsWordCompTrailingBlanks); CPPUNIT_TEST(testCreateDocxAnnotation); CPPUNIT_TEST(testTdf107976); + CPPUNIT_TEST(testTdf113790); CPPUNIT_TEST_SUITE_END(); private: @@ -4003,6 +4007,25 @@ CPPUNIT_ASSERT_EQUAL(sal_Int32(5), nCount); } +void SwUiWriterTest::testTdf103978_backgroundTextShape() +{ + SwDoc* pDoc = createDoc("tdf103978_backgroundTextShape.docx"); + + // there is only one shape. It has an attached textbox + bool bShapeIsOpaque = getProperty(getShape(1), "Opaque"); + CPPUNIT_ASSERT_EQUAL_MESSAGE("Shape is in the foreground", false, bShapeIsOpaque ); + sal_Int32 nCount = 0; + for (const SwFrameFormat* pFormat : *pDoc->GetSpzFrameFormats()) + { + if (!SwTextBoxHelper::isTextBox(pFormat, RES_FLYFRMFMT)) + continue; + CPPUNIT_ASSERT_EQUAL_MESSAGE("Textbox syncs the shape's transparency", bShapeIsOpaque, pFormat->GetOpaque().GetValue() ); + ++nCount; + } + //ensure that we don't skip the for loop without an error + CPPUNIT_ASSERT_EQUAL_MESSAGE("Number of TextBoxes", sal_Int32(1), nCount); +} + void SwUiWriterTest::testTdf96515() { // Enable hide whitespace mode. @@ -4941,6 +4964,29 @@ CPPUNIT_ASSERT(!pTransferable2->GetShell()); } +void SwUiWriterTest::testTdf113790() +{ + SwDoc* pDoc = createDoc("tdf113790.docx"); + SwWrtShell* pWrtShell = pDoc->GetDocShell()->GetWrtShell(); + // Create the clipboard document. + SwDoc aClipboard; + aClipboard.SetClipBoard(true); + + // Go to fourth line - to "ABCD" bulleted list item + pWrtShell->Down(/*bSelect=*/false, 4); + pWrtShell->SelPara(nullptr); + CPPUNIT_ASSERT_EQUAL(OUString("ABCD"), pWrtShell->GetSelText()); + pWrtShell->Copy(&aClipboard); + + // Go down to next-to-last (empty) line above "Title3" + pWrtShell->Down(/*bSelect=*/false, 4); + pWrtShell->Paste(&aClipboard); + + // Save it as DOCX & load it again + reload("Office Open XML Text", "tdf113790.docx"); + CPPUNIT_ASSERT(dynamic_cast(mxComponent.get())); +} + CPPUNIT_TEST_SUITE_REGISTRATION(SwUiWriterTest); CPPUNIT_PLUGIN_IMPLEMENT(); diff -Nru libreoffice-l10n-5.4.3~rc2/sw/source/core/doc/docnew.cxx libreoffice-l10n-5.4.4~rc2/sw/source/core/doc/docnew.cxx --- libreoffice-l10n-5.4.3~rc2/sw/source/core/doc/docnew.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sw/source/core/doc/docnew.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -283,6 +283,9 @@ // it is possible to set this attribute here. It will be not reset when importing. mpDfltTextFormatColl->SetFormatAttr(XFillStyleItem(drawing::FillStyle_NONE)); mpDfltFrameFormat->SetFormatAttr(XFillStyleItem(drawing::FillStyle_NONE)); + // prevent paragraph default margins being applied to everything + mpDfltFrameFormat->SetFormatAttr(SvxULSpaceItem(RES_UL_SPACE)); + mpDfltFrameFormat->SetFormatAttr(SvxLRSpaceItem(RES_LR_SPACE)); /* * DefaultFormats and DefaultFormatCollections (FormatColl) diff -Nru libreoffice-l10n-5.4.3~rc2/sw/source/core/doc/docredln.cxx libreoffice-l10n-5.4.4~rc2/sw/source/core/doc/docredln.cxx --- libreoffice-l10n-5.4.3~rc2/sw/source/core/doc/docredln.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sw/source/core/doc/docredln.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -1039,17 +1039,17 @@ delete pRedlineData; } -void SwRangeRedline::MaybeNotifyModification() +void MaybeNotifyRedlineModification(SwRangeRedline* pRedline, SwDoc* pDoc) { if (!comphelper::LibreOfficeKit::isActive()) return; - const SwRedlineTable& rRedTable = GetDoc()->getIDocumentRedlineAccess().GetRedlineTable(); + const SwRedlineTable& rRedTable = pDoc->getIDocumentRedlineAccess().GetRedlineTable(); for (SwRedlineTable::size_type i = 0; i < rRedTable.size(); ++i) { - if (rRedTable[i] == this) + if (rRedTable[i] == pRedline) { - SwRedlineTable::LOKRedlineNotification(RedlineNotification::Modify, this); + SwRedlineTable::LOKRedlineNotification(RedlineNotification::Modify, pRedline); break; } } @@ -1060,7 +1060,7 @@ if( !pSttPtr ) pSttPtr = Start(); *pSttPtr = rPos; - MaybeNotifyModification(); + MaybeNotifyRedlineModification(this, GetDoc()); } void SwRangeRedline::SetEnd( const SwPosition& rPos, SwPosition* pEndPtr ) @@ -1068,7 +1068,7 @@ if( !pEndPtr ) pEndPtr = End(); *pEndPtr = rPos; - MaybeNotifyModification(); + MaybeNotifyRedlineModification(this, GetDoc()); } /// Do we have a valid Selection? diff -Nru libreoffice-l10n-5.4.3~rc2/sw/source/core/doc/DocumentRedlineManager.cxx libreoffice-l10n-5.4.4~rc2/sw/source/core/doc/DocumentRedlineManager.cxx --- libreoffice-l10n-5.4.3~rc2/sw/source/core/doc/DocumentRedlineManager.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sw/source/core/doc/DocumentRedlineManager.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -1243,7 +1243,7 @@ delete pNewRedl; pNewRedl = nullptr; if (eCmpPos == SwComparePosition::Inside) - pRedl->MaybeNotifyModification(); + MaybeNotifyRedlineModification(pRedl, &m_rDoc); break; case SwComparePosition::Outside: diff -Nru libreoffice-l10n-5.4.3~rc2/sw/source/core/doc/textboxhelper.cxx libreoffice-l10n-5.4.4~rc2/sw/source/core/doc/textboxhelper.cxx --- libreoffice-l10n-5.4.3~rc2/sw/source/core/doc/textboxhelper.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sw/source/core/doc/textboxhelper.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -514,6 +514,9 @@ break; } break; + case RES_OPAQUE: + aPropertyName = UNO_NAME_OPAQUE; + break; } if (!aPropertyName.isEmpty()) diff -Nru libreoffice-l10n-5.4.3~rc2/sw/source/core/layout/fly.cxx libreoffice-l10n-5.4.4~rc2/sw/source/core/layout/fly.cxx --- libreoffice-l10n-5.4.3~rc2/sw/source/core/layout/fly.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sw/source/core/layout/fly.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -1742,9 +1742,13 @@ { m_bFormatHeightOnly = true; } - static_cast(this)->SetNoMoveOnCheckClip( true ); - static_cast(this)->SwFlyFreeFrame::MakeAll(getRootFrame()->GetCurrShell()->GetOut()); - static_cast(this)->SetNoMoveOnCheckClip( false ); + SwViewShell* pSh = getRootFrame()->GetCurrShell(); + if (pSh) + { + static_cast(this)->SetNoMoveOnCheckClip( true ); + static_cast(this)->SwFlyFreeFrame::MakeAll(pSh->GetOut()); + static_cast(this)->SetNoMoveOnCheckClip( false ); + } // #i55416# if ( rFrameSz.GetWidthSizeType() != ATT_FIX_SIZE ) { diff -Nru libreoffice-l10n-5.4.3~rc2/sw/source/core/table/swnewtable.cxx libreoffice-l10n-5.4.4~rc2/sw/source/core/table/swnewtable.cxx --- libreoffice-l10n-5.4.3~rc2/sw/source/core/table/swnewtable.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sw/source/core/table/swnewtable.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -60,11 +60,11 @@ class SwBoxSelection { public: - std::vector aBoxes; + std::vector maBoxes; long mnMergeWidth; SwBoxSelection() : mnMergeWidth(0) {} - bool isEmpty() const { return aBoxes.empty(); } - void insertBoxes( const SwSelBoxes* pNew ){ aBoxes.insert( aBoxes.end(), pNew ); } + bool isEmpty() const { return maBoxes.empty(); } + void push_back(const SwSelBoxes& rNew) { maBoxes.push_back(rNew); } }; /** NewMerge(..) removes the superfluous cells after cell merge @@ -381,7 +381,7 @@ { SwTableLine* pLine = m_aLines[nRow]; OSL_ENSURE( pLine, "Missing table line" ); - SwSelBoxes *pBoxes = new SwSelBoxes; + SwSelBoxes aBoxes; long nRight = 0; const size_t nCount = pLine->GetTabBoxes().size(); for( size_t nCurrBox = 0; nCurrBox < nCount; ++nCurrBox ) @@ -408,7 +408,7 @@ { if( nCurrBox ) { - pBoxes->insert( pBox ); + aBoxes.insert(pBox); pInnerBox = pBox; pLeftBox = pLine->GetTabBoxes()[nCurrBox-1]; nDiff = nMin - nLeft; @@ -439,7 +439,7 @@ } else if( nRight <= nMax ) { - pBoxes->insert( pBox ); + aBoxes.insert(pBox); if( nRow == nTop && nRowSpan < 0 ) { bOkay = false; @@ -458,7 +458,7 @@ { if( nCurrBox+1 < nCount ) { - pBoxes->insert( pBox ); + aBoxes.insert(pBox); pInnerBox = pBox; pRightBox = pLine->GetTabBoxes()[nCurrBox+1]; nDiff = nRight - nMax; @@ -558,7 +558,7 @@ --nLeftSpanCnt; if( nRightSpanCnt ) --nRightSpanCnt; - pRet->insertBoxes( pBoxes ); + pRet->push_back(aBoxes); } pRet->mnMergeWidth = nMax - nMin; if( nCheckBottom > nBottom ) @@ -825,7 +825,7 @@ // i.e. contiguous cells in contiguous rows bool bMerge = false; // will be set if any content is transferred from // a "not already overlapped" cell into the new master cell. - SwTableBox *pMergeBox = (*pSel->aBoxes[0])[0]; // the master cell box + SwTableBox *pMergeBox = pSel->maBoxes[0][0]; // the master cell box if( !pMergeBox ) return false; (*ppMergeBox) = pMergeBox; @@ -840,7 +840,7 @@ SwPosition aInsPos( *pMergeBox->GetSttNd()->EndOfSectionNode() ); SwPaM aChkPam( aInsPos ); // The number of lines in the selection rectangle: nLineCount - const size_t nLineCount = pSel->aBoxes.size(); + const size_t nLineCount = pSel->maBoxes.size(); // BTW: nLineCount is the rowspan of the new master cell long nRowSpan = static_cast(nLineCount); // We will need the first and last line of the selection @@ -851,12 +851,12 @@ for( size_t nCurrLine = 0; nCurrLine < nLineCount; ++nCurrLine ) { // The selected boxes in the current line - const SwSelBoxes* pBoxes = pSel->aBoxes[ nCurrLine ]; - size_t nColCount = pBoxes->size(); + const SwSelBoxes& rLineBoxes = pSel->maBoxes[nCurrLine]; + size_t nColCount = rLineBoxes.size(); // Iteration over the selected cell in the current row for (size_t nCurrCol = 0; nCurrCol < nColCount; ++nCurrCol) { - SwTableBox* pBox = (*pBoxes)[nCurrCol]; + SwTableBox* pBox = rLineBoxes[nCurrCol]; rMerged.insert( pBox ); // Only the first selected cell in every row will be alive, // the other will be deleted => put into rBoxes @@ -928,11 +928,11 @@ pNewFormat->SetFormatAttr( SwFormatFrameSize( ATT_VAR_SIZE, pSel->mnMergeWidth, 0 ) ); for( size_t nCurrLine = 0; nCurrLine < nLineCount; ++nCurrLine ) { - const SwSelBoxes* pBoxes = pSel->aBoxes[ nCurrLine ]; - size_t nColCount = pBoxes->size(); + const SwSelBoxes& rLineBoxes = pSel->maBoxes[nCurrLine]; + size_t nColCount = rLineBoxes.size(); for (size_t nCurrCol = 0; nCurrCol < nColCount; ++nCurrCol) { - SwTableBox* pBox = (*pBoxes)[nCurrCol]; + SwTableBox* pBox = rLineBoxes[nCurrCol]; if( nCurrCol ) { // Even this box will be deleted soon, diff -Nru libreoffice-l10n-5.4.3~rc2/sw/source/core/text/itradj.cxx libreoffice-l10n-5.4.4~rc2/sw/source/core/text/itradj.cxx --- libreoffice-l10n-5.4.3~rc2/sw/source/core/text/itradj.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sw/source/core/text/itradj.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -112,6 +112,9 @@ static bool lcl_CheckKashidaPositions( SwScriptInfo& rSI, SwTextSizeInfo& rInf, SwTextIter& rItr, sal_Int32& rKashidas, sal_Int32& nGluePortion ) { + if ( rInf.GetOut()->GetMinKashida() <= 0 ) + return false; + // i60594 validate Kashida justification sal_Int32 nIdx = rItr.GetStart(); sal_Int32 nEnd = rItr.GetEnd(); @@ -148,12 +151,6 @@ sal_Int32 nKashidasInAttr = rSI.KashidaJustify ( nullptr, nullptr, nIdx, nNext - nIdx ); if (nKashidasInAttr > 0) { - // Kashida glyph looks suspicious, skip Kashida justification - if ( rInf.GetOut()->GetMinKashida() <= 0 ) - { - return false; - } - sal_Int32 nKashidasDropped = 0; if ( !SwScriptInfo::IsArabicText( rInf.GetText(), nIdx, nNext - nIdx ) ) { @@ -211,7 +208,7 @@ sal_Int32 nKashidasInAttr = rSI.KashidaJustify ( nullptr, nullptr, nIdx, nNext - nIdx ); long nFontMinKashida = rInf.GetOut()->GetMinKashida(); - if ( nFontMinKashida && nKashidasInAttr > 0 && SwScriptInfo::IsArabicText( rInf.GetText(), nIdx, nNext - nIdx ) ) + if ( nKashidasInAttr > 0 && SwScriptInfo::IsArabicText( rInf.GetText(), nIdx, nNext - nIdx ) ) { sal_Int32 nKashidasDropped = 0; while ( rKashidas && nGluePortion && nKashidasInAttr > 0 && diff -Nru libreoffice-l10n-5.4.3~rc2/sw/source/core/text/portxt.cxx libreoffice-l10n-5.4.4~rc2/sw/source/core/text/portxt.cxx --- libreoffice-l10n-5.4.3~rc2/sw/source/core/text/portxt.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sw/source/core/text/portxt.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -112,7 +112,8 @@ // Kashida Justification: Insert Kashidas if ( nEnd > nPos && pSI && COMPLEX == nScript ) { - if ( SwScriptInfo::IsArabicText( *pStr, nPos, nEnd - nPos ) && pSI->CountKashida() ) + if ( SwScriptInfo::IsArabicText( *pStr, nPos, nEnd - nPos ) && rInf.GetOut()->GetMinKashida() + && pSI->CountKashida() ) { const sal_Int32 nKashRes = pSI->KashidaJustify( nullptr, nullptr, nPos, nEnd - nPos ); // i60591: need to check result of KashidaJustify diff -Nru libreoffice-l10n-5.4.3~rc2/sw/source/core/tox/ToxTextGenerator.cxx libreoffice-l10n-5.4.4~rc2/sw/source/core/tox/ToxTextGenerator.cxx --- libreoffice-l10n-5.4.3~rc2/sw/source/core/tox/ToxTextGenerator.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sw/source/core/tox/ToxTextGenerator.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -300,6 +300,9 @@ ToxWhitespaceStripper stripper(source.GetText().sText); result.text = stripper.GetStrippedString(); + if( source.aTOXSources.empty() ) + return result; + const SwTextNode* pSrc = source.aTOXSources.at(0).pNd->GetTextNode(); if (!pSrc->HasHints()) { return result; diff -Nru libreoffice-l10n-5.4.3~rc2/sw/source/core/txtnode/fntcache.cxx libreoffice-l10n-5.4.4~rc2/sw/source/core/txtnode/fntcache.cxx --- libreoffice-l10n-5.4.3~rc2/sw/source/core/txtnode/fntcache.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sw/source/core/txtnode/fntcache.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -1254,7 +1254,8 @@ // Kashida Justification if ( SwFontScript::CTL == nActual && nSpaceAdd ) { - if ( SwScriptInfo::IsArabicText( rInf.GetText(), rInf.GetIdx(), rInf.GetLen() ) ) + if ( SwScriptInfo::IsArabicText( rInf.GetText(), rInf.GetIdx(), rInf.GetLen() ) + && rInf.GetOut().GetMinKashida() ) { if ( pSI && pSI->CountKashida() && pSI->KashidaJustify( pKernArray.get(), nullptr, rInf.GetIdx(), @@ -1458,7 +1459,8 @@ // Kashida Justification if ( SwFontScript::CTL == nActual && nSpaceAdd ) { - if ( SwScriptInfo::IsArabicText( rInf.GetText(), rInf.GetIdx(), rInf.GetLen() ) ) + if ( SwScriptInfo::IsArabicText( rInf.GetText(), rInf.GetIdx(), rInf.GetLen() ) + && rInf.GetOut().GetMinKashida() ) { if ( pSI && pSI->CountKashida() && pSI->KashidaJustify( pKernArray.get(), pScrArray.get(), rInf.GetIdx(), @@ -2051,7 +2053,8 @@ // Kashida Justification if ( SwFontScript::CTL == nActual && rInf.GetSpace() ) { - if ( SwScriptInfo::IsArabicText( rInf.GetText(), rInf.GetIdx(), rInf.GetLen() ) ) + if ( SwScriptInfo::IsArabicText( rInf.GetText(), rInf.GetIdx(), rInf.GetLen() ) + && rInf.GetOut().GetMinKashida() ) { if ( pSI && pSI->CountKashida() && pSI->KashidaJustify( pKernArray.get(), nullptr, rInf.GetIdx(), rInf.GetLen(), diff -Nru libreoffice-l10n-5.4.3~rc2/sw/source/core/undo/untblk.cxx libreoffice-l10n-5.4.4~rc2/sw/source/core/undo/untblk.cxx --- libreoffice-l10n-5.4.3~rc2/sw/source/core/undo/untblk.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sw/source/core/undo/untblk.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -285,9 +285,17 @@ pTextNd->ChgFormatColl( pLastNdColl ); } - for (size_t n = m_FlyUndos.size(); 0 < n; --n) + // tdf#108124 (10/25/2017) + // During UNDO we call SwUndoInsLayFormat::UndoImpl in reverse order, + // firstly for m_FlyUndos[ m_FlyUndos.size()-1 ], etc. + // As absolute node index of fly stored in SwUndoFlyBase::nNdPgPos we + // should recover from Undo in direct order (last should be recovered first) + // During REDO we should recover Flys (Images) in direct order, + // firstly m_FlyUndos[0], then with m_FlyUndos[1] index, etc. + + for (size_t n = 0; m_FlyUndos.size() > n; ++n) { - m_FlyUndos[ n-1 ]->RedoImpl(rContext); + m_FlyUndos[n]->RedoImpl(rContext); } pHistory->Rollback( pDoc, nSetPos ); diff -Nru libreoffice-l10n-5.4.3~rc2/sw/source/core/unocore/unodraw.cxx libreoffice-l10n-5.4.4~rc2/sw/source/core/unocore/unodraw.cxx --- libreoffice-l10n-5.4.3~rc2/sw/source/core/unocore/unodraw.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sw/source/core/unocore/unodraw.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -72,6 +72,7 @@ class SwShapeDescriptor_Impl { + bool m_isInXMLImport; SwFormatHoriOrient* pHOrient; SwFormatVertOrient* pVOrient; SwFormatAnchor* pAnchor; @@ -94,7 +95,8 @@ bool bInitializedPropertyNotifier; public: - SwShapeDescriptor_Impl() : + SwShapeDescriptor_Impl(SwDoc *const pDoc) : + m_isInXMLImport(pDoc && pDoc->IsInXMLImport()), // #i32349# - no defaults, in order to determine on // adding a shape, if positioning attributes are set or not. pHOrient( nullptr ), @@ -148,8 +150,15 @@ { if(bCreate && !pVOrient) { - // #i26791# - pVOrient = new SwFormatVertOrient( 0, text::VertOrientation::NONE, text::RelOrientation::FRAME ); + if (m_isInXMLImport && + (!GetAnchor(true) || pAnchor->GetAnchorId() == RndStdIds::FLY_AS_CHAR)) + { // for as-char, NONE ("from-top") is not a good default + pVOrient = new SwFormatVertOrient(0, text::VertOrientation::TOP, text::RelOrientation::FRAME); + } + else + { // #i26791# + pVOrient = new SwFormatVertOrient(0, text::VertOrientation::NONE, text::RelOrientation::FRAME); + } } return pVOrient; } @@ -287,9 +296,25 @@ if( pObj ) { SwFrameFormat* pFormat = ::FindFrameFormat( pObj ); - SwXShape* pxShape = SwIterator( *pFormat ).First(); - if(pxShape) - { + + SwIterator aIter(*pFormat); + SwXShape* pxShape = aIter.First(); + if (pxShape) + { + //tdf#113615 when mapping from SdrObject to XShape via + //SwFrameFormat check all the SdrObjects belonging to this + //SwFrameFormat to find the right one. In the case of Grouped + //objects there can be both the group and the elements of the group + //registered here so the first one isn't necessarily the right one + while (SwXShape* pNext = aIter.Next()) + { + SvxShape* pSvxShape = pNext->GetSvxShape(); + if (pSvxShape && pSvxShape->GetSdrObject() == pObj) + { + pxShape = pNext; + break; + } + } xShape = *static_cast(pxShape); } else @@ -878,10 +903,10 @@ } } -SwXShape::SwXShape(uno::Reference< uno::XInterface > & xShape) : +SwXShape::SwXShape(uno::Reference< uno::XInterface > & xShape, SwDoc *const pDoc) : m_pPropSet(aSwMapProvider.GetPropertySet(PROPERTY_MAP_TEXT_SHAPE)), m_pPropertyMapEntries(aSwMapProvider.GetPropertyMapEntries(PROPERTY_MAP_TEXT_SHAPE)), - pImpl(new SwShapeDescriptor_Impl()), + pImpl(new SwShapeDescriptor_Impl(pDoc)), m_bDescriptor(true) { if(xShape.is()) // default Ctor @@ -2698,8 +2723,8 @@ return aConvertedPath; } -SwXGroupShape::SwXGroupShape(uno::Reference< XInterface > & xShape) : - SwXShape(xShape) +SwXGroupShape::SwXGroupShape(uno::Reference< XInterface > & xShape, SwDoc *const pDoc) : + SwXShape(xShape, pDoc) { #if OSL_DEBUG_LEVEL > 0 uno::Reference xShapes(xShapeAgg, uno::UNO_QUERY); diff -Nru libreoffice-l10n-5.4.3~rc2/sw/source/filter/ww8/wrtw8nds.cxx libreoffice-l10n-5.4.4~rc2/sw/source/filter/ww8/wrtw8nds.cxx --- libreoffice-l10n-5.4.3~rc2/sw/source/filter/ww8/wrtw8nds.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sw/source/filter/ww8/wrtw8nds.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -41,6 +41,7 @@ #include #include #include +#include #include #include #include @@ -465,6 +466,25 @@ if ( pCharFormatItem ) ClearOverridesFromSet( *pCharFormatItem, aExportSet ); + // tdf#113790: AutoFormat style overwrites char style, so remove all + // elements from CHARFMT grab bag which are set in AUTOFMT grab bag + if (const SfxGrabBagItem *pAutoFmtGrabBag = dynamic_cast(pGrabBag)) + { + if (const SfxGrabBagItem *pCharFmtGrabBag = aExportSet.GetItem(RES_CHRATR_GRABBAG, false)) + { + std::unique_ptr pNewItem(pCharFmtGrabBag->Clone()); + SfxGrabBagItem* pNewCharFmtGrabBag = dynamic_cast(pNewItem.get()); + assert(pNewCharFmtGrabBag); + auto & rNewFmtMap = pNewCharFmtGrabBag->GetGrabBag(); + for (auto const & item : pAutoFmtGrabBag->GetGrabBag()) + { + if (item.second.hasValue()) + rNewFmtMap.erase(item.first); + } + aExportSet.Put(*pNewCharFmtGrabBag); + } + } + ww8::PoolItems aExportItems; GetPoolItems( aExportSet, aExportItems, false ); diff -Nru libreoffice-l10n-5.4.3~rc2/sw/source/filter/ww8/ww8atr.cxx libreoffice-l10n-5.4.4~rc2/sw/source/filter/ww8/ww8atr.cxx --- libreoffice-l10n-5.4.3~rc2/sw/source/filter/ww8/ww8atr.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sw/source/filter/ww8/ww8atr.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -2280,6 +2280,7 @@ } } GetExport( ).m_bInWriteTOX = false; + GetExport( ).m_bHideTabLeaderAndPageNumbers = false; if (bCareEnd) OnTOXEnding(); } diff -Nru libreoffice-l10n-5.4.3~rc2/sw/source/filter/ww8/ww8par2.cxx libreoffice-l10n-5.4.4~rc2/sw/source/filter/ww8/ww8par2.cxx --- libreoffice-l10n-5.4.3~rc2/sw/source/filter/ww8/ww8par2.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sw/source/filter/ww8/ww8par2.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -1226,27 +1226,35 @@ } // ReadDef reads the cell position and the borders of a band -void WW8TabBandDesc::ReadDef(bool bVer67, const sal_uInt8* pS) +void WW8TabBandDesc::ReadDef(bool bVer67, const sal_uInt8* pS, short nLen) { if (!bVer67) + { + //the ww8 version of this is unusual in masquerading as a a srpm with a + //single byte len arg while it really has a word len arg, after this + //increment nLen is correct to describe the remaining amount of data pS++; + } - short nLen = (sal_Int16)SVBT16ToShort( pS - 2 ); // not beautiful - + --nLen; //reduce len by expected nCols arg + if (nLen < 0) + return; sal_uInt8 nCols = *pS; // number of cells - short nOldCols = nWwCols; - if( nCols > MAX_COL ) + if (nCols > MAX_COL) return; + nLen -= 2 * (nCols + 1); //reduce len by claimed amount of next x-borders arguments + if (nLen < 0) + return; + + short nOldCols = nWwCols; nWwCols = nCols; const sal_uInt8* pT = &pS[1]; - nLen --; - int i; - for(i=0; i<=nCols; i++, pT+=2 ) + for (int i = 0; i <= nCols; i++, pT+=2) nCenter[i] = (sal_Int16)SVBT16ToShort( pT ); // X-borders - nLen -= 2 * ( nCols + 1 ); + if( nCols != nOldCols ) // different column count { delete[] pTCs; @@ -1266,11 +1274,9 @@ setcelldefaults(pTCs,nCols); } - short nColsToRead = nFileCols; - if (nColsToRead > nCols) - nColsToRead = nCols; + short nColsToRead = std::min(nFileCols, nCols); - if( nColsToRead ) + if (nColsToRead > 0) { // read TCs @@ -1286,7 +1292,7 @@ if( bVer67 ) { WW8_TCellVer6 const * pTc = reinterpret_cast(pT); - for(i=0; iGetFib().GetFIBVersion()); switch (eSprm) { @@ -1966,7 +1975,7 @@ m_bClaimLineFormat = true; break; case sprmTDefTable: - pNewBand->ReadDef(bOldVer, pParams); + pNewBand->ReadDef(bOldVer, pParams, nLen); bTabRowJustRead = true; break; case sprmTDefTableShd: diff -Nru libreoffice-l10n-5.4.3~rc2/sw/source/filter/ww8/ww8par6.cxx libreoffice-l10n-5.4.4~rc2/sw/source/filter/ww8/ww8par6.cxx --- libreoffice-l10n-5.4.3~rc2/sw/source/filter/ww8/ww8par6.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sw/source/filter/ww8/ww8par6.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -1269,24 +1269,25 @@ { if( !bVer67 ) { - SprmResult aSprm[4]; - + SprmResult a8Sprm[4]; if (pSep->Find4Sprms( NS_sprm::sprmSBrcTop80, NS_sprm::sprmSBrcLeft80, NS_sprm::sprmSBrcBottom80, NS_sprm::sprmSBrcRight80, - aSprm[0], aSprm[1], aSprm[2], aSprm[3])) + a8Sprm[0], a8Sprm[1], a8Sprm[2], a8Sprm[3])) { for( int i = 0; i < 4; ++i ) - nBorder |= int(SetWW8_BRC(8, brc[i], aSprm[i].pSprm, aSprm[i].nRemainingData))<Find4Sprms( NS_sprm::sprmSBrcTop, NS_sprm::sprmSBrcLeft, NS_sprm::sprmSBrcBottom, NS_sprm::sprmSBrcRight, - aSprm[0], aSprm[1], aSprm[2], aSprm[3])) + a9Sprm[0], a9Sprm[1], a9Sprm[2], a9Sprm[3])) { for( int i = 0; i < 4; ++i ) - nBorder |= int(SetWW8_BRC(9, brc[i], aSprm[i].pSprm, aSprm[i].nRemainingData))<SetStyle(m_pSelectionLB->GetStyle() | WB_SORT); get(m_pFormat, "formatframe"); get(m_pChapterFrame, "chapterframe"); get(m_pNameFT, "nameft"); diff -Nru libreoffice-l10n-5.4.3~rc2/sw/source/uibase/shells/basesh.cxx libreoffice-l10n-5.4.4~rc2/sw/source/uibase/shells/basesh.cxx --- libreoffice-l10n-5.4.3~rc2/sw/source/uibase/shells/basesh.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sw/source/uibase/shells/basesh.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -1397,8 +1397,12 @@ break; case FN_EDIT_CURRENT_REGION: - if( !rSh.GetCurrSection() ) + //tdf#112808 if cursor is in an index, don't show the edit section. + if( !rSh.GetCurrSection() || + rSh.GetCurrSection()->GetType() != CONTENT_SECTION ) + { rSet.DisableItem(nWhich); + } break; case FN_INSERT_REGION: diff -Nru libreoffice-l10n-5.4.3~rc2/sw/source/uibase/shells/textfld.cxx libreoffice-l10n-5.4.4~rc2/sw/source/uibase/shells/textfld.cxx --- libreoffice-l10n-5.4.3~rc2/sw/source/uibase/shells/textfld.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sw/source/uibase/shells/textfld.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -540,7 +540,7 @@ { rSh.SetRedlineComment(sCommentText); GetView().AttrChangedNotify(GetShellPtr()); - const_cast(pRedline)->MaybeNotifyModification(); + MaybeNotifyRedlineModification(const_cast(pRedline), pRedline->GetDoc()); break; } diff -Nru libreoffice-l10n-5.4.3~rc2/sw/source/uibase/shells/txtnum.cxx libreoffice-l10n-5.4.4~rc2/sw/source/uibase/shells/txtnum.cxx --- libreoffice-l10n-5.4.3~rc2/sw/source/uibase/shells/txtnum.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sw/source/uibase/shells/txtnum.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -184,10 +184,12 @@ pDocSh->PutItem(SfxUInt16Item(SID_HTML_MODE, ::GetHtmlMode(pDocSh))); SwAbstractDialogFactory* pFact = SwAbstractDialogFactory::Create(); - OSL_ENSURE(pFact, "Dialog creation failed!"); - ScopedVclPtr pDlg(pFact->CreateSwTabDialog( DLG_SVXTEST_NUM_BULLET, - GetView().GetWindow(), &aSet, GetShell())); - OSL_ENSURE(pDlg, "Dialog creation failed!"); + assert(pFact && "Dialog creation failed!"); + vcl::Window *pParent = rReq.GetDialogParent(); + if (!pParent) + pParent = GetView().GetWindow(); + ScopedVclPtr pDlg(pFact->CreateSwTabDialog(DLG_SVXTEST_NUM_BULLET, pParent, &aSet, GetShell())); + assert(pDlg && "Dialog creation failed!"); const SfxStringItem* pPageItem = rReq.GetArg(FN_PARAM_1); if ( pPageItem ) pDlg->SetCurPageId( OUStringToOString( pPageItem->GetValue(), RTL_TEXTENCODING_UTF8 ) ); diff -Nru libreoffice-l10n-5.4.3~rc2/sw/source/uibase/uno/unotxdoc.cxx libreoffice-l10n-5.4.4~rc2/sw/source/uibase/uno/unotxdoc.cxx --- libreoffice-l10n-5.4.3~rc2/sw/source/uibase/uno/unotxdoc.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sw/source/uibase/uno/unotxdoc.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -1682,11 +1682,11 @@ if (rServiceName == "com.sun.star.drawing.GroupShape" || rServiceName == "com.sun.star.drawing.Shape3DSceneObject") { - return *new SwXGroupShape(xTmp); + return *new SwXGroupShape(xTmp, pDocShell->GetDoc()); } if (rServiceName.startsWith("com.sun.star.drawing.")) { - return *new SwXShape(xTmp); + return *new SwXShape(xTmp, pDocShell->GetDoc()); } return xTmp; } diff -Nru libreoffice-l10n-5.4.3~rc2/sw/source/uibase/utlui/content.cxx libreoffice-l10n-5.4.4~rc2/sw/source/uibase/utlui/content.cxx --- libreoffice-l10n-5.4.3~rc2/sw/source/uibase/utlui/content.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/sw/source/uibase/utlui/content.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -2280,6 +2280,8 @@ { SfxListener::Notify(rBC, rHint); } + if (SfxHintId::DocChanged == rHint.GetId()) + m_bViewHasChanged = true; } @@ -3465,6 +3467,14 @@ rView.StopShellTimer(); rView.GetPostItMgr()->SetActiveSidebarWin(nullptr); rView.GetEditWin().GrabFocus(); + + // force scroll to cursor position when navigating to inactive document + if(!bSel) + { + Point rPoint = m_pActiveShell->GetCursorDocPos(); + rPoint.setX(0); + rView.SetVisArea(rPoint); + } } // Now even the matching text::Bookmark diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/accessibility/source/helper.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/accessibility/source/helper.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/accessibility/source/helper.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/accessibility/source/helper.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-07-17 16:22+0000\n" +"PO-Revision-Date: 2017-11-10 07:58+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500308532.000000\n" +"X-POOTLE-MTIME: 1510300739.000000\n" #: accessiblestrings.src msgctxt "" @@ -29,7 +29,7 @@ "STR_SVT_ACC_ACTION_EXPAND\n" "string.text" msgid "Expand" -msgstr "" +msgstr "Иаарттәуп" #: accessiblestrings.src msgctxt "" @@ -37,7 +37,7 @@ "STR_SVT_ACC_ACTION_COLLAPSE\n" "string.text" msgid "Collapse" -msgstr "" +msgstr "Иеикәрҳәтәуп" #: accessiblestrings.src msgctxt "" @@ -45,7 +45,7 @@ "STR_SVT_ACC_LISTENTRY_SELCTED_STATE\n" "string.text" msgid "(Selected)" -msgstr "" +msgstr "(Иалхуп)" #: accessiblestrings.src msgctxt "" @@ -93,7 +93,7 @@ "RID_STR_ACC_COLUMN_NUM\n" "string.text" msgid "Column %COLUMNNUMBER" -msgstr "" +msgstr "Аиҵагыла %COLUMNNUMBER" #: accessiblestrings.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/avmedia/source/framework.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/avmedia/source/framework.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/avmedia/source/framework.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/avmedia/source/framework.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-07-21 16:10+0000\n" +"PO-Revision-Date: 2017-11-10 08:11+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500653429.000000\n" +"X-POOTLE-MTIME: 1510301471.000000\n" #: mediacontrol.src msgctxt "" @@ -29,7 +29,7 @@ "AVMEDIA_STR_INSERT\n" "string.text" msgid "Apply" -msgstr "" +msgstr "Ихархәатәуп" #: mediacontrol.src msgctxt "" @@ -37,7 +37,7 @@ "AVMEDIA_STR_PLAY\n" "string.text" msgid "Play" -msgstr "" +msgstr "Идәықәҵатәуп" #: mediacontrol.src msgctxt "" @@ -45,7 +45,7 @@ "AVMEDIA_STR_PAUSE\n" "string.text" msgid "Pause" -msgstr "" +msgstr "Ааҭгылара" #: mediacontrol.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/basctl/source/basicide.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/basctl/source/basicide.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/basctl/source/basicide.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/basctl/source/basicide.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n" -"PO-Revision-Date: 2017-07-19 16:22+0000\n" +"PO-Revision-Date: 2017-11-29 08:27+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500481355.000000\n" +"X-POOTLE-MTIME: 1511944063.000000\n" #: basicprint.src msgctxt "" @@ -21,7 +21,7 @@ "RID_STR_PRINTDLG_RANGE\n" "string.text" msgid "Print range" -msgstr "" +msgstr "Акьыҧхьра адиапазон" #: basicprint.src msgctxt "" @@ -85,7 +85,7 @@ "RID_STR_LIBNAMETOLONG\n" "string.text" msgid "A library name can have up to 30 characters." -msgstr "" +msgstr "Абиблиотека ахьӡ 30 символ иреиҳамзароуп." #: basidesh.src msgctxt "" @@ -109,7 +109,7 @@ "RID_STR_REPLACELIB\n" "string.text" msgid "'XX' cannot be replaced." -msgstr "" +msgstr "«XX» аҧсахра ауам." #: basidesh.src msgctxt "" @@ -117,7 +117,7 @@ "RID_STR_IMPORTNOTPOSSIBLE\n" "string.text" msgid "'XX' cannot be added." -msgstr "" +msgstr "«XX» аимпорт ауам." #: basidesh.src msgctxt "" @@ -133,7 +133,7 @@ "RID_STR_ENTERPASSWORD\n" "string.text" msgid "Enter password for 'XX'" -msgstr "" +msgstr "Иҭажәгал ажәамаӡа «XX» азы" #: basidesh.src msgctxt "" @@ -149,7 +149,7 @@ "RID_STR_SIGNED\n" "string.text" msgid "(Signed)" -msgstr "" +msgstr "(Анапаҵаҩуп)" #: basidesh.src msgctxt "" @@ -176,7 +176,7 @@ "RID_STR_SEARCHNOTFOUND\n" "string.text" msgid "Search key not found" -msgstr "" +msgstr "Аҧшааратә цәаҳәа ҧшаам" #: basidesh.src msgctxt "" @@ -200,7 +200,7 @@ "RID_STR_COULDNTREAD\n" "string.text" msgid "The file could not be read" -msgstr "" +msgstr "Афаил аҧхьара ауам" #: basidesh.src msgctxt "" @@ -208,7 +208,7 @@ "RID_STR_COULDNTWRITE\n" "string.text" msgid "The file could not be saved" -msgstr "Афаил аиқәырхара залшахом." +msgstr "Афаил аиқәырхара ауам" #: basidesh.src msgctxt "" @@ -224,7 +224,7 @@ "RID_STR_GENERATESOURCE\n" "string.text" msgid "Generating source" -msgstr "" +msgstr "Ахалагаратә теқст аҧҵара" #: basidesh.src msgctxt "" @@ -368,7 +368,7 @@ "RID_STR_WATCHTYPE\n" "string.text" msgid "Type" -msgstr "Ахкы" +msgstr "Атип" #: basidesh.src msgctxt "" @@ -530,7 +530,7 @@ "RID_STR_TRANSLATION_NOTLOCALIZED\n" "string.text" msgid "" -msgstr "" +msgstr "<алокализациа азум>" #: basidesh.src msgctxt "" @@ -538,7 +538,7 @@ "RID_STR_TRANSLATION_DEFAULT\n" "string.text" msgid "[Default Language]" -msgstr "" +msgstr "[Абызшәа ишыҟоу]" #: basidesh.src msgctxt "" @@ -594,7 +594,7 @@ "RID_STR_DLGIMP_CLASH_TITLE\n" "string.text" msgid "Dialog Import - Name already used" -msgstr "" +msgstr "Адиалог аимпорт - Ахьӡ ахархәара амоуп" #: basidesh.src msgctxt "" @@ -632,7 +632,7 @@ "RID_STR_DLGIMP_MISMATCH_TITLE\n" "string.text" msgid "Dialog Import - Language Mismatch" -msgstr "" +msgstr "Адиалог аимпорт - иақәнамго абызшәа" #: basidesh.src msgctxt "" @@ -702,7 +702,7 @@ "RID_STR_EXPORTBASIC\n" "string.text" msgid "Export as BASIC library" -msgstr "" +msgstr "Иекспорттәуп BASIC абиблиотека еиҧш" #: moduldlg.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/basctl/source/dlged.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/basctl/source/dlged.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/basctl/source/dlged.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/basctl/source/dlged.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2017-07-19 16:24+0000\n" +"PO-Revision-Date: 2017-11-18 17:07+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500481460.000000\n" +"X-POOTLE-MTIME: 1511024841.000000\n" #: dlgresid.src msgctxt "" @@ -45,7 +45,7 @@ "RID_STR_DEF_LANG\n" "string.text" msgid "[Default Language]" -msgstr "" +msgstr "[Абызшәа ишыҟоу]" #: dlgresid.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/basctl/uiconfig/basicide/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/basctl/uiconfig/basicide/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/basctl/uiconfig/basicide/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/basctl/uiconfig/basicide/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n" -"PO-Revision-Date: 2017-07-28 20:08+0000\n" +"PO-Revision-Date: 2017-11-27 07:28+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1501272513.000000\n" +"X-POOTLE-MTIME: 1511767680.000000\n" #: basicmacrodialog.ui msgctxt "" @@ -103,7 +103,7 @@ "label\n" "string.text" msgid "Save Macro In" -msgstr "Иеиқәырхатәуп амакрос абра" +msgstr "Еиқәырхатәуп амакрос абра" #: basicmacrodialog.ui msgctxt "" @@ -238,7 +238,7 @@ "label\n" "string.text" msgid "_New..." -msgstr "" +msgstr "Иаҧҵатәуп..." #: dialogpage.ui msgctxt "" @@ -247,7 +247,7 @@ "label\n" "string.text" msgid "_New..." -msgstr "" +msgstr "Иаҧҵатәуп..." #: dialogpage.ui msgctxt "" @@ -265,7 +265,7 @@ "label\n" "string.text" msgid "_Import..." -msgstr "" +msgstr "_Аимпорт..." #: dialogpage.ui msgctxt "" @@ -274,7 +274,7 @@ "label\n" "string.text" msgid "_Export..." -msgstr "" +msgstr "_Аекспорт..." #: exportdialog.ui msgctxt "" @@ -283,7 +283,7 @@ "title\n" "string.text" msgid "Export Basic library" -msgstr "" +msgstr "Иекспорттәуп BASIC абиблиотека" #: exportdialog.ui msgctxt "" @@ -301,7 +301,7 @@ "label\n" "string.text" msgid "Export as BASIC library" -msgstr "" +msgstr "Иекспорттәуп BASIC абиблиотека еиҧш" #: gotolinedialog.ui msgctxt "" @@ -328,7 +328,7 @@ "title\n" "string.text" msgid "Import Libraries" -msgstr "" +msgstr "Абиблиотекақәа римпорт" #: importlibdialog.ui msgctxt "" @@ -391,7 +391,7 @@ "label\n" "string.text" msgid "_New..." -msgstr "" +msgstr "Иаҧҵатәуп..." #: libpage.ui msgctxt "" @@ -400,7 +400,7 @@ "label\n" "string.text" msgid "_Import..." -msgstr "" +msgstr "_Аимпорт..." #: libpage.ui msgctxt "" @@ -409,7 +409,7 @@ "label\n" "string.text" msgid "_Export..." -msgstr "" +msgstr "_Аекспорт..." #: managebreakpoints.ui msgctxt "" @@ -508,7 +508,7 @@ "label\n" "string.text" msgid "_New..." -msgstr "" +msgstr "Иаҧҵатәуп..." #: modulepage.ui msgctxt "" @@ -517,7 +517,7 @@ "label\n" "string.text" msgid "_New..." -msgstr "" +msgstr "Иаҧҵатәуп..." #: modulepage.ui msgctxt "" @@ -535,7 +535,7 @@ "label\n" "string.text" msgid "_Import..." -msgstr "" +msgstr "_Аимпорт..." #: modulepage.ui msgctxt "" @@ -544,7 +544,7 @@ "label\n" "string.text" msgid "_Export..." -msgstr "" +msgstr "_Аекспорт..." #: newlibdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/basic/source/classes.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/basic/source/classes.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/basic/source/classes.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/basic/source/classes.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-07-19 16:12+0000\n" +"PO-Revision-Date: 2017-12-12 10:03+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500480743.000000\n" +"X-POOTLE-MTIME: 1513072995.000000\n" #: sb.src msgctxt "" @@ -85,7 +85,7 @@ "Index out of defined range.\n" "itemlist.text" msgid "Index out of defined range." -msgstr "" +msgstr "Аиндекс адиапазон анҭыҵ." #: sb.src msgctxt "" @@ -157,7 +157,7 @@ "Not enough stack memory.\n" "itemlist.text" msgid "Not enough stack memory." -msgstr "" +msgstr "Астек ашәагаа азхом." #: sb.src msgctxt "" @@ -166,7 +166,7 @@ "Sub-procedure or function procedure not defined.\n" "itemlist.text" msgid "Sub-procedure or function procedure not defined." -msgstr "" +msgstr "Ацхыраагӡатә программа ма афункциа аҧҵаӡам." #: sb.src msgctxt "" @@ -283,7 +283,7 @@ "Incorrect record number.\n" "itemlist.text" msgid "Incorrect record number." -msgstr "" +msgstr "Ииашам анҵамҭа аномер." #: sb.src msgctxt "" @@ -355,7 +355,7 @@ "Path not found.\n" "itemlist.text" msgid "Path not found." -msgstr "" +msgstr "Амҩа ҧшаам." #: sb.src msgctxt "" @@ -526,7 +526,7 @@ "Invalid DDE link format.\n" "itemlist.text" msgid "Invalid DDE link format." -msgstr "" +msgstr "DDE ала аимадара изымуа аформат." #: sb.src msgctxt "" @@ -535,7 +535,7 @@ "DDE message has been lost.\n" "itemlist.text" msgid "DDE message has been lost." -msgstr "" +msgstr "DDE ала ацҳамҭа ырӡуп." #: sb.src msgctxt "" @@ -562,7 +562,7 @@ "DDE requires the DDEML.DLL file.\n" "itemlist.text" msgid "DDE requires the DDEML.DLL file." -msgstr "" +msgstr "DDE азы иаҭахуп афаил DDEML.DLL." #: sb.src msgctxt "" @@ -571,7 +571,7 @@ "Module cannot be loaded; invalid format.\n" "itemlist.text" msgid "Module cannot be loaded; invalid format." -msgstr "" +msgstr "Амодуль аҭагалара ауам: ииашам аформат." #: sb.src msgctxt "" @@ -580,7 +580,7 @@ "Invalid object index.\n" "itemlist.text" msgid "Invalid object index." -msgstr "Изымуа аобиект аиндекс." +msgstr "Изымуа аобиеқт аиндекс." #: sb.src msgctxt "" @@ -589,7 +589,7 @@ "Object is not available.\n" "itemlist.text" msgid "Object is not available." -msgstr "" +msgstr "Аобиеқт ахь анаӡара ауам." #: sb.src msgctxt "" @@ -625,7 +625,7 @@ "Invalid object reference.\n" "itemlist.text" msgid "Invalid object reference." -msgstr "" +msgstr "Ииашам азхьарҧш аобиеқт ахь." #: sb.src msgctxt "" @@ -643,7 +643,7 @@ "Object required.\n" "itemlist.text" msgid "Object required." -msgstr "Иаҭахәп аобиект." +msgstr "Иаҭахәп аобиеқт." #: sb.src msgctxt "" @@ -652,7 +652,7 @@ "Invalid use of an object.\n" "itemlist.text" msgid "Invalid use of an object." -msgstr "Аобиект иашамкәа ахархәара." +msgstr "Аобиеқт иашамкәа ахархәара." #: sb.src msgctxt "" @@ -742,7 +742,7 @@ "Object is not a list.\n" "itemlist.text" msgid "Object is not a list." -msgstr "" +msgstr "Аобиеқт хьӡынҵаӡам." #: sb.src msgctxt "" @@ -760,7 +760,7 @@ "Specified DLL function not found.\n" "itemlist.text" msgid "Specified DLL function not found." -msgstr "" +msgstr "Иарбоу DLL афункциа ҧшаам. " #: sb.src msgctxt "" @@ -778,7 +778,7 @@ "Object does not have this property.\n" "itemlist.text" msgid "Object does not have this property." -msgstr "" +msgstr "Аобиеқт иамам ари аҷыдаҟазшьа." #: sb.src msgctxt "" @@ -787,7 +787,7 @@ "Object does not have this method.\n" "itemlist.text" msgid "Object does not have this method." -msgstr "" +msgstr "Аобиеқт иамам ари аметод." #: sb.src msgctxt "" @@ -814,7 +814,7 @@ "Unable to set property.\n" "itemlist.text" msgid "Unable to set property." -msgstr "" +msgstr "Аҷыдаҟазшьа ақәыргылара ауам." #: sb.src msgctxt "" @@ -949,7 +949,7 @@ "Unknown data type $(ARG1).\n" "itemlist.text" msgid "Unknown data type $(ARG1)." -msgstr "Идырым адырқәа рыхкы $(ARG1). " +msgstr "Идырым адырқәа рыхкы $(ARG1)." #: sb.src msgctxt "" @@ -967,7 +967,7 @@ "Statement block still open: $(ARG1) missing.\n" "itemlist.text" msgid "Statement block still open: $(ARG1) missing." -msgstr "" +msgstr "Аинструкциақәа рблок аркӡам; ибжьажьуп $(ARG1)." #: sb.src msgctxt "" @@ -1012,7 +1012,7 @@ "Array must be dimensioned.\n" "itemlist.text" msgid "Array must be dimensioned." -msgstr "" +msgstr "Иҭагалатәуп амассив ашәагаақәа." #: sb.src msgctxt "" @@ -1129,7 +1129,7 @@ "Can't perform requested operation.\n" "itemlist.text" msgid "Can't perform requested operation." -msgstr "" +msgstr "Аоперациа анагӡара ауам." #: sb.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/chart2/source/controller/dialogs.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/chart2/source/controller/dialogs.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/chart2/source/controller/dialogs.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/chart2/source/controller/dialogs.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-07-19 16:25+0000\n" +"PO-Revision-Date: 2017-11-15 07:01+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500481542.000000\n" +"X-POOTLE-MTIME: 1510729308.000000\n" #: Strings.src msgctxt "" @@ -21,7 +21,7 @@ "STR_DLG_CHART_WIZARD\n" "string.text" msgid "Chart Wizard" -msgstr "" +msgstr "Адиаграммақәа разҟаза" #: Strings.src msgctxt "" @@ -45,7 +45,7 @@ "STR_PAGE_CHARTTYPE\n" "string.text" msgid "Chart Type" -msgstr "Адиаграмма ахкы" +msgstr "Адиаграмма атип" #: Strings.src msgctxt "" @@ -61,7 +61,7 @@ "STR_PAGE_CHART_ELEMENTS\n" "string.text" msgid "Chart Elements" -msgstr "" +msgstr "Адиаграммақәа релементқәа" #: Strings.src msgctxt "" @@ -165,7 +165,7 @@ "STR_PAGE_TRENDLINE_TYPE\n" "string.text" msgid "Type" -msgstr "Ахкы" +msgstr "Атип" #: Strings.src msgctxt "" @@ -205,7 +205,7 @@ "STR_PAGE_APPEARANCE\n" "string.text" msgid "Appearance" -msgstr "" +msgstr "Аҿаҧшыра" #: Strings.src msgctxt "" @@ -213,7 +213,7 @@ "STR_PAGE_ILLUMINATION\n" "string.text" msgid "Illumination" -msgstr "" +msgstr "Арлашара" #: Strings.src msgctxt "" @@ -357,7 +357,7 @@ "STR_OBJECT_LEGEND\n" "string.text" msgid "Legend" -msgstr "" +msgstr "Алегенда" #: Strings.src msgctxt "" @@ -365,7 +365,7 @@ "STR_OBJECT_TITLE\n" "string.text" msgid "Title" -msgstr "" +msgstr "Ахы" #: Strings.src msgctxt "" @@ -373,7 +373,7 @@ "STR_OBJECT_TITLES\n" "string.text" msgid "Titles" -msgstr "" +msgstr "Ахқәа" #: Strings.src msgctxt "" @@ -381,7 +381,7 @@ "STR_OBJECT_TITLE_MAIN\n" "string.text" msgid "Main Title" -msgstr "" +msgstr "Ихадоу ахы" #: Strings.src msgctxt "" @@ -437,7 +437,7 @@ "STR_OBJECT_LABEL\n" "string.text" msgid "Label" -msgstr "" +msgstr "Анапаҵаҩра" #: Strings.src msgctxt "" @@ -445,7 +445,7 @@ "STR_OBJECT_DATALABELS\n" "string.text" msgid "Data Labels" -msgstr "" +msgstr "Адырқәа рнапаҵаҩрақәа" #: Strings.src msgctxt "" @@ -453,7 +453,7 @@ "STR_OBJECT_DATAPOINT\n" "string.text" msgid "Data Point" -msgstr "" +msgstr "Адырқәа ркәаҧ" #: Strings.src msgctxt "" @@ -461,7 +461,7 @@ "STR_OBJECT_DATAPOINTS\n" "string.text" msgid "Data Points" -msgstr "" +msgstr "Адырқәа ркәаҧқәа" #: Strings.src msgctxt "" @@ -501,7 +501,7 @@ "STR_OBJECT_CURVES\n" "string.text" msgid "Trend Lines" -msgstr "" +msgstr "Атренд аҵәаӷәақәа" #: Strings.src msgctxt "" @@ -509,7 +509,7 @@ "STR_OBJECT_CURVE_WITH_PARAMETERS\n" "string.text" msgid "Trend line %FORMULA with accuracy R² = %RSQUARED" -msgstr "" +msgstr "Атренд аҵәаӷәа %FORMULA аиашақәшәара R² = %RSQUARED " #: Strings.src msgctxt "" @@ -525,7 +525,7 @@ "STR_OBJECT_AVERAGE_LINE\n" "string.text" msgid "Mean Value Line" -msgstr "" +msgstr "Абжьаратә ҵакы змоу аҵәаӷәа" #: Strings.src msgctxt "" @@ -533,7 +533,7 @@ "STR_OBJECT_CURVE_EQUATION\n" "string.text" msgid "Equation" -msgstr "" +msgstr "Аиҟаратә" #: Strings.src msgctxt "" @@ -589,7 +589,7 @@ "STR_OBJECT_DIAGRAM\n" "string.text" msgid "Chart" -msgstr "" +msgstr "Адиаграмма" #: Strings.src msgctxt "" @@ -605,7 +605,7 @@ "STR_OBJECT_DIAGRAM_FLOOR\n" "string.text" msgid "Chart Floor" -msgstr "" +msgstr "Адиаграмма ашьаҭа" #: Strings.src msgctxt "" @@ -613,7 +613,7 @@ "STR_OBJECT_SHAPE\n" "string.text" msgid "Drawing Object" -msgstr "" +msgstr "Аобиектқәа рҭыхра" #: Strings.src msgctxt "" @@ -621,7 +621,7 @@ "STR_TIP_DATASERIES\n" "string.text" msgid "Data Series '%SERIESNAME'" -msgstr "" +msgstr "Адырқәа реишьҭагыла «%SERIESNAME»" #: Strings.src msgctxt "" @@ -629,7 +629,7 @@ "STR_TIP_DATAPOINT_INDEX\n" "string.text" msgid "Data Point %POINTNUMBER" -msgstr "" +msgstr "Адырқәа ркәаҧ %POINTNUMBER" #: Strings.src msgctxt "" @@ -637,7 +637,7 @@ "STR_TIP_DATAPOINT_VALUES\n" "string.text" msgid "Values: %POINTVALUES" -msgstr "" +msgstr "Аҵакқәа: %POINTVALUES" #: Strings.src msgctxt "" @@ -661,7 +661,7 @@ "STR_STATUS_OBJECT_MARKED\n" "string.text" msgid "%OBJECTNAME selected" -msgstr "" +msgstr "Иалкаауп: %OBJECTNAME" #: Strings.src msgctxt "" @@ -693,7 +693,7 @@ "STR_ACTION_EDIT_CHARTTYPE\n" "string.text" msgid "Edit chart type" -msgstr "" +msgstr "Иҧсахтәуп адиаграмма атип" #: Strings.src msgctxt "" @@ -701,7 +701,7 @@ "STR_ACTION_EDIT_DATA_RANGES\n" "string.text" msgid "Edit data ranges" -msgstr "" +msgstr "Иҧсахтәуп адырқәа рдиапазон" #: Strings.src msgctxt "" @@ -717,7 +717,7 @@ "STR_ACTION_EDIT_CHART_DATA\n" "string.text" msgid "Edit chart data" -msgstr "" +msgstr "Иҧсахтәуп адиаграмма адырқәа" #: Strings.src msgctxt "" @@ -725,7 +725,7 @@ "STR_ACTION_TOGGLE_LEGEND\n" "string.text" msgid "Legend on/off" -msgstr "" +msgstr "Иаарҧштәуп/иҵәахтәуп алегенда" #: Strings.src msgctxt "" @@ -749,7 +749,7 @@ "STR_ACTION_SCALE_TEXT\n" "string.text" msgid "Scale Text" -msgstr "" +msgstr "Атеқстқәа рмасштаб" #: Strings.src msgctxt "" @@ -773,7 +773,7 @@ "STR_ACTION_EDIT_TEXT\n" "string.text" msgid "Edit text" -msgstr "" +msgstr "Атеқст аредакциазура " #: Strings.src msgctxt "" @@ -781,7 +781,7 @@ "STR_COLUMN_LABEL\n" "string.text" msgid "Column %COLUMNNUMBER" -msgstr "" +msgstr "Аиҵагыла %COLUMNNUMBER" #: Strings.src msgctxt "" @@ -789,7 +789,7 @@ "STR_ROW_LABEL\n" "string.text" msgid "Row %ROWNUMBER" -msgstr "" +msgstr "Ацәаҳәа %ROWNUMBER" #: Strings.src msgctxt "" @@ -797,7 +797,7 @@ "STR_DATA_ROLE_LABEL\n" "string.text" msgid "Name" -msgstr "" +msgstr "Ахьӡ" #: Strings.src msgctxt "" @@ -805,7 +805,7 @@ "STR_DATA_ROLE_X\n" "string.text" msgid "X-Values" -msgstr "" +msgstr "X аҵакы" #: Strings.src msgctxt "" @@ -813,7 +813,7 @@ "STR_DATA_ROLE_Y\n" "string.text" msgid "Y-Values" -msgstr "" +msgstr "Y аҵакы" #: Strings.src msgctxt "" @@ -877,7 +877,7 @@ "STR_DATA_ROLE_FIRST\n" "string.text" msgid "Open Values" -msgstr "" +msgstr "Аартра" #: Strings.src msgctxt "" @@ -893,7 +893,7 @@ "STR_DATA_ROLE_MIN\n" "string.text" msgid "Low Values" -msgstr "" +msgstr "Аминимум" #: Strings.src msgctxt "" @@ -901,7 +901,7 @@ "STR_DATA_ROLE_MAX\n" "string.text" msgid "High Values" -msgstr "" +msgstr "Амаксимум" #: Strings.src msgctxt "" @@ -909,7 +909,7 @@ "STR_DATA_ROLE_CATEGORIES\n" "string.text" msgid "Categories" -msgstr "" +msgstr "Акатегориақәа" #: Strings.src msgctxt "" @@ -917,7 +917,7 @@ "STR_DATA_UNNAMED_SERIES\n" "string.text" msgid "Unnamed Series" -msgstr "" +msgstr "Ихьӡыдоу аишьҭагылақәа" #: Strings.src msgctxt "" @@ -925,7 +925,7 @@ "STR_DATA_UNNAMED_SERIES_WITH_INDEX\n" "string.text" msgid "Unnamed Series %NUMBER" -msgstr "" +msgstr "Ихьӡыдоу аишьҭагылақәа %NUMBER" #: Strings.src msgctxt "" @@ -933,7 +933,7 @@ "STR_DATA_SELECT_RANGE_FOR_SERIES\n" "string.text" msgid "Select Range for %VALUETYPE of %SERIESNAME" -msgstr "" +msgstr "Иалышәх адиапазон %VALUETYPE в %SERIESNAME азы" #: Strings.src msgctxt "" @@ -941,7 +941,7 @@ "STR_DATA_SELECT_RANGE_FOR_CATEGORIES\n" "string.text" msgid "Select Range for Categories" -msgstr "" +msgstr "Иалышәх адипазон акатегориақәа рзы" #: Strings.src msgctxt "" @@ -967,7 +967,7 @@ "STR_TEXT_DIRECTION_LTR\n" "string.text" msgid "Left-to-right" -msgstr "" +msgstr "Армарахьтә арӷьарахь" #: Strings.src msgctxt "" @@ -975,7 +975,7 @@ "STR_TEXT_DIRECTION_RTL\n" "string.text" msgid "Right-to-left" -msgstr "" +msgstr "Арӷьарахьтә армарахь" #: Strings.src msgctxt "" @@ -1031,7 +1031,7 @@ "STR_TYPE_PIE\n" "string.text" msgid "Pie" -msgstr "" +msgstr "Агьежьтә" #: Strings_ChartTypes.src msgctxt "" @@ -1063,7 +1063,7 @@ "STR_TYPE_LINE\n" "string.text" msgid "Line" -msgstr "" +msgstr "Ацәаҳәақәа" #: Strings_ChartTypes.src msgctxt "" @@ -1079,7 +1079,7 @@ "STR_POINTS_AND_LINES\n" "string.text" msgid "Points and Lines" -msgstr "" +msgstr "Аҵәаӷәақәеи акәаҧқәеи" #: Strings_ChartTypes.src msgctxt "" @@ -1087,7 +1087,7 @@ "STR_POINTS_ONLY\n" "string.text" msgid "Points Only" -msgstr "" +msgstr "Акәаҧқәа рымацара" #: Strings_ChartTypes.src msgctxt "" @@ -1095,7 +1095,7 @@ "STR_LINES_ONLY\n" "string.text" msgid "Lines Only" -msgstr "" +msgstr "Аҵәаӷәақәа рымацара" #: Strings_ChartTypes.src msgctxt "" @@ -1103,7 +1103,7 @@ "STR_LINES_3D\n" "string.text" msgid "3D Lines" -msgstr "" +msgstr "3D аҵәаӷәақәа" #: Strings_ChartTypes.src msgctxt "" @@ -1111,7 +1111,7 @@ "STR_TYPE_COMBI_COLUMN_LINE\n" "string.text" msgid "Column and Line" -msgstr "" +msgstr "Аиҵагылақәеи аҵәаӷәақәеи" #: Strings_ChartTypes.src msgctxt "" @@ -1119,7 +1119,7 @@ "STR_LINE_COLUMN\n" "string.text" msgid "Columns and Lines" -msgstr "" +msgstr "Аиҵагылақәеи аҵәаӷәақәеи" #: Strings_ChartTypes.src msgctxt "" @@ -1183,7 +1183,7 @@ "STR_NORMAL\n" "string.text" msgid "Normal" -msgstr "" +msgstr "Инормалтәу" #: Strings_ChartTypes.src msgctxt "" @@ -1239,7 +1239,7 @@ "STR_TYPE_GL3D_BAR\n" "string.text" msgid "GL3D Bar" -msgstr "" +msgstr "Еиҵагылатәу GL3D " #: Strings_ChartTypes.src msgctxt "" @@ -1247,7 +1247,7 @@ "STR_GL3D_BAR\n" "string.text" msgid "GL3D Bar Chart" -msgstr "" +msgstr "Еиҵагылатәу адиаграмма GL3D " #: Strings_Scale.src msgctxt "" @@ -1255,7 +1255,7 @@ "STR_INVALID_NUMBER\n" "string.text" msgid "Numbers are required. Check your input." -msgstr "" +msgstr "Иаҭахуп ахыҧхьаӡарақәа. Игәашәҭ иҭагалақәо." #: Strings_Scale.src msgctxt "" @@ -1303,7 +1303,7 @@ "STR_CONTROLTEXT_ERROR_BARS_FROM_DATA\n" "string.text" msgid "From Data Table" -msgstr "" +msgstr "Адырқәа ртаблица аҟынтәи" #: Strings_Statistic.src msgctxt "" @@ -1311,7 +1311,7 @@ "STR_REGRESSION_LINEAR\n" "string.text" msgid "Linear" -msgstr "" +msgstr "Аҵәаӷәатә" #: Strings_Statistic.src msgctxt "" @@ -1319,7 +1319,7 @@ "STR_REGRESSION_LOG\n" "string.text" msgid "Logarithmic" -msgstr "" +msgstr "Алогарифмтә" #: Strings_Statistic.src msgctxt "" @@ -1327,7 +1327,7 @@ "STR_REGRESSION_EXP\n" "string.text" msgid "Exponential" -msgstr "" +msgstr "Аекспоненциалтә" #: Strings_Statistic.src msgctxt "" @@ -1343,7 +1343,7 @@ "STR_REGRESSION_POLYNOMIAL\n" "string.text" msgid "Polynomial" -msgstr "" +msgstr "Аполиномиалтә" #: Strings_Statistic.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/chart2/uiconfig/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/chart2/uiconfig/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/chart2/uiconfig/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/chart2/uiconfig/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-07-19 16:33+0000\n" +"PO-Revision-Date: 2017-11-29 10:01+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500481995.000000\n" +"X-POOTLE-MTIME: 1511949707.000000\n" #: 3dviewdialog.ui msgctxt "" @@ -85,7 +85,7 @@ "label\n" "string.text" msgid "Insert Series" -msgstr "" +msgstr "Иҭаргылатәуа аишьҭагыла" #: chartdatadialog.ui msgctxt "" @@ -112,7 +112,7 @@ "label\n" "string.text" msgid "Delete Series" -msgstr "" +msgstr "Ианыхтәуп аишьҭагыла" #: chartdatadialog.ui msgctxt "" @@ -121,7 +121,7 @@ "label\n" "string.text" msgid "Move Series Left" -msgstr "" +msgstr "Ииагатәуп аишьҭагыла армарахь" #: chartdatadialog.ui msgctxt "" @@ -130,7 +130,7 @@ "label\n" "string.text" msgid "Move Series Right" -msgstr "" +msgstr "Ииагатәуп аишьҭагыла арӷьарахь" #: chartdatadialog.ui msgctxt "" @@ -139,7 +139,7 @@ "label\n" "string.text" msgid "Move Row Up" -msgstr "" +msgstr "Ииагатәуп аишьҭагыла аҩада" #: chartdatadialog.ui msgctxt "" @@ -148,7 +148,7 @@ "label\n" "string.text" msgid "Move Row Down" -msgstr "" +msgstr "Ииагатәуп аишьҭагыла алада" #: charttypedialog.ui msgctxt "" @@ -157,7 +157,7 @@ "title\n" "string.text" msgid "Chart Type" -msgstr "Адиаграмма ахкы" +msgstr "Адиаграмма атип" #: datarangedialog.ui msgctxt "" @@ -994,7 +994,7 @@ "title\n" "string.text" msgid "Paragraph" -msgstr "" +msgstr "Абзац" #: paradialog.ui msgctxt "" @@ -1399,7 +1399,7 @@ "2\n" "stringlist.text" msgid "Cell Range or Data Table" -msgstr "" +msgstr "Адырқәа рдиапазон" #: sidebarerrorbar.ui msgctxt "" @@ -2326,7 +2326,7 @@ "label\n" "string.text" msgid "Choose a Chart Type" -msgstr "" +msgstr "Иалышәх адиаграмма атип" #: tp_ChartType.ui msgctxt "" @@ -2560,7 +2560,7 @@ "label\n" "string.text" msgid "Number _format..." -msgstr "" +msgstr "Ахыҧхьаӡаратә формат..." #: tp_DataLabel.ui msgctxt "" @@ -2794,7 +2794,7 @@ "3\n" "stringlist.text" msgid "New line" -msgstr "" +msgstr "Ацәаҳәа ҿыц" #: tp_DataSource.ui msgctxt "" @@ -2803,7 +2803,7 @@ "tooltip_text\n" "string.text" msgid "Select data range" -msgstr "" +msgstr "Иалышәх адырқәа рдиапазон" #: tp_DataSource.ui msgctxt "" @@ -2812,7 +2812,7 @@ "tooltip_text\n" "string.text" msgid "Select data range" -msgstr "" +msgstr "Иалышәх адырқәа рдиапазон" #: tp_DataSource.ui msgctxt "" @@ -3001,7 +3001,7 @@ "tooltip_text\n" "string.text" msgid "Select data range" -msgstr "" +msgstr "Иалышәх адырқәа рдиапазон" #: tp_ErrorBars.ui msgctxt "" @@ -3019,7 +3019,7 @@ "tooltip_text\n" "string.text" msgid "Select data range" -msgstr "" +msgstr "Иалышәх адырқәа рдиапазон" #: tp_ErrorBars.ui msgctxt "" @@ -3064,7 +3064,7 @@ "label\n" "string.text" msgid "From Data Table" -msgstr "" +msgstr "Адырқәа ртаблица аҟынтә" #: tp_ErrorBars.ui msgctxt "" @@ -3226,7 +3226,7 @@ "tooltip_text\n" "string.text" msgid "Select data range" -msgstr "" +msgstr "Иалышәх адырқәа рдиапазон" #: tp_RangeChooser.ui msgctxt "" @@ -3253,7 +3253,7 @@ "tooltip_text\n" "string.text" msgid "Select data range" -msgstr "" +msgstr "Иалышәх адырқәа рдиапазон" #: tp_RangeChooser.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/connectivity/source/resource.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/connectivity/source/resource.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/connectivity/source/resource.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/connectivity/source/resource.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-07-14 22:18+0000\n" +"PO-Revision-Date: 2017-12-07 10:54+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500070723.000000\n" +"X-POOTLE-MTIME: 1512644056.000000\n" #: conn_error_message.src msgctxt "" @@ -77,7 +77,7 @@ "256 + 2*500 + 0\n" "string.text" msgid "No $1$ exists." -msgstr "" +msgstr "$1$ ыҟаӡам." #: conn_error_message.src msgctxt "" @@ -261,7 +261,7 @@ "STR_FORMULA_WRONG\n" "string.text" msgid "The formula for TypeInfoSettings is wrong!" -msgstr "" +msgstr "TypeInfoSettings азы аформула иашаӡам!" #: conn_shared_res.src msgctxt "" @@ -373,7 +373,7 @@ "STR_COULD_NOT_LOAD_FILE\n" "string.text" msgid "The file $filename$ could not be loaded." -msgstr "" +msgstr "Афаил $filename$ аҭагалара ауам." #: conn_shared_res.src msgctxt "" @@ -528,7 +528,7 @@ "STR_COULD_NOT_DELETE_FILE\n" "string.text" msgid "The file $filename$ could not be deleted." -msgstr "" +msgstr "Афаил $filename$ аныхра ауам." #: conn_shared_res.src msgctxt "" @@ -627,7 +627,7 @@ "STR_COULD_NOT_ALTER_TABLE\n" "string.text" msgid "The table could not be altered." -msgstr "" +msgstr "Атаблица аҧсахра ауам" #: conn_shared_res.src msgctxt "" @@ -683,7 +683,7 @@ "STR_TABLE_READONLY\n" "string.text" msgid "The table can not be changed. It is read only." -msgstr "" +msgstr "Атаблица аҧсахра ауам. Аҧхьара мацараз." #: conn_shared_res.src msgctxt "" @@ -845,7 +845,7 @@ "STR_NO_TABLE\n" "string.text" msgid "No such table!" -msgstr "" +msgstr "Атаблицақәа ыҟаӡам!" #: conn_shared_res.src msgctxt "" @@ -885,7 +885,7 @@ "STR_NO_TABLENAME\n" "string.text" msgid "There is no table named '$tablename$'." -msgstr "" +msgstr "Атаблица «$tablename$» ыҟаӡам." #: conn_shared_res.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/cui/source/customize.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/cui/source/customize.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/cui/source/customize.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/cui/source/customize.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-07-19 08:35+0000\n" +"PO-Revision-Date: 2017-11-30 10:05+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500453352.000000\n" +"X-POOTLE-MTIME: 1512036312.000000\n" #: cfg.src msgctxt "" @@ -21,7 +21,7 @@ "RID_SVXSTR_NEW_MENU\n" "string.text" msgid "New Menu %n" -msgstr "Ахкынҵа %n Ҿыц" +msgstr "Ахкынҵа ҿыц %n" #: cfg.src msgctxt "" @@ -29,7 +29,7 @@ "RID_SVXSTR_NEW_TOOLBAR\n" "string.text" msgid "New Toolbar %n" -msgstr "" +msgstr "Амаругақәа рпанель ҿыц %n" #: cfg.src msgctxt "" @@ -223,7 +223,7 @@ "RID_SVXSTR_EVENT_NEWDOC\n" "string.text" msgid "New Document" -msgstr "" +msgstr "Адокумент аҧҵара" #: macropg.src msgctxt "" @@ -263,7 +263,7 @@ "RID_SVXSTR_EVENT_SAVEASDOC\n" "string.text" msgid "Save Document As" -msgstr "Иеиқәырхатәуп адокумент иаба(ишҧа)" +msgstr "Еиқәырхатәуп адокумент иаба(ишҧа)" #: macropg.src msgctxt "" @@ -351,7 +351,7 @@ "RID_SVXSTR_EVENT_PAGECOUNTCHANGE\n" "string.text" msgid "Changing the page count" -msgstr "" +msgstr "Адаҟьақәа рхыҧхьаӡара аҧсахра" #: macropg.src msgctxt "" @@ -359,7 +359,7 @@ "RID_SVXSTR_EVENT_SUBCOMPONENT_OPENED\n" "string.text" msgid "Loaded a sub component" -msgstr "" +msgstr "Акомпонент ҭагалоуп" #: macropg.src msgctxt "" @@ -423,7 +423,7 @@ "RID_SVXSTR_EVENT_CONFIRMDELETE\n" "string.text" msgid "Confirm deletion" -msgstr "" +msgstr "Аныхра ашьақәырӷәӷәара" #: macropg.src msgctxt "" @@ -487,7 +487,7 @@ "RID_SVXSTR_EVENT_LOADED\n" "string.text" msgid "When loading" -msgstr "" +msgstr "Аҭагалараан" #: macropg.src msgctxt "" @@ -647,7 +647,7 @@ "RID_SVXSTR_EVENT_LOADDOCFINISHED\n" "string.text" msgid "Document loading finished" -msgstr "" +msgstr "Адокумент ҭагалоуп" #: macropg.src msgctxt "" @@ -671,7 +671,7 @@ "RID_SVXSTR_EVENT_COPYTODOC\n" "string.text" msgid "Storing or exporting copy of document" -msgstr "" +msgstr "Адокумент акопиа аиқәырхара ма аекспорт " #: macropg.src msgctxt "" @@ -703,7 +703,7 @@ "RID_SVXSTR_EVENT_PREPARECLOSEVIEW\n" "string.text" msgid "View is going to be closed" -msgstr "" +msgstr "Ахәаҧшра аркхоит" #: macropg.src msgctxt "" @@ -711,7 +711,7 @@ "RID_SVXSTR_EVENT_CLOSEVIEW\n" "string.text" msgid "View closed" -msgstr "" +msgstr "Ахәаҧшра аркуп" #: macropg.src msgctxt "" @@ -727,7 +727,7 @@ "RID_SVXSTR_EVENT_SELECTIONCHANGED\n" "string.text" msgid "Selection changed" -msgstr "" +msgstr "Иалкаау аҵакыра ҧсахуп" #: macropg.src msgctxt "" @@ -751,7 +751,7 @@ "RID_SVXSTR_EVENT_CALCULATE\n" "string.text" msgid "Formulas calculated" -msgstr "" +msgstr "Аформулақәа еилкаауп" #: macropg.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/cui/source/dialogs.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/cui/source/dialogs.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/cui/source/dialogs.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/cui/source/dialogs.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-07-17 16:53+0000\n" +"PO-Revision-Date: 2017-12-12 10:05+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500310410.000000\n" +"X-POOTLE-MTIME: 1513073120.000000\n" #: cuires.src msgctxt "" @@ -29,7 +29,7 @@ "RID_SVXSTR_SELECT_FILE_IFRAME\n" "string.text" msgid "Select File for Floating Frame" -msgstr "" +msgstr "Иалхтәуп афаил афреим азы" #: cuires.src msgctxt "" @@ -118,7 +118,7 @@ "RID_SVXSTR_LOADACCELCONFIG\n" "string.text" msgid "Load Keyboard Configuration" -msgstr "" +msgstr "Иҭагалатәуп аклавиатура архиарақәа" #: cuires.src msgctxt "" @@ -126,7 +126,7 @@ "RID_SVXSTR_SAVEACCELCONFIG\n" "string.text" msgid "Save Keyboard Configuration" -msgstr "" +msgstr "Еиқырхатәуп аклавиатура архиарақәа" #: cuires.src msgctxt "" @@ -150,7 +150,7 @@ "RID_SVXSTR_HYPDLG_ERR_LERR_DOCNOTOPEN\n" "string.text" msgid "Couldn't open the document." -msgstr "" +msgstr "Адокумент аартра ауам." #: cuires.src msgctxt "" @@ -286,7 +286,7 @@ "RID_SVXSTR_GALLERY_NOFILES\n" "string.text" msgid "" -msgstr "" +msgstr "<фаилда>" #: gallery.src msgctxt "" @@ -294,7 +294,7 @@ "RID_SVXSTR_GALLERYPROPS_OBJECT\n" "string.text" msgid "Object;Objects" -msgstr "" +msgstr "Аобиеқт;Аобиеқтқәа" #: gallery.src msgctxt "" @@ -302,7 +302,7 @@ "RID_SVXSTR_GALLERY_READONLY\n" "string.text" msgid "(read-only)" -msgstr "" +msgstr "(аԥхьара мацара)" #: gallery.src msgctxt "" @@ -342,7 +342,7 @@ "RID_SVXSTR_HYPDLG_MACROACT2\n" "string.text" msgid "Trigger hyperlink" -msgstr "" +msgstr "Агиперзхьарҧш ала аиасра" #: hyperdlg.src msgctxt "" @@ -358,7 +358,7 @@ "RID_SVXSTR_HYPDLG_NOVALIDFILENAME\n" "string.text" msgid "Please type in a valid file name." -msgstr "" +msgstr "Иҭажәгал афаил ииашоу ахьӡ." #: hyperdlg.src msgctxt "" @@ -398,7 +398,7 @@ "RID_SVXSTR_HYPERDLG_HLDOCTP\n" "string.text" msgid "Document" -msgstr "" +msgstr "Адокумент" #: hyperdlg.src msgctxt "" @@ -446,7 +446,7 @@ "RID_SVXSTR_HYPERDLG_QUERYOVERWRITE\n" "string.text" msgid "The file already exists. Overwrite?" -msgstr "" +msgstr "Ари афаил ыҟоуп. Ихҩылаатәума?" #: multipat.src msgctxt "" @@ -478,7 +478,7 @@ "RID_SVXSTR_MULTIFILE_DBL_ERR\n" "string.text" msgid "The file %1 already exists." -msgstr "" +msgstr "Афаил %1 ыҟоуп." #: multipat.src msgctxt "" @@ -526,7 +526,7 @@ "RID_SVXSTR_SAVE_SCREENSHOT_AS\n" "string.text" msgid "Save Screenshot As..." -msgstr "" +msgstr "Еиқәырхатәуп аекран ақәҭыхымҭа..." #: scriptdlg.src msgctxt "" @@ -542,7 +542,7 @@ "RID_SVXSTR_DELQUERY_TITLE\n" "string.text" msgid "Confirm Deletion" -msgstr "" +msgstr "Аныхра шьақәырӷәӷәатәуп" #: scriptdlg.src msgctxt "" @@ -550,7 +550,7 @@ "RID_SVXSTR_DELFAILED\n" "string.text" msgid "The selected object could not be deleted." -msgstr "" +msgstr "Иалху аобиеқт аныхра ауам." #: scriptdlg.src msgctxt "" @@ -558,7 +558,7 @@ "RID_SVXSTR_DELFAILED_TITLE\n" "string.text" msgid "Error Deleting Object" -msgstr "" +msgstr "Аобиеқт аныхраан иҟалеит агха" #: scriptdlg.src msgctxt "" @@ -566,7 +566,7 @@ "RID_SVXSTR_CREATEFAILED\n" "string.text" msgid "The object could not be created." -msgstr "" +msgstr "Аобиеқт аҧҵара ауам." #: scriptdlg.src msgctxt "" @@ -582,7 +582,7 @@ "RID_SVXSTR_CREATEFAILED_TITLE\n" "string.text" msgid "Error Creating Object" -msgstr "" +msgstr "Аобиеқт аҧҵараан агха" #: scriptdlg.src msgctxt "" @@ -590,7 +590,7 @@ "RID_SVXSTR_RENAMEFAILED\n" "string.text" msgid "The object could not be renamed." -msgstr "" +msgstr "Аобиеқт ахьӡ аҧсахра ауам." #: scriptdlg.src msgctxt "" @@ -598,7 +598,7 @@ "RID_SVXSTR_RENAMEFAILED_TITLE\n" "string.text" msgid "Error Renaming Object" -msgstr "" +msgstr "Аобиеқт ахьӡ аҧсахраан агха." #: scriptdlg.src msgctxt "" @@ -662,7 +662,7 @@ "RID_SVXSTR_ERROR_TYPE_LABEL\n" "string.text" msgid "Type:" -msgstr "Ахкы:" +msgstr "Атип:" #: scriptdlg.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/cui/source/options.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/cui/source/options.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/cui/source/options.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/cui/source/options.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-07-17 17:27+0000\n" +"PO-Revision-Date: 2017-11-30 10:05+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500312430.000000\n" +"X-POOTLE-MTIME: 1512036349.000000\n" #: connpooloptions.src msgctxt "" @@ -136,7 +136,7 @@ "RID_SVXSTR_COLOR_CONFIG_DELETE_TITLE\n" "string.text" msgid "Color Scheme Deletion" -msgstr "" +msgstr "Аҧштәқәа рсхема аныхра" #: optcolor.src msgctxt "" @@ -144,7 +144,7 @@ "RID_SVXSTR_COLOR_CONFIG_SAVE1\n" "string.text" msgid "Save scheme" -msgstr "Иеиқырхатәуп асхема" +msgstr "Еиқырхатәуп асхема" #: optcolor.src msgctxt "" @@ -617,7 +617,7 @@ "RID_SVXSTR_APPLYPERSONA\n" "string.text" msgid "Applying Theme..." -msgstr "" +msgstr "Атема ахархәара..." #: personalization.src msgctxt "" @@ -932,7 +932,7 @@ "Formatting Aids\n" "itemlist.text" msgid "Formatting Aids" -msgstr "" +msgstr "Аформатркра адыргақәа" #: treeopt.src msgctxt "" @@ -1058,7 +1058,7 @@ "Formatting Aids\n" "itemlist.text" msgid "Formatting Aids" -msgstr "" +msgstr "Аформатркра адыргақәа" #: treeopt.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/cui/source/tabpages.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/cui/source/tabpages.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/cui/source/tabpages.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/cui/source/tabpages.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-17 15:41+0200\n" -"PO-Revision-Date: 2017-07-17 17:29+0000\n" +"PO-Revision-Date: 2017-12-07 11:14+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500312582.000000\n" +"X-POOTLE-MTIME: 1512645275.000000\n" #: border.src msgctxt "" @@ -61,7 +61,7 @@ "RID_SVXSTR_PARA_PRESET_DIAGONAL\n" "string.text" msgid "Set Diagonal Lines Only" -msgstr "" +msgstr "Иқәыргылатәуп адиагональтә ҵәаӷәақәа рымацара" #: border.src msgctxt "" @@ -157,7 +157,7 @@ "RID_SVXSTR_FRAMEDIR_LTR\n" "string.text" msgid "Left-to-right (LTR)" -msgstr "" +msgstr "Армарахьтә - арӷьарахь" #: frmdirlbox.src msgctxt "" @@ -165,7 +165,7 @@ "RID_SVXSTR_FRAMEDIR_RTL\n" "string.text" msgid "Right-to-left (RTL)" -msgstr "" +msgstr "Арӷьарахьтә - армарахь" #: frmdirlbox.src msgctxt "" @@ -181,7 +181,7 @@ "RID_SVXSTR_PAGEDIR_LTR_HORI\n" "string.text" msgid "Left-to-right (horizontal)" -msgstr "" +msgstr "Армарахьтә - арӷьарахь (горизонталла)" #: frmdirlbox.src msgctxt "" @@ -189,7 +189,7 @@ "RID_SVXSTR_PAGEDIR_RTL_HORI\n" "string.text" msgid "Right-to-left (horizontal)" -msgstr "" +msgstr "Арӷьарахьтә - армарахь (горизонталла)" #: frmdirlbox.src msgctxt "" @@ -197,7 +197,7 @@ "RID_SVXSTR_PAGEDIR_RTL_VERT\n" "string.text" msgid "Right-to-left (vertical)" -msgstr "" +msgstr "Арӷьарахьтә - армарахь (вертикалла)" #: frmdirlbox.src msgctxt "" @@ -205,7 +205,7 @@ "RID_SVXSTR_PAGEDIR_LTR_VERT\n" "string.text" msgid "Left-to-right (vertical)" -msgstr "" +msgstr "Армарахь - армарахь (вертикалла)" #: strings.src msgctxt "" @@ -213,7 +213,7 @@ "RID_SVXSTR_DESC_GRADIENT\n" "string.text" msgid "Please enter a name for the gradient:" -msgstr "" +msgstr "Иҭажәгал аградиент ахьӡ:" #: strings.src msgctxt "" @@ -221,7 +221,7 @@ "RID_SVXSTR_DESC_NEW_BITMAP\n" "string.text" msgid "Please enter a name for the bitmap:" -msgstr "" +msgstr "Иҭажәгал арастр ахьӡ:" #: strings.src msgctxt "" @@ -245,7 +245,7 @@ "RID_SVXSTR_DESC_LINESTYLE\n" "string.text" msgid "Please enter a name for the line style:" -msgstr "" +msgstr "Иҭажәгал аҵәаӷәа астиль ахьӡ:" #: strings.src msgctxt "" @@ -287,7 +287,7 @@ "RID_SVXSTR_DESC_COLOR\n" "string.text" msgid "Please enter a name for the new color:" -msgstr "" +msgstr "Иҭажәгал иҿыцу аҧштәы ахьӡ:" #: strings.src msgctxt "" @@ -439,7 +439,7 @@ "RID_SVXSTR_DEL_EMPTY_PARA\n" "string.text" msgid "Remove blank paragraphs" -msgstr "" +msgstr "Ианыхлатәуп иҭацәу абзацқәа" #: strings.src msgctxt "" @@ -471,7 +471,7 @@ "RID_SVXSTR_NUM\n" "string.text" msgid "Bulleted and numbered lists. Bullet symbol: " -msgstr "" +msgstr "Ахьӡынҵақәа. Амаркер асимвол: " #: strings.src msgctxt "" @@ -487,7 +487,7 @@ "RID_SVXSTR_CREATE_TABLE\n" "string.text" msgid "Create table" -msgstr "" +msgstr "Иаҧҵатәуп атаблица" #: strings.src msgctxt "" @@ -495,7 +495,7 @@ "RID_SVXSTR_REPLACE_TEMPLATES\n" "string.text" msgid "Apply Styles" -msgstr "" +msgstr "Ихархәалатәуп астильқәа" #: strings.src msgctxt "" @@ -535,7 +535,7 @@ "RID_SVXSTR_LOAD_ERROR\n" "string.text" msgid "The selected module could not be loaded." -msgstr "" +msgstr "Иалху амодуль аҭагалара ауам." #: strings.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/cui/uiconfig/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/cui/uiconfig/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/cui/uiconfig/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/cui/uiconfig/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-17 15:41+0200\n" -"PO-Revision-Date: 2017-09-18 11:07+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-12-12 10:07+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1505732824.000000\n" +"X-POOTLE-MTIME: 1513073231.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -58,7 +58,7 @@ "label\n" "string.text" msgid "Type" -msgstr "Ахкы" +msgstr "Атип" #: aboutconfigdialog.ui msgctxt "" @@ -202,7 +202,7 @@ "label\n" "string.text" msgid "LibreOffice was based on OpenOffice.org." -msgstr "" +msgstr "LibreOffice базас иамоуп OpenOffice.org." #: aboutdialog.ui msgctxt "" @@ -229,7 +229,7 @@ "label\n" "string.text" msgid "https://www.libreoffice.org/about-us/credits/" -msgstr "" +msgstr "https://www.libreoffice.org/about-us/credits/" #: accelconfigpage.ui msgctxt "" @@ -274,7 +274,7 @@ "label\n" "string.text" msgid "_Load..." -msgstr "" +msgstr "_Иҭагалатәуп..." #: accelconfigpage.ui msgctxt "" @@ -283,7 +283,7 @@ "label\n" "string.text" msgid "_Save..." -msgstr "" +msgstr "Еиқәырхатәуп" #: accelconfigpage.ui msgctxt "" @@ -481,7 +481,7 @@ "label\n" "string.text" msgid "_Edit..." -msgstr "" +msgstr "Иҧсахтәуп..." #: applyautofmtpage.ui msgctxt "" @@ -985,7 +985,7 @@ "2\n" "stringlist.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: backgroundpage.ui msgctxt "" @@ -1021,7 +1021,7 @@ "label\n" "string.text" msgid "_Browse..." -msgstr "" +msgstr "Аҭыҧхәаҧшра..." #: backgroundpage.ui msgctxt "" @@ -1030,7 +1030,7 @@ "label\n" "string.text" msgid "_Link" -msgstr "" +msgstr "_Азхьарҧш" #: backgroundpage.ui msgctxt "" @@ -1039,7 +1039,7 @@ "label\n" "string.text" msgid "File" -msgstr "" +msgstr "Афаил" #: backgroundpage.ui msgctxt "" @@ -1111,7 +1111,7 @@ "title\n" "string.text" msgid "Edit Links" -msgstr "" +msgstr "Аимадарақәа рыриашара" #: baselinksdialog.ui msgctxt "" @@ -1120,7 +1120,7 @@ "label\n" "string.text" msgid "_Update" -msgstr "" +msgstr "Ирҿыцтәуп" #: baselinksdialog.ui msgctxt "" @@ -1129,7 +1129,7 @@ "label\n" "string.text" msgid "_Open" -msgstr "" +msgstr "Иаарттәуп" #: baselinksdialog.ui msgctxt "" @@ -1147,7 +1147,7 @@ "label\n" "string.text" msgid "_Break Link" -msgstr "" +msgstr "Аимадара еиҧырҟьатәуп" #: baselinksdialog.ui msgctxt "" @@ -1156,7 +1156,7 @@ "label\n" "string.text" msgid "Source file" -msgstr "" +msgstr "Ахалагаратә фаил" #: baselinksdialog.ui msgctxt "" @@ -1192,7 +1192,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Edit Links" -msgstr "" +msgstr "Аимадарақәа рыриашара" #: baselinksdialog.ui msgctxt "" @@ -1201,7 +1201,7 @@ "label\n" "string.text" msgid "Source file" -msgstr "" +msgstr "Ахалагаратә фаил" #: baselinksdialog.ui msgctxt "" @@ -1228,7 +1228,7 @@ "label\n" "string.text" msgid "Update:" -msgstr "" +msgstr "Ирҿыцлатәуп:" #: baselinksdialog.ui msgctxt "" @@ -1255,7 +1255,7 @@ "label\n" "string.text" msgid "Add / Import" -msgstr "" +msgstr "Иацҵатәуп / Аимпорт" #: bitmaptabpage.ui msgctxt "" @@ -1309,7 +1309,7 @@ "3\n" "stringlist.text" msgid "Zoomed" -msgstr "" +msgstr "Имасштабрктәуп" #: bitmaptabpage.ui msgctxt "" @@ -1336,7 +1336,7 @@ "label\n" "string.text" msgid "Size:" -msgstr "" +msgstr "Ашәагаа:" #: bitmaptabpage.ui msgctxt "" @@ -1624,7 +1624,7 @@ "label\n" "string.text" msgid "OpenCL Information" -msgstr "" +msgstr "OpenCL аинформациа" #: blackorwhitelistentrydialog.ui msgctxt "" @@ -1939,7 +1939,7 @@ "title\n" "string.text" msgid "Position and Size" -msgstr "" +msgstr "Аҭыҧи ашәагааи" #: calloutdialog.ui msgctxt "" @@ -1948,7 +1948,7 @@ "label\n" "string.text" msgid "Position and Size" -msgstr "" +msgstr "Аҭыҧи ашәагааи" #: calloutdialog.ui msgctxt "" @@ -1957,7 +1957,7 @@ "label\n" "string.text" msgid "Position and Size" -msgstr "" +msgstr "Аҭыҧи ашәагааи" #: calloutdialog.ui msgctxt "" @@ -2470,7 +2470,7 @@ "label\n" "string.text" msgid "Profile" -msgstr "" +msgstr "Апрофиль" #: certdialog.ui msgctxt "" @@ -2488,7 +2488,7 @@ "label\n" "string.text" msgid "Select a Certificate directory" -msgstr "" +msgstr "Иалышәх асертификат акаталог" #: certdialog.ui msgctxt "" @@ -2533,7 +2533,7 @@ "label\n" "string.text" msgid "Size:" -msgstr "" +msgstr "Акегль:" #: charnamepage.ui msgctxt "" @@ -2560,7 +2560,7 @@ "label\n" "string.text" msgid "Size:" -msgstr "" +msgstr "Акегль:" #: charnamepage.ui msgctxt "" @@ -2605,7 +2605,7 @@ "label\n" "string.text" msgid "Size:" -msgstr "" +msgstr "Акегль:" #: charnamepage.ui msgctxt "" @@ -2650,7 +2650,7 @@ "label\n" "string.text" msgid "Size:" -msgstr "" +msgstr "Акегль:" #: charnamepage.ui msgctxt "" @@ -2731,7 +2731,7 @@ "label\n" "string.text" msgid "Table boundaries" -msgstr "" +msgstr "Атаблицақәа рҳәаақәа" #: colorconfigwin.ui msgctxt "" @@ -3199,7 +3199,7 @@ "label\n" "string.text" msgid "Delete" -msgstr "" +msgstr "Ианыхтәуп" #: colorpage.ui msgctxt "" @@ -3316,7 +3316,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "New Color" -msgstr "" +msgstr "Аҧштәы ҿыц" #: colorpage.ui msgctxt "" @@ -3433,7 +3433,7 @@ "label\n" "string.text" msgid "New" -msgstr "" +msgstr "Иаҧҵатәуп" #: colorpickerdialog.ui msgctxt "" @@ -3622,7 +3622,7 @@ "label\n" "string.text" msgid "Edit Comment" -msgstr "" +msgstr "Иҧсахтәуп акомментари" #: comment.ui msgctxt "" @@ -3910,7 +3910,7 @@ "label\n" "string.text" msgid "Image Size" -msgstr "" +msgstr "Асахьа ашәагаа" #: croppage.ui msgctxt "" @@ -3919,7 +3919,7 @@ "label\n" "string.text" msgid "_Original Size" -msgstr "" +msgstr "Ахалагаратә шәагаа" #: cuiimapdlg.ui msgctxt "" @@ -4045,7 +4045,7 @@ "label\n" "string.text" msgid "Browse..." -msgstr "" +msgstr "Аҭыҧхәаҧшра..." #: databaselinkdialog.ui msgctxt "" @@ -4054,7 +4054,7 @@ "label\n" "string.text" msgid "_Database file:" -msgstr "" +msgstr "Адырқәа рбаза афаил:" #: databaselinkdialog.ui msgctxt "" @@ -4081,7 +4081,7 @@ "label\n" "string.text" msgid "_New..." -msgstr "" +msgstr "Иаҧҵатәуп..." #: dbregisterpage.ui msgctxt "" @@ -4090,7 +4090,7 @@ "label\n" "string.text" msgid "_Delete" -msgstr "" +msgstr "_Ианыхтәуп" #: dbregisterpage.ui msgctxt "" @@ -4099,7 +4099,7 @@ "label\n" "string.text" msgid "_Edit..." -msgstr "" +msgstr "Ариашара..." #: dbregisterpage.ui msgctxt "" @@ -4369,7 +4369,7 @@ "title\n" "string.text" msgid "Edit Custom Dictionary" -msgstr "" +msgstr "Ахархәаҩ ижәар ариашара" #: editdictionarydialog.ui msgctxt "" @@ -4414,7 +4414,7 @@ "label\n" "string.text" msgid "_New" -msgstr "" +msgstr "Иаҧҵатәуп" #: editdictionarydialog.ui msgctxt "" @@ -4423,7 +4423,7 @@ "label\n" "string.text" msgid "_Delete" -msgstr "" +msgstr "_Ианыхтәуп" #: editmodulesdialog.ui msgctxt "" @@ -4432,7 +4432,7 @@ "title\n" "string.text" msgid "Edit Modules" -msgstr "" +msgstr "Амодульқәа рыриашара" #: editmodulesdialog.ui msgctxt "" @@ -4576,7 +4576,7 @@ "label\n" "string.text" msgid "Blinking" -msgstr "" +msgstr "Алацәҟәра" #: effectspage.ui msgctxt "" @@ -5026,7 +5026,7 @@ "label\n" "string.text" msgid "Existing Macros" -msgstr "" +msgstr "Иҟоу амакросқәа" #: eventassignpage.ui msgctxt "" @@ -5116,7 +5116,7 @@ "label\n" "string.text" msgid "Save in:" -msgstr "Иеиқәырхатәуп абра:" +msgstr "Еиқәырхатәуп абра:" #: eventsconfigpage.ui msgctxt "" @@ -5215,7 +5215,7 @@ "label\n" "string.text" msgid "Form:" -msgstr "" +msgstr "Аформа:" #: fmsearchdialog.ui msgctxt "" @@ -5377,7 +5377,7 @@ "title\n" "string.text" msgid "Table Properties" -msgstr "" +msgstr "Атаблица аҷыдаҟазшьақәа" #: formatcellsdialog.ui msgctxt "" @@ -5422,7 +5422,7 @@ "title\n" "string.text" msgid "Format Number" -msgstr "" +msgstr "Ахыҧхьаӡарақәа рформат" #: galleryapplyprogress.ui msgctxt "" @@ -5431,7 +5431,7 @@ "title\n" "string.text" msgid "Apply" -msgstr "" +msgstr "Ихархәатәуп" #: galleryapplyprogress.ui msgctxt "" @@ -5440,7 +5440,7 @@ "label\n" "string.text" msgid "File" -msgstr "" +msgstr "Афаил" #: galleryfilespage.ui msgctxt "" @@ -5449,7 +5449,7 @@ "label\n" "string.text" msgid "_File type:" -msgstr "" +msgstr "Афаил атип:" #: galleryfilespage.ui msgctxt "" @@ -5458,7 +5458,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Files Found" -msgstr "" +msgstr "Иҧшаауп афаилқәа" #: galleryfilespage.ui msgctxt "" @@ -5557,7 +5557,7 @@ "label\n" "string.text" msgid "File Type" -msgstr "" +msgstr "Афаил атип" #: gallerysearchprogress.ui msgctxt "" @@ -5593,7 +5593,7 @@ "label\n" "string.text" msgid "Files" -msgstr "" +msgstr "Афаилқәа" #: gallerythemeiddialog.ui msgctxt "" @@ -5638,7 +5638,7 @@ "title\n" "string.text" msgid "Update" -msgstr "" +msgstr "Ирҿыцтәуп" #: galleryupdateprogress.ui msgctxt "" @@ -5647,7 +5647,7 @@ "label\n" "string.text" msgid "File" -msgstr "" +msgstr "Афаил" #: gradientpage.ui msgctxt "" @@ -5827,7 +5827,7 @@ "title\n" "string.text" msgid "New Dictionary" -msgstr "" +msgstr "Иаҧҵатәуп ажәар" #: hangulhanjaadddialog.ui msgctxt "" @@ -5899,7 +5899,7 @@ "label\n" "string.text" msgid "Format" -msgstr "" +msgstr "Аформат" #: hangulhanjaconversiondialog.ui msgctxt "" @@ -6052,7 +6052,7 @@ "title\n" "string.text" msgid "Edit Custom Dictionary" -msgstr "" +msgstr "Ахархәаҩ ижәар ариашара" #: hangulhanjaeditdictdialog.ui msgctxt "" @@ -6097,7 +6097,7 @@ "label\n" "string.text" msgid "New..." -msgstr "" +msgstr "Иаҧҵатәуп..." #: hangulhanjaoptdialog.ui msgctxt "" @@ -6106,7 +6106,7 @@ "label\n" "string.text" msgid "Edit..." -msgstr "" +msgstr "Ариашара..." #: hangulhanjaoptdialog.ui msgctxt "" @@ -6277,7 +6277,7 @@ "title\n" "string.text" msgid "Hyperlink" -msgstr "" +msgstr "Агиперзхьарҧш" #: hyperlinkdialog.ui msgctxt "" @@ -6286,7 +6286,7 @@ "label\n" "string.text" msgid "Apply" -msgstr "" +msgstr "Ихархәатәуп" #: hyperlinkdialog.ui msgctxt "" @@ -6313,7 +6313,7 @@ "label\n" "string.text" msgid "Open File" -msgstr "" +msgstr "Иаарттәуп афаил" #: hyperlinkdocpage.ui msgctxt "" @@ -6322,7 +6322,7 @@ "tooltip_text\n" "string.text" msgid "Open File" -msgstr "" +msgstr "Иаарттәуп афаил" #: hyperlinkdocpage.ui msgctxt "" @@ -6502,7 +6502,7 @@ "label\n" "string.text" msgid "Hyperlink Type" -msgstr "" +msgstr "Агиперзхьарҧш атип" #: hyperlinkinternetpage.ui msgctxt "" @@ -6673,7 +6673,7 @@ "label\n" "string.text" msgid "_Apply" -msgstr "" +msgstr "Ихархәатәуп" #: hyperlinkmarkdialog.ui msgctxt "" @@ -6700,7 +6700,7 @@ "label\n" "string.text" msgid "Edit _now" -msgstr "" +msgstr "Иҧахтәуп уажәы" #: hyperlinknewdocpage.ui msgctxt "" @@ -6709,7 +6709,7 @@ "label\n" "string.text" msgid "Edit _later" -msgstr "" +msgstr "Иҧсахтәуп ушьҭан" #: hyperlinknewdocpage.ui msgctxt "" @@ -6718,7 +6718,7 @@ "label\n" "string.text" msgid "_File:" -msgstr "" +msgstr "Афаил:" #: hyperlinknewdocpage.ui msgctxt "" @@ -6727,7 +6727,7 @@ "label\n" "string.text" msgid "Select Path" -msgstr "" +msgstr "Иалхтәуп амҩа" #: hyperlinknewdocpage.ui msgctxt "" @@ -6736,7 +6736,7 @@ "tooltip_text\n" "string.text" msgid "Select Path" -msgstr "" +msgstr "Иалхтәуп амҩа" #: hyperlinknewdocpage.ui msgctxt "" @@ -6745,7 +6745,7 @@ "label\n" "string.text" msgid "File _type:" -msgstr "" +msgstr "Афаил ахкы:" #: hyperlinknewdocpage.ui msgctxt "" @@ -6754,7 +6754,7 @@ "label\n" "string.text" msgid "New Document" -msgstr "" +msgstr "Иаҧҵатәуп адокумент" #: hyperlinknewdocpage.ui msgctxt "" @@ -6909,7 +6909,7 @@ "label\n" "string.text" msgid "_Delete..." -msgstr "" +msgstr "Ианыхтәуп..." #: iconselectordialog.ui msgctxt "" @@ -6957,7 +6957,7 @@ "label\n" "string.text" msgid "Browse..." -msgstr "" +msgstr "Аҭыҧхәаҧшра..." #: insertfloatingframe.ui msgctxt "" @@ -7083,7 +7083,7 @@ "label\n" "string.text" msgid "Create new" -msgstr "" +msgstr "Иаҧҵатәуп аҿыц" #: insertoleobject.ui msgctxt "" @@ -7092,7 +7092,7 @@ "label\n" "string.text" msgid "Create from file" -msgstr "" +msgstr "Иаҧҵатәуп афаил аҟынтәи" #: insertoleobject.ui msgctxt "" @@ -7101,7 +7101,7 @@ "label\n" "string.text" msgid "Object Type" -msgstr "" +msgstr "Аобиеқт атип" #: insertoleobject.ui msgctxt "" @@ -7119,7 +7119,7 @@ "label\n" "string.text" msgid "Link to file" -msgstr "" +msgstr "Афаил иадҳәалатәуп" #: insertoleobject.ui msgctxt "" @@ -7137,7 +7137,7 @@ "label\n" "string.text" msgid "File" -msgstr "" +msgstr "Афаил" #: insertrowcolumn.ui msgctxt "" @@ -7272,7 +7272,7 @@ "label\n" "string.text" msgid "For example: -Dmyprop=c:\\\\program files\\\\java" -msgstr "" +msgstr "Аҿырҧштәы: -Dmyprop=c:\\\\program files\\\\java" #: javastartparametersdialog.ui msgctxt "" @@ -7290,7 +7290,7 @@ "label\n" "string.text" msgid "_Edit" -msgstr "" +msgstr "Ариашара" #: javastartparametersdialog.ui msgctxt "" @@ -7335,7 +7335,7 @@ "label\n" "string.text" msgid "Line Styles" -msgstr "" +msgstr "Аҵәаӷәақәа рстильқәа" #: linedialog.ui msgctxt "" @@ -7479,7 +7479,7 @@ "tooltip_text\n" "string.text" msgid "Load Line Styles" -msgstr "" +msgstr "Иҭагалатәуп аҵәаӷәақәа рстильқа реизак" #: linestyletabpage.ui msgctxt "" @@ -7488,7 +7488,7 @@ "tooltip_text\n" "string.text" msgid "Save Line Styles" -msgstr "Иеиқәырхатәуп аҵәаӷәақәа рстильқәа реизга" +msgstr "Еиқәырхатәуп аҵәаӷәақәа рстильқәа реизга" #: linestyletabpage.ui msgctxt "" @@ -7668,7 +7668,7 @@ "label\n" "string.text" msgid "Select..." -msgstr "" +msgstr "Алхра..." #: linetabpage.ui msgctxt "" @@ -7740,7 +7740,7 @@ "label\n" "string.text" msgid "_From file..." -msgstr "" +msgstr "Афаил аҟынтәи..." #: linetabpage.ui msgctxt "" @@ -7902,7 +7902,7 @@ "title\n" "string.text" msgid "Macro Selector" -msgstr "" +msgstr "Амакрос алхра" #: macroselectordialog.ui msgctxt "" @@ -8064,7 +8064,7 @@ "label\n" "string.text" msgid "New..." -msgstr "" +msgstr "Иаҧҵатәуп..." #: menuassignpage.ui msgctxt "" @@ -8091,7 +8091,7 @@ "label\n" "string.text" msgid "_Save In" -msgstr "" +msgstr "Еиқәырхатәуп абра" #: menuassignpage.ui msgctxt "" @@ -8199,7 +8199,7 @@ "label\n" "string.text" msgid "Delete..." -msgstr "" +msgstr "Ианыхтәуп..." #: menuassignpage.ui msgctxt "" @@ -8217,7 +8217,7 @@ "label\n" "string.text" msgid "Delete" -msgstr "" +msgstr "Ианыхтәуп" #: menuassignpage.ui msgctxt "" @@ -8289,7 +8289,7 @@ "title\n" "string.text" msgid "New Menu" -msgstr "" +msgstr "Иаҧҵатәуп ахкынҵа" #: movemenu.ui msgctxt "" @@ -8334,7 +8334,7 @@ "title\n" "string.text" msgid "Select Paths" -msgstr "" +msgstr "Иалхтәуп амҩақәа" #: multipathdialog.ui msgctxt "" @@ -8388,7 +8388,7 @@ "label\n" "string.text" msgid "Enter the name for the new library." -msgstr "" +msgstr "Иҭажәгал абиблиотека ҿыц ахьӡ." #: newlibdialog.ui msgctxt "" @@ -8397,7 +8397,7 @@ "label\n" "string.text" msgid "Enter the name for the new macro." -msgstr "" +msgstr "Иҭажәгал амакрос ҿыц ахьӡ." #: newlibdialog.ui msgctxt "" @@ -8406,7 +8406,7 @@ "label\n" "string.text" msgid "Enter the new name for the selected object." -msgstr "" +msgstr "Иҭажәгал, иалху аобиеқтаз ахьӡ ҿыц." #: newlibdialog.ui msgctxt "" @@ -8433,7 +8433,7 @@ "title\n" "string.text" msgid "Insert Table" -msgstr "" +msgstr "Ибжьаргылатәуп атаблица" #: newtabledialog.ui msgctxt "" @@ -8478,7 +8478,7 @@ "label\n" "string.text" msgid "_Save in:" -msgstr "" +msgstr "Еиқәырхатәуп абра" #: numberingformatpage.ui msgctxt "" @@ -8496,7 +8496,7 @@ "tooltip_text\n" "string.text" msgid "Edit Comment" -msgstr "" +msgstr "Иҧсахтәуп акомментари" #: numberingformatpage.ui msgctxt "" @@ -8514,7 +8514,7 @@ "label\n" "string.text" msgid "_Format code" -msgstr "" +msgstr "Аформат_акод" #: numberingformatpage.ui msgctxt "" @@ -8829,7 +8829,7 @@ "3\n" "stringlist.text" msgid "Top of character" -msgstr "" +msgstr "Асимвол хыхьла" #: numberingoptionspage.ui msgctxt "" @@ -8838,7 +8838,7 @@ "4\n" "stringlist.text" msgid "Center of character" -msgstr "" +msgstr "Асимвол ацентр аҟны" #: numberingoptionspage.ui msgctxt "" @@ -8847,7 +8847,7 @@ "5\n" "stringlist.text" msgid "Bottom of character" -msgstr "" +msgstr "Асимвол ҵаҟала" #: numberingoptionspage.ui msgctxt "" @@ -8883,7 +8883,7 @@ "label\n" "string.text" msgid "Select..." -msgstr "" +msgstr "Алхра..." #: numberingoptionspage.ui msgctxt "" @@ -8919,7 +8919,7 @@ "label\n" "string.text" msgid "Select..." -msgstr "" +msgstr "Алхра..." #: numberingoptionspage.ui msgctxt "" @@ -8964,7 +8964,7 @@ "label\n" "string.text" msgid "Character:" -msgstr "" +msgstr "Асимволқәа:" #: numberingoptionspage.ui msgctxt "" @@ -8973,7 +8973,7 @@ "label\n" "string.text" msgid "_Relative size:" -msgstr "" +msgstr "Амасштаб:" #: numberingoptionspage.ui msgctxt "" @@ -8991,7 +8991,7 @@ "label\n" "string.text" msgid "Character style:" -msgstr "" +msgstr "Асимвол астиль:" #: numberingoptionspage.ui msgctxt "" @@ -9036,7 +9036,7 @@ "label\n" "string.text" msgid "From file..." -msgstr "" +msgstr "Афаил аҟынтәи..." #: numberingoptionspage.ui msgctxt "" @@ -9434,7 +9434,7 @@ "label\n" "string.text" msgid "Select a Java Runtime Environment" -msgstr "" +msgstr "Иалхтәуп Java Runtime Environment" #: optadvancedpage.ui msgctxt "" @@ -9479,7 +9479,7 @@ "label\n" "string.text" msgid "Open Expert Configuration" -msgstr "" +msgstr "Иаарттәуп аексперттә рхиарақәа" #: optadvancedpage.ui msgctxt "" @@ -9668,7 +9668,7 @@ "label\n" "string.text" msgid "First and Last Characters" -msgstr "" +msgstr "Алагамҭатәии анҵәамҭатәии асимволқәа" #: optbasicidepage.ui msgctxt "" @@ -9758,7 +9758,7 @@ "label\n" "string.text" msgid "Chart Colors" -msgstr "" +msgstr "Адиаграмма аҧштәы" #: optchartcolorspage.ui msgctxt "" @@ -9776,7 +9776,7 @@ "label\n" "string.text" msgid "Color Table" -msgstr "" +msgstr "Аҧштәқәа ртаблица" #: optctlpage.ui msgctxt "" @@ -9920,7 +9920,7 @@ "label\n" "string.text" msgid "Browse..." -msgstr "" +msgstr "Аҭыҧхәаҧшра..." #: optemailpage.ui msgctxt "" @@ -9929,7 +9929,7 @@ "label\n" "string.text" msgid "All files" -msgstr "" +msgstr "Афаилқәа зегьы" #: optemailpage.ui msgctxt "" @@ -10010,7 +10010,7 @@ "label\n" "string.text" msgid "Character Highlighting" -msgstr "" +msgstr "Асмволқәа рырлашара" #: optfltrpage.ui msgctxt "" @@ -10019,7 +10019,7 @@ "label\n" "string.text" msgid "Load Basic _code" -msgstr "" +msgstr "Иҭагалатәуп Basic акод" #: optfltrpage.ui msgctxt "" @@ -10037,7 +10037,7 @@ "label\n" "string.text" msgid "Save _original Basic code" -msgstr "Иеиқәырхалатәуп Basic ахыҵхырҭатә код" +msgstr "Еиқәырхалатәуп Basic ахыҵхырҭатә код" #: optfltrpage.ui msgctxt "" @@ -10091,7 +10091,7 @@ "label\n" "string.text" msgid "Load Ba_sic code" -msgstr "" +msgstr "Иҭагалатәуп Basic акод" #: optfltrpage.ui msgctxt "" @@ -10199,7 +10199,7 @@ "label\n" "string.text" msgid "_Size:" -msgstr "" +msgstr "Ашәагаа:" #: optfontspage.ui msgctxt "" @@ -10280,7 +10280,7 @@ "label\n" "string.text" msgid "Print Dialogs" -msgstr "" +msgstr "Акьыҧхьра адиалогқәа" #: optgeneralpage.ui msgctxt "" @@ -10352,7 +10352,7 @@ "label\n" "string.text" msgid "Size _7:" -msgstr "" +msgstr "_7:" #: opthtmlpage.ui msgctxt "" @@ -10361,7 +10361,7 @@ "label\n" "string.text" msgid "Size _6:" -msgstr "" +msgstr "_6:" #: opthtmlpage.ui msgctxt "" @@ -10370,7 +10370,7 @@ "label\n" "string.text" msgid "Size _5:" -msgstr "" +msgstr "_5:" #: opthtmlpage.ui msgctxt "" @@ -10379,7 +10379,7 @@ "label\n" "string.text" msgid "Size _4:" -msgstr "" +msgstr "_4:" #: opthtmlpage.ui msgctxt "" @@ -10388,7 +10388,7 @@ "label\n" "string.text" msgid "Size _3:" -msgstr "" +msgstr "_3:" #: opthtmlpage.ui msgctxt "" @@ -10397,7 +10397,7 @@ "label\n" "string.text" msgid "Size _2:" -msgstr "" +msgstr "_2:" #: opthtmlpage.ui msgctxt "" @@ -10406,7 +10406,7 @@ "label\n" "string.text" msgid "Size _1:" -msgstr "" +msgstr "_1:" #: opthtmlpage.ui msgctxt "" @@ -10415,7 +10415,7 @@ "label\n" "string.text" msgid "Font Sizes" -msgstr "" +msgstr "Акегльқәа" #: opthtmlpage.ui msgctxt "" @@ -10451,7 +10451,7 @@ "label\n" "string.text" msgid "Import" -msgstr "" +msgstr "Аимпорт" #: opthtmlpage.ui msgctxt "" @@ -10460,7 +10460,7 @@ "label\n" "string.text" msgid "Character _set:" -msgstr "" +msgstr "Акодркра:" #: opthtmlpage.ui msgctxt "" @@ -10505,7 +10505,7 @@ "label\n" "string.text" msgid "Export" -msgstr "" +msgstr "Аекспорт" #: optionsdialog.ui msgctxt "" @@ -10676,7 +10676,7 @@ "label\n" "string.text" msgid "Pu_nctuation characters" -msgstr "" +msgstr "Апунктуациа адыргақәа" #: optjsearchpage.ui msgctxt "" @@ -10847,7 +10847,7 @@ "label\n" "string.text" msgid "_Edit..." -msgstr "" +msgstr "Ариашара..." #: optlingupage.ui msgctxt "" @@ -10874,7 +10874,7 @@ "label\n" "string.text" msgid "_New..." -msgstr "" +msgstr "Иаҧҵатәуп..." #: optlingupage.ui msgctxt "" @@ -10901,7 +10901,7 @@ "label\n" "string.text" msgid "_Delete" -msgstr "" +msgstr "_Ианыхтәуп" #: optlingupage.ui msgctxt "" @@ -11018,7 +11018,7 @@ "label\n" "string.text" msgid "Number of objects:" -msgstr "" +msgstr "Аобиеқтқәа рхыҧхьаӡара:" #: optmemorypage.ui msgctxt "" @@ -11063,7 +11063,7 @@ "title\n" "string.text" msgid "New Dictionary" -msgstr "" +msgstr "Иаҧҵатәуп ажәар" #: optnewdictionarydialog.ui msgctxt "" @@ -11108,7 +11108,7 @@ "label\n" "string.text" msgid "_Check for updates automatically" -msgstr "" +msgstr "Арҿыцрақәа автоматикала игәаҭатәуп" #: optonlineupdatepage.ui msgctxt "" @@ -11162,7 +11162,7 @@ "label\n" "string.text" msgid "_Download updates automatically" -msgstr "" +msgstr "Арҿыцрақәа автоматикала иҭагалатәуп" #: optonlineupdatepage.ui msgctxt "" @@ -11171,7 +11171,7 @@ "label\n" "string.text" msgid "Download destination:" -msgstr "" +msgstr "Аҭагалараз акаталог:" #: optonlineupdatepage.ui msgctxt "" @@ -11216,7 +11216,7 @@ "label\n" "string.text" msgid "Hit apply to update" -msgstr "" +msgstr "Арҿыцразы шәақәыӷәӷәа «Ихархәатәуп»" #: optonlineupdatepage.ui msgctxt "" @@ -11234,7 +11234,7 @@ "label\n" "string.text" msgid "Online Update Options" -msgstr "" +msgstr "Арҿыцрақәа ргәаҭара архиарақәа" #: optopenclpage.ui msgctxt "" @@ -11270,7 +11270,7 @@ "label\n" "string.text" msgid "OpenCL is not used." -msgstr "" +msgstr "OpenCL активым." #: optopenclpage.ui msgctxt "" @@ -11306,7 +11306,7 @@ "label\n" "string.text" msgid "Edit Paths: %1" -msgstr "" +msgstr "Иҧсахтәуп амҩақәа: %1" #: optpathspage.ui msgctxt "" @@ -11333,7 +11333,7 @@ "label\n" "string.text" msgid "_Edit..." -msgstr "" +msgstr "Ариашара..." #: optproxypage.ui msgctxt "" @@ -11477,7 +11477,7 @@ "label\n" "string.text" msgid "Load" -msgstr "" +msgstr "Аҭагалара" #: optsavepage.ui msgctxt "" @@ -11612,7 +11612,7 @@ "label\n" "string.text" msgid "ODF format version:" -msgstr "" +msgstr "ODF аформат аверсиа:" #: optsavepage.ui msgctxt "" @@ -12254,7 +12254,7 @@ "label\n" "string.text" msgid "Use OpenGL for all rendering" -msgstr "" +msgstr "Аҭыгарақәа зегьы OpenGL ахархәарала " #: optviewpage.ui msgctxt "" @@ -12407,7 +12407,7 @@ "label\n" "string.text" msgid "Toolbar icon _size:" -msgstr "" +msgstr "Амаругақәа рпанель:" #: optviewpage.ui msgctxt "" @@ -12560,7 +12560,7 @@ "label\n" "string.text" msgid "Sidebar _icon size:" -msgstr "" +msgstr "Аварахьтәи апанель:" #: optviewpage.ui msgctxt "" @@ -12596,7 +12596,7 @@ "label\n" "string.text" msgid "_Notebookbar icon size:" -msgstr "" +msgstr "Алента:" #: optviewpage.ui msgctxt "" @@ -12731,7 +12731,7 @@ "label\n" "string.text" msgid "_Format:" -msgstr "" +msgstr "_Аформат:" #: pageformatpage.ui msgctxt "" @@ -12803,7 +12803,7 @@ "label\n" "string.text" msgid "Paper Format" -msgstr "" +msgstr "Ақьаад аформат" #: pageformatpage.ui msgctxt "" @@ -12875,7 +12875,7 @@ "label\n" "string.text" msgid "_Page layout:" -msgstr "" +msgstr "Адаҟьа амакет:" #: pageformatpage.ui msgctxt "" @@ -12884,7 +12884,7 @@ "label\n" "string.text" msgid "Page numbers:" -msgstr "" +msgstr "Адаҟьақәа рномерқәа:" #: pageformatpage.ui msgctxt "" @@ -12902,7 +12902,7 @@ "label\n" "string.text" msgid "Table alignment:" -msgstr "" +msgstr "Аиҟаратәра:" #: pageformatpage.ui msgctxt "" @@ -13283,7 +13283,7 @@ "label\n" "string.text" msgid "Ab_ove paragraph:" -msgstr "" +msgstr "Абзац аҧхьа:" #: paraindentspacing.ui msgctxt "" @@ -13292,7 +13292,7 @@ "label\n" "string.text" msgid "Below _paragraph:" -msgstr "" +msgstr "Абзац ашьҭахь:" #: paraindentspacing.ui msgctxt "" @@ -13481,7 +13481,7 @@ "label\n" "string.text" msgid "_Character" -msgstr "" +msgstr "_Асимвол" #: paratabspage.ui msgctxt "" @@ -13547,7 +13547,7 @@ "label\n" "string.text" msgid "Fill Character" -msgstr "" +msgstr "Ахарҭәаага:" #: paratabspage.ui msgctxt "" @@ -13556,7 +13556,7 @@ "label\n" "string.text" msgid "Delete _all" -msgstr "" +msgstr "Ианыхтәуп_зегьы" #: paratabspage.ui msgctxt "" @@ -13610,7 +13610,7 @@ "label\n" "string.text" msgid "_Enter password to open" -msgstr "" +msgstr "Аартраз иҭажәгал ажәамаӡа" #: password.ui msgctxt "" @@ -13628,7 +13628,7 @@ "label\n" "string.text" msgid "Open file read-only" -msgstr "" +msgstr "Иаарттәуп аҧхьара мацараз" #: password.ui msgctxt "" @@ -13637,7 +13637,7 @@ "label\n" "string.text" msgid "Enter password to allow editing" -msgstr "" +msgstr "Иҭажәгал ажәамаӡа аредакциазуразы" #: password.ui msgctxt "" @@ -13673,7 +13673,7 @@ "label\n" "string.text" msgid "File Encryption Password" -msgstr "" +msgstr "Ажәамаӡа афаил ашифрркразы" #: pastespecial.ui msgctxt "" @@ -13700,7 +13700,7 @@ "label\n" "string.text" msgid "Selection" -msgstr "" +msgstr "Алхра" #: patterntabpage.ui msgctxt "" @@ -13799,7 +13799,7 @@ "label\n" "string.text" msgid "Minimum Size" -msgstr "" +msgstr "Иминималтәу ашәагаа" #: personalization_tab.ui msgctxt "" @@ -13835,7 +13835,7 @@ "label\n" "string.text" msgid "Select Theme" -msgstr "" +msgstr "Иалхтәуп атема" #: personalization_tab.ui msgctxt "" @@ -13862,7 +13862,7 @@ "label\n" "string.text" msgid "Selection" -msgstr "" +msgstr "Алхра" #: pickgraphicpage.ui msgctxt "" @@ -13880,7 +13880,7 @@ "label\n" "string.text" msgid "Add and Resize" -msgstr "" +msgstr "Иацҵатәуп ашәагаа шацу" #: pickgraphicpage.ui msgctxt "" @@ -13889,7 +13889,7 @@ "label\n" "string.text" msgid "Selection" -msgstr "" +msgstr "Алхра" #: picknumberingpage.ui msgctxt "" @@ -13898,7 +13898,7 @@ "label\n" "string.text" msgid "Selection" -msgstr "" +msgstr "Алхра" #: pickoutlinepage.ui msgctxt "" @@ -13907,7 +13907,7 @@ "label\n" "string.text" msgid "Selection" -msgstr "" +msgstr "Алхра" #: positionpage.ui msgctxt "" @@ -14069,7 +14069,7 @@ "title\n" "string.text" msgid "Position and Size" -msgstr "" +msgstr "Аҭыҧи ашәагааи" #: positionsizedialog.ui msgctxt "" @@ -14078,7 +14078,7 @@ "label\n" "string.text" msgid "Position and Size" -msgstr "" +msgstr "Аҭыҧи ашәагааи" #: positionsizedialog.ui msgctxt "" @@ -14087,7 +14087,7 @@ "label\n" "string.text" msgid "Position and Size" -msgstr "" +msgstr "Аҭыҧи ашәагааи" #: positionsizedialog.ui msgctxt "" @@ -14186,7 +14186,7 @@ "label\n" "string.text" msgid "Size" -msgstr "" +msgstr "Ашәагаа" #: possizetabpage.ui msgctxt "" @@ -14204,7 +14204,7 @@ "label\n" "string.text" msgid "_Size" -msgstr "" +msgstr "Ашәагаа" #: possizetabpage.ui msgctxt "" @@ -14303,7 +14303,7 @@ "title\n" "string.text" msgid "Delete Bitmap?" -msgstr "" +msgstr "Ианыхтәума арастр?" #: querydeletebitmapdialog.ui msgctxt "" @@ -14312,7 +14312,7 @@ "text\n" "string.text" msgid "Are you sure you want to delete the bitmap?" -msgstr "" +msgstr "Ианыхтәума арастр?" #: querydeletechartcolordialog.ui msgctxt "" @@ -14321,7 +14321,7 @@ "title\n" "string.text" msgid "Delete Color?" -msgstr "" +msgstr "Ианыхтәума аҧштәы?" #: querydeletechartcolordialog.ui msgctxt "" @@ -14330,7 +14330,7 @@ "text\n" "string.text" msgid "Do you really want to delete the chart color?" -msgstr "" +msgstr "Ианыхтәума адиаграмма аҧштәы?" #: querydeletechartcolordialog.ui msgctxt "" @@ -14348,7 +14348,7 @@ "title\n" "string.text" msgid "Delete color?" -msgstr "" +msgstr "Ианыхтәума аҧштәы?" #: querydeletecolordialog.ui msgctxt "" @@ -14357,7 +14357,7 @@ "text\n" "string.text" msgid "Do you want to delete the color?" -msgstr "" +msgstr "Ианыхтәума аҧштәы?" #: querydeletedictionarydialog.ui msgctxt "" @@ -14366,7 +14366,7 @@ "title\n" "string.text" msgid "Delete Dictionary?" -msgstr "" +msgstr "Ианыхтәума ажәар?" #: querydeletedictionarydialog.ui msgctxt "" @@ -14375,7 +14375,7 @@ "text\n" "string.text" msgid "Do you really want to delete the dictionary?" -msgstr "" +msgstr "Ианыхтәума ажәар?" #: querydeletedictionarydialog.ui msgctxt "" @@ -14393,7 +14393,7 @@ "title\n" "string.text" msgid "Delete gradient?" -msgstr "" +msgstr "Ианыхтәума аградиент?" #: querydeletegradientdialog.ui msgctxt "" @@ -14402,7 +14402,7 @@ "text\n" "string.text" msgid "Do you want to delete the gradient?" -msgstr "" +msgstr "Ианыхтәуп аградиент?" #: querydeletehatchdialog.ui msgctxt "" @@ -14429,7 +14429,7 @@ "title\n" "string.text" msgid "Delete Arrowhead?" -msgstr "" +msgstr "Ианыхтәума аҵәаӷәа анҵәамҭа?" #: querydeletelineenddialog.ui msgctxt "" @@ -14438,7 +14438,7 @@ "text\n" "string.text" msgid "Do you really want to delete the arrowhead?" -msgstr "" +msgstr "Ианыхтәума аҵәаӷәа анҵәамҭа?" #: querydeletelineenddialog.ui msgctxt "" @@ -14456,7 +14456,7 @@ "title\n" "string.text" msgid "Delete Line Style?" -msgstr "" +msgstr "Ианыхтәума аҵәаӷәа астиль?" #: querydeletelinestyledialog.ui msgctxt "" @@ -14465,7 +14465,7 @@ "text\n" "string.text" msgid "Do you want to delete the line style?" -msgstr "" +msgstr "Ианыхтәума аҵәаӷәа астиль?" #: queryduplicatedialog.ui msgctxt "" @@ -14501,7 +14501,7 @@ "title\n" "string.text" msgid "No Loaded File" -msgstr "" +msgstr "Афаил ҭагалам" #: querynoloadedfiledialog.ui msgctxt "" @@ -14510,7 +14510,7 @@ "text\n" "string.text" msgid "The file could not be loaded!" -msgstr "" +msgstr "Афаил аҭагалара ауам!" #: querynosavefiledialog.ui msgctxt "" @@ -14537,7 +14537,7 @@ "title\n" "string.text" msgid "Save List?" -msgstr "Иеиқәырхатәума ахьӡынҵа?" +msgstr "Еиқәырхатәума ахьӡынҵа?" #: querysavelistdialog.ui msgctxt "" @@ -14555,7 +14555,7 @@ "secondary_text\n" "string.text" msgid "Would you like to save the list now?" -msgstr "Иеиқәырхатәума ахьӡынҵа?" +msgstr "Еиқәырхатәума ахьӡынҵа?" #: queryupdategalleryfilelistdialog.ui msgctxt "" @@ -14564,7 +14564,7 @@ "title\n" "string.text" msgid "Update File List?" -msgstr "" +msgstr "Ирҿыцтәума афаилқәа рыхьӡынҵа?" #: queryupdategalleryfilelistdialog.ui msgctxt "" @@ -14573,7 +14573,7 @@ "text\n" "string.text" msgid "Do you want to update the file list?" -msgstr "" +msgstr "Ирҿыцтәума афаилқәа рыхьӡынҵа?" #: recordnumberdialog.ui msgctxt "" @@ -14690,7 +14690,7 @@ "label\n" "string.text" msgid "Save Screenshot..." -msgstr "Иеиқәырхатәуп аекран ақәҭыхымҭа..." +msgstr "Еиқәырхатәуп аекран ақәҭыхымҭа..." #: screenshotannotationdialog.ui msgctxt "" @@ -14717,7 +14717,7 @@ "title\n" "string.text" msgid "%MACROLANG Macros" -msgstr "" +msgstr "%MACROLANG Амакросқәа" #: scriptorganizer.ui msgctxt "" @@ -14753,7 +14753,7 @@ "label\n" "string.text" msgid "Delete..." -msgstr "" +msgstr "Ианыхтәуп..." #: scriptorganizer.ui msgctxt "" @@ -14762,7 +14762,7 @@ "label\n" "string.text" msgid "Macros" -msgstr "" +msgstr "Амакросқәа" #: searchattrdialog.ui msgctxt "" @@ -14780,7 +14780,7 @@ "title\n" "string.text" msgid "Text Format" -msgstr "" +msgstr "Атеқст аформат" #: searchformatdialog.ui msgctxt "" @@ -14906,7 +14906,7 @@ "label\n" "string.text" msgid "When creating PDF _files" -msgstr "" +msgstr "PDF афаилқәа раҧҵараан" #: securityoptionsdialog.ui msgctxt "" @@ -14978,7 +14978,7 @@ "title\n" "string.text" msgid "Select Firefox Theme" -msgstr "" +msgstr "Firefox атема алхра" #: select_persona_dialog.ui msgctxt "" @@ -15014,7 +15014,7 @@ "title\n" "string.text" msgid "Select Paths" -msgstr "" +msgstr "Иалхтәуп амҩақәа" #: selectpathdialog.ui msgctxt "" @@ -15131,7 +15131,7 @@ "label\n" "string.text" msgid "_Add characters:" -msgstr "" +msgstr "Иацҵоуп:" #: similaritysearchdialog.ui msgctxt "" @@ -15140,7 +15140,7 @@ "label\n" "string.text" msgid "_Remove characters:" -msgstr "" +msgstr "Ианыхуп:" #: similaritysearchdialog.ui msgctxt "" @@ -15338,7 +15338,7 @@ "title\n" "string.text" msgid "Special Characters" -msgstr "" +msgstr "Асимвол алхра" #: specialcharacters.ui msgctxt "" @@ -15374,7 +15374,7 @@ "label\n" "string.text" msgid "Characters:" -msgstr "" +msgstr "Асимволқәа:" #: specialcharacters.ui msgctxt "" @@ -15572,7 +15572,7 @@ "label\n" "string.text" msgid "Special Character" -msgstr "" +msgstr "Асимвол алхра" #: spelloptionsdialog.ui msgctxt "" @@ -15734,7 +15734,7 @@ "label\n" "string.text" msgid "Size" -msgstr "" +msgstr "Ашәагаа" #: swpossizepage.ui msgctxt "" @@ -15743,7 +15743,7 @@ "label\n" "string.text" msgid "To _page" -msgstr "" +msgstr "Адаҟьахь" #: swpossizepage.ui msgctxt "" @@ -15752,7 +15752,7 @@ "label\n" "string.text" msgid "To paragrap_h" -msgstr "" +msgstr "Абзац ахь" #: swpossizepage.ui msgctxt "" @@ -15770,7 +15770,7 @@ "label\n" "string.text" msgid "_As character" -msgstr "" +msgstr "Асимвол еиҧш" #: swpossizepage.ui msgctxt "" @@ -15887,7 +15887,7 @@ "label\n" "string.text" msgid "_Size" -msgstr "" +msgstr "Ашәагаа" #: swpossizepage.ui msgctxt "" @@ -16049,7 +16049,7 @@ "label\n" "string.text" msgid "Delay:" -msgstr "" +msgstr "Ааҭгылара:" #: textanimtabpage.ui msgctxt "" @@ -16085,7 +16085,7 @@ "1\n" "stringlist.text" msgid "Blink" -msgstr "" +msgstr "Алацәҟәра" #: textanimtabpage.ui msgctxt "" @@ -16157,7 +16157,7 @@ "label\n" "string.text" msgid "Drawing Object Text" -msgstr "" +msgstr "Асахьа атеқст" #: textattrtabpage.ui msgctxt "" @@ -16355,7 +16355,7 @@ "label\n" "string.text" msgid "Page _number:" -msgstr "" +msgstr "Адаҟьа аномер:" #: textflowpage.ui msgctxt "" @@ -16373,7 +16373,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Page Style" -msgstr "" +msgstr "Адаҟьа астиль" #: textflowpage.ui msgctxt "" @@ -16382,7 +16382,7 @@ "0\n" "stringlist.text" msgid "Page" -msgstr "" +msgstr "Адаҟьа" #: textflowpage.ui msgctxt "" @@ -16715,7 +16715,7 @@ "label\n" "string.text" msgid "_Delete..." -msgstr "" +msgstr "_Ианыхтәуп..." #: tsaurldialog.ui msgctxt "" @@ -16778,7 +16778,7 @@ "label\n" "string.text" msgid "Initial character" -msgstr "" +msgstr "Алагамҭатәи асимвол" #: twolinespage.ui msgctxt "" @@ -16787,7 +16787,7 @@ "label\n" "string.text" msgid "Final character" -msgstr "" +msgstr "Анҵәамҭатәи асимвол" #: twolinespage.ui msgctxt "" @@ -16863,7 +16863,7 @@ "5\n" "stringlist.text" msgid "Other Characters..." -msgstr "" +msgstr "Егьырҭ асимволқәа..." #: twolinespage.ui msgctxt "" @@ -16921,7 +16921,7 @@ "5\n" "stringlist.text" msgid "Other Characters..." -msgstr "" +msgstr "Егьырҭ асимволқәа..." #: wordcompletionpage.ui msgctxt "" @@ -16930,7 +16930,7 @@ "label\n" "string.text" msgid "_Delete Entry" -msgstr "" +msgstr "_Ианыхтәуп анҵамҭа" #: wordcompletionpage.ui msgctxt "" @@ -17074,7 +17074,7 @@ "label\n" "string.text" msgid "Zoom Factor" -msgstr "" +msgstr "Амасштаб" #: zoomdialog.ui msgctxt "" @@ -17092,7 +17092,7 @@ "label\n" "string.text" msgid "Single page" -msgstr "" +msgstr "Даҟьак" #: zoomdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/dbaccess/source/core/resource.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/dbaccess/source/core/resource.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/dbaccess/source/core/resource.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/dbaccess/source/core/resource.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-07-19 09:48+0000\n" +"PO-Revision-Date: 2017-11-18 15:35+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500457697.000000\n" +"X-POOTLE-MTIME: 1511019308.000000\n" #: strings.src msgctxt "" @@ -21,7 +21,7 @@ "RID_STR_CONNECTION_INVALID\n" "string.text" msgid "No connection could be established." -msgstr "" +msgstr "Иамуӡеит аимадара ашьақәыргылара." #: strings.src msgctxt "" @@ -271,7 +271,7 @@ "RID_STR_FILE_DOES_NOT_EXIST\n" "string.text" msgid "The file \"$file$\" does not exist." -msgstr "" +msgstr "Афаил «$file$» ыҟаӡам." #: strings.src msgctxt "" @@ -279,7 +279,7 @@ "RID_STR_TABLE_DOES_NOT_EXIST\n" "string.text" msgid "There exists no table named \"$table$\"." -msgstr "" +msgstr "Атаблица «$table$» ыҟаӡам." #: strings.src msgctxt "" @@ -322,7 +322,7 @@ "RID_STR_NAME_MUST_NOT_BE_EMPTY\n" "string.text" msgid "The name must not be empty." -msgstr "" +msgstr "Ахьӡ аҭыҧ ҭацәымзароуп." #: strings.src msgctxt "" @@ -422,7 +422,7 @@ "RID_STR_NO_DELETE_PRIVILEGE\n" "string.text" msgid "DELETE privilege not available." -msgstr "" +msgstr "Ишәымам азин аоперациа DELETE ахархәараз. " #: strings.src msgctxt "" @@ -430,7 +430,7 @@ "RID_STR_ROW_ALREADY_DELETED\n" "string.text" msgid "Current row is already deleted." -msgstr "" +msgstr "Уажәтәи анҵамҭа аныхуп." #: strings.src msgctxt "" @@ -446,7 +446,7 @@ "RID_STR_NO_INSERT_PRIVILEGE\n" "string.text" msgid "INSERT privilege not available." -msgstr "" +msgstr "Ишәымам азин аоперациа INSERT ахархәараз." #: strings.src msgctxt "" @@ -470,7 +470,7 @@ "RID_STR_NO_SQL_COMMAND\n" "string.text" msgid "No SQL command was provided." -msgstr "" +msgstr "SQL акоманда арбам." #: strings.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/dbaccess/source/ext/macromigration.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/dbaccess/source/ext/macromigration.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/dbaccess/source/ext/macromigration.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/dbaccess/source/ext/macromigration.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-07-17 17:42+0000\n" +"PO-Revision-Date: 2017-11-18 15:36+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500313334.000000\n" +"X-POOTLE-MTIME: 1511019417.000000\n" #: macromigration.src msgctxt "" @@ -21,7 +21,7 @@ "STR_STATE_CLOSE_SUB_DOCS\n" "string.text" msgid "Prepare" -msgstr "" +msgstr "Аҽазыҟаҵара" #: macromigration.src msgctxt "" @@ -29,7 +29,7 @@ "STR_STATE_BACKUP_DBDOC\n" "string.text" msgid "Backup Document" -msgstr "" +msgstr "Адокумент арезервтә копиа" #: macromigration.src msgctxt "" @@ -95,7 +95,7 @@ "STR_MOVED_LIBRARY\n" "string.text" msgid "migrated $type$ library '$old$' to '$new$'" -msgstr "" +msgstr "абиблиотека $type$ «$old$» ыиагоуп «$new$» ахь" #: macromigration.src msgctxt "" @@ -103,7 +103,7 @@ "STR_LIBRARY_TYPE_AND_NAME\n" "string.text" msgid "$type$ library '$library$'" -msgstr "" +msgstr "$type$ абиблиотека «$library$»" #: macromigration.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/dbaccess/source/ui/app.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/dbaccess/source/ui/app.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/dbaccess/source/ui/app.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/dbaccess/source/ui/app.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-07-17 17:43+0000\n" +"PO-Revision-Date: 2017-11-18 15:44+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500313422.000000\n" +"X-POOTLE-MTIME: 1511019885.000000\n" #: app.src msgctxt "" @@ -21,7 +21,7 @@ "RID_STR_NEW_FORM\n" "string.text" msgid "Create Form in Design View..." -msgstr "" +msgstr "Иаҧҵатәуп аформа адизаин арежим ала..." #: app.src msgctxt "" @@ -29,7 +29,7 @@ "RID_STR_NEW_FORM_AUTO\n" "string.text" msgid "Use Wizard to Create Form..." -msgstr "" +msgstr "Ихархәатәуп аформа аҧҵара азҟаза..." #: app.src msgctxt "" @@ -37,7 +37,7 @@ "RID_STR_NEW_REPORT_AUTO\n" "string.text" msgid "Use Wizard to Create Report..." -msgstr "" +msgstr "Ихархәатәуп аҳасабырба аҧҵара азҟаза..." #: app.src msgctxt "" @@ -45,7 +45,7 @@ "RID_STR_NEW_REPORT\n" "string.text" msgid "Create Report in Design View..." -msgstr "" +msgstr "Иаҧҵатәуп аҳасабырба адизаин арежим ала..." #: app.src msgctxt "" @@ -77,7 +77,7 @@ "RID_STR_NEW_TABLE\n" "string.text" msgid "Create Table in Design View..." -msgstr "" +msgstr "Иаҧҵатәуп атаблица адизаин арежим ала..." #: app.src msgctxt "" @@ -85,7 +85,7 @@ "RID_STR_NEW_TABLE_AUTO\n" "string.text" msgid "Use Wizard to Create Table..." -msgstr "" +msgstr "Ихархәатәуп атаблица аҧҵара азҟаза..." #: app.src msgctxt "" @@ -197,7 +197,7 @@ "STR_DATABASE\n" "string.text" msgid "Database" -msgstr "" +msgstr "Адырқәа рбаза" #: app.src msgctxt "" @@ -205,7 +205,7 @@ "STR_TASKS\n" "string.text" msgid "Tasks" -msgstr "" +msgstr "Аҳасабтәқәа" #: app.src msgctxt "" @@ -213,7 +213,7 @@ "STR_DESCRIPTION\n" "string.text" msgid "Description" -msgstr "" +msgstr "Ахҳәаа" #: app.src msgctxt "" @@ -221,7 +221,7 @@ "STR_PREVIEW\n" "string.text" msgid "Preview" -msgstr "" +msgstr "Заатәи ахәаҧшра" #: app.src msgctxt "" @@ -241,7 +241,7 @@ "RID_STR_FORM\n" "string.text" msgid "Form" -msgstr "" +msgstr "Аформа" #: app.src msgctxt "" @@ -249,7 +249,7 @@ "RID_STR_REPORT\n" "string.text" msgid "Report" -msgstr "" +msgstr "Аҳасабырба" #: app.src msgctxt "" @@ -257,7 +257,7 @@ "STR_FRM_LABEL\n" "string.text" msgid "F~orm name" -msgstr "" +msgstr "Аформа~ахьӡ" #: app.src msgctxt "" @@ -265,7 +265,7 @@ "STR_RPT_LABEL\n" "string.text" msgid "~Report name" -msgstr "" +msgstr "Аҳасабырба~ахьӡ" #: app.src msgctxt "" @@ -350,7 +350,7 @@ "STR_TBL_LABEL\n" "string.text" msgid "~Table Name" -msgstr "" +msgstr "Атаблица ахьӡ" #: app.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/dbaccess/source/ui/browser.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/dbaccess/source/ui/browser.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/dbaccess/source/ui/browser.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/dbaccess/source/ui/browser.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-07-19 08:37+0000\n" +"PO-Revision-Date: 2017-11-19 19:12+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500453477.000000\n" +"X-POOTLE-MTIME: 1511118722.000000\n" #: sbabrw.src msgctxt "" @@ -45,7 +45,7 @@ "RID_STR_CONNECTION_LOST\n" "string.text" msgid "Connection lost" -msgstr "" +msgstr "Аимадара ырӡуп" #: sbabrw.src msgctxt "" @@ -133,7 +133,7 @@ "STR_NO_TABLE_FORMAT_INSIDE\n" "string.text" msgid "No table format could be found." -msgstr "" +msgstr "Атаблица аформат аҧшаара ауам." #: sbabrw.src msgctxt "" @@ -189,7 +189,7 @@ "RID_STR_UNDO_MODIFY_RECORD\n" "string.text" msgid "Undo: Data Input" -msgstr "" +msgstr "Иаҟәыхтәуп: адырқәа рҭагалара" #: sbagrid.src msgctxt "" @@ -197,7 +197,7 @@ "RID_STR_SAVE_CURRENT_RECORD\n" "string.text" msgid "Save current record" -msgstr "Иеиқәырхатәуп уажәтәи анҵамҭа" +msgstr "Еиқәырхатәуп уажәтәи анҵамҭа" #: sbagrid.src msgctxt "" @@ -229,7 +229,7 @@ "STR_NAME_ALREADY_EXISTS\n" "string.text" msgid "The name \"#\" already exists." -msgstr "" +msgstr "Ахьӡ «#» ыҟоуп." #: sbagrid.src msgctxt "" @@ -253,7 +253,7 @@ "STR_DATASOURCE_GRIDCONTROL_NAME\n" "string.text" msgid "Data source table view" -msgstr "" +msgstr "Адырқәа рхыҵхырҭа атаблица ахәаҧшра." #: sbagrid.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/dbaccess/source/ui/dlg.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/dbaccess/source/ui/dlg.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/dbaccess/source/ui/dlg.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/dbaccess/source/ui/dlg.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-08-25 12:34+0200\n" -"PO-Revision-Date: 2017-09-18 11:07+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-27 07:32+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1505732827.000000\n" +"X-POOTLE-MTIME: 1511767926.000000\n" #: AutoControls.src msgctxt "" @@ -21,7 +21,7 @@ "STR_DBASE_PATH_OR_FILE\n" "string.text" msgid "Path to the dBASE files" -msgstr "" +msgstr "dBASE афаилқәа рахь амҩа" #: AutoControls.src msgctxt "" @@ -29,7 +29,7 @@ "STR_FLAT_PATH_OR_FILE\n" "string.text" msgid "Path to the text files" -msgstr "" +msgstr "Атеқсттә фаилқәа рахь амҩа" #: AutoControls.src msgctxt "" @@ -37,7 +37,7 @@ "STR_CALC_PATH_OR_FILE\n" "string.text" msgid "Path to the spreadsheet document" -msgstr "" +msgstr "Аелектронтә таблицақәа рахь амҩа" #: AutoControls.src msgctxt "" @@ -93,7 +93,7 @@ "STR_HOSTNAME\n" "string.text" msgid "~Host name" -msgstr "" +msgstr "Акомпиутер ахьӡ" #: AutoControls.src msgctxt "" @@ -101,7 +101,7 @@ "STR_MOZILLA_PROFILE_NAME\n" "string.text" msgid "~Mozilla profile name" -msgstr "" +msgstr "Mozilla ~Апрофиль" #: AutoControls.src msgctxt "" @@ -109,7 +109,7 @@ "STR_THUNDERBIRD_PROFILE_NAME\n" "string.text" msgid "~Thunderbird profile name" -msgstr "" +msgstr "Thunderbird ~Апрофиль" #: AutoControls.src msgctxt "" @@ -133,7 +133,7 @@ "STR_CONNECTION_TEST\n" "string.text" msgid "Connection Test" -msgstr "" +msgstr "Аимадара атест" #: ConnectionPage.src msgctxt "" @@ -141,7 +141,7 @@ "STR_CONNECTION_SUCCESS\n" "string.text" msgid "The connection was established successfully." -msgstr "" +msgstr "Аимадара қәҿиарала ишьақәыргылоуп." #: ConnectionPage.src msgctxt "" @@ -149,7 +149,7 @@ "STR_CONNECTION_NO_SUCCESS\n" "string.text" msgid "The connection could not be established." -msgstr "" +msgstr "Иауам аимадара ашьақәыргылара." #: ConnectionPage.src msgctxt "" @@ -157,7 +157,7 @@ "STR_JDBCDRIVER_SUCCESS\n" "string.text" msgid "The JDBC driver was loaded successfully." -msgstr "" +msgstr "JDBC адраивер қәҿиарала иҭагалоуп." #: ConnectionPage.src msgctxt "" @@ -165,7 +165,7 @@ "STR_JDBCDRIVER_NO_SUCCESS\n" "string.text" msgid "The JDBC driver could not be loaded." -msgstr "" +msgstr "JDBC адраивер ҭагалаӡам." #: ConnectionPage.src msgctxt "" @@ -197,7 +197,7 @@ "STR_QUERY_USERADMIN_DELETE_USER\n" "string.text" msgid "Do you really want to delete the user?" -msgstr "" +msgstr "Даныхтәума ари ахархәаҩ?" #: UserAdmin.src msgctxt "" @@ -213,7 +213,7 @@ "STR_ERROR_PASSWORDS_NOT_IDENTICAL\n" "string.text" msgid "The passwords do not match. Please enter the password again." -msgstr "" +msgstr "Ажәамаӡақәа еиқәшәаӡом. Даҽазнык иҭажәгал ажәамаӡа." #: dbadmin.src msgctxt "" @@ -333,7 +333,7 @@ "STR_ALREADYEXISTOVERWRITE\n" "string.text" msgid "The file already exists. Overwrite?" -msgstr "" +msgstr "Ари афаил ыҟоуп. Ихҩылаатәума?" #: dbadmin2.src msgctxt "" @@ -349,7 +349,7 @@ "STR_DBWIZARDTITLE\n" "string.text" msgid "Database Wizard" -msgstr "" +msgstr "Адырқәа рбаза азҟаза" #: dbadminsetup.src msgctxt "" @@ -461,7 +461,7 @@ "STR_PAGETITLE_FINAL\n" "string.text" msgid "Save and proceed" -msgstr "Иеиқәырхатәуп иагьынагӡатәуп" +msgstr "Еиқәырхатәуп иагьынагӡатәуп" #: dbadminsetup.src msgctxt "" @@ -469,7 +469,7 @@ "STR_DATABASEDEFAULTNAME\n" "string.text" msgid "New Database" -msgstr "Адырқәа рбаза Ҿыц" +msgstr "Адырқәа рбаза ҿыц" #: dbadminsetup.src msgctxt "" @@ -543,7 +543,7 @@ "STR_TEXT_PATH_OR_FILE\n" "string.text" msgid "Path to text files" -msgstr "" +msgstr "Атеқсттә фаилқәа рахь амҩа" #: dbadminsetup.src msgctxt "" @@ -675,7 +675,7 @@ "STR_SPREADSHEETPATH\n" "string.text" msgid "~Location and file name" -msgstr "" +msgstr "~Афаил ахьыҟоу аҭыҧи иахьӡуи" #: directsql.src msgctxt "" @@ -707,7 +707,7 @@ "STR_TAB_INDEX_FIELD\n" "string.text" msgid "Index field" -msgstr "" +msgstr "Аиндекс аҭакыра" #: indexdialog.src msgctxt "" @@ -715,7 +715,7 @@ "STR_ORDER_ASCENDING\n" "string.text" msgid "Ascending" -msgstr "" +msgstr "Еиҵоу-еиҳаула" #: indexdialog.src msgctxt "" @@ -723,7 +723,7 @@ "STR_ORDER_DESCENDING\n" "string.text" msgid "Descending" -msgstr "" +msgstr "Еиҳау-еиҵоула" #: indexdialog.src msgctxt "" @@ -739,7 +739,7 @@ "STR_LOGICAL_INDEX_NAME\n" "string.text" msgid "index" -msgstr "" +msgstr "аиндекс" #: indexdialog.src msgctxt "" @@ -787,7 +787,7 @@ "STR_EXCEPTION_ERRORCODE\n" "string.text" msgid "Error code" -msgstr "" +msgstr "Агха акод" #: sqlmessage.src msgctxt "" @@ -803,7 +803,7 @@ "STR_EXCEPTION_ERROR\n" "string.text" msgid "Error" -msgstr "" +msgstr "Агха" #: sqlmessage.src msgctxt "" @@ -811,7 +811,7 @@ "STR_EXCEPTION_WARNING\n" "string.text" msgid "Warning" -msgstr "" +msgstr "Агәаҽанҵара" #: sqlmessage.src msgctxt "" @@ -819,7 +819,7 @@ "STR_EXCEPTION_INFO\n" "string.text" msgid "Information" -msgstr "" +msgstr "Аинформациа" #: sqlmessage.src msgctxt "" @@ -827,4 +827,4 @@ "STR_EXCEPTION_DETAILS\n" "string.text" msgid "Details" -msgstr "" +msgstr "Хәҭа-хәҭала" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/dbaccess/source/ui/misc.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/dbaccess/source/ui/misc.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/dbaccess/source/ui/misc.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/dbaccess/source/ui/misc.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n" -"PO-Revision-Date: 2017-07-17 18:09+0000\n" +"PO-Revision-Date: 2017-11-18 16:02+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500314987.000000\n" +"X-POOTLE-MTIME: 1511020972.000000\n" #: WizardPages.src msgctxt "" @@ -21,7 +21,7 @@ "STR_WIZ_COLUMN_SELECT_TITEL\n" "string.text" msgid "Apply columns" -msgstr "" +msgstr "Аҭакырақәа ралхра" #: WizardPages.src msgctxt "" @@ -29,7 +29,7 @@ "STR_WIZ_TYPE_SELECT_TITEL\n" "string.text" msgid "Type formatting" -msgstr "" +msgstr "Аҭакырақәа ртипқәа" #: WizardPages.src msgctxt "" @@ -71,7 +71,7 @@ "STR_WIZ_PB_OK\n" "string.text" msgid "C~reate" -msgstr "" +msgstr "~Ихиоуп" #: WizardPages.src msgctxt "" @@ -79,7 +79,7 @@ "STR_WIZ_TABLE_COPY\n" "string.text" msgid "Copy table" -msgstr "" +msgstr "Акопиахыхра" #: WizardPages.src msgctxt "" @@ -87,7 +87,7 @@ "STR_COPYTABLE_TITLE_COPY\n" "string.text" msgid "Copy table" -msgstr "" +msgstr "Акопиахыхра" #: WizardPages.src msgctxt "" @@ -143,7 +143,7 @@ "STR_COULDNOTOPEN_LINKEDDOC\n" "string.text" msgid "The document \"$file$\" could not be opened." -msgstr "" +msgstr "Адокумент «$file$» аартра ауам." #: dbumiscres.src msgctxt "" @@ -191,7 +191,7 @@ "STR_FILE_DOES_NOT_EXIST\n" "string.text" msgid "The file \"$file$\" does not exist." -msgstr "" +msgstr "Афаил «$file$» ыҟаӡам." #: dbumiscres.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/dbaccess/source/ui/querydesign.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/dbaccess/source/ui/querydesign.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/dbaccess/source/ui/querydesign.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/dbaccess/source/ui/querydesign.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n" -"PO-Revision-Date: 2017-07-17 18:12+0000\n" +"PO-Revision-Date: 2017-11-21 09:56+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500315133.000000\n" +"X-POOTLE-MTIME: 1511258205.000000\n" #: query.src msgctxt "" @@ -93,7 +93,7 @@ "STR_QUERY_UNDO_TABWINDELETE\n" "string.text" msgid "Delete Table Window" -msgstr "" +msgstr "Ианыхтәуп атаблица аҧенџьыр" #: query.src msgctxt "" @@ -101,7 +101,7 @@ "STR_QUERY_UNDO_MODIFY_CELL\n" "string.text" msgid "Edit Column Description" -msgstr "" +msgstr "Иҧсахтәуп аиҵагыла ахҳәаа" #: query.src msgctxt "" @@ -109,7 +109,7 @@ "STR_QUERY_UNDO_SIZE_COLUMN\n" "string.text" msgid "Adjust column width" -msgstr "" +msgstr "Иҧсахтәуп аиҵагыла аҭбаара" #: query.src msgctxt "" @@ -133,7 +133,7 @@ "STR_QUERY_NOTABLE\n" "string.text" msgid "(no table)" -msgstr "" +msgstr "(таблицада)" #: query.src msgctxt "" @@ -197,7 +197,7 @@ "STR_QRY_NOSELECT\n" "string.text" msgid "Nothing has been selected." -msgstr "" +msgstr "Акагьы алкааӡам." #: query.src msgctxt "" @@ -221,7 +221,7 @@ "STR_QRY_TOO_MANY_TABLES\n" "string.text" msgid "There are too many tables." -msgstr "" +msgstr "Атаблицақәа мыцхәцәоуп." #: query.src msgctxt "" @@ -285,7 +285,7 @@ "STR_QRY_COLUMN_NOT_FOUND\n" "string.text" msgid "The column '$name$' is unknown." -msgstr "" +msgstr "Аиҵагыла «$name$» ҧшаам." #: query.src msgctxt "" @@ -321,6 +321,8 @@ "$object$ has been changed.\n" "Do you want to save the changes?" msgstr "" +"Аобиеқт $object$ ҧсахын.\n" +"Еиқәырхатәума аҧсахрақәа?" #. For $object$, one of the values of the RSC_QUERY_OBJECT_TYPE resource (except "SQL command", which doesn't make sense here) will be inserted. #: query.src @@ -338,7 +340,7 @@ "STR_INFO_OPENING_IN_SQL_VIEW\n" "string.text" msgid "$object$ will be opened in SQL view." -msgstr "" +msgstr "Аобиеқт $object$ аартхоит SQL арежим ала." #: query.src msgctxt "" @@ -365,7 +367,7 @@ "The SQL statement\n" "itemlist.text" msgid "The SQL statement" -msgstr "" +msgstr "SQL аинструкциа" #: query.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/dbaccess/source/ui/tabledesign.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/dbaccess/source/ui/tabledesign.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/dbaccess/source/ui/tabledesign.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/dbaccess/source/ui/tabledesign.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n" -"PO-Revision-Date: 2017-07-17 18:17+0000\n" +"PO-Revision-Date: 2017-11-18 15:52+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500315437.000000\n" +"X-POOTLE-MTIME: 1511020327.000000\n" #: table.src msgctxt "" @@ -61,7 +61,7 @@ "STR_TAB_FIELD_NAME\n" "string.text" msgid "Field name" -msgstr "" +msgstr "Аҭакыра ахьӡ" #: table.src msgctxt "" @@ -69,7 +69,7 @@ "STR_TAB_FIELD_COLUMN_NAME\n" "string.text" msgid "Field Name" -msgstr "" +msgstr "Аҭакыра ахьӡ" #: table.src msgctxt "" @@ -77,7 +77,7 @@ "STR_TAB_FIELD_DATATYPE\n" "string.text" msgid "Field ~type" -msgstr "" +msgstr "Аҭакыра атип" #: table.src msgctxt "" @@ -85,7 +85,7 @@ "STR_TAB_FIELD_COLUMN_DATATYPE\n" "string.text" msgid "Field Type" -msgstr "" +msgstr "Аҭакыра атип" #: table.src msgctxt "" @@ -93,7 +93,7 @@ "STR_TAB_HELP_TEXT\n" "string.text" msgid "Description" -msgstr "" +msgstr "Ахҳәаа" #: table.src msgctxt "" @@ -101,7 +101,7 @@ "STR_COLUMN_DESCRIPTION\n" "string.text" msgid "Column Description" -msgstr "" +msgstr "Аиҵагыла ахҳәаа" #: table.src msgctxt "" @@ -117,7 +117,7 @@ "STR_TAB_PROPERTIES\n" "string.text" msgid "Field Properties" -msgstr "" +msgstr "Аҭакыра аҷыдаҟазшьақәа" #: table.src msgctxt "" @@ -141,7 +141,7 @@ "STR_TABED_UNDO_TYPE_CHANGED\n" "string.text" msgid "Modify field type" -msgstr "" +msgstr "Иҧсахтәуп аҭакыра атип" #: table.src msgctxt "" @@ -189,7 +189,7 @@ "STR_NUMERIC_TYPE\n" "string.text" msgid "~Type" -msgstr "Ахкы" +msgstr "Атип" #: table.src msgctxt "" @@ -213,7 +213,7 @@ "STR_FORMAT\n" "string.text" msgid "Format example" -msgstr "" +msgstr "Аформат аҿырҧштәы" #: table.src msgctxt "" @@ -258,7 +258,7 @@ "STR_HELP_NUMERIC_TYPE\n" "string.text" msgid "Enter the number format." -msgstr "" +msgstr "Иҭажәгал ахыҧхьаӡара аформат." #: table.src msgctxt "" @@ -308,7 +308,6 @@ msgstr "" #: table.src -#, fuzzy msgctxt "" "table.src\n" "STR_BUTTON_FORMAT\n" @@ -346,7 +345,7 @@ "STR_COLUMN_NAME\n" "string.text" msgid "Column" -msgstr "" +msgstr "Аиҵагыла" #: table.src msgctxt "" @@ -461,7 +460,7 @@ "STR_CHANGE_COLUMN_NAME\n" "string.text" msgid "change field name" -msgstr "" +msgstr "иҧсахтәуп аҭакыра ахьӡ" #: table.src msgctxt "" @@ -469,7 +468,7 @@ "STR_CHANGE_COLUMN_TYPE\n" "string.text" msgid "change field type" -msgstr "" +msgstr "иҧсахтәуп аҭакыра атип" #: table.src msgctxt "" @@ -477,7 +476,7 @@ "STR_CHANGE_COLUMN_DESCRIPTION\n" "string.text" msgid "change field description" -msgstr "" +msgstr "иҧсахтәуп аҭакыра ахҳәаа" #: table.src msgctxt "" @@ -485,4 +484,4 @@ "STR_CHANGE_COLUMN_ATTRIBUTE\n" "string.text" msgid "change field attribute" -msgstr "" +msgstr "иҧсахтәуп аҭакыра атрибут" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/dbaccess/uiconfig/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/dbaccess/uiconfig/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/dbaccess/uiconfig/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/dbaccess/uiconfig/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n" -"PO-Revision-Date: 2017-09-18 11:07+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-30 10:12+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1505732834.000000\n" +"X-POOTLE-MTIME: 1512036731.000000\n" #: admindialog.ui msgctxt "" @@ -67,7 +67,7 @@ "label\n" "string.text" msgid "Existing Columns" -msgstr "" +msgstr "Аҭакырақәа" #: authentificationpage.ui msgctxt "" @@ -139,7 +139,7 @@ "label\n" "string.text" msgid "Backup Your Document" -msgstr "" +msgstr "Адокумент арезервтә копиа" #: backuppage.ui msgctxt "" @@ -166,7 +166,7 @@ "label\n" "string.text" msgid "Save to:" -msgstr "Иеиқәырхатәуп абра:" +msgstr "Еиқәырхатәуп абра:" #: backuppage.ui msgctxt "" @@ -202,7 +202,7 @@ "label\n" "string.text" msgid "Choose a data source:" -msgstr "" +msgstr "Иалышәх адырқәа рхыҵхырҭа:" #: collectionviewdialog.ui msgctxt "" @@ -211,7 +211,7 @@ "title\n" "string.text" msgid "Save" -msgstr "Иеиқәырхатәуп" +msgstr "Еиқәырхатәуп" #: collectionviewdialog.ui msgctxt "" @@ -220,7 +220,7 @@ "label\n" "string.text" msgid "_Save" -msgstr "Иеиқәырхатәуп" +msgstr "Еиқәырхатәуп" #: collectionviewdialog.ui msgctxt "" @@ -283,7 +283,7 @@ "label\n" "string.text" msgid "Path to the dBASE files:" -msgstr "" +msgstr "dBASE афаилқәа рахь амҩа:" #: connectionpage.ui msgctxt "" @@ -346,7 +346,7 @@ "label\n" "string.text" msgid "_JDBC driver class:" -msgstr "" +msgstr "JDBC адраивер акласс:" #: connectionpage.ui msgctxt "" @@ -355,7 +355,7 @@ "label\n" "string.text" msgid "Test Class" -msgstr "" +msgstr "Акласс атест" #: connectionpage.ui msgctxt "" @@ -382,7 +382,7 @@ "label\n" "string.text" msgid "De_finition and data" -msgstr "" +msgstr "Адырқәеи аструктуреи" #: copytablepage.ui msgctxt "" @@ -535,7 +535,7 @@ "label\n" "string.text" msgid "Display deleted records as well" -msgstr "" +msgstr "Иаарҧшлатәуп ианыху анҵамҭақәа" #: dbasepage.ui msgctxt "" @@ -580,7 +580,7 @@ "label\n" "string.text" msgid "Path to the dBASE files:" -msgstr "" +msgstr "dBASE афаилқәа рахь амҩа:" #: dbwizconnectionpage.ui msgctxt "" @@ -618,7 +618,7 @@ "label\n" "string.text" msgid "Connect using ODBC (Open Database Connectivity)" -msgstr "" +msgstr "Аимадара ODBC ала (Open Database Connectivity)" #: dbwizmysqlintropage.ui msgctxt "" @@ -636,7 +636,7 @@ "label\n" "string.text" msgid "Connect directly" -msgstr "" +msgstr "Ишиашо аимадара" #: dbwizmysqlintropage.ui msgctxt "" @@ -735,7 +735,7 @@ "text\n" "string.text" msgid "Do you want to save the changes?" -msgstr "" +msgstr "Еиқәырхатәума аҧсахрақәа?" #: designsavemodifieddialog.ui msgctxt "" @@ -762,7 +762,7 @@ "label\n" "string.text" msgid "_Command to execute:" -msgstr "" +msgstr "_Зыныгӡара иаҿу акоманда:" #: directsqldialog.ui msgctxt "" @@ -771,7 +771,7 @@ "label\n" "string.text" msgid "_Show output of \"select\" statements" -msgstr "" +msgstr "Иаарҧштәуп аоператорқәа рҭыгара \"SELECT\"" #: directsqldialog.ui msgctxt "" @@ -780,7 +780,7 @@ "label\n" "string.text" msgid "_Execute" -msgstr "" +msgstr "Инагӡатәуп" #: directsqldialog.ui msgctxt "" @@ -789,7 +789,7 @@ "label\n" "string.text" msgid "_Previous commands:" -msgstr "" +msgstr "_Уаанӡатәи акомандақәа:" #: directsqldialog.ui msgctxt "" @@ -825,7 +825,7 @@ "title\n" "string.text" msgid "Field Format" -msgstr "" +msgstr "Аҭакыра аформат" #: fielddialog.ui msgctxt "" @@ -897,7 +897,7 @@ "label\n" "string.text" msgid "After the database file has been saved, what do you want to do?" -msgstr "" +msgstr "Иҟаҵатәуи адырқәа рбаза аиқәырхара ашьҭахь?" #: finalpagewizard.ui msgctxt "" @@ -906,7 +906,7 @@ "label\n" "string.text" msgid "Open the database for editing" -msgstr "" +msgstr "Иаарттәуп абаза аредакциазуразы" #: finalpagewizard.ui msgctxt "" @@ -915,7 +915,7 @@ "label\n" "string.text" msgid "Create tables using the table wizard" -msgstr "" +msgstr "Иаҧҵатәуп атаблицақәа азҟаза ахархәарала" #: finalpagewizard.ui msgctxt "" @@ -924,7 +924,7 @@ "label\n" "string.text" msgid "Click 'Finish' to save the database." -msgstr "" +msgstr "Шәақәыӷәӷәа «Ихиоуп» адырқәа рбаза аиқәырхараз." #: generalpagedialog.ui msgctxt "" @@ -942,7 +942,7 @@ "label\n" "string.text" msgid "Database _type:" -msgstr "" +msgstr "Адырқәа рбаза атип:" #: generalpagedialog.ui msgctxt "" @@ -981,7 +981,7 @@ "label\n" "string.text" msgid "What do you want to do?" -msgstr "" +msgstr "Иҟашәҵарц ишәҭахузеи?" #: generalpagewizard.ui msgctxt "" @@ -1008,7 +1008,7 @@ "label\n" "string.text" msgid "Open an existing database _file" -msgstr "" +msgstr "Иаарттәуп иҟоу адырқәа рбаза афаил" #: generalpagewizard.ui msgctxt "" @@ -1080,7 +1080,7 @@ "label\n" "string.text" msgid "Test Class" -msgstr "" +msgstr "Акласс атест" #: generalspecialjdbcdetailspage.ui msgctxt "" @@ -1098,7 +1098,7 @@ "label\n" "string.text" msgid "_Character set:" -msgstr "" +msgstr "Акодркра:" #: generalspecialjdbcdetailspage.ui msgctxt "" @@ -1188,7 +1188,7 @@ "label\n" "string.text" msgid "Save Current Index" -msgstr "Иеиқырхатәуп уажәтәи аиндекс" +msgstr "Еиқырхатәуп уажәтәи аиндекс" #: indexdesigndialog.ui msgctxt "" @@ -1224,7 +1224,7 @@ "label\n" "string.text" msgid "Fields:" -msgstr "" +msgstr "Аҭакырақәа" #: indexdesigndialog.ui msgctxt "" @@ -1260,7 +1260,7 @@ "label\n" "string.text" msgid "Path to the dBASE files:" -msgstr "" +msgstr "dBASE афаилқәа рахь амҩа:" #: jdbcconnectionpage.ui msgctxt "" @@ -1296,7 +1296,7 @@ "label\n" "string.text" msgid "_Test Class" -msgstr "" +msgstr "Акласс атест" #: joindialog.ui msgctxt "" @@ -1332,7 +1332,7 @@ "label\n" "string.text" msgid "_Type:" -msgstr "Ахкы:" +msgstr "Атип:" #: joindialog.ui msgctxt "" @@ -1602,7 +1602,7 @@ "label\n" "string.text" msgid "Current object:" -msgstr "" +msgstr "Уажәтәи аобиеқт:" #: mysqlnativepage.ui msgctxt "" @@ -1683,7 +1683,7 @@ "label\n" "string.text" msgid "_Server:" -msgstr "" +msgstr "Асервер:" #: mysqlnativesettings.ui msgctxt "" @@ -1710,7 +1710,7 @@ "label\n" "string.text" msgid "So_cket:" -msgstr "" +msgstr "Асокет:" #: mysqlnativesettings.ui msgctxt "" @@ -1746,7 +1746,7 @@ "label\n" "string.text" msgid "Source table: " -msgstr "" +msgstr "Ахалагаратә таблица: " #: namematchingpage.ui msgctxt "" @@ -1791,7 +1791,7 @@ "label\n" "string.text" msgid "Use catalog for file-based databases" -msgstr "" +msgstr "Ихархәатәуп акаталог ифаилтәқәоу адырқәа рбазақәа рзы" #: odbcpage.ui msgctxt "" @@ -1872,7 +1872,7 @@ "label\n" "string.text" msgid "_Confirm password:" -msgstr "" +msgstr "Ишьақәшәырӷәӷәа ажәамаӡа:" #: password.ui msgctxt "" @@ -1881,7 +1881,7 @@ "label\n" "string.text" msgid "User “$name$: $”" -msgstr "" +msgstr "Ахархәаҩ «$name$: $»" #: preparepage.ui msgctxt "" @@ -1924,7 +1924,7 @@ "label\n" "string.text" msgid "Column _Width..." -msgstr "" +msgstr "Аиҵагыла аҭбаара..." #: querycolmenu.ui msgctxt "" @@ -1960,7 +1960,7 @@ "label\n" "string.text" msgid "Field name" -msgstr "" +msgstr "Аҭакыра ахьӡ" #: queryfilterdialog.ui msgctxt "" @@ -2041,7 +2041,7 @@ "6\n" "stringlist.text" msgid "like" -msgstr "" +msgstr "абас" #: queryfilterdialog.ui msgctxt "" @@ -2104,7 +2104,7 @@ "0\n" "stringlist.text" msgid "AND" -msgstr "" +msgstr "ИИ" #: queryfilterdialog.ui msgctxt "" @@ -2122,7 +2122,7 @@ "0\n" "stringlist.text" msgid "AND" -msgstr "" +msgstr "ИИ" #: queryfilterdialog.ui msgctxt "" @@ -2140,7 +2140,7 @@ "label\n" "string.text" msgid "Criteria" -msgstr "" +msgstr "Акритери" #: queryfuncmenu.ui msgctxt "" @@ -2167,7 +2167,7 @@ "label\n" "string.text" msgid "Alias" -msgstr "" +msgstr "Ахьӡырҩашьа" #: queryfuncmenu.ui msgctxt "" @@ -2392,7 +2392,7 @@ "title\n" "string.text" msgid "Row Height" -msgstr "" +msgstr "Ацәаҳәа аҳаракыра" #: rowheightdialog.ui msgctxt "" @@ -2428,7 +2428,7 @@ "title\n" "string.text" msgid "Save As" -msgstr "Иеиқәырхатәуп иаба(ишҧа)" +msgstr "Еиқәырхатәуп иаба(ишҧа)" #: savedialog.ui msgctxt "" @@ -2455,7 +2455,7 @@ "label\n" "string.text" msgid "_Schema:" -msgstr "" +msgstr "А_схема:" #: saveindexdialog.ui msgctxt "" @@ -2473,7 +2473,7 @@ "text\n" "string.text" msgid "Do you want to save the changes made to the current index?" -msgstr "" +msgstr "Еиқәырхатәума аҧсахрақәа уажәтәи аиндекс аҟны?" #: savemodifieddialog.ui msgctxt "" @@ -2482,7 +2482,7 @@ "text\n" "string.text" msgid "Do you want to save the changes?" -msgstr "Иеиқәырхатәума аҧсахрақәа?" +msgstr "Еиқәырхатәума аҧсахрақәа?" #: savemodifieddialog.ui msgctxt "" @@ -2509,7 +2509,7 @@ "label\n" "string.text" msgid "Operator" -msgstr "" +msgstr "Аоператорқәа" #: sortdialog.ui msgctxt "" @@ -2536,7 +2536,7 @@ "label\n" "string.text" msgid "Field name" -msgstr "" +msgstr "Аҭакыра ахьӡ" #: sortdialog.ui msgctxt "" @@ -2554,7 +2554,7 @@ "0\n" "stringlist.text" msgid "ascending" -msgstr "" +msgstr "Еиҵоу-еиҳаула" #: sortdialog.ui msgctxt "" @@ -2563,7 +2563,7 @@ "1\n" "stringlist.text" msgid "descending" -msgstr "" +msgstr "еиҳау-еиҵоула" #: sortdialog.ui msgctxt "" @@ -2572,7 +2572,7 @@ "0\n" "stringlist.text" msgid "ascending" -msgstr "" +msgstr "еиҵоу-еиҳаула" #: sortdialog.ui msgctxt "" @@ -2581,7 +2581,7 @@ "1\n" "stringlist.text" msgid "descending" -msgstr "" +msgstr "еиҳау-еиҵоула" #: sortdialog.ui msgctxt "" @@ -2590,7 +2590,7 @@ "0\n" "stringlist.text" msgid "ascending" -msgstr "" +msgstr "еиҵоу-еиҳаула" #: sortdialog.ui msgctxt "" @@ -2599,7 +2599,7 @@ "1\n" "stringlist.text" msgid "descending" -msgstr "" +msgstr "еиҳау-еиҵоула" #: sortdialog.ui msgctxt "" @@ -2635,7 +2635,7 @@ "label\n" "string.text" msgid "_Database name:" -msgstr "" +msgstr "Адырқәа рбаза ахьӡ:" #: specialjdbcconnectionpage.ui msgctxt "" @@ -2644,7 +2644,7 @@ "label\n" "string.text" msgid "_Server:" -msgstr "" +msgstr "Асервер:" #: specialjdbcconnectionpage.ui msgctxt "" @@ -2653,7 +2653,7 @@ "label\n" "string.text" msgid "_Port number:" -msgstr "" +msgstr "Апорт:" #: specialjdbcconnectionpage.ui msgctxt "" @@ -2680,7 +2680,7 @@ "label\n" "string.text" msgid "_Test Class" -msgstr "" +msgstr "Акласс атест" #: specialsettingspage.ui msgctxt "" @@ -2689,7 +2689,7 @@ "label\n" "string.text" msgid "Use SQL92 naming constraints" -msgstr "" +msgstr "Ихархәатәуп астандарт SQL92" #: specialsettingspage.ui msgctxt "" @@ -2842,7 +2842,7 @@ "0\n" "stringlist.text" msgid "Default" -msgstr "" +msgstr "Астандарт" #: specialsettingspage.ui msgctxt "" @@ -2851,7 +2851,7 @@ "1\n" "stringlist.text" msgid "SQL" -msgstr "" +msgstr "SQL" #: specialsettingspage.ui msgctxt "" @@ -2869,7 +2869,7 @@ "3\n" "stringlist.text" msgid "MS Access" -msgstr "" +msgstr "MS Access" #: specialsettingspage.ui msgctxt "" @@ -2905,7 +2905,7 @@ "label\n" "string.text" msgid "_Description:" -msgstr "" +msgstr "Ахҳәаа:" #: summarypage.ui msgctxt "" @@ -2914,7 +2914,7 @@ "label\n" "string.text" msgid "Summary" -msgstr "" +msgstr "Аихшьалақәа" #: summarypage.ui msgctxt "" @@ -2941,7 +2941,7 @@ "label\n" "string.text" msgid "Cu_t" -msgstr "" +msgstr "Игәылҧҟатәуп" #: tabledesignrowmenu.ui msgctxt "" @@ -2950,7 +2950,7 @@ "label\n" "string.text" msgid "_Copy" -msgstr "" +msgstr "Акопиа ахыхтәуп" #: tabledesignrowmenu.ui msgctxt "" @@ -2959,7 +2959,7 @@ "label\n" "string.text" msgid "_Paste" -msgstr "" +msgstr "Ибжьаргылатәуп" #: tabledesignrowmenu.ui msgctxt "" @@ -2968,7 +2968,7 @@ "label\n" "string.text" msgid "_Delete" -msgstr "" +msgstr "Ианыхтәуп" #: tabledesignrowmenu.ui msgctxt "" @@ -2977,7 +2977,7 @@ "label\n" "string.text" msgid "Insert Rows" -msgstr "" +msgstr "Ибжьаргылатәуп ацәаҳәақәа" #: tabledesignrowmenu.ui msgctxt "" @@ -2995,7 +2995,7 @@ "text\n" "string.text" msgid "Do you want to save the changes?" -msgstr "Иеиқәырхатәума аҧсахрақәа?" +msgstr "Еиқәырхатәума аҧсахрақәа?" #: tabledesignsavemodifieddialog.ui msgctxt "" @@ -3004,7 +3004,7 @@ "secondary_text\n" "string.text" msgid "The table has been changed." -msgstr "" +msgstr "Атаблица ҧсахуп." #: tablesfilterdialog.ui msgctxt "" @@ -3013,7 +3013,7 @@ "title\n" "string.text" msgid "Tables Filter" -msgstr "" +msgstr "Атаблицақәа рфильтр" #: tablesfilterpage.ui msgctxt "" @@ -3031,7 +3031,7 @@ "label\n" "string.text" msgid "Tables and Table Filter" -msgstr "" +msgstr "Атаблицақәеи атаблицақәа рфильтри" #: tablesjoindialog.ui msgctxt "" @@ -3040,7 +3040,7 @@ "label\n" "string.text" msgid "Tables" -msgstr "" +msgstr "Атаблицақәа" #: tablesjoindialog.ui msgctxt "" @@ -3058,7 +3058,7 @@ "label\n" "string.text" msgid "Add Tables" -msgstr "" +msgstr "Иацҵатәуп атаблицақәа" #: tablesjoindialog.ui msgctxt "" @@ -3085,7 +3085,7 @@ "label\n" "string.text" msgid "Plain text files (*.txt)" -msgstr "" +msgstr "Атеқст мариа (*.txt)" #: textpage.ui msgctxt "" @@ -3103,7 +3103,7 @@ "label\n" "string.text" msgid "Custom:" -msgstr "" +msgstr "Даҽакы:" #: textpage.ui msgctxt "" @@ -3112,7 +3112,7 @@ "label\n" "string.text" msgid "Custom: *.abc" -msgstr "" +msgstr "Даҽакы: *.abc" #: textpage.ui msgctxt "" @@ -3121,7 +3121,7 @@ "label\n" "string.text" msgid "Specify the Type of Files You Want to Access" -msgstr "" +msgstr "Иашәырба ишәҭаху афаилқәа ртип" #: textpage.ui msgctxt "" @@ -3130,7 +3130,7 @@ "label\n" "string.text" msgid "_Text contains headers" -msgstr "" +msgstr "_Атеқст иаҵанакуеит аҭакырақәа рыхьӡқәа" #: textpage.ui msgctxt "" @@ -3139,7 +3139,7 @@ "label\n" "string.text" msgid "Field separator:" -msgstr "" +msgstr "Аҭакырақәа реиҟәшага:" #: textpage.ui msgctxt "" @@ -3148,7 +3148,7 @@ "label\n" "string.text" msgid "Text separator:" -msgstr "" +msgstr "Атеқстқәа реиҟәшага:" #: textpage.ui msgctxt "" @@ -3157,7 +3157,7 @@ "label\n" "string.text" msgid "Decimal separator:" -msgstr "" +msgstr "Ижәабатәу аиҟәшага:" #: textpage.ui msgctxt "" @@ -3235,7 +3235,7 @@ "label\n" "string.text" msgid "Row Format" -msgstr "" +msgstr "Ацәаҳәа аформат" #: textpage.ui msgctxt "" @@ -3244,7 +3244,7 @@ "label\n" "string.text" msgid "_Character set:" -msgstr "" +msgstr "Акодркра:" #: textpage.ui msgctxt "" @@ -3343,7 +3343,7 @@ "label\n" "string.text" msgid "_Delete User..." -msgstr "" +msgstr "_Даныхтәуп ахархәаҩ..." #: useradminpage.ui msgctxt "" @@ -3352,7 +3352,7 @@ "label\n" "string.text" msgid "User Selection" -msgstr "" +msgstr "Ахархәаҩ иалхра" #: useradminpage.ui msgctxt "" @@ -3415,7 +3415,7 @@ "label\n" "string.text" msgid "_Character set:" -msgstr "" +msgstr "Акодркра:" #: userdetailspage.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/desktop/source/app.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/desktop/source/app.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/desktop/source/app.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/desktop/source/app.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2014-11-18 11:09+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-17 11:38+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1416308995.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510918703.000000\n" #: desktop.src msgctxt "" @@ -45,7 +45,7 @@ "STR_BOOTSTRAP_ERR_INTERNAL\n" "string.text" msgid "An internal error occurred." -msgstr "" +msgstr "Аҩныҵҟатәи агха." #: desktop.src msgctxt "" @@ -53,7 +53,7 @@ "STR_BOOTSTRAP_ERR_FILE_CORRUPT\n" "string.text" msgid "The configuration file \"$1\" is corrupt." -msgstr "" +msgstr "Аконфигурациатә фаил «$1» ҧхасҭоуп." #: desktop.src msgctxt "" @@ -61,7 +61,7 @@ "STR_BOOTSTRAP_ERR_FILE_MISSING\n" "string.text" msgid "The configuration file \"$1\" was not found." -msgstr "" +msgstr "Аконфигурациатә фаил «$1» ҧшаам." #: desktop.src msgctxt "" @@ -156,7 +156,7 @@ "STR_TITLE_USERDATALOCKED\n" "string.text" msgid "%PRODUCTNAME %PRODUCTVERSION" -msgstr "" +msgstr "%PRODUCTNAME %PRODUCTVERSION" #: desktop.src msgctxt "" @@ -164,7 +164,7 @@ "STR_ERR_PRINTDISABLED\n" "string.text" msgid "Printing is disabled. No documents can be printed." -msgstr "" +msgstr "Акьыҧхьра аҿыхуп. Адокументқәа ркьыҧхьра залшом." #: desktop.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/desktop/source/deployment/gui.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/desktop/source/deployment/gui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/desktop/source/deployment/gui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/desktop/source/deployment/gui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-20 13:55+0200\n" -"PO-Revision-Date: 2017-07-18 20:04+0000\n" +"PO-Revision-Date: 2017-11-27 07:32+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500408251.000000\n" +"X-POOTLE-MTIME: 1511767961.000000\n" #: dp_gui_dialog.src msgctxt "" @@ -239,7 +239,7 @@ "RID_DLG_UPDATE_NONE\n" "string.text" msgid "No new updates are available." -msgstr "" +msgstr "Арҿыцрақәа ыҟаӡам." #: dp_gui_updatedialog.src msgctxt "" @@ -303,7 +303,7 @@ "RID_DLG_UPDATE_BROWSERBASED\n" "string.text" msgid "browser based update" -msgstr "" +msgstr "арҿыцра абраузер ахархәарала" #: dp_gui_updatedialog.src msgctxt "" @@ -319,7 +319,7 @@ "RID_DLG_UPDATE_IGNORE\n" "string.text" msgid "Ignore this Update" -msgstr "" +msgstr "Ибжьажьтәуп ари арҿыцра" #: dp_gui_updatedialog.src msgctxt "" @@ -327,7 +327,7 @@ "RID_DLG_UPDATE_IGNORE_ALL\n" "string.text" msgid "Ignore all Updates" -msgstr "" +msgstr "Ибжьажьтәуп арҿыцрақәа зегьы" #: dp_gui_updatedialog.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/desktop/source/deployment/manager.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/desktop/source/deployment/manager.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/desktop/source/deployment/manager.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/desktop/source/deployment/manager.po 2017-12-12 17:45:07.000000000 +0000 @@ -3,16 +3,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: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2017-11-27 10:38+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511779137.000000\n" #: dp_manager.src msgctxt "" @@ -20,7 +21,7 @@ "RID_STR_COPYING_PACKAGE\n" "string.text" msgid "Copying: " -msgstr "" +msgstr "Акопиа ахыхра: " #: dp_manager.src msgctxt "" @@ -28,7 +29,7 @@ "RID_STR_ERROR_WHILE_ADDING\n" "string.text" msgid "Error while adding: " -msgstr "" +msgstr "Ақәыргылараан агха: " #: dp_manager.src msgctxt "" @@ -36,7 +37,7 @@ "RID_STR_ERROR_WHILE_REMOVING\n" "string.text" msgid "Error while removing: " -msgstr "" +msgstr "Аныхраан агха: " #: dp_manager.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/desktop/source/deployment/misc.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/desktop/source/deployment/misc.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/desktop/source/deployment/misc.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/desktop/source/deployment/misc.po 2017-12-12 17:45:07.000000000 +0000 @@ -3,16 +3,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: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2017-11-27 10:39+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511779172.000000\n" #: dp_misc.src msgctxt "" @@ -20,7 +21,7 @@ "RID_DEPLOYMENT_DEPENDENCIES_UNKNOWN\n" "string.text" msgid "Unknown" -msgstr "" +msgstr "Идырӡам" #: dp_misc.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/desktop/source/deployment/registry.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/desktop/source/deployment/registry.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/desktop/source/deployment/registry.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/desktop/source/deployment/registry.po 2017-12-12 17:45:07.000000000 +0000 @@ -3,16 +3,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: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2017-11-27 10:39+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511779199.000000\n" #: dp_registry.src msgctxt "" @@ -20,7 +21,7 @@ "RID_STR_REGISTERING_PACKAGE\n" "string.text" msgid "Enabling: " -msgstr "" +msgstr "Аҿакра: " #: dp_registry.src msgctxt "" @@ -28,7 +29,7 @@ "RID_STR_REVOKING_PACKAGE\n" "string.text" msgid "Disabling: " -msgstr "" +msgstr "Аҿыхра: " #: dp_registry.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/desktop/source/deployment/unopkg.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/desktop/source/deployment/unopkg.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/desktop/source/deployment/unopkg.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/desktop/source/deployment/unopkg.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-03-09 20:48+0100\n" -"PO-Revision-Date: 2016-03-10 11:24+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-27 10:41+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1457609045.000000\n" +"X-POOTLE-MTIME: 1511779261.000000\n" #: unopkg.src msgctxt "" @@ -37,7 +37,7 @@ "RID_STR_UNOPKG_ACCEPT_LIC_3\n" "string.text" msgid "[Enter \"yes\" or \"no\"]:" -msgstr "" +msgstr "[Иҭажәгал «yes» ма «no»]:" #: unopkg.src msgctxt "" @@ -53,7 +53,7 @@ "RID_STR_UNOPKG_ACCEPT_LIC_YES\n" "string.text" msgid "YES" -msgstr "" +msgstr "YES" #: unopkg.src msgctxt "" @@ -61,7 +61,7 @@ "RID_STR_UNOPKG_ACCEPT_LIC_Y\n" "string.text" msgid "Y" -msgstr "" +msgstr "Y" #: unopkg.src msgctxt "" @@ -69,7 +69,7 @@ "RID_STR_UNOPKG_ACCEPT_LIC_NO\n" "string.text" msgid "NO" -msgstr "" +msgstr "NO" #: unopkg.src msgctxt "" @@ -77,7 +77,7 @@ "RID_STR_UNOPKG_ACCEPT_LIC_N\n" "string.text" msgid "N" -msgstr "" +msgstr "N" #: unopkg.src msgctxt "" @@ -93,4 +93,4 @@ "RID_STR_UNOPKG_ERROR\n" "string.text" msgid "ERROR: " -msgstr "" +msgstr "ERROR: " diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/desktop/uiconfig/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/desktop/uiconfig/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/desktop/uiconfig/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/desktop/uiconfig/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-07-19 15:48+0000\n" +"PO-Revision-Date: 2017-11-17 11:37+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500479332.000000\n" +"X-POOTLE-MTIME: 1510918645.000000\n" #: dependenciesdialog.ui msgctxt "" @@ -58,7 +58,7 @@ "label\n" "string.text" msgid "Check for _Updates" -msgstr "" +msgstr "Игәаҭатәуп арҿыцрақәа" #: extensionmanager.ui msgctxt "" @@ -67,7 +67,7 @@ "label\n" "string.text" msgid "_Add" -msgstr "" +msgstr "_Иацҵатәуп" #: extensionmanager.ui msgctxt "" @@ -76,7 +76,7 @@ "label\n" "string.text" msgid "_Remove" -msgstr "" +msgstr "_Ианыхтәуп" #: extensionmanager.ui msgctxt "" @@ -94,7 +94,7 @@ "label\n" "string.text" msgid "Installed for all users" -msgstr "" +msgstr "Ахархәаҩцәа зегьы рзы" #: extensionmanager.ui msgctxt "" @@ -103,7 +103,7 @@ "label\n" "string.text" msgid "Installed for current user" -msgstr "" +msgstr "Уажәтәи ахархәаҩ изы" #: extensionmanager.ui msgctxt "" @@ -130,7 +130,7 @@ "label\n" "string.text" msgid "Adding %EXTENSION_NAME" -msgstr "" +msgstr "%EXTENSION_NAME ацҵара" #: extensionmanager.ui msgctxt "" @@ -139,7 +139,7 @@ "label\n" "string.text" msgid "Get more extensions online..." -msgstr "" +msgstr "Арҭбаарақәа аИнтернет аҟны..." #: installforalldialog.ui msgctxt "" @@ -166,7 +166,7 @@ "label\n" "string.text" msgid "_For all users" -msgstr "" +msgstr "Ахархәаҩцәа зеьы рзы" #: installforalldialog.ui msgctxt "" @@ -175,7 +175,7 @@ "label\n" "string.text" msgid "_Only for me" -msgstr "" +msgstr "Сара сымацара сзы" #: licensedialog.ui msgctxt "" @@ -202,7 +202,7 @@ "label\n" "string.text" msgid "Decline" -msgstr "" +msgstr "Мап ацәктәуп" #: licensedialog.ui msgctxt "" @@ -220,7 +220,7 @@ "label\n" "string.text" msgid "1." -msgstr "" +msgstr "1." #: licensedialog.ui msgctxt "" @@ -229,7 +229,7 @@ "label\n" "string.text" msgid "2." -msgstr "" +msgstr "2." #: licensedialog.ui msgctxt "" @@ -283,7 +283,7 @@ "label\n" "string.text" msgid "_Install" -msgstr "" +msgstr "Иқәыргылатәуп" #: updatedialog.ui msgctxt "" @@ -301,7 +301,7 @@ "label\n" "string.text" msgid "Checking..." -msgstr "" +msgstr "Агәаҭара..." #: updatedialog.ui msgctxt "" @@ -310,7 +310,7 @@ "label\n" "string.text" msgid "_Show all updates" -msgstr "" +msgstr "Иаарҧштәуп арҿыцрақәа зегьы" #: updatedialog.ui msgctxt "" @@ -319,7 +319,7 @@ "label\n" "string.text" msgid "Description" -msgstr "" +msgstr "Ахҳәаа" #: updatedialog.ui msgctxt "" @@ -328,7 +328,7 @@ "label\n" "string.text" msgid "Publisher:" -msgstr "" +msgstr "Аҭыжьҩы:" #: updatedialog.ui msgctxt "" @@ -337,7 +337,7 @@ "label\n" "string.text" msgid "button" -msgstr "" +msgstr "акнопка" #: updatedialog.ui msgctxt "" @@ -346,7 +346,7 @@ "label\n" "string.text" msgid "What is new:" -msgstr "" +msgstr "Ҿыцс иҟоу:" #: updatedialog.ui msgctxt "" @@ -364,7 +364,7 @@ "title\n" "string.text" msgid "Download and Installation" -msgstr "" +msgstr "Аҭагалареи ақәыргылареи" #: updateinstalldialog.ui msgctxt "" @@ -382,7 +382,7 @@ "label\n" "string.text" msgid "Result" -msgstr "" +msgstr "Алҵшәа" #: updaterequireddialog.ui msgctxt "" @@ -418,7 +418,7 @@ "label\n" "string.text" msgid "Check for _Updates..." -msgstr "" +msgstr "Арҿыцрақәа ргәаҭара..." #: updaterequireddialog.ui msgctxt "" @@ -427,4 +427,4 @@ "label\n" "string.text" msgid "Disable all" -msgstr "" +msgstr "Зегьы мап рыцәктәуп" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/editeng/source/editeng.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/editeng/source/editeng.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/editeng/source/editeng.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/editeng/source/editeng.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-07-18 10:54+0000\n" +"PO-Revision-Date: 2017-11-17 16:15+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500375240.000000\n" +"X-POOTLE-MTIME: 1510935306.000000\n" #: editeng.src msgctxt "" @@ -77,7 +77,7 @@ "RID_EDITUNDO_SETSTYLE\n" "string.text" msgid "Apply Styles" -msgstr "" +msgstr "Ихархәатәуп астильқәа" #: editeng.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/editeng/source/items.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/editeng/source/items.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/editeng/source/items.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/editeng/source/items.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2014-11-02 19:10+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-12-12 10:07+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1414955427.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1513073262.000000\n" #: page.src msgctxt "" @@ -133,7 +133,7 @@ "RID_SVXITEMS_COLOR\n" "string.text" msgid "Color " -msgstr "" +msgstr "Аҧштәы " #: svxitems.src msgctxt "" @@ -141,7 +141,7 @@ "RID_SVXITEMS_COLOR_BLACK\n" "string.text" msgid "Black" -msgstr "" +msgstr "Аиқәаҵәа" #: svxitems.src msgctxt "" @@ -173,7 +173,7 @@ "RID_SVXITEMS_COLOR_RED\n" "string.text" msgid "Red" -msgstr "" +msgstr "Аҟаҧшь" #: svxitems.src msgctxt "" @@ -253,7 +253,7 @@ "RID_SVXITEMS_COLOR_YELLOW\n" "string.text" msgid "Yellow" -msgstr "" +msgstr "Аҩежь" #: svxitems.src msgctxt "" @@ -261,7 +261,7 @@ "RID_SVXITEMS_COLOR_WHITE\n" "string.text" msgid "White" -msgstr "" +msgstr "Ашкәакәа" #: svxitems.src msgctxt "" @@ -277,7 +277,7 @@ "RID_SVXITEMS_ITALIC_OBLIQUE\n" "string.text" msgid "Oblique italic" -msgstr "" +msgstr "Ихынаау акурсив" #: svxitems.src msgctxt "" @@ -285,7 +285,7 @@ "RID_SVXITEMS_ITALIC_NORMAL\n" "string.text" msgid "Italic" -msgstr "" +msgstr "Акурсив" #: svxitems.src msgctxt "" @@ -309,7 +309,7 @@ "RID_SVXITEMS_WEIGHT_LIGHT\n" "string.text" msgid "light" -msgstr "" +msgstr "Ипоу" #: svxitems.src msgctxt "" @@ -325,7 +325,7 @@ "RID_SVXITEMS_WEIGHT_NORMAL\n" "string.text" msgid "normal" -msgstr "" +msgstr "инормалтәу" #: svxitems.src msgctxt "" @@ -333,7 +333,7 @@ "RID_SVXITEMS_WEIGHT_MEDIUM\n" "string.text" msgid "medium" -msgstr "" +msgstr "ибжьаратәу" #: svxitems.src msgctxt "" @@ -365,7 +365,7 @@ "RID_SVXITEMS_WEIGHT_BLACK\n" "string.text" msgid "black" -msgstr "" +msgstr "аиқәаҵәа" #: svxitems.src msgctxt "" @@ -373,7 +373,7 @@ "RID_SVXITEMS_UL_NONE\n" "string.text" msgid "No underline" -msgstr "" +msgstr "Аҵшьрада" #: svxitems.src msgctxt "" @@ -381,7 +381,7 @@ "RID_SVXITEMS_UL_SINGLE\n" "string.text" msgid "Single underline" -msgstr "" +msgstr "Зныктәи аҵшьра" #: svxitems.src msgctxt "" @@ -389,7 +389,7 @@ "RID_SVXITEMS_UL_DOUBLE\n" "string.text" msgid "Double underline" -msgstr "" +msgstr "Ҩынтәны аҵшьра" #: svxitems.src msgctxt "" @@ -397,7 +397,7 @@ "RID_SVXITEMS_UL_DOTTED\n" "string.text" msgid "Dotted underline" -msgstr "" +msgstr "Акәаҧлатәи аҵшьра" #: svxitems.src msgctxt "" @@ -405,7 +405,7 @@ "RID_SVXITEMS_UL_DONTKNOW\n" "string.text" msgid "Underline" -msgstr "" +msgstr "Аҵшьра" #: svxitems.src msgctxt "" @@ -453,7 +453,7 @@ "RID_SVXITEMS_UL_WAVE\n" "string.text" msgid "Underline (Wave)" -msgstr "" +msgstr "Аҵшьра (ацәқәырҧа)" #: svxitems.src msgctxt "" @@ -461,7 +461,7 @@ "RID_SVXITEMS_UL_DOUBLEWAVE\n" "string.text" msgid "Underline (Double wave)" -msgstr "" +msgstr "Аҵшьра (иҩынтәу ацәқәырҧа)" #: svxitems.src msgctxt "" @@ -469,7 +469,7 @@ "RID_SVXITEMS_UL_BOLD\n" "string.text" msgid "Underlined (Bold)" -msgstr "" +msgstr "Аҵшьра ижәпаны" #: svxitems.src msgctxt "" @@ -477,7 +477,7 @@ "RID_SVXITEMS_UL_BOLDDOTTED\n" "string.text" msgid "Dotted underline (Bold)" -msgstr "" +msgstr "Аҵшьра кәуаҧла (ижәпаны)" #: svxitems.src msgctxt "" @@ -525,7 +525,7 @@ "RID_SVXITEMS_OL_NONE\n" "string.text" msgid "No overline" -msgstr "" +msgstr "Ақәшьрада" #: svxitems.src msgctxt "" @@ -557,7 +557,7 @@ "RID_SVXITEMS_OL_DONTKNOW\n" "string.text" msgid "Overline" -msgstr "" +msgstr "Ақәшьра" #: svxitems.src msgctxt "" @@ -605,7 +605,7 @@ "RID_SVXITEMS_OL_WAVE\n" "string.text" msgid "Overline (Wave)" -msgstr "" +msgstr "Ақәшьра (ацәқәырҧа)" #: svxitems.src msgctxt "" @@ -613,7 +613,7 @@ "RID_SVXITEMS_OL_DOUBLEWAVE\n" "string.text" msgid "Overline (Double wave)" -msgstr "" +msgstr "Ақәшьра (иҩынтәу ацәқәырҧа)" #: svxitems.src msgctxt "" @@ -621,7 +621,7 @@ "RID_SVXITEMS_OL_BOLD\n" "string.text" msgid "Overlined (Bold)" -msgstr "" +msgstr "Ақәшьра (ижәпаны)" #: svxitems.src msgctxt "" @@ -629,7 +629,7 @@ "RID_SVXITEMS_OL_BOLDDOTTED\n" "string.text" msgid "Dotted overline (Bold)" -msgstr "" +msgstr "Ақәшьра кәаҧла (ижәпаны)" #: svxitems.src msgctxt "" @@ -725,7 +725,7 @@ "RID_SVXITEMS_CASEMAP_NONE\n" "string.text" msgid "None" -msgstr "" +msgstr "Мап" #: svxitems.src msgctxt "" @@ -789,7 +789,7 @@ "RID_SVXITEMS_ESCAPEMENT_AUTO\n" "string.text" msgid "automatic" -msgstr "" +msgstr "автоматикала" #: svxitems.src msgctxt "" @@ -933,7 +933,7 @@ "RID_INSET\n" "string.text" msgid "Inset" -msgstr "" +msgstr "Аҩныҵҟа" #: svxitems.src msgctxt "" @@ -941,7 +941,7 @@ "RID_OUTSET\n" "string.text" msgid "Outset" -msgstr "" +msgstr "Адәахьала" #: svxitems.src msgctxt "" @@ -981,7 +981,7 @@ "RID_SVXITEMS_METRIC_MM\n" "string.text" msgid "mm" -msgstr "" +msgstr "мм" #: svxitems.src msgctxt "" @@ -989,7 +989,7 @@ "RID_SVXITEMS_METRIC_CM\n" "string.text" msgid "cm" -msgstr "" +msgstr "см" #: svxitems.src msgctxt "" @@ -997,7 +997,7 @@ "RID_SVXITEMS_METRIC_INCH\n" "string.text" msgid "inch" -msgstr "" +msgstr "адиуим" #: svxitems.src msgctxt "" @@ -1005,7 +1005,7 @@ "RID_SVXITEMS_METRIC_POINT\n" "string.text" msgid "pt" -msgstr "" +msgstr "пт" #: svxitems.src msgctxt "" @@ -1021,7 +1021,7 @@ "RID_SVXITEMS_METRIC_PIXEL\n" "string.text" msgid "pixel" -msgstr "" +msgstr "пикс." #: svxitems.src msgctxt "" @@ -1045,7 +1045,7 @@ "RID_SVXITEMS_BLINK_TRUE\n" "string.text" msgid "Blinking" -msgstr "" +msgstr "Алацәҟәра" #: svxitems.src msgctxt "" @@ -1053,7 +1053,7 @@ "RID_SVXITEMS_BLINK_FALSE\n" "string.text" msgid "Not Blinking" -msgstr "" +msgstr "Имлацәҟәуа" #: svxitems.src msgctxt "" @@ -1093,7 +1093,7 @@ "RID_SVXITEMS_CONTOUR_TRUE\n" "string.text" msgid "Outline" -msgstr "" +msgstr "Аконтур" #: svxitems.src msgctxt "" @@ -1109,7 +1109,7 @@ "RID_SVXITEMS_PRINT_TRUE\n" "string.text" msgid "Print" -msgstr "" +msgstr "Акьыҧхьра" #: svxitems.src msgctxt "" @@ -1117,7 +1117,7 @@ "RID_SVXITEMS_PRINT_FALSE\n" "string.text" msgid "Don't print" -msgstr "" +msgstr "Кьыҧхьрада" #: svxitems.src msgctxt "" @@ -1189,7 +1189,7 @@ "RID_SVXITEMS_PROT_SIZE_TRUE\n" "string.text" msgid "Size protected" -msgstr "" +msgstr "Ашәагаа хьчоуп" #: svxitems.src msgctxt "" @@ -1197,7 +1197,7 @@ "RID_SVXITEMS_PROT_SIZE_FALSE\n" "string.text" msgid "Size not protected" -msgstr "" +msgstr "Ашәагаа хьчаӡам" #: svxitems.src msgctxt "" @@ -1253,7 +1253,7 @@ "RID_SVXITEMS_PAGE_END_TRUE\n" "string.text" msgid "Page End" -msgstr "" +msgstr "Адаҟьа анҵәамҭа" #: svxitems.src msgctxt "" @@ -1269,7 +1269,7 @@ "RID_SVXITEMS_SIZE_WIDTH\n" "string.text" msgid "Width: " -msgstr "" +msgstr "Аҭбаара:" #: svxitems.src msgctxt "" @@ -1277,7 +1277,7 @@ "RID_SVXITEMS_SIZE_HEIGHT\n" "string.text" msgid "Height: " -msgstr "" +msgstr "Аҳаракыра:" #: svxitems.src msgctxt "" @@ -1293,7 +1293,7 @@ "RID_SVXITEMS_LRSPACE_FLINE\n" "string.text" msgid "First Line " -msgstr "" +msgstr "Актәи ацәаҳәа " #: svxitems.src msgctxt "" @@ -1341,7 +1341,7 @@ "RID_SVXITEMS_BORDER_BOTTOM\n" "string.text" msgid "bottom " -msgstr "" +msgstr "ҵаҟала " #: svxitems.src msgctxt "" @@ -1349,7 +1349,7 @@ "RID_SVXITEMS_BORDER_LEFT\n" "string.text" msgid "left " -msgstr "" +msgstr "арымарахь " #: svxitems.src msgctxt "" @@ -1357,7 +1357,7 @@ "RID_SVXITEMS_BORDER_RIGHT\n" "string.text" msgid "right " -msgstr "" +msgstr "арыгьарахь " #: svxitems.src msgctxt "" @@ -1365,7 +1365,7 @@ "RID_SVXITEMS_BORDER_DISTANCE\n" "string.text" msgid "Spacing " -msgstr "" +msgstr "Аинтервал " #: svxitems.src msgctxt "" @@ -1373,7 +1373,7 @@ "RID_SVXITEMS_ULSPACE_UPPER\n" "string.text" msgid "From top " -msgstr "" +msgstr "Хыхьла " #: svxitems.src msgctxt "" @@ -1381,7 +1381,7 @@ "RID_SVXITEMS_ULSPACE_LOWER\n" "string.text" msgid "From bottom " -msgstr "" +msgstr "Ҵаҟала " #. pb: %1 == will be replaced by the number of lines #: svxitems.src @@ -1390,7 +1390,7 @@ "RID_SVXITEMS_LINES\n" "string.text" msgid "%1 Lines" -msgstr "" +msgstr "Ацәаҳәақәа: %1" #: svxitems.src msgctxt "" @@ -1414,7 +1414,7 @@ "RID_SVXITEMS_HYPHEN_MINLEAD\n" "string.text" msgid "%1 characters at end of line" -msgstr "" +msgstr "%1 символ ацәаҳәа анҵәамҭаҿ" #: svxitems.src msgctxt "" @@ -1422,7 +1422,7 @@ "RID_SVXITEMS_HYPHEN_MINTRAIL\n" "string.text" msgid "%1 characters at beginning of line" -msgstr "" +msgstr "%1 символ ацәаҳәа алагамҭаҿ" #: svxitems.src msgctxt "" @@ -1438,7 +1438,7 @@ "RID_SVXITEMS_PAGEMODEL_COMPLETE\n" "string.text" msgid "Page Style: " -msgstr "" +msgstr "Адаҟьа астиль: " #: svxitems.src msgctxt "" @@ -1446,7 +1446,7 @@ "RID_SVXITEMS_KERNING_COMPLETE\n" "string.text" msgid "Kerning " -msgstr "" +msgstr "Акернинг " #: svxitems.src msgctxt "" @@ -1470,7 +1470,7 @@ "RID_SVXITEMS_GRAPHIC\n" "string.text" msgid "Graphic" -msgstr "" +msgstr "Аграфикатә обиеқт" #: svxitems.src msgctxt "" @@ -1478,7 +1478,7 @@ "RID_SVXITEMS_EMPHASIS_NONE_STYLE\n" "string.text" msgid "none" -msgstr "" +msgstr "мап" #: svxitems.src msgctxt "" @@ -1486,7 +1486,7 @@ "RID_SVXITEMS_EMPHASIS_DOT_STYLE\n" "string.text" msgid "Dots " -msgstr "" +msgstr "Акәаҧқәа " #: svxitems.src msgctxt "" @@ -1494,7 +1494,7 @@ "RID_SVXITEMS_EMPHASIS_CIRCLE_STYLE\n" "string.text" msgid "Circle " -msgstr "" +msgstr "Агьежь " #: svxitems.src msgctxt "" @@ -1502,7 +1502,7 @@ "RID_SVXITEMS_EMPHASIS_DISC_STYLE\n" "string.text" msgid "Filled circle " -msgstr "" +msgstr "Агежь " #: svxitems.src msgctxt "" @@ -1510,7 +1510,7 @@ "RID_SVXITEMS_EMPHASIS_ACCENT_STYLE\n" "string.text" msgid "Accent " -msgstr "" +msgstr "Акцент " #: svxitems.src msgctxt "" @@ -1518,7 +1518,7 @@ "RID_SVXITEMS_EMPHASIS_ABOVE_POS\n" "string.text" msgid "Above" -msgstr "" +msgstr "Хыхьла" #: svxitems.src msgctxt "" @@ -1526,7 +1526,7 @@ "RID_SVXITEMS_EMPHASIS_BELOW_POS\n" "string.text" msgid "Below" -msgstr "" +msgstr "Ҵаҟала" #: svxitems.src msgctxt "" @@ -1638,7 +1638,7 @@ "RID_SVXITEMS_CHARSCALE\n" "string.text" msgid "Characters scaled $(ARG1)%" -msgstr "" +msgstr "Асимволқәа $(ARG1)% рмасштабркра" #: svxitems.src msgctxt "" @@ -1662,7 +1662,7 @@ "RID_SVXITEMS_RELIEF_EMBOSSED\n" "string.text" msgid "Relief" -msgstr "" +msgstr "Арельеф" #: svxitems.src msgctxt "" @@ -1782,7 +1782,7 @@ "RID_SVXITEMS_CHARHIDDEN_TRUE\n" "string.text" msgid "Hidden" -msgstr "" +msgstr "Иҵәаху" #: svxitems.src msgctxt "" @@ -1870,7 +1870,7 @@ "RID_SVXITEMS_JUSTMETHOD_AUTO\n" "string.text" msgid "Automatic" -msgstr "" +msgstr "Автоматикала" #: svxitems.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/editeng/source/outliner.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/editeng/source/outliner.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/editeng/source/outliner.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/editeng/source/outliner.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-07-18 07:08+0000\n" +"PO-Revision-Date: 2017-11-17 16:15+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500361738.000000\n" +"X-POOTLE-MTIME: 1510935317.000000\n" #: outliner.src msgctxt "" @@ -45,7 +45,7 @@ "RID_OUTLUNDO_ATTR\n" "string.text" msgid "Apply attributes" -msgstr "" +msgstr "Ихархәатәуп атрибутқәа" #: outliner.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/extensions/source/abpilot.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/extensions/source/abpilot.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/extensions/source/abpilot.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/extensions/source/abpilot.po 2017-12-12 17:45:07.000000000 +0000 @@ -3,16 +3,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: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2017-11-15 08:52+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510735920.000000\n" #: abspilot.src msgctxt "" @@ -44,7 +45,7 @@ "RID_STR_TABLE_SELECTION\n" "string.text" msgid "Table selection" -msgstr "" +msgstr "Атаблица алхра" #: abspilot.src msgctxt "" @@ -96,7 +97,7 @@ "RID_STR_DEFAULT_NAME\n" "string.text" msgid "Addresses" -msgstr "" +msgstr "Аҭыӡҭыҧқәа" #: abspilot.src msgctxt "" @@ -112,7 +113,7 @@ "RID_STR_NOCONNECTION\n" "string.text" msgid "The connection could not be established." -msgstr "" +msgstr "Иауам аимадара ашьақәыргылара." #: abspilot.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/extensions/source/bibliography.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/extensions/source/bibliography.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/extensions/source/bibliography.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/extensions/source/bibliography.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n" -"PO-Revision-Date: 2017-09-18 11:07+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-15 08:56+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1505732846.000000\n" +"X-POOTLE-MTIME: 1510736170.000000\n" #: bib.src msgctxt "" @@ -21,7 +21,7 @@ "RID_BIB_STR_FRAME_TITLE\n" "string.text" msgid "Bibliography Database" -msgstr "" +msgstr "Адырқәа рбаза абиблиографиақәа" #: bib.src msgctxt "" @@ -32,13 +32,12 @@ msgstr "" #: bib.src -#, fuzzy msgctxt "" "bib.src\n" "RID_BIB_STR_NONE\n" "string.text" msgid "" -msgstr "" +msgstr "<мап>" #: sections.src msgctxt "" @@ -54,7 +53,7 @@ "ST_TYPE_ARTICLE\n" "string.text" msgid "Article" -msgstr "" +msgstr "Астатиа" #: sections.src msgctxt "" @@ -62,7 +61,7 @@ "ST_TYPE_BOOK\n" "string.text" msgid "Book" -msgstr "" +msgstr "Ашәҟәы" #: sections.src msgctxt "" @@ -70,7 +69,7 @@ "ST_TYPE_BOOKLET\n" "string.text" msgid "Brochures" -msgstr "" +msgstr "Аброшиура" #: sections.src msgctxt "" @@ -110,7 +109,7 @@ "ST_TYPE_JOURNAL\n" "string.text" msgid "Journal" -msgstr "" +msgstr "Ажурнал" #: sections.src msgctxt "" @@ -118,7 +117,7 @@ "ST_TYPE_MANUAL\n" "string.text" msgid "Techn. documentation" -msgstr "" +msgstr "Атехникатә документациа" #: sections.src msgctxt "" @@ -126,7 +125,7 @@ "ST_TYPE_MASTERSTHESIS\n" "string.text" msgid "Thesis" -msgstr "" +msgstr "Адипломтә усумҭа" #: sections.src msgctxt "" @@ -142,7 +141,7 @@ "ST_TYPE_PHDTHESIS\n" "string.text" msgid "Dissertation" -msgstr "" +msgstr "Адиссертациа" #: sections.src msgctxt "" @@ -174,7 +173,7 @@ "ST_TYPE_EMAIL\n" "string.text" msgid "E-mail" -msgstr "" +msgstr "E-mail" #: sections.src msgctxt "" @@ -190,7 +189,7 @@ "ST_TYPE_CUSTOM1\n" "string.text" msgid "User-defined1" -msgstr "" +msgstr "Ахархәаҩ итип 1" #: sections.src msgctxt "" @@ -198,7 +197,7 @@ "ST_TYPE_CUSTOM2\n" "string.text" msgid "User-defined2" -msgstr "" +msgstr "Ахархәаҩ итип 2" #: sections.src msgctxt "" @@ -206,7 +205,7 @@ "ST_TYPE_CUSTOM3\n" "string.text" msgid "User-defined3" -msgstr "" +msgstr "Ахархәаҩ итип3" #: sections.src msgctxt "" @@ -214,7 +213,7 @@ "ST_TYPE_CUSTOM4\n" "string.text" msgid "User-defined4" -msgstr "" +msgstr "Ахархәаҩ итип4" #: sections.src msgctxt "" @@ -222,7 +221,7 @@ "ST_TYPE_CUSTOM5\n" "string.text" msgid "User-defined5" -msgstr "" +msgstr "Ахархәаҩ итип5" #: sections.src msgctxt "" @@ -230,4 +229,4 @@ "ST_TYPE_TITLE\n" "string.text" msgid "General" -msgstr "" +msgstr "Азеиҧшқәа" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/extensions/source/dbpilots.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/extensions/source/dbpilots.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/extensions/source/dbpilots.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/extensions/source/dbpilots.po 2017-12-12 17:45:07.000000000 +0000 @@ -3,16 +3,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: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2017-11-15 08:58+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510736282.000000\n" #: commonpagesdbp.src msgctxt "" @@ -28,7 +29,7 @@ "RID_STR_TYPE_TABLE\n" "string.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: commonpagesdbp.src msgctxt "" @@ -44,7 +45,7 @@ "RID_STR_TYPE_COMMAND\n" "string.text" msgid "SQL command" -msgstr "" +msgstr "SQL акоманда" #: dbpilots.src msgctxt "" @@ -52,7 +53,7 @@ "RID_STR_GROUPWIZARD_TITLE\n" "string.text" msgid "Group Element Wizard" -msgstr "" +msgstr "Агәыҧ азҟаза" #: dbpilots.src msgctxt "" @@ -60,7 +61,7 @@ "RID_STR_GRIDWIZARD_TITLE\n" "string.text" msgid "Table Element Wizard" -msgstr "" +msgstr "Атаблица азҟаза" #: dbpilots.src msgctxt "" @@ -68,7 +69,7 @@ "RID_STR_LISTWIZARD_TITLE\n" "string.text" msgid "List Box Wizard" -msgstr "" +msgstr "Ахьӡынҵа азҟаза" #: dbpilots.src msgctxt "" @@ -92,7 +93,7 @@ "RID_STR_DATEPOSTFIX\n" "string.text" msgid " (Date)" -msgstr "" +msgstr " (Арыцхә)" #: gridpages.src msgctxt "" @@ -100,7 +101,7 @@ "RID_STR_TIMEPOSTFIX\n" "string.text" msgid " (Time)" -msgstr "" +msgstr " (Аамҭа)" #: groupboxpages.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/extensions/source/propctrlr.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/extensions/source/propctrlr.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/extensions/source/propctrlr.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/extensions/source/propctrlr.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-07-21 18:48+0000\n" +"PO-Revision-Date: 2017-11-30 10:12+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500662889.000000\n" +"X-POOTLE-MTIME: 1512036775.000000\n" #: formlinkdialog.src msgctxt "" @@ -29,7 +29,7 @@ "STR_MASTER_FORM\n" "string.text" msgid "Master Form" -msgstr "" +msgstr "Ихадоу аформа" #. # will be replace with a name. #: formlinkdialog.src @@ -94,7 +94,7 @@ "RID_STR_LINECOUNT\n" "string.text" msgid "Line count" -msgstr "" +msgstr "Ацәаҳәақәа рхыҧхьаӡара" #: formres.src msgctxt "" @@ -102,7 +102,7 @@ "RID_STR_MAXTEXTLEN\n" "string.text" msgid "Max. text length" -msgstr "" +msgstr "Атеқст имаксималтәу аура" #: formres.src msgctxt "" @@ -118,7 +118,7 @@ "RID_STR_STRICTFORMAT\n" "string.text" msgid "Strict format" -msgstr "" +msgstr "Аформат агәаҭара" #: formres.src msgctxt "" @@ -134,7 +134,7 @@ "RID_STR_PRINTABLE\n" "string.text" msgid "Printable" -msgstr "" +msgstr "Акьыҧхьразы" #: formres.src msgctxt "" @@ -142,7 +142,7 @@ "RID_STR_TARGET_URL\n" "string.text" msgid "URL" -msgstr "" +msgstr "URL" #: formres.src msgctxt "" @@ -150,7 +150,7 @@ "RID_STR_TARGET_FRAME\n" "string.text" msgid "Frame" -msgstr "" +msgstr "Афреим" #: formres.src msgctxt "" @@ -166,7 +166,7 @@ "RID_STR_HELPURL\n" "string.text" msgid "Help URL" -msgstr "" +msgstr "URL аилыркаага" #: formres.src msgctxt "" @@ -182,7 +182,7 @@ "RID_STR_ECHO_CHAR\n" "string.text" msgid "Password character" -msgstr "" +msgstr "Ажәамаӡа асимволқәа" #: formres.src msgctxt "" @@ -198,7 +198,7 @@ "RID_STR_EMPTY_IS_NULL\n" "string.text" msgid "Empty string is NULL" -msgstr "" +msgstr "Иҭацәу ацәаҳәа - NULL" #: formres.src msgctxt "" @@ -206,7 +206,7 @@ "RID_STR_DECIMAL_ACCURACY\n" "string.text" msgid "Decimal accuracy" -msgstr "" +msgstr "Аиашақәшәара" #: formres.src msgctxt "" @@ -214,7 +214,7 @@ "RID_STR_IMAGE_URL\n" "string.text" msgid "Graphics" -msgstr "" +msgstr "Асахьақәа" #: formres.src msgctxt "" @@ -238,7 +238,7 @@ "RID_STR_LABELCONTROL\n" "string.text" msgid "Label Field" -msgstr "" +msgstr "Аҭыҧдырга" #: formres.src msgctxt "" @@ -246,7 +246,7 @@ "RID_STR_LABEL\n" "string.text" msgid "Label" -msgstr "" +msgstr "Атеқст" #: formres.src msgctxt "" @@ -254,7 +254,7 @@ "RID_STR_ALIGN\n" "string.text" msgid "Alignment" -msgstr "" +msgstr "Аиҟаратәра" #: formres.src msgctxt "" @@ -271,7 +271,7 @@ "Top\n" "itemlist.text" msgid "Top" -msgstr "" +msgstr "Хыхьла" #: formres.src msgctxt "" @@ -280,7 +280,7 @@ "Middle\n" "itemlist.text" msgid "Middle" -msgstr "" +msgstr "Агәҭа ала" #: formres.src msgctxt "" @@ -289,7 +289,7 @@ "Bottom\n" "itemlist.text" msgid "Bottom" -msgstr "" +msgstr "Ҵаҟала" #: formres.src msgctxt "" @@ -313,7 +313,7 @@ "RID_STR_BACKGROUNDCOLOR\n" "string.text" msgid "Background color" -msgstr "" +msgstr "Аҿаҧшыра аҧштәы" #: formres.src msgctxt "" @@ -338,7 +338,7 @@ "Small\n" "itemlist.text" msgid "Small" -msgstr "" +msgstr "Ихәыҷқәо" #: formres.src msgctxt "" @@ -347,7 +347,7 @@ "Large\n" "itemlist.text" msgid "Large" -msgstr "" +msgstr "Идуқәо" #: formres.src msgctxt "" @@ -363,7 +363,7 @@ "RID_STR_SHOW_NAVIGATION\n" "string.text" msgid "Navigation" -msgstr "" +msgstr "Анавигациа" #: formres.src msgctxt "" @@ -419,7 +419,7 @@ "RID_STR_MULTISELECTION\n" "string.text" msgid "Multiselection" -msgstr "" +msgstr "Гәыҧ-гәыҧла алкаара" #: formres.src msgctxt "" @@ -427,7 +427,7 @@ "RID_STR_NAME\n" "string.text" msgid "Name" -msgstr "" +msgstr "Ахьӡ" #: formres.src msgctxt "" @@ -435,7 +435,7 @@ "RID_STR_GROUP_NAME\n" "string.text" msgid "Group name" -msgstr "" +msgstr "Агәыҧ ахьӡ" #: formres.src msgctxt "" @@ -459,7 +459,7 @@ "RID_STR_FILTER\n" "string.text" msgid "Filter" -msgstr "" +msgstr "Афильтр" #: formres.src msgctxt "" @@ -499,7 +499,7 @@ "RID_STR_CYCLE\n" "string.text" msgid "Cycle" -msgstr "" +msgstr "Ацикл" #: formres.src msgctxt "" @@ -555,7 +555,7 @@ "RID_STR_CURSORSOURCE\n" "string.text" msgid "Content" -msgstr "" +msgstr "Иаҵанакуа" #: formres.src msgctxt "" @@ -595,7 +595,7 @@ "RID_STR_DATAENTRY\n" "string.text" msgid "Add data only" -msgstr "" +msgstr "Адырқәа рҭагалара" #: formres.src msgctxt "" @@ -603,7 +603,7 @@ "RID_STR_DATASOURCE\n" "string.text" msgid "Data source" -msgstr "" +msgstr "Адырқәа рхыҵхырҭа" #: formres.src msgctxt "" @@ -627,7 +627,7 @@ "RID_STR_VALUEMIN\n" "string.text" msgid "Value min." -msgstr "" +msgstr "Иминималтәу аҵакы" #: formres.src msgctxt "" @@ -635,7 +635,7 @@ "RID_STR_VALUEMAX\n" "string.text" msgid "Value max." -msgstr "" +msgstr "Имаксималтәу аҵакы" #: formres.src msgctxt "" @@ -643,7 +643,7 @@ "RID_STR_VALUESTEP\n" "string.text" msgid "Incr./decrement value" -msgstr "" +msgstr "Аҵакы ашьаҿа" #: formres.src msgctxt "" @@ -651,7 +651,7 @@ "RID_STR_CURRENCYSYMBOL\n" "string.text" msgid "Currency symbol" -msgstr "" +msgstr "Авалиута асимвол" #: formres.src msgctxt "" @@ -659,7 +659,7 @@ "RID_STR_DATEMIN\n" "string.text" msgid "Date min." -msgstr "" +msgstr "Иминималтәу арыцхә" #: formres.src msgctxt "" @@ -667,7 +667,7 @@ "RID_STR_DATEMAX\n" "string.text" msgid "Date max." -msgstr "" +msgstr "Имаксималтәу арыцхә" #: formres.src msgctxt "" @@ -675,7 +675,7 @@ "RID_STR_DATEFORMAT\n" "string.text" msgid "Date format" -msgstr "" +msgstr "Адырқәа рформат" #: formres.src msgctxt "" @@ -683,7 +683,7 @@ "RID_STR_SELECTEDITEMS\n" "string.text" msgid "Selection" -msgstr "" +msgstr "Алкаара" #: formres.src msgctxt "" @@ -691,7 +691,7 @@ "RID_STR_TIMEMIN\n" "string.text" msgid "Time min." -msgstr "" +msgstr "Иминималтәу аамҭа" #: formres.src msgctxt "" @@ -699,7 +699,7 @@ "RID_STR_TIMEMAX\n" "string.text" msgid "Time max." -msgstr "" +msgstr "Имаксималтәу аамҭа" #: formres.src msgctxt "" @@ -707,7 +707,7 @@ "RID_STR_TIMEFORMAT\n" "string.text" msgid "Time format" -msgstr "" +msgstr "Аамҭа аформат" #: formres.src msgctxt "" @@ -715,7 +715,7 @@ "RID_STR_CURRSYM_POSITION\n" "string.text" msgid "Prefix symbol" -msgstr "" +msgstr "Ацифрақәа раҧхьа игылоу асимвол" #: formres.src msgctxt "" @@ -723,7 +723,7 @@ "RID_STR_VALUE\n" "string.text" msgid "Value" -msgstr "" +msgstr "Аҵакы" #: formres.src msgctxt "" @@ -731,7 +731,7 @@ "RID_STR_FORMATKEY\n" "string.text" msgid "Formatting" -msgstr "" +msgstr "Аформатркра" #: formres.src msgctxt "" @@ -739,7 +739,7 @@ "RID_STR_CLASSID\n" "string.text" msgid "Class ID" -msgstr "" +msgstr "ID акласс" #: formres.src msgctxt "" @@ -747,7 +747,7 @@ "RID_STR_HEIGHT\n" "string.text" msgid "Height" -msgstr "" +msgstr "Аҳаракыра" #: formres.src msgctxt "" @@ -755,7 +755,7 @@ "RID_STR_WIDTH\n" "string.text" msgid "Width" -msgstr "" +msgstr "Аҭбаара" #: formres.src msgctxt "" @@ -763,7 +763,7 @@ "RID_STR_LISTINDEX\n" "string.text" msgid "List index" -msgstr "" +msgstr "Ахьӡынҵа аиндекс" #: formres.src msgctxt "" @@ -771,7 +771,7 @@ "RID_STR_ROWHEIGHT\n" "string.text" msgid "Row height" -msgstr "" +msgstr "Ацәаҳәа аҳаракыра" #: formres.src msgctxt "" @@ -787,7 +787,7 @@ "RID_STR_LINECOLOR\n" "string.text" msgid "Line color" -msgstr "" +msgstr "Аҵәаӷәа аҧштәы" #: formres.src msgctxt "" @@ -811,7 +811,7 @@ "RID_STR_STRINGITEMLIST\n" "string.text" msgid "List entries" -msgstr "" +msgstr "Ахьӡынҵа аелементқәа" #: formres.src msgctxt "" @@ -819,7 +819,7 @@ "RID_STR_BUTTONTYPE\n" "string.text" msgid "Action" -msgstr "" +msgstr "Акнопка атип" #: formres.src msgctxt "" @@ -827,7 +827,7 @@ "RID_STR_SUBMIT_ACTION\n" "string.text" msgid "URL" -msgstr "" +msgstr "URL" #: formres.src msgctxt "" @@ -891,7 +891,7 @@ "RID_STR_SUBMIT_TARGET\n" "string.text" msgid "Frame" -msgstr "" +msgstr "Афреим" #: formres.src msgctxt "" @@ -936,7 +936,7 @@ "Table\n" "itemlist.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: formres.src msgctxt "" @@ -954,7 +954,7 @@ "Sql\n" "itemlist.text" msgid "Sql" -msgstr "" +msgstr "Sql" #: formres.src msgctxt "" @@ -972,7 +972,7 @@ "Tablefields\n" "itemlist.text" msgid "Tablefields" -msgstr "" +msgstr "Атаблица аҭакырақәа" #: formres.src msgctxt "" @@ -981,7 +981,7 @@ "Left\n" "itemlist.text" msgid "Left" -msgstr "" +msgstr "Арымарахь" #: formres.src msgctxt "" @@ -990,7 +990,7 @@ "Center\n" "itemlist.text" msgid "Center" -msgstr "" +msgstr "Ацентр ала" #: formres.src msgctxt "" @@ -999,7 +999,7 @@ "Right\n" "itemlist.text" msgid "Right" -msgstr "" +msgstr "Арыӷьарахь" #: formres.src msgctxt "" @@ -1008,7 +1008,7 @@ "None\n" "itemlist.text" msgid "None" -msgstr "" +msgstr "Мап" #: formres.src msgctxt "" @@ -1017,7 +1017,7 @@ "Submit form\n" "itemlist.text" msgid "Submit form" -msgstr "" +msgstr "Идәықәҵатәуп аформа" #: formres.src msgctxt "" @@ -1026,7 +1026,7 @@ "Reset form\n" "itemlist.text" msgid "Reset form" -msgstr "" +msgstr "Еиҭашьақәыргылатәуп аформа" #: formres.src msgctxt "" @@ -1035,7 +1035,7 @@ "Open document/web page\n" "itemlist.text" msgid "Open document/web page" -msgstr "" +msgstr "Иаарттәуп адокумент/web-адаҟьа" #: formres.src msgctxt "" @@ -1080,7 +1080,7 @@ "Save record\n" "itemlist.text" msgid "Save record" -msgstr "Иеиқәырхатәуп анҵамҭа" +msgstr "Еиқәырхатәуп анҵамҭа" #: formres.src msgctxt "" @@ -1089,7 +1089,7 @@ "Undo data entry\n" "itemlist.text" msgid "Undo data entry" -msgstr "" +msgstr "Иаҟәыхтәуп адырқәа рҭагалара" #: formres.src msgctxt "" @@ -1098,7 +1098,7 @@ "New record\n" "itemlist.text" msgid "New record" -msgstr "" +msgstr "Иацҵатәуп анҵамҭа" #: formres.src msgctxt "" @@ -1107,7 +1107,7 @@ "Delete record\n" "itemlist.text" msgid "Delete record" -msgstr "" +msgstr "Ианыхтәуп анҵамҭа" #: formres.src msgctxt "" @@ -1116,7 +1116,7 @@ "Refresh form\n" "itemlist.text" msgid "Refresh form" -msgstr "" +msgstr "Ирҿыцтәуп аформа" #: formres.src msgctxt "" @@ -1314,7 +1314,7 @@ "Not Selected\n" "itemlist.text" msgid "Not Selected" -msgstr "" +msgstr "Иалхӡам" #: formres.src msgctxt "" @@ -1323,7 +1323,7 @@ "Selected\n" "itemlist.text" msgid "Selected" -msgstr "" +msgstr "Иалхуп" #: formres.src msgctxt "" @@ -1359,7 +1359,7 @@ "Current page\n" "itemlist.text" msgid "Current page" -msgstr "" +msgstr "Уажәтәи адаҟьа" #: formres.src msgctxt "" @@ -1514,7 +1514,7 @@ "RID_STR_EVT_CONFIRMDELETE\n" "string.text" msgid "Confirm deletion" -msgstr "" +msgstr "Аныхра ашьақәырӷәӷәара" #: formres.src msgctxt "" @@ -1570,7 +1570,7 @@ "RID_STR_EVT_LOADED\n" "string.text" msgid "When loading" -msgstr "" +msgstr "Аҭагалараан" #: formres.src msgctxt "" @@ -1762,7 +1762,7 @@ "RID_STR_STEP\n" "string.text" msgid "Page (step)" -msgstr "" +msgstr "Адаҟьа (ашьаҿа)" #: formres.src msgctxt "" @@ -1874,7 +1874,7 @@ "RID_STR_REPEAT_DELAY\n" "string.text" msgid "Delay" -msgstr "" +msgstr "Ааҭгылара" #: formres.src msgctxt "" @@ -1890,7 +1890,7 @@ "RID_STR_VISIBLESIZE\n" "string.text" msgid "Visible size" -msgstr "" +msgstr "Иаабо ашәагаа" #: formres.src msgctxt "" @@ -1991,7 +1991,7 @@ "Cancel\n" "itemlist.text" msgid "Cancel" -msgstr "" +msgstr "Аҟәыхра" #: formres.src msgctxt "" @@ -2049,7 +2049,7 @@ "The selected entry\n" "itemlist.text" msgid "The selected entry" -msgstr "" +msgstr "Иалху анҵамҭа" #: formres.src msgctxt "" @@ -2172,7 +2172,7 @@ "Table\n" "itemlist.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: formres.src msgctxt "" @@ -2214,7 +2214,7 @@ "RID_STR_HIDEINACTIVESELECTION\n" "string.text" msgid "Hide selection" -msgstr "" +msgstr "Иҵәахтәуп иалкаау" #: formres.src msgctxt "" @@ -2407,7 +2407,7 @@ "RID_STR_XML_DATA_MODEL\n" "string.text" msgid "XML data model" -msgstr "" +msgstr "XML адырқәа рмодель" #: formres.src msgctxt "" @@ -2610,7 +2610,7 @@ "RID_STR_SELECTION_TYPE\n" "string.text" msgid "Selection type" -msgstr "" +msgstr "Алкаара атип" #: formres.src msgctxt "" @@ -2642,7 +2642,7 @@ "RID_STR_EDITABLE\n" "string.text" msgid "Editable" -msgstr "" +msgstr "Аредакциа зуа" #: formres.src msgctxt "" @@ -2693,7 +2693,7 @@ "Fit to Size\n" "itemlist.text" msgid "Fit to Size" -msgstr "" +msgstr "Ашәагаа иақәыршәатәуп" #: formres.src msgctxt "" @@ -2780,7 +2780,7 @@ "To Paragraph\n" "itemlist.text" msgid "To Paragraph" -msgstr "" +msgstr "Абзац ахь" #: formres.src msgctxt "" @@ -2789,7 +2789,7 @@ "As Character\n" "itemlist.text" msgid "As Character" -msgstr "" +msgstr "Асимвол еиҧш" #: formres.src msgctxt "" @@ -2798,7 +2798,7 @@ "To Page\n" "itemlist.text" msgid "To Page" -msgstr "" +msgstr "Адаҟьахь" #: formres.src msgctxt "" @@ -2816,7 +2816,7 @@ "To Character\n" "itemlist.text" msgid "To Character" -msgstr "" +msgstr "Асимвол ахь" #: formres.src msgctxt "" @@ -2825,7 +2825,7 @@ "To Page\n" "itemlist.text" msgid "To Page" -msgstr "" +msgstr "Адаҟьахь" #: formres.src msgctxt "" @@ -3000,7 +3000,7 @@ "RID_STR_PROPTITLE_FILECONTROL\n" "string.text" msgid "File Selection" -msgstr "" +msgstr "Афаил алхра" #: pcrmiscres.src msgctxt "" @@ -3122,4 +3122,4 @@ "RID_STR_FORMS\n" "string.text" msgid "Forms" -msgstr "" +msgstr "Аформақәа" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/extensions/source/update/check/org/openoffice/Office.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/extensions/source/update/check/org/openoffice/Office.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/extensions/source/update/check/org/openoffice/Office.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/extensions/source/update/check/org/openoffice/Office.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n" -"PO-Revision-Date: 2014-11-02 19:10+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-15 08:39+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1414955431.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510735195.000000\n" #: Addons.xcu msgctxt "" @@ -22,4 +22,4 @@ "Title\n" "value.text" msgid "~Check for Updates..." -msgstr "" +msgstr "Арҿыцрақәа ргәаҭара..." diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/extensions/source/update/check.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/extensions/source/update/check.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/extensions/source/update/check.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/extensions/source/update/check.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-05-23 21:37+0200\n" -"PO-Revision-Date: 2017-07-18 20:04+0000\n" +"PO-Revision-Date: 2017-11-19 10:14+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500408256.000000\n" +"X-POOTLE-MTIME: 1511086476.000000\n" #: updatehdl.src msgctxt "" @@ -21,7 +21,7 @@ "RID_UPDATE_STR_CHECKING\n" "string.text" msgid "Checking..." -msgstr "" +msgstr "Агәаҭара..." #: updatehdl.src msgctxt "" @@ -37,7 +37,7 @@ "RID_UPDATE_STR_NO_UPD_FOUND\n" "string.text" msgid "%PRODUCTNAME %PRODUCTVERSION is up to date." -msgstr "" +msgstr "%PRODUCTNAME %PRODUCTVERSION аҵыхәтәантәи аверсиақәа." #: updatehdl.src msgctxt "" @@ -59,7 +59,7 @@ "RID_UPDATE_STR_DLG_TITLE\n" "string.text" msgid "Check for Updates" -msgstr "" +msgstr "Игәаҭәтәуп арҿыцрақәа рыҟазаара" #: updatehdl.src msgctxt "" @@ -94,7 +94,7 @@ "RID_UPDATE_STR_DOWNLOAD_DESCR\n" "string.text" msgid "%FILE_NAME has been downloaded to %DOWNLOAD_PATH." -msgstr "" +msgstr "%FILE_NAME ҭагалан %DOWNLOAD_PATH ахь." #: updatehdl.src msgctxt "" @@ -113,7 +113,7 @@ "RID_UPDATE_STR_DOWNLOADING\n" "string.text" msgid "Downloading %PRODUCTNAME %NEXTVERSION..." -msgstr "" +msgstr "%PRODUCTNAME %NEXTVERSION Аҭагалара..." #: updatehdl.src msgctxt "" @@ -121,7 +121,7 @@ "RID_UPDATE_STR_READY_INSTALL\n" "string.text" msgid "Download of %PRODUCTNAME %NEXTVERSION completed. Ready for installation." -msgstr "" +msgstr "%PRODUCTNAME %NEXTVERSION аҭагалара хыркәшоуп, ихиоуп ақәыргылараз." #: updatehdl.src msgctxt "" @@ -129,7 +129,7 @@ "RID_UPDATE_STR_CANCEL_TITLE\n" "string.text" msgid "%PRODUCTNAME %PRODUCTVERSION" -msgstr "" +msgstr "%PRODUCTNAME %PRODUCTVERSION" #: updatehdl.src msgctxt "" @@ -137,7 +137,7 @@ "RID_UPDATE_STR_CANCEL_DOWNLOAD\n" "string.text" msgid "Do you really want to cancel the download?" -msgstr "" +msgstr "Шәара ишәҭахума аҭагалара аҟәыхра?" #: updatehdl.src msgctxt "" @@ -153,7 +153,7 @@ "RID_UPDATE_STR_INSTALL_NOW\n" "string.text" msgid "Install ~now" -msgstr "" +msgstr "Иқәыргылатәуп уажәы" #: updatehdl.src msgctxt "" @@ -161,7 +161,7 @@ "RID_UPDATE_STR_INSTALL_LATER\n" "string.text" msgid "Install ~later" -msgstr "" +msgstr "Иқәыргылатәуп ушьҭан" #: updatehdl.src msgctxt "" @@ -177,7 +177,7 @@ "RID_UPDATE_STR_OVERWRITE_WARNING\n" "string.text" msgid "A file with that name already exists! Do you want to overwrite the existing file?" -msgstr "" +msgstr "Ари аҩыза ахьӡ змоу афаил ыҟоуп. Ихҩылаатәума?" #: updatehdl.src msgctxt "" @@ -193,7 +193,7 @@ "RID_UPDATE_STR_RELOAD_RELOAD\n" "string.text" msgid "Reload File" -msgstr "" +msgstr "Ҿыц иҭагалатәуп" #: updatehdl.src msgctxt "" @@ -201,7 +201,7 @@ "RID_UPDATE_STR_RELOAD_CONTINUE\n" "string.text" msgid "Continue" -msgstr "" +msgstr "Иацҵатәуп" #: updatehdl.src msgctxt "" @@ -209,7 +209,7 @@ "RID_UPDATE_STR_PERCENT\n" "string.text" msgid "%PERCENT%" -msgstr "" +msgstr "%PERCENT%" #: updatehdl.src msgctxt "" @@ -217,7 +217,7 @@ "RID_UPDATE_FT_STATUS\n" "string.text" msgid "Status" -msgstr "" +msgstr "Аҭагылазаашьа" #: updatehdl.src msgctxt "" @@ -225,7 +225,7 @@ "RID_UPDATE_FT_DESCRIPTION\n" "string.text" msgid "Description" -msgstr "" +msgstr "Ахҳәаа" #: updatehdl.src msgctxt "" @@ -241,7 +241,7 @@ "RID_UPDATE_BTN_DOWNLOAD\n" "string.text" msgid "~Download" -msgstr "" +msgstr "Иҭагалатәуп" #: updatehdl.src msgctxt "" @@ -249,7 +249,7 @@ "RID_UPDATE_BTN_INSTALL\n" "string.text" msgid "~Install" -msgstr "" +msgstr "Иқәыргылатәуп" #: updatehdl.src msgctxt "" @@ -257,7 +257,7 @@ "RID_UPDATE_BTN_PAUSE\n" "string.text" msgid "~Pause" -msgstr "" +msgstr "Иааҭгылатәуп" #: updatehdl.src msgctxt "" @@ -265,7 +265,7 @@ "RID_UPDATE_BTN_RESUME\n" "string.text" msgid "~Resume" -msgstr "" +msgstr "Иацҵатәуп" #: updatehdl.src msgctxt "" @@ -273,7 +273,7 @@ "RID_UPDATE_BTN_CANCEL\n" "string.text" msgid "Cancel" -msgstr "" +msgstr "Аҟәыхра" #: updatehdl.src msgctxt "" @@ -321,7 +321,7 @@ "RID_UPDATE_BUBBLE_AUTO_START\n" "string.text" msgid "Download of update begins." -msgstr "" +msgstr "Арҿыцрақәа рҭагалара алагара." #: updatehdl.src msgctxt "" @@ -329,7 +329,7 @@ "RID_UPDATE_BUBBLE_T_DOWNLOADING\n" "string.text" msgid "Download of update in progress" -msgstr "" +msgstr "Арҿыцрақәа рҭагалара" #: updatehdl.src msgctxt "" @@ -337,7 +337,7 @@ "RID_UPDATE_BUBBLE_T_DOWNLOAD_PAUSED\n" "string.text" msgid "Download of update paused" -msgstr "" +msgstr "Арҿыцрақәа рҭагалара аамҭала иаанкылоуп" #: updatehdl.src msgctxt "" @@ -353,7 +353,7 @@ "RID_UPDATE_BUBBLE_T_ERROR_DOWNLOADING\n" "string.text" msgid "Download of update stalled" -msgstr "" +msgstr "Арҿыцрақәа рҭагалара аанкылеит" #: updatehdl.src msgctxt "" @@ -369,7 +369,7 @@ "RID_UPDATE_BUBBLE_T_DOWNLOAD_AVAIL\n" "string.text" msgid "Download of update completed" -msgstr "" +msgstr "Арҿыцрақәа рҭагалара хыркәшоуп" #: updatehdl.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/extensions/uiconfig/sabpilot/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/extensions/uiconfig/sabpilot/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/extensions/uiconfig/sabpilot/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/extensions/uiconfig/sabpilot/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-11-10 19:33+0100\n" -"PO-Revision-Date: 2017-09-18 11:07+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-27 16:51+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1505732851.000000\n" +"X-POOTLE-MTIME: 1511801462.000000\n" #: contentfieldpage.ui msgctxt "" @@ -67,7 +67,7 @@ "label\n" "string.text" msgid "Form" -msgstr "" +msgstr "Аформа" #: contenttablepage.ui msgctxt "" @@ -128,7 +128,7 @@ "label\n" "string.text" msgid "Browse..." -msgstr "" +msgstr "Аҭыҧхәаҧшра..." #: datasourcepage.ui msgctxt "" @@ -268,7 +268,7 @@ "label\n" "string.text" msgid "Form" -msgstr "" +msgstr "Аформа" #: gridfieldsselectionpage.ui msgctxt "" @@ -277,7 +277,7 @@ "label\n" "string.text" msgid "Selected fields" -msgstr "" +msgstr "Иалху аҭакырақәа" #: gridfieldsselectionpage.ui #, fuzzy @@ -333,7 +333,7 @@ "label\n" "string.text" msgid "Table element" -msgstr "" +msgstr "Атаблица аелемент" #: groupradioselectionpage.ui msgctxt "" @@ -369,7 +369,7 @@ "label\n" "string.text" msgid "Form" -msgstr "" +msgstr "Аформа" #: groupradioselectionpage.ui msgctxt "" @@ -416,7 +416,7 @@ "label\n" "string.text" msgid "Table element" -msgstr "" +msgstr "Атаблица аелемент" #: invokeadminpage.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/extensions/uiconfig/sbibliography/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/extensions/uiconfig/sbibliography/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/extensions/uiconfig/sbibliography/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/extensions/uiconfig/sbibliography/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-03-09 20:49+0100\n" -"PO-Revision-Date: 2016-03-10 11:24+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-29 08:59+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1457609060.000000\n" +"X-POOTLE-MTIME: 1511945988.000000\n" #: choosedatasourcedialog.ui msgctxt "" @@ -130,7 +130,7 @@ "label\n" "string.text" msgid "Editor" -msgstr "" +msgstr "Аредактор" #: generalpage.ui msgctxt "" @@ -364,7 +364,7 @@ "label\n" "string.text" msgid "Editor" -msgstr "" +msgstr "Аредактор" #: mappingdialog.ui msgctxt "" @@ -616,7 +616,7 @@ "label\n" "string.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: toolbar.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/extensions/uiconfig/spropctrlr/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/extensions/uiconfig/spropctrlr/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/extensions/uiconfig/spropctrlr/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/extensions/uiconfig/spropctrlr/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2017-07-21 18:48+0000\n" +"PO-Revision-Date: 2017-11-29 10:07+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500662895.000000\n" +"X-POOTLE-MTIME: 1511950033.000000\n" #: controlfontdialog.ui msgctxt "" @@ -22,7 +22,7 @@ "title\n" "string.text" msgid "Character" -msgstr "" +msgstr "Асимволқәа" #: controlfontdialog.ui msgctxt "" @@ -49,7 +49,7 @@ "title\n" "string.text" msgid "New Data Type" -msgstr "" +msgstr "Адырқәа ртип ҿыц" #: datatypedialog.ui msgctxt "" @@ -58,7 +58,7 @@ "label\n" "string.text" msgid "Type a name for the new data type:" -msgstr "" +msgstr "Иҭажәгал, адырқәа ртип ҿыц ахьӡ:" #: formlinksdialog.ui msgctxt "" @@ -112,7 +112,7 @@ "title\n" "string.text" msgid "Label Field Selection" -msgstr "" +msgstr "Аҭыбырбага алхра" #: labelselectiondialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/extras/source/autocorr/emoji.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/extras/source/autocorr/emoji.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/extras/source/autocorr/emoji.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/extras/source/autocorr/emoji.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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: 2016-12-01 11:53+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-12-12 10:08+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1480593210.000000\n" +"X-POOTLE-MTIME: 1513073334.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -22,7 +22,7 @@ "CENT_SIGN\n" "LngText.text" msgid "cent" -msgstr "" +msgstr "ацент" #. £ (U+000A3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -31,7 +31,7 @@ "POUND_SIGN\n" "LngText.text" msgid "pound" -msgstr "" +msgstr "афунт" #. ¥ (U+000A5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -40,7 +40,7 @@ "YEN_SIGN\n" "LngText.text" msgid "yen" -msgstr "" +msgstr "иена" #. § (U+000A7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -49,7 +49,7 @@ "SECTION_SIGN\n" "LngText.text" msgid "section" -msgstr "" +msgstr "апараграф" #. © (U+000A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -58,7 +58,7 @@ "COPYRIGHT_SIGN\n" "LngText.text" msgid "copyright" -msgstr "" +msgstr "автор изинқәа" #. ¬ (U+000AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -67,7 +67,7 @@ "NOT_SIGN\n" "LngText.text" msgid "not" -msgstr "" +msgstr "акәӡам" #. ® (U+000AE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -85,7 +85,7 @@ "DEGREE_SIGN\n" "LngText.text" msgid "degree" -msgstr "" +msgstr "аградус" #. ± (U+000B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -94,7 +94,7 @@ "PLUS-MINUS_SIGN\n" "LngText.text" msgid "+-" -msgstr "" +msgstr "+-" #. · (U+000B7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -112,7 +112,7 @@ "MULTIPLICATION_SIGN\n" "LngText.text" msgid "x" -msgstr "" +msgstr "x" #. Α (U+00391), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -121,7 +121,7 @@ "GREEK_CAPITAL_LETTER_ALPHA\n" "LngText.text" msgid "Alpha" -msgstr "" +msgstr "Альфа" #. Β (U+00392), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -130,7 +130,7 @@ "GREEK_CAPITAL_LETTER_BETA\n" "LngText.text" msgid "Beta" -msgstr "" +msgstr "Бета" #. Γ (U+00393), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -139,7 +139,7 @@ "GREEK_CAPITAL_LETTER_GAMMA\n" "LngText.text" msgid "Gamma" -msgstr "" +msgstr "Гамма" #. Δ (U+00394), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -148,7 +148,7 @@ "GREEK_CAPITAL_LETTER_DELTA\n" "LngText.text" msgid "Delta" -msgstr "" +msgstr "Дельта" #. Ε (U+00395), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -157,7 +157,7 @@ "GREEK_CAPITAL_LETTER_EPSILON\n" "LngText.text" msgid "Epsilon" -msgstr "" +msgstr "Епсилон" #. Ζ (U+00396), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -166,7 +166,7 @@ "GREEK_CAPITAL_LETTER_ZETA\n" "LngText.text" msgid "Zeta" -msgstr "" +msgstr "Ӡета" #. Η (U+00397), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -175,7 +175,7 @@ "GREEK_CAPITAL_LETTER_ETA\n" "LngText.text" msgid "Eta" -msgstr "" +msgstr "Ета" #. Θ (U+00398), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -184,7 +184,7 @@ "GREEK_CAPITAL_LETTER_THETA\n" "LngText.text" msgid "Theta" -msgstr "" +msgstr "Тета" #. Ι (U+00399), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -193,7 +193,7 @@ "GREEK_CAPITAL_LETTER_IOTA\n" "LngText.text" msgid "Iota" -msgstr "" +msgstr "Иота" #. Κ (U+0039A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -202,7 +202,7 @@ "GREEK_CAPITAL_LETTER_KAPPA\n" "LngText.text" msgid "Kappa" -msgstr "" +msgstr "Каппа" #. Λ (U+0039B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -211,7 +211,7 @@ "GREEK_CAPITAL_LETTER_LAMDA\n" "LngText.text" msgid "Lambda" -msgstr "" +msgstr "Лиамбда" #. Μ (U+0039C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -220,7 +220,7 @@ "GREEK_CAPITAL_LETTER_MU\n" "LngText.text" msgid "Mu" -msgstr "" +msgstr "Миу" #. Ν (U+0039D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -229,7 +229,7 @@ "GREEK_CAPITAL_LETTER_NU\n" "LngText.text" msgid "Nu" -msgstr "" +msgstr "Ниу" #. Ξ (U+0039E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -238,7 +238,7 @@ "GREEK_CAPITAL_LETTER_XI\n" "LngText.text" msgid "Xi" -msgstr "" +msgstr "Кси" #. Ο (U+0039F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -247,7 +247,7 @@ "GREEK_CAPITAL_LETTER_OMICRON\n" "LngText.text" msgid "Omicron" -msgstr "" +msgstr "Омикрон" #. Π (U+003A0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -256,7 +256,7 @@ "GREEK_CAPITAL_LETTER_PI\n" "LngText.text" msgid "Pi" -msgstr "" +msgstr "Пи" #. Ρ (U+003A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -265,7 +265,7 @@ "GREEK_CAPITAL_LETTER_RHO\n" "LngText.text" msgid "Rho" -msgstr "" +msgstr "Ро" #. Σ (U+003A3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -274,7 +274,7 @@ "GREEK_CAPITAL_LETTER_SIGMA\n" "LngText.text" msgid "Sigma" -msgstr "" +msgstr "Сигма" #. Τ (U+003A4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -283,7 +283,7 @@ "GREEK_CAPITAL_LETTER_TAU\n" "LngText.text" msgid "Tau" -msgstr "" +msgstr "Тау" #. Υ (U+003A5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -292,7 +292,7 @@ "GREEK_CAPITAL_LETTER_UPSILON\n" "LngText.text" msgid "Upsilon" -msgstr "" +msgstr "Ипсилон" #. Φ (U+003A6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -301,7 +301,7 @@ "GREEK_CAPITAL_LETTER_PHI\n" "LngText.text" msgid "Phi" -msgstr "" +msgstr "Фи" #. Χ (U+003A7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -310,7 +310,7 @@ "GREEK_CAPITAL_LETTER_CHI\n" "LngText.text" msgid "Chi" -msgstr "" +msgstr "Хи" #. Ψ (U+003A8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -319,7 +319,7 @@ "GREEK_CAPITAL_LETTER_PSI\n" "LngText.text" msgid "Psi" -msgstr "" +msgstr "Пси" #. Ω (U+003A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -328,7 +328,7 @@ "GREEK_CAPITAL_LETTER_OMEGA\n" "LngText.text" msgid "Omega" -msgstr "" +msgstr "Омега" #. α (U+003B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -337,7 +337,7 @@ "GREEK_SMALL_LETTER_ALPHA\n" "LngText.text" msgid "alpha" -msgstr "" +msgstr "альфа" #. β (U+003B2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -346,7 +346,7 @@ "GREEK_SMALL_LETTER_BETA\n" "LngText.text" msgid "beta" -msgstr "" +msgstr "бета" #. γ (U+003B3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -355,7 +355,7 @@ "GREEK_SMALL_LETTER_GAMMA\n" "LngText.text" msgid "gamma" -msgstr "" +msgstr "гамма" #. δ (U+003B4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -364,7 +364,7 @@ "GREEK_SMALL_LETTER_DELTA\n" "LngText.text" msgid "delta" -msgstr "" +msgstr "дельта" #. ε (U+003B5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -373,7 +373,7 @@ "GREEK_SMALL_LETTER_EPSILON\n" "LngText.text" msgid "epsilon" -msgstr "" +msgstr "епсилон" #. ζ (U+003B6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -382,7 +382,7 @@ "GREEK_SMALL_LETTER_ZETA\n" "LngText.text" msgid "zeta" -msgstr "" +msgstr "ӡета" #. η (U+003B7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -391,7 +391,7 @@ "GREEK_SMALL_LETTER_ETA\n" "LngText.text" msgid "eta" -msgstr "" +msgstr "ета" #. θ (U+003B8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -400,7 +400,7 @@ "GREEK_SMALL_LETTER_THETA\n" "LngText.text" msgid "theta" -msgstr "" +msgstr "тета" #. ι (U+003B9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -409,7 +409,7 @@ "GREEK_SMALL_LETTER_IOTA\n" "LngText.text" msgid "iota" -msgstr "" +msgstr "иота" #. κ (U+003BA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -418,7 +418,7 @@ "GREEK_SMALL_LETTER_KAPPA\n" "LngText.text" msgid "kappa" -msgstr "" +msgstr "каппа" #. λ (U+003BB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -427,7 +427,7 @@ "GREEK_SMALL_LETTER_LAMDA\n" "LngText.text" msgid "lambda" -msgstr "" +msgstr "лиамбда" #. μ (U+003BC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -436,7 +436,7 @@ "GREEK_SMALL_LETTER_MU\n" "LngText.text" msgid "mu" -msgstr "" +msgstr "миу" #. ν (U+003BD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -445,7 +445,7 @@ "GREEK_SMALL_LETTER_NU\n" "LngText.text" msgid "nu" -msgstr "" +msgstr "ниу" #. ξ (U+003BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -454,7 +454,7 @@ "GREEK_SMALL_LETTER_XI\n" "LngText.text" msgid "xi" -msgstr "" +msgstr "кси" #. ο (U+003BF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -463,7 +463,7 @@ "GREEK_SMALL_LETTER_OMICRON\n" "LngText.text" msgid "omicron" -msgstr "" +msgstr "омикрон" #. π (U+003C0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -472,7 +472,7 @@ "GREEK_SMALL_LETTER_PI\n" "LngText.text" msgid "pi" -msgstr "" +msgstr "пи" #. ρ (U+003C1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -481,7 +481,7 @@ "GREEK_SMALL_LETTER_RHO\n" "LngText.text" msgid "rho" -msgstr "" +msgstr "ро" #. ς (U+003C2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -490,7 +490,7 @@ "GREEK_SMALL_LETTER_FINAL_SIGMA\n" "LngText.text" msgid "sigma2" -msgstr "" +msgstr "сигма 2" #. σ (U+003C3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -499,7 +499,7 @@ "GREEK_SMALL_LETTER_SIGMA\n" "LngText.text" msgid "sigma" -msgstr "" +msgstr "сигма" #. τ (U+003C4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -508,7 +508,7 @@ "GREEK_SMALL_LETTER_TAU\n" "LngText.text" msgid "tau" -msgstr "" +msgstr "тау" #. υ (U+003C5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -517,7 +517,7 @@ "GREEK_SMALL_LETTER_UPSILON\n" "LngText.text" msgid "upsilon" -msgstr "" +msgstr "ипсилон" #. φ (U+003C6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -526,7 +526,7 @@ "GREEK_SMALL_LETTER_PHI\n" "LngText.text" msgid "phi" -msgstr "" +msgstr "фи" #. χ (U+003C7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -535,7 +535,7 @@ "GREEK_SMALL_LETTER_CHI\n" "LngText.text" msgid "chi" -msgstr "" +msgstr "хи" #. ψ (U+003C8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -544,7 +544,7 @@ "GREEK_SMALL_LETTER_PSI\n" "LngText.text" msgid "psi" -msgstr "" +msgstr "пси" #. ω (U+003C9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -553,7 +553,7 @@ "GREEK_SMALL_LETTER_OMEGA\n" "LngText.text" msgid "omega" -msgstr "" +msgstr "омега" #. ฿ (U+00E3F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -562,7 +562,7 @@ "THAI_CURRENCY_SYMBOL_BAHT\n" "LngText.text" msgid "baht" -msgstr "" +msgstr "бат" #. – (U+02013), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -619,7 +619,7 @@ "BULLET\n" "LngText.text" msgid "bullet" -msgstr "" +msgstr "амаркер" #. ‣ (U+02023), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -628,7 +628,7 @@ "TRIANGULAR_BULLET\n" "LngText.text" msgid "bullet2" -msgstr "" +msgstr "амаркер2" #. … (U+02026), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -647,7 +647,7 @@ "PER_MILLE_SIGN\n" "LngText.text" msgid "per mille" -msgstr "" +msgstr "промилле" #. ‱ (U+02031), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -674,11 +674,10 @@ "DOUBLE_PRIME\n" "LngText.text" msgid "inch" -msgstr "" +msgstr "адиуим" #. ‼ (U+0203C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf -#, fuzzy msgctxt "" "emoji.ulf\n" "DOUBLE_EXCLAMATION_MARK\n" @@ -703,7 +702,7 @@ "LIRA_SIGN\n" "LngText.text" msgid "lira" -msgstr "" +msgstr "лира" #. ₩ (U+020A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -712,7 +711,7 @@ "WON_SIGN\n" "LngText.text" msgid "won" -msgstr "" +msgstr "вон" #. ₪ (U+020AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -721,7 +720,7 @@ "NEW_SHEQEL_SIGN\n" "LngText.text" msgid "shekel" -msgstr "" +msgstr "шекель" #. € (U+020AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -730,7 +729,7 @@ "EURO_SIGN\n" "LngText.text" msgid "euro" -msgstr "" +msgstr "евро" #. ₱ (U+020B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -739,7 +738,7 @@ "PESO_SIGN\n" "LngText.text" msgid "peso" -msgstr "" +msgstr "песо" #. ₴ (U+020B4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -748,7 +747,7 @@ "HRYVNIA_SIGN\n" "LngText.text" msgid "hryvnia" -msgstr "" +msgstr "гривна" #. ₹ (U+020B9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -757,7 +756,7 @@ "INDIAN_RUPEE_SIGN\n" "LngText.text" msgid "rupee" -msgstr "" +msgstr "рупии" #. ₺ (U+020BA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -766,7 +765,7 @@ "TURKISH_LIRA_SIGN\n" "LngText.text" msgid "Turkish lira" -msgstr "" +msgstr "Аҭырқәа илира" #. ™ (U+02122), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -784,7 +783,7 @@ "INFORMATION_SOURCE\n" "LngText.text" msgid "information" -msgstr "" +msgstr "аинформациа" #. ← (U+02190), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -793,7 +792,7 @@ "LEFTWARDS_ARROW\n" "LngText.text" msgid "W" -msgstr "" +msgstr "Мраҭашәара" #. ↑ (U+02191), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -802,7 +801,7 @@ "UPWARDS_ARROW\n" "LngText.text" msgid "N" -msgstr "" +msgstr "Аҩада" #. → (U+02192), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -811,7 +810,7 @@ "RIGHTWARDS_ARROW\n" "LngText.text" msgid "E" -msgstr "" +msgstr "Мрагылара" #. ↓ (U+02193), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -820,7 +819,7 @@ "DOWNWARDS_ARROW\n" "LngText.text" msgid "S" -msgstr "" +msgstr "Алада" #. ↔ (U+02194), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -829,7 +828,7 @@ "LEFT_RIGHT_ARROW\n" "LngText.text" msgid "EW" -msgstr "" +msgstr "Мраҭ-Мраг" #. ↕ (U+02195), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -838,7 +837,7 @@ "UP_DOWN_ARROW\n" "LngText.text" msgid "NS" -msgstr "" +msgstr "Аҩ-Ал" #. ↖ (U+02196), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -847,7 +846,7 @@ "NORTH_WEST_ARROW\n" "LngText.text" msgid "NW" -msgstr "" +msgstr "Аҩ-Мраҭ" #. ↗ (U+02197), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -856,7 +855,7 @@ "NORTH_EAST_ARROW\n" "LngText.text" msgid "NE" -msgstr "" +msgstr "Аҩ-Мраг" #. ↘ (U+02198), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -865,7 +864,7 @@ "SOUTH_EAST_ARROW\n" "LngText.text" msgid "SE" -msgstr "" +msgstr "Ал-Мраг" #. ↙ (U+02199), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -874,7 +873,7 @@ "SOUTH_WEST_ARROW\n" "LngText.text" msgid "SW" -msgstr "" +msgstr "Ал-Мраҭ" #. ⇐ (U+021D0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -883,7 +882,7 @@ "LEFTWARDS_DOUBLE_ARROW\n" "LngText.text" msgid "W2" -msgstr "" +msgstr "Мраҭашәара 2" #. ⇑ (U+021D1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -892,7 +891,7 @@ "UPWARDS_DOUBLE_ARROW\n" "LngText.text" msgid "N2" -msgstr "" +msgstr "Аҩада 2" #. ⇒ (U+021D2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -901,7 +900,7 @@ "RIGHTWARDS_DOUBLE_ARROW\n" "LngText.text" msgid "E2" -msgstr "" +msgstr "Мрагылара 2" #. ⇓ (U+021D3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -910,7 +909,7 @@ "DOWNWARDS_DOUBLE_ARROW\n" "LngText.text" msgid "S2" -msgstr "" +msgstr "Алада 2" #. ⇔ (U+021D4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -919,7 +918,7 @@ "LEFT_RIGHT_DOUBLE_ARROW\n" "LngText.text" msgid "EW2" -msgstr "" +msgstr "Мраҭ-Мраг 2" #. ⇕ (U+021D5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -928,7 +927,7 @@ "UP_DOWN_DOUBLE_ARROW\n" "LngText.text" msgid "NS2" -msgstr "" +msgstr "Аҩ-Ал 2" #. ⇖ (U+021D6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -937,7 +936,7 @@ "NORTH_WEST_DOUBLE_ARROW\n" "LngText.text" msgid "NW2" -msgstr "" +msgstr "Аҩ-Мраҭ 2" #. ⇗ (U+021D7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -946,7 +945,7 @@ "NORTH_EAST_DOUBLE_ARROW\n" "LngText.text" msgid "NE2" -msgstr "" +msgstr "Аҩ-Мраг 2" #. ⇘ (U+021D8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -955,7 +954,7 @@ "SOUTH_EAST_DOUBLE_ARROW\n" "LngText.text" msgid "SE2" -msgstr "" +msgstr "Ал-Мраг 2" #. ⇙ (U+021D9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -964,7 +963,7 @@ "SOUTH_WEST_DOUBLE_ARROW\n" "LngText.text" msgid "SW2" -msgstr "" +msgstr "Ал-Мраҭ 2" #. ∀ (U+02200), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -973,7 +972,7 @@ "FOR_ALL\n" "LngText.text" msgid "for all" -msgstr "" +msgstr "зегьы рзы" #. ∂ (U+02202), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1009,7 +1008,7 @@ "EMPTY_SET\n" "LngText.text" msgid "empty set" -msgstr "" +msgstr "иҭацәу арацәа" #. ∈ (U+02208), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1018,7 +1017,7 @@ "ELEMENT_OF\n" "LngText.text" msgid "in" -msgstr "" +msgstr "иаҵанакуеит" #. ∉ (U+02209), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1027,7 +1026,7 @@ "NOT_AN_ELEMENT_OF\n" "LngText.text" msgid "not in" -msgstr "" +msgstr "иаҵанакӡом" #. ∊ (U+0220A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1081,7 +1080,7 @@ "N-ARY_PRODUCT\n" "LngText.text" msgid "product" -msgstr "" +msgstr "ашьҭыхлыҵ" #. ∑ (U+02211), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1090,7 +1089,7 @@ "N-ARY_SUMMATION\n" "LngText.text" msgid "sum" -msgstr "" +msgstr "аицҵалыҵ" #. − (U+02212), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1109,7 +1108,7 @@ "MINUS-OR-PLUS_SIGN\n" "LngText.text" msgid "-+" -msgstr "" +msgstr "-+" #. ∕ (U+02215), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1138,7 +1137,7 @@ "SQUARE_ROOT\n" "LngText.text" msgid "sqrt" -msgstr "" +msgstr "sqrt" #. ∛ (U+0221B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1174,7 +1173,7 @@ "ANGLE\n" "LngText.text" msgid "angle" -msgstr "" +msgstr "акәакь" #. ∡ (U+02221), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1183,7 +1182,7 @@ "MEASURED_ANGLE\n" "LngText.text" msgid "angle2" -msgstr "" +msgstr "акәакь 2" #. ∣ (U+02223), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1192,7 +1191,7 @@ "DIVIDES\n" "LngText.text" msgid "divides" -msgstr "" +msgstr "иашоит" #. ∤ (U+02224), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1201,7 +1200,7 @@ "DOES_NOT_DIVIDE\n" "LngText.text" msgid "not divides" -msgstr "" +msgstr "иашаӡом" #. ∥ (U+02225), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1237,7 +1236,7 @@ "LOGICAL_OR\n" "LngText.text" msgid "or" -msgstr "" +msgstr "ма" #. ∩ (U+02229), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1255,7 +1254,7 @@ "UNION\n" "LngText.text" msgid "union" -msgstr "" +msgstr "аидҵара" #. ∫ (U+0222B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1264,7 +1263,7 @@ "INTEGRAL\n" "LngText.text" msgid "integral" -msgstr "" +msgstr "аинтеграл" #. ∬ (U+0222C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1273,7 +1272,7 @@ "DOUBLE_INTEGRAL\n" "LngText.text" msgid "integral2" -msgstr "" +msgstr "иҩбатәу аинтеграл" #. ∭ (U+0222D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1282,7 +1281,7 @@ "TRIPLE_INTEGRAL\n" "LngText.text" msgid "integral3" -msgstr "" +msgstr "ихҧатәу аинтеграл" #. ∮ (U+0222E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1318,7 +1317,7 @@ "NOT_EQUAL_TO\n" "LngText.text" msgid "not equal" -msgstr "" +msgstr "иаҟараӡам" #. ≤ (U+02264), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1327,7 +1326,7 @@ "LESS-THAN_OR_EQUAL_TO\n" "LngText.text" msgid "<=" -msgstr "" +msgstr "<=" #. ≥ (U+02265), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1336,7 +1335,7 @@ "GREATER-THAN_OR_EQUAL_TO\n" "LngText.text" msgid ">=" -msgstr "" +msgstr ">=" #. ≪ (U+0226A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1410,7 +1409,7 @@ "WATCH\n" "LngText.text" msgid "watch" -msgstr "" +msgstr "асааҭ" #. ⌛ (U+0231B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1419,7 +1418,7 @@ "HOURGLASS\n" "LngText.text" msgid "hourglass" -msgstr "" +msgstr "аҧслымӡтә сааҭ" #. ⌨ (U+02328), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1428,7 +1427,7 @@ "KEYBOARD\n" "LngText.text" msgid "keyboard" -msgstr "" +msgstr "аклавиатура" #. ⏢ (U+023E2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1437,7 +1436,7 @@ "WHITE_TRAPEZIUM\n" "LngText.text" msgid "trapezium" -msgstr "" +msgstr "Атрапециа" #. ⏰ (U+023F0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1446,7 +1445,7 @@ "ALARM_CLOCK\n" "LngText.text" msgid "alarm clock" -msgstr "" +msgstr "арҿыхагатә сааҭ" #. ⏱ (U+023F1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1482,7 +1481,7 @@ "BLACK_SQUARE\n" "LngText.text" msgid "square2" -msgstr "" +msgstr "аквадрат 2" #. □ (U+025A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1491,7 +1490,7 @@ "WHITE_SQUARE\n" "LngText.text" msgid "square" -msgstr "" +msgstr "аквадрат" #. ▪ (U+025AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1500,7 +1499,7 @@ "BLACK_SMALL_SQUARE\n" "LngText.text" msgid "small square2" -msgstr "" +msgstr "аквадрат маҷ 2" #. ▫ (U+025AB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1509,7 +1508,7 @@ "WHITE_SMALL_SQUARE\n" "LngText.text" msgid "small square" -msgstr "" +msgstr "аквадрат маҷ" #. ▬ (U+025AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1518,7 +1517,7 @@ "BLACK_RECTANGLE\n" "LngText.text" msgid "rectangle2" -msgstr "" +msgstr "акәаҭаиаша 2" #. ▭ (U+025AD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1527,7 +1526,7 @@ "WHITE_RECTANGLE\n" "LngText.text" msgid "rectangle" -msgstr "" +msgstr "акәаҭаиаша" #. ▰ (U+025B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1536,7 +1535,7 @@ "BLACK_PARALLELOGRAM\n" "LngText.text" msgid "parallelogram2" -msgstr "" +msgstr "апараллелограмм 2" #. ▱ (U+025B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1545,7 +1544,7 @@ "WHITE_PARALLELOGRAM\n" "LngText.text" msgid "parallelogram" -msgstr "" +msgstr "апараллелограмм" #. ▲ (U+025B2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1554,7 +1553,7 @@ "BLACK_UP-POINTING_TRIANGLE\n" "LngText.text" msgid "triangle2" -msgstr "" +msgstr "ахкәакь 2" #. △ (U+025B3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1563,7 +1562,7 @@ "WHITE_UP-POINTING_TRIANGLE\n" "LngText.text" msgid "triangle" -msgstr "" +msgstr "ахкәакь" #. ◊ (U+025CA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1572,7 +1571,7 @@ "LOZENGE\n" "LngText.text" msgid "lozenge" -msgstr "" +msgstr "аромб" #. ○ (U+025CB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1581,7 +1580,7 @@ "WHITE_CIRCLE\n" "LngText.text" msgid "circle" -msgstr "" +msgstr "агьежь" #. ● (U+025CF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1590,7 +1589,7 @@ "BLACK_CIRCLE\n" "LngText.text" msgid "circle2" -msgstr "" +msgstr "агьежь 2" #. ◦ (U+025E6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1599,7 +1598,7 @@ "WHITE_BULLET\n" "LngText.text" msgid "bullet3" -msgstr "" +msgstr "амаркер3" #. ◯ (U+025EF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1608,7 +1607,7 @@ "LARGE_CIRCLE\n" "LngText.text" msgid "large circle" -msgstr "" +msgstr "идуу агьежь" #. ◻ (U+025FB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1617,7 +1616,7 @@ "WHITE_MEDIUM_SQUARE\n" "LngText.text" msgid "medium square" -msgstr "" +msgstr "ибжьаратәу аквадрат" #. ◼ (U+025FC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1626,7 +1625,7 @@ "BLACK_MEDIUM_SQUARE\n" "LngText.text" msgid "medium square2" -msgstr "" +msgstr "ибжьаратәу аквадрат 2" #. ◽ (U+025FD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1635,7 +1634,7 @@ "WHITE_MEDIUM_SMALL_SQUARE\n" "LngText.text" msgid "smaller square" -msgstr "" +msgstr "аквадрат маҷ" #. ◾ (U+025FE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1644,7 +1643,7 @@ "BLACK_MEDIUM_SMALL_SQUARE\n" "LngText.text" msgid "smaller square2" -msgstr "" +msgstr "аквадрат маҷ 2" #. ☀ (U+02600), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1671,7 +1670,7 @@ "UMBRELLA\n" "LngText.text" msgid "umbrella" -msgstr "" +msgstr "аҳаргь" #. ☃ (U+02603), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1689,7 +1688,7 @@ "COMET\n" "LngText.text" msgid "comet" -msgstr "" +msgstr "акомета" #. ★ (U+02605), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1698,7 +1697,7 @@ "BLACK_STAR\n" "LngText.text" msgid "star" -msgstr "" +msgstr "аиаҵәа" #. ☆ (U+02606), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1707,7 +1706,7 @@ "WHITE_STAR\n" "LngText.text" msgid "star2" -msgstr "" +msgstr "аиаҵәа 2" #. ☇ (U+02607), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1716,7 +1715,7 @@ "LIGHTNING\n" "LngText.text" msgid "lighting" -msgstr "" +msgstr "амацәыс" #. ☈ (U+02608), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1734,7 +1733,7 @@ "SUN\n" "LngText.text" msgid "Sun" -msgstr "" +msgstr "Амра" #. ☎ (U+0260E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1743,7 +1742,7 @@ "BLACK_TELEPHONE\n" "LngText.text" msgid "phone" -msgstr "" +msgstr "аҭел" #. ☏ (U+0260F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1752,7 +1751,7 @@ "WHITE_TELEPHONE\n" "LngText.text" msgid "phone2" -msgstr "" +msgstr "аҭел 2" #. ☐ (U+02610), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1806,7 +1805,7 @@ "HOT_BEVERAGE\n" "LngText.text" msgid "coffee" -msgstr "" +msgstr "акофе" #. ☚ (U+0261A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1815,7 +1814,7 @@ "BLACK_LEFT_POINTING_INDEX\n" "LngText.text" msgid "left3" -msgstr "" +msgstr "армарахь 3" #. ☛ (U+0261B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1824,7 +1823,7 @@ "BLACK_RIGHT_POINTING_INDEX\n" "LngText.text" msgid "right3" -msgstr "" +msgstr "аргьарахь 3" #. ☜ (U+0261C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1833,7 +1832,7 @@ "WHITE_LEFT_POINTING_INDEX\n" "LngText.text" msgid "left" -msgstr "" +msgstr "армарахь" #. ☝ (U+0261D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1842,7 +1841,7 @@ "WHITE_UP_POINTING_INDEX\n" "LngText.text" msgid "up" -msgstr "" +msgstr "аҩада" #. ☞ (U+0261E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1851,7 +1850,7 @@ "WHITE_RIGHT_POINTING_INDEX\n" "LngText.text" msgid "right" -msgstr "" +msgstr "аргьарахь" #. ☟ (U+0261F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1860,7 +1859,7 @@ "WHITE_DOWN_POINTING_INDEX\n" "LngText.text" msgid "down" -msgstr "" +msgstr "алада" #. ☠ (U+02620), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1869,7 +1868,7 @@ "SKULL_AND_CROSSBONES\n" "LngText.text" msgid "poison" -msgstr "" +msgstr "ашҳам" #. ☡ (U+02621), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1968,7 +1967,7 @@ "FARSI_SYMBOL\n" "LngText.text" msgid "Farsi" -msgstr "" +msgstr "Фарси" #. ☬ (U+0262C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2040,7 +2039,7 @@ "WHITE_SUN_WITH_RAYS\n" "LngText.text" msgid "Sun2" -msgstr "" +msgstr "амра 2" #. ☽ (U+0263D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2049,7 +2048,7 @@ "FIRST_QUARTER_MOON\n" "LngText.text" msgid "Moon" -msgstr "" +msgstr "Амза" #. ☾ (U+0263E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2058,7 +2057,7 @@ "LAST_QUARTER_MOON\n" "LngText.text" msgid "Moon2" -msgstr "" +msgstr "Амза 2" #. ☿ (U+0263F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2067,7 +2066,7 @@ "MERCURY\n" "LngText.text" msgid "Mercury" -msgstr "" +msgstr "Меркури" #. ♀ (U+02640), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2076,7 +2075,7 @@ "FEMALE_SIGN\n" "LngText.text" msgid "female" -msgstr "" +msgstr "аҧҳәыс" #. ♁ (U+02641), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2085,7 +2084,7 @@ "EARTH\n" "LngText.text" msgid "Earth" -msgstr "" +msgstr "Адгьыл" #. ♂ (U+02642), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2094,7 +2093,7 @@ "MALE_SIGN\n" "LngText.text" msgid "male" -msgstr "" +msgstr "ахаҵа" #. ♃ (U+02643), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2103,7 +2102,7 @@ "JUPITER\n" "LngText.text" msgid "Jupiter" -msgstr "" +msgstr "Иупитер" #. ♄ (U+02644), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2112,7 +2111,7 @@ "SATURN\n" "LngText.text" msgid "Saturn" -msgstr "" +msgstr "Сатурн" #. ♅ (U+02645), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2121,7 +2120,7 @@ "URANUS\n" "LngText.text" msgid "Uranus" -msgstr "" +msgstr "Уран" #. ♆ (U+02646), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2130,7 +2129,7 @@ "NEPTUNE\n" "LngText.text" msgid "Neptune" -msgstr "" +msgstr "Нептун" #. ♇ (U+02647), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2139,7 +2138,7 @@ "PLUTO\n" "LngText.text" msgid "Pluto" -msgstr "" +msgstr "Плутон" #. ♈ (U+02648), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2184,7 +2183,7 @@ "LEO\n" "LngText.text" msgid "Leo" -msgstr "" +msgstr "Алым" #. ♍ (U+0264D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2202,7 +2201,7 @@ "LIBRA\n" "LngText.text" msgid "Libra" -msgstr "" +msgstr "Акапанга" #. ♏ (U+0264F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2211,7 +2210,7 @@ "SCORPIUS\n" "LngText.text" msgid "Scorpius" -msgstr "" +msgstr "Амариал" #. ♐ (U+02650), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2247,7 +2246,7 @@ "PISCES\n" "LngText.text" msgid "Pisces" -msgstr "" +msgstr "Аҧсыӡ" #. ♔ (U+02654), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2652,7 +2651,7 @@ "STAFF_OF_AESCULAPIUS\n" "LngText.text" msgid "medical" -msgstr "" +msgstr "амедицинатә" #. ⚖ (U+02696), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2661,7 +2660,7 @@ "SCALES\n" "LngText.text" msgid "scales" -msgstr "" +msgstr "акапанга" #. ⚗ (U+02697), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2679,7 +2678,7 @@ "FLOWER\n" "LngText.text" msgid "flower" -msgstr "" +msgstr "ашәҭыц" #. ⚙ (U+02699), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2697,7 +2696,7 @@ "STAFF_OF_HERMES\n" "LngText.text" msgid "staff" -msgstr "" +msgstr "алабашьа" #. ⚛ (U+0269B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2706,7 +2705,7 @@ "ATOM_SYMBOL\n" "LngText.text" msgid "atom" -msgstr "" +msgstr "атом" #. ⚜ (U+0269C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2724,7 +2723,7 @@ "WARNING_SIGN\n" "LngText.text" msgid "warning" -msgstr "" +msgstr "агәаҽанҵара" #. ⚡ (U+026A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2742,7 +2741,7 @@ "MEDIUM_WHITE_CIRCLE\n" "LngText.text" msgid "white circle" -msgstr "" +msgstr "агьежь шкәакәа" #. ⚫ (U+026AB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2751,7 +2750,7 @@ "MEDIUM_BLACK_CIRCLE\n" "LngText.text" msgid "black circle" -msgstr "" +msgstr "агьежь еиқәаҵәа" #. ⚭ (U+026AD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2778,7 +2777,7 @@ "COFFIN\n" "LngText.text" msgid "coffin" -msgstr "" +msgstr "акәыба" #. ⚱ (U+026B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2796,7 +2795,7 @@ "SOCCER_BALL\n" "LngText.text" msgid "soccer" -msgstr "" +msgstr "афутбол" #. ⚾ (U+026BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2805,7 +2804,7 @@ "BASEBALL\n" "LngText.text" msgid "baseball" -msgstr "" +msgstr "абеисбол" #. ⛄ (U+026C4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2823,7 +2822,7 @@ "SUN_BEHIND_CLOUD\n" "LngText.text" msgid "cloud2" -msgstr "" +msgstr "аҧсҭҳәа 2" #. ⛆ (U+026C6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2832,7 +2831,7 @@ "RAIN\n" "LngText.text" msgid "rain2" -msgstr "" +msgstr "ақәа 2" #. ⛈ (U+026C8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2841,7 +2840,7 @@ "THUNDER_CLOUD_AND_RAIN\n" "LngText.text" msgid "cloud3" -msgstr "" +msgstr "аҧсҭҳәа 3" #. ⛎ (U+026CE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2931,7 +2930,7 @@ "CHURCH\n" "LngText.text" msgid "church" -msgstr "" +msgstr "ауахәама" #. ⛰ (U+026F0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2967,7 +2966,7 @@ "FLAG_IN_HOLE\n" "LngText.text" msgid "golf" -msgstr "" +msgstr "агольф" #. ⛴ (U+026F4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3021,7 +3020,7 @@ "PERSON_WITH_BALL\n" "LngText.text" msgid "ball" -msgstr "" +msgstr "ампыл" #. ⛽ (U+026FD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3039,7 +3038,7 @@ "UPPER_BLADE_SCISSORS\n" "LngText.text" msgid "scissors3" -msgstr "" +msgstr "амаркатыл 3" #. ✂ (U+02702), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3048,7 +3047,7 @@ "BLACK_SCISSORS\n" "LngText.text" msgid "scissors" -msgstr "" +msgstr "амаркатыл" #. ✃ (U+02703), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3057,7 +3056,7 @@ "LOWER_BLADE_SCISSORS\n" "LngText.text" msgid "scissors4" -msgstr "" +msgstr "амаркатыл 4" #. ✄ (U+02704), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3066,7 +3065,7 @@ "WHITE_SCISSORS\n" "LngText.text" msgid "scissors2" -msgstr "" +msgstr "амаркатыл 2" #. ✅ (U+02705), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3084,7 +3083,7 @@ "TELEPHONE_LOCATION\n" "LngText.text" msgid "telephone" -msgstr "" +msgstr "аҭел 3" #. ✈ (U+02708), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3093,7 +3092,7 @@ "AIRPLANE\n" "LngText.text" msgid "airplane" -msgstr "" +msgstr "аҳаирплан" #. ✉ (U+02709), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3111,7 +3110,7 @@ "RAISED_FIST\n" "LngText.text" msgid "fist" -msgstr "" +msgstr "аҭаҷкәым" #. ✋ (U+0270B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3120,7 +3119,7 @@ "RAISED_HAND\n" "LngText.text" msgid "hand" -msgstr "" +msgstr "анапсыргәыҵа" #. ✌ (U+0270C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3147,7 +3146,7 @@ "LOWER_RIGHT_PENCIL\n" "LngText.text" msgid "pencil" -msgstr "" +msgstr "акарандашь" #. ✏ (U+0270F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3156,7 +3155,7 @@ "PENCIL\n" "LngText.text" msgid "pencil2" -msgstr "" +msgstr "акарандашь 2" #. ✐ (U+02710), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3165,7 +3164,7 @@ "UPPER_RIGHT_PENCIL\n" "LngText.text" msgid "pencil3" -msgstr "" +msgstr "акарандашь 3" #. ✑ (U+02711), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3210,7 +3209,7 @@ "HEAVY_MULTIPLICATION_X\n" "LngText.text" msgid "times2" -msgstr "" +msgstr "аамҭа 2" #. ✙ (U+02719), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3291,7 +3290,7 @@ "CROSS_MARK\n" "LngText.text" msgid "x2" -msgstr "" +msgstr "x2" #. ❎ (U+0274E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3300,7 +3299,7 @@ "NEGATIVE_SQUARED_CROSS_MARK\n" "LngText.text" msgid "x3" -msgstr "" +msgstr "x3" #. ❓ (U+02753), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3319,7 +3318,7 @@ "WHITE_QUESTION_MARK_ORNAMENT\n" "LngText.text" msgid "?2" -msgstr "" +msgstr "?2" #. ❕ (U+02755), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3338,7 +3337,7 @@ "HEAVY_EXCLAMATION_MARK_SYMBOL\n" "LngText.text" msgid "!2" -msgstr "" +msgstr "!2" #. ❤ (U+02764), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3347,7 +3346,7 @@ "HEAVY_BLACK_HEART\n" "LngText.text" msgid "heart" -msgstr "" +msgstr "агәы" #. ➰ (U+027B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3374,7 +3373,7 @@ "BLACK_LARGE_SQUARE\n" "LngText.text" msgid "large square2" -msgstr "" +msgstr "аквадрат ду 2" #. ⬜ (U+02B1C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3383,7 +3382,7 @@ "WHITE_LARGE_SQUARE\n" "LngText.text" msgid "large square" -msgstr "" +msgstr "аквадрат ду" #. ⬟ (U+02B1F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3473,7 +3472,7 @@ "LATIN_SMALL_LIGATURE_FF\n" "LngText.text" msgid "ff" -msgstr "" +msgstr "ff" #. fi (U+0FB01), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3482,7 +3481,7 @@ "LATIN_SMALL_LIGATURE_FI\n" "LngText.text" msgid "fi" -msgstr "" +msgstr "fi" #. fl (U+0FB02), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3491,7 +3490,7 @@ "LATIN_SMALL_LIGATURE_FL\n" "LngText.text" msgid "fl" -msgstr "" +msgstr "fl" #. ffi (U+0FB03), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3500,7 +3499,7 @@ "LATIN_SMALL_LIGATURE_FFI\n" "LngText.text" msgid "ffi" -msgstr "" +msgstr "ffi" #. ffl (U+0FB04), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3509,7 +3508,7 @@ "LATIN_SMALL_LIGATURE_FFL\n" "LngText.text" msgid "ffl" -msgstr "" +msgstr "ffl" #. 𝄞 (U+1D11E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3779,7 +3778,7 @@ "WATER_WAVE\n" "LngText.text" msgid "ocean" -msgstr "" +msgstr "аокеан" #. 🌋 (U+1F30B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3788,7 +3787,7 @@ "VOLCANO\n" "LngText.text" msgid "volcano" -msgstr "" +msgstr "авулкан" #. 🌌 (U+1F30C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3797,7 +3796,7 @@ "MILKY_WAY\n" "LngText.text" msgid "Milky way" -msgstr "" +msgstr "Асар рымҩа" #. 🌍 (U+1F30D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3806,7 +3805,7 @@ "EARTH_GLOBE_EUROPE-AFRICA\n" "LngText.text" msgid "globe" -msgstr "" +msgstr "аглобус" #. 🌎 (U+1F30E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3815,7 +3814,7 @@ "EARTH_GLOBE_AMERICAS\n" "LngText.text" msgid "globe2" -msgstr "" +msgstr "аглобус 2" #. 🌏 (U+1F30F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3824,7 +3823,7 @@ "EARTH_GLOBE_ASIA-AUSTRALIA\n" "LngText.text" msgid "globe3" -msgstr "" +msgstr "аглобус 3" #. 🌐 (U+1F310), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3833,7 +3832,7 @@ "GLOBE_WITH_MERIDIANS\n" "LngText.text" msgid "globe4" -msgstr "" +msgstr "аглобус 4" #. 🌑 (U+1F311), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3842,7 +3841,7 @@ "NEW_MOON_SYMBOL\n" "LngText.text" msgid "new moon" -msgstr "" +msgstr "амзаҿа" #. 🌒 (U+1F312), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3878,7 +3877,7 @@ "FULL_MOON_SYMBOL\n" "LngText.text" msgid "full moon" -msgstr "" +msgstr "амзаҭәымҭа" #. 🌖 (U+1F316), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3923,7 +3922,7 @@ "NEW_MOON_WITH_FACE\n" "LngText.text" msgid "new moon2" -msgstr "" +msgstr "амзаҿа 2" #. 🌛 (U+1F31B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3932,7 +3931,7 @@ "FIRST_QUARTER_MOON_WITH_FACE\n" "LngText.text" msgid "moon" -msgstr "" +msgstr "амза" #. 🌜 (U+1F31C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3941,7 +3940,7 @@ "LAST_QUARTER_MOON_WITH_FACE\n" "LngText.text" msgid "moon2" -msgstr "" +msgstr "амза 2" #. 🌝 (U+1F31D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3950,7 +3949,7 @@ "FULL_MOON_WITH_FACE\n" "LngText.text" msgid "full moon2" -msgstr "" +msgstr "амзаҭәымҭа 2" #. 🌞 (U+1F31E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3959,7 +3958,7 @@ "SUN_WITH_FACE\n" "LngText.text" msgid "sun" -msgstr "" +msgstr "амра" #. 🌟 (U+1F31F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3968,7 +3967,7 @@ "GLOWING_STAR\n" "LngText.text" msgid "star3" -msgstr "" +msgstr "аиаҵәа 3" #. 🌠 (U+1F320), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3977,7 +3976,7 @@ "SHOOTING_STAR\n" "LngText.text" msgid "star4" -msgstr "" +msgstr "аиаҵәа 4" #. 🌰 (U+1F330), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3986,7 +3985,7 @@ "CHESTNUT\n" "LngText.text" msgid "chestnut" -msgstr "" +msgstr "ахьа" #. 🌱 (U+1F331), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3995,7 +3994,7 @@ "SEEDLING\n" "LngText.text" msgid "seedling" -msgstr "" +msgstr "аиҭаҳатә" #. 🌲 (U+1F332), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4004,7 +4003,7 @@ "EVERGREEN_TREE\n" "LngText.text" msgid "pine" -msgstr "" +msgstr "аҧса" #. 🌳 (U+1F333), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4013,7 +4012,7 @@ "DECIDUOUS_TREE\n" "LngText.text" msgid "tree" -msgstr "" +msgstr "аҵла" #. 🌴 (U+1F334), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4022,7 +4021,7 @@ "PALM_TREE\n" "LngText.text" msgid "palm" -msgstr "" +msgstr "апальма" #. 🌵 (U+1F335), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4031,7 +4030,7 @@ "CACTUS\n" "LngText.text" msgid "cactus" -msgstr "" +msgstr "акактус" #. 🌷 (U+1F337), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4040,7 +4039,7 @@ "TULIP\n" "LngText.text" msgid "tulip" -msgstr "" +msgstr "атиульпан" #. 🌸 (U+1F338), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4085,7 +4084,7 @@ "BLOSSOM\n" "LngText.text" msgid "blossom" -msgstr "" +msgstr "ашәҭра" #. 🌽 (U+1F33D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4094,7 +4093,7 @@ "EAR_OF_MAIZE\n" "LngText.text" msgid "corn" -msgstr "" +msgstr "аҧш" #. 🌾 (U+1F33E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4103,7 +4102,7 @@ "EAR_OF_RICE\n" "LngText.text" msgid "grass" -msgstr "" +msgstr "аҳаскьын" #. 🌿 (U+1F33F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4112,7 +4111,7 @@ "HERB\n" "LngText.text" msgid "herb" -msgstr "" +msgstr "аҳаскьын 2" #. 🍀 (U+1F340), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4130,7 +4129,7 @@ "MAPLE_LEAF\n" "LngText.text" msgid "leaf" -msgstr "" +msgstr "абӷьы" #. 🍂 (U+1F342), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4139,7 +4138,7 @@ "FALLEN_LEAF\n" "LngText.text" msgid "leaf2" -msgstr "" +msgstr "абӷьы 2" #. 🍃 (U+1F343), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4148,7 +4147,7 @@ "LEAF_FLUTTERING_IN_WIND\n" "LngText.text" msgid "leaf3" -msgstr "" +msgstr "абӷьы 3" #. 🍄 (U+1F344), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4157,7 +4156,7 @@ "MUSHROOM\n" "LngText.text" msgid "mushroom" -msgstr "" +msgstr "акәыкәбаа" #. 🍅 (U+1F345), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4166,7 +4165,7 @@ "TOMATO\n" "LngText.text" msgid "tomato" -msgstr "" +msgstr "атомат" #. 🍆 (U+1F346), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4175,7 +4174,7 @@ "AUBERGINE\n" "LngText.text" msgid "eggplant" -msgstr "" +msgstr "абаклажан" #. 🍇 (U+1F347), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4184,7 +4183,7 @@ "GRAPES\n" "LngText.text" msgid "grapes" -msgstr "" +msgstr "ажь" #. 🍈 (U+1F348), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4193,7 +4192,7 @@ "MELON\n" "LngText.text" msgid "melon" -msgstr "" +msgstr "ашьынка" #. 🍉 (U+1F349), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4202,7 +4201,7 @@ "WATERMELON\n" "LngText.text" msgid "watermelon" -msgstr "" +msgstr "акарпыжә" #. 🍊 (U+1F34A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4211,7 +4210,7 @@ "TANGERINE\n" "LngText.text" msgid "tangerine" -msgstr "" +msgstr "амандарин" #. 🍋 (U+1F34B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4229,7 +4228,7 @@ "BANANA\n" "LngText.text" msgid "banana" -msgstr "" +msgstr "абанан" #. 🍍 (U+1F34D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4238,7 +4237,7 @@ "PINEAPPLE\n" "LngText.text" msgid "pineapple" -msgstr "" +msgstr "ананас" #. 🍎 (U+1F34E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4247,7 +4246,7 @@ "RED_APPLE\n" "LngText.text" msgid "apple" -msgstr "" +msgstr "аҵәа" #. 🍏 (U+1F34F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4256,7 +4255,7 @@ "GREEN_APPLE\n" "LngText.text" msgid "green apple" -msgstr "" +msgstr "аҵәа иаҵәа" #. 🍐 (U+1F350), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4265,7 +4264,7 @@ "PEAR\n" "LngText.text" msgid "pear" -msgstr "" +msgstr "аҳа" #. 🍑 (U+1F351), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4274,7 +4273,7 @@ "PEACH\n" "LngText.text" msgid "peach" -msgstr "" +msgstr "атама" #. 🍒 (U+1F352), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4283,7 +4282,7 @@ "CHERRIES\n" "LngText.text" msgid "cherries" -msgstr "" +msgstr "аца" #. 🍓 (U+1F353), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4310,7 +4309,7 @@ "SLICE_OF_PIZZA\n" "LngText.text" msgid "pizza" -msgstr "" +msgstr "апицца" #. 🍖 (U+1F356), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4319,7 +4318,7 @@ "MEAT_ON_BONE\n" "LngText.text" msgid "meat" -msgstr "" +msgstr "акәац" #. 🍗 (U+1F357), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4328,7 +4327,7 @@ "POULTRY_LEG\n" "LngText.text" msgid "poultry leg" -msgstr "" +msgstr "акәты ашьапы" #. 🍘 (U+1F358), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4355,7 +4354,7 @@ "COOKED_RICE\n" "LngText.text" msgid "rice" -msgstr "" +msgstr "абрынџь" #. 🍛 (U+1F35B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4382,7 +4381,7 @@ "SPAGHETTI\n" "LngText.text" msgid "spaghetti" -msgstr "" +msgstr "аспагетти" #. 🍞 (U+1F35E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4391,7 +4390,7 @@ "BREAD\n" "LngText.text" msgid "bread" -msgstr "" +msgstr "ача" #. 🍟 (U+1F35F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4544,7 +4543,7 @@ "HONEY_POT\n" "LngText.text" msgid "honey" -msgstr "" +msgstr "ацха" #. 🍰 (U+1F370), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4571,7 +4570,7 @@ "POT_OF_FOOD\n" "LngText.text" msgid "stew" -msgstr "" +msgstr "афатә" #. 🍳 (U+1F373), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4580,7 +4579,7 @@ "COOKING\n" "LngText.text" msgid "egg" -msgstr "" +msgstr "акәтаӷь" #. 🍴 (U+1F374), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4589,7 +4588,7 @@ "FORK_AND_KNIFE\n" "LngText.text" msgid "restaurant" -msgstr "" +msgstr "аресторан" #. 🍵 (U+1F375), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4598,7 +4597,7 @@ "TEACUP_WITHOUT_HANDLE\n" "LngText.text" msgid "tea" -msgstr "" +msgstr "ачаи" #. 🍶 (U+1F376), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4643,7 +4642,7 @@ "BEER_MUG\n" "LngText.text" msgid "beer" -msgstr "" +msgstr "ауараш" #. 🍻 (U+1F37B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4652,7 +4651,7 @@ "CLINKING_BEER_MUGS\n" "LngText.text" msgid "beer2" -msgstr "" +msgstr "ауараш 2" #. 🍼 (U+1F37C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4679,7 +4678,7 @@ "WRAPPED_PRESENT\n" "LngText.text" msgid "gift" -msgstr "" +msgstr "ахамҭа" #. 🎂 (U+1F382), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4688,7 +4687,7 @@ "BIRTHDAY_CAKE\n" "LngText.text" msgid "birthday" -msgstr "" +msgstr "амшира" #. 🎃 (U+1F383), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4715,7 +4714,7 @@ "FATHER_CHRISTMAS\n" "LngText.text" msgid "Santa" -msgstr "" +msgstr "Санта" #. 🎆 (U+1F386), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4778,7 +4777,7 @@ "CROSSED_FLAGS\n" "LngText.text" msgid "flags" -msgstr "" +msgstr "абираҟқәа" #. 🎍 (U+1F38D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4787,7 +4786,7 @@ "PINE_DECORATION\n" "LngText.text" msgid "bamboo" -msgstr "" +msgstr "акалам" #. 🎎 (U+1F38E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4796,7 +4795,7 @@ "JAPANESE_DOLLS\n" "LngText.text" msgid "dolls" -msgstr "" +msgstr "акьанџьақәа" #. 🎏 (U+1F38F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4805,7 +4804,7 @@ "CARP_STREAMER\n" "LngText.text" msgid "flags2" -msgstr "" +msgstr "абираҟқәа 2" #. 🎐 (U+1F390), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4922,7 +4921,7 @@ "ARTIST_PALETTE\n" "LngText.text" msgid "art" -msgstr "" +msgstr "аҟазара" #. 🎩 (U+1F3A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4931,7 +4930,7 @@ "TOP_HAT\n" "LngText.text" msgid "top hat" -msgstr "" +msgstr "ацилиндр" #. 🎪 (U+1F3AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4967,7 +4966,7 @@ "PERFORMING_ARTS\n" "LngText.text" msgid "theatre" -msgstr "" +msgstr "атеатр" #. 🎮 (U+1F3AE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4976,7 +4975,7 @@ "VIDEO_GAME\n" "LngText.text" msgid "video game" -msgstr "" +msgstr "авидеохәмарра" #. 🎯 (U+1F3AF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5066,7 +5065,7 @@ "GUITAR\n" "LngText.text" msgid "guitar" -msgstr "" +msgstr "агитара" #. 🎹 (U+1F3B9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5075,7 +5074,7 @@ "MUSICAL_KEYBOARD\n" "LngText.text" msgid "piano" -msgstr "" +msgstr "аклавишақәа" #. 🎺 (U+1F3BA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5147,7 +5146,7 @@ "CHEQUERED_FLAG\n" "LngText.text" msgid "flag3" -msgstr "" +msgstr "абираҟ 3" #. 🏂 (U+1F3C2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5201,7 +5200,7 @@ "AMERICAN_FOOTBALL\n" "LngText.text" msgid "football" -msgstr "" +msgstr "афутбол 2" #. 🏉 (U+1F3C9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5210,7 +5209,7 @@ "RUGBY_FOOTBALL\n" "LngText.text" msgid "rugby football" -msgstr "" +msgstr "арегби" #. 🏊 (U+1F3CA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5219,7 +5218,7 @@ "SWIMMER\n" "LngText.text" msgid "swimmer" -msgstr "" +msgstr "аӡсаҩ" #. 🏠 (U+1F3E0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5228,7 +5227,7 @@ "HOUSE_BUILDING\n" "LngText.text" msgid "house" -msgstr "" +msgstr "аҩны" #. 🏡 (U+1F3E1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5237,7 +5236,7 @@ "HOUSE_WITH_GARDEN\n" "LngText.text" msgid "house2" -msgstr "" +msgstr "аҩны 2" #. 🏢 (U+1F3E2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5246,7 +5245,7 @@ "OFFICE_BUILDING\n" "LngText.text" msgid "office" -msgstr "" +msgstr "аофис" #. 🏣 (U+1F3E3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5282,7 +5281,7 @@ "BANK\n" "LngText.text" msgid "bank" -msgstr "" +msgstr "абанк" #. 🏧 (U+1F3E7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5291,7 +5290,7 @@ "AUTOMATED_TELLER_MACHINE\n" "LngText.text" msgid "atm" -msgstr "" +msgstr "абанкомат" #. 🏨 (U+1F3E8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5381,7 +5380,7 @@ "RAT\n" "LngText.text" msgid "rat" -msgstr "" +msgstr "аҳәынаҧ" #. 🐁 (U+1F401), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5390,7 +5389,7 @@ "MOUSE\n" "LngText.text" msgid "mouse" -msgstr "" +msgstr "аҳәынаҧ" #. 🐂 (U+1F402), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5417,7 +5416,7 @@ "COW\n" "LngText.text" msgid "cow" -msgstr "" +msgstr "ажә" #. 🐅 (U+1F405), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5426,7 +5425,7 @@ "TIGER\n" "LngText.text" msgid "tiger" -msgstr "" +msgstr "абжьас" #. 🐆 (U+1F406), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5453,7 +5452,7 @@ "CAT\n" "LngText.text" msgid "cat" -msgstr "" +msgstr "ацгәы" #. 🐉 (U+1F409), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5471,7 +5470,7 @@ "CROCODILE\n" "LngText.text" msgid "crocodile" -msgstr "" +msgstr "агәылшьап" #. 🐋 (U+1F40B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5489,7 +5488,7 @@ "SNAIL\n" "LngText.text" msgid "snail" -msgstr "" +msgstr "акамыршша" #. 🐍 (U+1F40D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5498,7 +5497,7 @@ "SNAKE\n" "LngText.text" msgid "snake" -msgstr "" +msgstr "амаҭ" #. 🐎 (U+1F40E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5507,7 +5506,7 @@ "HORSE\n" "LngText.text" msgid "horse" -msgstr "" +msgstr "аҽы" #. 🐏 (U+1F40F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5516,7 +5515,7 @@ "RAM\n" "LngText.text" msgid "ram" -msgstr "" +msgstr "ауаса" #. 🐐 (U+1F410), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5525,7 +5524,7 @@ "GOAT\n" "LngText.text" msgid "goat" -msgstr "" +msgstr "аџьма" #. 🐑 (U+1F411), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5534,7 +5533,7 @@ "SHEEP\n" "LngText.text" msgid "sheep" -msgstr "" +msgstr "ауаса" #. 🐒 (U+1F412), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5543,7 +5542,7 @@ "MONKEY\n" "LngText.text" msgid "monkey" -msgstr "" +msgstr "амаамын" #. 🐓 (U+1F413), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5552,7 +5551,7 @@ "ROOSTER\n" "LngText.text" msgid "rooster" -msgstr "" +msgstr "арбаӷь" #. 🐔 (U+1F414), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5561,7 +5560,7 @@ "CHICKEN\n" "LngText.text" msgid "chicken" -msgstr "" +msgstr "акәты" #. 🐕 (U+1F415), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5570,7 +5569,7 @@ "DOG\n" "LngText.text" msgid "dog" -msgstr "" +msgstr "ала" #. 🐖 (U+1F416), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5579,7 +5578,7 @@ "PIG\n" "LngText.text" msgid "pig" -msgstr "" +msgstr "аҳәа" #. 🐗 (U+1F417), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5588,7 +5587,7 @@ "BOAR\n" "LngText.text" msgid "boar" -msgstr "" +msgstr "аҳәаҧа" #. 🐘 (U+1F418), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5633,7 +5632,7 @@ "ANT\n" "LngText.text" msgid "ant" -msgstr "" +msgstr "ашышкамс" #. 🐝 (U+1F41D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5642,7 +5641,7 @@ "HONEYBEE\n" "LngText.text" msgid "bee" -msgstr "" +msgstr "ашьхыц" #. 🐞 (U+1F41E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5660,7 +5659,7 @@ "FISH\n" "LngText.text" msgid "fish" -msgstr "" +msgstr "аҧсыӡ" #. 🐠 (U+1F420), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5669,7 +5668,7 @@ "TROPICAL_FISH\n" "LngText.text" msgid "fish2" -msgstr "" +msgstr "аҧсыӡ 2" #. 🐡 (U+1F421), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5678,7 +5677,7 @@ "BLOWFISH\n" "LngText.text" msgid "fish3" -msgstr "" +msgstr "аҧсыӡ 3" #. 🐢 (U+1F422), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5687,7 +5686,7 @@ "TURTLE\n" "LngText.text" msgid "turtle" -msgstr "" +msgstr "акәуа" #. 🐣 (U+1F423), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5723,7 +5722,7 @@ "BIRD\n" "LngText.text" msgid "bird" -msgstr "" +msgstr "аҵыс" #. 🐧 (U+1F427), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5732,7 +5731,7 @@ "PENGUIN\n" "LngText.text" msgid "penguin" -msgstr "" +msgstr "апингвин" #. 🐨 (U+1F428), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5759,7 +5758,7 @@ "DROMEDARY_CAMEL\n" "LngText.text" msgid "camel" -msgstr "" +msgstr "амахҽ" #. 🐫 (U+1F42B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5768,7 +5767,7 @@ "BACTRIAN_CAMEL\n" "LngText.text" msgid "camel2" -msgstr "" +msgstr "амахҽ 2" #. 🐬 (U+1F42C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5777,7 +5776,7 @@ "DOLPHIN\n" "LngText.text" msgid "dolphin" -msgstr "" +msgstr "адельфин" #. 🐭 (U+1F42D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5786,7 +5785,7 @@ "MOUSE_FACE\n" "LngText.text" msgid "mouse2" -msgstr "" +msgstr "аҳәынаҧ 2" #. 🐮 (U+1F42E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5795,7 +5794,7 @@ "COW_FACE\n" "LngText.text" msgid "cow2" -msgstr "" +msgstr "ажә 2" #. 🐯 (U+1F42F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5804,7 +5803,7 @@ "TIGER_FACE\n" "LngText.text" msgid "tiger2" -msgstr "" +msgstr "абжьас 2" #. 🐰 (U+1F430), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5867,7 +5866,7 @@ "DOG_FACE\n" "LngText.text" msgid "dog2" -msgstr "" +msgstr "ала 2" #. 🐷 (U+1F437), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5876,7 +5875,7 @@ "PIG_FACE\n" "LngText.text" msgid "pig2" -msgstr "" +msgstr "аҳәа 2" #. 🐸 (U+1F438), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5885,7 +5884,7 @@ "FROG_FACE\n" "LngText.text" msgid "frog" -msgstr "" +msgstr "адаӷь" #. 🐹 (U+1F439), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5903,7 +5902,7 @@ "WOLF_FACE\n" "LngText.text" msgid "wolf" -msgstr "" +msgstr "абга" #. 🐻 (U+1F43B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5912,7 +5911,7 @@ "BEAR_FACE\n" "LngText.text" msgid "bear" -msgstr "" +msgstr "амшә" #. 🐼 (U+1F43C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5948,7 +5947,7 @@ "EYES\n" "LngText.text" msgid "eyes" -msgstr "" +msgstr "алақәа" #. 👂 (U+1F442), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5957,7 +5956,7 @@ "EAR\n" "LngText.text" msgid "ear" -msgstr "" +msgstr "алымҳа" #. 👃 (U+1F443), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5966,7 +5965,7 @@ "NOSE\n" "LngText.text" msgid "nose" -msgstr "" +msgstr "аҧынҵа" #. 👄 (U+1F444), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5984,7 +5983,7 @@ "TONGUE\n" "LngText.text" msgid "tongue" -msgstr "" +msgstr "абз" #. 👆 (U+1F446), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5993,7 +5992,7 @@ "WHITE_UP_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "up2" -msgstr "" +msgstr "аҩада 2" #. 👇 (U+1F447), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6002,7 +6001,7 @@ "WHITE_DOWN_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "down2" -msgstr "" +msgstr "алада 2" #. 👈 (U+1F448), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6011,7 +6010,7 @@ "WHITE_LEFT_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "left2" -msgstr "" +msgstr "армарахь 2" #. 👉 (U+1F449), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6020,7 +6019,7 @@ "WHITE_RIGHT_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "right2" -msgstr "" +msgstr "аргьарахь 2" #. 👊 (U+1F44A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6029,7 +6028,7 @@ "FISTED_HAND_SIGN\n" "LngText.text" msgid "fist2" -msgstr "" +msgstr "аҭаҷкәым 2" #. 👋 (U+1F44B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6047,7 +6046,7 @@ "OK_HAND_SIGN\n" "LngText.text" msgid "ok" -msgstr "" +msgstr "ok" #. 👍 (U+1F44D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6056,7 +6055,7 @@ "THUMBS_UP_SIGN\n" "LngText.text" msgid "yes" -msgstr "" +msgstr "ааи" #. 👎 (U+1F44E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6065,7 +6064,7 @@ "THUMBS_DOWN_SIGN\n" "LngText.text" msgid "no" -msgstr "" +msgstr "мап" #. 👏 (U+1F44F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6083,7 +6082,7 @@ "OPEN_HANDS_SIGN\n" "LngText.text" msgid "open hands" -msgstr "" +msgstr "анапсыргәыҵа" #. 👑 (U+1F451), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6146,7 +6145,7 @@ "DRESS\n" "LngText.text" msgid "dress" -msgstr "" +msgstr "аҵкы" #. 👘 (U+1F458), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6173,7 +6172,7 @@ "WOMANS_CLOTHES\n" "LngText.text" msgid "clothes" -msgstr "" +msgstr "амаҭәа" #. 👛 (U+1F45B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6182,7 +6181,7 @@ "PURSE\n" "LngText.text" msgid "purse" -msgstr "" +msgstr "аҧараҭра" #. 👜 (U+1F45C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6254,7 +6253,7 @@ "FOOTPRINTS\n" "LngText.text" msgid "footprints" -msgstr "" +msgstr "ашьҭақәа" #. 👤 (U+1F464), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6281,7 +6280,7 @@ "BOY\n" "LngText.text" msgid "boy" -msgstr "" +msgstr "аҷкәын" #. 👧 (U+1F467), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6290,7 +6289,7 @@ "GIRL\n" "LngText.text" msgid "girl" -msgstr "" +msgstr "аӡӷаб" #. 👨 (U+1F468), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6299,7 +6298,7 @@ "MAN\n" "LngText.text" msgid "man" -msgstr "" +msgstr "ахаҵа 2" #. 👩 (U+1F469), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6308,7 +6307,7 @@ "WOMAN\n" "LngText.text" msgid "woman" -msgstr "" +msgstr "аҧҳәыс 2" #. 👪 (U+1F46A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6317,7 +6316,7 @@ "FAMILY\n" "LngText.text" msgid "family" -msgstr "" +msgstr "аҭаацәа" #. 👫 (U+1F46B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6434,7 +6433,7 @@ "CONSTRUCTION_WORKER\n" "LngText.text" msgid "worker" -msgstr "" +msgstr "аусуҩ" #. 👸 (U+1F478), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6461,7 +6460,7 @@ "JAPANESE_GOBLIN\n" "LngText.text" msgid "goblin" -msgstr "" +msgstr "гоблин" #. 👻 (U+1F47B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6524,7 +6523,7 @@ "INFORMATION_DESK_PERSON\n" "LngText.text" msgid "information2" -msgstr "" +msgstr "аинформациа2" #. 💂 (U+1F482), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6686,7 +6685,7 @@ "BEATING_HEART\n" "LngText.text" msgid "heartbeat" -msgstr "" +msgstr "агәеисра" #. 💔 (U+1F494), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6902,7 +6901,7 @@ "HUNDRED_POINTS_SYMBOL\n" "LngText.text" msgid "100" -msgstr "" +msgstr "100" #. 💰 (U+1F4B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6911,7 +6910,7 @@ "MONEY_BAG\n" "LngText.text" msgid "moneybag" -msgstr "" +msgstr "аҧараз асакь" #. 💱 (U+1F4B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6938,7 +6937,7 @@ "CREDIT_CARD\n" "LngText.text" msgid "credit card" -msgstr "" +msgstr "абанкатә карта" #. 💴 (U+1F4B4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6947,7 +6946,7 @@ "BANKNOTE_WITH_YEN_SIGN\n" "LngText.text" msgid "yen2" -msgstr "" +msgstr "иена 2" #. 💵 (U+1F4B5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6956,7 +6955,7 @@ "BANKNOTE_WITH_DOLLAR_SIGN\n" "LngText.text" msgid "dollar2" -msgstr "" +msgstr "адоллар 2" #. 💶 (U+1F4B6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6965,7 +6964,7 @@ "BANKNOTE_WITH_EURO_SIGN\n" "LngText.text" msgid "euro2" -msgstr "" +msgstr "евро 2" #. 💷 (U+1F4B7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6974,7 +6973,7 @@ "BANKNOTE_WITH_POUND_SIGN\n" "LngText.text" msgid "pound2" -msgstr "" +msgstr "афунт 2" #. 💸 (U+1F4B8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6983,7 +6982,7 @@ "MONEY_WITH_WINGS\n" "LngText.text" msgid "money" -msgstr "" +msgstr "аҧара" #. 💹 (U+1F4B9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6992,7 +6991,7 @@ "CHART_WITH_UPWARDS_TREND_AND_YEN_SIGN\n" "LngText.text" msgid "chart" -msgstr "" +msgstr "адиаграмма" #. 💺 (U+1F4BA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7010,7 +7009,7 @@ "PERSONAL_COMPUTER\n" "LngText.text" msgid "computer" -msgstr "" +msgstr "акомпиутер" #. 💼 (U+1F4BC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7028,7 +7027,7 @@ "MINIDISC\n" "LngText.text" msgid "md" -msgstr "" +msgstr "md" #. 💾 (U+1F4BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7037,7 +7036,7 @@ "FLOPPY_DISK\n" "LngText.text" msgid "floppy" -msgstr "" +msgstr "адискета" #. 💿 (U+1F4BF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7046,7 +7045,7 @@ "OPTICAL_DISC\n" "LngText.text" msgid "cd" -msgstr "" +msgstr "cd" #. 📀 (U+1F4C0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7055,7 +7054,7 @@ "DVD\n" "LngText.text" msgid "dvd" -msgstr "" +msgstr "dvd" #. 📁 (U+1F4C1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7064,7 +7063,7 @@ "FILE_FOLDER\n" "LngText.text" msgid "folder" -msgstr "" +msgstr "акаталог" #. 📂 (U+1F4C2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7073,7 +7072,7 @@ "OPEN_FILE_FOLDER\n" "LngText.text" msgid "folder2" -msgstr "" +msgstr "акаталог 2" #. 📃 (U+1F4C3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7082,7 +7081,7 @@ "PAGE_WITH_CURL\n" "LngText.text" msgid "page with curl" -msgstr "" +msgstr "аилаҳәара" #. 📄 (U+1F4C4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7091,7 +7090,7 @@ "PAGE_FACING_UP\n" "LngText.text" msgid "page facing up" -msgstr "" +msgstr "адаҟьа" #. 📅 (U+1F4C5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7100,7 +7099,7 @@ "CALENDAR\n" "LngText.text" msgid "calendar" -msgstr "" +msgstr "амзар" #. 📆 (U+1F4C6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7109,7 +7108,7 @@ "TEAR-OFF_CALENDAR\n" "LngText.text" msgid "calendar2" -msgstr "" +msgstr "амзар 2" #. 📇 (U+1F4C7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7127,7 +7126,7 @@ "CHART_WITH_UPWARDS_TREND\n" "LngText.text" msgid "char" -msgstr "" +msgstr "аграфик" #. 📉 (U+1F4C9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7136,7 +7135,7 @@ "CHART_WITH_DOWNWARDS_TREND\n" "LngText.text" msgid "chart2" -msgstr "" +msgstr "аграфик 2" #. 📊 (U+1F4CA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7145,7 +7144,7 @@ "BAR_CHART\n" "LngText.text" msgid "chart3" -msgstr "" +msgstr "аграфик 3" #. 📋 (U+1F4CB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7244,7 +7243,7 @@ "CLOSED_BOOK\n" "LngText.text" msgid "book" -msgstr "" +msgstr "ашәҟәы" #. 📖 (U+1F4D6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7253,7 +7252,7 @@ "OPEN_BOOK\n" "LngText.text" msgid "book2" -msgstr "" +msgstr "ашәҟәы 2" #. 📚 (U+1F4DA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7262,7 +7261,7 @@ "BOOKS\n" "LngText.text" msgid "books" -msgstr "" +msgstr "ашәҟәқәа" #. 📛 (U+1F4DB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7307,7 +7306,7 @@ "PAGER\n" "LngText.text" msgid "pager" -msgstr "" +msgstr "апеиджер" #. 📠 (U+1F4E0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7316,7 +7315,7 @@ "FAX_MACHINE\n" "LngText.text" msgid "fax" -msgstr "" +msgstr "афакс" #. 📡 (U+1F4E1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7379,7 +7378,7 @@ "E-MAIL_SYMBOL\n" "LngText.text" msgid "e-mail" -msgstr "" +msgstr "e-mail" #. 📨 (U+1F4E8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7460,7 +7459,7 @@ "NEWSPAPER\n" "LngText.text" msgid "newspaper" -msgstr "" +msgstr "агазеҭ" #. 📱 (U+1F4F1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7469,7 +7468,7 @@ "MOBILE_PHONE\n" "LngText.text" msgid "mobile" -msgstr "" +msgstr "амобилтә" #. 📲 (U+1F4F2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7496,7 +7495,7 @@ "MOBILE_PHONE_OFF\n" "LngText.text" msgid "mobile phone off" -msgstr "" +msgstr "иаҿыху амобилтә ҭел" #. 📵 (U+1F4F5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7604,7 +7603,7 @@ "SPEAKER_WITH_ONE_SOUND_WAVE\n" "LngText.text" msgid "sound" -msgstr "" +msgstr "абжьы" #. 🔊 (U+1F50A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7613,7 +7612,7 @@ "SPEAKER_WITH_THREE_SOUND_WAVES\n" "LngText.text" msgid "loud sound" -msgstr "" +msgstr "идуу абжьы" #. 🔋 (U+1F50B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7622,7 +7621,7 @@ "BATTERY\n" "LngText.text" msgid "battery" -msgstr "" +msgstr "аккумулиатор" #. 🔌 (U+1F50C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7676,7 +7675,7 @@ "KEY\n" "LngText.text" msgid "key" -msgstr "" +msgstr "ацаҧха" #. 🔒 (U+1F512), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7730,7 +7729,7 @@ "LINK_SYMBOL\n" "LngText.text" msgid "link" -msgstr "" +msgstr "Агиперзхьарҧш" #. 🔘 (U+1F518), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7757,7 +7756,7 @@ "INPUT_SYMBOL_FOR_LATIN_LETTERS\n" "LngText.text" msgid "abc" -msgstr "" +msgstr "abc" #. 🔥 (U+1F525), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7766,7 +7765,7 @@ "FIRE\n" "LngText.text" msgid "fire" -msgstr "" +msgstr "амца" #. 🔦 (U+1F526), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7793,7 +7792,7 @@ "HAMMER\n" "LngText.text" msgid "hammer" -msgstr "" +msgstr "ажьаҳәа" #. 🔩 (U+1F529), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7811,7 +7810,7 @@ "HOCHO\n" "LngText.text" msgid "knife" -msgstr "" +msgstr "аҳәызба" #. 🔫 (U+1F52B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7883,7 +7882,7 @@ "WHITE_SQUARE_BUTTON\n" "LngText.text" msgid "button" -msgstr "" +msgstr "акнопка" #. 🕐 (U+1F550), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9269,7 +9268,7 @@ "POTABLE_WATER_SYMBOL\n" "LngText.text" msgid "potable water" -msgstr "" +msgstr "аӡырыжәтә" #. 🚱 (U+1F6B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9278,7 +9277,7 @@ "NON-POTABLE_WATER_SYMBOL\n" "LngText.text" msgid "non-potable water" -msgstr "" +msgstr "ажәра зымуа аӡы" #. 🚲 (U+1F6B2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10400,7 +10399,7 @@ "MODIFIER_LETTER_SMALL_DELTA\n" "LngText.text" msgid "^delta" -msgstr "" +msgstr "^дельта" #. ᵋ (U+01D4B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/filter/source/config/fragments/filters.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/filter/source/config/fragments/filters.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/filter/source/config/fragments/filters.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/filter/source/config/fragments/filters.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-06 20:00+0200\n" -"PO-Revision-Date: 2017-07-21 16:10+0000\n" +"PO-Revision-Date: 2017-12-12 10:09+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500653442.000000\n" +"X-POOTLE-MTIME: 1513073375.000000\n" #: ADO_rowset_XML.xcu msgctxt "" @@ -652,7 +652,7 @@ "UIName\n" "value.text" msgid "Office Open XML Text Template" -msgstr "" +msgstr "Office Open XML атеқсттә документ ашаблон" #: PBM___Portable_Bitmap.xcu msgctxt "" @@ -661,7 +661,7 @@ "UIName\n" "value.text" msgid "PBM - Portable Bitmap" -msgstr "" +msgstr "PBM - Portable Bitmap" #: PCT___Mac_Pict.xcu msgctxt "" @@ -688,7 +688,7 @@ "UIName\n" "value.text" msgid "PGM - Portable Graymap" -msgstr "" +msgstr "PGM - Portable Graymap" #: PNG___Portable_Network_Graphic.xcu msgctxt "" @@ -697,7 +697,7 @@ "UIName\n" "value.text" msgid "PNG - Portable Network Graphic" -msgstr "" +msgstr "PNG - Portable Network Graphic" #: PPM___Portable_Pixelmap.xcu msgctxt "" @@ -706,7 +706,7 @@ "UIName\n" "value.text" msgid "PPM - Portable Pixelmap" -msgstr "" +msgstr "PPM - Portable Pixelmap" #: PSD___Adobe_Photoshop.xcu msgctxt "" @@ -715,7 +715,7 @@ "UIName\n" "value.text" msgid "PSD - Adobe Photoshop" -msgstr "" +msgstr "PSD - Adobe Photoshop" #: PageMakerDocument.xcu msgctxt "" @@ -724,7 +724,7 @@ "UIName\n" "value.text" msgid "Adobe PageMaker" -msgstr "" +msgstr "Adobe PageMaker" #: PalmDoc.xcu msgctxt "" @@ -805,7 +805,7 @@ "UIName\n" "value.text" msgid "Rich Text Format (Calc)" -msgstr "" +msgstr "Иформатрку атеқст (Calc)" #: SGF___StarOffice_Writer_SGF.xcu msgctxt "" @@ -814,7 +814,7 @@ "UIName\n" "value.text" msgid "SGF - StarWriter Graphics Format" -msgstr "" +msgstr "SGF - StarWriter Graphics Format" #: SGV___StarDraw_2_0.xcu msgctxt "" @@ -841,7 +841,7 @@ "UIName\n" "value.text" msgid "SVM - StarView Metafile" -msgstr "" +msgstr "SVM - StarView Metafile" #: SYLK.xcu msgctxt "" @@ -868,7 +868,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Report Chart" -msgstr "" +msgstr "OpenOffice.org 1.0 аҳасабырба-адиаграмма" #: StarOffice_Drawing.xcu msgctxt "" @@ -922,7 +922,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Spreadsheet" -msgstr "" +msgstr "OpenOffice.org 1.0 Spreadsheet аел.таблица" #: StarOffice_XML__Chart_.xcu msgctxt "" @@ -931,7 +931,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Chart" -msgstr "" +msgstr "OpenOffice.org 1.0 адиаграмма" #: StarOffice_XML__Draw_.xcu msgctxt "" @@ -940,7 +940,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Drawing" -msgstr "" +msgstr "OpenOffice.org 1.0 асахьа" #: StarOffice_XML__Impress_.xcu msgctxt "" @@ -949,7 +949,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Presentation" -msgstr "" +msgstr "OpenOffice.org 1.0 апрезентациа" #: StarOffice_XML__Math_.xcu msgctxt "" @@ -967,7 +967,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Text Document" -msgstr "" +msgstr "OpenOffice.org атеқсттә документ" #: T602Document.xcu msgctxt "" @@ -994,7 +994,7 @@ "UIName\n" "value.text" msgid "TIFF - Tagged Image File Format" -msgstr "" +msgstr "TIFF - Tagged Image File Format" #: Text.xcu msgctxt "" @@ -1057,7 +1057,7 @@ "UIName\n" "value.text" msgid "Unified Office Format presentation" -msgstr "" +msgstr "Unified Office Format апрезентациа" #: UOF_spreadsheet.xcu msgctxt "" @@ -1066,7 +1066,7 @@ "UIName\n" "value.text" msgid "Unified Office Format spreadsheet" -msgstr "" +msgstr "Unified Office Format аел.таблица" #: UOF_text.xcu msgctxt "" @@ -1075,7 +1075,7 @@ "UIName\n" "value.text" msgid "Unified Office Format text" -msgstr "" +msgstr "Атеқст Unified Office Format" #: VisioDocument.xcu msgctxt "" @@ -1093,7 +1093,7 @@ "UIName\n" "value.text" msgid "WMF - Windows Metafile" -msgstr "" +msgstr "WMF - Windows Metafile" #: WPS_Lotus_Calc.xcu msgctxt "" @@ -1246,7 +1246,7 @@ "UIName\n" "value.text" msgid "Office Open XML Spreadsheet" -msgstr "" +msgstr "Office Open XML аел.таблица" #: calc_OOXML_Template.xcu msgctxt "" @@ -1255,7 +1255,7 @@ "UIName\n" "value.text" msgid "Office Open XML Spreadsheet Template" -msgstr "" +msgstr "Office Open XML аел.таблица ашаблон" #: calc_StarOffice_XML_Calc_Template.xcu msgctxt "" @@ -1264,7 +1264,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Spreadsheet Template" -msgstr "" +msgstr "OpenOffice.org 1.0 аелектронтә таблица ашаблон" #: calc_pdf_Export.xcu msgctxt "" @@ -1273,7 +1273,7 @@ "UIName\n" "value.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF - Portable Document Format" #: calc_png_Export.xcu msgctxt "" @@ -1282,7 +1282,7 @@ "UIName\n" "value.text" msgid "PNG - Portable Network Graphic" -msgstr "" +msgstr "PNG - Portable Network Graphic" #: chart8.xcu msgctxt "" @@ -1291,7 +1291,7 @@ "UIName\n" "value.text" msgid "ODF Chart" -msgstr "" +msgstr "ODF адиаграмма" #: dBase.xcu msgctxt "" @@ -1354,7 +1354,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Drawing Template" -msgstr "" +msgstr "OpenOffice.org 1.0 асахьа ашаблон" #: draw_bmp_Export.xcu msgctxt "" @@ -1372,7 +1372,7 @@ "UIName\n" "value.text" msgid "EMF - Enhanced Metafile" -msgstr "" +msgstr "EMF - Enhanced Metafile" #: draw_eps_Export.xcu msgctxt "" @@ -1399,7 +1399,7 @@ "UIName\n" "value.text" msgid "GIF - Graphics Interchange Format" -msgstr "" +msgstr "GIF - Graphics Interchange Format" #: draw_html_Export.xcu msgctxt "" @@ -1426,7 +1426,7 @@ "UIName\n" "value.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF - Portable Document Format" #: draw_png_Export.xcu msgctxt "" @@ -1435,7 +1435,7 @@ "UIName\n" "value.text" msgid "PNG - Portable Network Graphic" -msgstr "" +msgstr "PNG - Portable Network Graphic" #: draw_svg_Export.xcu msgctxt "" @@ -1453,7 +1453,7 @@ "UIName\n" "value.text" msgid "TIFF - Tagged Image File Format" -msgstr "" +msgstr "TIFF - Tagged Image File Format" #: draw_wmf_Export.xcu msgctxt "" @@ -1462,7 +1462,7 @@ "UIName\n" "value.text" msgid "WMF - Windows Metafile" -msgstr "" +msgstr "WMF - Windows Metafile" #: impress8.xcu msgctxt "" @@ -1525,7 +1525,7 @@ "UIName\n" "value.text" msgid "Office Open XML Presentation" -msgstr "" +msgstr "Office Open XML апрезентациа" #: impress_OOXML_AutoPlay.xcu msgctxt "" @@ -1534,7 +1534,7 @@ "UIName\n" "value.text" msgid "Office Open XML Presentation AutoPlay" -msgstr "" +msgstr "Office Open XML апрезентациа арбара" #: impress_OOXML_Template.xcu msgctxt "" @@ -1543,7 +1543,7 @@ "UIName\n" "value.text" msgid "Office Open XML Presentation Template" -msgstr "" +msgstr "Office Open XML апрезентациа ашаблон" #: impress_StarOffice_XML_Draw.xcu msgctxt "" @@ -1552,7 +1552,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Drawing (Impress)" -msgstr "" +msgstr "OpenOffice.org 1.0 асахьа (Impress) " #: impress_StarOffice_XML_Impress_Template.xcu msgctxt "" @@ -1561,7 +1561,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Presentation Template" -msgstr "" +msgstr "OpenOffice.org 1.0 апрезентациа ашаблон" #: impress_bmp_Export.xcu msgctxt "" @@ -1579,7 +1579,7 @@ "UIName\n" "value.text" msgid "EMF - Enhanced Metafile" -msgstr "" +msgstr "EMF - Enhanced Metafile" #: impress_eps_Export.xcu msgctxt "" @@ -1606,7 +1606,7 @@ "UIName\n" "value.text" msgid "GIF - Graphics Interchange Format" -msgstr "" +msgstr "GIF - Graphics Interchange Format" #: impress_html_Export.xcu msgctxt "" @@ -1633,7 +1633,7 @@ "UIName\n" "value.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF - Portable Document Format" #: impress_png_Export.xcu msgctxt "" @@ -1642,7 +1642,7 @@ "UIName\n" "value.text" msgid "PNG - Portable Network Graphic" -msgstr "" +msgstr "PNG - Portable Network Graphic" #: impress_svg_Export.xcu msgctxt "" @@ -1660,7 +1660,7 @@ "UIName\n" "value.text" msgid "TIFF - Tagged Image File Format" -msgstr "" +msgstr "TIFF - Tagged Image File Format" #: impress_wmf_Export.xcu msgctxt "" @@ -1669,7 +1669,7 @@ "UIName\n" "value.text" msgid "WMF - Windows Metafile" -msgstr "" +msgstr "WMF - Windows Metafile" #: math8.xcu msgctxt "" @@ -1687,7 +1687,7 @@ "UIName\n" "value.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF - Portable Document Format" #: mov__MOV.xcu msgctxt "" @@ -1696,7 +1696,7 @@ "UIName\n" "value.text" msgid "MOV - QuickTime File Format" -msgstr "" +msgstr "MOV - афаил QuickTime аформат" #: writer8.xcu msgctxt "" @@ -1732,7 +1732,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Text Document Template" -msgstr "" +msgstr "OpenOffice.org 1.0 атеқсттә документ ашаблон" #: writer_globaldocument_StarOffice_XML_Writer.xcu msgctxt "" @@ -1741,7 +1741,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Text Document" -msgstr "" +msgstr "OpenOffice.org 1.0 атеқсттә документ" #: writer_globaldocument_StarOffice_XML_Writer_GlobalDocument.xcu msgctxt "" @@ -1750,7 +1750,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Master Document" -msgstr "" +msgstr "OpenOffice.org 1.0 еилоу адокумент" #: writer_globaldocument_pdf_Export.xcu msgctxt "" @@ -1759,7 +1759,7 @@ "UIName\n" "value.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF - Portable Document Format" #: writer_jpg_Export.xcu msgctxt "" @@ -1786,7 +1786,7 @@ "UIName\n" "value.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF - Portable Document Format" #: writer_png_Export.xcu msgctxt "" @@ -1795,7 +1795,7 @@ "UIName\n" "value.text" msgid "PNG - Portable Network Graphic" -msgstr "" +msgstr "PNG - Portable Network Graphic" #: writer_web_HTML_help.xcu msgctxt "" @@ -1813,7 +1813,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Text Document (Writer/Web)" -msgstr "" +msgstr "OpenOffice.org 1.0 атеқсттә документ (Writer/Web)" #: writer_web_StarOffice_XML_Writer_Web_Template.xcu msgctxt "" @@ -1822,7 +1822,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 HTML Template" -msgstr "" +msgstr "OpenOffice.org 1.0 HTML адокумент ашаблон" #: writer_web_jpg_Export.xcu msgctxt "" @@ -1840,7 +1840,7 @@ "UIName\n" "value.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF - Portable Document Format" #: writer_web_png_Export.xcu msgctxt "" @@ -1849,7 +1849,7 @@ "UIName\n" "value.text" msgid "PNG - Portable Network Graphic" -msgstr "" +msgstr "PNG - Portable Network Graphic" #: writerglobal8.xcu msgctxt "" @@ -1867,7 +1867,7 @@ "UIName\n" "value.text" msgid "HTML (Writer/Global)" -msgstr "" +msgstr "HTML (Writer/еилоу)" #: writerglobal8_template.xcu msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/filter/source/config/fragments/internalgraphicfilters.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/filter/source/config/fragments/internalgraphicfilters.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/filter/source/config/fragments/internalgraphicfilters.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/filter/source/config/fragments/internalgraphicfilters.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-11-09 22:51+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-12-12 10:09+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1478731886.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1513073378.000000\n" #: bmp_Export.xcu msgctxt "" @@ -40,7 +40,7 @@ "UIName\n" "value.text" msgid "DXF - AutoCAD Interchange Format" -msgstr "" +msgstr "DXF - AutoCAD Interchange Format" #: emf_Export.xcu msgctxt "" @@ -49,7 +49,7 @@ "UIName\n" "value.text" msgid "EMF - Enhanced Metafile" -msgstr "" +msgstr "EMF - Enhanced Metafile" #: emf_Import.xcu msgctxt "" @@ -58,7 +58,7 @@ "UIName\n" "value.text" msgid "EMF - Enhanced Metafile" -msgstr "" +msgstr "EMF - Enhanced Metafile" #: eps_Export.xcu msgctxt "" @@ -85,7 +85,7 @@ "UIName\n" "value.text" msgid "GIF - Graphics Interchange Format" -msgstr "" +msgstr "GIF - Graphics Interchange Format" #: gif_Import.xcu msgctxt "" @@ -94,7 +94,7 @@ "UIName\n" "value.text" msgid "GIF - Graphics Interchange Format" -msgstr "" +msgstr "GIF - Graphics Interchange Format" #: jpg_Export.xcu msgctxt "" @@ -121,7 +121,7 @@ "UIName\n" "value.text" msgid "MET - OS/2 Metafile" -msgstr "" +msgstr "MET - OS/2 Metafile" #: mov_Import.xcu msgctxt "" @@ -130,7 +130,7 @@ "UIName\n" "value.text" msgid "MOV - QuickTime File Format" -msgstr "" +msgstr "MOV - афаил QuickTime аформат" #: pbm_Import.xcu msgctxt "" @@ -139,7 +139,7 @@ "UIName\n" "value.text" msgid "PBM - Portable Bitmap" -msgstr "" +msgstr "PBM - Portable Bitmap" #: pcd_Import_Base.xcu msgctxt "" @@ -193,7 +193,7 @@ "UIName\n" "value.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF - Portable Document Format" #: pdf_Import.xcu msgctxt "" @@ -202,7 +202,7 @@ "UIName\n" "value.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF - Portable Document Format" #: pgm_Import.xcu msgctxt "" @@ -211,7 +211,7 @@ "UIName\n" "value.text" msgid "PGM - Portable Graymap" -msgstr "" +msgstr "PGM - Portable Graymap" #: png_Export.xcu msgctxt "" @@ -220,7 +220,7 @@ "UIName\n" "value.text" msgid "PNG - Portable Network Graphic" -msgstr "" +msgstr "PNG - Portable Network Graphic" #: png_Import.xcu msgctxt "" @@ -229,7 +229,7 @@ "UIName\n" "value.text" msgid "PNG - Portable Network Graphic" -msgstr "" +msgstr "PNG - Portable Network Graphic" #: ppm_Import.xcu msgctxt "" @@ -238,7 +238,7 @@ "UIName\n" "value.text" msgid "PPM - Portable Pixelmap" -msgstr "" +msgstr "PPM - Portable Pixelmap" #: psd_Import.xcu msgctxt "" @@ -247,7 +247,7 @@ "UIName\n" "value.text" msgid "PSD - Adobe Photoshop" -msgstr "" +msgstr "PSD - Adobe Photoshop" #: ras_Import.xcu msgctxt "" @@ -265,7 +265,7 @@ "UIName\n" "value.text" msgid "SGF - StarWriter Graphics Format" -msgstr "" +msgstr "SGF - StarWriter Graphics Format" #: sgv_Import.xcu msgctxt "" @@ -301,7 +301,7 @@ "UIName\n" "value.text" msgid "SVM - StarView Metafile" -msgstr "" +msgstr "SVM - StarView Metafile" #: svm_Import.xcu msgctxt "" @@ -310,7 +310,7 @@ "UIName\n" "value.text" msgid "SVM - StarView Metafile" -msgstr "" +msgstr "SVM - StarView Metafile" #: tga_Import.xcu msgctxt "" @@ -328,7 +328,7 @@ "UIName\n" "value.text" msgid "TIFF - Tagged Image File Format" -msgstr "" +msgstr "TIFF - Tagged Image File Format" #: tif_Import.xcu msgctxt "" @@ -337,7 +337,7 @@ "UIName\n" "value.text" msgid "TIFF - Tagged Image File Format" -msgstr "" +msgstr "TIFF - Tagged Image File Format" #: wmf_Export.xcu msgctxt "" @@ -346,7 +346,7 @@ "UIName\n" "value.text" msgid "WMF - Windows Metafile" -msgstr "" +msgstr "WMF - Windows Metafile" #: wmf_Import.xcu msgctxt "" @@ -355,7 +355,7 @@ "UIName\n" "value.text" msgid "WMF - Windows Metafile" -msgstr "" +msgstr "WMF - Windows Metafile" #: xbm_Import.xcu msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/filter/source/config/fragments/types.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/filter/source/config/fragments/types.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/filter/source/config/fragments/types.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/filter/source/config/fragments/types.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-06-06 20:00+0200\n" -"PO-Revision-Date: 2015-11-11 00:14+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-29 10:09+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1447200843.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511950152.000000\n" #: MS_Excel_2007_Binary.xcu msgctxt "" @@ -85,7 +85,7 @@ "UIName\n" "value.text" msgid "OpenDocument Database" -msgstr "" +msgstr "OpenDocument адырқәа рбаза" #: StarBaseReport.xcu msgctxt "" @@ -94,7 +94,7 @@ "UIName\n" "value.text" msgid "OpenDocument Database Report" -msgstr "" +msgstr "OpenDocument адырқәа рбаза аҳасабырба" #: StarBaseReportChart.xcu msgctxt "" @@ -103,7 +103,7 @@ "UIName\n" "value.text" msgid "StarOffice XML (Base) Report Chart 9" -msgstr "" +msgstr "StarOffice XML (Base) 9 адиаграмма-ҳасабырба" #: calc8.xcu msgctxt "" @@ -157,7 +157,7 @@ "UIName\n" "value.text" msgid "OpenDocument Spreadsheet (Flat XML)" -msgstr "" +msgstr "OpenDocument аелектронтә таблица (иҟьаҧсу XML)" #: calc_OOXML.xcu msgctxt "" @@ -166,7 +166,7 @@ "UIName\n" "value.text" msgid "Office Open XML Spreadsheet" -msgstr "" +msgstr "Office Open XML аел.таблица" #: calc_OOXML_Template.xcu msgctxt "" @@ -175,7 +175,7 @@ "UIName\n" "value.text" msgid "Office Open XML Spreadsheet Template" -msgstr "" +msgstr "Office Open XML аел.таблица ашаблон" #: chart8.xcu msgctxt "" @@ -184,7 +184,7 @@ "UIName\n" "value.text" msgid "Chart 8" -msgstr "" +msgstr "Chart 8" #: draw8.xcu msgctxt "" @@ -211,7 +211,7 @@ "UIName\n" "value.text" msgid "OpenDocument Drawing (Flat XML)" -msgstr "" +msgstr "OpenDocument асахьа (иҟьаҧсу XML)" #: impress8.xcu msgctxt "" @@ -238,7 +238,7 @@ "UIName\n" "value.text" msgid "OpenDocument Presentation (Flat XML)" -msgstr "" +msgstr "OpenDocument апрезентациа (иҟьаҧсу XML)" #: impress_OOXML_Presentation_AutoPlay.xcu msgctxt "" @@ -247,7 +247,7 @@ "UIName\n" "value.text" msgid "Office Open XML Presentation AutoPlay" -msgstr "" +msgstr "Office Open XML апрезентациа арбара" #: math8.xcu msgctxt "" @@ -319,7 +319,7 @@ "UIName\n" "value.text" msgid "OpenDocument Text (Flat XML)" -msgstr "" +msgstr "OpenDocument (плоский XML) атеқсттә документ (иҟьаҧсу XML)" #: writerglobal8.xcu msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/filter/source/pdf.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/filter/source/pdf.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/filter/source/pdf.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/filter/source/pdf.po 2017-12-12 17:45:07.000000000 +0000 @@ -3,16 +3,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: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2017-11-19 19:33+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511120005.000000\n" #: impdialog.src msgctxt "" @@ -20,7 +21,7 @@ "STR_PDF_EXPORT_UDPWD\n" "string.text" msgid "Set open password" -msgstr "" +msgstr "Иқәыргылатәуп аартразы ажәамаӡа" #: impdialog.src msgctxt "" @@ -116,7 +117,7 @@ "STR_ERR_PDF_EXPORT_ABORTED\n" "string.text" msgid "PDF export aborted" -msgstr "" +msgstr "PDF аекспорт аҟәыхуп" #: pdf.src msgctxt "" @@ -124,4 +125,4 @@ "PDF_PROGRESS_BAR\n" "string.text" msgid "Export as PDF" -msgstr "" +msgstr "PDF ахь аекспорт" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/filter/source/t602.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/filter/source/t602.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/filter/source/t602.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/filter/source/t602.po 2017-12-12 17:45:07.000000000 +0000 @@ -3,16 +3,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: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2017-11-19 19:43+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511120603.000000\n" #: t602filter.src msgctxt "" @@ -20,7 +21,7 @@ "T602FILTER_STR_IMPORT_DIALOG_TITLE\n" "string.text" msgid "Settings for T602 import" -msgstr "" +msgstr "Аимпорт T602 апараметрқәа " #: t602filter.src msgctxt "" @@ -92,7 +93,7 @@ "T602FILTER_STR_CANCEL_BUTTON\n" "string.text" msgid "Cancel" -msgstr "" +msgstr "Аҟәыхра" #: t602filter.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/filter/source/xsltdialog.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/filter/source/xsltdialog.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/filter/source/xsltdialog.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/filter/source/xsltdialog.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n" -"PO-Revision-Date: 2014-11-02 19:10+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-27 07:34+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1414955432.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511768055.000000\n" #: xmlfilterdialogstrings.src msgctxt "" @@ -45,7 +45,7 @@ "STR_IMPORT_ONLY\n" "string.text" msgid "import filter" -msgstr "" +msgstr "Аимпорт афильтр" #: xmlfilterdialogstrings.src msgctxt "" @@ -53,7 +53,7 @@ "STR_IMPORT_EXPORT\n" "string.text" msgid "import/export filter" -msgstr "" +msgstr "аимпорт/аекспорт афильтр" #: xmlfilterdialogstrings.src msgctxt "" @@ -61,7 +61,7 @@ "STR_EXPORT_ONLY\n" "string.text" msgid "export filter" -msgstr "" +msgstr "Аекспорт афильтр" #: xmlfilterdialogstrings.src msgctxt "" @@ -117,7 +117,7 @@ "STR_DEFAULT_FILTER_NAME\n" "string.text" msgid "New Filter" -msgstr "" +msgstr "Афильтр ҿыц" #: xmlfilterdialogstrings.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/filter/uiconfig/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/filter/uiconfig/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/filter/uiconfig/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/filter/uiconfig/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-17 15:41+0200\n" -"PO-Revision-Date: 2017-07-19 15:49+0000\n" +"PO-Revision-Date: 2017-11-30 10:13+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500479382.000000\n" +"X-POOTLE-MTIME: 1512036802.000000\n" #: impswfdialog.ui msgctxt "" @@ -51,7 +51,7 @@ "label\n" "string.text" msgid "Export as _multiple files" -msgstr "" +msgstr "Аекспорт афаилқәа ҧыҭк рахь" #: impswfdialog.ui msgctxt "" @@ -60,7 +60,7 @@ "label\n" "string.text" msgid "Export _backgrounds" -msgstr "" +msgstr "Аҿаҧшыратә сахьақәа рекспорт" #: impswfdialog.ui msgctxt "" @@ -69,7 +69,7 @@ "label\n" "string.text" msgid "Export back_ground objects" -msgstr "" +msgstr "Аҿаҧшыратә обиеқтқәа рекспорт" #: impswfdialog.ui msgctxt "" @@ -78,7 +78,7 @@ "label\n" "string.text" msgid "Export _slide contents" -msgstr "" +msgstr "Аслаидқәа ирыҵаркуа рекспорт " #: impswfdialog.ui msgctxt "" @@ -87,7 +87,7 @@ "label\n" "string.text" msgid "Export _Verilogix Slide Annotations" -msgstr "" +msgstr "Аекспорт_Verilogix Slide Annotations " #: impswfdialog.ui msgctxt "" @@ -96,7 +96,7 @@ "label\n" "string.text" msgid "Export OLE objects as _JPEG images" -msgstr "" +msgstr "OLE аобиеқтқәа JPEG еиҧш рекспорт " #: pdfgeneralpage.ui msgctxt "" @@ -114,7 +114,7 @@ "label\n" "string.text" msgid "_Pages:" -msgstr "" +msgstr "Адаҟьақәа:" #: pdfgeneralpage.ui msgctxt "" @@ -123,7 +123,7 @@ "label\n" "string.text" msgid "_Selection" -msgstr "" +msgstr "Иалкаау" #: pdfgeneralpage.ui msgctxt "" @@ -141,7 +141,7 @@ "label\n" "string.text" msgid "_Selection/Selected sheet(s)" -msgstr "" +msgstr "Алхра/Иалху абӷьыцқәа" #: pdfgeneralpage.ui msgctxt "" @@ -339,7 +339,7 @@ "label\n" "string.text" msgid "_Create PDF form" -msgstr "" +msgstr "Иаҧҵатәуп PDF аформа" #: pdfgeneralpage.ui msgctxt "" @@ -429,7 +429,7 @@ "label\n" "string.text" msgid "_Export comments" -msgstr "" +msgstr "Акомментариқәа рекспорт" #: pdfgeneralpage.ui msgctxt "" @@ -447,7 +447,7 @@ "label\n" "string.text" msgid "_View PDF after export" -msgstr "" +msgstr "Иаарттәуп PDF аекспорт ашьҭахь" #: pdfgeneralpage.ui msgctxt "" @@ -465,7 +465,7 @@ "label\n" "string.text" msgid "Export _hidden pages" -msgstr "" +msgstr "Експорттәуп иҵәаху адаҟьақәа" #: pdfgeneralpage.ui msgctxt "" @@ -555,7 +555,7 @@ "label\n" "string.text" msgid "Open _with Internet browser" -msgstr "" +msgstr "Иаарттәуп, абраузер ахархәарала" #: pdflinkspage.ui msgctxt "" @@ -618,7 +618,7 @@ "label\n" "string.text" msgid "Links" -msgstr "" +msgstr "Азхьарҧшқәа" #: pdfoptionsdialog.ui msgctxt "" @@ -654,7 +654,7 @@ "label\n" "string.text" msgid "Open password set" -msgstr "" +msgstr "Иқәыргылоуп ажәамаӡа аартразы" #: pdfsecuritypage.ui msgctxt "" @@ -672,7 +672,7 @@ "label\n" "string.text" msgid "No open password set" -msgstr "" +msgstr "Аартраз иҟам ажәамаӡа" #: pdfsecuritypage.ui msgctxt "" @@ -789,7 +789,7 @@ "label\n" "string.text" msgid "Printing" -msgstr "" +msgstr "Акьыҧхьра" #: pdfsecuritypage.ui msgctxt "" @@ -888,7 +888,7 @@ "label\n" "string.text" msgid "Select..." -msgstr "" +msgstr "Алхра..." #: pdfsignpage.ui msgctxt "" @@ -978,7 +978,7 @@ "label\n" "string.text" msgid "_Open in full screen mode" -msgstr "" +msgstr "Иаарттәуп аекраннаӡатә режим ала" #: pdfuserinterfacepage.ui msgctxt "" @@ -1086,7 +1086,7 @@ "label\n" "string.text" msgid "_Page only" -msgstr "" +msgstr "Адаҟьа мацара" #: pdfviewpage.ui msgctxt "" @@ -1104,7 +1104,7 @@ "label\n" "string.text" msgid "_Thumbnails and page" -msgstr "" +msgstr "Аминиатиурақәеи адаҟьеи" #: pdfviewpage.ui msgctxt "" @@ -1113,7 +1113,7 @@ "label\n" "string.text" msgid "Open on pa_ge:" -msgstr "" +msgstr "Иаарттәуп адаҟьаҟны:" #: pdfviewpage.ui msgctxt "" @@ -1167,7 +1167,7 @@ "label\n" "string.text" msgid "_Zoom factor:" -msgstr "" +msgstr "Амасштаб:" #: pdfviewpage.ui msgctxt "" @@ -1194,7 +1194,7 @@ "label\n" "string.text" msgid "_Single page" -msgstr "" +msgstr "Даҟьак" #: pdfviewpage.ui msgctxt "" @@ -1221,7 +1221,7 @@ "label\n" "string.text" msgid "First page is _left" -msgstr "" +msgstr "Актәи адаҟьа армарахь ала" #: pdfviewpage.ui msgctxt "" @@ -1230,7 +1230,7 @@ "label\n" "string.text" msgid "Page Layout" -msgstr "" +msgstr "Адаҟьа амакет" #: testxmlfilter.ui msgctxt "" @@ -1248,7 +1248,7 @@ "label\n" "string.text" msgid "XSLT for export" -msgstr "" +msgstr "XSLT аекспорт азы..." #: testxmlfilter.ui msgctxt "" @@ -1266,7 +1266,7 @@ "label\n" "string.text" msgid "Browse..." -msgstr "" +msgstr "Аҭыҧхәаҧшра..." #: testxmlfilter.ui msgctxt "" @@ -1284,7 +1284,7 @@ "label\n" "string.text" msgid "Export" -msgstr "" +msgstr "Аекспорт" #: testxmlfilter.ui msgctxt "" @@ -1293,7 +1293,7 @@ "label\n" "string.text" msgid "XSLT for import" -msgstr "" +msgstr "XSLT аимпорт азы" #: testxmlfilter.ui msgctxt "" @@ -1302,7 +1302,7 @@ "label\n" "string.text" msgid "Browse..." -msgstr "" +msgstr "Аҭыҧхәаҧшра..." #: testxmlfilter.ui msgctxt "" @@ -1320,7 +1320,7 @@ "label\n" "string.text" msgid "Template for import" -msgstr "" +msgstr "Аимпорт азы ашаблон" #: testxmlfilter.ui msgctxt "" @@ -1347,7 +1347,7 @@ "label\n" "string.text" msgid "Import" -msgstr "" +msgstr "Аимпорт" #: warnpdfdialog.ui msgctxt "" @@ -1356,7 +1356,7 @@ "title\n" "string.text" msgid "Problems During PDF Export" -msgstr "" +msgstr "PDF аекспорт аан апрблемақәа" #: warnpdfdialog.ui msgctxt "" @@ -1365,7 +1365,7 @@ "text\n" "string.text" msgid "During PDF export the following problems occurred:" -msgstr "" +msgstr "PDF аекспортраан ицәырҵит абарҭ апроблемақәа:" #: xmlfiltersettings.ui msgctxt "" @@ -1383,7 +1383,7 @@ "label\n" "string.text" msgid "_New..." -msgstr "" +msgstr "Иаҧҵатәуп..." #: xmlfiltersettings.ui msgctxt "" @@ -1392,7 +1392,7 @@ "label\n" "string.text" msgid "_Edit..." -msgstr "" +msgstr "Иҧсахтәуп..." #: xmlfiltersettings.ui msgctxt "" @@ -1410,7 +1410,7 @@ "label\n" "string.text" msgid "_Delete..." -msgstr "" +msgstr "Ианыхтәуп..." #: xmlfiltersettings.ui msgctxt "" @@ -1419,7 +1419,7 @@ "label\n" "string.text" msgid "_Save as Package..." -msgstr "Иеиқырхатәуп апакет..." +msgstr "Еиқырхатәуп апакет..." #: xmlfiltersettings.ui msgctxt "" @@ -1428,7 +1428,7 @@ "label\n" "string.text" msgid "_Open Package..." -msgstr "" +msgstr "Иаарттәуп апакет..." #: xmlfiltersettings.ui msgctxt "" @@ -1464,7 +1464,7 @@ "label\n" "string.text" msgid "_Name of file type:" -msgstr "" +msgstr "Афаил атип ахьӡ:" #: xmlfiltertabpagegeneral.ui msgctxt "" @@ -1500,7 +1500,7 @@ "label\n" "string.text" msgid "_XSLT for export:" -msgstr "" +msgstr "XSLT аекспорт азы..." #: xmlfiltertabpagetransformation.ui msgctxt "" @@ -1518,7 +1518,7 @@ "label\n" "string.text" msgid "XSLT _for import:" -msgstr "" +msgstr "XSLT аимпорт азы:" #: xmlfiltertabpagetransformation.ui msgctxt "" @@ -1536,7 +1536,7 @@ "label\n" "string.text" msgid "Template for _import:" -msgstr "" +msgstr "Аимпорт азы ашаблон:" #: xmlfiltertabpagetransformation.ui msgctxt "" @@ -1545,7 +1545,7 @@ "label\n" "string.text" msgid "Browse..." -msgstr "" +msgstr "Аҭыҧхәаҧшра..." #: xmlfiltertabpagetransformation.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/forms/source/resource.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/forms/source/resource.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/forms/source/resource.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/forms/source/resource.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-07-18 07:55+0000\n" +"PO-Revision-Date: 2017-12-12 10:10+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500364551.000000\n" +"X-POOTLE-MTIME: 1513073449.000000\n" #: strings.src msgctxt "" @@ -69,7 +69,7 @@ "RID_ERR_LOADING_FORM\n" "string.text" msgid "The data content could not be loaded." -msgstr "" +msgstr "Адырқәа рҭагалара ауам." #: strings.src msgctxt "" @@ -101,7 +101,7 @@ "RID_STR_ERR_DELETERECORD\n" "string.text" msgid "Error deleting the current record" -msgstr "" +msgstr "Уажәтәи анҵамҭа аныхраан агха" #: strings.src msgctxt "" @@ -109,7 +109,7 @@ "RID_STR_ERR_DELETERECORDS\n" "string.text" msgid "Error deleting the specified records" -msgstr "" +msgstr "Иарбоу анҵамҭа аныхраан агха" #: strings.src msgctxt "" @@ -117,7 +117,7 @@ "RID_STR_NEED_NON_NULL_OBJECT\n" "string.text" msgid "The object cannot be NULL." -msgstr "" +msgstr "Аобиеқт NULL акәымзароуп." #: strings.src msgctxt "" @@ -263,7 +263,7 @@ "RID_STR_XFORMS_REQUIRED\n" "string.text" msgid "A value is required." -msgstr "" +msgstr "Иаҭахуп аҵакы." #: xforms.src msgctxt "" @@ -335,7 +335,7 @@ "RID_STR_XFORMS_VALUE_LENGTH\n" "string.text" msgid "The string must be $2 characters long." -msgstr "" +msgstr "Ацәаҳәа иаҵанакуазароуп $2 символк." #: xforms.src msgctxt "" @@ -343,7 +343,7 @@ "RID_STR_XFORMS_VALUE_MIN_LENGTH\n" "string.text" msgid "The string must be at least $2 characters long." -msgstr "" +msgstr "Ацәаҳәа иаҵанакуазароуп $2 символк иреиҵамкәа." #: xforms.src msgctxt "" @@ -351,7 +351,7 @@ "RID_STR_XFORMS_VALUE_MAX_LENGTH\n" "string.text" msgid "The string can only be $2 characters long at most." -msgstr "" +msgstr "Ацәаҳәа иаҵанакуазароуп $2 символк иреиҳамкәа." #: xforms.src msgctxt "" @@ -359,7 +359,7 @@ "RID_STR_DATATYPE_STRING\n" "string.text" msgid "String" -msgstr "" +msgstr "Ацәаҳәақәа" #: xforms.src msgctxt "" @@ -367,7 +367,7 @@ "RID_STR_DATATYPE_URL\n" "string.text" msgid "Hyperlink" -msgstr "" +msgstr "Агиперзхьарҧш" #: xforms.src msgctxt "" @@ -407,7 +407,7 @@ "RID_STR_DATATYPE_DATE\n" "string.text" msgid "Date" -msgstr "" +msgstr "Арыцхә" #: xforms.src msgctxt "" @@ -415,7 +415,7 @@ "RID_STR_DATATYPE_TIME\n" "string.text" msgid "Time" -msgstr "" +msgstr "Аамҭа" #: xforms.src msgctxt "" @@ -423,7 +423,7 @@ "RID_STR_DATATYPE_DATETIME\n" "string.text" msgid "Date and Time" -msgstr "" +msgstr "Арыцхәи аамҭеи" #: xforms.src msgctxt "" @@ -431,7 +431,7 @@ "RID_STR_DATATYPE_YEAR\n" "string.text" msgid "Year" -msgstr "" +msgstr "Ашықәс" #: xforms.src msgctxt "" @@ -439,7 +439,7 @@ "RID_STR_DATATYPE_MONTH\n" "string.text" msgid "Month" -msgstr "" +msgstr "Амза" #: xforms.src msgctxt "" @@ -447,7 +447,7 @@ "RID_STR_DATATYPE_DAY\n" "string.text" msgid "Day" -msgstr "" +msgstr "Амш" #: xforms.src msgctxt "" @@ -455,7 +455,7 @@ "RID_STR_XFORMS_CANT_EVALUATE\n" "string.text" msgid "Error during evaluation" -msgstr "" +msgstr "Анагӡараан агха" #: xforms.src msgctxt "" @@ -471,7 +471,7 @@ "RID_STR_XFORMS_BINDING_UI_NAME\n" "string.text" msgid "Binding" -msgstr "" +msgstr "Аидҳәалара" #: xforms.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/formula/source/core/resource.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/formula/source/core/resource.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/formula/source/core/resource.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/formula/source/core/resource.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-17 15:41+0200\n" -"PO-Revision-Date: 2017-07-21 16:10+0000\n" +"PO-Revision-Date: 2017-12-12 10:11+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500653459.000000\n" +"X-POOTLE-MTIME: 1513073469.000000\n" #: core_resource.src msgctxt "" @@ -22,7 +22,7 @@ "IF\n" "itemlist.text" msgid "IF" -msgstr "" +msgstr "АКӘЗАР" #: core_resource.src msgctxt "" @@ -31,7 +31,7 @@ "IFERROR\n" "itemlist.text" msgid "IFERROR" -msgstr "" +msgstr "АГХААКӘЗАР" #: core_resource.src msgctxt "" @@ -49,7 +49,7 @@ "CHOOSE\n" "itemlist.text" msgid "CHOOSE" -msgstr "" +msgstr "АЛХРА" #: core_resource.src msgctxt "" @@ -58,7 +58,7 @@ "#All\n" "itemlist.text" msgid "#All" -msgstr "" +msgstr "#Зегьы" #: core_resource.src msgctxt "" @@ -76,7 +76,7 @@ "#Data\n" "itemlist.text" msgid "#Data" -msgstr "" +msgstr "#Адырқәа" #: core_resource.src msgctxt "" @@ -112,7 +112,7 @@ "OR\n" "itemlist.text" msgid "OR" -msgstr "" +msgstr "МА" #: core_resource.src msgctxt "" @@ -130,7 +130,7 @@ "NOT\n" "itemlist.text" msgid "NOT" -msgstr "" +msgstr "АКӘӠАМ" #: core_resource.src msgctxt "" @@ -238,7 +238,7 @@ "SIN\n" "itemlist.text" msgid "SIN" -msgstr "" +msgstr "SIN" #: core_resource.src msgctxt "" @@ -247,7 +247,7 @@ "COS\n" "itemlist.text" msgid "COS" -msgstr "" +msgstr "COS" #: core_resource.src msgctxt "" @@ -256,7 +256,7 @@ "TAN\n" "itemlist.text" msgid "TAN" -msgstr "" +msgstr "TAN" #: core_resource.src msgctxt "" @@ -265,7 +265,7 @@ "COT\n" "itemlist.text" msgid "COT" -msgstr "" +msgstr "COT" #: core_resource.src msgctxt "" @@ -274,7 +274,7 @@ "ASIN\n" "itemlist.text" msgid "ASIN" -msgstr "" +msgstr "ASIN" #: core_resource.src msgctxt "" @@ -283,7 +283,7 @@ "ACOS\n" "itemlist.text" msgid "ACOS" -msgstr "" +msgstr "ACOS" #: core_resource.src msgctxt "" @@ -292,7 +292,7 @@ "ATAN\n" "itemlist.text" msgid "ATAN" -msgstr "" +msgstr "ATAN" #: core_resource.src msgctxt "" @@ -301,7 +301,7 @@ "ACOT\n" "itemlist.text" msgid "ACOT" -msgstr "" +msgstr "ACOT" #: core_resource.src msgctxt "" @@ -310,7 +310,7 @@ "SINH\n" "itemlist.text" msgid "SINH" -msgstr "" +msgstr "SINH" #: core_resource.src msgctxt "" @@ -319,7 +319,7 @@ "COSH\n" "itemlist.text" msgid "COSH" -msgstr "" +msgstr "COSH" #: core_resource.src msgctxt "" @@ -328,7 +328,7 @@ "TANH\n" "itemlist.text" msgid "TANH" -msgstr "" +msgstr "TANH" #: core_resource.src msgctxt "" @@ -337,7 +337,7 @@ "COTH\n" "itemlist.text" msgid "COTH" -msgstr "" +msgstr "COSH" #: core_resource.src msgctxt "" @@ -346,7 +346,7 @@ "ASINH\n" "itemlist.text" msgid "ASINH" -msgstr "" +msgstr "ASINH" #: core_resource.src msgctxt "" @@ -355,7 +355,7 @@ "ACOSH\n" "itemlist.text" msgid "ACOSH" -msgstr "" +msgstr "ACOSH" #: core_resource.src msgctxt "" @@ -364,7 +364,7 @@ "ATANH\n" "itemlist.text" msgid "ATANH" -msgstr "" +msgstr "ATANH" #: core_resource.src msgctxt "" @@ -373,7 +373,7 @@ "ACOTH\n" "itemlist.text" msgid "ACOTH" -msgstr "" +msgstr "ACOTH" #: core_resource.src msgctxt "" @@ -382,7 +382,7 @@ "CSC\n" "itemlist.text" msgid "CSC" -msgstr "" +msgstr "CSC" #: core_resource.src msgctxt "" @@ -391,7 +391,7 @@ "SEC\n" "itemlist.text" msgid "SEC" -msgstr "" +msgstr "SEC" #: core_resource.src msgctxt "" @@ -400,7 +400,7 @@ "CSCH\n" "itemlist.text" msgid "CSCH" -msgstr "" +msgstr "CSCH" #: core_resource.src msgctxt "" @@ -409,7 +409,7 @@ "SECH\n" "itemlist.text" msgid "SECH" -msgstr "" +msgstr "SECH" #: core_resource.src msgctxt "" @@ -418,7 +418,7 @@ "EXP\n" "itemlist.text" msgid "EXP" -msgstr "" +msgstr "EXP" #: core_resource.src msgctxt "" @@ -427,7 +427,7 @@ "LN\n" "itemlist.text" msgid "LN" -msgstr "" +msgstr "LN" #: core_resource.src msgctxt "" @@ -436,7 +436,7 @@ "SQRT\n" "itemlist.text" msgid "SQRT" -msgstr "" +msgstr "SQRT" #: core_resource.src msgctxt "" @@ -445,7 +445,7 @@ "FACT\n" "itemlist.text" msgid "FACT" -msgstr "" +msgstr "FACT" #: core_resource.src msgctxt "" @@ -454,7 +454,7 @@ "YEAR\n" "itemlist.text" msgid "YEAR" -msgstr "" +msgstr "АШЫҚӘС" #: core_resource.src msgctxt "" @@ -463,7 +463,7 @@ "MONTH\n" "itemlist.text" msgid "MONTH" -msgstr "" +msgstr "АМЗА" #: core_resource.src msgctxt "" @@ -472,7 +472,7 @@ "DAY\n" "itemlist.text" msgid "DAY" -msgstr "" +msgstr "АМШ" #: core_resource.src msgctxt "" @@ -481,7 +481,7 @@ "HOUR\n" "itemlist.text" msgid "HOUR" -msgstr "" +msgstr "АСААҬ" #: core_resource.src msgctxt "" @@ -490,7 +490,7 @@ "MINUTE\n" "itemlist.text" msgid "MINUTE" -msgstr "" +msgstr "АМИНУҬҚӘА" #: core_resource.src msgctxt "" @@ -499,7 +499,7 @@ "SECOND\n" "itemlist.text" msgid "SECOND" -msgstr "" +msgstr "АСЕКУНДҚӘА" #: core_resource.src msgctxt "" @@ -517,7 +517,7 @@ "ABS\n" "itemlist.text" msgid "ABS" -msgstr "" +msgstr "ABS" #: core_resource.src msgctxt "" @@ -526,7 +526,7 @@ "INT\n" "itemlist.text" msgid "INT" -msgstr "" +msgstr "ЕИБГОУ" #: core_resource.src msgctxt "" @@ -544,7 +544,7 @@ "GAUSS\n" "itemlist.text" msgid "GAUSS" -msgstr "" +msgstr "ГАУСС" #: core_resource.src msgctxt "" @@ -589,7 +589,7 @@ "TYPE\n" "itemlist.text" msgid "TYPE" -msgstr "" +msgstr "АТИП" #: core_resource.src msgctxt "" @@ -598,7 +598,7 @@ "CELL\n" "itemlist.text" msgid "CELL" -msgstr "" +msgstr "АБЛАРҬА" #: core_resource.src msgctxt "" @@ -625,7 +625,7 @@ "ISFORMULA\n" "itemlist.text" msgid "ISFORMULA" -msgstr "" +msgstr "ISFORMULA" #: core_resource.src msgctxt "" @@ -760,7 +760,7 @@ "T\n" "itemlist.text" msgid "T" -msgstr "" +msgstr "T" #: core_resource.src msgctxt "" @@ -769,7 +769,7 @@ "VALUE\n" "itemlist.text" msgid "VALUE" -msgstr "" +msgstr "АҴАКЫ" #: core_resource.src msgctxt "" @@ -787,7 +787,7 @@ "CHAR\n" "itemlist.text" msgid "CHAR" -msgstr "" +msgstr "АСИМВОЛ" #: core_resource.src msgctxt "" @@ -796,7 +796,7 @@ "JIS\n" "itemlist.text" msgid "JIS" -msgstr "" +msgstr "JIS" #: core_resource.src msgctxt "" @@ -805,7 +805,7 @@ "ASC\n" "itemlist.text" msgid "ASC" -msgstr "" +msgstr "ASC" #: core_resource.src msgctxt "" @@ -814,7 +814,7 @@ "UNICODE\n" "itemlist.text" msgid "UNICODE" -msgstr "" +msgstr "UNICODE" #: core_resource.src msgctxt "" @@ -832,7 +832,7 @@ "LOG10\n" "itemlist.text" msgid "LOG10" -msgstr "" +msgstr "LOG10" #: core_resource.src msgctxt "" @@ -949,7 +949,7 @@ "FORMULA\n" "itemlist.text" msgid "FORMULA" -msgstr "" +msgstr "АФОРМУЛА" #: core_resource.src msgctxt "" @@ -967,7 +967,7 @@ "ATAN2\n" "itemlist.text" msgid "ATAN2" -msgstr "" +msgstr "ATAN2" #: core_resource.src msgctxt "" @@ -1093,7 +1093,7 @@ "LOG\n" "itemlist.text" msgid "LOG" -msgstr "" +msgstr "LOG" #: core_resource.src msgctxt "" @@ -1183,7 +1183,7 @@ "DATE\n" "itemlist.text" msgid "DATE" -msgstr "" +msgstr "АРЫЦХӘ" #: core_resource.src msgctxt "" @@ -1192,7 +1192,7 @@ "TIME\n" "itemlist.text" msgid "TIME" -msgstr "" +msgstr "ААМҬА" #: core_resource.src msgctxt "" @@ -1201,7 +1201,7 @@ "DAYS\n" "itemlist.text" msgid "DAYS" -msgstr "" +msgstr "АМШҚӘА" #: core_resource.src msgctxt "" @@ -1210,7 +1210,7 @@ "DAYS360\n" "itemlist.text" msgid "DAYS360" -msgstr "" +msgstr "360МШЫ" #: core_resource.src msgctxt "" @@ -1228,7 +1228,7 @@ "MIN\n" "itemlist.text" msgid "MIN" -msgstr "" +msgstr "MIN" #: core_resource.src msgctxt "" @@ -1246,7 +1246,7 @@ "MAX\n" "itemlist.text" msgid "MAX" -msgstr "" +msgstr "MAX" #: core_resource.src msgctxt "" @@ -1525,7 +1525,7 @@ "POISSON\n" "itemlist.text" msgid "POISSON" -msgstr "" +msgstr "ПУАССОН" #: core_resource.src msgctxt "" @@ -1687,7 +1687,7 @@ "ROW\n" "itemlist.text" msgid "ROW" -msgstr "" +msgstr "АЦӘАҲӘА" #: core_resource.src msgctxt "" @@ -1696,7 +1696,7 @@ "SHEET\n" "itemlist.text" msgid "SHEET" -msgstr "" +msgstr "АБӶЬЫЦ" #: core_resource.src msgctxt "" @@ -2047,7 +2047,7 @@ "INDEX\n" "itemlist.text" msgid "INDEX" -msgstr "" +msgstr "АИНДЕКС" #: core_resource.src msgctxt "" @@ -2758,7 +2758,7 @@ "LARGE\n" "itemlist.text" msgid "LARGE" -msgstr "" +msgstr "ИРЕИҲАУ" #: core_resource.src msgctxt "" @@ -2767,7 +2767,7 @@ "SMALL\n" "itemlist.text" msgid "SMALL" -msgstr "" +msgstr "ИРЕИҴОУ" #: core_resource.src msgctxt "" @@ -2866,7 +2866,7 @@ "PROB\n" "itemlist.text" msgid "PROB" -msgstr "" +msgstr "АИАШАҚӘШӘАРА" #: core_resource.src msgctxt "" @@ -3388,7 +3388,7 @@ "ROMAN\n" "itemlist.text" msgid "ROMAN" -msgstr "" +msgstr "АРИМТӘ" #: core_resource.src msgctxt "" @@ -3397,7 +3397,7 @@ "HYPERLINK\n" "itemlist.text" msgid "HYPERLINK" -msgstr "" +msgstr "АГИПЕРЗХЬАРҦШ" #: core_resource.src msgctxt "" @@ -3451,7 +3451,7 @@ "GAMMA\n" "itemlist.text" msgid "GAMMA" -msgstr "" +msgstr "ГАММА" #: core_resource.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/formula/source/ui/dlg.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/formula/source/ui/dlg.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/formula/source/ui/dlg.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/formula/source/ui/dlg.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-07-13 10:58+0000\n" +"PO-Revision-Date: 2017-11-15 08:17+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1499943487.000000\n" +"X-POOTLE-MTIME: 1510733869.000000\n" #: formdlgs.src msgctxt "" @@ -21,7 +21,7 @@ "STR_TITLE1\n" "string.text" msgid "Function Wizard" -msgstr "" +msgstr "Афункциақәа Разҟаза" #: formdlgs.src msgctxt "" @@ -29,7 +29,7 @@ "STR_TITLE2\n" "string.text" msgid "Function Wizard -" -msgstr "" +msgstr "Афункциақәа Разҟаза -" #: formdlgs.src msgctxt "" @@ -45,7 +45,7 @@ "RID_STR_SHRINK\n" "string.text" msgid "Shrink" -msgstr "" +msgstr "Еикәарҳәтәуп" #: formdlgs.src msgctxt "" @@ -53,7 +53,7 @@ "RID_STR_EXPAND\n" "string.text" msgid "Expand" -msgstr "" +msgstr "Иаарттәуп" #: parawin.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/formula/uiconfig/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/formula/uiconfig/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/formula/uiconfig/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/formula/uiconfig/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-07-19 15:28+0000\n" +"PO-Revision-Date: 2017-11-27 16:52+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500478088.000000\n" +"X-POOTLE-MTIME: 1511801563.000000\n" #: formuladialog.ui msgctxt "" @@ -166,7 +166,7 @@ "tooltip_text\n" "string.text" msgid "Select" -msgstr "" +msgstr "Иалхтәуп" #: parameter.ui msgctxt "" @@ -175,7 +175,7 @@ "tooltip_text\n" "string.text" msgid "Select" -msgstr "" +msgstr "Иалхтәуп" #: parameter.ui msgctxt "" @@ -184,7 +184,7 @@ "tooltip_text\n" "string.text" msgid "Select" -msgstr "" +msgstr "Иалхтәуп" #: parameter.ui msgctxt "" @@ -193,7 +193,7 @@ "tooltip_text\n" "string.text" msgid "Select" -msgstr "" +msgstr "Иалхтәуп" #: structpage.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/fpicker/source/office.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/fpicker/source/office.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/fpicker/source/office.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/fpicker/source/office.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n" -"PO-Revision-Date: 2017-07-18 11:12+0000\n" +"PO-Revision-Date: 2017-11-27 16:52+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500376327.000000\n" +"X-POOTLE-MTIME: 1511801579.000000\n" #: OfficeFilePicker.src msgctxt "" @@ -109,7 +109,7 @@ "STR_SVT_FILEPICKER_FILTER_TITLE\n" "string.text" msgid "File ~type:" -msgstr "Афаил ахкы:" +msgstr "Афаил атип:" #: OfficeFilePicker.src msgctxt "" @@ -117,7 +117,7 @@ "STR_SVT_FOLDERPICKER_DEFAULT_TITLE\n" "string.text" msgid "Select Path" -msgstr "" +msgstr "Иалышәх амҩа" #: OfficeFilePicker.src msgctxt "" @@ -141,7 +141,7 @@ "STR_EXPLORERFILE_SAVE\n" "string.text" msgid "Save as" -msgstr "Иеиқәырхатәуп иаба(ишҧа)" +msgstr "Еиқәырхатәуп иаба(ишҧа)" #: iodlg.src msgctxt "" @@ -149,7 +149,7 @@ "STR_EXPLORERFILE_BUTTONSAVE\n" "string.text" msgid "~Save" -msgstr "Иеиқәырхатәуп" +msgstr "Еиқәырхатәуп" #: iodlg.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/fpicker/uiconfig/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/fpicker/uiconfig/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/fpicker/uiconfig/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/fpicker/uiconfig/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-07-18 11:15+0000\n" +"PO-Revision-Date: 2017-11-27 07:34+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500376519.000000\n" +"X-POOTLE-MTIME: 1511768068.000000\n" #: explorerfiledialog.ui msgctxt "" @@ -49,7 +49,7 @@ "tooltip_text\n" "string.text" msgid "Create New Folder" -msgstr "" +msgstr "Иаҧҵатәуп аҭаӡ" #: explorerfiledialog.ui msgctxt "" @@ -58,7 +58,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Create New Folder" -msgstr "" +msgstr "Иаҧҵатәуп аҭаӡ" #: explorerfiledialog.ui msgctxt "" @@ -76,7 +76,7 @@ "label\n" "string.text" msgid "File _type:" -msgstr "Афаил ахкы:" +msgstr "Афаил атип:" #: explorerfiledialog.ui msgctxt "" @@ -94,7 +94,7 @@ "label\n" "string.text" msgid "Save with password" -msgstr "" +msgstr "Еиқәырхатәуп ажәамаӡа шацу" #: explorerfiledialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/framework/source/classes.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/framework/source/classes.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/framework/source/classes.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/framework/source/classes.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-18 11:02+0200\n" -"PO-Revision-Date: 2017-10-29 11:41+0000\n" +"PO-Revision-Date: 2017-11-29 09:43+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1509277288.000000\n" +"X-POOTLE-MTIME: 1511948624.000000\n" #: resource.src msgctxt "" @@ -93,7 +93,7 @@ "STR_SAVECOPYDOC\n" "string.text" msgid "Save Copy ~as..." -msgstr "Иеиқәырхатәуп акопиа иаба(ишҧа)..." +msgstr "Еиқәырхатәуп акопиа иаба(ишҧа)..." #: resource.src msgctxt "" @@ -250,7 +250,7 @@ "STR_SET_LANGUAGE_FOR_PARAGRAPH\n" "string.text" msgid "Set Language for Paragraph" -msgstr "" +msgstr "Иқәыргылатәуп абызшәа абзацаз" #: resource.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/instsetoo_native/inc_openoffice/windows/msi_languages.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/instsetoo_native/inc_openoffice/windows/msi_languages.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-09-18 11:08+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-30 09:57+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1505732884.000000\n" +"X-POOTLE-MTIME: 1512035831.000000\n" #: ActionTe.ulf msgctxt "" @@ -53,7 +53,7 @@ "OOO_ACTIONTEXT_5\n" "LngText.text" msgid "Property: [1], Signature: [2]" -msgstr "" +msgstr "Аҷыдаҟазшьа: [1], Анапаҵаҩра: [2]" #: ActionTe.ulf msgctxt "" @@ -69,7 +69,7 @@ "OOO_ACTIONTEXT_7\n" "LngText.text" msgid "File: [1]" -msgstr "" +msgstr "Афаил: [1]" #: ActionTe.ulf msgctxt "" @@ -117,7 +117,7 @@ "OOO_ACTIONTEXT_13\n" "LngText.text" msgid "Creating folders" -msgstr "" +msgstr "Аҭаӡқәа раҧҵара" #: ActionTe.ulf msgctxt "" @@ -125,7 +125,7 @@ "OOO_ACTIONTEXT_14\n" "LngText.text" msgid "Folder: [1]" -msgstr "" +msgstr "Аҭаӡ: [1]" #: ActionTe.ulf msgctxt "" @@ -157,7 +157,7 @@ "OOO_ACTIONTEXT_18\n" "LngText.text" msgid "Service: [1]" -msgstr "" +msgstr "Амаҵзура: [1]" #: ActionTe.ulf msgctxt "" @@ -173,7 +173,7 @@ "OOO_ACTIONTEXT_20\n" "LngText.text" msgid "File: [1], Directory: [9], Size: [6]" -msgstr "" +msgstr "Афаил: [1], Аҭаӡ: [9], Ашәагаа: [6]" #: ActionTe.ulf msgctxt "" @@ -213,7 +213,7 @@ "OOO_ACTIONTEXT_25\n" "LngText.text" msgid "[1]" -msgstr "" +msgstr "[1]" #: ActionTe.ulf msgctxt "" @@ -229,7 +229,7 @@ "OOO_ACTIONTEXT_27\n" "LngText.text" msgid "File: [1], Directory: [9], Size: [6]" -msgstr "" +msgstr "Афаил: [1], Аҭаӡ: [9], Ашәагаа: [6]" #: ActionTe.ulf msgctxt "" @@ -237,7 +237,7 @@ "OOO_ACTIONTEXT_28\n" "LngText.text" msgid "Copying new files" -msgstr "" +msgstr "Афаил ҿыцқәа ркопиаҟаҵара" #: ActionTe.ulf msgctxt "" @@ -245,7 +245,7 @@ "OOO_ACTIONTEXT_29\n" "LngText.text" msgid "File: [1], Directory: [9], Size: [6]" -msgstr "" +msgstr "Афаил: [1], Аҭаӡ: [9], Ашәагаа: [6]" #: ActionTe.ulf msgctxt "" @@ -253,7 +253,7 @@ "OOO_ACTIONTEXT_30\n" "LngText.text" msgid "Installing ODBC components" -msgstr "" +msgstr "ODBC акомпонентқәа рықәыргылара" #: ActionTe.ulf msgctxt "" @@ -261,7 +261,7 @@ "OOO_ACTIONTEXT_31\n" "LngText.text" msgid "Installing new services" -msgstr "" +msgstr "Амаҵзура ҿыцқәа рықәыргылара" #: ActionTe.ulf msgctxt "" @@ -269,7 +269,7 @@ "OOO_ACTIONTEXT_32\n" "LngText.text" msgid "Service: [2]" -msgstr "" +msgstr "Амаҵзура: [2]" #: ActionTe.ulf msgctxt "" @@ -277,7 +277,7 @@ "OOO_ACTIONTEXT_33\n" "LngText.text" msgid "Installing system catalog" -msgstr "" +msgstr "Асистематә каталог ақәыргылара" #: ActionTe.ulf msgctxt "" @@ -293,7 +293,7 @@ "OOO_ACTIONTEXT_35\n" "LngText.text" msgid "Validating install" -msgstr "" +msgstr "Ақәыргылара агәаҭара" #: ActionTe.ulf msgctxt "" @@ -325,7 +325,7 @@ "OOO_ACTIONTEXT_39\n" "LngText.text" msgid "Moving files" -msgstr "" +msgstr "Афаилқәа реиҭагара" #: ActionTe.ulf msgctxt "" @@ -333,7 +333,7 @@ "OOO_ACTIONTEXT_40\n" "LngText.text" msgid "File: [1], Directory: [9], Size: [6]" -msgstr "" +msgstr "Афаил: [1], Аҭаӡ: [9], Ашәагаа: [6]" #: ActionTe.ulf msgctxt "" @@ -341,7 +341,7 @@ "OOO_ACTIONTEXT_41\n" "LngText.text" msgid "Patching files" -msgstr "" +msgstr "Ариашарақәа рхархәара" #: ActionTe.ulf msgctxt "" @@ -349,7 +349,7 @@ "OOO_ACTIONTEXT_42\n" "LngText.text" msgid "File: [1], Directory: [2], Size: [3]" -msgstr "" +msgstr "Афаил: [1], Аҭаӡ: [2], Ашәагаа: [3]" #: ActionTe.ulf msgctxt "" @@ -389,7 +389,7 @@ "OOO_ACTIONTEXT_47\n" "LngText.text" msgid "Feature: [1]" -msgstr "" +msgstr "Акомпонент: [1]" #: ActionTe.ulf msgctxt "" @@ -493,7 +493,7 @@ "OOO_ACTIONTEXT_60\n" "LngText.text" msgid "[1]" -msgstr "" +msgstr "[1]" #: ActionTe.ulf msgctxt "" @@ -525,7 +525,7 @@ "OOO_ACTIONTEXT_64\n" "LngText.text" msgid "LibID: [1]" -msgstr "" +msgstr "Абиблиотека: [1]" #: ActionTe.ulf msgctxt "" @@ -541,7 +541,7 @@ "OOO_ACTIONTEXT_66\n" "LngText.text" msgid "[1]" -msgstr "" +msgstr "[1]" #: ActionTe.ulf msgctxt "" @@ -557,7 +557,7 @@ "OOO_ACTIONTEXT_68\n" "LngText.text" msgid "File: [1], Directory: [9]" -msgstr "" +msgstr "Афаил: [1], Аҭаӡ: [9]" #: ActionTe.ulf msgctxt "" @@ -605,7 +605,7 @@ "OOO_ACTIONTEXT_74\n" "LngText.text" msgid "File: [1], Directory: [9]" -msgstr "" +msgstr "Афаил: [1], Аҭаӡ: [9]" #: ActionTe.ulf msgctxt "" @@ -613,7 +613,7 @@ "OOO_ACTIONTEXT_75\n" "LngText.text" msgid "Removing folders" -msgstr "" +msgstr "Аҭаӡқәа раныхра" #: ActionTe.ulf msgctxt "" @@ -621,7 +621,7 @@ "OOO_ACTIONTEXT_76\n" "LngText.text" msgid "Folder: [1]" -msgstr "" +msgstr "Аҭаӡ: [1]" #: ActionTe.ulf msgctxt "" @@ -629,7 +629,7 @@ "OOO_ACTIONTEXT_77\n" "LngText.text" msgid "Removing INI file entries" -msgstr "" +msgstr "INI фаил аҟны ацәаҳәақәа раныхра" #: ActionTe.ulf msgctxt "" @@ -637,7 +637,7 @@ "OOO_ACTIONTEXT_78\n" "LngText.text" msgid "File: [1], Section: [2], Key: [3], Value: [4]" -msgstr "" +msgstr "Афаил: [1], Асекциа: [2], Ацаҧха: [3], Аҵакы: [4]" #: ActionTe.ulf msgctxt "" @@ -661,7 +661,7 @@ "OOO_ACTIONTEXT_81\n" "LngText.text" msgid "Key: [1], Name: [2]" -msgstr "" +msgstr "Ацаҧха: [1], Ахьӡ: [2]" #: ActionTe.ulf msgctxt "" @@ -701,7 +701,7 @@ "OOO_ACTIONTEXT_86\n" "LngText.text" msgid "[1]" -msgstr "" +msgstr "[1]" #: ActionTe.ulf msgctxt "" @@ -717,7 +717,7 @@ "OOO_ACTIONTEXT_88\n" "LngText.text" msgid "File: [1]" -msgstr "" +msgstr "Афаил: [1]" #: ActionTe.ulf msgctxt "" @@ -733,7 +733,7 @@ "OOO_ACTIONTEXT_94\n" "LngText.text" msgid "Starting services" -msgstr "" +msgstr "Амаҵзурақәа рдәықәҵара" #: ActionTe.ulf msgctxt "" @@ -741,7 +741,7 @@ "OOO_ACTIONTEXT_95\n" "LngText.text" msgid "Service: [1]" -msgstr "" +msgstr "Амаҵзура: [1]" #: ActionTe.ulf msgctxt "" @@ -749,7 +749,7 @@ "OOO_ACTIONTEXT_96\n" "LngText.text" msgid "Stopping services" -msgstr "" +msgstr "Амаҵзурақәа раанкылара" #: ActionTe.ulf msgctxt "" @@ -757,7 +757,7 @@ "OOO_ACTIONTEXT_97\n" "LngText.text" msgid "Service: [1]" -msgstr "" +msgstr "Амаҵзура: [1]" #: ActionTe.ulf msgctxt "" @@ -765,7 +765,7 @@ "OOO_ACTIONTEXT_98\n" "LngText.text" msgid "Removing moved files" -msgstr "" +msgstr "Ииаго афаилқәа раныхра" #: ActionTe.ulf msgctxt "" @@ -773,7 +773,7 @@ "OOO_ACTIONTEXT_99\n" "LngText.text" msgid "File: [1], Directory: [9]" -msgstr "" +msgstr "Афаил: [1], Аҭаӡ: [9]" #: ActionTe.ulf msgctxt "" @@ -805,7 +805,7 @@ "OOO_ACTIONTEXT_103\n" "LngText.text" msgid "Feature: [1]" -msgstr "" +msgstr "Акомпонент: [1]" #: ActionTe.ulf msgctxt "" @@ -949,7 +949,7 @@ "OOO_ACTIONTEXT_121\n" "LngText.text" msgid "Writing INI file values" -msgstr "" +msgstr "Аҵакы INI фаил ахь аҭаҩра" #: ActionTe.ulf msgctxt "" @@ -957,7 +957,7 @@ "OOO_ACTIONTEXT_122\n" "LngText.text" msgid "File: [1], Section: [2], Key: [3], Value: [4]" -msgstr "" +msgstr "Афаил: [1], Асекциа: [2], Ацаҧха: [3], Аҵакы: [4]" #: ActionTe.ulf msgctxt "" @@ -981,7 +981,7 @@ "OOO_CONTROL_3\n" "LngText.text" msgid "Cancel" -msgstr "" +msgstr "Аҟәыхра" #: Control.ulf msgctxt "" @@ -989,7 +989,7 @@ "OOO_CONTROL_5\n" "LngText.text" msgid "&Look in:" -msgstr "" +msgstr "&Аҭаӡ:" #: Control.ulf msgctxt "" @@ -1013,7 +1013,7 @@ "OOO_CONTROL_9\n" "LngText.text" msgid "Create new folder|" -msgstr "" +msgstr "Иаҧҵатәуп аҭаӡ ҿыц" #: Control.ulf msgctxt "" @@ -1021,7 +1021,7 @@ "OOO_CONTROL_10\n" "LngText.text" msgid "OK" -msgstr "" +msgstr "OK" #: Control.ulf msgctxt "" @@ -1029,7 +1029,7 @@ "OOO_CONTROL_12\n" "LngText.text" msgid "&Folder name:" -msgstr "" +msgstr "&Аҭаӡ ахьӡ:" #: Control.ulf msgctxt "" @@ -1045,7 +1045,7 @@ "OOO_CONTROL_14\n" "LngText.text" msgid "< &Back" -msgstr "" +msgstr "< Шьҭахьҟа" #: Control.ulf msgctxt "" @@ -1053,7 +1053,7 @@ "OOO_CONTROL_17\n" "LngText.text" msgid "&Change..." -msgstr "" +msgstr "Иҧсахтәуп..." #: Control.ulf msgctxt "" @@ -1061,7 +1061,7 @@ "OOO_CONTROL_18\n" "LngText.text" msgid "Cancel" -msgstr "" +msgstr "Аҟәыхра" #: Control.ulf msgctxt "" @@ -1093,7 +1093,7 @@ "OOO_CONTROL_22\n" "LngText.text" msgid "&Install" -msgstr "" +msgstr "Иқәыргылатәуп" #: Control.ulf msgctxt "" @@ -1109,7 +1109,7 @@ "OOO_CONTROL_24\n" "LngText.text" msgid "< &Back" -msgstr "" +msgstr "< Шьҭахьҟа" #: Control.ulf msgctxt "" @@ -1117,7 +1117,7 @@ "OOO_CONTROL_25\n" "LngText.text" msgid "Cancel" -msgstr "" +msgstr "Аҟәыхра" #: Control.ulf msgctxt "" @@ -1125,7 +1125,7 @@ "OOO_CONTROL_26\n" "LngText.text" msgid "&Next >" -msgstr "" +msgstr "Анаҩс >" #: Control.ulf msgctxt "" @@ -1149,7 +1149,7 @@ "OOO_CONTROL_29\n" "LngText.text" msgid "&No" -msgstr "" +msgstr "Мап" #: Control.ulf msgctxt "" @@ -1165,7 +1165,7 @@ "OOO_CONTROL_31\n" "LngText.text" msgid "&Yes" -msgstr "" +msgstr "Ааи" #: Control.ulf msgctxt "" @@ -1173,7 +1173,7 @@ "OOO_CONTROL_32\n" "LngText.text" msgid "< &Back" -msgstr "" +msgstr "< Шьҭахьҟа" #: Control.ulf msgctxt "" @@ -1181,7 +1181,7 @@ "OOO_CONTROL_35\n" "LngText.text" msgid "Cancel" -msgstr "" +msgstr "Аҟәыхра" #: Control.ulf msgctxt "" @@ -1189,7 +1189,7 @@ "OOO_CONTROL_36\n" "LngText.text" msgid "{\\Tahoma8}{80}" -msgstr "" +msgstr "{\\Tahoma8}{80}" #: Control.ulf msgctxt "" @@ -1205,7 +1205,7 @@ "OOO_CONTROL_38\n" "LngText.text" msgid "Please enter your information." -msgstr "" +msgstr "Иҭажәгал аинформациа." #: Control.ulf msgctxt "" @@ -1213,7 +1213,7 @@ "OOO_CONTROL_39\n" "LngText.text" msgid "Install this application for:" -msgstr "" +msgstr "Иқәыргылатәуп ари апрограмма:" #: Control.ulf msgctxt "" @@ -1221,7 +1221,7 @@ "OOO_CONTROL_40\n" "LngText.text" msgid "{&MSSansBold8}User Information" -msgstr "" +msgstr "{&MSSansBold8}User Information" #: Control.ulf msgctxt "" @@ -1229,7 +1229,7 @@ "OOO_CONTROL_41\n" "LngText.text" msgid "{\\Tahoma8}{50}" -msgstr "" +msgstr "{\\Tahoma8}{50}" #: Control.ulf msgctxt "" @@ -1237,7 +1237,7 @@ "OOO_CONTROL_42\n" "LngText.text" msgid "&User Name:" -msgstr "" +msgstr "Ахархәаҩ ихьӡ:" #: Control.ulf msgctxt "" @@ -1245,7 +1245,7 @@ "OOO_CONTROL_43\n" "LngText.text" msgid "&Next >" -msgstr "" +msgstr "Анаҩс >" #: Control.ulf msgctxt "" @@ -1253,7 +1253,7 @@ "OOO_CONTROL_46\n" "LngText.text" msgid "< &Back" -msgstr "" +msgstr "< Шьҭахьҟа" #: Control.ulf msgctxt "" @@ -1261,7 +1261,7 @@ "OOO_CONTROL_49\n" "LngText.text" msgid "Cancel" -msgstr "" +msgstr "Аҟәыхра" #: Control.ulf msgctxt "" @@ -1269,7 +1269,7 @@ "OOO_CONTROL_50\n" "LngText.text" msgid "&Change..." -msgstr "" +msgstr "Иҧсахтәуп..." #: Control.ulf msgctxt "" @@ -1317,7 +1317,7 @@ "OOO_CONTROL_56\n" "LngText.text" msgid "&Help" -msgstr "" +msgstr "Аилыркаага" #: Control.ulf msgctxt "" @@ -1349,7 +1349,7 @@ "OOO_CONTROL_60\n" "LngText.text" msgid "&Next >" -msgstr "" +msgstr "Анаҩс >" #: Control.ulf msgctxt "" @@ -1357,7 +1357,7 @@ "OOO_CONTROL_61\n" "LngText.text" msgid "Feature size" -msgstr "" +msgstr "Акомпонент ашәагаа" #: Control.ulf msgctxt "" @@ -1381,7 +1381,7 @@ "OOO_CONTROL_66\n" "LngText.text" msgid "Will not be installed." -msgstr "" +msgstr "Иқәыргылахаӡом." #: Control.ulf msgctxt "" @@ -1429,7 +1429,7 @@ "OOO_CONTROL_72\n" "LngText.text" msgid "OK" -msgstr "" +msgstr "OK" #: Control.ulf msgctxt "" @@ -1445,7 +1445,7 @@ "OOO_CONTROL_84\n" "LngText.text" msgid "< &Back" -msgstr "" +msgstr "< Шьҭахьҟа" #: Control.ulf msgctxt "" @@ -1453,7 +1453,7 @@ "OOO_CONTROL_87\n" "LngText.text" msgid "Cancel" -msgstr "" +msgstr "Аҟәыхра" #: Control.ulf msgctxt "" @@ -1461,7 +1461,7 @@ "OOO_CONTROL_88\n" "LngText.text" msgid "&Change..." -msgstr "" +msgstr "Иҧсахтәуп..." #: Control.ulf msgctxt "" @@ -1485,7 +1485,7 @@ "OOO_CONTROL_91\n" "LngText.text" msgid "[INSTALLDIR]" -msgstr "" +msgstr "[INSTALLDIR]" #: Control.ulf msgctxt "" @@ -1501,7 +1501,7 @@ "OOO_CONTROL_93\n" "LngText.text" msgid "&Next >" -msgstr "" +msgstr "Анаҩс >" #: Control.ulf msgctxt "" @@ -1533,7 +1533,7 @@ "OOO_CONTROL_100\n" "LngText.text" msgid "OK" -msgstr "" +msgstr "OK" #: Control.ulf msgctxt "" @@ -1565,7 +1565,7 @@ "OOO_CONTROL_106\n" "LngText.text" msgid "&Exit" -msgstr "" +msgstr "Аҭыҵра" #: Control.ulf msgctxt "" @@ -1581,7 +1581,7 @@ "OOO_CONTROL_108\n" "LngText.text" msgid "&Retry" -msgstr "" +msgstr "Еиҭаҟаҵатәуп" #: Control.ulf msgctxt "" @@ -1589,7 +1589,7 @@ "OOO_CONTROL_111\n" "LngText.text" msgid "Cancel" -msgstr "" +msgstr "Аҟәыхра" #: Control.ulf msgctxt "" @@ -1597,7 +1597,7 @@ "OOO_CONTROL_113\n" "LngText.text" msgid "&Look in:" -msgstr "" +msgstr "&Аҭаӡ:" #: Control.ulf msgctxt "" @@ -1621,7 +1621,7 @@ "OOO_CONTROL_117\n" "LngText.text" msgid "Create New Folder|" -msgstr "" +msgstr "Иаҧҵатәуп аҭаӡ ҿыц|" #: Control.ulf msgctxt "" @@ -1629,7 +1629,7 @@ "OOO_CONTROL_118\n" "LngText.text" msgid "OK" -msgstr "" +msgstr "OK" #: Control.ulf msgctxt "" @@ -1637,7 +1637,7 @@ "OOO_CONTROL_120\n" "LngText.text" msgid "&Folder name:" -msgstr "" +msgstr "&Аҭаӡ ахьӡ:" #: Control.ulf msgctxt "" @@ -1653,7 +1653,7 @@ "OOO_CONTROL_122\n" "LngText.text" msgid "< &Back" -msgstr "" +msgstr "< Шьҭахьҟа" #: Control.ulf msgctxt "" @@ -1661,7 +1661,7 @@ "OOO_CONTROL_123\n" "LngText.text" msgid "Cancel" -msgstr "" +msgstr "Аҟәыхра" #: Control.ulf msgctxt "" @@ -1677,7 +1677,7 @@ "OOO_CONTROL_125\n" "LngText.text" msgid "&Next >" -msgstr "" +msgstr "Анаҩс >" #: Control.ulf msgctxt "" @@ -1701,7 +1701,7 @@ "OOO_CONTROL_128\n" "LngText.text" msgid "< &Back" -msgstr "" +msgstr "< Шьҭахьҟа" #: Control.ulf msgctxt "" @@ -1709,7 +1709,7 @@ "OOO_CONTROL_131\n" "LngText.text" msgid "Cancel" -msgstr "" +msgstr "Аҟәыхра" #: Control.ulf msgctxt "" @@ -1725,7 +1725,7 @@ "OOO_CONTROL_133\n" "LngText.text" msgid "{&MSSansBold8}License Agreement" -msgstr "" +msgstr "{&MSSansBold8} Алицензиатә еиқәшаҳаҭра" #: Control.ulf msgctxt "" @@ -1733,7 +1733,7 @@ "OOO_CONTROL_134\n" "LngText.text" msgid "&Next >" -msgstr "" +msgstr "Анаҩс >" #: Control.ulf msgctxt "" @@ -1741,7 +1741,7 @@ "OOO_CONTROL_135\n" "LngText.text" msgid "< &Back" -msgstr "" +msgstr "< Шьҭахьҟа" #: Control.ulf msgctxt "" @@ -1749,7 +1749,7 @@ "OOO_CONTROL_138\n" "LngText.text" msgid "Cancel" -msgstr "" +msgstr "Аҟәыхра" #: Control.ulf msgctxt "" @@ -1773,7 +1773,7 @@ "OOO_CONTROL_141\n" "LngText.text" msgid "&Next >" -msgstr "" +msgstr "Анаҩс >" #: Control.ulf msgctxt "" @@ -1805,7 +1805,7 @@ "OOO_CONTROL_146\n" "LngText.text" msgid "< &Back" -msgstr "" +msgstr "< Шьҭахьҟа" #: Control.ulf msgctxt "" @@ -1813,7 +1813,7 @@ "OOO_CONTROL_147\n" "LngText.text" msgid "Cancel" -msgstr "" +msgstr "Аҟәыхра" #: Control.ulf msgctxt "" @@ -1821,7 +1821,7 @@ "OOO_CONTROL_148\n" "LngText.text" msgid "&Next >" -msgstr "" +msgstr "Анаҩс >" #: Control.ulf msgctxt "" @@ -1869,7 +1869,7 @@ "OOO_CONTROL_156\n" "LngText.text" msgid "{120}{70}{70}{70}{70}" -msgstr "" +msgstr "{120}{70}{70}{70}{70}" #: Control.ulf msgctxt "" @@ -1877,7 +1877,7 @@ "OOO_CONTROL_157\n" "LngText.text" msgid "OK" -msgstr "" +msgstr "OK" #: Control.ulf msgctxt "" @@ -1885,7 +1885,7 @@ "OOO_CONTROL_158\n" "LngText.text" msgid "< &Back" -msgstr "" +msgstr "< Шьҭахьҟа" #: Control.ulf msgctxt "" @@ -1893,7 +1893,7 @@ "OOO_CONTROL_159\n" "LngText.text" msgid "Cancel" -msgstr "" +msgstr "Аҟәыхра" #: Control.ulf msgctxt "" @@ -1901,7 +1901,7 @@ "OOO_CONTROL_160\n" "LngText.text" msgid "&Update >" -msgstr "" +msgstr "Ирҿыцтәуп >" #: Control.ulf msgctxt "" @@ -1925,7 +1925,7 @@ "OOO_CONTROL_163\n" "LngText.text" msgid "< &Back" -msgstr "" +msgstr "< Шьҭахьҟа" #: Control.ulf msgctxt "" @@ -1933,7 +1933,7 @@ "OOO_CONTROL_166\n" "LngText.text" msgid "Cancel" -msgstr "" +msgstr "Аҟәыхра" #: Control.ulf msgctxt "" @@ -1941,7 +1941,7 @@ "OOO_CONTROL_167\n" "LngText.text" msgid "The wizard is ready to begin installation." -msgstr "" +msgstr "Азҟаза азхиоуп ақәыргылара алагара." #: Control.ulf msgctxt "" @@ -1949,7 +1949,7 @@ "OOO_CONTROL_168\n" "LngText.text" msgid "Click Install to begin the installation." -msgstr "" +msgstr "Ақәыргылара алагараз, шәақәыӷәӷәа «Иқәыргылатәуп». " #: Control.ulf msgctxt "" @@ -1989,7 +1989,7 @@ "OOO_CONTROL_173\n" "LngText.text" msgid "&Install" -msgstr "" +msgstr "Иқәыргылатәуп" #: Control.ulf msgctxt "" @@ -1997,7 +1997,7 @@ "OOO_CONTROL_174\n" "LngText.text" msgid "< &Back" -msgstr "" +msgstr "< Шьҭахьҟа" #: Control.ulf msgctxt "" @@ -2005,7 +2005,7 @@ "OOO_CONTROL_177\n" "LngText.text" msgid "Cancel" -msgstr "" +msgstr "Аҟәыхра" #: Control.ulf msgctxt "" @@ -2045,7 +2045,7 @@ "OOO_CONTROL_182\n" "LngText.text" msgid "&Remove" -msgstr "" +msgstr "Ианыхтәуп" #: Control.ulf msgctxt "" @@ -2053,7 +2053,7 @@ "OOO_CONTROL_183\n" "LngText.text" msgid "< &Back" -msgstr "" +msgstr "< Шьҭахьҟа" #: Control.ulf msgctxt "" @@ -2061,7 +2061,7 @@ "OOO_CONTROL_184\n" "LngText.text" msgid "Cancel" -msgstr "" +msgstr "Аҟәыхра" #: Control.ulf msgctxt "" @@ -2069,7 +2069,7 @@ "OOO_CONTROL_185\n" "LngText.text" msgid "&Finish" -msgstr "" +msgstr "Ихиоуп" #: Control.ulf msgctxt "" @@ -2125,7 +2125,7 @@ "OOO_CONTROL_192\n" "LngText.text" msgid "< &Back" -msgstr "" +msgstr "< Шьҭахьҟа" #: Control.ulf msgctxt "" @@ -2133,7 +2133,7 @@ "OOO_CONTROL_193\n" "LngText.text" msgid "Cancel" -msgstr "" +msgstr "Аҟәыхра" #: Control.ulf msgctxt "" @@ -2141,7 +2141,7 @@ "OOO_CONTROL_197\n" "LngText.text" msgid "&Finish" -msgstr "" +msgstr "Ихиоуп" #: Control.ulf msgctxt "" @@ -2173,7 +2173,7 @@ "OOO_CONTROL_204\n" "LngText.text" msgid "&Abort" -msgstr "" +msgstr "Еиҧҟьатәуп" #: Control.ulf msgctxt "" @@ -2181,7 +2181,7 @@ "OOO_CONTROL_205\n" "LngText.text" msgid "&Cancel" -msgstr "" +msgstr "Аҟәыхра" #: Control.ulf msgctxt "" @@ -2205,7 +2205,7 @@ "OOO_CONTROL_208\n" "LngText.text" msgid "&No" -msgstr "" +msgstr "Мап" #: Control.ulf msgctxt "" @@ -2213,7 +2213,7 @@ "OOO_CONTROL_209\n" "LngText.text" msgid "&OK" -msgstr "" +msgstr "ОК" #: Control.ulf msgctxt "" @@ -2221,7 +2221,7 @@ "OOO_CONTROL_210\n" "LngText.text" msgid "&Retry" -msgstr "" +msgstr "Еиҭаҟаҵатәуп" #: Control.ulf msgctxt "" @@ -2229,7 +2229,7 @@ "OOO_CONTROL_211\n" "LngText.text" msgid "&Yes" -msgstr "" +msgstr "Ааи" #: Control.ulf msgctxt "" @@ -2237,7 +2237,7 @@ "OOO_CONTROL_214\n" "LngText.text" msgid "< &Back" -msgstr "" +msgstr "< Шьҭахьҟа" #: Control.ulf msgctxt "" @@ -2245,7 +2245,7 @@ "OOO_CONTROL_215\n" "LngText.text" msgid "Cancel" -msgstr "" +msgstr "Аҟәыхра" #: Control.ulf msgctxt "" @@ -2253,7 +2253,7 @@ "OOO_CONTROL_216\n" "LngText.text" msgid "&Next >" -msgstr "" +msgstr "Анаҩс >" #: Control.ulf msgctxt "" @@ -2277,7 +2277,7 @@ "OOO_CONTROL_219\n" "LngText.text" msgid "< &Back" -msgstr "" +msgstr "< Шьҭахьҟа" #: Control.ulf msgctxt "" @@ -2285,7 +2285,7 @@ "OOO_CONTROL_220\n" "LngText.text" msgid "Cancel" -msgstr "" +msgstr "Аҟәыхра" #: Control.ulf msgctxt "" @@ -2293,7 +2293,7 @@ "OOO_CONTROL_221\n" "LngText.text" msgid "&Finish" -msgstr "" +msgstr "Ихиоуп" #: Control.ulf msgctxt "" @@ -2349,7 +2349,7 @@ "OOO_CONTROL_228\n" "LngText.text" msgid "Progress done" -msgstr "" +msgstr "Ихыркәшоуп" #: Control.ulf msgctxt "" @@ -2357,7 +2357,7 @@ "OOO_CONTROL_230\n" "LngText.text" msgid "< &Back" -msgstr "" +msgstr "< Шьҭахьҟа" #: Control.ulf msgctxt "" @@ -2365,7 +2365,7 @@ "OOO_CONTROL_233\n" "LngText.text" msgid "Cancel" -msgstr "" +msgstr "Аҟәыхра" #: Control.ulf msgctxt "" @@ -2421,7 +2421,7 @@ "OOO_CONTROL_240\n" "LngText.text" msgid "Sec." -msgstr "" +msgstr "сек." #: Control.ulf msgctxt "" @@ -2429,7 +2429,7 @@ "OOO_CONTROL_241\n" "LngText.text" msgid "Status:" -msgstr "" +msgstr "Аҭагылазаашьа:" #: Control.ulf msgctxt "" @@ -2437,7 +2437,7 @@ "OOO_CONTROL_242\n" "LngText.text" msgid "&Next >" -msgstr "" +msgstr "Анаҩс >" #: Control.ulf msgctxt "" @@ -2453,7 +2453,7 @@ "OOO_CONTROL_245\n" "LngText.text" msgid "< &Back" -msgstr "" +msgstr "< Шьҭахьҟа" #: Control.ulf msgctxt "" @@ -2461,7 +2461,7 @@ "OOO_CONTROL_246\n" "LngText.text" msgid "Cancel" -msgstr "" +msgstr "Аҟәыхра" #: Control.ulf msgctxt "" @@ -2469,7 +2469,7 @@ "OOO_CONTROL_247\n" "LngText.text" msgid "&Next >" -msgstr "" +msgstr "Анаҩс >" #: Control.ulf msgctxt "" @@ -2501,7 +2501,7 @@ "OOO_CONTROL_251\n" "LngText.text" msgid "< &Back" -msgstr "" +msgstr "< Шьҭахьҟа" #: Control.ulf msgctxt "" @@ -2509,7 +2509,7 @@ "OOO_CONTROL_254\n" "LngText.text" msgid "Cancel" -msgstr "" +msgstr "Аҟәыхра" #: Control.ulf msgctxt "" @@ -2541,7 +2541,7 @@ "OOO_CONTROL_258\n" "LngText.text" msgid "Please select a setup type." -msgstr "" +msgstr "Иалышәх ақәыргылара атип." #: Control.ulf msgctxt "" @@ -2549,7 +2549,7 @@ "OOO_CONTROL_259\n" "LngText.text" msgid "{&MSSansBold8}Setup Type" -msgstr "" +msgstr "{&MSSansBold8} Ақәыргылара атип" #: Control.ulf msgctxt "" @@ -2557,7 +2557,7 @@ "OOO_CONTROL_260\n" "LngText.text" msgid "&Next >" -msgstr "" +msgstr "Анаҩс >" #: Control.ulf msgctxt "" @@ -2565,7 +2565,7 @@ "OOO_CONTROL_262\n" "LngText.text" msgid "< &Back" -msgstr "" +msgstr "< Шьҭахьҟа" #: Control.ulf msgctxt "" @@ -2573,7 +2573,7 @@ "OOO_CONTROL_265\n" "LngText.text" msgid "Cancel" -msgstr "" +msgstr "Аҟәыхра" #: Control.ulf msgctxt "" @@ -2581,7 +2581,7 @@ "OOO_CONTROL_266\n" "LngText.text" msgid "&Next >" -msgstr "" +msgstr "Анаҩс >" #: Control.ulf msgctxt "" @@ -2589,7 +2589,7 @@ "OOO_CONTROL_269\n" "LngText.text" msgid "Repair or remove the program." -msgstr "" +msgstr "Еиҭашьақәыргылатәуп ма ианыхтәуп апрограмма." #: Control.ulf msgctxt "" @@ -2597,7 +2597,7 @@ "OOO_CONTROL_270\n" "LngText.text" msgid "&Microsoft Word Documents" -msgstr "" +msgstr "Microsoft Word Адокументқәа" #: Control.ulf msgctxt "" @@ -2605,7 +2605,7 @@ "OOO_CONTROL_271\n" "LngText.text" msgid "Microsoft &Excel Spreadsheets" -msgstr "" +msgstr "Microsoft &Excel Аелектронтә таблицақәа" #: Control.ulf msgctxt "" @@ -2613,7 +2613,7 @@ "OOO_CONTROL_272\n" "LngText.text" msgid "Microsoft Po&werPoint Presentations" -msgstr "" +msgstr "Microsoft PowerPoint апрезентациақәа" #: Control.ulf msgctxt "" @@ -2621,7 +2621,7 @@ "OOO_CONTROL_273\n" "LngText.text" msgid "Microsoft &Visio Documents" -msgstr "" +msgstr "Microsoft &Visio Адокументқәа" #: Control.ulf msgctxt "" @@ -2645,7 +2645,7 @@ "OOO_CONTROL_278\n" "LngText.text" msgid "{&MSSansBold8}File Type" -msgstr "" +msgstr "{&MSSansBold8}Афаилқәа ртипқәа" #: Control.ulf msgctxt "" @@ -2669,7 +2669,7 @@ "OOO_CONTROL_302\n" "LngText.text" msgid "A newer [DEFINEDPRODUCT] [DEFINEDVERSION] has been found." -msgstr "" +msgstr "Иҧшаан иаҳа иҿыцу [DEFINEDPRODUCT] [DEFINEDVERSION] аверсиа." #: Control.ulf msgctxt "" @@ -2677,7 +2677,7 @@ "OOO_CONTROL_303\n" "LngText.text" msgid "The version specified in the folder below cannot be updated." -msgstr "" +msgstr "Иарбоу аверсиа арҿыцра ауам." #: Control.ulf msgctxt "" @@ -2685,7 +2685,7 @@ "OOO_CONTROL_304\n" "LngText.text" msgid "Check the destination folder." -msgstr "" +msgstr "Игәашәҭ иалху аҭаӡ." #: Control.ulf msgctxt "" @@ -2701,7 +2701,7 @@ "OOO_CONTROL_306\n" "LngText.text" msgid "To select a different version, click " -msgstr "" +msgstr "Даҽа версиак алхразы, шәақәыӷәӷәа " #: Control.ulf msgctxt "" @@ -2709,7 +2709,7 @@ "OOO_CONTROL_307\n" "LngText.text" msgid "To select a different folder, click " -msgstr "" +msgstr "Даҽа ҭаӡк алхразы, шәақәыӷәӷәа " #: Control.ulf msgctxt "" @@ -2717,7 +2717,7 @@ "OOO_CONTROL_308\n" "LngText.text" msgid "Install [ProductName] to:" -msgstr "" +msgstr "Иқәыргылатәуп [ProductName] аҟны:" #: Control.ulf msgctxt "" @@ -2781,7 +2781,7 @@ "OOO_CONTROL_324\n" "LngText.text" msgid "{&MSSansBold8}Files in Use" -msgstr "" +msgstr "{&MSSansBold8}Ахархәара змоу (иҭацәым) афаилқәа" #: Control.ulf msgctxt "" @@ -2789,7 +2789,7 @@ "OOO_CONTROL_325\n" "LngText.text" msgid "Cancel" -msgstr "" +msgstr "Аҟәыхра" #: Control.ulf msgctxt "" @@ -2797,7 +2797,7 @@ "OOO_CONTROL_326\n" "LngText.text" msgid "OK" -msgstr "" +msgstr "OK" #: CustomAc.ulf msgctxt "" @@ -2813,7 +2813,7 @@ "OOO_CUSTOMACTION_2\n" "LngText.text" msgid "The same version of this product is already installed." -msgstr "" +msgstr "Ари аверсиа ықәыргылоуп." #: CustomAc.ulf msgctxt "" @@ -2829,7 +2829,7 @@ "OOO_ERROR_1\n" "LngText.text" msgid "{{Fatal error: }}" -msgstr "" +msgstr "{{Зыриашара амуа агха: }}" #: Error.ulf msgctxt "" @@ -2837,7 +2837,7 @@ "OOO_ERROR_2\n" "LngText.text" msgid "Error [1]." -msgstr "" +msgstr "Агха [1]." #: Error.ulf msgctxt "" @@ -2845,7 +2845,7 @@ "OOO_ERROR_3\n" "LngText.text" msgid "Warning [1]." -msgstr "" +msgstr "Агәаҽанҵара [1]." #: Error.ulf msgctxt "" @@ -2853,7 +2853,7 @@ "OOO_ERROR_4\n" "LngText.text" msgid "Info [1]." -msgstr "" +msgstr "Аинформациа [1]." #: Error.ulf msgctxt "" @@ -2861,7 +2861,7 @@ "OOO_ERROR_5\n" "LngText.text" msgid "Internal Error [1]. [2]{, [3]}{, [4]}" -msgstr "" +msgstr "Аҩныҵҟатәи агха [1]. [2]{, [3]}{, [4]}" #: Error.ulf msgctxt "" @@ -2869,7 +2869,7 @@ "OOO_ERROR_6\n" "LngText.text" msgid "{{Disk full: }}" -msgstr "" +msgstr "{{Асанҭыр ҭәуп: }}" #: Error.ulf msgctxt "" @@ -2877,7 +2877,7 @@ "OOO_ERROR_7\n" "LngText.text" msgid "Action [Time]: [1]. [2]" -msgstr "" +msgstr "Action [Time]: [1]. [2]" #: Error.ulf msgctxt "" @@ -2885,7 +2885,7 @@ "OOO_ERROR_8\n" "LngText.text" msgid "[ProductName]" -msgstr "" +msgstr "[ProductName]" #: Error.ulf msgctxt "" @@ -2893,7 +2893,7 @@ "OOO_ERROR_9\n" "LngText.text" msgid "{[2]}{, [3]}{, [4]}" -msgstr "" +msgstr "{[2]}{, [3]}{, [4]}" #: Error.ulf msgctxt "" @@ -2981,7 +2981,7 @@ "OOO_ERROR_20\n" "LngText.text" msgid "Gathering required information..." -msgstr "" +msgstr "Ақәыргыларазы иаҭаху аинформациа аизгара..." #: Error.ulf msgctxt "" @@ -3221,7 +3221,7 @@ "OOO_ERROR_50\n" "LngText.text" msgid "[2] is not a valid short file name." -msgstr "" +msgstr "Ииашам афаил икьаҿу ахьӡ [2]" #: Error.ulf msgctxt "" @@ -3909,7 +3909,7 @@ "OOO_ARPURLUPDATEINFOTEMPLATE\n" "LngText.text" msgid "http://www.libreoffice.org/download" -msgstr "" +msgstr "http://www.libreoffice.org/download" #: Property.ulf msgctxt "" @@ -3917,7 +3917,7 @@ "OOO_STR_NEW_DISPLAY_NAME\n" "LngText.text" msgid "~New" -msgstr "" +msgstr "Иаҧҵатәуп" #: Property.ulf msgctxt "" @@ -3925,7 +3925,7 @@ "OOO_STR_EDIT\n" "LngText.text" msgid "~Edit" -msgstr "" +msgstr "Ариашара" #: Property.ulf msgctxt "" @@ -4461,7 +4461,7 @@ "OOO_UITEXT_48\n" "LngText.text" msgid "Disk Size" -msgstr "" +msgstr "Асанҭыр ашәагаа" #: UIText.ulf msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/librelogo/source/pythonpath.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/librelogo/source/pythonpath.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/librelogo/source/pythonpath.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/librelogo/source/pythonpath.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n" -"PO-Revision-Date: 2017-09-18 11:08+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-12-12 10:11+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1505732885.000000\n" +"X-POOTLE-MTIME: 1513073498.000000\n" #: LibreLogo_en_US.properties msgctxt "" @@ -21,7 +21,7 @@ "FORWARD\n" "property.text" msgid "forward|fd" -msgstr "" +msgstr "ҧхьаҟа|ахь" #: LibreLogo_en_US.properties msgctxt "" @@ -29,7 +29,7 @@ "BACKWARD\n" "property.text" msgid "back|bk" -msgstr "" +msgstr "шьҭахьҟа|ахь" #: LibreLogo_en_US.properties msgctxt "" @@ -69,7 +69,7 @@ "HOME\n" "property.text" msgid "home" -msgstr "" +msgstr "алагамҭа" #: LibreLogo_en_US.properties msgctxt "" @@ -77,7 +77,7 @@ "POINT\n" "property.text" msgid "point" -msgstr "" +msgstr "акәаҧ" #: LibreLogo_en_US.properties msgctxt "" @@ -85,7 +85,7 @@ "CIRCLE\n" "property.text" msgid "circle" -msgstr "" +msgstr "агьежь" #: LibreLogo_en_US.properties msgctxt "" @@ -93,7 +93,7 @@ "ELLIPSE\n" "property.text" msgid "ellipse" -msgstr "" +msgstr "аеллипс" #: LibreLogo_en_US.properties msgctxt "" @@ -101,7 +101,7 @@ "SQUARE\n" "property.text" msgid "square" -msgstr "" +msgstr "аквадрат" #: LibreLogo_en_US.properties msgctxt "" @@ -109,7 +109,7 @@ "RECTANGLE\n" "property.text" msgid "rectangle" -msgstr "" +msgstr "акәаҭаиаша" #: LibreLogo_en_US.properties msgctxt "" @@ -133,7 +133,7 @@ "ANY\n" "property.text" msgid "any" -msgstr "" +msgstr "иарбанзаалакь" #: LibreLogo_en_US.properties msgctxt "" @@ -149,7 +149,7 @@ "PENSTYLE\n" "property.text" msgid "penstyle|linestyle" -msgstr "" +msgstr "акалам_астиль|аҵәаӷәа_астиль" #: LibreLogo_en_US.properties msgctxt "" @@ -173,7 +173,7 @@ "NONE\n" "property.text" msgid "none" -msgstr "" +msgstr "мап" #: LibreLogo_en_US.properties msgctxt "" @@ -317,7 +317,7 @@ "ITALIC\n" "property.text" msgid "italic" -msgstr "" +msgstr "акурсив" #: LibreLogo_en_US.properties msgctxt "" @@ -333,7 +333,7 @@ "NORMAL\n" "property.text" msgid "normal" -msgstr "" +msgstr "инормалтәу" #: LibreLogo_en_US.properties msgctxt "" @@ -357,7 +357,7 @@ "TEXT\n" "property.text" msgid "text" -msgstr "" +msgstr "атеқст" #: LibreLogo_en_US.properties msgctxt "" @@ -397,7 +397,7 @@ "PAGESIZE\n" "property.text" msgid "pagesize" -msgstr "" +msgstr "адаҟьа_ашәагаа" #: LibreLogo_en_US.properties msgctxt "" @@ -413,7 +413,7 @@ "TO\n" "property.text" msgid "to" -msgstr "" +msgstr "ахь" #: LibreLogo_en_US.properties msgctxt "" @@ -421,7 +421,7 @@ "END\n" "property.text" msgid "end" -msgstr "" +msgstr "анҵәамҭа" #: LibreLogo_en_US.properties msgctxt "" @@ -429,7 +429,7 @@ "STOP\n" "property.text" msgid "stop" -msgstr "" +msgstr "аанкылара" #: LibreLogo_en_US.properties msgctxt "" @@ -437,7 +437,7 @@ "REPEAT\n" "property.text" msgid "repeat|forever" -msgstr "" +msgstr "инагӡалатәуп|ҵыхәаҧҵәарада" #: LibreLogo_en_US.properties msgctxt "" @@ -453,7 +453,7 @@ "BREAK\n" "property.text" msgid "break" -msgstr "" +msgstr "иеиҧырҟьатәуп" #: LibreLogo_en_US.properties msgctxt "" @@ -501,7 +501,7 @@ "OUTPUT\n" "property.text" msgid "output" -msgstr "" +msgstr "аҭыгара" #: LibreLogo_en_US.properties msgctxt "" @@ -509,7 +509,7 @@ "LEFTSTRING\n" "property.text" msgid "“|‘" -msgstr "" +msgstr "“|‘" #: LibreLogo_en_US.properties msgctxt "" @@ -517,7 +517,7 @@ "RIGHTSTRING\n" "property.text" msgid "”|’" -msgstr "" +msgstr "“|‘" #: LibreLogo_en_US.properties msgctxt "" @@ -525,7 +525,7 @@ "TRUE\n" "property.text" msgid "true" -msgstr "" +msgstr "аиаша" #: LibreLogo_en_US.properties msgctxt "" @@ -533,7 +533,7 @@ "FALSE\n" "property.text" msgid "false" -msgstr "" +msgstr "амц" #: LibreLogo_en_US.properties msgctxt "" @@ -541,7 +541,7 @@ "NOT\n" "property.text" msgid "not" -msgstr "" +msgstr "акәӡам" #: LibreLogo_en_US.properties msgctxt "" @@ -557,7 +557,7 @@ "OR\n" "property.text" msgid "or" -msgstr "" +msgstr "ма" #: LibreLogo_en_US.properties msgctxt "" @@ -565,7 +565,7 @@ "INPUT\n" "property.text" msgid "input" -msgstr "" +msgstr "аҭагалара" #: LibreLogo_en_US.properties msgctxt "" @@ -573,7 +573,7 @@ "PRINT\n" "property.text" msgid "print" -msgstr "" +msgstr "акьыҧхьра" #: LibreLogo_en_US.properties msgctxt "" @@ -581,7 +581,7 @@ "SLEEP\n" "property.text" msgid "sleep" -msgstr "" +msgstr "иҧштәуп" #: LibreLogo_en_US.properties msgctxt "" @@ -589,7 +589,7 @@ "GLOBAL\n" "property.text" msgid "global" -msgstr "" +msgstr "азеиҧш" #: LibreLogo_en_US.properties msgctxt "" @@ -605,7 +605,7 @@ "INT\n" "property.text" msgid "int" -msgstr "" +msgstr "еибгоу" #: LibreLogo_en_US.properties msgctxt "" @@ -621,7 +621,7 @@ "STR\n" "property.text" msgid "str" -msgstr "" +msgstr "ацәаҳәа" #: LibreLogo_en_US.properties msgctxt "" @@ -629,7 +629,7 @@ "SQRT\n" "property.text" msgid "sqrt" -msgstr "" +msgstr "sqrt" #: LibreLogo_en_US.properties msgctxt "" @@ -637,7 +637,7 @@ "LOG10\n" "property.text" msgid "log10" -msgstr "" +msgstr "log10" #: LibreLogo_en_US.properties msgctxt "" @@ -645,7 +645,7 @@ "SIN\n" "property.text" msgid "sin" -msgstr "" +msgstr "sin" #: LibreLogo_en_US.properties msgctxt "" @@ -653,7 +653,7 @@ "COS\n" "property.text" msgid "cos" -msgstr "" +msgstr "cos" #: LibreLogo_en_US.properties msgctxt "" @@ -669,7 +669,7 @@ "ABS\n" "property.text" msgid "abs" -msgstr "" +msgstr "abs" #: LibreLogo_en_US.properties msgctxt "" @@ -693,7 +693,7 @@ "RANGE\n" "property.text" msgid "range" -msgstr "" +msgstr "адиапазон" #: LibreLogo_en_US.properties msgctxt "" @@ -701,7 +701,7 @@ "LIST\n" "property.text" msgid "list" -msgstr "" +msgstr "ахьӡынҵа" #: LibreLogo_en_US.properties msgctxt "" @@ -725,7 +725,7 @@ "RESUB\n" "property.text" msgid "sub" -msgstr "" +msgstr "sub" #: LibreLogo_en_US.properties msgctxt "" @@ -733,7 +733,7 @@ "RESEARCH\n" "property.text" msgid "search" -msgstr "" +msgstr "иҧшаатәуп" #: LibreLogo_en_US.properties msgctxt "" @@ -799,7 +799,7 @@ "MM\n" "property.text" msgid "mm" -msgstr "" +msgstr "мм" #: LibreLogo_en_US.properties msgctxt "" @@ -807,7 +807,7 @@ "CM\n" "property.text" msgid "cm" -msgstr "" +msgstr "см" #: LibreLogo_en_US.properties msgctxt "" @@ -815,7 +815,7 @@ "PT\n" "property.text" msgid "pt" -msgstr "" +msgstr "пт" #: LibreLogo_en_US.properties msgctxt "" @@ -823,7 +823,7 @@ "INCH\n" "property.text" msgid "in|\"" -msgstr "" +msgstr "диуим|\"" #: LibreLogo_en_US.properties msgctxt "" @@ -831,7 +831,7 @@ "INVISIBLE\n" "property.text" msgid "invisible" -msgstr "" +msgstr "иубарҭам" #: LibreLogo_en_US.properties msgctxt "" @@ -839,7 +839,7 @@ "BLACK\n" "property.text" msgid "black" -msgstr "" +msgstr "аиқәаҵәа" #: LibreLogo_en_US.properties msgctxt "" @@ -863,7 +863,7 @@ "WHITE\n" "property.text" msgid "white" -msgstr "" +msgstr "ашкәакәа" #: LibreLogo_en_US.properties msgctxt "" @@ -879,7 +879,7 @@ "RED\n" "property.text" msgid "red" -msgstr "" +msgstr "аҟаҧшь" #: LibreLogo_en_US.properties msgctxt "" @@ -1047,7 +1047,7 @@ "ERR_ZERODIVISION\n" "property.text" msgid "Division by zero." -msgstr "" +msgstr "Ноль ала ашара." #: LibreLogo_en_US.properties msgctxt "" @@ -1055,7 +1055,7 @@ "ERR_NAME\n" "property.text" msgid "Unknown name: “%s”." -msgstr "" +msgstr "Идырым ахьӡ: «%s»." #: LibreLogo_en_US.properties msgctxt "" @@ -1079,7 +1079,7 @@ "ERR_KEY\n" "property.text" msgid "Unknown element: %s" -msgstr "" +msgstr "Идырым аелемент: %s" #: LibreLogo_en_US.properties msgctxt "" @@ -1087,7 +1087,7 @@ "ERR_INDEX\n" "property.text" msgid "Index out of range." -msgstr "" +msgstr "Аиндекс адиапазон анҭыҵ." #: LibreLogo_en_US.properties msgctxt "" @@ -1095,7 +1095,7 @@ "ERR_STOP\n" "property.text" msgid "Program terminated:" -msgstr "" +msgstr "Апрограмма аанкылоуп:" #: LibreLogo_en_US.properties msgctxt "" @@ -1111,7 +1111,7 @@ "ERR_MEMORY\n" "property.text" msgid "not enough memory." -msgstr "" +msgstr "агәынкылара азхом. " #: LibreLogo_en_US.properties msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po 2017-12-12 17:45:07.000000000 +0000 @@ -3,16 +3,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: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2017-11-15 08:00+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510732836.000000\n" #: Drivers.xcu msgctxt "" @@ -21,4 +22,4 @@ "DriverTypeDisplayName\n" "value.text" msgid "MySQL Connector" -msgstr "" +msgstr "MySQL Connector" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/mysqlc/source.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/mysqlc/source.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/mysqlc/source.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/mysqlc/source.po 2017-12-12 17:45:07.000000000 +0000 @@ -3,16 +3,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: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2017-11-15 08:01+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510732861.000000\n" #: description.xml msgctxt "" @@ -20,7 +21,7 @@ "dispname\n" "description.text" msgid "MySQL Connector" -msgstr "" +msgstr "MySQL Connector" #: description.xml msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-07-19 15:50+0000\n" +"PO-Revision-Date: 2017-11-10 07:55+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500479431.000000\n" +"X-POOTLE-MTIME: 1510300535.000000\n" #: Options.xhp msgctxt "" @@ -29,7 +29,7 @@ "bm_id0503200917110375_scalc\n" "help.text" msgid "Solver for Nonlinear Problems;Options" -msgstr "" +msgstr "Иҵәаӷәатәым аҳасабтәқәа рыҳасабга;Апараметрқәа" #: Options.xhp msgctxt "" @@ -61,7 +61,7 @@ "par_id0503200917103771\n" "help.text" msgid "Learning Cycles" -msgstr "" +msgstr "Аитерациақәа рхыҧхьаӡара" #: Options.xhp msgctxt "" @@ -77,7 +77,7 @@ "par_id0503200917103732\n" "help.text" msgid "Variable Bounds Guessing" -msgstr "" +msgstr "Аҽеиҭакқәа рҳәаақәа рыҧшаара" #: Options.xhp msgctxt "" @@ -245,7 +245,7 @@ "par_id0603200910394216\n" "help.text" msgid "DE: Scaling Factor" -msgstr "" +msgstr "DE: Амасштабркра акоеффициент" #: Options.xhp msgctxt "" @@ -261,7 +261,7 @@ "par_id060320091039421\n" "help.text" msgid "PS: Constriction Coefficient" -msgstr "" +msgstr "PS: Аиҵацалара акоеффициент" #: Options.xhp msgctxt "" @@ -277,7 +277,7 @@ "par_id0603200910394222\n" "help.text" msgid "PS: Cognitive Constant" -msgstr "" +msgstr "PS: Акогнитивтә константа" #: Options.xhp msgctxt "" @@ -293,7 +293,7 @@ "par_id0603200910394292\n" "help.text" msgid "PS: Social Constant" -msgstr "" +msgstr "PS: Асоциалтә константа" #: Options.xhp msgctxt "" @@ -349,7 +349,7 @@ "tit\n" "help.text" msgid "Usage" -msgstr "" +msgstr "Ахархәара" #: Usage.xhp msgctxt "" @@ -357,7 +357,7 @@ "bm_id0603200910434044_scalc\n" "help.text" msgid "Solver for Nonlinear Problems;Usage" -msgstr "" +msgstr "Иҵәаӷәатәым аҳасабтәқәа рыҳасабга;Ахархәара" #: Usage.xhp msgctxt "" @@ -365,7 +365,7 @@ "hd_id0603200910430882\n" "help.text" msgid "Usage" -msgstr "" +msgstr "Ахархәара" #: Usage.xhp msgctxt "" @@ -397,7 +397,7 @@ "08\n" "help_section.text" msgid "Solver for Nonlinear Problems" -msgstr "" +msgstr "Иҵәаӷәатәым аҳасабтәқәа рыҳасабга" #: help.tree msgctxt "" @@ -405,4 +405,4 @@ "0816\n" "node.text" msgid "Solver for Nonlinear Problems" -msgstr "" +msgstr "Иҵәаӷәатәым аҳасабтәқәа рыҳасабга" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po 2017-12-12 17:45:07.000000000 +0000 @@ -3,16 +3,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: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2017-11-10 07:42+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510299736.000000\n" #: description.xml msgctxt "" @@ -20,7 +21,7 @@ "dispname\n" "description.text" msgid "Solver for Nonlinear Programming" -msgstr "" +msgstr "Иҵәаӷәатәым апрограммаркра азы аҳасабга" #: description.xml msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/nlpsolver/src/locale.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/nlpsolver/src/locale.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/nlpsolver/src/locale.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/nlpsolver/src/locale.po 2017-12-12 17:45:07.000000000 +0000 @@ -3,16 +3,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: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2017-11-10 07:51+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510300312.000000\n" #: NLPSolverCommon_en_US.properties msgctxt "" @@ -36,7 +37,7 @@ "NLPSolverCommon.Properties.LibrarySize\n" "property.text" msgid "Size of Library" -msgstr "" +msgstr "Абиблиотека ашәагаа" #: NLPSolverCommon_en_US.properties msgctxt "" @@ -44,7 +45,7 @@ "NLPSolverCommon.Properties.LearningCycles\n" "property.text" msgid "Learning Cycles" -msgstr "" +msgstr "Аитерациақәа рхыҧхьаӡара" #: NLPSolverCommon_en_US.properties msgctxt "" @@ -52,7 +53,7 @@ "NLPSolverCommon.Properties.GuessVariableRange\n" "property.text" msgid "Variable Bounds Guessing" -msgstr "" +msgstr "Аҽеиҭакқәа рҳәаақәа рыҧшаара" #: NLPSolverCommon_en_US.properties msgctxt "" @@ -116,7 +117,7 @@ "NLPSolverCommon.Properties.DEFactor\n" "property.text" msgid "DE: Scaling Factor (0-1.2)" -msgstr "" +msgstr "DE: Амасштабркра акоеффициент (0-1.2)" #: NLPSolverCommon_en_US.properties msgctxt "" @@ -132,7 +133,7 @@ "NLPSolverCommon.Properties.PSC1\n" "property.text" msgid "PS: Cognitive Constant" -msgstr "" +msgstr "PS: Акогнитивтә константа" #: NLPSolverCommon_en_US.properties msgctxt "" @@ -140,7 +141,7 @@ "NLPSolverCommon.Properties.PSC2\n" "property.text" msgid "PS: Social Constant" -msgstr "" +msgstr "PS: Асоциалтә константа" #: NLPSolverCommon_en_US.properties msgctxt "" @@ -148,7 +149,7 @@ "NLPSolverCommon.Properties.PSWeight\n" "property.text" msgid "PS: Constriction Coefficient" -msgstr "" +msgstr "PS: Аиҵацалара акоеффициент" #: NLPSolverCommon_en_US.properties msgctxt "" @@ -164,7 +165,7 @@ "NLPSolverStatusDialog.Dialog.Caption\n" "property.text" msgid "Solver Status" -msgstr "" +msgstr "Аҳасабга аҭагылазаашьа" #: NLPSolverStatusDialog_en_US.properties msgctxt "" @@ -172,7 +173,7 @@ "NLPSolverStatusDialog.Controls.lblSolution\n" "property.text" msgid "Current Solution:" -msgstr "" +msgstr "Уажәтәи аҳасабра:" #: NLPSolverStatusDialog_en_US.properties msgctxt "" @@ -180,7 +181,7 @@ "NLPSolverStatusDialog.Controls.lblIteration\n" "property.text" msgid "Iteration:" -msgstr "" +msgstr "Аитерациа" #: NLPSolverStatusDialog_en_US.properties msgctxt "" @@ -196,7 +197,7 @@ "NLPSolverStatusDialog.Controls.lblRuntime\n" "property.text" msgid "Runtime:" -msgstr "" +msgstr "Анагӡара аамҭа:" #: NLPSolverStatusDialog_en_US.properties msgctxt "" @@ -204,7 +205,7 @@ "NLPSolverStatusDialog.Controls.btnStop\n" "property.text" msgid "Stop" -msgstr "" +msgstr "Иаанкылатәуп" #: NLPSolverStatusDialog_en_US.properties msgctxt "" @@ -212,7 +213,7 @@ "NLPSolverStatusDialog.Controls.btnOK\n" "property.text" msgid "OK" -msgstr "" +msgstr "OK" #: NLPSolverStatusDialog_en_US.properties msgctxt "" @@ -220,7 +221,7 @@ "NLPSolverStatusDialog.Controls.btnContinue\n" "property.text" msgid "Continue" -msgstr "" +msgstr "Анаҩс" #: NLPSolverStatusDialog_en_US.properties msgctxt "" @@ -260,7 +261,7 @@ "NLPSolverStatusDialog.Time.Nanoseconds\n" "property.text" msgid "Nanoseconds" -msgstr "" +msgstr "Наносекундқәа" #: NLPSolverStatusDialog_en_US.properties msgctxt "" @@ -268,7 +269,7 @@ "NLPSolverStatusDialog.Time.Microseconds\n" "property.text" msgid "Microseconds" -msgstr "" +msgstr "Амикросекундқәа" #: NLPSolverStatusDialog_en_US.properties msgctxt "" @@ -276,7 +277,7 @@ "NLPSolverStatusDialog.Time.Milliseconds\n" "property.text" msgid "Milliseconds" -msgstr "" +msgstr "Амиллисекундқәа" #: NLPSolverStatusDialog_en_US.properties msgctxt "" @@ -284,7 +285,7 @@ "NLPSolverStatusDialog.Time.Second\n" "property.text" msgid "Second" -msgstr "" +msgstr "Асекунд" #: NLPSolverStatusDialog_en_US.properties msgctxt "" @@ -292,7 +293,7 @@ "NLPSolverStatusDialog.Time.Seconds\n" "property.text" msgid "Seconds" -msgstr "" +msgstr "Асекундқәа" #: NLPSolverStatusDialog_en_US.properties msgctxt "" @@ -300,7 +301,7 @@ "NLPSolverStatusDialog.Time.Minute\n" "property.text" msgid "Minute" -msgstr "" +msgstr "Аминуҭ" #: NLPSolverStatusDialog_en_US.properties msgctxt "" @@ -308,7 +309,7 @@ "NLPSolverStatusDialog.Time.Minutes\n" "property.text" msgid "Minutes" -msgstr "" +msgstr "Аминутқәа" #: NLPSolverStatusDialog_en_US.properties msgctxt "" @@ -316,7 +317,7 @@ "NLPSolverStatusDialog.Time.Hour\n" "property.text" msgid "Hour" -msgstr "" +msgstr "Асааҭ" #: NLPSolverStatusDialog_en_US.properties msgctxt "" @@ -324,7 +325,7 @@ "NLPSolverStatusDialog.Time.Hours\n" "property.text" msgid "Hours" -msgstr "" +msgstr "Асааҭқәа" #: NLPSolverStatusDialog_en_US.properties msgctxt "" @@ -332,7 +333,7 @@ "NLPSolverStatusDialog.Time.Day\n" "property.text" msgid "Day" -msgstr "" +msgstr "Амш" #: NLPSolverStatusDialog_en_US.properties msgctxt "" @@ -340,4 +341,4 @@ "NLPSolverStatusDialog.Time.Days\n" "property.text" msgid "Days" -msgstr "" +msgstr "Амшқәа" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-20 13:56+0200\n" -"PO-Revision-Date: 2017-07-21 18:53+0000\n" +"PO-Revision-Date: 2017-12-12 10:26+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500663207.000000\n" +"X-POOTLE-MTIME: 1513074379.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -22,7 +22,7 @@ "UIName\n" "value.text" msgid "Database Object" -msgstr "" +msgstr "Адырқәа рбаза аобиеқт" #: BaseWindowState.xcu msgctxt "" @@ -31,7 +31,7 @@ "UIName\n" "value.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: BaseWindowState.xcu msgctxt "" @@ -58,7 +58,7 @@ "UIName\n" "value.text" msgid "Form" -msgstr "" +msgstr "Аформа" #: BaseWindowState.xcu msgctxt "" @@ -175,7 +175,7 @@ "Label\n" "value.text" msgid "Delete" -msgstr "" +msgstr "Ианыхтәуп" #: BasicIDECommands.xcu msgctxt "" @@ -310,7 +310,7 @@ "Label\n" "value.text" msgid "Delete ~Record" -msgstr "" +msgstr "Ианыхтәуп анҵамҭа" #: BibliographyCommands.xcu msgctxt "" @@ -337,7 +337,7 @@ "Label\n" "value.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: BibliographyCommands.xcu msgctxt "" @@ -391,7 +391,7 @@ "Label\n" "value.text" msgid "Number Format Type" -msgstr "" +msgstr "Ахыҧхьаӡаратә формат атип" #: CalcCommands.xcu msgctxt "" @@ -418,7 +418,7 @@ "Label\n" "value.text" msgid "Clear ~Direct Formatting" -msgstr "" +msgstr "Ирыцқьатәуп аформатркра" #: CalcCommands.xcu msgctxt "" @@ -679,7 +679,7 @@ "Label\n" "value.text" msgid "~Select Sheets..." -msgstr "" +msgstr "Иалхтәуп абӷьыцқәа..." #: CalcCommands.xcu msgctxt "" @@ -715,7 +715,7 @@ "Label\n" "value.text" msgid "Next Page" -msgstr "" +msgstr "Анаҩстәи адаҟьа" #: CalcCommands.xcu msgctxt "" @@ -724,7 +724,7 @@ "Label\n" "value.text" msgid "Previous Page" -msgstr "" +msgstr "Аҧхьатәи адаҟьа" #: CalcCommands.xcu msgctxt "" @@ -733,7 +733,7 @@ "Label\n" "value.text" msgid "First Page" -msgstr "" +msgstr "Актәи адаҟьа" #: CalcCommands.xcu msgctxt "" @@ -742,7 +742,7 @@ "Label\n" "value.text" msgid "Last Page" -msgstr "" +msgstr "Аҵыхәтәантәи адаҟьа" #: CalcCommands.xcu msgctxt "" @@ -751,7 +751,7 @@ "Label\n" "value.text" msgid "Zoom In" -msgstr "" +msgstr "Ирдуны" #: CalcCommands.xcu msgctxt "" @@ -760,7 +760,7 @@ "Label\n" "value.text" msgid "Zoom Out" -msgstr "" +msgstr "Ирхәыҷны" #: CalcCommands.xcu msgctxt "" @@ -787,7 +787,7 @@ "Label\n" "value.text" msgid "Close Preview" -msgstr "" +msgstr "Иарктәуп заатәи ахәаҧшра" #: CalcCommands.xcu msgctxt "" @@ -805,7 +805,7 @@ "Label\n" "value.text" msgid "Page Format" -msgstr "" +msgstr "Адаҟьа аформат" #: CalcCommands.xcu msgctxt "" @@ -1093,7 +1093,7 @@ "Label\n" "value.text" msgid "Select Column" -msgstr "" +msgstr "Иалкаатәуп аиҵагыла" #: CalcCommands.xcu msgctxt "" @@ -1111,7 +1111,7 @@ "Label\n" "value.text" msgid "Select Row" -msgstr "" +msgstr "Иалкаатәуп ацәаҳәа" #: CalcCommands.xcu msgctxt "" @@ -1228,7 +1228,7 @@ "Label\n" "value.text" msgid "Undo Selection" -msgstr "" +msgstr "Иаҟәыхтәуп алкаара" #: CalcCommands.xcu msgctxt "" @@ -1255,7 +1255,7 @@ "Label\n" "value.text" msgid "Cell Edit Mode" -msgstr "" +msgstr "Абларҭа ариашара" #: CalcCommands.xcu msgctxt "" @@ -1282,7 +1282,7 @@ "Label\n" "value.text" msgid "Cancel" -msgstr "" +msgstr "Аҟәыхра" #: CalcCommands.xcu msgctxt "" @@ -1300,7 +1300,7 @@ "Label\n" "value.text" msgid "Select to Next Sheet" -msgstr "" +msgstr "Иалкаатәуп анаҩстәи абӷьыц аҟынӡа" #: CalcCommands.xcu msgctxt "" @@ -1309,7 +1309,7 @@ "Label\n" "value.text" msgid "Select to Previous Sheet" -msgstr "" +msgstr "Иалкаатәуп аҧхьатәи абӷьыц аҟынӡа" #: CalcCommands.xcu msgctxt "" @@ -1354,7 +1354,7 @@ "TooltipLabel\n" "value.text" msgid "Define Print Area" -msgstr "" +msgstr "Иҭажәгал акьыҧхьра адиапазон" #: CalcCommands.xcu msgctxt "" @@ -1390,7 +1390,7 @@ "Label\n" "value.text" msgid "Edit" -msgstr "" +msgstr "Ариашара" #: CalcCommands.xcu msgctxt "" @@ -1399,7 +1399,7 @@ "ContextLabel\n" "value.text" msgid "~Edit..." -msgstr "" +msgstr "~Ариашара..." #: CalcCommands.xcu msgctxt "" @@ -1408,7 +1408,7 @@ "TooltipLabel\n" "value.text" msgid "Edit Print Ranges" -msgstr "" +msgstr "Акьыҧхьра адиапазонқәа рыриашара" #: CalcCommands.xcu msgctxt "" @@ -1462,7 +1462,7 @@ "Label\n" "value.text" msgid "Selection List" -msgstr "" +msgstr "Алхра ахьӡынҵа" #: CalcCommands.xcu msgctxt "" @@ -1471,7 +1471,7 @@ "Label\n" "value.text" msgid "Delete C~ells..." -msgstr "" +msgstr "Ианыхтәуп абларҭақәа..." #: CalcCommands.xcu msgctxt "" @@ -1498,7 +1498,7 @@ "Label\n" "value.text" msgid "~Delete Sheet..." -msgstr "" +msgstr "Ианыхтәуп абӷьыцқәа..." #: CalcCommands.xcu msgctxt "" @@ -1651,7 +1651,7 @@ "Label\n" "value.text" msgid "Statistics" -msgstr "" +msgstr "Астатистика" #: CalcCommands.xcu msgctxt "" @@ -1786,7 +1786,7 @@ "Label\n" "value.text" msgid "Delete Rows" -msgstr "" +msgstr "Ианыхтәуп ацәаҳәақәа" #: CalcCommands.xcu msgctxt "" @@ -1804,7 +1804,7 @@ "Label\n" "value.text" msgid "Delete Columns" -msgstr "" +msgstr "Ианыхтәуп аиҵагылақәа" #: CalcCommands.xcu msgctxt "" @@ -1903,7 +1903,7 @@ "Label\n" "value.text" msgid "Delete All Comments" -msgstr "" +msgstr "Ианыхтәуп акомментариқәа зегьы" #: CalcCommands.xcu msgctxt "" @@ -1930,7 +1930,7 @@ "Label\n" "value.text" msgid "Delete Comment" -msgstr "" +msgstr "Ианыхтәуп акомментари" #: CalcCommands.xcu msgctxt "" @@ -2407,7 +2407,7 @@ "Label\n" "value.text" msgid "Insert Shee~t from File..." -msgstr "" +msgstr "Ибжьаргылатәуп абӷьыц афаил аҟынтәи..." #: CalcCommands.xcu msgctxt "" @@ -2515,7 +2515,7 @@ "Label\n" "value.text" msgid "Format ~Cells..." -msgstr "" +msgstr "Абларҭақәа рформат..." #: CalcCommands.xcu msgctxt "" @@ -2533,7 +2533,7 @@ "PopupLabel\n" "value.text" msgid "~Format Cells..." -msgstr "" +msgstr "Абларҭақәа рформат..." #: CalcCommands.xcu msgctxt "" @@ -2785,7 +2785,7 @@ "Label\n" "value.text" msgid "Format ~Page..." -msgstr "" +msgstr "Адаҟьа аформат" #: CalcCommands.xcu msgctxt "" @@ -2794,7 +2794,7 @@ "ContextLabel\n" "value.text" msgid "~Page..." -msgstr "" +msgstr "Адаҟьа..." #: CalcCommands.xcu msgctxt "" @@ -2803,7 +2803,7 @@ "PopupLabel\n" "value.text" msgid "Format Pa~ge..." -msgstr "" +msgstr "Адаҟьа аформат..." #: CalcCommands.xcu msgctxt "" @@ -2920,7 +2920,7 @@ "ContextLabel\n" "value.text" msgid "~Delete" -msgstr "" +msgstr "Ианыхтәуп" #: CalcCommands.xcu msgctxt "" @@ -2965,7 +2965,7 @@ "Label\n" "value.text" msgid "Select Data ~Range..." -msgstr "" +msgstr "Иалхтәуп адырқәа рдиапазон..." #: CalcCommands.xcu msgctxt "" @@ -2974,7 +2974,7 @@ "ContextLabel\n" "value.text" msgid "Select ~Range..." -msgstr "" +msgstr "Иалхтәуп адиапазон..." #: CalcCommands.xcu msgctxt "" @@ -3091,7 +3091,7 @@ "Label\n" "value.text" msgid "Refresh Data Import" -msgstr "" +msgstr "Ирҿыцтәуп адырқәа римпорт" #: CalcCommands.xcu msgctxt "" @@ -3181,7 +3181,7 @@ "Label\n" "value.text" msgid "Select All Sheets" -msgstr "" +msgstr "Иалкаатәуп абӷьыцқәа зегьы" #: CalcCommands.xcu msgctxt "" @@ -3190,7 +3190,7 @@ "Label\n" "value.text" msgid "Deselect All Sheets" -msgstr "" +msgstr "Иқәгатәуп алкаара" #: CalcCommands.xcu msgctxt "" @@ -3271,7 +3271,7 @@ "Label\n" "value.text" msgid "Select Scenario" -msgstr "" +msgstr "Иалхтәуп асценари" #: CalcCommands.xcu msgctxt "" @@ -3298,7 +3298,7 @@ "Label\n" "value.text" msgid "Number Format" -msgstr "" +msgstr "Ахыҧхьаӡарақәа рформат" #: CalcCommands.xcu msgctxt "" @@ -3469,7 +3469,7 @@ "Label\n" "value.text" msgid "Edit Lin~ks..." -msgstr "" +msgstr "Иҧсахтәуп азхьарҧшқәа..." #: CalcCommands.xcu msgctxt "" @@ -3622,7 +3622,7 @@ "Label\n" "value.text" msgid "~Open..." -msgstr "" +msgstr "Иаарттәуп..." #: CalcCommands.xcu msgctxt "" @@ -3631,7 +3631,7 @@ "Label\n" "value.text" msgid "Formula to Value" -msgstr "" +msgstr "Аформула аҵакахьы" #: CalcCommands.xcu msgctxt "" @@ -3712,7 +3712,7 @@ "Label\n" "value.text" msgid "Edit Comment" -msgstr "" +msgstr "Иҧсахтәуп акомментари" #: CalcCommands.xcu msgctxt "" @@ -3910,7 +3910,7 @@ "Label\n" "value.text" msgid "Export as Image" -msgstr "" +msgstr "Асахьа аекспорт" #: CalcCommands.xcu msgctxt "" @@ -3919,7 +3919,7 @@ "Label\n" "value.text" msgid "Edit Hyperlink" -msgstr "" +msgstr "Иҧсахтәуп агиперзхьарҧш" #: CalcCommands.xcu msgctxt "" @@ -3928,7 +3928,7 @@ "Label\n" "value.text" msgid "Remove Hyperlink" -msgstr "" +msgstr "Ианыхтәуп агиперзхьарҧш" #: CalcCommands.xcu msgctxt "" @@ -3955,7 +3955,7 @@ "PopupLabel\n" "value.text" msgid "~Formula" -msgstr "~Аформула" +msgstr "Аформула" #: CalcCommands.xcu msgctxt "" @@ -4171,7 +4171,7 @@ "UIName\n" "value.text" msgid "Chart" -msgstr "" +msgstr "Адиаграмма" #: CalcWindowState.xcu msgctxt "" @@ -4252,7 +4252,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "" +msgstr "OLE-аобиеқт" #: CalcWindowState.xcu msgctxt "" @@ -4279,7 +4279,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "" +msgstr "Заатәи ахәаҧшра" #: CalcWindowState.xcu msgctxt "" @@ -4351,7 +4351,7 @@ "UIName\n" "value.text" msgid "Drawing Object Properties" -msgstr "" +msgstr "Асахьа аҷыдаҟазшьа" #: CalcWindowState.xcu msgctxt "" @@ -4360,7 +4360,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "" +msgstr "Заатәи ахәаҧшра" #: CalcWindowState.xcu msgctxt "" @@ -4387,7 +4387,7 @@ "UIName\n" "value.text" msgid "Form Filter" -msgstr "" +msgstr "Аформақәа рфильтр" #: CalcWindowState.xcu msgctxt "" @@ -4432,7 +4432,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "" +msgstr "Аформатркра" #: CalcWindowState.xcu msgctxt "" @@ -4477,7 +4477,7 @@ "UIName\n" "value.text" msgid "Text Formatting" -msgstr "" +msgstr "Атеқст аформатркра" #: CalcWindowState.xcu msgctxt "" @@ -4567,7 +4567,7 @@ "UIName\n" "value.text" msgid "Flowchart" -msgstr "" +msgstr "Аблок-схемақәа" #: CalcWindowState.xcu msgctxt "" @@ -4738,7 +4738,7 @@ "Label\n" "value.text" msgid "Format Selection..." -msgstr "" +msgstr "Алкаара аформат..." #: ChartCommands.xcu msgctxt "" @@ -4747,7 +4747,7 @@ "Label\n" "value.text" msgid "Format Legend" -msgstr "" +msgstr "Алегенда аформат..." #: ChartCommands.xcu msgctxt "" @@ -4774,7 +4774,7 @@ "Label\n" "value.text" msgid "Chart ~Floor..." -msgstr "" +msgstr "Адиаграмма ашьаҭа..." #: ChartCommands.xcu msgctxt "" @@ -4792,7 +4792,7 @@ "Label\n" "value.text" msgid "Chart T~ype..." -msgstr "" +msgstr "Адиаграмма атип..." #: ChartCommands.xcu msgctxt "" @@ -4810,7 +4810,7 @@ "Label\n" "value.text" msgid "~Data Table..." -msgstr "" +msgstr "Адырқәа ртаблица..." #: ChartCommands.xcu msgctxt "" @@ -5089,7 +5089,7 @@ "Label\n" "value.text" msgid "Delete Legend" -msgstr "" +msgstr "Ианыхтәуп алегенда" #: ChartCommands.xcu msgctxt "" @@ -5161,7 +5161,7 @@ "Label\n" "value.text" msgid "Delete Major Grid" -msgstr "" +msgstr "Ианыхтәуп ихадоу акаҭа" #: ChartCommands.xcu msgctxt "" @@ -5188,7 +5188,7 @@ "Label\n" "value.text" msgid "Delete Minor Grid" -msgstr "" +msgstr "Ианыхтәуп ицхыраагӡоу акаҭа" #: ChartCommands.xcu msgctxt "" @@ -5215,7 +5215,7 @@ "Label\n" "value.text" msgid "Delete Tre~nd Line" -msgstr "" +msgstr "Ианыхтәуп атренд аҵәаӷәа" #: ChartCommands.xcu msgctxt "" @@ -5260,7 +5260,7 @@ "Label\n" "value.text" msgid "Delete R²" -msgstr "" +msgstr "Ианыхтәуп R²" #: ChartCommands.xcu msgctxt "" @@ -5269,7 +5269,7 @@ "Label\n" "value.text" msgid "Delete Trend Line ~Equation" -msgstr "" +msgstr "Ианыхтәуп атренд аҵәаӷәа аиҟаратә" #: ChartCommands.xcu msgctxt "" @@ -5296,7 +5296,7 @@ "Label\n" "value.text" msgid "Delete Mean ~Value Line" -msgstr "" +msgstr "Ианыхтәуп абжьаратә ҵакы змоу аҵәаӷәа" #: ChartCommands.xcu msgctxt "" @@ -5476,7 +5476,7 @@ "Label\n" "value.text" msgid "Select Chart Element" -msgstr "" +msgstr "Иалхтәуп адиаграмма аелемент" #: ChartCommands.xcu msgctxt "" @@ -5512,7 +5512,7 @@ "Label\n" "value.text" msgid "Update Chart" -msgstr "" +msgstr "Ирҿыцтәуп адиаграмма" #: ChartCommands.xcu msgctxt "" @@ -5566,7 +5566,7 @@ "Label\n" "value.text" msgid "Select Tool" -msgstr "" +msgstr "Иалхтәуп амаруга" #: ChartCommands.xcu msgctxt "" @@ -5575,7 +5575,7 @@ "Label\n" "value.text" msgid "Chart Type" -msgstr "" +msgstr "Адиаграмма атип" #: ChartCommands.xcu msgctxt "" @@ -5584,7 +5584,7 @@ "Label\n" "value.text" msgid "Caption Type for Chart Data" -msgstr "" +msgstr "Адиаграмма адырқәа рыхьӡ атип" #: ChartCommands.xcu msgctxt "" @@ -5773,7 +5773,7 @@ "UIName\n" "value.text" msgid "Flowchart" -msgstr "" +msgstr "Аблок-схемақәа" #: ChartWindowState.xcu msgctxt "" @@ -5809,7 +5809,7 @@ "UIName\n" "value.text" msgid "Table Data" -msgstr "" +msgstr "Атаблица адырқәа" #: DbQueryWindowState.xcu msgctxt "" @@ -5872,7 +5872,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "" +msgstr "Аформатркра" #: DbReportWindowState.xcu msgctxt "" @@ -5890,7 +5890,7 @@ "UIName\n" "value.text" msgid "Drawing objects" -msgstr "" +msgstr "Асахьақәа" #: DbReportWindowState.xcu msgctxt "" @@ -5926,7 +5926,7 @@ "UIName\n" "value.text" msgid "Object Resizing" -msgstr "" +msgstr "Иҧсахтәуп аобиеқтқәа рышәагаа" #: DbTableDataWindowState.xcu msgctxt "" @@ -5935,7 +5935,7 @@ "UIName\n" "value.text" msgid "Table Data" -msgstr "" +msgstr "Атаблица адырқәа" #: DbTableWindowState.xcu msgctxt "" @@ -5971,7 +5971,7 @@ "Label\n" "value.text" msgid "Add Tables..." -msgstr "" +msgstr "Иацҵатәуп атаблицақәа..." #: DbuCommands.xcu msgctxt "" @@ -6016,7 +6016,7 @@ "Label\n" "value.text" msgid "Table name" -msgstr "" +msgstr "Атаблица ахьӡ" #: DbuCommands.xcu msgctxt "" @@ -6061,7 +6061,7 @@ "Label\n" "value.text" msgid "Delete" -msgstr "" +msgstr "Ианыхтәуп" #: DbuCommands.xcu msgctxt "" @@ -6079,7 +6079,7 @@ "Label\n" "value.text" msgid "Edit..." -msgstr "" +msgstr "Ариашара..." #: DbuCommands.xcu msgctxt "" @@ -6097,7 +6097,7 @@ "Label\n" "value.text" msgid "Open Database Object..." -msgstr "" +msgstr "Иаарттәуп адырқәа рбаза аобиеқт..." #: DbuCommands.xcu msgctxt "" @@ -6106,7 +6106,7 @@ "PopupLabel\n" "value.text" msgid "Open..." -msgstr "" +msgstr "Иаарттәуп..." #: DbuCommands.xcu msgctxt "" @@ -6115,7 +6115,7 @@ "Label\n" "value.text" msgid "Delete" -msgstr "" +msgstr "Ианыхтәуп" #: DbuCommands.xcu msgctxt "" @@ -6133,7 +6133,7 @@ "Label\n" "value.text" msgid "Edit..." -msgstr "" +msgstr "Ариашара..." #: DbuCommands.xcu msgctxt "" @@ -6142,7 +6142,7 @@ "Label\n" "value.text" msgid "Open Database Object..." -msgstr "" +msgstr "Иаарттәуп адырқәа рбаза аобиеқт..." #: DbuCommands.xcu msgctxt "" @@ -6151,7 +6151,7 @@ "Label\n" "value.text" msgid "Delete" -msgstr "" +msgstr "Ианыхтәуп" #: DbuCommands.xcu msgctxt "" @@ -6169,7 +6169,7 @@ "Label\n" "value.text" msgid "Edit..." -msgstr "" +msgstr "Ариашара..." #: DbuCommands.xcu msgctxt "" @@ -6178,7 +6178,7 @@ "Label\n" "value.text" msgid "Open Database Object..." -msgstr "" +msgstr "Иаарттәуп адырқәа рбаза аобиеқт..." #: DbuCommands.xcu msgctxt "" @@ -6187,7 +6187,7 @@ "Label\n" "value.text" msgid "Delete" -msgstr "" +msgstr "Ианыхтәуп" #: DbuCommands.xcu msgctxt "" @@ -6205,7 +6205,7 @@ "Label\n" "value.text" msgid "Edit..." -msgstr "" +msgstr "Ариашара..." #: DbuCommands.xcu msgctxt "" @@ -6214,7 +6214,7 @@ "Label\n" "value.text" msgid "Open Database Object..." -msgstr "" +msgstr "Иаарттәуп адырқәа рбаза аобиеқт..." #: DbuCommands.xcu msgctxt "" @@ -6223,7 +6223,7 @@ "Label\n" "value.text" msgid "Delete" -msgstr "" +msgstr "Ианыхтәуп" #: DbuCommands.xcu msgctxt "" @@ -6241,7 +6241,7 @@ "Label\n" "value.text" msgid "Edit..." -msgstr "" +msgstr "Ариашара..." #: DbuCommands.xcu msgctxt "" @@ -6250,7 +6250,7 @@ "Label\n" "value.text" msgid "Open Database Object..." -msgstr "" +msgstr "Иаарттәуп адырқәа рбаза аобиеқт..." #: DbuCommands.xcu msgctxt "" @@ -6268,7 +6268,7 @@ "Label\n" "value.text" msgid "Form Wizard..." -msgstr "" +msgstr "Аформақәа разҟаза..." #: DbuCommands.xcu msgctxt "" @@ -6277,7 +6277,7 @@ "Label\n" "value.text" msgid "Table Wizard..." -msgstr "" +msgstr "Атаблицақәа разҟаза..." #: DbuCommands.xcu msgctxt "" @@ -6295,7 +6295,7 @@ "Label\n" "value.text" msgid "Form Wizard..." -msgstr "" +msgstr "Аформақәа разҟаза..." #: DbuCommands.xcu msgctxt "" @@ -6331,7 +6331,7 @@ "Label\n" "value.text" msgid "Select All" -msgstr "" +msgstr "Иалхтәуп зегьы" #: DbuCommands.xcu msgctxt "" @@ -6367,7 +6367,7 @@ "Label\n" "value.text" msgid "Tables" -msgstr "" +msgstr "Атаблицақәа" #: DbuCommands.xcu msgctxt "" @@ -6385,7 +6385,7 @@ "Label\n" "value.text" msgid "Forms" -msgstr "" +msgstr "Аформақәа" #: DbuCommands.xcu msgctxt "" @@ -6430,7 +6430,7 @@ "Label\n" "value.text" msgid "Document Information" -msgstr "" +msgstr "Адокумент иазку аинформациа" #: DbuCommands.xcu msgctxt "" @@ -6448,7 +6448,7 @@ "Label\n" "value.text" msgid "Form..." -msgstr "" +msgstr "Аформа..." #: DbuCommands.xcu msgctxt "" @@ -6493,7 +6493,7 @@ "Label\n" "value.text" msgid "Table Design..." -msgstr "" +msgstr "Атаблица адизаин" #: DbuCommands.xcu msgctxt "" @@ -6502,7 +6502,7 @@ "PopupLabel\n" "value.text" msgid "New ~Table Design" -msgstr "" +msgstr "Иаҧҵатәуп атаблица (адизаин арежим)" #: DbuCommands.xcu msgctxt "" @@ -6565,7 +6565,7 @@ "Label\n" "value.text" msgid "Table Filter..." -msgstr "" +msgstr "Атаблицақәа рфильтр..." #: DbuCommands.xcu msgctxt "" @@ -6574,7 +6574,7 @@ "Label\n" "value.text" msgid "Refresh Tables" -msgstr "" +msgstr "Ирҿыцтәуп атаблицақәа" #: DbuCommands.xcu msgctxt "" @@ -6592,7 +6592,7 @@ "Label\n" "value.text" msgid "Migrate Macros ..." -msgstr "" +msgstr "Амакросқәа риагара..." #: DbuCommands.xcu msgctxt "" @@ -6601,7 +6601,7 @@ "Label\n" "value.text" msgid "Edit Data" -msgstr "" +msgstr "Иҧсахтәуп адырқәа" #: DbuCommands.xcu msgctxt "" @@ -6664,7 +6664,7 @@ "Label\n" "value.text" msgid "Delete ~Record" -msgstr "" +msgstr "Ианыхтәуп анҵамҭа" #: DbuCommands.xcu msgctxt "" @@ -6709,7 +6709,7 @@ "Label\n" "value.text" msgid "Edit ~Database File..." -msgstr "" +msgstr "~Адырқәа рбаза аредакциазура..." #: DbuCommands.xcu msgctxt "" @@ -6745,7 +6745,7 @@ "Label\n" "value.text" msgid "Database Objects" -msgstr "" +msgstr "Адырқәа рбаза аобиеқтқәа" #: DbuCommands.xcu msgctxt "" @@ -6817,7 +6817,7 @@ "Label\n" "value.text" msgid "Rename Page" -msgstr "" +msgstr "Адаҟьа ахьӡ ҧсахтәуп" #: DrawImpressCommands.xcu msgctxt "" @@ -6961,7 +6961,7 @@ "Label\n" "value.text" msgid "3D Objects" -msgstr "" +msgstr "3D-обиеқтқәа" #: DrawImpressCommands.xcu msgctxt "" @@ -7231,7 +7231,7 @@ "Label\n" "value.text" msgid "In Front of ~Object" -msgstr "" +msgstr "Аобиеқт аҧхьа" #: DrawImpressCommands.xcu msgctxt "" @@ -7402,7 +7402,7 @@ "Label\n" "value.text" msgid "~Page Number" -msgstr "" +msgstr "Адаҟьа аномер" #: DrawImpressCommands.xcu msgctxt "" @@ -7411,7 +7411,7 @@ "Label\n" "value.text" msgid "Page Tit~le" -msgstr "" +msgstr "Адаҟьа ахы" #: DrawImpressCommands.xcu msgctxt "" @@ -7420,7 +7420,7 @@ "Label\n" "value.text" msgid "Page ~Count" -msgstr "" +msgstr "Адаҟьақәа рхыҧхьаӡара" #: DrawImpressCommands.xcu msgctxt "" @@ -7438,7 +7438,7 @@ "Label\n" "value.text" msgid "~File Name" -msgstr "" +msgstr "Афаил ахьӡ" #: DrawImpressCommands.xcu msgctxt "" @@ -7546,7 +7546,7 @@ "Label\n" "value.text" msgid "To ~Metafile" -msgstr "" +msgstr "Аметафаил ахь" #: DrawImpressCommands.xcu msgctxt "" @@ -7564,7 +7564,7 @@ "Label\n" "value.text" msgid "~Hyperlink..." -msgstr "" +msgstr "Агиперзхьарҧш..." #: DrawImpressCommands.xcu msgctxt "" @@ -7591,7 +7591,7 @@ "Label\n" "value.text" msgid "Format Page" -msgstr "" +msgstr "Адаҟьа аформат" #: DrawImpressCommands.xcu msgctxt "" @@ -7600,7 +7600,7 @@ "ContextLabel\n" "value.text" msgid "~Page Properties..." -msgstr "" +msgstr "Адаҟьа аҷыдаҟазшьақәа..." #: DrawImpressCommands.xcu msgctxt "" @@ -7609,7 +7609,7 @@ "Label\n" "value.text" msgid "Format Slide" -msgstr "" +msgstr "Аслаид аформат" #: DrawImpressCommands.xcu msgctxt "" @@ -7708,7 +7708,7 @@ "Label\n" "value.text" msgid "New Page" -msgstr "" +msgstr "Иаҧҵатәуп адаҟьа" #: DrawImpressCommands.xcu msgctxt "" @@ -7717,7 +7717,7 @@ "Label\n" "value.text" msgid "~New Slide" -msgstr "" +msgstr "Иаҧҵатәуп аслаид" #: DrawImpressCommands.xcu msgctxt "" @@ -7726,7 +7726,7 @@ "Label\n" "value.text" msgid "~File..." -msgstr "" +msgstr "Афаил..." #: DrawImpressCommands.xcu msgctxt "" @@ -8077,7 +8077,7 @@ "Label\n" "value.text" msgid "D~elete Page" -msgstr "" +msgstr "Ианыхтәуп адаҟьа" #: DrawImpressCommands.xcu msgctxt "" @@ -8086,7 +8086,7 @@ "Label\n" "value.text" msgid "~Delete Slide" -msgstr "" +msgstr "Ианыхтәуп аслаид" #: DrawImpressCommands.xcu msgctxt "" @@ -8095,7 +8095,7 @@ "Label\n" "value.text" msgid "Delete Layer" -msgstr "" +msgstr "Ианыхтәуп аҿыгҳара" #: DrawImpressCommands.xcu msgctxt "" @@ -8212,7 +8212,7 @@ "Label\n" "value.text" msgid "Be~hind Object" -msgstr "" +msgstr "Аобиеқт ашьҭахь" #: DrawImpressCommands.xcu msgctxt "" @@ -8608,7 +8608,7 @@ "Label\n" "value.text" msgid "~Save..." -msgstr "Иеиқәырхатәуп..." +msgstr "Еиқәырхатәуп..." #: DrawImpressCommands.xcu msgctxt "" @@ -8644,7 +8644,7 @@ "Label\n" "value.text" msgid "Save Background Image..." -msgstr "Иеиқәырхатәуп аҿаҧшыратә сахьа..." +msgstr "Еиқәырхатәуп аҿаҧшыратә сахьа..." #: DrawImpressCommands.xcu msgctxt "" @@ -8698,7 +8698,7 @@ "Label\n" "value.text" msgid "New Master" -msgstr "" +msgstr "Азҟаза ҿыц" #: DrawImpressCommands.xcu msgctxt "" @@ -8707,7 +8707,7 @@ "Label\n" "value.text" msgid "Delete Master" -msgstr "" +msgstr "Ианыхтәуп азҟаза" #: DrawImpressCommands.xcu msgctxt "" @@ -8725,7 +8725,7 @@ "Label\n" "value.text" msgid "Close Master View" -msgstr "" +msgstr "Иарктәуп азҟаза арежим" #: DrawImpressCommands.xcu msgctxt "" @@ -8752,7 +8752,7 @@ "Label\n" "value.text" msgid "Zoom & Pan (CTRL to Zoom Out, SHIFT to Pan)" -msgstr "" +msgstr "Амасштаби (Ctrl) апанорамеи (Shift)" #: DrawImpressCommands.xcu msgctxt "" @@ -8977,7 +8977,7 @@ "Label\n" "value.text" msgid "~Page Pane" -msgstr "" +msgstr "Адаҟьақәа рпанель" #: DrawImpressCommands.xcu msgctxt "" @@ -9148,7 +9148,7 @@ "Label\n" "value.text" msgid "Delete Row" -msgstr "" +msgstr "Ианыхтәуп ацәаҳәа" #: DrawImpressCommands.xcu msgctxt "" @@ -9166,7 +9166,7 @@ "PopupLabel\n" "value.text" msgid "Delete Row" -msgstr "" +msgstr "Ианыхтәуп ацәаҳәа" #: DrawImpressCommands.xcu msgctxt "" @@ -9175,7 +9175,7 @@ "Label\n" "value.text" msgid "Delete Column" -msgstr "" +msgstr "Ианыхтәуп аиҵагыла" #: DrawImpressCommands.xcu msgctxt "" @@ -9193,7 +9193,7 @@ "PopupLabel\n" "value.text" msgid "Delete Column" -msgstr "" +msgstr "Ианыхтәуп аиҵагыла" #: DrawImpressCommands.xcu msgctxt "" @@ -9202,7 +9202,7 @@ "Label\n" "value.text" msgid "Select Table" -msgstr "" +msgstr "Иалкаатәуп атаблица" #: DrawImpressCommands.xcu msgctxt "" @@ -9211,7 +9211,7 @@ "ContextLabel\n" "value.text" msgid "~Table" -msgstr "" +msgstr "Атаблица" #: DrawImpressCommands.xcu msgctxt "" @@ -9220,7 +9220,7 @@ "Label\n" "value.text" msgid "Select Column" -msgstr "" +msgstr "Иалкаатәуп аиҵагыла" #: DrawImpressCommands.xcu msgctxt "" @@ -9238,7 +9238,7 @@ "PopupLabel\n" "value.text" msgid "Select Column" -msgstr "" +msgstr "Иалкаатәуп аиҵагыла" #: DrawImpressCommands.xcu msgctxt "" @@ -9247,7 +9247,7 @@ "Label\n" "value.text" msgid "Select Rows" -msgstr "" +msgstr "Иалкаатәуп ацәаҳәа" #: DrawImpressCommands.xcu msgctxt "" @@ -9265,7 +9265,7 @@ "PopupLabel\n" "value.text" msgid "Select Rows" -msgstr "" +msgstr "Иалкаатәуп ацәаҳәақәа" #: DrawImpressCommands.xcu msgctxt "" @@ -9301,7 +9301,7 @@ "Label\n" "value.text" msgid "~Table..." -msgstr "" +msgstr "Атаблица..." #: DrawImpressCommands.xcu msgctxt "" @@ -9328,7 +9328,7 @@ "Label\n" "value.text" msgid "~Delete Comment" -msgstr "" +msgstr "~Ианыхтәуп акомментари" #: DrawImpressCommands.xcu msgctxt "" @@ -9337,7 +9337,7 @@ "Label\n" "value.text" msgid "Delete ~All Comments" -msgstr "" +msgstr "Ианыхтәуп~акомментариқәа зегьы" #: DrawImpressCommands.xcu msgctxt "" @@ -9391,7 +9391,7 @@ "Label\n" "value.text" msgid "Go to First Page" -msgstr "" +msgstr "Ииастәуп актәи адаҟьахь" #: DrawImpressCommands.xcu msgctxt "" @@ -9400,7 +9400,7 @@ "ContextLabel\n" "value.text" msgid "To First Page" -msgstr "" +msgstr "Актәи адаҟьахь" #: DrawImpressCommands.xcu msgctxt "" @@ -9427,7 +9427,7 @@ "Label\n" "value.text" msgid "Go to Previous Page" -msgstr "" +msgstr "Ииастәуп аҧхьатәи адаҟьахь" #: DrawImpressCommands.xcu msgctxt "" @@ -9436,7 +9436,7 @@ "ContextLabel\n" "value.text" msgid "To Previous Page" -msgstr "" +msgstr "Аҧхьатәи адаҟьахь" #: DrawImpressCommands.xcu msgctxt "" @@ -9463,7 +9463,7 @@ "Label\n" "value.text" msgid "Go to Next Page" -msgstr "" +msgstr "Ииастәуп анаҩстәи адаҟьахь" #: DrawImpressCommands.xcu msgctxt "" @@ -9472,7 +9472,7 @@ "ContextLabel\n" "value.text" msgid "To Next Page" -msgstr "" +msgstr "Анаҩстәи адаҟьахь" #: DrawImpressCommands.xcu msgctxt "" @@ -9499,7 +9499,7 @@ "Label\n" "value.text" msgid "Go to Last Page" -msgstr "" +msgstr "Ииастәуп аҵыхәтәантәи адаҟьахь" #: DrawImpressCommands.xcu msgctxt "" @@ -9508,7 +9508,7 @@ "ContextLabel\n" "value.text" msgid "To Last Page" -msgstr "" +msgstr "Аҵыхәтәантәи адаҟьахь" #: DrawImpressCommands.xcu msgctxt "" @@ -9535,7 +9535,7 @@ "Label\n" "value.text" msgid "Move Page to Start" -msgstr "" +msgstr "Ииагатәуп адаҟьа, алагамҭахь" #: DrawImpressCommands.xcu msgctxt "" @@ -9544,7 +9544,7 @@ "ContextLabel\n" "value.text" msgid "Page to Start" -msgstr "" +msgstr "Адаҟьа, алагамҭахь" #: DrawImpressCommands.xcu msgctxt "" @@ -9571,7 +9571,7 @@ "Label\n" "value.text" msgid "Move Page Up" -msgstr "" +msgstr "Ииагатәуп адаҟьа аҩада" #: DrawImpressCommands.xcu msgctxt "" @@ -9580,7 +9580,7 @@ "ContextLabel\n" "value.text" msgid "Page Up" -msgstr "" +msgstr "Адаҟьа аҩада" #: DrawImpressCommands.xcu msgctxt "" @@ -9607,7 +9607,7 @@ "Label\n" "value.text" msgid "Move Page Down" -msgstr "" +msgstr "Ииагатәуп адаҟьа алада" #: DrawImpressCommands.xcu msgctxt "" @@ -9616,7 +9616,7 @@ "ContextLabel\n" "value.text" msgid "Page Down" -msgstr "" +msgstr "Адаҟьа алада" #: DrawImpressCommands.xcu msgctxt "" @@ -9643,7 +9643,7 @@ "Label\n" "value.text" msgid "Move Page to End" -msgstr "" +msgstr "Ииагатәуп адаҟьа анҵәамҭахь" #: DrawImpressCommands.xcu msgctxt "" @@ -9652,7 +9652,7 @@ "ContextLabel\n" "value.text" msgid "Page to End" -msgstr "" +msgstr "Адаҟьа анҵәамҭахь" #: DrawImpressCommands.xcu msgctxt "" @@ -9895,7 +9895,7 @@ "UIName\n" "value.text" msgid "3D Object" -msgstr "" +msgstr "3D-обиеқт" #: DrawWindowState.xcu msgctxt "" @@ -10048,7 +10048,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "" +msgstr "OLE аобиеқт" #: DrawWindowState.xcu msgctxt "" @@ -10057,7 +10057,7 @@ "UIName\n" "value.text" msgid "Page" -msgstr "" +msgstr "Адаҟьа" #: DrawWindowState.xcu msgctxt "" @@ -10066,7 +10066,7 @@ "UIName\n" "value.text" msgid "Page Pane" -msgstr "" +msgstr "Адаҟьақәа рпанель" #: DrawWindowState.xcu msgctxt "" @@ -10075,7 +10075,7 @@ "UIName\n" "value.text" msgid "Page Pane (no selection)" -msgstr "" +msgstr "Адаҟьақәа рпанель (алхрада)" #: DrawWindowState.xcu msgctxt "" @@ -10102,7 +10102,7 @@ "UIName\n" "value.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: DrawWindowState.xcu msgctxt "" @@ -10111,7 +10111,7 @@ "UIName\n" "value.text" msgid "Table Text" -msgstr "" +msgstr "Атаблица атеқст" #: DrawWindowState.xcu msgctxt "" @@ -10192,7 +10192,7 @@ "UIName\n" "value.text" msgid "3D-Objects" -msgstr "" +msgstr "3D-обиеқтқәа" #: DrawWindowState.xcu msgctxt "" @@ -10219,7 +10219,7 @@ "UIName\n" "value.text" msgid "Edit Points" -msgstr "" +msgstr "Агеометриа аҧсахра" #: DrawWindowState.xcu msgctxt "" @@ -10282,7 +10282,7 @@ "UIName\n" "value.text" msgid "Form Filter" -msgstr "" +msgstr "Аформақәа рфильтр" #: DrawWindowState.xcu msgctxt "" @@ -10399,7 +10399,7 @@ "UIName\n" "value.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: DrawWindowState.xcu msgctxt "" @@ -10408,7 +10408,7 @@ "UIName\n" "value.text" msgid "Zoom" -msgstr "" +msgstr "Амасштаб" #: DrawWindowState.xcu msgctxt "" @@ -10435,7 +10435,7 @@ "UIName\n" "value.text" msgid "Flowchart" -msgstr "" +msgstr "Аблок-схемақәа" #: DrawWindowState.xcu msgctxt "" @@ -10741,7 +10741,7 @@ "Label\n" "value.text" msgid "Zoom" -msgstr "" +msgstr "Амасштаб" #: Effects.xcu msgctxt "" @@ -11254,7 +11254,7 @@ "Label\n" "value.text" msgid "Blink" -msgstr "" +msgstr "Алацәҟәра" #: Effects.xcu msgctxt "" @@ -11596,7 +11596,7 @@ "Label\n" "value.text" msgid "Zoom" -msgstr "" +msgstr "Амасштаб" #: Effects.xcu msgctxt "" @@ -13063,7 +13063,7 @@ "Label\n" "value.text" msgid "Newsflash" -msgstr "" +msgstr "Ажәабжьқәа" #: Effects.xcu msgctxt "" @@ -13747,7 +13747,7 @@ "Name\n" "value.text" msgid "Edit" -msgstr "" +msgstr "Ариашара" #: GenericCategories.xcu msgctxt "" @@ -13801,7 +13801,7 @@ "Name\n" "value.text" msgid "Format" -msgstr "" +msgstr "Аформат" #: GenericCategories.xcu msgctxt "" @@ -13810,7 +13810,7 @@ "Name\n" "value.text" msgid "Templates" -msgstr "" +msgstr "Ашаблонқәа" #: GenericCategories.xcu msgctxt "" @@ -13846,7 +13846,7 @@ "Name\n" "value.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: GenericCategories.xcu msgctxt "" @@ -13891,7 +13891,7 @@ "Name\n" "value.text" msgid "Chart" -msgstr "" +msgstr "Адиаграмма" #: GenericCategories.xcu msgctxt "" @@ -13990,7 +13990,7 @@ "Label\n" "value.text" msgid "Preview in Web Browser" -msgstr "" +msgstr "Абраузер аҟны ахәаҧшра" #: GenericCommands.xcu msgctxt "" @@ -13999,7 +13999,7 @@ "Label\n" "value.text" msgid "New Presentation" -msgstr "" +msgstr "Апрезентациа ҿыц" #: GenericCommands.xcu msgctxt "" @@ -14188,7 +14188,7 @@ "Label\n" "value.text" msgid "Flowchart Shapes" -msgstr "" +msgstr "Аблок-схемақәа рфигурақәа" #: GenericCommands.xcu msgctxt "" @@ -14197,7 +14197,7 @@ "ContextLabel\n" "value.text" msgid "~Flowchart" -msgstr "" +msgstr "Аблок-схемақәа" #: GenericCommands.xcu msgctxt "" @@ -14836,7 +14836,7 @@ "Label\n" "value.text" msgid "Flowchart: Process" -msgstr "" +msgstr "Аблок-схема: апроцесс" #: GenericCommands.xcu msgctxt "" @@ -14845,7 +14845,7 @@ "Label\n" "value.text" msgid "Flowchart: Alternate Process" -msgstr "" +msgstr "Аблок-схема: альтернативатә процесс" #: GenericCommands.xcu msgctxt "" @@ -14854,7 +14854,7 @@ "Label\n" "value.text" msgid "Flowchart: Decision" -msgstr "" +msgstr "Аблок-схема: аҳасабра" #: GenericCommands.xcu msgctxt "" @@ -14863,7 +14863,7 @@ "Label\n" "value.text" msgid "Flowchart: Data" -msgstr "" +msgstr "Аблок-схема: адырқәа" #: GenericCommands.xcu msgctxt "" @@ -14881,7 +14881,7 @@ "Label\n" "value.text" msgid "Flowchart: Internal Storage" -msgstr "" +msgstr "Аблок-схема: аҩныҵҟатәи агәынкыларҭа" #: GenericCommands.xcu msgctxt "" @@ -14890,7 +14890,7 @@ "Label\n" "value.text" msgid "Flowchart: Document" -msgstr "" +msgstr "Аблок-схема: адокумент" #: GenericCommands.xcu msgctxt "" @@ -14899,7 +14899,7 @@ "Label\n" "value.text" msgid "Flowchart: Multidocument" -msgstr "" +msgstr "Аблок-схема: адокументқәа ҧыҭк" #: GenericCommands.xcu msgctxt "" @@ -14908,7 +14908,7 @@ "Label\n" "value.text" msgid "Flowchart: Terminator" -msgstr "" +msgstr "Аблок-схема: ахыркәшара адырга" #: GenericCommands.xcu msgctxt "" @@ -14917,7 +14917,7 @@ "Label\n" "value.text" msgid "Flowchart: Preparation" -msgstr "" +msgstr "Аблок-схема: архиара" #: GenericCommands.xcu msgctxt "" @@ -14926,7 +14926,7 @@ "Label\n" "value.text" msgid "Flowchart: Manual Input" -msgstr "" +msgstr "Аблок-схема: напылатәи аҭагалара" #: GenericCommands.xcu msgctxt "" @@ -14944,7 +14944,7 @@ "Label\n" "value.text" msgid "Flowchart: Connector" -msgstr "" +msgstr "Аблок-схема: аиҧшьыгатә ҵәаӷәа" #: GenericCommands.xcu msgctxt "" @@ -14953,7 +14953,7 @@ "Label\n" "value.text" msgid "Flowchart: Off-page Connector" -msgstr "" +msgstr "Аблок-схема: даҽа даҟьакахь азхьарҧш" #: GenericCommands.xcu msgctxt "" @@ -14962,7 +14962,7 @@ "Label\n" "value.text" msgid "Flowchart: Card" -msgstr "" +msgstr "Аблок-схема: акарточка" #: GenericCommands.xcu msgctxt "" @@ -14971,7 +14971,7 @@ "Label\n" "value.text" msgid "Flowchart: Punched Tape" -msgstr "" +msgstr "Аблок-схема: аперфолента" #: GenericCommands.xcu msgctxt "" @@ -14989,7 +14989,7 @@ "Label\n" "value.text" msgid "Flowchart: Or" -msgstr "" +msgstr "Аблок-схема: МА" #: GenericCommands.xcu msgctxt "" @@ -15043,7 +15043,7 @@ "Label\n" "value.text" msgid "Flowchart: Delay" -msgstr "" +msgstr "Аблок-схема: аанкылара" #: GenericCommands.xcu msgctxt "" @@ -15061,7 +15061,7 @@ "Label\n" "value.text" msgid "Flowchart: Magnetic Disc" -msgstr "" +msgstr "Аблок-схема: амхалдызтә санҭыр" #: GenericCommands.xcu msgctxt "" @@ -15079,7 +15079,7 @@ "Label\n" "value.text" msgid "Flowchart: Display" -msgstr "" +msgstr "Аблок-схема: адисплеи" #: GenericCommands.xcu msgctxt "" @@ -15529,7 +15529,7 @@ "Label\n" "value.text" msgid "Undo" -msgstr "" +msgstr "Иаҟәыхтәуп" #: GenericCommands.xcu msgctxt "" @@ -15556,7 +15556,7 @@ "Label\n" "value.text" msgid "~Zoom" -msgstr "" +msgstr "Амасштаб" #: GenericCommands.xcu msgctxt "" @@ -15565,7 +15565,7 @@ "Label\n" "value.text" msgid "~Zoom..." -msgstr "" +msgstr "Амасштаб..." #: GenericCommands.xcu msgctxt "" @@ -15673,7 +15673,7 @@ "Label\n" "value.text" msgid "Select Macro" -msgstr "" +msgstr "Иалхтәуп амакрос" #: GenericCommands.xcu msgctxt "" @@ -15709,7 +15709,7 @@ "ContextLabel\n" "value.text" msgid "Increase Size" -msgstr "" +msgstr "Еизырҳатәуп акегль" #: GenericCommands.xcu msgctxt "" @@ -15718,7 +15718,7 @@ "TooltipLabel\n" "value.text" msgid "Increase Font Size" -msgstr "" +msgstr "Еизырҳатәуп акегль" #: GenericCommands.xcu msgctxt "" @@ -15736,7 +15736,7 @@ "ContextLabel\n" "value.text" msgid "Decrease Size" -msgstr "" +msgstr "Еиҵатәтәуп акегль" #: GenericCommands.xcu msgctxt "" @@ -15745,7 +15745,7 @@ "TooltipLabel\n" "value.text" msgid "Decrease Font Size" -msgstr "" +msgstr "Еиҵатәтәуп акегль" #: GenericCommands.xcu msgctxt "" @@ -15754,7 +15754,7 @@ "Label\n" "value.text" msgid "Select Module" -msgstr "" +msgstr "Иалхтәуп амодуль" #: GenericCommands.xcu msgctxt "" @@ -15790,7 +15790,7 @@ "Label\n" "value.text" msgid "Object Catalog" -msgstr "" +msgstr "Аобиеқтқәа ркаталог" #: GenericCommands.xcu msgctxt "" @@ -15880,7 +15880,7 @@ "Label\n" "value.text" msgid "Find Previous" -msgstr "" +msgstr "Аҧхьатәи" #: GenericCommands.xcu msgctxt "" @@ -15916,7 +15916,7 @@ "Label\n" "value.text" msgid "Close Find Bar" -msgstr "" +msgstr "Иарктәуп аҧшаарҭа апанель" #: GenericCommands.xcu msgctxt "" @@ -15979,7 +15979,7 @@ "Label\n" "value.text" msgid "Find Parenthesis" -msgstr "" +msgstr "Иҧшаатәуп ахыц" #: GenericCommands.xcu msgctxt "" @@ -15988,7 +15988,7 @@ "Label\n" "value.text" msgid "Edit Macros" -msgstr "" +msgstr "Амакросқәа аредакциарзура" #: GenericCommands.xcu msgctxt "" @@ -16069,7 +16069,7 @@ "Label\n" "value.text" msgid "Send Default Fax" -msgstr "" +msgstr "Идәықәҵатәуп афакс" #: GenericCommands.xcu msgctxt "" @@ -16186,7 +16186,7 @@ "Label\n" "value.text" msgid "Zoom" -msgstr "" +msgstr "Амасштаб" #: GenericCommands.xcu msgctxt "" @@ -16204,7 +16204,7 @@ "Label\n" "value.text" msgid "Zoom In" -msgstr "" +msgstr "Ирдуны" #: GenericCommands.xcu msgctxt "" @@ -16222,7 +16222,7 @@ "Label\n" "value.text" msgid "Zoom Out" -msgstr "" +msgstr "Ирхәыҷны" #: GenericCommands.xcu msgctxt "" @@ -16231,7 +16231,7 @@ "Label\n" "value.text" msgid "Zoom Out" -msgstr "" +msgstr "Ирхәыҷны" #: GenericCommands.xcu msgctxt "" @@ -16312,7 +16312,7 @@ "Label\n" "value.text" msgid "Entire Page" -msgstr "" +msgstr "Адаҟьа зегьы" #: GenericCommands.xcu msgctxt "" @@ -16627,7 +16627,7 @@ "Label\n" "value.text" msgid "Save Image" -msgstr "Иеиқәырхатәуп асахьа" +msgstr "Еиқәырхатәуп асахьа" #: GenericCommands.xcu msgctxt "" @@ -16636,7 +16636,7 @@ "ContextLabel\n" "value.text" msgid "Save..." -msgstr "Иеиқәырхатәуп..." +msgstr "Еиқәырхатәуп..." #: GenericCommands.xcu msgctxt "" @@ -16645,7 +16645,7 @@ "Label\n" "value.text" msgid "~Original Size" -msgstr "" +msgstr "Ахалагаратә шәагаа" #: GenericCommands.xcu msgctxt "" @@ -16663,7 +16663,7 @@ "Label\n" "value.text" msgid "~Forms" -msgstr "" +msgstr "Аформақәа" #: GenericCommands.xcu msgctxt "" @@ -16672,7 +16672,7 @@ "Label\n" "value.text" msgid "Templates" -msgstr "" +msgstr "Ашаблонқәа" #: GenericCommands.xcu msgctxt "" @@ -16708,7 +16708,7 @@ "Label\n" "value.text" msgid "~Open..." -msgstr "" +msgstr "Иаарттәуп..." #: GenericCommands.xcu msgctxt "" @@ -16717,7 +16717,7 @@ "Label\n" "value.text" msgid "Open Remote" -msgstr "" +msgstr "Иаарттәуп инахараны" #: GenericCommands.xcu msgctxt "" @@ -16726,7 +16726,7 @@ "ContextLabel\n" "value.text" msgid "Open Remote ~File..." -msgstr "" +msgstr "Иаарттәуп афаил инахараны..." #: GenericCommands.xcu msgctxt "" @@ -16735,7 +16735,7 @@ "TooltipLabel\n" "value.text" msgid "Open Remote File" -msgstr "" +msgstr "Иаарттәуп афаил инахараны" #: GenericCommands.xcu msgctxt "" @@ -16744,7 +16744,7 @@ "Label\n" "value.text" msgid "Save Remote" -msgstr "Иеиқәырхатәуп инахараны" +msgstr "Еиқәырхатәуп инахараны" #: GenericCommands.xcu msgctxt "" @@ -16753,7 +16753,7 @@ "ContextLabel\n" "value.text" msgid "Sa~ve Remote File..." -msgstr "" +msgstr "Иеиқәырхатәуп афаил инахараны..." #: GenericCommands.xcu msgctxt "" @@ -16762,7 +16762,7 @@ "TooltipLabel\n" "value.text" msgid "Save Remote File" -msgstr "Иеиқәырхатәуп афаил инахараны" +msgstr "Еиқәырхатәуп афаил инахараны" #: GenericCommands.xcu msgctxt "" @@ -16771,7 +16771,7 @@ "PopupLabel\n" "value.text" msgid "Save Remote File..." -msgstr "Иеиқәырхатәуп афаил инахараны... " +msgstr "Еиқәырхатәуп афаил инахараны... " #: GenericCommands.xcu msgctxt "" @@ -16789,7 +16789,7 @@ "Label\n" "value.text" msgid "Save ~As..." -msgstr "Иеиқәырхатәуп иаба(ишҧа)" +msgstr "Еиқәырхатәуп иаба(ишҧа)" #: GenericCommands.xcu msgctxt "" @@ -16798,7 +16798,7 @@ "Label\n" "value.text" msgid "Save a Copy..." -msgstr "Иеиқәырхатәуп акопиа..." +msgstr "Еиқәырхатәуп акопиа..." #. This is the action to create a private working copy of the document on a server #: GenericCommands.xcu @@ -16845,7 +16845,7 @@ "Label\n" "value.text" msgid "~Print..." -msgstr "" +msgstr "Акьыҧхьра..." #: GenericCommands.xcu msgctxt "" @@ -16863,7 +16863,7 @@ "Label\n" "value.text" msgid "~Save" -msgstr "Иеиқәырхатәуп" +msgstr "Еиқәырхатәуп" #: GenericCommands.xcu msgctxt "" @@ -16872,7 +16872,7 @@ "Label\n" "value.text" msgid "Save Document" -msgstr "Иеиқәырхатәуп адокумент" +msgstr "Еиқәырхатәуп адокумент" #: GenericCommands.xcu msgctxt "" @@ -16989,7 +16989,7 @@ "Label\n" "value.text" msgid "Select" -msgstr "" +msgstr "Иалкаатәуп" #: GenericCommands.xcu msgctxt "" @@ -17106,7 +17106,7 @@ "Label\n" "value.text" msgid "~Chart..." -msgstr "" +msgstr "Адиаграмма" #: GenericCommands.xcu msgctxt "" @@ -17124,7 +17124,7 @@ "Label\n" "value.text" msgid "Chart from File..." -msgstr "" +msgstr "Адиаграмма афаил аҟынтәи..." #: GenericCommands.xcu msgctxt "" @@ -17133,7 +17133,7 @@ "Label\n" "value.text" msgid "Bullets" -msgstr "" +msgstr "Амаркерқәа" #: GenericCommands.xcu msgctxt "" @@ -17358,7 +17358,7 @@ "Label\n" "value.text" msgid "Stop Loading" -msgstr "" +msgstr "Иаанкылатәуп аҭагалара" #: GenericCommands.xcu msgctxt "" @@ -17439,7 +17439,7 @@ "Label\n" "value.text" msgid "~New" -msgstr "" +msgstr "Иаҧҵатәуп" #: GenericCommands.xcu msgctxt "" @@ -17457,7 +17457,7 @@ "Label\n" "value.text" msgid "Save as Template..." -msgstr "Иеиқәырхатәуп шаблон ҳасабла..." +msgstr "Еиқәырхатәуп шаблон ҳасабла..." #: GenericCommands.xcu msgctxt "" @@ -17475,7 +17475,7 @@ "Label\n" "value.text" msgid "Styles" -msgstr "" +msgstr "Астильқәа" #: GenericCommands.xcu msgctxt "" @@ -17484,7 +17484,7 @@ "ContextLabel\n" "value.text" msgid "St~yles and Formatting" -msgstr "" +msgstr "Астильқәеи аформатркреи" #: GenericCommands.xcu msgctxt "" @@ -17511,7 +17511,7 @@ "Label\n" "value.text" msgid "Show Formatting" -msgstr "" +msgstr "Аформатркра" #: GenericCommands.xcu msgctxt "" @@ -17529,7 +17529,7 @@ "Label\n" "value.text" msgid "~Bullets and Numbering..." -msgstr "" +msgstr "Амаркерқәеи аномерркреи..." #: GenericCommands.xcu msgctxt "" @@ -17601,7 +17601,7 @@ "Label\n" "value.text" msgid "File Document" -msgstr "" +msgstr "Еиқәырхатәуп адокумент" #: GenericCommands.xcu msgctxt "" @@ -17646,7 +17646,7 @@ "Label\n" "value.text" msgid "Apply Style" -msgstr "" +msgstr "Астиль" #: GenericCommands.xcu msgctxt "" @@ -17673,7 +17673,7 @@ "ContextLabel\n" "value.text" msgid "~Edit Style..." -msgstr "" +msgstr "Иҧсахтәуп астиль..." #: GenericCommands.xcu msgctxt "" @@ -17682,7 +17682,7 @@ "Label\n" "value.text" msgid "Edit" -msgstr "" +msgstr "Ариашара" #: GenericCommands.xcu msgctxt "" @@ -17691,7 +17691,7 @@ "ContextLabel\n" "value.text" msgid "~New Style..." -msgstr "" +msgstr "Иаҧҵатәуп астиль" #: GenericCommands.xcu msgctxt "" @@ -17700,7 +17700,7 @@ "Label\n" "value.text" msgid "New" -msgstr "" +msgstr "Иаҧҵатәуп" #: GenericCommands.xcu msgctxt "" @@ -17727,7 +17727,7 @@ "ContextLabel\n" "value.text" msgid "~Update Style" -msgstr "" +msgstr "Ирҿыцтәуп астиль" #: GenericCommands.xcu msgctxt "" @@ -17736,7 +17736,7 @@ "Label\n" "value.text" msgid "Update" -msgstr "" +msgstr "Ирҿыцтәуп" #: GenericCommands.xcu msgctxt "" @@ -17817,7 +17817,7 @@ "Label\n" "value.text" msgid "File Selection" -msgstr "" +msgstr "Афаил алхра" #: GenericCommands.xcu msgctxt "" @@ -17844,7 +17844,7 @@ "Label\n" "value.text" msgid "~OLE Object..." -msgstr "" +msgstr "OLE аобиеқт..." #: GenericCommands.xcu msgctxt "" @@ -17889,7 +17889,7 @@ "Label\n" "value.text" msgid "Page Width" -msgstr "" +msgstr "Адаҟьа аҭбаара" #: GenericCommands.xcu msgctxt "" @@ -17907,7 +17907,7 @@ "Label\n" "value.text" msgid "Object Zoom" -msgstr "" +msgstr "Аобиеқт амасштаб" #: GenericCommands.xcu msgctxt "" @@ -17979,7 +17979,7 @@ "Label\n" "value.text" msgid "Open Hyperlink" -msgstr "" +msgstr "Иаарттәуп агиперзхьарҧш" #: GenericCommands.xcu msgctxt "" @@ -18006,7 +18006,7 @@ "Label\n" "value.text" msgid "~Formula..." -msgstr "~Аформула..." +msgstr "Аформула..." #: GenericCommands.xcu msgctxt "" @@ -18024,7 +18024,7 @@ "Label\n" "value.text" msgid "Ob~ject" -msgstr "" +msgstr "Аобиеқт" #: GenericCommands.xcu msgctxt "" @@ -18132,7 +18132,7 @@ "Label\n" "value.text" msgid "Select" -msgstr "" +msgstr "Иалхтәуп" #: GenericCommands.xcu msgctxt "" @@ -18141,7 +18141,7 @@ "Label\n" "value.text" msgid "Load Document" -msgstr "" +msgstr "Иҭагалатәуп адокумент" #: GenericCommands.xcu msgctxt "" @@ -18186,7 +18186,7 @@ "Label\n" "value.text" msgid "~Open Template..." -msgstr "" +msgstr "Иаарттәуп ашаблон..." #: GenericCommands.xcu msgctxt "" @@ -18222,7 +18222,7 @@ "Label\n" "value.text" msgid "Size" -msgstr "" +msgstr "Акегль" #: GenericCommands.xcu msgctxt "" @@ -18240,7 +18240,7 @@ "Label\n" "value.text" msgid "~Wizards" -msgstr "" +msgstr "~Азҟаза" #: GenericCommands.xcu msgctxt "" @@ -18366,7 +18366,7 @@ "Label\n" "value.text" msgid "~Object and Shape" -msgstr "" +msgstr "Аобиеқти афигуреи" #: GenericCommands.xcu msgctxt "" @@ -18411,7 +18411,7 @@ "Label\n" "value.text" msgid "~Styles" -msgstr "" +msgstr "Астильқәа" #: GenericCommands.xcu msgctxt "" @@ -18429,7 +18429,7 @@ "Label\n" "value.text" msgid "~Form" -msgstr "" +msgstr "Аформа" #: GenericCommands.xcu msgctxt "" @@ -18465,7 +18465,7 @@ "ContextLabel\n" "value.text" msgid "Auto~Format Styles..." -msgstr "" +msgstr "Автоформат астильқәа..." #: GenericCommands.xcu msgctxt "" @@ -18474,7 +18474,7 @@ "Label\n" "value.text" msgid "Table Design..." -msgstr "" +msgstr "Атаблица адизаин..." #: GenericCommands.xcu msgctxt "" @@ -18690,7 +18690,7 @@ "Label\n" "value.text" msgid "Save Document as URL" -msgstr "Иеиқәырхатәуп адокумент URL ҳасабла" +msgstr "Еиқәырхатәуп адокумент URL ҳасабла" #: GenericCommands.xcu msgctxt "" @@ -18843,7 +18843,7 @@ "Label\n" "value.text" msgid "~Hyperlink..." -msgstr "" +msgstr "Агиперзхьарҧш..." #: GenericCommands.xcu msgctxt "" @@ -18852,7 +18852,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Hyperlink" -msgstr "" +msgstr "Ибжьаргылатәуп агиперзхьарҧш..." #: GenericCommands.xcu msgctxt "" @@ -18969,7 +18969,7 @@ "Label\n" "value.text" msgid "~Redo" -msgstr "" +msgstr "Ирхынҳәтәуп" #: GenericCommands.xcu msgctxt "" @@ -18978,7 +18978,7 @@ "Label\n" "value.text" msgid "~Undo" -msgstr "" +msgstr "Иаҟәыхтәуп" #: GenericCommands.xcu msgctxt "" @@ -18996,7 +18996,7 @@ "ContextLabel\n" "value.text" msgid "Clone Formatting" -msgstr "" +msgstr "Аформат акопиа ахыхра" #: GenericCommands.xcu msgctxt "" @@ -19023,7 +19023,7 @@ "Label\n" "value.text" msgid "Delete History" -msgstr "" +msgstr "Ирыцқьатәуп ажурнал" #: GenericCommands.xcu msgctxt "" @@ -19059,7 +19059,7 @@ "Label\n" "value.text" msgid "Paste Unformatted Text" -msgstr "" +msgstr "Ибжьаргылатәуп атеқст амацара" #: GenericCommands.xcu msgctxt "" @@ -19068,7 +19068,7 @@ "PopupLabel\n" "value.text" msgid "~Unformatted Text" -msgstr "" +msgstr "Атеқст амацара" #: GenericCommands.xcu msgctxt "" @@ -19122,7 +19122,7 @@ "Label\n" "value.text" msgid "~Select Source..." -msgstr "" +msgstr "Иалхтәуп ахыҵхырҭа..." #: GenericCommands.xcu msgctxt "" @@ -19140,7 +19140,7 @@ "Label\n" "value.text" msgid "Select ~All" -msgstr "" +msgstr "Иалкаатәуп зегьы" #: GenericCommands.xcu msgctxt "" @@ -19158,7 +19158,7 @@ "Label\n" "value.text" msgid "Select ~All" -msgstr "" +msgstr "Иалкаатәуп зегьы" #: GenericCommands.xcu msgctxt "" @@ -19248,7 +19248,7 @@ "Label\n" "value.text" msgid "To File End" -msgstr "" +msgstr "Ииастәуп афаил анҵәамҭахь" #: GenericCommands.xcu msgctxt "" @@ -19257,7 +19257,7 @@ "Label\n" "value.text" msgid "To File Begin" -msgstr "" +msgstr "Ииастәуп афаил алагамҭахь" #: GenericCommands.xcu msgctxt "" @@ -19320,7 +19320,7 @@ "Label\n" "value.text" msgid "Restore Editing View" -msgstr "" +msgstr "Аҵыхәтәантәи ариашара аҭыҧ" #: GenericCommands.xcu msgctxt "" @@ -19356,7 +19356,7 @@ "Label\n" "value.text" msgid "Select Down" -msgstr "" +msgstr "Иалкаатәуп ҵаҟа" #: GenericCommands.xcu msgctxt "" @@ -19365,7 +19365,7 @@ "Label\n" "value.text" msgid "Select Up" -msgstr "" +msgstr "Иалкаатәуп хыхь" #: GenericCommands.xcu msgctxt "" @@ -19374,7 +19374,7 @@ "Label\n" "value.text" msgid "Select Left" -msgstr "" +msgstr "Иалкаатәуп арымарахь" #: GenericCommands.xcu msgctxt "" @@ -19383,7 +19383,7 @@ "Label\n" "value.text" msgid "Select Right" -msgstr "" +msgstr "Иалкаатәуп арыӷьарахь" #: GenericCommands.xcu msgctxt "" @@ -19392,7 +19392,7 @@ "Label\n" "value.text" msgid "Select Page Down" -msgstr "" +msgstr "Иалкаатәуп адаҟьа ҵаҟа" #: GenericCommands.xcu msgctxt "" @@ -19401,7 +19401,7 @@ "Label\n" "value.text" msgid "Select Page Up" -msgstr "" +msgstr "Иалкаатәуп адаҟьа хыхь" #: GenericCommands.xcu msgctxt "" @@ -19428,7 +19428,7 @@ "Label\n" "value.text" msgid "Select Page Left" -msgstr "" +msgstr "Иалкаатәуп адаҟьа арымарахь" #: GenericCommands.xcu msgctxt "" @@ -19455,7 +19455,7 @@ "Label\n" "value.text" msgid "Select to File Begin" -msgstr "" +msgstr "Иалкаатәуп афаил алагамаҭанӡа" #: GenericCommands.xcu msgctxt "" @@ -19482,7 +19482,7 @@ "Label\n" "value.text" msgid "Select to File End" -msgstr "" +msgstr "Иалкаатәуп афаил анҵәамҭанӡа" #: GenericCommands.xcu msgctxt "" @@ -19500,7 +19500,7 @@ "Label\n" "value.text" msgid "Select to Document Begin" -msgstr "" +msgstr "Иалкаатәуп адокумент алагамаҭанӡа" #: GenericCommands.xcu msgctxt "" @@ -19518,7 +19518,7 @@ "Label\n" "value.text" msgid "Select to Document End" -msgstr "" +msgstr "Иалкаатәуп адокумент анҵәамҭанӡа" #: GenericCommands.xcu msgctxt "" @@ -19635,7 +19635,7 @@ "Label\n" "value.text" msgid "Zoom Next" -msgstr "" +msgstr "Анаҩстәи амасштаб" #: GenericCommands.xcu msgctxt "" @@ -19644,7 +19644,7 @@ "Label\n" "value.text" msgid "Zoom Previous" -msgstr "" +msgstr "Аҧхьатәи амасштаб" #: GenericCommands.xcu msgctxt "" @@ -19689,7 +19689,7 @@ "Label\n" "value.text" msgid "Edit Macros" -msgstr "" +msgstr "Амакросқәа аредакциарзура" #: GenericCommands.xcu msgctxt "" @@ -19752,7 +19752,7 @@ "Label\n" "value.text" msgid "Versions..." -msgstr "" +msgstr "Аверсиақәа..." #: GenericCommands.xcu msgctxt "" @@ -20229,7 +20229,7 @@ "ContextLabel\n" "value.text" msgid "S~pecial Character..." -msgstr "" +msgstr "Испециалтәу асимволқәа..." #: GenericCommands.xcu msgctxt "" @@ -20301,7 +20301,7 @@ "ContextLabel\n" "value.text" msgid "~Export as PDF..." -msgstr "" +msgstr "PDF ахь аекспорт..." #: GenericCommands.xcu msgctxt "" @@ -20310,7 +20310,7 @@ "TooltipLabel\n" "value.text" msgid "Export as PDF" -msgstr "" +msgstr "PDF ахь аекспорт" #: GenericCommands.xcu msgctxt "" @@ -20328,7 +20328,7 @@ "ContextLabel\n" "value.text" msgid "Export Directly as PDF" -msgstr "" +msgstr "Ишиашо PDF ахь аекспорт " #: GenericCommands.xcu msgctxt "" @@ -20337,7 +20337,7 @@ "TooltipLabel\n" "value.text" msgid "Export as PDF" -msgstr "" +msgstr "PDF ахь аекспорт" #: GenericCommands.xcu msgctxt "" @@ -20445,7 +20445,7 @@ "Label\n" "value.text" msgid "%PRODUCTNAME Credits..." -msgstr "" +msgstr "%PRODUCTNAME Алахәылаҩцәа..." #: GenericCommands.xcu msgctxt "" @@ -20490,7 +20490,7 @@ "Label\n" "value.text" msgid "Save BASIC" -msgstr "Иеиқәырхатәуп BASIC " +msgstr "Еиқәырхатәуп BASIC " #: GenericCommands.xcu msgctxt "" @@ -20508,7 +20508,7 @@ "Label\n" "value.text" msgid "Import Dialog" -msgstr "" +msgstr "Адиалог импорттәуп" #: GenericCommands.xcu msgctxt "" @@ -20616,7 +20616,7 @@ "TooltipLabel\n" "value.text" msgid "Open Clip Art and Media Gallery" -msgstr "" +msgstr "Иаарттәуп агалереиа" #: GenericCommands.xcu msgctxt "" @@ -20742,7 +20742,7 @@ "Label\n" "value.text" msgid "Table Control" -msgstr "" +msgstr "Атаблица" #: GenericCommands.xcu msgctxt "" @@ -20760,7 +20760,7 @@ "Label\n" "value.text" msgid "File Selection" -msgstr "" +msgstr "Афаил алхра" #: GenericCommands.xcu msgctxt "" @@ -20850,7 +20850,7 @@ "Label\n" "value.text" msgid "New Record" -msgstr "" +msgstr "Иацҵатәуп анҵамҭа" #: GenericCommands.xcu msgctxt "" @@ -20859,7 +20859,7 @@ "Label\n" "value.text" msgid "Delete Record" -msgstr "" +msgstr "Ианыхтәуп анҵамҭа" #: GenericCommands.xcu msgctxt "" @@ -20913,7 +20913,7 @@ "Label\n" "value.text" msgid "Save Record" -msgstr "Иеиқәырхатәуп анҵамҭа" +msgstr "Еиқәырхатәуп анҵамҭа" #: GenericCommands.xcu msgctxt "" @@ -20949,7 +20949,7 @@ "Label\n" "value.text" msgid "Undo: Data entry" -msgstr "" +msgstr "Иаҟәыхтәуп: адырқәа рҭагалара" #: GenericCommands.xcu msgctxt "" @@ -21057,7 +21057,7 @@ "Label\n" "value.text" msgid "Current Bullet List Type" -msgstr "" +msgstr "Амаркерқәа уажәтәи рстиль" #: GenericCommands.xcu msgctxt "" @@ -21120,7 +21120,7 @@ "Label\n" "value.text" msgid "Print Pr~eview" -msgstr "" +msgstr "Акьыҧхьра ахәаҧшра" #: GenericCommands.xcu msgctxt "" @@ -21138,7 +21138,7 @@ "PopupLabel\n" "value.text" msgid "Close Preview" -msgstr "" +msgstr "Иарктәуп ахәаҧшра" #: GenericCommands.xcu msgctxt "" @@ -21156,7 +21156,7 @@ "Label\n" "value.text" msgid "Open in Design Mode" -msgstr "" +msgstr "Иаарттәуп апроеқтҿаҵара арежим ала" #: GenericCommands.xcu msgctxt "" @@ -21291,7 +21291,7 @@ "Label\n" "value.text" msgid "Add Table..." -msgstr "" +msgstr "Иацҵатәуп атаблица..." #: GenericCommands.xcu msgctxt "" @@ -21300,7 +21300,7 @@ "Label\n" "value.text" msgid "Apply Filter" -msgstr "" +msgstr "Ихархәатәуп афильтр" #: GenericCommands.xcu msgctxt "" @@ -21336,7 +21336,7 @@ "Label\n" "value.text" msgid "Wizards On/Off" -msgstr "" +msgstr "Азҟаза" #: GenericCommands.xcu msgctxt "" @@ -21372,7 +21372,7 @@ "Label\n" "value.text" msgid "Apply Form-Based Filter" -msgstr "" +msgstr "Ихархәатәуп афильтр" #: GenericCommands.xcu msgctxt "" @@ -21849,7 +21849,7 @@ "Label\n" "value.text" msgid "Delete All Comments" -msgstr "" +msgstr "Ианыхтәуп акомментариқәа зегьы" #: GenericCommands.xcu msgctxt "" @@ -21867,7 +21867,7 @@ "Label\n" "value.text" msgid "Delete All Comments by This Author" -msgstr "" +msgstr "Ианыхтәуп автор икомментариқәа зегьы" #: GenericCommands.xcu msgctxt "" @@ -21885,7 +21885,7 @@ "Label\n" "value.text" msgid "Delete Comment" -msgstr "" +msgstr "Ианыхтәуп акомментари" #: GenericCommands.xcu msgctxt "" @@ -21975,7 +21975,7 @@ "Label\n" "value.text" msgid "~File" -msgstr "" +msgstr "~Афаил" #: GenericCommands.xcu msgctxt "" @@ -22047,7 +22047,7 @@ "Label\n" "value.text" msgid "~Object" -msgstr "" +msgstr "Аобиеқт" #: GenericCommands.xcu msgctxt "" @@ -22056,7 +22056,7 @@ "Label\n" "value.text" msgid "~Chart" -msgstr "" +msgstr "Адиаграмма" #: GenericCommands.xcu msgctxt "" @@ -22065,7 +22065,7 @@ "Label\n" "value.text" msgid "~Edit" -msgstr "" +msgstr "~Ариашара" #: GenericCommands.xcu msgctxt "" @@ -22101,7 +22101,7 @@ "Label\n" "value.text" msgid "~Macros" -msgstr "" +msgstr "Амакросқәа" #: GenericCommands.xcu msgctxt "" @@ -22218,7 +22218,7 @@ "Label\n" "value.text" msgid "Formatting Mark" -msgstr "" +msgstr "Аформатркра асимвол" #: GenericCommands.xcu msgctxt "" @@ -22434,7 +22434,7 @@ "Label\n" "value.text" msgid "For Selection" -msgstr "" +msgstr "Алкаараз" #: GenericCommands.xcu msgctxt "" @@ -22443,7 +22443,7 @@ "Label\n" "value.text" msgid "For Paragraph" -msgstr "" +msgstr "Абзац азы" #: GenericCommands.xcu msgctxt "" @@ -22506,7 +22506,7 @@ "Label\n" "value.text" msgid "Templates" -msgstr "" +msgstr "Ашаблонқәа" #: GenericCommands.xcu msgctxt "" @@ -22533,7 +22533,7 @@ "Label\n" "value.text" msgid "3D Model..." -msgstr "" +msgstr "3D амодель..." #: GenericCommands.xcu msgctxt "" @@ -22551,7 +22551,7 @@ "Label\n" "value.text" msgid "Select" -msgstr "" +msgstr "Иалкаатәуп" #: GenericCommands.xcu msgctxt "" @@ -22605,7 +22605,7 @@ "UIName\n" "value.text" msgid "3D Object" -msgstr "" +msgstr "3D-обиеқт" #: ImpressWindowState.xcu msgctxt "" @@ -22758,7 +22758,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "" +msgstr "OLE аобиеқт" #: ImpressWindowState.xcu msgctxt "" @@ -22821,7 +22821,7 @@ "UIName\n" "value.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: ImpressWindowState.xcu msgctxt "" @@ -22830,7 +22830,7 @@ "UIName\n" "value.text" msgid "Table Text" -msgstr "" +msgstr "Атаблица атеқст" #: ImpressWindowState.xcu msgctxt "" @@ -22866,7 +22866,7 @@ "UIName\n" "value.text" msgid "3D-Objects" -msgstr "" +msgstr "3D-обиеқтқәа" #: ImpressWindowState.xcu msgctxt "" @@ -22947,7 +22947,7 @@ "UIName\n" "value.text" msgid "Form Filter" -msgstr "" +msgstr "Аформақәа рфильтр" #: ImpressWindowState.xcu msgctxt "" @@ -23091,7 +23091,7 @@ "UIName\n" "value.text" msgid "Flowchart" -msgstr "" +msgstr "Аблок-схемақәа" #: ImpressWindowState.xcu msgctxt "" @@ -23181,7 +23181,7 @@ "UIName\n" "value.text" msgid "Text Formatting" -msgstr "" +msgstr "Атеқст аформатркра" #: ImpressWindowState.xcu msgctxt "" @@ -23199,7 +23199,7 @@ "UIName\n" "value.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: ImpressWindowState.xcu msgctxt "" @@ -23208,7 +23208,7 @@ "UIName\n" "value.text" msgid "Zoom" -msgstr "" +msgstr "Амасштаб" #: ImpressWindowState.xcu msgctxt "" @@ -23226,7 +23226,7 @@ "UIName\n" "value.text" msgid "Edit Points" -msgstr "" +msgstr "Агеометриа аҧсахра" #: ImpressWindowState.xcu msgctxt "" @@ -23325,7 +23325,7 @@ "Label\n" "value.text" msgid "F~ont Size..." -msgstr "" +msgstr "Акегль..." #: MathCommands.xcu msgctxt "" @@ -23370,7 +23370,7 @@ "Label\n" "value.text" msgid "~Import Formula..." -msgstr "~Аформула аимпорт..." +msgstr "Аформула аимпорт..." #: MathCommands.xcu msgctxt "" @@ -23523,7 +23523,7 @@ "Label\n" "value.text" msgid "Formula Cursor" -msgstr "" +msgstr "Аформула арбага" #: MathCommands.xcu msgctxt "" @@ -23532,7 +23532,7 @@ "Label\n" "value.text" msgid "New Line" -msgstr "" +msgstr "Ацәаҳәа ҿыц" #: MathCommands.xcu msgctxt "" @@ -23820,7 +23820,7 @@ "Label\n" "value.text" msgid "Page Settings" -msgstr "" +msgstr "Адаҟьа апараметрқәа" #: ReportCommands.xcu msgctxt "" @@ -23829,7 +23829,7 @@ "ContextLabel\n" "value.text" msgid "~Page..." -msgstr "" +msgstr "Адаҟьа..." #: ReportCommands.xcu msgctxt "" @@ -23847,7 +23847,7 @@ "Label\n" "value.text" msgid "~Page Numbers..." -msgstr "" +msgstr "Адаҟьақәа рномерқәа..." #: ReportCommands.xcu msgctxt "" @@ -23865,7 +23865,7 @@ "Label\n" "value.text" msgid "~Select Report" -msgstr "" +msgstr "Иалхтәуп аҳасабырба" #: ReportCommands.xcu msgctxt "" @@ -24126,7 +24126,7 @@ "Label\n" "value.text" msgid "Resize" -msgstr "" +msgstr "Иҧсахтәуп ашәагаа" #: ReportCommands.xcu msgctxt "" @@ -24216,7 +24216,7 @@ "Label\n" "value.text" msgid "Object Resizing" -msgstr "" +msgstr "Иҧсахтәуп аобиеқтқәа рышәагаақәа" #: Sidebar.xcu msgctxt "" @@ -24297,7 +24297,7 @@ "Title\n" "value.text" msgid "Styles and Formatting" -msgstr "" +msgstr "Астильқәеи аформатркреи" #: Sidebar.xcu msgctxt "" @@ -24351,7 +24351,7 @@ "Title\n" "value.text" msgid "Character" -msgstr "" +msgstr "Асимволқәа" #: Sidebar.xcu msgctxt "" @@ -24369,7 +24369,7 @@ "Title\n" "value.text" msgid "Styles" -msgstr "" +msgstr "Астильқәа" #: Sidebar.xcu msgctxt "" @@ -24378,7 +24378,7 @@ "Title\n" "value.text" msgid "Format" -msgstr "" +msgstr "Аформат" #: Sidebar.xcu msgctxt "" @@ -24441,7 +24441,7 @@ "Title\n" "value.text" msgid "Position and Size" -msgstr "" +msgstr "Аҭыҧи ашәагааи" #: Sidebar.xcu msgctxt "" @@ -24531,7 +24531,7 @@ "Title\n" "value.text" msgid "Table Design" -msgstr "" +msgstr "Атаблица адизаин" #: Sidebar.xcu msgctxt "" @@ -24567,7 +24567,7 @@ "Title\n" "value.text" msgid "Number Format" -msgstr "" +msgstr "Ахыҧхьаӡарақәа рформат" #: Sidebar.xcu msgctxt "" @@ -24576,7 +24576,7 @@ "Title\n" "value.text" msgid "Paragraph" -msgstr "" +msgstr "Абзац" #: Sidebar.xcu msgctxt "" @@ -24630,7 +24630,7 @@ "Title\n" "value.text" msgid "Styles and Formatting" -msgstr "" +msgstr "Астильқәеи аформатркреи" #: Sidebar.xcu msgctxt "" @@ -24729,7 +24729,7 @@ "Title\n" "value.text" msgid "Character" -msgstr "" +msgstr "Асимволқәа" #: StartModuleCommands.xcu msgctxt "" @@ -24738,7 +24738,7 @@ "Label\n" "value.text" msgid "~New" -msgstr "" +msgstr "Иаҧҵатәуп" #: StartModuleCommands.xcu msgctxt "" @@ -24810,7 +24810,7 @@ "Label\n" "value.text" msgid "~Open..." -msgstr "" +msgstr "Иаарттәуп..." #: StartModuleCommands.xcu msgctxt "" @@ -24837,7 +24837,7 @@ "Label\n" "value.text" msgid "~Print..." -msgstr "" +msgstr "Акьыҧхьра..." #: StartModuleCommands.xcu msgctxt "" @@ -24864,7 +24864,7 @@ "Label\n" "value.text" msgid "~Save" -msgstr "Иеиқәырхатәуп" +msgstr "Еиқәырхатәуп" #: StartModuleCommands.xcu msgctxt "" @@ -24873,7 +24873,7 @@ "Label\n" "value.text" msgid "Save ~As..." -msgstr "Иеиқәырхатәуп иаба(ишҧа)..." +msgstr "Еиқәырхатәуп иаба(ишҧа)..." #: StartModuleCommands.xcu msgctxt "" @@ -24900,7 +24900,7 @@ "Label\n" "value.text" msgid "Undo" -msgstr "" +msgstr "Иаҟәыхтәуп" #: StartModuleCommands.xcu msgctxt "" @@ -24909,7 +24909,7 @@ "Label\n" "value.text" msgid "~Edit" -msgstr "" +msgstr "~Ариашара" #: StartModuleCommands.xcu msgctxt "" @@ -24927,7 +24927,7 @@ "Label\n" "value.text" msgid "~Macros" -msgstr "" +msgstr "Амакросқәа" #: StartModuleCommands.xcu msgctxt "" @@ -24936,7 +24936,7 @@ "Label\n" "value.text" msgid "~File" -msgstr "" +msgstr "~Афаил" #: StartModuleCommands.xcu msgctxt "" @@ -25152,7 +25152,7 @@ "Label\n" "value.text" msgid "~Hidden Paragraphs" -msgstr "" +msgstr "Иҵәаху абзацқәа" #: WriterCommands.xcu msgctxt "" @@ -25170,7 +25170,7 @@ "Label\n" "value.text" msgid "Anchor to Character" -msgstr "" +msgstr "Асимвол иадҳәалатәуп" #: WriterCommands.xcu msgctxt "" @@ -25179,7 +25179,7 @@ "ContextLabel\n" "value.text" msgid "To ~Character" -msgstr "" +msgstr "Асимвол ахь" #: WriterCommands.xcu msgctxt "" @@ -25269,7 +25269,7 @@ "Label\n" "value.text" msgid "Table of Contents" -msgstr "" +msgstr "Ахы" #: WriterCommands.xcu msgctxt "" @@ -25341,7 +25341,7 @@ "Label\n" "value.text" msgid "Update All" -msgstr "" +msgstr "Ирҿыцтәуп зегьы" #: WriterCommands.xcu msgctxt "" @@ -25503,7 +25503,7 @@ "Label\n" "value.text" msgid "~Links" -msgstr "" +msgstr "Аимадарақәа" #: WriterCommands.xcu msgctxt "" @@ -25602,7 +25602,7 @@ "Label\n" "value.text" msgid "~Update All" -msgstr "" +msgstr "Ирҿыцтәуп зегьы" #: WriterCommands.xcu msgctxt "" @@ -25656,7 +25656,7 @@ "Label\n" "value.text" msgid "~Charts" -msgstr "" +msgstr "Адиаграммақәа" #: WriterCommands.xcu msgctxt "" @@ -25665,7 +25665,7 @@ "Label\n" "value.text" msgid "~Hyperlink" -msgstr "" +msgstr "Агиперзхьарҧш" #: WriterCommands.xcu msgctxt "" @@ -25674,7 +25674,7 @@ "PopupLabel\n" "value.text" msgid "Edit Hyperlink..." -msgstr "" +msgstr "Иҧсахтәуп агиперзхьарҧш..." #: WriterCommands.xcu msgctxt "" @@ -25683,7 +25683,7 @@ "Label\n" "value.text" msgid "Remove Hyperlink" -msgstr "" +msgstr "Ианыхтәуп агиперзхьарҧш" #: WriterCommands.xcu msgctxt "" @@ -25692,7 +25692,7 @@ "Label\n" "value.text" msgid "Copy Hyperlink Location" -msgstr "" +msgstr "Агиперзхьарҧш акопиа ахыхтәуп" #: WriterCommands.xcu msgctxt "" @@ -25827,7 +25827,7 @@ "Label\n" "value.text" msgid "Insert Hyperlink" -msgstr "" +msgstr "Ибжьаргылатәуп агиперзхьарҧш" #: WriterCommands.xcu msgctxt "" @@ -25872,7 +25872,7 @@ "Label\n" "value.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: WriterCommands.xcu msgctxt "" @@ -25881,7 +25881,7 @@ "ContextLabel\n" "value.text" msgid "Insert ~Table..." -msgstr "" +msgstr "Ибжьаргылатәуп атаблица..." #: WriterCommands.xcu msgctxt "" @@ -25998,7 +25998,7 @@ "ContextLabel\n" "value.text" msgid "To ~Paragraph" -msgstr "" +msgstr "Абзац ахь" #: WriterCommands.xcu msgctxt "" @@ -26097,7 +26097,7 @@ "Label\n" "value.text" msgid "Save Merged Documents" -msgstr "" +msgstr "Еиқәырхатәуп еидҵоу адокуменртқәа" #: WriterCommands.xcu msgctxt "" @@ -26142,7 +26142,7 @@ "Label\n" "value.text" msgid "~Formula..." -msgstr "~Аформула..." +msgstr "Аформула" #: WriterCommands.xcu msgctxt "" @@ -26385,7 +26385,7 @@ "Label\n" "value.text" msgid "Hyperlinks Active" -msgstr "" +msgstr "Иактиву агиперзхьарҧшқәа" #: WriterCommands.xcu msgctxt "" @@ -26412,7 +26412,7 @@ "Label\n" "value.text" msgid "Select Character Left" -msgstr "" +msgstr "Иалкаатәуп армарахьтәи асимвол" #: WriterCommands.xcu msgctxt "" @@ -26421,7 +26421,7 @@ "Label\n" "value.text" msgid "Select Character Right" -msgstr "" +msgstr "Иалкаатәуп арӷьарахьтәи асимвол" #: WriterCommands.xcu msgctxt "" @@ -26430,7 +26430,7 @@ "Label\n" "value.text" msgid "Select to Top Line" -msgstr "" +msgstr "Иалкаатәуп хыхьтәи ацәаҳәа аҟынӡа" #: WriterCommands.xcu msgctxt "" @@ -26439,7 +26439,7 @@ "Label\n" "value.text" msgid "Select Down" -msgstr "" +msgstr "Иалкаатәуп ҵаҟатәи ацәаҳәа аҟынӡа" #: WriterCommands.xcu msgctxt "" @@ -26448,7 +26448,7 @@ "Label\n" "value.text" msgid "Select to Begin of Line" -msgstr "" +msgstr "Иалкаатәуп ацәаҳәа алагамҭанӡа" #: WriterCommands.xcu msgctxt "" @@ -26457,7 +26457,7 @@ "Label\n" "value.text" msgid "Select to End of Line" -msgstr "" +msgstr "Иалкаатәуп ацәаҳәа анҵәамҭанӡа" #: WriterCommands.xcu msgctxt "" @@ -26466,7 +26466,7 @@ "Label\n" "value.text" msgid "Select to Document Begin" -msgstr "" +msgstr "Иалкаатәуп адокумент алагамаҭанӡа" #: WriterCommands.xcu msgctxt "" @@ -26475,7 +26475,7 @@ "Label\n" "value.text" msgid "Select to Document End" -msgstr "" +msgstr "Иалкаатәуп адокумент анҵәамҭанӡа" #: WriterCommands.xcu msgctxt "" @@ -26484,7 +26484,7 @@ "Label\n" "value.text" msgid "Select to Begin of Next Page" -msgstr "" +msgstr "Иалкаатәуп анаҩстәи адаҟьа алагамҭанӡа" #: WriterCommands.xcu msgctxt "" @@ -26493,7 +26493,7 @@ "Label\n" "value.text" msgid "Select to End of Next Page" -msgstr "" +msgstr "Иалкаатәуп анаҩстәи адаҟьа анҵәамҭанӡа" #: WriterCommands.xcu msgctxt "" @@ -26502,7 +26502,7 @@ "Label\n" "value.text" msgid "Select to Begin of Previous Page" -msgstr "" +msgstr "Иалкаатәуп аҧхьатәи адаҟьа алагамҭанӡа" #: WriterCommands.xcu msgctxt "" @@ -26511,7 +26511,7 @@ "Label\n" "value.text" msgid "Select to End of Previous Page" -msgstr "" +msgstr "Иалкаатәуп аҧхьатәи адаҟьа анҵәамҭанӡа" #: WriterCommands.xcu msgctxt "" @@ -26520,7 +26520,7 @@ "Label\n" "value.text" msgid "Select to Page Begin" -msgstr "" +msgstr "Иалкаатәуп адаҟьа алагамҭанӡа" #: WriterCommands.xcu msgctxt "" @@ -26538,7 +26538,7 @@ "Label\n" "value.text" msgid "Select to Page End" -msgstr "" +msgstr "Иалкаатәуп адаҟьа анҵәамҭанӡа" #: WriterCommands.xcu msgctxt "" @@ -26592,7 +26592,7 @@ "Label\n" "value.text" msgid "Select to Paragraph Begin" -msgstr "" +msgstr "Иалкаатәуп абзац алагамҭанӡа" #: WriterCommands.xcu msgctxt "" @@ -26601,7 +26601,7 @@ "Label\n" "value.text" msgid "Select to Paragraph End" -msgstr "" +msgstr "Иалкаатәуп абзац анҵәамҭанӡа" #: WriterCommands.xcu msgctxt "" @@ -26610,7 +26610,7 @@ "Label\n" "value.text" msgid "Select to Word Right" -msgstr "" +msgstr "Иалкаатәуп армарахьтәи ажәа аҟынӡа" #: WriterCommands.xcu msgctxt "" @@ -26619,7 +26619,7 @@ "Label\n" "value.text" msgid "Select to Begin of Word" -msgstr "" +msgstr "Иалкаатәуп ажәа алагамҭанӡа" #: WriterCommands.xcu msgctxt "" @@ -26628,7 +26628,7 @@ "Label\n" "value.text" msgid "Select to Next Sentence" -msgstr "" +msgstr "Иалкаатәуп анаҩстәи аҳәоунӡа" #: WriterCommands.xcu msgctxt "" @@ -26637,7 +26637,7 @@ "Label\n" "value.text" msgid "Select to Previous Sentence" -msgstr "" +msgstr "Иалкаатәуп аҧхьатәи аҳәоу аҟынӡа" #: WriterCommands.xcu msgctxt "" @@ -26646,7 +26646,7 @@ "Label\n" "value.text" msgid "Select to Previous Page" -msgstr "" +msgstr "Иалкаатәуп аҧхьатәи адаҟьа аҟынӡа" #: WriterCommands.xcu msgctxt "" @@ -26655,7 +26655,7 @@ "Label\n" "value.text" msgid "Select to Next Page" -msgstr "" +msgstr "Иалкаатәуп анаҩстәи адаҟьа аҟынӡа" #: WriterCommands.xcu msgctxt "" @@ -26682,7 +26682,7 @@ "Label\n" "value.text" msgid "Number Format..." -msgstr "" +msgstr "Ахыҧхьаӡаратә формат..." #: WriterCommands.xcu msgctxt "" @@ -26691,7 +26691,7 @@ "Label\n" "value.text" msgid "~Load Styles..." -msgstr "" +msgstr "Иҭагалатәуп астильқәа..." #: WriterCommands.xcu msgctxt "" @@ -26853,7 +26853,7 @@ "PopupLabel\n" "value.text" msgid "~Table Properties..." -msgstr "" +msgstr "Атаблица аҷыдаҟазшьақәа..." #: WriterCommands.xcu msgctxt "" @@ -26889,7 +26889,7 @@ "ContextLabel\n" "value.text" msgid "Clear ~Direct Formatting" -msgstr "" +msgstr "Ирыцқьатәуп аформатркра" #: WriterCommands.xcu msgctxt "" @@ -26898,7 +26898,7 @@ "TooltipLabel\n" "value.text" msgid "Clear Direct Formatting" -msgstr "" +msgstr "Ирыцқьатәуп аформатркра" #: WriterCommands.xcu msgctxt "" @@ -26961,7 +26961,7 @@ "Label\n" "value.text" msgid "Print document" -msgstr "" +msgstr "Адокумент акьыҧхьра" #: WriterCommands.xcu msgctxt "" @@ -26979,7 +26979,7 @@ "Label\n" "value.text" msgid "Close Preview" -msgstr "" +msgstr "Иарктәуп заатәи ахәаҧшра" #: WriterCommands.xcu msgctxt "" @@ -27033,7 +27033,7 @@ "Label\n" "value.text" msgid "Apply Page Style" -msgstr "" +msgstr "Ихархәатәуп адаҟьа астиль" #: WriterCommands.xcu msgctxt "" @@ -27060,7 +27060,7 @@ "Label\n" "value.text" msgid "Te~xt <-> Table..." -msgstr "" +msgstr "Атеқст <-> Атаблица..." #: WriterCommands.xcu msgctxt "" @@ -27231,7 +27231,7 @@ "Label\n" "value.text" msgid "Delete Rows" -msgstr "" +msgstr "Ианыхтәуп ацәаҳәақәа" #: WriterCommands.xcu msgctxt "" @@ -27249,7 +27249,7 @@ "Label\n" "value.text" msgid "Delete Columns" -msgstr "" +msgstr "Ианыхтәуп аиҵагылақәа" #: WriterCommands.xcu msgctxt "" @@ -27267,7 +27267,7 @@ "Label\n" "value.text" msgid "Delete Table" -msgstr "" +msgstr "Ианыхтәуп атаблица" #: WriterCommands.xcu msgctxt "" @@ -27276,7 +27276,7 @@ "ContextLabel\n" "value.text" msgid "~Table" -msgstr "" +msgstr "Атаблица" #: WriterCommands.xcu msgctxt "" @@ -27321,7 +27321,7 @@ "Label\n" "value.text" msgid "Optimize Size" -msgstr "" +msgstr "Иоптималу ашәагаа" #: WriterCommands.xcu msgctxt "" @@ -27330,7 +27330,7 @@ "Label\n" "value.text" msgid "~Bullets and Numbering..." -msgstr "" +msgstr "Амаркерқәеи аномерркреи..." #: WriterCommands.xcu msgctxt "" @@ -27339,7 +27339,7 @@ "Label\n" "value.text" msgid "To Character Left" -msgstr "" +msgstr "Ииастәуп символк армарахь" #: WriterCommands.xcu msgctxt "" @@ -27366,7 +27366,7 @@ "Label\n" "value.text" msgid "Select Row" -msgstr "" +msgstr "Иалкаатәуп ацәаҳәа" #: WriterCommands.xcu msgctxt "" @@ -27384,7 +27384,7 @@ "Label\n" "value.text" msgid "Select Cell" -msgstr "" +msgstr "Иалхтәуп абларҭа" #: WriterCommands.xcu msgctxt "" @@ -27411,7 +27411,7 @@ "Label\n" "value.text" msgid "Select Column" -msgstr "" +msgstr "Иалкаатәуп аиҵагыла" #: WriterCommands.xcu msgctxt "" @@ -27438,7 +27438,7 @@ "Label\n" "value.text" msgid "Select Table" -msgstr "" +msgstr "Иалкаатәуп атаблица" #: WriterCommands.xcu msgctxt "" @@ -27447,7 +27447,7 @@ "ContextLabel\n" "value.text" msgid "~Table" -msgstr "" +msgstr "Атаблица" #: WriterCommands.xcu msgctxt "" @@ -27735,7 +27735,7 @@ "Label\n" "value.text" msgid "To Paragraph Begin" -msgstr "" +msgstr "Ииастәуп абзац алагамҭахь" #: WriterCommands.xcu msgctxt "" @@ -27753,7 +27753,7 @@ "Label\n" "value.text" msgid "To Paragraph End" -msgstr "" +msgstr "Ииастәуп абзац анҵәамҭахь" #: WriterCommands.xcu msgctxt "" @@ -27924,7 +27924,7 @@ "Label\n" "value.text" msgid "Delete Row" -msgstr "" +msgstr "Ианыхтәуп ацәаҳәа" #: WriterCommands.xcu msgctxt "" @@ -27969,7 +27969,7 @@ "Label\n" "value.text" msgid "Page Formatting" -msgstr "" +msgstr "Адаҟьа аформатркра" #: WriterCommands.xcu msgctxt "" @@ -27996,7 +27996,7 @@ "Label\n" "value.text" msgid "Cancel" -msgstr "" +msgstr "Аҟәыхра" #: WriterCommands.xcu msgctxt "" @@ -28014,7 +28014,7 @@ "Label\n" "value.text" msgid "Select Word" -msgstr "" +msgstr "Иалкаатәуп ажәа" #: WriterCommands.xcu msgctxt "" @@ -28059,7 +28059,7 @@ "Label\n" "value.text" msgid "To Next Object" -msgstr "" +msgstr "Ииастәуп анаҩстәи аобиеқт ахь" #: WriterCommands.xcu msgctxt "" @@ -28077,7 +28077,7 @@ "Label\n" "value.text" msgid "To Previous Object" -msgstr "" +msgstr "Ииастәуп аҧхьатәи аобиеқт ахь" #: WriterCommands.xcu msgctxt "" @@ -28122,7 +28122,7 @@ "Label\n" "value.text" msgid "To Table Begin" -msgstr "" +msgstr "Ииастәуп атаблица алагамҭахь" #: WriterCommands.xcu msgctxt "" @@ -28149,7 +28149,7 @@ "Label\n" "value.text" msgid "To Table End" -msgstr "" +msgstr "Ииастәуп атаблица анҵәамҭахь" #: WriterCommands.xcu msgctxt "" @@ -28167,7 +28167,7 @@ "Label\n" "value.text" msgid "To Next Table" -msgstr "" +msgstr "Ииастәуп анаҩстәи атаблицахь" #: WriterCommands.xcu msgctxt "" @@ -28185,7 +28185,7 @@ "Label\n" "value.text" msgid "To Previous Table" -msgstr "" +msgstr "Ииастәуп аҧхьатәи атаблицахь" #: WriterCommands.xcu msgctxt "" @@ -28464,7 +28464,7 @@ "ContextLabel\n" "value.text" msgid "~First Paragraph" -msgstr "" +msgstr "Актәи абзац" #: WriterCommands.xcu msgctxt "" @@ -28527,7 +28527,7 @@ "Label\n" "value.text" msgid "Merge Table" -msgstr "" +msgstr "Еидҵатәуп атаблица" #: WriterCommands.xcu msgctxt "" @@ -28536,7 +28536,7 @@ "Label\n" "value.text" msgid "To Previous Paragraph" -msgstr "" +msgstr "Ииастәуп аҧхьатәи абзацахь" #: WriterCommands.xcu msgctxt "" @@ -28554,7 +28554,7 @@ "Label\n" "value.text" msgid "Select Paragraph" -msgstr "" +msgstr "Иалкаатәуп абзац" #: WriterCommands.xcu msgctxt "" @@ -28563,7 +28563,7 @@ "Label\n" "value.text" msgid "To Next Paragraph" -msgstr "" +msgstr "Ииастәуп анаҩстәи абзацахь" #: WriterCommands.xcu msgctxt "" @@ -28653,7 +28653,7 @@ "ContextLabel\n" "value.text" msgid "~Edit..." -msgstr "" +msgstr "~Ариашара..." #: WriterCommands.xcu msgctxt "" @@ -28689,7 +28689,7 @@ "Label\n" "value.text" msgid "Go to next table formula" -msgstr "" +msgstr "Ииастәуп атаблица анаҩстәи аформулахь" #: WriterCommands.xcu msgctxt "" @@ -28698,7 +28698,7 @@ "Label\n" "value.text" msgid "Go to previous table formula" -msgstr "" +msgstr "Ииастәуп атаблица иаҧхьааиуа аформулахь" #: WriterCommands.xcu msgctxt "" @@ -28707,7 +28707,7 @@ "Label\n" "value.text" msgid "Go to next faulty table formula" -msgstr "" +msgstr "Ииастәуп атаблица анаҩстәи игхатәу аформулахь" #: WriterCommands.xcu msgctxt "" @@ -28716,7 +28716,7 @@ "Label\n" "value.text" msgid "Go to previous faulty table formula" -msgstr "" +msgstr "Ииастәуп атаблица иаҧхьааиуа игхатәу аформулахь" #: WriterCommands.xcu msgctxt "" @@ -28725,7 +28725,7 @@ "Label\n" "value.text" msgid "Select Text" -msgstr "" +msgstr "Иалкаатәуп атеқст" #: WriterCommands.xcu msgctxt "" @@ -28752,7 +28752,7 @@ "Label\n" "value.text" msgid "View Images and Charts" -msgstr "" +msgstr "Асахьақәеи адиаграммақәеи рыхәаҧшра" #: WriterCommands.xcu msgctxt "" @@ -28761,7 +28761,7 @@ "ContextLabel\n" "value.text" msgid "~Images and Charts" -msgstr "" +msgstr "Асахьақәеи адиаграммақәеи" #: WriterCommands.xcu msgctxt "" @@ -28959,7 +28959,7 @@ "Label\n" "value.text" msgid "Table Boundaries" -msgstr "" +msgstr "Атаблицақәа рҳәаақәа" #: WriterCommands.xcu msgctxt "" @@ -29022,7 +29022,7 @@ "Label\n" "value.text" msgid "~Open..." -msgstr "" +msgstr "Иаарттәуп..." #: WriterCommands.xcu msgctxt "" @@ -29067,7 +29067,7 @@ "Label\n" "value.text" msgid "~Delete" -msgstr "" +msgstr "Ианыхтәуп" #: WriterCommands.xcu msgctxt "" @@ -29076,7 +29076,7 @@ "Label\n" "value.text" msgid "~Select" -msgstr "" +msgstr "Иалкаатәуп" #: WriterCommands.xcu msgctxt "" @@ -29103,7 +29103,7 @@ "Label\n" "value.text" msgid "~Update" -msgstr "" +msgstr "Ирҿыцтәуп" #: WriterCommands.xcu msgctxt "" @@ -29202,7 +29202,7 @@ "Label\n" "value.text" msgid "Selection Mode" -msgstr "" +msgstr "Алхра арежим" #: WriterCommands.xcu msgctxt "" @@ -29274,7 +29274,7 @@ "Label\n" "value.text" msgid "Default ~Paragraph" -msgstr "" +msgstr "Ибазатәу абзац" #: WriterCommands.xcu msgctxt "" @@ -29382,7 +29382,7 @@ "Label\n" "value.text" msgid "Default ~Character" -msgstr "" +msgstr "Абазатә символ" #: WriterCommands.xcu msgctxt "" @@ -29454,7 +29454,7 @@ "Label\n" "value.text" msgid "Paragraph Style" -msgstr "" +msgstr "Абзац астиль" #: WriterCommands.xcu msgctxt "" @@ -29463,7 +29463,7 @@ "TooltipLabel\n" "value.text" msgid "Set Paragraph Style" -msgstr "" +msgstr "Иқәыргылатәуп абзац астиль" #: WriterCommands.xcu msgctxt "" @@ -29481,7 +29481,7 @@ "Label\n" "value.text" msgid "Page Size" -msgstr "" +msgstr "Адаҟьа ашәагаа" #: WriterCommands.xcu msgctxt "" @@ -29589,7 +29589,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "" +msgstr "OLE-аобиеқт" #: WriterFormWindowState.xcu msgctxt "" @@ -29598,7 +29598,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "" +msgstr "Заатәи ахәаҧшра" #: WriterFormWindowState.xcu msgctxt "" @@ -29607,7 +29607,7 @@ "UIName\n" "value.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: WriterFormWindowState.xcu msgctxt "" @@ -29634,7 +29634,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "" +msgstr "Аформатркра" #: WriterFormWindowState.xcu msgctxt "" @@ -29661,7 +29661,7 @@ "UIName\n" "value.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: WriterFormWindowState.xcu msgctxt "" @@ -29670,7 +29670,7 @@ "UIName\n" "value.text" msgid "Bullets and Numbering" -msgstr "" +msgstr "Амаркерқәеи аномерркреи" #: WriterFormWindowState.xcu msgctxt "" @@ -29679,7 +29679,7 @@ "UIName\n" "value.text" msgid "Drawing Object Properties" -msgstr "" +msgstr "Асахьа аҷыдаҟазшьақәа" #: WriterFormWindowState.xcu msgctxt "" @@ -29697,7 +29697,7 @@ "UIName\n" "value.text" msgid "Edit Points" -msgstr "" +msgstr "Агеометриа аҧсахра" #: WriterFormWindowState.xcu msgctxt "" @@ -29724,7 +29724,7 @@ "UIName\n" "value.text" msgid "Form Filter" -msgstr "" +msgstr "Аформақәа рфильтр" #: WriterFormWindowState.xcu msgctxt "" @@ -29823,7 +29823,7 @@ "UIName\n" "value.text" msgid "OLE-Object" -msgstr "" +msgstr "OLE-аобиеқт" #: WriterFormWindowState.xcu msgctxt "" @@ -29841,7 +29841,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "" +msgstr "Заатәи ахәаҧшра" #: WriterFormWindowState.xcu msgctxt "" @@ -29850,7 +29850,7 @@ "UIName\n" "value.text" msgid "Text Object" -msgstr "" +msgstr "Атеқсттә обиеқт" #: WriterFormWindowState.xcu msgctxt "" @@ -29913,7 +29913,7 @@ "UIName\n" "value.text" msgid "Flowchart" -msgstr "" +msgstr "Аблок-схемақәа" #: WriterFormWindowState.xcu msgctxt "" @@ -30039,7 +30039,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "" +msgstr "OLE-аобиеқт" #: WriterGlobalWindowState.xcu msgctxt "" @@ -30048,7 +30048,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "" +msgstr "Заатәи ахәаҧшра" #: WriterGlobalWindowState.xcu msgctxt "" @@ -30057,7 +30057,7 @@ "UIName\n" "value.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: WriterGlobalWindowState.xcu msgctxt "" @@ -30093,7 +30093,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "" +msgstr "Аформатркра" #: WriterGlobalWindowState.xcu msgctxt "" @@ -30111,7 +30111,7 @@ "UIName\n" "value.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: WriterGlobalWindowState.xcu msgctxt "" @@ -30120,7 +30120,7 @@ "UIName\n" "value.text" msgid "Bullets and Numbering" -msgstr "" +msgstr "Амаркерқәеи аномерркреи" #: WriterGlobalWindowState.xcu msgctxt "" @@ -30129,7 +30129,7 @@ "UIName\n" "value.text" msgid "Drawing Object Properties" -msgstr "" +msgstr "Асахьа аҷыдаҟазшьақәа" #: WriterGlobalWindowState.xcu msgctxt "" @@ -30147,7 +30147,7 @@ "UIName\n" "value.text" msgid "Edit Points" -msgstr "" +msgstr "Агеометриа аҧсахра" #: WriterGlobalWindowState.xcu msgctxt "" @@ -30174,7 +30174,7 @@ "UIName\n" "value.text" msgid "Form Filter" -msgstr "" +msgstr "Аформақәа рфильтр" #: WriterGlobalWindowState.xcu msgctxt "" @@ -30264,7 +30264,7 @@ "UIName\n" "value.text" msgid "OLE-Object" -msgstr "" +msgstr "OLE-аобиеқт" #: WriterGlobalWindowState.xcu msgctxt "" @@ -30282,7 +30282,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "" +msgstr "Заатәи ахәаҧшра" #: WriterGlobalWindowState.xcu msgctxt "" @@ -30291,7 +30291,7 @@ "UIName\n" "value.text" msgid "Text Object" -msgstr "" +msgstr "Атеқсттә обиеқт" #: WriterGlobalWindowState.xcu msgctxt "" @@ -30354,7 +30354,7 @@ "UIName\n" "value.text" msgid "Flowchart" -msgstr "" +msgstr "Аблок-схемақәа" #: WriterGlobalWindowState.xcu msgctxt "" @@ -30489,7 +30489,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "" +msgstr "OLE-аобиеқт" #: WriterReportWindowState.xcu msgctxt "" @@ -30498,7 +30498,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "" +msgstr "Заатәи ахәаҧшра" #: WriterReportWindowState.xcu msgctxt "" @@ -30507,7 +30507,7 @@ "UIName\n" "value.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: WriterReportWindowState.xcu msgctxt "" @@ -30534,7 +30534,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "" +msgstr "Аформатркра" #: WriterReportWindowState.xcu msgctxt "" @@ -30561,7 +30561,7 @@ "UIName\n" "value.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: WriterReportWindowState.xcu msgctxt "" @@ -30570,7 +30570,7 @@ "UIName\n" "value.text" msgid "Bullets and Numbering" -msgstr "" +msgstr "Амаркерқәеи аномерркреи" #: WriterReportWindowState.xcu msgctxt "" @@ -30579,7 +30579,7 @@ "UIName\n" "value.text" msgid "Drawing Object Properties" -msgstr "" +msgstr "Асахьа аҷыдаҟазшьақәа" #: WriterReportWindowState.xcu msgctxt "" @@ -30597,7 +30597,7 @@ "UIName\n" "value.text" msgid "Edit Points" -msgstr "" +msgstr "Агеометриа аҧсахра" #: WriterReportWindowState.xcu msgctxt "" @@ -30624,7 +30624,7 @@ "UIName\n" "value.text" msgid "Form Filter" -msgstr "" +msgstr "Аформақәа рфильтр" #: WriterReportWindowState.xcu msgctxt "" @@ -30723,7 +30723,7 @@ "UIName\n" "value.text" msgid "OLE-Object" -msgstr "" +msgstr "OLE-аобиеқт" #: WriterReportWindowState.xcu msgctxt "" @@ -30741,7 +30741,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "" +msgstr "Заатәи ахәаҧшра" #: WriterReportWindowState.xcu msgctxt "" @@ -30750,7 +30750,7 @@ "UIName\n" "value.text" msgid "Text Object" -msgstr "" +msgstr "Атеқсттә обиеқт" #: WriterReportWindowState.xcu msgctxt "" @@ -30813,7 +30813,7 @@ "UIName\n" "value.text" msgid "Flowchart" -msgstr "" +msgstr "Аблок-схемақәа" #: WriterReportWindowState.xcu msgctxt "" @@ -30912,7 +30912,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "" +msgstr "OLE-аобиеқт" #: WriterWebWindowState.xcu msgctxt "" @@ -30921,7 +30921,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "" +msgstr "Заатәи ахәаҧшра" #: WriterWebWindowState.xcu msgctxt "" @@ -30939,7 +30939,7 @@ "UIName\n" "value.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: WriterWebWindowState.xcu msgctxt "" @@ -30975,7 +30975,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "" +msgstr "Аформатркра" #: WriterWebWindowState.xcu msgctxt "" @@ -30993,7 +30993,7 @@ "UIName\n" "value.text" msgid "OLE-Object" -msgstr "" +msgstr "OLE-аобиеқт" #: WriterWebWindowState.xcu msgctxt "" @@ -31002,7 +31002,7 @@ "UIName\n" "value.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: WriterWebWindowState.xcu msgctxt "" @@ -31029,7 +31029,7 @@ "UIName\n" "value.text" msgid "Text Object" -msgstr "" +msgstr "Атеқсттә обиеқт" #: WriterWebWindowState.xcu msgctxt "" @@ -31038,7 +31038,7 @@ "UIName\n" "value.text" msgid "Drawing Object Properties" -msgstr "" +msgstr "Асахьа аҷыдаҟазшьақәа" #: WriterWebWindowState.xcu msgctxt "" @@ -31047,7 +31047,7 @@ "UIName\n" "value.text" msgid "Edit Points" -msgstr "" +msgstr "Агеометриа аҧсахра" #: WriterWebWindowState.xcu msgctxt "" @@ -31083,7 +31083,7 @@ "UIName\n" "value.text" msgid "Form Filter" -msgstr "" +msgstr "Аформақәа рфильтр" #: WriterWebWindowState.xcu msgctxt "" @@ -31155,7 +31155,7 @@ "UIName\n" "value.text" msgid "Bullets and Numbering" -msgstr "" +msgstr "Амаркерқәеи аномерркреи" #: WriterWebWindowState.xcu msgctxt "" @@ -31164,7 +31164,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "" +msgstr "Заатәи ахәаҧшра" #: WriterWebWindowState.xcu msgctxt "" @@ -31218,7 +31218,7 @@ "UIName\n" "value.text" msgid "Flowchart" -msgstr "" +msgstr "Аблок-схемақәа" #: WriterWebWindowState.xcu msgctxt "" @@ -31335,7 +31335,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "" +msgstr "OLE-аобиеқт" #: WriterWindowState.xcu msgctxt "" @@ -31344,7 +31344,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "" +msgstr "Заатәи ахәаҧшра" #: WriterWindowState.xcu msgctxt "" @@ -31353,7 +31353,7 @@ "UIName\n" "value.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: WriterWindowState.xcu msgctxt "" @@ -31398,7 +31398,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "" +msgstr "Аформатркра" #: WriterWindowState.xcu msgctxt "" @@ -31452,7 +31452,7 @@ "UIName\n" "value.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: WriterWindowState.xcu msgctxt "" @@ -31461,7 +31461,7 @@ "UIName\n" "value.text" msgid "Bullets and Numbering" -msgstr "" +msgstr "Амаркерқәеи аномерркреи" #: WriterWindowState.xcu msgctxt "" @@ -31470,7 +31470,7 @@ "UIName\n" "value.text" msgid "Drawing Object Properties" -msgstr "" +msgstr "Асахьа аҷыдаҟазшьақәа" #: WriterWindowState.xcu msgctxt "" @@ -31488,7 +31488,7 @@ "UIName\n" "value.text" msgid "Edit Points" -msgstr "" +msgstr "Агеометриа аҧсахра" #: WriterWindowState.xcu msgctxt "" @@ -31515,7 +31515,7 @@ "UIName\n" "value.text" msgid "Form Filter" -msgstr "" +msgstr "Аформақәа рфильтр" #: WriterWindowState.xcu msgctxt "" @@ -31605,7 +31605,7 @@ "UIName\n" "value.text" msgid "OLE-Object" -msgstr "" +msgstr "OLE-аобиеқт" #: WriterWindowState.xcu msgctxt "" @@ -31614,7 +31614,7 @@ "UIName\n" "value.text" msgid "Optimize Size" -msgstr "" +msgstr "Иоптималу ашәагаа" #: WriterWindowState.xcu msgctxt "" @@ -31623,7 +31623,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "" +msgstr "Заатәи ахәаҧшра" #: WriterWindowState.xcu msgctxt "" @@ -31632,7 +31632,7 @@ "UIName\n" "value.text" msgid "Text Object" -msgstr "" +msgstr "Атеқсттә обиеқт" #: WriterWindowState.xcu msgctxt "" @@ -31695,7 +31695,7 @@ "UIName\n" "value.text" msgid "Flowchart" -msgstr "" +msgstr "Аблок-схемақәа" #: WriterWindowState.xcu msgctxt "" @@ -31785,7 +31785,7 @@ "UIName\n" "value.text" msgid "Formatting (Styles)" -msgstr "" +msgstr "Аформатркра (астильқәа)" #: XFormsWindowState.xcu msgctxt "" @@ -31866,7 +31866,7 @@ "UIName\n" "value.text" msgid "OLE Object" -msgstr "" +msgstr "OLE-аобиеқт" #: XFormsWindowState.xcu msgctxt "" @@ -31875,7 +31875,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "" +msgstr "Заатәи ахәаҧшра" #: XFormsWindowState.xcu msgctxt "" @@ -31884,7 +31884,7 @@ "UIName\n" "value.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: XFormsWindowState.xcu msgctxt "" @@ -31920,7 +31920,7 @@ "UIName\n" "value.text" msgid "Formatting" -msgstr "" +msgstr "Аформатркра" #: XFormsWindowState.xcu msgctxt "" @@ -31938,7 +31938,7 @@ "UIName\n" "value.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: XFormsWindowState.xcu msgctxt "" @@ -31947,7 +31947,7 @@ "UIName\n" "value.text" msgid "Bullets and Numbering" -msgstr "" +msgstr "Амаркерқәеи аномерркреи" #: XFormsWindowState.xcu msgctxt "" @@ -31956,7 +31956,7 @@ "UIName\n" "value.text" msgid "Drawing Object Properties" -msgstr "" +msgstr "Асахьа аҷыдаҟазшьақәа" #: XFormsWindowState.xcu msgctxt "" @@ -31974,7 +31974,7 @@ "UIName\n" "value.text" msgid "Edit Points" -msgstr "" +msgstr "Агеометриа аҧсахра" #: XFormsWindowState.xcu msgctxt "" @@ -32001,7 +32001,7 @@ "UIName\n" "value.text" msgid "Form Filter" -msgstr "" +msgstr "Аформақәа рфильтр" #: XFormsWindowState.xcu msgctxt "" @@ -32100,7 +32100,7 @@ "UIName\n" "value.text" msgid "OLE-Object" -msgstr "" +msgstr "OLE-аобиеқт" #: XFormsWindowState.xcu msgctxt "" @@ -32118,7 +32118,7 @@ "UIName\n" "value.text" msgid "Print Preview" -msgstr "" +msgstr "Заатәи ахәаҧшра" #: XFormsWindowState.xcu msgctxt "" @@ -32127,7 +32127,7 @@ "UIName\n" "value.text" msgid "Text Object" -msgstr "" +msgstr "Атеқсттә обиеқт" #: XFormsWindowState.xcu msgctxt "" @@ -32190,7 +32190,7 @@ "UIName\n" "value.text" msgid "Flowchart" -msgstr "" +msgstr "Аблок-схемақәа" #: XFormsWindowState.xcu msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/officecfg/registry/data/org/openoffice/Office.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/officecfg/registry/data/org/openoffice/Office.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/officecfg/registry/data/org/openoffice/Office.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n" -"PO-Revision-Date: 2017-09-18 11:08+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-12-12 10:14+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1505732901.000000\n" +"X-POOTLE-MTIME: 1513073645.000000\n" #: Addons.xcu msgctxt "" @@ -166,7 +166,7 @@ "Title\n" "value.text" msgid "~XML Form Document" -msgstr "" +msgstr "XML Form адокумент" #: Common.xcu msgctxt "" @@ -211,7 +211,7 @@ "Title\n" "value.text" msgid "Templates" -msgstr "" +msgstr "Ашаблонқәа..." #: Common.xcu msgctxt "" @@ -382,7 +382,7 @@ "PagerNumber\n" "value.text" msgid "Pager" -msgstr "" +msgstr "Апеиджер" #: DataAccess.xcu msgctxt "" @@ -391,7 +391,7 @@ "CellularNumber\n" "value.text" msgid "Mobile" -msgstr "" +msgstr "Амобилтә ҭел" #: DataAccess.xcu msgctxt "" @@ -535,7 +535,7 @@ "WebPage1\n" "value.text" msgid "Web Page (Work)" -msgstr "" +msgstr "Web-адаҟьа 1" #: DataAccess.xcu msgctxt "" @@ -544,7 +544,7 @@ "WebPage2\n" "value.text" msgid "Web Page (Home)" -msgstr "" +msgstr "Web-адаҟьа 2" #: DataAccess.xcu msgctxt "" @@ -625,7 +625,7 @@ "VerbUIName\n" "value.text" msgid "~Edit" -msgstr "" +msgstr "Ариашара" #: Embedding.xcu msgctxt "" @@ -634,7 +634,7 @@ "VerbUIName\n" "value.text" msgid "~Open" -msgstr "" +msgstr "Иаарттәуп" #: Embedding.xcu msgctxt "" @@ -652,7 +652,7 @@ "VerbUIName\n" "value.text" msgid "Save Copy ~as..." -msgstr "Иеиқәырхатәуп акопиа иаба(ишҧа)..." +msgstr "Еиқәырхатәуп акопиа иаба(ишҧа)..." #: Embedding.xcu msgctxt "" @@ -670,7 +670,7 @@ "ObjectUIName\n" "value.text" msgid "%PRODUCTNAME %PRODUCTVERSION Chart" -msgstr "" +msgstr "%PRODUCTNAME %PRODUCTVERSION адиаграмма" #: Embedding.xcu msgctxt "" @@ -697,7 +697,7 @@ "ObjectUIName\n" "value.text" msgid "%PRODUCTNAME %PRODUCTVERSION Formula" -msgstr "" +msgstr "%PRODUCTNAME %PRODUCTVERSION аформула" #: Embedding.xcu msgctxt "" @@ -742,7 +742,7 @@ "DisplayName\n" "value.text" msgid "Page Header" -msgstr "" +msgstr "Хыхьтәи аколонтитул" #: ExtendedColorScheme.xcu msgctxt "" @@ -751,7 +751,7 @@ "DisplayName\n" "value.text" msgid "Page Footer" -msgstr "" +msgstr "Ҵаҟатәи аколонтитул" #: ExtendedColorScheme.xcu msgctxt "" @@ -958,7 +958,7 @@ "STR_CANCEL\n" "value.text" msgid "Cancel" -msgstr "" +msgstr "Аҟәыхра" #: PresentationMinimizer.xcu msgctxt "" @@ -994,7 +994,7 @@ "STR_REMOVE\n" "value.text" msgid "~Delete" -msgstr "" +msgstr "Ианыхтәуп" #: PresentationMinimizer.xcu msgctxt "" @@ -1111,7 +1111,7 @@ "STR_OLE_OBJECTS\n" "value.text" msgid "OLE Objects" -msgstr "" +msgstr "OLE аобиеқтқәа" #: PresentationMinimizer.xcu msgctxt "" @@ -1138,7 +1138,7 @@ "STR_ALL_OLE_OBJECTS\n" "value.text" msgid "For ~all OLE objects" -msgstr "" +msgstr "OLE аобиеқтқәа зегьы рзы" #: PresentationMinimizer.xcu msgctxt "" @@ -1183,7 +1183,7 @@ "STR_CHOOSE_SLIDES\n" "value.text" msgid "Choose which slides to delete" -msgstr "" +msgstr "Иалышәх ианыхтәу аслаидқәа" #: PresentationMinimizer.xcu msgctxt "" @@ -1210,7 +1210,7 @@ "STR_DELETE_HIDDEN_SLIDES\n" "value.text" msgid "Delete hidden ~slides" -msgstr "" +msgstr "Ианыхтәуп иҵәаху аслаидқәа" #: PresentationMinimizer.xcu msgctxt "" @@ -1219,7 +1219,7 @@ "STR_CUSTOM_SHOW\n" "value.text" msgid "Delete slides that are not used for the ~custom slide show" -msgstr "" +msgstr "Ианыхтәуп аслаидқәа, апрезентациаҿ иаарҧшымхо" #: PresentationMinimizer.xcu msgctxt "" @@ -1255,7 +1255,7 @@ "STR_AUTOMATICALLY_OPEN\n" "value.text" msgid "~Open newly created presentation" -msgstr "" +msgstr "Иаарттәуп ҿыц иаҧҵоу апрезентациа" #: PresentationMinimizer.xcu msgctxt "" @@ -1264,7 +1264,7 @@ "STR_SAVE_SETTINGS\n" "value.text" msgid "~Save settings as" -msgstr "Иеиқәырхатәуп архиарақәа иаба(ишҧа)" +msgstr "Еиқәырхатәуп архиарақәа иаба(ишҧа)" #: PresentationMinimizer.xcu msgctxt "" @@ -1282,7 +1282,7 @@ "STR_DELETE_SLIDES\n" "value.text" msgid "Delete %SLIDES slides." -msgstr "" +msgstr "Ианыхтәуп %SLIDES слаид(к)." #: PresentationMinimizer.xcu msgctxt "" @@ -1309,7 +1309,7 @@ "STR_CURRENT_FILESIZE\n" "value.text" msgid "Current file size:" -msgstr "" +msgstr "Афаил уажәтәи ашәагаа:" #: PresentationMinimizer.xcu msgctxt "" @@ -1318,7 +1318,7 @@ "STR_ESTIMATED_FILESIZE\n" "value.text" msgid "Estimated new file size:" -msgstr "" +msgstr "Афаил ҿыц, инықәырҧшу ашәагаа:" #: PresentationMinimizer.xcu msgctxt "" @@ -1390,7 +1390,7 @@ "STR_DELETING_SLIDES\n" "value.text" msgid "Deleting slides..." -msgstr "" +msgstr "Аслаидқәа раныхра..." #: PresentationMinimizer.xcu msgctxt "" @@ -1526,7 +1526,7 @@ "Text\n" "value.text" msgid "Zoom" -msgstr "" +msgstr "Амасштаб" #: PresenterScreen.xcu msgctxt "" @@ -1634,7 +1634,7 @@ "Left\n" "value.text" msgid "Alt-Page Up" -msgstr "" +msgstr "Alt+Page Up" #: PresenterScreen.xcu msgctxt "" @@ -1652,7 +1652,7 @@ "Left\n" "value.text" msgid "Alt-Page Down" -msgstr "" +msgstr "Alt+Page Down" #: PresenterScreen.xcu msgctxt "" @@ -2786,7 +2786,7 @@ "Name\n" "value.text" msgid "MobileNumber" -msgstr "" +msgstr "АмобилтәҬелАномер" #: TableWizard.xcu msgctxt "" @@ -2795,7 +2795,7 @@ "ShortName\n" "value.text" msgid "MobileNo" -msgstr "" +msgstr "АмобҬелАном" #: TableWizard.xcu msgctxt "" @@ -2858,7 +2858,7 @@ "Name\n" "value.text" msgid "DateUpdated" -msgstr "" +msgstr "АрҿыцраАрыцхә" #: TableWizard.xcu msgctxt "" @@ -2867,7 +2867,7 @@ "ShortName\n" "value.text" msgid "DateUpdate" -msgstr "" +msgstr "АрҿыцАрыцхә" #: TableWizard.xcu msgctxt "" @@ -3227,7 +3227,7 @@ "Name\n" "value.text" msgid "MobileNumber" -msgstr "" +msgstr "АмобилтәҬелАномер" #: TableWizard.xcu msgctxt "" @@ -3236,7 +3236,7 @@ "ShortName\n" "value.text" msgid "MobileNo" -msgstr "" +msgstr "АмобҬелАном" #: TableWizard.xcu msgctxt "" @@ -3668,7 +3668,7 @@ "Name\n" "value.text" msgid "MobileNumber" -msgstr "" +msgstr "АмобилтәҬелАномер" #: TableWizard.xcu msgctxt "" @@ -3677,7 +3677,7 @@ "ShortName\n" "value.text" msgid "MobileNo" -msgstr "" +msgstr "АмобҬелАном" #: TableWizard.xcu msgctxt "" @@ -4055,7 +4055,7 @@ "Name\n" "value.text" msgid "MobileNumber" -msgstr "" +msgstr "АмобилтәҬелАномер" #: TableWizard.xcu msgctxt "" @@ -4064,7 +4064,7 @@ "ShortName\n" "value.text" msgid "MobileNo" -msgstr "" +msgstr "АмобҬелАном" #: TableWizard.xcu msgctxt "" @@ -5018,7 +5018,7 @@ "Name\n" "value.text" msgid "CreditCardType" -msgstr "" +msgstr "АкдедиттәКартаАтип" #: TableWizard.xcu msgctxt "" @@ -5036,7 +5036,7 @@ "Name\n" "value.text" msgid "CreditCardNumber" -msgstr "" +msgstr "АкредиттәКартаАномер" #: TableWizard.xcu msgctxt "" @@ -7187,7 +7187,7 @@ "Name\n" "value.text" msgid "Model" -msgstr "" +msgstr "Амодель" #: TableWizard.xcu msgctxt "" @@ -7196,7 +7196,7 @@ "ShortName\n" "value.text" msgid "Model" -msgstr "" +msgstr "Амодель" #: TableWizard.xcu msgctxt "" @@ -7205,7 +7205,7 @@ "Name\n" "value.text" msgid "ModelNumber" -msgstr "" +msgstr "АмодельАномер" #: TableWizard.xcu msgctxt "" @@ -7214,7 +7214,7 @@ "ShortName\n" "value.text" msgid "ModelNo" -msgstr "" +msgstr "АмодельАном" #: TableWizard.xcu msgctxt "" @@ -8159,7 +8159,7 @@ "Name\n" "value.text" msgid "MobileNumber" -msgstr "" +msgstr "АмобилтәҬелАномер" #: TableWizard.xcu msgctxt "" @@ -8168,7 +8168,7 @@ "ShortName\n" "value.text" msgid "MobileNo" -msgstr "" +msgstr "АмобҬелАном" #: TableWizard.xcu msgctxt "" @@ -8375,7 +8375,7 @@ "Name\n" "value.text" msgid "DateUpdated" -msgstr "" +msgstr "АрҿыцраАрыцхә" #: TableWizard.xcu msgctxt "" @@ -8384,7 +8384,7 @@ "ShortName\n" "value.text" msgid "DatUpdated" -msgstr "" +msgstr "АрҿыцАрыцхә" #: TableWizard.xcu msgctxt "" @@ -8528,7 +8528,7 @@ "Name\n" "value.text" msgid "Model" -msgstr "" +msgstr "Амодель" #: TableWizard.xcu msgctxt "" @@ -8537,7 +8537,7 @@ "ShortName\n" "value.text" msgid "Model" -msgstr "" +msgstr "Амодель" #: TableWizard.xcu msgctxt "" @@ -8546,7 +8546,7 @@ "Name\n" "value.text" msgid "ModelNumber" -msgstr "" +msgstr "АмодельАномер" #: TableWizard.xcu msgctxt "" @@ -8555,7 +8555,7 @@ "ShortName\n" "value.text" msgid "ModelNo" -msgstr "" +msgstr "АмодельАном" #: TableWizard.xcu msgctxt "" @@ -9455,7 +9455,7 @@ "Name\n" "value.text" msgid "PrintSize" -msgstr "" +msgstr "АкьыҧхьраАшәагаа" #: TableWizard.xcu msgctxt "" @@ -9464,7 +9464,7 @@ "ShortName\n" "value.text" msgid "PrintSize" -msgstr "" +msgstr "АкьыҧхьраАшәагаа" #: TableWizard.xcu msgctxt "" @@ -10112,7 +10112,7 @@ "Name\n" "value.text" msgid "Format" -msgstr "" +msgstr "Аформат" #: TableWizard.xcu msgctxt "" @@ -10121,7 +10121,7 @@ "ShortName\n" "value.text" msgid "Format" -msgstr "" +msgstr "Аформат" #: TableWizard.xcu msgctxt "" @@ -10409,7 +10409,7 @@ "Name\n" "value.text" msgid "Pages" -msgstr "" +msgstr "Адаҟьақәа" #: TableWizard.xcu msgctxt "" @@ -10418,7 +10418,7 @@ "ShortName\n" "value.text" msgid "Pages" -msgstr "" +msgstr "Адаҟьақәа" #: TableWizard.xcu msgctxt "" @@ -11498,7 +11498,7 @@ "DisplayName\n" "value.text" msgid "Web pages" -msgstr "" +msgstr "Web-адаҟьақәа" #: UI.xcu msgctxt "" @@ -11552,7 +11552,7 @@ "DisplayName\n" "value.text" msgid "Microsoft Excel 4.x - 5.0 / 95 Templates" -msgstr "" +msgstr "Microsoft Excel 4.x - 5.0 / 95 ашаблонқәа" #: UI.xcu msgctxt "" @@ -11606,7 +11606,7 @@ "Category\n" "value.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: Writer.xcu #, fuzzy diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/officecfg/registry/data/org/openoffice.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/officecfg/registry/data/org/openoffice.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/officecfg/registry/data/org/openoffice.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/officecfg/registry/data/org/openoffice.po 2017-12-12 17:45:07.000000000 +0000 @@ -3,16 +3,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: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2017-11-26 09:18+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511687922.000000\n" #: Setup.xcu msgctxt "" @@ -21,7 +22,7 @@ "ooSetupFactoryUIName\n" "value.text" msgid "Base: Database Form" -msgstr "" +msgstr "Base: адырқәа рбаза аформа" #: Setup.xcu msgctxt "" @@ -84,7 +85,7 @@ "ooSetupFactoryUIName\n" "value.text" msgid "Base: Table Data View" -msgstr "" +msgstr "Base: атаблица адырқәа" #: Setup.xcu msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/readlicense_oo/docs.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/readlicense_oo/docs.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/readlicense_oo/docs.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/readlicense_oo/docs.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-03-09 20:48+0100\n" -"PO-Revision-Date: 2016-03-10 13:00+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-12-07 11:06+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1457614850.000000\n" +"X-POOTLE-MTIME: 1512644780.000000\n" #: readme.xrm msgctxt "" @@ -21,7 +21,7 @@ "Welcome\n" "readmeitem.text" msgid "${PRODUCTNAME} ${PRODUCTVERSION} ReadMe" -msgstr "" +msgstr "${PRODUCTNAME} ${PRODUCTVERSION} ReadMe" #: readme.xrm msgctxt "" @@ -29,7 +29,7 @@ "LatestUpdates\n" "readmeitem.text" msgid "For the latest updates to this readme file, see http://www.libreoffice.org/welcome/readme.html" -msgstr "" +msgstr "Афаил иактуалу аверсиа readme: http://www.libreoffice.org/welcome/readme.html" #: readme.xrm msgctxt "" @@ -109,7 +109,7 @@ "sdfsdfgf42r\n" "readmeitem.text" msgid "System Requirements" -msgstr "" +msgstr "Асистематә ҭахрақәа" #: readme.xrm msgctxt "" @@ -117,7 +117,7 @@ "macxiOSX\n" "readmeitem.text" msgid "MacOSX 10.8 (Mountain Lion) or higher" -msgstr "" +msgstr "MacOSX 10.8 (Mountain Lion) ма иеиҳау" #: readme.xrm msgctxt "" @@ -125,7 +125,7 @@ "s2s3sdf21\n" "readmeitem.text" msgid "Microsoft Windows XP SP3, Vista, 7, 8, or 10" -msgstr "" +msgstr "Microsoft Windows XP SP3, Vista, 7, 8 ма 10" #: readme.xrm msgctxt "" @@ -181,7 +181,7 @@ "s2we35\n" "readmeitem.text" msgid "Linux Kernel version 2.6.18 or higher;" -msgstr "" +msgstr "Linux Kernel аверсиа 2.6.18 ма иеиҳау;" #: readme.xrm msgctxt "" @@ -189,7 +189,7 @@ "s253we\n" "readmeitem.text" msgid "glibc2 version 2.5 or higher;" -msgstr "" +msgstr "glibc2 аверсиа 2.5 ма иеиҳау;" #: readme.xrm msgctxt "" @@ -197,7 +197,7 @@ "s255we\n" "readmeitem.text" msgid "freetype version 2.2.0 or higher;" -msgstr "" +msgstr "freetype аверсиа 2.2.0 ма иеиҳау;" #: readme.xrm msgctxt "" @@ -205,7 +205,7 @@ "s256we\n" "readmeitem.text" msgid "gtk version 2.10.4 or higher;" -msgstr "" +msgstr "gtk аверсиа 2.10.4 ма иеиҳау;" #: readme.xrm msgctxt "" @@ -293,7 +293,7 @@ "debianinstall6\n" "readmeitem.text" msgid "sudo dpkg -i *.deb" -msgstr "" +msgstr "sudo dpkg -i *.deb" #: readme.xrm msgctxt "" @@ -413,7 +413,7 @@ "sdfsdfgf42t3\n" "readmeitem.text" msgid "Installing a Language Pack" -msgstr "" +msgstr "Абызшәатә пакет ақәыргылара" #: readme.xrm msgctxt "" @@ -485,7 +485,7 @@ "linuxlangpack9\n" "readmeitem.text" msgid "For other RPM-using systems (openSUSE, etc.): rpm -Uvh *.rpm" -msgstr "" +msgstr "Егьырҭ RPM-асистемақәа рзы (openSUSE -и егь.-и): rpm -Uvh *.rpm " #: readme.xrm msgctxt "" @@ -517,7 +517,7 @@ "naso01\n" "readmeitem.text" msgid "Problems During Program Startup" -msgstr "" +msgstr "Апрограмма адәықәҵараан апроблемақәа" #: readme.xrm msgctxt "" @@ -749,7 +749,7 @@ "subscribe\n" "readmeitem.text" msgid "Subscribe" -msgstr "" +msgstr "Анапаҵаҩра" #: readme.xrm msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/reportbuilder/java/org/libreoffice/report/function/metadata.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/reportbuilder/java/org/libreoffice/report/function/metadata.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/reportbuilder/java/org/libreoffice/report/function/metadata.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/reportbuilder/java/org/libreoffice/report/function/metadata.po 2017-12-12 17:45:07.000000000 +0000 @@ -3,16 +3,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: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2017-11-10 07:37+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510299432.000000\n" #: Author-Function_en_US.properties msgctxt "" @@ -52,7 +53,7 @@ "display-name\n" "property.text" msgid "MetaData" -msgstr "" +msgstr "АметаДырқәа" #: category_en_US.properties msgctxt "" @@ -60,4 +61,4 @@ "description\n" "property.text" msgid "Contains functions about meta data" -msgstr "" +msgstr "Иаҳнарбоит АметаДырқәа" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/reportdesign/source/core/resource.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/reportdesign/source/core/resource.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/reportdesign/source/core/resource.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/reportdesign/source/core/resource.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2014-11-02 19:10+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-17 11:39+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1414955458.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510918787.000000\n" #: strings.src msgctxt "" @@ -21,7 +21,7 @@ "RID_STR_DETAIL\n" "string.text" msgid "Detail" -msgstr "" +msgstr "Адырқәа" #: strings.src msgctxt "" @@ -29,7 +29,7 @@ "RID_STR_PAGE_HEADER\n" "string.text" msgid "Page Header" -msgstr "" +msgstr "Хыхьтәи аколонтитул" #: strings.src msgctxt "" @@ -93,7 +93,7 @@ "RID_STR_FIXEDTEXT\n" "string.text" msgid "Label field" -msgstr "" +msgstr "Аҭыҧдырга" #: strings.src msgctxt "" @@ -117,7 +117,7 @@ "RID_STR_REPORT\n" "string.text" msgid "Report" -msgstr "" +msgstr "Аҳасабырба" #: strings.src msgctxt "" @@ -125,7 +125,7 @@ "RID_STR_SHAPE\n" "string.text" msgid "Shape" -msgstr "" +msgstr "Афигура" #: strings.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/reportdesign/source/ui/dlg.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/reportdesign/source/ui/dlg.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/reportdesign/source/ui/dlg.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/reportdesign/source/ui/dlg.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n" -"PO-Revision-Date: 2016-03-10 13:00+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-29 10:26+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457614855.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511951166.000000\n" #: CondFormat.src msgctxt "" @@ -37,7 +37,7 @@ "STR_RPT_PREFIXCHARS\n" "string.text" msgid "Prefix Characters" -msgstr "" +msgstr "Алагамҭатә символқәа" #: GroupsSorting.src msgctxt "" @@ -45,7 +45,7 @@ "STR_RPT_YEAR\n" "string.text" msgid "Year" -msgstr "" +msgstr "Ашықәс" #: GroupsSorting.src msgctxt "" @@ -53,7 +53,7 @@ "STR_RPT_QUARTER\n" "string.text" msgid "Quarter" -msgstr "" +msgstr "Аквартал" #: GroupsSorting.src msgctxt "" @@ -61,7 +61,7 @@ "STR_RPT_MONTH\n" "string.text" msgid "Month" -msgstr "" +msgstr "Амза" #: GroupsSorting.src msgctxt "" @@ -69,7 +69,7 @@ "STR_RPT_WEEK\n" "string.text" msgid "Week" -msgstr "" +msgstr "Амчыбжь" #: GroupsSorting.src msgctxt "" @@ -77,7 +77,7 @@ "STR_RPT_DAY\n" "string.text" msgid "Day" -msgstr "" +msgstr "Амш" #: GroupsSorting.src msgctxt "" @@ -85,7 +85,7 @@ "STR_RPT_HOUR\n" "string.text" msgid "Hour" -msgstr "" +msgstr "Асааҭ" #: GroupsSorting.src msgctxt "" @@ -93,7 +93,7 @@ "STR_RPT_MINUTE\n" "string.text" msgid "Minute" -msgstr "" +msgstr "Аминуҭ" #: GroupsSorting.src msgctxt "" @@ -101,7 +101,7 @@ "STR_RPT_INTERVAL\n" "string.text" msgid "Interval" -msgstr "" +msgstr "Аинтервал" #: GroupsSorting.src msgctxt "" @@ -165,7 +165,7 @@ "RID_STR_FUNCTIONS\n" "string.text" msgid "Functions" -msgstr "" +msgstr "Афункциақәа" #: Navigator.src msgctxt "" @@ -173,7 +173,7 @@ "RID_STR_GROUPS\n" "string.text" msgid "Groups" -msgstr "" +msgstr "Агәыҧқәа" #. The space after the word is no error. #PAGENUMBER# is a replacement and & must not be translated as well as " #: PageNumber.src @@ -182,7 +182,7 @@ "STR_RPT_PN_PAGE\n" "string.text" msgid "\"Page \" & #PAGENUMBER#" -msgstr "" +msgstr "\"Адаҟьа \" & #PAGENUMBER#" #. The space before and after the word is no error. #PAGECOUNT# is a replacement and & must not be translated as well as " #: PageNumber.src @@ -191,4 +191,4 @@ "STR_RPT_PN_PAGE_OF\n" "string.text" msgid " & \" of \" & #PAGECOUNT#" -msgstr "" +msgstr " & \" из \" & #PAGECOUNT#" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/reportdesign/source/ui/inspection.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/reportdesign/source/ui/inspection.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/reportdesign/source/ui/inspection.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/reportdesign/source/ui/inspection.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-07-21 18:53+0000\n" +"PO-Revision-Date: 2017-11-27 08:16+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500663211.000000\n" +"X-POOTLE-MTIME: 1511770607.000000\n" #: inspection.src msgctxt "" @@ -21,7 +21,7 @@ "RID_STR_PROPPAGE_DEFAULT\n" "string.text" msgid "General" -msgstr "" +msgstr "Азеиҧшқәа" #: inspection.src msgctxt "" @@ -29,7 +29,7 @@ "RID_STR_PROPPAGE_DATA\n" "string.text" msgid "Data" -msgstr "" +msgstr "Адырқәа" #: inspection.src msgctxt "" @@ -38,7 +38,7 @@ "No\n" "itemlist.text" msgid "No" -msgstr "" +msgstr "Мап" #: inspection.src msgctxt "" @@ -47,7 +47,7 @@ "Yes\n" "itemlist.text" msgid "Yes" -msgstr "" +msgstr "Ааи" #: inspection.src msgctxt "" @@ -55,7 +55,7 @@ "RID_STR_FORCENEWPAGE\n" "string.text" msgid "Force New Page" -msgstr "" +msgstr "Адаҟьа ҿыц" #: inspection.src msgctxt "" @@ -64,7 +64,7 @@ "None\n" "itemlist.text" msgid "None" -msgstr "" +msgstr "Мап" #: inspection.src msgctxt "" @@ -99,7 +99,7 @@ "RID_STR_NEWROWORCOL\n" "string.text" msgid "New Row Or Column" -msgstr "" +msgstr "Иҿыцу ацәаҳәа/аиҵагыла" #: inspection.src msgctxt "" @@ -116,7 +116,7 @@ "No\n" "itemlist.text" msgid "No" -msgstr "" +msgstr "Мап" #: inspection.src msgctxt "" @@ -190,7 +190,7 @@ "RID_STR_STARTNEWPAGE\n" "string.text" msgid "Start new page" -msgstr "" +msgstr "Иалагатәуп адаҟьаҿыц" #: inspection.src msgctxt "" @@ -206,7 +206,7 @@ "RID_STR_CHARTTYPE\n" "string.text" msgid "Chart type" -msgstr "" +msgstr "Адиаграмма атип" #: inspection.src msgctxt "" @@ -239,7 +239,7 @@ "Per Page\n" "itemlist.text" msgid "Per Page" -msgstr "" +msgstr "Адаҟьаҟны" #: inspection.src msgctxt "" @@ -257,7 +257,7 @@ "None\n" "itemlist.text" msgid "None" -msgstr "" +msgstr "Мап" #: inspection.src msgctxt "" @@ -275,7 +275,7 @@ "Automatic\n" "itemlist.text" msgid "Automatic" -msgstr "" +msgstr "Автоматикала" #: inspection.src msgctxt "" @@ -283,7 +283,7 @@ "RID_STR_PAGEHEADEROPTION\n" "string.text" msgid "Page header" -msgstr "" +msgstr "Хыхьтәи аколонтитул" #: inspection.src msgctxt "" @@ -291,7 +291,7 @@ "RID_STR_PAGEFOOTEROPTION\n" "string.text" msgid "Page footer" -msgstr "" +msgstr "Ҵаҟатәи аколонтитул" #: inspection.src msgctxt "" @@ -300,7 +300,7 @@ "All Pages\n" "itemlist.text" msgid "All Pages" -msgstr "" +msgstr "Адаҟьақәа зегьы" #: inspection.src msgctxt "" @@ -351,7 +351,7 @@ "RID_STR_POSITIONX\n" "string.text" msgid "Position X" -msgstr "" +msgstr "X аҭыҧ" #: inspection.src msgctxt "" @@ -359,7 +359,7 @@ "RID_STR_POSITIONY\n" "string.text" msgid "Position Y" -msgstr "" +msgstr "Y аҭыҧ" #: inspection.src msgctxt "" @@ -367,7 +367,7 @@ "RID_STR_WIDTH\n" "string.text" msgid "Width" -msgstr "" +msgstr "Аҭбаара" #: inspection.src msgctxt "" @@ -375,7 +375,7 @@ "RID_STR_HEIGHT\n" "string.text" msgid "Height" -msgstr "" +msgstr "Аҳаракыра" #: inspection.src msgctxt "" @@ -383,7 +383,7 @@ "RID_STR_INITIALFORMULA\n" "string.text" msgid "Initial value" -msgstr "" +msgstr "Раҧхьатәи аҵакы" #: inspection.src msgctxt "" @@ -391,7 +391,7 @@ "RID_STR_PRESERVEIRI\n" "string.text" msgid "Preserve as Link" -msgstr "" +msgstr "Иеиқәырхатәуп азхьарҧш ҳасабла" #: inspection.src msgctxt "" @@ -423,7 +423,7 @@ "RID_STR_BACKCOLOR\n" "string.text" msgid "Background color" -msgstr "" +msgstr "Аҿаҧшыра аҧштәы" #: inspection.src msgctxt "" @@ -463,7 +463,7 @@ "RID_STR_SCOPE_GROUP\n" "string.text" msgid "Group: %1" -msgstr "" +msgstr "Агәыҧ: %1" #: inspection.src msgctxt "" @@ -471,7 +471,7 @@ "RID_STR_FORMULALIST\n" "string.text" msgid "Function" -msgstr "" +msgstr "Афункциа" #: inspection.src msgctxt "" @@ -496,7 +496,7 @@ "Field or Formula\n" "itemlist.text" msgid "Field or Formula" -msgstr "" +msgstr "Аҭакыра ма аформула" #: inspection.src msgctxt "" @@ -505,7 +505,7 @@ "Function\n" "itemlist.text" msgid "Function" -msgstr "" +msgstr "Афункциа" #: inspection.src msgctxt "" @@ -514,7 +514,7 @@ "Counter\n" "itemlist.text" msgid "Counter" -msgstr "" +msgstr "Аҧхьаӡага" #: inspection.src msgctxt "" @@ -523,7 +523,7 @@ "User defined Function\n" "itemlist.text" msgid "User defined Function" -msgstr "" +msgstr "Ахархәаҩ ифункциа" #: inspection.src msgctxt "" @@ -555,7 +555,7 @@ "RID_STR_DETAILLABEL\n" "string.text" msgid "Chart" -msgstr "" +msgstr "Адиаграмма" #: inspection.src msgctxt "" @@ -563,7 +563,7 @@ "RID_STR_MASTERLABEL\n" "string.text" msgid "Report" -msgstr "" +msgstr "Аҳасабырба" #: inspection.src msgctxt "" @@ -604,7 +604,7 @@ "Top\n" "itemlist.text" msgid "Top" -msgstr "" +msgstr "Хыхьла" #: inspection.src msgctxt "" @@ -613,7 +613,7 @@ "Middle\n" "itemlist.text" msgid "Middle" -msgstr "" +msgstr "Агәҭа ала" #: inspection.src msgctxt "" @@ -622,7 +622,7 @@ "Bottom\n" "itemlist.text" msgid "Bottom" -msgstr "" +msgstr "Ҵаҟала" #: inspection.src msgctxt "" @@ -639,7 +639,7 @@ "Left\n" "itemlist.text" msgid "Left" -msgstr "" +msgstr "Арымарахь" #: inspection.src msgctxt "" @@ -648,7 +648,7 @@ "Right\n" "itemlist.text" msgid "Right" -msgstr "" +msgstr "Арыӷьарахь" #: inspection.src msgctxt "" @@ -657,7 +657,7 @@ "Block\n" "itemlist.text" msgid "Block" -msgstr "" +msgstr "Аблок" #: inspection.src msgctxt "" @@ -666,7 +666,7 @@ "Center\n" "itemlist.text" msgid "Center" -msgstr "" +msgstr "Ацентр ала" #: inspection.src msgctxt "" @@ -674,7 +674,7 @@ "RID_STR_F_COUNTER\n" "string.text" msgid "Counter" -msgstr "" +msgstr "Аҧхьаӡага" #: inspection.src msgctxt "" @@ -690,7 +690,7 @@ "RID_STR_F_MINIMUM\n" "string.text" msgid "Minimum" -msgstr "" +msgstr "Аминимум" #: inspection.src msgctxt "" @@ -698,4 +698,4 @@ "RID_STR_F_MAXIMUM\n" "string.text" msgid "Maximum" -msgstr "" +msgstr "Амаксимум" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/reportdesign/source/ui/report.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/reportdesign/source/ui/report.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/reportdesign/source/ui/report.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/reportdesign/source/ui/report.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-07-21 18:53+0000\n" +"PO-Revision-Date: 2017-11-27 17:13+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500663229.000000\n" +"X-POOTLE-MTIME: 1511802820.000000\n" #: report.src msgctxt "" @@ -21,7 +21,7 @@ "RID_STR_BRWTITLE_PROPERTIES\n" "string.text" msgid "Properties: " -msgstr "" +msgstr "Аҷыдаҟазшьақәа: " #: report.src msgctxt "" @@ -37,7 +37,7 @@ "RID_STR_BRWTITLE_MULTISELECT\n" "string.text" msgid "Multiselection" -msgstr "" +msgstr "Гәыҧ-гәыҧла алкаара" #: report.src msgctxt "" @@ -53,7 +53,7 @@ "RID_STR_PROPTITLE_FIXEDTEXT\n" "string.text" msgid "Label field" -msgstr "" +msgstr "Аҭыҧдырга" #: report.src msgctxt "" @@ -61,7 +61,7 @@ "RID_STR_PROPTITLE_FIXEDLINE\n" "string.text" msgid "Line" -msgstr "" +msgstr "Аҵәаӷәа" #: report.src msgctxt "" @@ -77,7 +77,7 @@ "RID_STR_PROPTITLE_SHAPE\n" "string.text" msgid "Shape" -msgstr "" +msgstr "Афигура" #: report.src msgctxt "" @@ -85,7 +85,7 @@ "RID_STR_PROPTITLE_REPORT\n" "string.text" msgid "Report" -msgstr "" +msgstr "Аҳасабырба" #: report.src msgctxt "" @@ -101,7 +101,7 @@ "RID_STR_PROPTITLE_FUNCTION\n" "string.text" msgid "Function" -msgstr "" +msgstr "Афункциа" #: report.src msgctxt "" @@ -109,7 +109,7 @@ "RID_STR_PROPTITLE_GROUP\n" "string.text" msgid "Group" -msgstr "" +msgstr "Агәыҧ" #: report.src msgctxt "" @@ -117,7 +117,7 @@ "RID_STR_UNDO_CHANGEPOSITION\n" "string.text" msgid "Change Object" -msgstr "" +msgstr "Иҧсахтәуп аобиеқт" #: report.src msgctxt "" @@ -125,7 +125,7 @@ "RID_STR_UNDO_MOVE_GROUP\n" "string.text" msgid "Move Group(s)" -msgstr "" +msgstr "Ииагатәуп агәыҧ(қәа)" #: report.src msgctxt "" @@ -198,7 +198,7 @@ "RID_STR_UNDO_ADDFUNCTION\n" "string.text" msgid "Add function" -msgstr "" +msgstr "Иацҵатәуп афункциа" #: report.src msgctxt "" @@ -206,7 +206,7 @@ "STR_RPT_LABEL\n" "string.text" msgid "~Report name" -msgstr "" +msgstr "Аҳасабырба ахьӡ" #: report.src msgctxt "" @@ -214,7 +214,7 @@ "RID_STR_UNDO_REMOVE_GROUP\n" "string.text" msgid "Delete Group" -msgstr "" +msgstr "Ианыхтәуп агәыҧ" #: report.src msgctxt "" @@ -222,7 +222,7 @@ "RID_STR_UNDO_APPEND_GROUP\n" "string.text" msgid "Add Group" -msgstr "" +msgstr "Иацҵатәуп агәыҧ" #: report.src msgctxt "" @@ -230,7 +230,7 @@ "RID_STR_UNDO_REMOVE_SELECTION\n" "string.text" msgid "Delete Selection" -msgstr "" +msgstr "Ианыхтәуп алкаара" #: report.src msgctxt "" @@ -238,7 +238,7 @@ "RID_STR_UNDO_REMOVE_FUNCTION\n" "string.text" msgid "Delete Function" -msgstr "" +msgstr "Ианыхтәуп афункциа" #: report.src msgctxt "" @@ -246,7 +246,7 @@ "RID_STR_UNDO_CHANGE_SIZE\n" "string.text" msgid "Change Size" -msgstr "" +msgstr "Иҧсахтәуп ашәагаақәа" #: report.src msgctxt "" @@ -254,7 +254,7 @@ "RID_STR_UNDO_PASTE\n" "string.text" msgid "Paste" -msgstr "" +msgstr "Ибжьаргылатәуп" #: report.src msgctxt "" @@ -304,7 +304,7 @@ "RID_STR_FILTER\n" "string.text" msgid "Filter" -msgstr "" +msgstr "Афильтр" #: report.src msgctxt "" @@ -346,7 +346,7 @@ "RID_STR_DELETE\n" "string.text" msgid "Delete" -msgstr "" +msgstr "Ианыхтәуп" #: report.src msgctxt "" @@ -354,7 +354,7 @@ "RID_STR_FUNCTION\n" "string.text" msgid "Function" -msgstr "" +msgstr "Афункциа" #: report.src msgctxt "" @@ -402,7 +402,7 @@ "RID_STR_PAGEHEADERFOOTER_DELETE\n" "string.text" msgid "Delete Page Header/Footer" -msgstr "" +msgstr "Ианыхтәуп адаҟьа аколонтитул" #: report.src msgctxt "" @@ -450,7 +450,7 @@ "RID_STR_DETAIL\n" "string.text" msgid "Detail" -msgstr "" +msgstr "Адырқәа" #: report.src msgctxt "" @@ -458,7 +458,7 @@ "RID_STR_PAGE_HEADER\n" "string.text" msgid "Page Header" -msgstr "" +msgstr "Хыхьтәи аколонтитул" #: report.src msgctxt "" @@ -466,7 +466,7 @@ "RID_STR_PAGE_FOOTER\n" "string.text" msgid "Page Footer" -msgstr "" +msgstr "Ҵаҟатәи аколонтитул" #: report.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/reportdesign/uiconfig/dbreport/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/reportdesign/uiconfig/dbreport/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/reportdesign/uiconfig/dbreport/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/reportdesign/uiconfig/dbreport/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n" -"PO-Revision-Date: 2017-09-18 11:09+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-30 10:24+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1505732943.000000\n" +"X-POOTLE-MTIME: 1512037471.000000\n" #: backgrounddialog.ui msgctxt "" @@ -40,7 +40,7 @@ "title\n" "string.text" msgid "Character Settings" -msgstr "" +msgstr "Асимволқәа рпараметрқәа" #: chardialog.ui msgctxt "" @@ -276,7 +276,7 @@ "label\n" "string.text" msgid "Character Formatting" -msgstr "" +msgstr "Асимволқәа рформатркра" #: conditionwin.ui #, fuzzy @@ -322,7 +322,7 @@ "label\n" "string.text" msgid "_Format:" -msgstr "" +msgstr "_Аформат:" #: datetimedialog.ui msgctxt "" @@ -448,7 +448,7 @@ "label\n" "string.text" msgid "Delete" -msgstr "" +msgstr "Ианыхтәуп" #: floatingsort.ui msgctxt "" @@ -628,7 +628,7 @@ "label\n" "string.text" msgid "_Delete" -msgstr "" +msgstr "Ианыхтәуп" #: navigatormenu.ui msgctxt "" @@ -664,7 +664,7 @@ "label\n" "string.text" msgid "New Function" -msgstr "" +msgstr "Афункциа ҿыц" #: navigatormenu.ui msgctxt "" @@ -682,7 +682,7 @@ "label\n" "string.text" msgid "_Delete" -msgstr "" +msgstr "Ианыхтәуп" #: pagedialog.ui msgctxt "" @@ -745,7 +745,7 @@ "label\n" "string.text" msgid "Format" -msgstr "" +msgstr "Аформат" #: pagenumberdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sc/source/core/src.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sc/source/core/src.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sc/source/core/src.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sc/source/core/src.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2014-11-02 19:10+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-17 08:16+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1414955459.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510906615.000000\n" #: compiler.src msgctxt "" @@ -22,7 +22,7 @@ "Database\n" "itemlist.text" msgid "Database" -msgstr "" +msgstr "Адырқәа рбаза" #: compiler.src msgctxt "" @@ -31,7 +31,7 @@ "Date&Time\n" "itemlist.text" msgid "Date&Time" -msgstr "" +msgstr "Арыцхәи аамҭеи" #: compiler.src msgctxt "" @@ -40,7 +40,7 @@ "Financial\n" "itemlist.text" msgid "Financial" -msgstr "" +msgstr "Афинанстәқәа" #: compiler.src msgctxt "" @@ -49,7 +49,7 @@ "Information\n" "itemlist.text" msgid "Information" -msgstr "" +msgstr "Аинформациа" #: compiler.src msgctxt "" @@ -58,7 +58,7 @@ "Logical\n" "itemlist.text" msgid "Logical" -msgstr "" +msgstr "Алогикатәқәа" #: compiler.src msgctxt "" @@ -67,7 +67,7 @@ "Mathematical\n" "itemlist.text" msgid "Mathematical" -msgstr "" +msgstr "Аматематикатәқәа " #: compiler.src msgctxt "" @@ -76,7 +76,7 @@ "Array\n" "itemlist.text" msgid "Array" -msgstr "" +msgstr "Амассив" #: compiler.src msgctxt "" @@ -85,7 +85,7 @@ "Statistical\n" "itemlist.text" msgid "Statistical" -msgstr "" +msgstr "Астатистикатәқәа" #: compiler.src msgctxt "" @@ -94,7 +94,7 @@ "Spreadsheet\n" "itemlist.text" msgid "Spreadsheet" -msgstr "" +msgstr "Аелектронтә таблица" #: compiler.src msgctxt "" @@ -103,7 +103,7 @@ "Text\n" "itemlist.text" msgid "Text" -msgstr "" +msgstr "Атеқст" #: compiler.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sc/source/ui/miscdlgs.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sc/source/ui/miscdlgs.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sc/source/ui/miscdlgs.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sc/source/ui/miscdlgs.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-09-18 11:09+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-30 10:25+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1505732945.000000\n" +"X-POOTLE-MTIME: 1512037502.000000\n" #: acredlin.src msgctxt "" @@ -45,7 +45,7 @@ "STR_CHG_DELETE_COLS\n" "string.text" msgid "Column deleted" -msgstr "" +msgstr "Аиҵагыла аныхуп" #: acredlin.src msgctxt "" @@ -53,7 +53,7 @@ "STR_CHG_DELETE_ROWS\n" "string.text" msgid "Row deleted" -msgstr "" +msgstr "Ацәаҳәа аныхуп" #: acredlin.src msgctxt "" @@ -61,7 +61,7 @@ "STR_CHG_DELETE_TABS\n" "string.text" msgid "Sheet deleted" -msgstr "" +msgstr "Абӷьыц аныхуп" #: acredlin.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sc/source/ui/navipi.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sc/source/ui/navipi.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sc/source/ui/navipi.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sc/source/ui/navipi.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2016-12-01 15:29+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-12-12 10:27+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1480606150.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1513074425.000000\n" #: navipi.src msgctxt "" @@ -61,7 +61,7 @@ "SCSTR_CONTENT_OLEOBJECT\n" "string.text" msgid "OLE objects" -msgstr "" +msgstr "OLE аобиеқтқәа" #: navipi.src msgctxt "" @@ -85,7 +85,7 @@ "SCSTR_CONTENT_DRAWING\n" "string.text" msgid "Drawing objects" -msgstr "" +msgstr "Асахьақәа" #: navipi.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sc/source/ui/src.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sc/source/ui/src.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sc/source/ui/src.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sc/source/ui/src.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-06-20 13:55+0200\n" -"PO-Revision-Date: 2017-09-18 11:09+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-12-12 10:29+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1505732975.000000\n" +"X-POOTLE-MTIME: 1513074543.000000\n" #: globstr.src msgctxt "" @@ -21,7 +21,7 @@ "STR_UNDO_INSERTCELLS+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Insert" -msgstr "" +msgstr "Ибжьаргылатәуп" #: globstr.src msgctxt "" @@ -29,7 +29,7 @@ "STR_UNDO_DELETECELLS+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Delete" -msgstr "" +msgstr "Ианыхтәуп" #: globstr.src msgctxt "" @@ -37,7 +37,7 @@ "STR_UNDO_CUT+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Cut" -msgstr "" +msgstr "Игәылҧҟатәуп" #: globstr.src msgctxt "" @@ -45,7 +45,7 @@ "STR_UNDO_PASTE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Insert" -msgstr "" +msgstr "Ибжьаргылатәуп" #: globstr.src msgctxt "" @@ -53,7 +53,7 @@ "STR_UNDO_DRAGDROP+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Drag and Drop" -msgstr "" +msgstr "Аиагара" #: globstr.src msgctxt "" @@ -61,7 +61,7 @@ "STR_UNDO_MOVE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Move" -msgstr "" +msgstr "Ииагатәуп" #: globstr.src msgctxt "" @@ -69,7 +69,7 @@ "STR_UNDO_COPY+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Copy" -msgstr "" +msgstr "Акопиа ахыхтәуп" #: globstr.src msgctxt "" @@ -77,7 +77,7 @@ "STR_UNDO_DELETECONTENTS+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Delete" -msgstr "" +msgstr "Ианыхтәуп" #: globstr.src msgctxt "" @@ -85,7 +85,7 @@ "STR_UNDO_SELATTR+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Attributes" -msgstr "" +msgstr "Атрибутқәа" #: globstr.src msgctxt "" @@ -93,7 +93,7 @@ "STR_UNDO_SELATTRLINES+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Attributes/Lines" -msgstr "" +msgstr "Атрибутқәа/Аҵәаӷәақәа" #: globstr.src msgctxt "" @@ -101,7 +101,7 @@ "STR_UNDO_COLWIDTH+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Column Width" -msgstr "" +msgstr "Аиҵагыла аҭбаара" #: globstr.src msgctxt "" @@ -117,7 +117,7 @@ "STR_UNDO_ROWHEIGHT+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Row height" -msgstr "" +msgstr "Ацәаҳәа аҳаракыра" #: globstr.src msgctxt "" @@ -141,7 +141,7 @@ "STR_UNDO_MERGE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Merge" -msgstr "" +msgstr "Еидҵатәуп" #: globstr.src msgctxt "" @@ -157,7 +157,7 @@ "STR_UNDO_AUTOFORMAT+RID_GLOBSTR_OFFSET\n" "string.text" msgid "AutoFormat" -msgstr "" +msgstr "Автоформат" #: globstr.src msgctxt "" @@ -165,7 +165,7 @@ "STR_UNDO_REPLACE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Replace" -msgstr "" +msgstr "Иҧсахтәуп" #: globstr.src msgctxt "" @@ -173,7 +173,7 @@ "STR_UNDO_CURSORATTR+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Attributes" -msgstr "" +msgstr "Атрибутқәа" #: globstr.src msgctxt "" @@ -181,7 +181,7 @@ "STR_UNDO_ENTERDATA+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Input" -msgstr "" +msgstr "Аҭагалара" #: globstr.src msgctxt "" @@ -301,7 +301,7 @@ "STR_UNDO_SORT+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Sort" -msgstr "" +msgstr "Асортра" #: globstr.src msgctxt "" @@ -309,7 +309,7 @@ "STR_UNDO_QUERY+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Filter" -msgstr "" +msgstr "Афильтр" #: globstr.src msgctxt "" @@ -325,7 +325,7 @@ "STR_UNDO_IMPORTDATA+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Importing" -msgstr "" +msgstr "Аимпорт" #: globstr.src msgctxt "" @@ -341,7 +341,7 @@ "STR_UNDO_LISTNAMES+RID_GLOBSTR_OFFSET\n" "string.text" msgid "List names" -msgstr "" +msgstr "Ахьӡқәа рыхьӡынҵа" #: globstr.src msgctxt "" @@ -373,7 +373,7 @@ "STR_UNDO_CONSOLIDATE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Consolidate" -msgstr "" +msgstr "Еидҵатәуп" #: globstr.src msgctxt "" @@ -389,7 +389,7 @@ "STR_UNDO_MAKESCENARIO+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Create scenario" -msgstr "" +msgstr "Иаҧҵатәуп асценари" #: globstr.src msgctxt "" @@ -397,7 +397,7 @@ "STR_UNDO_EDITSCENARIO+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Edit scenario" -msgstr "" +msgstr "Иҧсахтәуп асценари" #: globstr.src msgctxt "" @@ -405,7 +405,7 @@ "STR_UNDO_APPLYCELLSTYLE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Apply Cell Style" -msgstr "" +msgstr "Ихархәатәуп абларҭа рстиль" #: globstr.src msgctxt "" @@ -413,7 +413,7 @@ "STR_UNDO_EDITCELLSTYLE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Edit Cell Style" -msgstr "" +msgstr "Иҧсахтәуп адаҟьа астиль" #: globstr.src msgctxt "" @@ -421,7 +421,7 @@ "STR_UNDO_APPLYPAGESTYLE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Apply Page Style" -msgstr "" +msgstr "Ихархәатәуп адаҟьа астиль" #: globstr.src msgctxt "" @@ -429,7 +429,7 @@ "STR_UNDO_EDITPAGESTYLE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Edit Page Style" -msgstr "" +msgstr "Иҧсахтәуп адаҟьа астиль" #: globstr.src msgctxt "" @@ -469,7 +469,7 @@ "STR_UNDO_DETADDERROR+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Trace Error" -msgstr "" +msgstr "Иаарҧштәуп агхақәа" #: globstr.src msgctxt "" @@ -501,7 +501,7 @@ "STR_UNDO_CHARTDATA+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Modify chart data range" -msgstr "" +msgstr "Иҧсахтәуп адырқәа рдиапазон" #: globstr.src msgctxt "" @@ -509,7 +509,7 @@ "STR_UNDO_ORIGINALSIZE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Original Size" -msgstr "" +msgstr "Ахалагаратә шәагаа" #: globstr.src msgctxt "" @@ -517,7 +517,7 @@ "STR_UNDO_UPDATELINK+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Update Link" -msgstr "" +msgstr "Ирҿыцтәуп азхьарҧш" #: globstr.src msgctxt "" @@ -525,7 +525,7 @@ "STR_UNDO_REMOVELINK+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Unlink" -msgstr "" +msgstr "Иқәгатәуп азхьарҧш" #: globstr.src msgctxt "" @@ -533,7 +533,7 @@ "STR_UNDO_INSERTAREALINK+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Insert Link" -msgstr "" +msgstr "бжьаргылатәуп агиперзхьарҧш" #: globstr.src msgctxt "" @@ -549,7 +549,7 @@ "STR_UNDO_INSERTNOTE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Insert Comment" -msgstr "" +msgstr "Ибжьаргылатәуп акомментари" #: globstr.src msgctxt "" @@ -557,7 +557,7 @@ "STR_UNDO_DELETENOTE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Delete Comment" -msgstr "" +msgstr "Ианыхтәуп акомментари" #: globstr.src msgctxt "" @@ -565,7 +565,7 @@ "STR_UNDO_SHOWNOTE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Show Comment" -msgstr "" +msgstr "Иаарҧштәуп акомментари" #: globstr.src msgctxt "" @@ -573,7 +573,7 @@ "STR_UNDO_HIDENOTE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Hide Comment" -msgstr "" +msgstr "Иҵәахтәуп акомментари" #: globstr.src msgctxt "" @@ -581,7 +581,7 @@ "STR_UNDO_SHOWALLNOTES+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Show All Comments" -msgstr "" +msgstr "Иаарҧштәуп акомментариқәа зегьы" #: globstr.src msgctxt "" @@ -589,7 +589,7 @@ "STR_UNDO_HIDEALLNOTES+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Hide All Comments" -msgstr "" +msgstr "Иҵәахтәуп акомментариқәа зегьы" #: globstr.src msgctxt "" @@ -597,7 +597,7 @@ "STR_UNDO_EDITNOTE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Edit Comment" -msgstr "" +msgstr "Иҧсахтәуп акомментари" #: globstr.src msgctxt "" @@ -621,7 +621,7 @@ "STR_UNDO_PROTECT_TAB+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Protect sheet" -msgstr "" +msgstr "Иқәыргылатәуп абӷьыц ахьчага" #: globstr.src msgctxt "" @@ -629,7 +629,7 @@ "STR_UNDO_UNPROTECT_TAB+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Unprotect sheet" -msgstr "" +msgstr "Иқәгатәуп абӷьыц ахьчага" #: globstr.src msgctxt "" @@ -637,7 +637,7 @@ "STR_UNDO_PROTECT_DOC+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Protect document" -msgstr "" +msgstr "Иқәыргылатәуп адокумент ахьчага" #: globstr.src msgctxt "" @@ -645,7 +645,7 @@ "STR_UNDO_UNPROTECT_DOC+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Unprotect document" -msgstr "" +msgstr "Иқәгатәуп адокумент ахьчага" #: globstr.src msgctxt "" @@ -653,7 +653,7 @@ "STR_UNDO_PRINTRANGES+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Print range" -msgstr "" +msgstr "Акьыҧхьра адиапазон" #: globstr.src msgctxt "" @@ -669,7 +669,7 @@ "STR_UNDO_PRINTSCALE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Change Scale" -msgstr "" +msgstr "Иҧсахтәуп амасштаб" #: globstr.src msgctxt "" @@ -693,7 +693,7 @@ "STR_UNDO_TRANSLITERATE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Change Case" -msgstr "" +msgstr "Аргистр" #: globstr.src msgctxt "" @@ -701,7 +701,7 @@ "STR_DBNAME_IMPORT+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Import" -msgstr "" +msgstr "Аимпорт" #: globstr.src msgctxt "" @@ -709,7 +709,7 @@ "STR_MSSG_DOSUBTOTALS_0+RID_GLOBSTR_OFFSET\n" "string.text" msgid "%PRODUCTNAME Calc" -msgstr "" +msgstr "%PRODUCTNAME Calc" #: globstr.src msgctxt "" @@ -717,7 +717,7 @@ "STR_MSSG_DOSUBTOTALS_1+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Delete data?" -msgstr "" +msgstr "Ианыхтәума адырқәа?" #: globstr.src msgctxt "" @@ -751,7 +751,7 @@ "STR_MSSG_IMPORTDATA_0+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Error while importing data!" -msgstr "" +msgstr "Адырқәа римпорт агха!" #: globstr.src msgctxt "" @@ -876,7 +876,7 @@ "STR_TABLE_GESAMTERGEBNIS+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Grand Total" -msgstr "" +msgstr "Азеиҧш еихшьала" #: globstr.src msgctxt "" @@ -884,7 +884,7 @@ "STR_TABLE_ERGEBNIS+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Result" -msgstr "" +msgstr "Алҵшәа" #: globstr.src msgctxt "" @@ -892,7 +892,7 @@ "STR_UNDO_SPELLING+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Spellcheck" -msgstr "" +msgstr "Аорфографиа агәаҭара" #: globstr.src msgctxt "" @@ -908,7 +908,7 @@ "STR_TABLE_ODER+RID_GLOBSTR_OFFSET\n" "string.text" msgid "OR" -msgstr "" +msgstr "МА" #: globstr.src msgctxt "" @@ -916,7 +916,7 @@ "STR_TABLE_DEF+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Sheet" -msgstr "" +msgstr "Абӷьыц" #: globstr.src msgctxt "" @@ -948,7 +948,7 @@ "STR_PIVOT_MOVENOTALLOWED+RID_GLOBSTR_OFFSET\n" "string.text" msgid "The data range can not be deleted." -msgstr "" +msgstr "Адырқәа рдиапазон аныхра ауам." #: globstr.src msgctxt "" @@ -988,7 +988,7 @@ "STR_PIVOT_TOTAL+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Total" -msgstr "" +msgstr "Аихшьала" #: globstr.src msgctxt "" @@ -996,7 +996,7 @@ "STR_PIVOT_DATA+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Data" -msgstr "" +msgstr "Адырқәа" #: globstr.src msgctxt "" @@ -1012,7 +1012,7 @@ "STR_ROWCOL_SELCOUNT+RID_GLOBSTR_OFFSET\n" "string.text" msgid "$1 rows, $2 columns selected" -msgstr "" +msgstr "$1 цәаҳәа, $2 еиҵагыла алхуп" #: globstr.src msgctxt "" @@ -1028,7 +1028,7 @@ "STR_COLUMN+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Column" -msgstr "" +msgstr "Аиҵагыла" #: globstr.src msgctxt "" @@ -1036,7 +1036,7 @@ "STR_ROW+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Row" -msgstr "" +msgstr "Ацәаҳәа" #: globstr.src msgctxt "" @@ -1044,7 +1044,7 @@ "STR_PAGE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Page" -msgstr "" +msgstr "Адаҟьа" #: globstr.src msgctxt "" @@ -1052,7 +1052,7 @@ "STR_PGNUM+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Page %1" -msgstr "" +msgstr "Адаҟьа %1" #: globstr.src msgctxt "" @@ -1060,7 +1060,7 @@ "STR_LOAD_DOC+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Load document" -msgstr "" +msgstr "Иҭагалатәуп адокумент" #: globstr.src msgctxt "" @@ -1124,7 +1124,7 @@ "STR_UNDO_THESAURUS+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Thesaurus" -msgstr "" +msgstr "Атезаурус" #: globstr.src msgctxt "" @@ -1132,7 +1132,7 @@ "STR_FILL_TAB+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Fill Sheets" -msgstr "" +msgstr "Ихарҭәаатәуп абӷьыцқәа" #: globstr.src msgctxt "" @@ -1156,7 +1156,7 @@ "STR_NOAREASELECTED+RID_GLOBSTR_OFFSET\n" "string.text" msgid "A range has not been selected." -msgstr "" +msgstr "Адиапазон алкааӡам." #: globstr.src msgctxt "" @@ -1164,7 +1164,7 @@ "STR_NEWTABNAMENOTUNIQUE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "This name already exists." -msgstr "" +msgstr "Ари аҩыза ахьӡ ыҟоуп." #: globstr.src msgctxt "" @@ -1183,7 +1183,7 @@ "STR_SCENARIO+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Scenario" -msgstr "" +msgstr "Асценари" #: globstr.src msgctxt "" @@ -1199,7 +1199,7 @@ "STR_FUN_TEXT_SUM+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Sum" -msgstr "" +msgstr "Аицҵалыҵ" #: globstr.src msgctxt "" @@ -1207,7 +1207,7 @@ "STR_FUN_TEXT_SELECTION_COUNT+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Selection count" -msgstr "" +msgstr "Диапазон алкаауп" #: globstr.src msgctxt "" @@ -1215,7 +1215,7 @@ "STR_FUN_TEXT_COUNT+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Count" -msgstr "" +msgstr "Ахыҧхьаӡара" #: globstr.src msgctxt "" @@ -1223,7 +1223,7 @@ "STR_FUN_TEXT_COUNT2+RID_GLOBSTR_OFFSET\n" "string.text" msgid "CountA" -msgstr "" +msgstr "Ахыҧхьаӡара2" #: globstr.src msgctxt "" @@ -1231,7 +1231,7 @@ "STR_FUN_TEXT_AVG+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Average" -msgstr "" +msgstr "Ибжьаратәу аҵакы" #: globstr.src msgctxt "" @@ -1247,7 +1247,7 @@ "STR_FUN_TEXT_MAX+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Max" -msgstr "" +msgstr "Амаксимум" #: globstr.src msgctxt "" @@ -1255,7 +1255,7 @@ "STR_FUN_TEXT_MIN+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Min" -msgstr "" +msgstr "Аминимум" #: globstr.src msgctxt "" @@ -1263,7 +1263,7 @@ "STR_FUN_TEXT_PRODUCT+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Product" -msgstr "" +msgstr "Ашьҭыхлыҵ" #: globstr.src msgctxt "" @@ -1287,7 +1287,7 @@ "STR_NOCHARTATCURSOR+RID_GLOBSTR_OFFSET\n" "string.text" msgid "No chart found at this position." -msgstr "" +msgstr "Адиаграмма ари апозициаҿ иҧшаам." #: globstr.src msgctxt "" @@ -1303,7 +1303,7 @@ "STR_EMPTYDATA+RID_GLOBSTR_OFFSET\n" "string.text" msgid "(empty)" -msgstr "" +msgstr "(иҭацәуп)" #: globstr.src msgctxt "" @@ -1311,7 +1311,7 @@ "STR_PRINT_INVALID_AREA+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Invalid print range" -msgstr "" +msgstr "Акьыҧхьра зымуа адиапазон" #: globstr.src msgctxt "" @@ -1319,7 +1319,7 @@ "STR_PAGESTYLE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Page Style" -msgstr "" +msgstr "Адаҟьа астиль" #: globstr.src msgctxt "" @@ -1343,7 +1343,7 @@ "STR_TEXTATTRS+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Text Attributes" -msgstr "" +msgstr "Атеқст атрибутқәа" #: globstr.src #, fuzzy @@ -1360,7 +1360,7 @@ "STR_HFCMD_PAGE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "PAGE" -msgstr "" +msgstr "АДАҞЬА" #: globstr.src msgctxt "" @@ -1368,7 +1368,7 @@ "STR_HFCMD_PAGES+RID_GLOBSTR_OFFSET\n" "string.text" msgid "PAGES" -msgstr "" +msgstr "АДАҞЬАҚӘА" #: globstr.src msgctxt "" @@ -1376,7 +1376,7 @@ "STR_HFCMD_DATE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "DATE" -msgstr "" +msgstr "DATE" #: globstr.src msgctxt "" @@ -1384,7 +1384,7 @@ "STR_HFCMD_TIME+RID_GLOBSTR_OFFSET\n" "string.text" msgid "TIME" -msgstr "" +msgstr "TIME" #: globstr.src msgctxt "" @@ -1392,7 +1392,7 @@ "STR_HFCMD_FILE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "FILE" -msgstr "" +msgstr "FILE" #: globstr.src msgctxt "" @@ -1400,7 +1400,7 @@ "STR_HFCMD_TABLE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "SHEET" -msgstr "" +msgstr "SHEET" #: globstr.src msgctxt "" @@ -1416,7 +1416,7 @@ "STR_READONLYERR+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Document opened in read-only mode." -msgstr "" +msgstr "Адокумент аартуп аҧхьара мацаразы." #: globstr.src msgctxt "" @@ -1448,7 +1448,7 @@ "STR_ERROR_STR+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Err:" -msgstr "" +msgstr "Агха:" #: globstr.src msgctxt "" @@ -1456,7 +1456,7 @@ "STR_LONG_ERR_DIV_ZERO+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Error: Division by zero" -msgstr "" +msgstr "Агха: ноль ала ашара" #: globstr.src msgctxt "" @@ -1464,7 +1464,7 @@ "STR_LONG_ERR_NO_VALUE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Error: Wrong data type" -msgstr "" +msgstr "Агха: Ииашам адырқәа ртип" #: globstr.src msgctxt "" @@ -1472,7 +1472,7 @@ "STR_LONG_ERR_NO_REF+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Error: Not a valid reference" -msgstr "" +msgstr "Агха: изымуа азхьарҧш" #: globstr.src msgctxt "" @@ -1480,7 +1480,7 @@ "STR_LONG_ERR_NO_NAME+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Error: Invalid name" -msgstr "" +msgstr "Агха: изымуа ахьӡ" #: globstr.src msgctxt "" @@ -1488,7 +1488,7 @@ "STR_LONG_ERR_ILL_FPO+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Error: Invalid numeric value" -msgstr "" +msgstr "Агха: изымуа ахьыҧхьаӡаратә ҵакы" #: globstr.src msgctxt "" @@ -1504,7 +1504,7 @@ "STR_NO_ADDIN+RID_GLOBSTR_OFFSET\n" "string.text" msgid "#ADDIN?" -msgstr "" +msgstr "#ADDIN?" #: globstr.src msgctxt "" @@ -1520,7 +1520,7 @@ "STR_NO_MACRO+RID_GLOBSTR_OFFSET\n" "string.text" msgid "#MACRO?" -msgstr "" +msgstr "#АМАКРОС?" #: globstr.src msgctxt "" @@ -1528,7 +1528,7 @@ "STR_LONG_ERR_NO_MACRO+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Error: Macro not found" -msgstr "" +msgstr "Агха: амакрос ҧшаам" #: globstr.src msgctxt "" @@ -1536,7 +1536,7 @@ "STR_LONG_ERR_SYNTAX+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Internal syntactical error" -msgstr "" +msgstr "Аҩныҵҟатәи асинтаксистә гха" #: globstr.src msgctxt "" @@ -1544,7 +1544,7 @@ "STR_LONG_ERR_ILL_ARG+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Error: Invalid argument" -msgstr "" +msgstr "Агха: изымуа аргумент" #: globstr.src msgctxt "" @@ -1560,7 +1560,7 @@ "STR_LONG_ERR_ILL_CHAR+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Error: Invalid character" -msgstr "" +msgstr "Агха: изымуа асимвол" #: globstr.src msgctxt "" @@ -1576,7 +1576,7 @@ "STR_LONG_ERR_OP_EXP+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Error: Operator missing" -msgstr "" +msgstr "Агха: аоператор ыҟаӡам" #: globstr.src msgctxt "" @@ -1584,7 +1584,7 @@ "STR_LONG_ERR_VAR_EXP+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Error: Variable missing" -msgstr "" +msgstr "Агха: аҽеиҭак ыҟаӡам" #: globstr.src msgctxt "" @@ -1600,7 +1600,7 @@ "STR_LONG_ERR_STR_OVF+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Error: String overflow" -msgstr "" +msgstr "Агха: асимволқәа рцәаҳәа аура дуцәоуп" #: globstr.src msgctxt "" @@ -1616,7 +1616,7 @@ "STR_LONG_ERR_MATRIX_SIZE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Error: Array or matrix size" -msgstr "" +msgstr "Агха: амассив ма аматрица рышәагаа" #: globstr.src msgctxt "" @@ -1648,7 +1648,7 @@ "STR_CELL_FILTER+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Filter" -msgstr "" +msgstr "Афильтр" #: globstr.src msgctxt "" @@ -1664,7 +1664,7 @@ "STR_INVALID_EPS+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Invalid increment" -msgstr "" +msgstr "Ииашам ашьаҿа" #: globstr.src msgctxt "" @@ -1691,7 +1691,7 @@ "STR_AREA+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Range" -msgstr "" +msgstr "Адиапазон" #: globstr.src msgctxt "" @@ -1699,7 +1699,7 @@ "STR_YES+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Yes" -msgstr "" +msgstr "Ааи" #: globstr.src msgctxt "" @@ -1707,7 +1707,7 @@ "STR_NO+RID_GLOBSTR_OFFSET\n" "string.text" msgid "No" -msgstr "" +msgstr "Мап" #: globstr.src msgctxt "" @@ -1715,7 +1715,7 @@ "STR_PROTECTION+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Protection" -msgstr "" +msgstr "Ахьчара" #: globstr.src msgctxt "" @@ -1731,7 +1731,7 @@ "STR_HIDE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Hide" -msgstr "" +msgstr "Иҵәахтәуп" #: globstr.src msgctxt "" @@ -1739,7 +1739,7 @@ "STR_PRINT+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Print" -msgstr "" +msgstr "Акьыҧхьра" #: globstr.src msgctxt "" @@ -1758,7 +1758,7 @@ "STR_OPTIONAL+RID_GLOBSTR_OFFSET\n" "string.text" msgid "(optional)" -msgstr "" +msgstr "(ихымҧадатәиӡам)" #: globstr.src msgctxt "" @@ -1766,7 +1766,7 @@ "STR_REQUIRED+RID_GLOBSTR_OFFSET\n" "string.text" msgid "(required)" -msgstr "" +msgstr "(ихымҧадатәиуп)" #: globstr.src msgctxt "" @@ -1774,7 +1774,7 @@ "STR_NOTES+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Comments" -msgstr "" +msgstr "Акомментариқәа" #: globstr.src msgctxt "" @@ -1782,7 +1782,7 @@ "STR_QUERY_DELTAB+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Are you sure you want to delete the selected sheet(s)?" -msgstr "" +msgstr "Ианыхтәума иалху абӷьыцқәа?" #: globstr.src msgctxt "" @@ -1790,7 +1790,7 @@ "STR_QUERY_DELSCENARIO+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Are you sure you want to delete the selected scenario?" -msgstr "" +msgstr "Ианыхтәума иалху асценари?" #: globstr.src msgctxt "" @@ -1798,7 +1798,7 @@ "STR_EXPORT_ASCII+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Export Text File" -msgstr "" +msgstr "Атеқсттә фаил ахь аекспорт" #: globstr.src msgctxt "" @@ -1806,7 +1806,7 @@ "STR_IMPORT_LOTUS+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Import Lotus files" -msgstr "" +msgstr "Lotus афаилқәа римпорт" #: globstr.src msgctxt "" @@ -1814,7 +1814,7 @@ "STR_IMPORT_DBF+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Import DBase files" -msgstr "" +msgstr "DBase афаилқәа римпорт" #: globstr.src msgctxt "" @@ -1822,7 +1822,7 @@ "STR_EXPORT_DBF+RID_GLOBSTR_OFFSET\n" "string.text" msgid "DBase export" -msgstr "" +msgstr "DBase аекспорт" #: globstr.src msgctxt "" @@ -1830,7 +1830,7 @@ "STR_EXPORT_DIF+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Dif Export" -msgstr "" +msgstr "Dif аекспорт" #: globstr.src msgctxt "" @@ -1838,7 +1838,7 @@ "STR_IMPORT_DIF+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Dif Import" -msgstr "" +msgstr "Dif Аимпорт" #: globstr.src msgctxt "" @@ -1846,7 +1846,7 @@ "STR_STYLENAME_STANDARD+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Default" -msgstr "" +msgstr "Астандарт" #: globstr.src msgctxt "" @@ -1854,7 +1854,7 @@ "STR_STYLENAME_RESULT+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Result" -msgstr "" +msgstr "Алҵшәа" #: globstr.src msgctxt "" @@ -1862,7 +1862,7 @@ "STR_STYLENAME_RESULT1+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Result2" -msgstr "" +msgstr "Алҵшәа2" #: globstr.src msgctxt "" @@ -1886,7 +1886,7 @@ "STR_STYLENAME_REPORT+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Report" -msgstr "" +msgstr "Аҳасабырба" #: globstr.src msgctxt "" @@ -1937,7 +1937,7 @@ "STR_UNDO_DELETE_TAB+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Delete Sheets" -msgstr "" +msgstr "Ианыхтәуп абӷьыцқәа" #: globstr.src msgctxt "" @@ -1985,7 +1985,7 @@ "STR_UNDO_APPEND_TAB+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Append sheet" -msgstr "" +msgstr "Иацҵатәуп абӷыц" #: globstr.src msgctxt "" @@ -1993,7 +1993,7 @@ "STR_UNDO_SHOWTAB+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Show Sheet" -msgstr "" +msgstr "Иаарҧштәуп абӷьыц" #: globstr.src msgctxt "" @@ -2001,7 +2001,7 @@ "STR_UNDO_SHOWTABS+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Show Sheets" -msgstr "" +msgstr "Иаарҧштәуп абӷьыцқәа" #: globstr.src msgctxt "" @@ -2009,7 +2009,7 @@ "STR_UNDO_HIDETAB+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Hide sheet" -msgstr "" +msgstr "Иҵәахтәуп абӷьыц" #: globstr.src msgctxt "" @@ -2017,7 +2017,7 @@ "STR_UNDO_HIDETABS+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Hide sheets" -msgstr "" +msgstr "Иҵәахтәуп абӷьыцқәа" #: globstr.src msgctxt "" @@ -2081,7 +2081,7 @@ "STR_SCENARIO_NOTFOUND+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Scenario not found" -msgstr "" +msgstr "Асценари ҧшаам" #: globstr.src msgctxt "" @@ -2097,7 +2097,7 @@ "STR_VOBJ_OBJECT+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Objects/Images" -msgstr "" +msgstr "Абиектқәа/Асахьақәа" #: globstr.src msgctxt "" @@ -2105,7 +2105,7 @@ "STR_VOBJ_CHART+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Charts" -msgstr "" +msgstr "Адиаграммақәа" #: globstr.src msgctxt "" @@ -2113,7 +2113,7 @@ "STR_VOBJ_DRAWINGS+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Drawing Objects" -msgstr "" +msgstr "Асахьақәа" #: globstr.src msgctxt "" @@ -2121,7 +2121,7 @@ "STR_VOBJ_MODE_SHOW+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Show" -msgstr "" +msgstr "Иаарҧштәуп" #: globstr.src msgctxt "" @@ -2129,7 +2129,7 @@ "STR_VOBJ_MODE_HIDE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Hide" -msgstr "" +msgstr "Иҵәахтәуп" #: globstr.src msgctxt "" @@ -2153,7 +2153,7 @@ "STR_SCATTR_PAGE_NOTES+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Comments" -msgstr "" +msgstr "Акомментариқәа" #: globstr.src msgctxt "" @@ -2185,7 +2185,7 @@ "STR_SCATTR_PAGE_NULLVALS+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Zero Values" -msgstr "" +msgstr "Инультәу аҵакқәа" #: globstr.src msgctxt "" @@ -2193,7 +2193,7 @@ "STR_SCATTR_PAGE_PRINTDIR+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Print direction" -msgstr "" +msgstr "Акьыҧхьра ахырхарҭа" #: globstr.src msgctxt "" @@ -2201,7 +2201,7 @@ "STR_SCATTR_PAGE_FIRSTPAGENO+RID_GLOBSTR_OFFSET\n" "string.text" msgid "First page number" -msgstr "" +msgstr "Актәи адаҟьа аномер" #: globstr.src msgctxt "" @@ -2233,7 +2233,7 @@ "STR_SCATTR_PAGE_SCALE_WIDTH+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Width" -msgstr "" +msgstr "Аҭбаара" #: globstr.src msgctxt "" @@ -2241,7 +2241,7 @@ "STR_SCATTR_PAGE_SCALE_HEIGHT+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Height" -msgstr "" +msgstr "Аҳаракыра" #: globstr.src msgctxt "" @@ -2249,7 +2249,7 @@ "STR_SCATTR_PAGE_SCALE_PAGES+RID_GLOBSTR_OFFSET\n" "string.text" msgid "%1 page(s)" -msgstr "" +msgstr "%1 адаҟьа(қәа)" #: globstr.src msgctxt "" @@ -2257,7 +2257,7 @@ "STR_SCATTR_PAGE_SCALE_AUTO+RID_GLOBSTR_OFFSET\n" "string.text" msgid "automatic" -msgstr "" +msgstr "автоматикала" #: globstr.src msgctxt "" @@ -2265,7 +2265,7 @@ "STR_DOC_STAT+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Statistics" -msgstr "" +msgstr "Астатистика" #: globstr.src msgctxt "" @@ -2273,7 +2273,7 @@ "STR_LINKERROR+RID_GLOBSTR_OFFSET\n" "string.text" msgid "The link could not be updated." -msgstr "" +msgstr "Азхьарҧш арҿыцра ауам." #: globstr.src msgctxt "" @@ -2281,7 +2281,7 @@ "STR_LINKERRORFILE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "File:" -msgstr "" +msgstr "Афаил:" #: globstr.src msgctxt "" @@ -2289,7 +2289,7 @@ "STR_LINKERRORTAB+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Sheet:" -msgstr "" +msgstr "Абӷьыц:" #: globstr.src msgctxt "" @@ -2305,7 +2305,7 @@ "STR_DOC_INFO+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Doc.Information" -msgstr "" +msgstr "Адокумент иазкны" #: globstr.src msgctxt "" @@ -2313,7 +2313,7 @@ "STR_DOC_PRINTED+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Printed" -msgstr "" +msgstr "Икьыҧхьуп" #: globstr.src msgctxt "" @@ -2375,7 +2375,7 @@ "STR_TABREMOVE_ERROR+RID_GLOBSTR_OFFSET\n" "string.text" msgid "The sheets could not be deleted." -msgstr "" +msgstr "Абӷьыцқәа раныхра ауам." #: globstr.src msgctxt "" @@ -2417,7 +2417,7 @@ "STR_GRAPHICNAME+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Image" -msgstr "" +msgstr "Асахьа" #: globstr.src msgctxt "" @@ -2425,7 +2425,7 @@ "STR_INVALIDNAME+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Invalid name." -msgstr "" +msgstr "Изымуа ахьӡ." #: globstr.src msgctxt "" @@ -2433,7 +2433,7 @@ "STR_VALID_MACRONOTFOUND+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Selected macro not found." -msgstr "" +msgstr "Иалху амакрос ҧшаам." #: globstr.src msgctxt "" @@ -2441,7 +2441,7 @@ "STR_VALID_DEFERROR+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Invalid value." -msgstr "" +msgstr "Изымуа аҵакы." #: globstr.src msgctxt "" @@ -2507,7 +2507,7 @@ "STR_FUNCTIONLIST_MORE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "More..." -msgstr "" +msgstr "Иҵегь..." #: globstr.src msgctxt "" @@ -2515,7 +2515,7 @@ "STR_ERR_INVALID_AREA+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Invalid range" -msgstr "" +msgstr "Изымуа адиапазон" #: globstr.src msgctxt "" @@ -2571,7 +2571,7 @@ "STR_OPERATION_FILTER+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Filter" -msgstr "" +msgstr "Афильтр" #: globstr.src msgctxt "" @@ -2595,7 +2595,7 @@ "STR_OPERATION_NONE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "None" -msgstr "" +msgstr "Мап" #: globstr.src msgctxt "" @@ -2611,7 +2611,7 @@ "STR_TIP_WIDTH+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Width:" -msgstr "" +msgstr "Аҭбаара:" #: globstr.src msgctxt "" @@ -2619,7 +2619,7 @@ "STR_TIP_HEIGHT+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Height:" -msgstr "" +msgstr "Аҳаракыра:" #: globstr.src msgctxt "" @@ -2627,16 +2627,15 @@ "STR_TIP_HIDE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Hide" -msgstr "" +msgstr "Иҵәахтәуп" #: globstr.src -#, fuzzy msgctxt "" "globstr.src\n" "STR_CHANGED_BLANK+RID_GLOBSTR_OFFSET\n" "string.text" msgid "" -msgstr "" +msgstr "(иҭацәуп)" #: globstr.src msgctxt "" @@ -2660,7 +2659,7 @@ "STR_CHANGED_DELETE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "#1 deleted" -msgstr "" +msgstr "#1 аныхуп" #: globstr.src msgctxt "" @@ -2721,7 +2720,7 @@ "STR_NAME_INPUT_CELL+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Select Cell" -msgstr "" +msgstr "Иалхтәуп абларҭа" #: globstr.src msgctxt "" @@ -2729,7 +2728,7 @@ "STR_NAME_INPUT_RANGE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Select Range" -msgstr "" +msgstr "Иалхтәуп адиапазон" #: globstr.src msgctxt "" @@ -2737,7 +2736,7 @@ "STR_NAME_INPUT_DBRANGE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Select Database Range" -msgstr "" +msgstr "Иалхтәуп адырқәа рдиапазон" #: globstr.src msgctxt "" @@ -2817,7 +2816,7 @@ "STR_RECALC_MANUAL+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Manual" -msgstr "" +msgstr "Напыла" #: globstr.src msgctxt "" @@ -2825,7 +2824,7 @@ "STR_RECALC_AUTO+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Automatic" -msgstr "" +msgstr "Автоматикала" #: globstr.src msgctxt "" @@ -2934,7 +2933,7 @@ "STR_UNKNOWN_USER+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Unknown User" -msgstr "" +msgstr "Идырым ахархәаҩ" #: globstr.src msgctxt "" @@ -2942,7 +2941,7 @@ "STR_SHAPE_AUTOSHAPE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "AutoShape" -msgstr "" +msgstr "Автофигура" #: globstr.src msgctxt "" @@ -2950,7 +2949,7 @@ "STR_SHAPE_RECTANGLE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Rectangle" -msgstr "" +msgstr "Акәакьҭаиаша" #: globstr.src msgctxt "" @@ -2958,7 +2957,7 @@ "STR_SHAPE_LINE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Line" -msgstr "" +msgstr "Ацәаҳәа" #: globstr.src msgctxt "" @@ -2974,7 +2973,7 @@ "STR_FORM_BUTTON+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Button" -msgstr "" +msgstr "Акнопка" #: globstr.src msgctxt "" @@ -2998,7 +2997,7 @@ "STR_FORM_LABEL+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Label" -msgstr "" +msgstr "Аҭыҧрбага" #: globstr.src msgctxt "" @@ -3006,7 +3005,7 @@ "STR_FORM_LISTBOX+RID_GLOBSTR_OFFSET\n" "string.text" msgid "List Box" -msgstr "" +msgstr "Ахьӡынҵа" #: globstr.src msgctxt "" @@ -3046,7 +3045,7 @@ "STR_STYLE_FAMILY_CELL+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Cell Styles" -msgstr "" +msgstr "Абларҭа астильқәа" #: globstr.src msgctxt "" @@ -3054,7 +3053,7 @@ "STR_STYLE_FAMILY_PAGE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Page Styles" -msgstr "" +msgstr "Адаҟьа астильқәа" #: globstr.src msgctxt "" @@ -3102,7 +3101,7 @@ "STR_HEADER_NAME+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Name" -msgstr "" +msgstr "Ахьӡ" #: globstr.src msgctxt "" @@ -3126,7 +3125,7 @@ "STR_MULTI_SELECT+RID_GLOBSTR_OFFSET\n" "string.text" msgid "(multiple)" -msgstr "" +msgstr "(ҧыҭк)" #: globstr.src msgctxt "" @@ -3177,7 +3176,7 @@ "STR_HEADER_RANGE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Range" -msgstr "" +msgstr "Адиапазон" #: globstr.src msgctxt "" @@ -3193,7 +3192,7 @@ "STR_COND_CONDITION+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Cell value is" -msgstr "" +msgstr "Абларҭа аҵакы" #: globstr.src msgctxt "" @@ -3209,7 +3208,7 @@ "STR_COND_DATABAR+RID_GLOBSTR_OFFSET\n" "string.text" msgid "DataBar" -msgstr "" +msgstr "Агистограмма" #: globstr.src msgctxt "" @@ -3225,7 +3224,7 @@ "STR_COND_BETWEEN+RID_GLOBSTR_OFFSET\n" "string.text" msgid "between" -msgstr "" +msgstr "рыбжьара" #: globstr.src msgctxt "" @@ -3233,7 +3232,7 @@ "STR_COND_NOTBETWEEN+RID_GLOBSTR_OFFSET\n" "string.text" msgid "not between" -msgstr "" +msgstr "рыбжьара акәым" #: globstr.src msgctxt "" @@ -3241,7 +3240,7 @@ "STR_COND_UNIQUE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "unique" -msgstr "" +msgstr "иуникалтәқәоу" #: globstr.src msgctxt "" @@ -3265,7 +3264,7 @@ "STR_COND_TOP10+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Top Elements" -msgstr "" +msgstr "Раҧхьатәи аелементқәа" #: globstr.src msgctxt "" @@ -3273,7 +3272,7 @@ "STR_COND_BOTTOM10+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Bottom Elements" -msgstr "" +msgstr "Аҵыхәтәантәи аелементқәа" #: globstr.src msgctxt "" @@ -3289,7 +3288,7 @@ "STR_COND_DATE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Date is" -msgstr "" +msgstr "Арыцхә" #: globstr.src msgctxt "" @@ -3337,7 +3336,7 @@ "STR_COND_ERROR+RID_GLOBSTR_OFFSET\n" "string.text" msgid "an Error code" -msgstr "" +msgstr "Агха акод" #: globstr.src msgctxt "" @@ -3345,7 +3344,7 @@ "STR_COND_NOERROR+RID_GLOBSTR_OFFSET\n" "string.text" msgid "not an Error code" -msgstr "" +msgstr "Агха акод акәӡам" #: globstr.src msgctxt "" @@ -3369,7 +3368,7 @@ "STR_COND_CONTAINS+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Contains" -msgstr "" +msgstr "Иаҵанакуеит" #: globstr.src msgctxt "" @@ -3377,7 +3376,7 @@ "STR_COND_NOT_CONTAINS+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Not Contains" -msgstr "" +msgstr "Иаҵанакӡом" #: globstr.src msgctxt "" @@ -3385,7 +3384,7 @@ "STR_COND_TODAY+RID_GLOBSTR_OFFSET\n" "string.text" msgid "today" -msgstr "" +msgstr "иахьа" #: globstr.src msgctxt "" @@ -3393,7 +3392,7 @@ "STR_COND_YESTERDAY+RID_GLOBSTR_OFFSET\n" "string.text" msgid "yesterday" -msgstr "" +msgstr "иацы" #: globstr.src msgctxt "" @@ -3401,7 +3400,7 @@ "STR_COND_TOMORROW+RID_GLOBSTR_OFFSET\n" "string.text" msgid "tomorrow" -msgstr "" +msgstr "уаҵәы" #: globstr.src msgctxt "" @@ -3417,7 +3416,7 @@ "STR_COND_THISWEEK+RID_GLOBSTR_OFFSET\n" "string.text" msgid "this week" -msgstr "" +msgstr "ари амчыбжь" #: globstr.src msgctxt "" @@ -3425,7 +3424,7 @@ "STR_COND_LASTWEEK+RID_GLOBSTR_OFFSET\n" "string.text" msgid "last week" -msgstr "" +msgstr "иҳаҩсыз амчыбжь" #: globstr.src msgctxt "" @@ -3433,7 +3432,7 @@ "STR_COND_NEXTWEEK+RID_GLOBSTR_OFFSET\n" "string.text" msgid "next week" -msgstr "" +msgstr "анаҩстәи амчыбжь" #: globstr.src msgctxt "" @@ -3441,7 +3440,7 @@ "STR_COND_THISMONTH+RID_GLOBSTR_OFFSET\n" "string.text" msgid "this month" -msgstr "" +msgstr "ари амза" #: globstr.src msgctxt "" @@ -3449,7 +3448,7 @@ "STR_COND_LASTMONTH+RID_GLOBSTR_OFFSET\n" "string.text" msgid "last month" -msgstr "" +msgstr "иҳаҩсыз амза" #: globstr.src msgctxt "" @@ -3457,7 +3456,7 @@ "STR_COND_NEXTMONTH+RID_GLOBSTR_OFFSET\n" "string.text" msgid "next month" -msgstr "" +msgstr "анаҩстәи амза" #: globstr.src msgctxt "" @@ -3465,7 +3464,7 @@ "STR_COND_THISYEAR+RID_GLOBSTR_OFFSET\n" "string.text" msgid "this year" -msgstr "" +msgstr "ари ашықәс" #: globstr.src msgctxt "" @@ -3473,7 +3472,7 @@ "STR_COND_LASTYEAR+RID_GLOBSTR_OFFSET\n" "string.text" msgid "last year" -msgstr "" +msgstr "иҳаҩсыз ашықәс" #: globstr.src msgctxt "" @@ -3481,7 +3480,7 @@ "STR_COND_NEXTYEAR+RID_GLOBSTR_OFFSET\n" "string.text" msgid "next year" -msgstr "" +msgstr "анаҩстәи ашықәс" #: globstr.src msgctxt "" @@ -3554,7 +3553,7 @@ "STR_DPFIELD_GROUP_BY_SECONDS+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Seconds" -msgstr "" +msgstr "Асекундқәа" #: globstr.src msgctxt "" @@ -3562,7 +3561,7 @@ "STR_DPFIELD_GROUP_BY_MINUTES+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Minutes" -msgstr "" +msgstr "Аминутқәа" #: globstr.src msgctxt "" @@ -3570,7 +3569,7 @@ "STR_DPFIELD_GROUP_BY_HOURS+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Hours" -msgstr "" +msgstr "Асааҭқәа" #: globstr.src msgctxt "" @@ -3578,7 +3577,7 @@ "STR_DPFIELD_GROUP_BY_DAYS+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Days" -msgstr "" +msgstr "Амшқәа" #: globstr.src msgctxt "" @@ -3586,7 +3585,7 @@ "STR_DPFIELD_GROUP_BY_MONTHS+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Months" -msgstr "" +msgstr "Амзақәа" #: globstr.src msgctxt "" @@ -3594,7 +3593,7 @@ "STR_DPFIELD_GROUP_BY_QUARTERS+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Quarters" -msgstr "" +msgstr "Акварталқәа" #: globstr.src msgctxt "" @@ -3602,7 +3601,7 @@ "STR_DPFIELD_GROUP_BY_YEARS+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Years" -msgstr "" +msgstr "Ашықәсқәа" #: globstr.src msgctxt "" @@ -3626,7 +3625,7 @@ "STR_INVALIDFORM+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Undefined name as formula cell." -msgstr "" +msgstr "Аформула абларҭа азы еилкаам ахьӡ." #: globstr.src msgctxt "" @@ -3634,7 +3633,7 @@ "STR_NOFORMULA+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Formula cell must contain a formula." -msgstr "" +msgstr "Абларҭа иаҵанакуазароуп аформула." #: globstr.src msgctxt "" @@ -3669,7 +3668,7 @@ "STR_COPYLIST+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Copy List" -msgstr "" +msgstr "Ахьӡынҵа акопиа ахыхтәуп" #: globstr.src msgctxt "" @@ -3701,7 +3700,7 @@ "STR_CLICKHYPERLINK+RID_GLOBSTR_OFFSET\n" "string.text" msgid "click to open hyperlink:" -msgstr "" +msgstr "Ақәыӷәӷәара иаанартуеит агиперзхьарҧш;" #: globstr.src msgctxt "" @@ -3709,7 +3708,7 @@ "STR_PRINT_PREVIEW_NODATA+RID_GLOBSTR_OFFSET\n" "string.text" msgid "No Data" -msgstr "" +msgstr "Аадырқәа ыҟаӡам" #: globstr.src msgctxt "" @@ -3717,7 +3716,7 @@ "STR_PRINT_PREVIEW_EMPTY_RANGE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Print Range Empty" -msgstr "" +msgstr "Акьыҧхьра адиапазон ҭацәуп" #: globstr.src msgctxt "" @@ -3741,7 +3740,7 @@ "STR_UNDO_FORMULA_TO_VALUE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Convert Formula To Value" -msgstr "" +msgstr "Аформула аҵакахьы ииагатәуп" #: globstr.src msgctxt "" @@ -3757,7 +3756,7 @@ "STR_ENTER_VALUE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Enter a value!" -msgstr "" +msgstr "Иҭажәгал аҵакы!" #: globstr.src msgctxt "" @@ -3781,7 +3780,7 @@ "STR_GENERAL+RID_GLOBSTR_OFFSET\n" "string.text" msgid "General" -msgstr "" +msgstr "Азеиҧшқәа" #: globstr.src msgctxt "" @@ -3789,7 +3788,7 @@ "STR_NUMBER+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Number" -msgstr "" +msgstr "Ахыҧхьаӡаратә" #: globstr.src msgctxt "" @@ -3797,7 +3796,7 @@ "STR_PERCENT+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Percent" -msgstr "" +msgstr "Апроценттә" #: globstr.src msgctxt "" @@ -3813,7 +3812,7 @@ "STR_DATE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Date" -msgstr "" +msgstr "Арыцхә" #: globstr.src msgctxt "" @@ -3821,7 +3820,7 @@ "STR_TIME+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Time" -msgstr "" +msgstr "Аамҭа" #: globstr.src msgctxt "" @@ -3829,7 +3828,7 @@ "STR_SCIENTIFIC+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Scientific" -msgstr "" +msgstr "Анаукатә" #: globstr.src msgctxt "" @@ -3845,7 +3844,7 @@ "STR_BOOLEAN_VALUE+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Boolean Value" -msgstr "" +msgstr "Алогикатә" #: globstr.src msgctxt "" @@ -3853,7 +3852,7 @@ "STR_TEXT+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Text" -msgstr "" +msgstr "Атеқсттә" #: globstr.src msgctxt "" @@ -3887,7 +3886,7 @@ "Database\n" "itemlist.text" msgid "Database" -msgstr "" +msgstr "Адырқәа рбаза" #: scfuncs.src msgctxt "" @@ -3950,7 +3949,7 @@ "Database\n" "itemlist.text" msgid "Database" -msgstr "" +msgstr "Адырқәа рбаза" #: scfuncs.src msgctxt "" @@ -4013,7 +4012,7 @@ "Database\n" "itemlist.text" msgid "Database" -msgstr "" +msgstr "Адырқәа рбаза" #: scfuncs.src msgctxt "" @@ -4076,7 +4075,7 @@ "Database\n" "itemlist.text" msgid "Database" -msgstr "" +msgstr "Адырқәа рбаза" #: scfuncs.src msgctxt "" @@ -4139,7 +4138,7 @@ "Database\n" "itemlist.text" msgid "Database" -msgstr "" +msgstr "Адырқәа рбаза" #: scfuncs.src msgctxt "" @@ -4202,7 +4201,7 @@ "Database\n" "itemlist.text" msgid "Database" -msgstr "" +msgstr "Адырқәа рбаза" #: scfuncs.src msgctxt "" @@ -4265,7 +4264,7 @@ "Database\n" "itemlist.text" msgid "Database" -msgstr "" +msgstr "Адырқәа рбаза" #: scfuncs.src msgctxt "" @@ -4328,7 +4327,7 @@ "Database\n" "itemlist.text" msgid "Database" -msgstr "" +msgstr "Адырқәа рбаза" #: scfuncs.src msgctxt "" @@ -4391,7 +4390,7 @@ "Database\n" "itemlist.text" msgid "Database" -msgstr "" +msgstr "Адырқәа рбаза" #: scfuncs.src msgctxt "" @@ -4454,7 +4453,7 @@ "Database\n" "itemlist.text" msgid "Database" -msgstr "" +msgstr "Адырқәа рбаза" #: scfuncs.src msgctxt "" @@ -4517,7 +4516,7 @@ "Database\n" "itemlist.text" msgid "Database" -msgstr "" +msgstr "Адырқәа рбаза" #: scfuncs.src msgctxt "" @@ -4580,7 +4579,7 @@ "Database\n" "itemlist.text" msgid "Database" -msgstr "" +msgstr "Адырқәа рбаза" #: scfuncs.src msgctxt "" @@ -4643,7 +4642,7 @@ "year\n" "itemlist.text" msgid "year" -msgstr "" +msgstr "ашықәс" #: scfuncs.src msgctxt "" @@ -4661,7 +4660,7 @@ "month\n" "itemlist.text" msgid "month" -msgstr "" +msgstr "амза" #: scfuncs.src msgctxt "" @@ -4679,7 +4678,7 @@ "day\n" "itemlist.text" msgid "day" -msgstr "" +msgstr "амш" #: scfuncs.src msgctxt "" @@ -4706,7 +4705,7 @@ "text\n" "itemlist.text" msgid "text" -msgstr "" +msgstr "атеқст" #: scfuncs.src msgctxt "" @@ -4796,7 +4795,7 @@ "Type\n" "itemlist.text" msgid "Type" -msgstr "" +msgstr "Атип" #: scfuncs.src msgctxt "" @@ -4877,7 +4876,7 @@ "array\n" "itemlist.text" msgid "array" -msgstr "" +msgstr "амассив" #: scfuncs.src msgctxt "" @@ -4958,7 +4957,7 @@ "array\n" "itemlist.text" msgid "array" -msgstr "" +msgstr "аматрица" #: scfuncs.src msgctxt "" @@ -5003,7 +5002,7 @@ "Days\n" "itemlist.text" msgid "Days" -msgstr "" +msgstr "Амшқәа" #: scfuncs.src msgctxt "" @@ -5039,7 +5038,7 @@ "array\n" "itemlist.text" msgid "array" -msgstr "" +msgstr "аматрица" #: scfuncs.src msgctxt "" @@ -5201,7 +5200,7 @@ "minute\n" "itemlist.text" msgid "minute" -msgstr "" +msgstr "аминуҭ" #: scfuncs.src msgctxt "" @@ -5219,7 +5218,7 @@ "second\n" "itemlist.text" msgid "second" -msgstr "" +msgstr "асекунд" #: scfuncs.src msgctxt "" @@ -5246,7 +5245,7 @@ "text\n" "itemlist.text" msgid "text" -msgstr "" +msgstr "атеқст" #: scfuncs.src msgctxt "" @@ -5300,7 +5299,7 @@ "Type\n" "itemlist.text" msgid "Type" -msgstr "" +msgstr "Атип" #: scfuncs.src msgctxt "" @@ -5435,7 +5434,7 @@ "Interval\n" "itemlist.text" msgid "Interval" -msgstr "" +msgstr "Аинтервал" #: scfuncs.src msgctxt "" @@ -5480,7 +5479,7 @@ "mode\n" "itemlist.text" msgid "mode" -msgstr "" +msgstr "арежим" #: scfuncs.src msgctxt "" @@ -5582,7 +5581,7 @@ "year\n" "itemlist.text" msgid "year" -msgstr "" +msgstr "ашықәс" #: scfuncs.src msgctxt "" @@ -5681,7 +5680,7 @@ "Type\n" "itemlist.text" msgid "Type" -msgstr "" +msgstr "Атип" #: scfuncs.src msgctxt "" @@ -5978,7 +5977,7 @@ "Type\n" "itemlist.text" msgid "Type" -msgstr "" +msgstr "Атип" #: scfuncs.src msgctxt "" @@ -7751,7 +7750,7 @@ "Returns TRUE if the cell is a formula cell.\n" "itemlist.text" msgid "Returns TRUE if the cell is a formula cell." -msgstr "" +msgstr "Иҳанаҭоит TRUE, абларҭа аформула иабларҭазар." #: scfuncs.src msgctxt "" @@ -7778,7 +7777,7 @@ "Returns the formula of a formula cell.\n" "itemlist.text" msgid "Returns the formula of a formula cell." -msgstr "" +msgstr "Иҳанаҭоит абларҭа аформула." #: scfuncs.src msgctxt "" @@ -10844,7 +10843,7 @@ "The size of the unitary array.\n" "itemlist.text" msgid "The size of the unitary array." -msgstr "" +msgstr "Иактәу аматрица ашәагаа." #: scfuncs.src msgctxt "" @@ -13031,7 +13030,7 @@ "probability\n" "itemlist.text" msgid "probability" -msgstr "" +msgstr "Аиашақәшәара" #: scfuncs.src msgctxt "" @@ -16883,7 +16882,7 @@ "Probability\n" "itemlist.text" msgid "Probability" -msgstr "" +msgstr "Аиашақәшәара" #: scfuncs.src msgctxt "" @@ -16928,7 +16927,7 @@ "Probability\n" "itemlist.text" msgid "Probability" -msgstr "" +msgstr "Аиашақәшәара" #: scfuncs.src msgctxt "" @@ -17162,7 +17161,7 @@ "size\n" "itemlist.text" msgid "size" -msgstr "" +msgstr "ашәагаа" #: scfuncs.src msgctxt "" @@ -17225,7 +17224,7 @@ "size\n" "itemlist.text" msgid "size" -msgstr "" +msgstr "ашәагаа" #: scfuncs.src msgctxt "" @@ -17288,7 +17287,7 @@ "size\n" "itemlist.text" msgid "size" -msgstr "" +msgstr "ашәагаа" #: scfuncs.src msgctxt "" @@ -20024,7 +20023,7 @@ "Applies a Style to the formula cell.\n" "itemlist.text" msgid "Applies a Style to the formula cell." -msgstr "" +msgstr "Иқәнаргылоит аформула зҵазкуа абларҭа астиль." #: scfuncs.src msgctxt "" @@ -20114,7 +20113,7 @@ "File\n" "itemlist.text" msgid "File" -msgstr "" +msgstr "Афаил" #: scfuncs.src msgctxt "" @@ -20123,7 +20122,7 @@ "The name of the file.\n" "itemlist.text" msgid "The name of the file." -msgstr "" +msgstr "Афаил ахьӡ." #: scfuncs.src msgctxt "" @@ -20168,7 +20167,7 @@ "Hyperlink.\n" "itemlist.text" msgid "Hyperlink." -msgstr "" +msgstr "Агиперзхьарҧш." #: scfuncs.src msgctxt "" @@ -20447,7 +20446,7 @@ "The code value for the character.\n" "itemlist.text" msgid "The code value for the character." -msgstr "" +msgstr "Асимвол акод." #: scfuncs.src msgctxt "" @@ -21167,7 +21166,7 @@ "Format\n" "itemlist.text" msgid "Format" -msgstr "" +msgstr "Аформат" #: scfuncs.src msgctxt "" @@ -21311,7 +21310,7 @@ "The number to be formatted.\n" "itemlist.text" msgid "The number to be formatted." -msgstr "" +msgstr "Иформатркхо ахыҧхьаӡара." #: scfuncs.src msgctxt "" @@ -21419,7 +21418,7 @@ "The number of characters for the start text.\n" "itemlist.text" msgid "The number of characters for the start text." -msgstr "" +msgstr "Раҧхьатәи атеқст асимволқәа рхыҧхьаӡара." #: scfuncs.src msgctxt "" @@ -21527,7 +21526,7 @@ "The number of characters for the text.\n" "itemlist.text" msgid "The number of characters for the text." -msgstr "" +msgstr "Атеқст асимволқәа рхыҧхьаӡара." #: scfuncs.src msgctxt "" @@ -21626,7 +21625,7 @@ "new text\n" "itemlist.text" msgid "new text" -msgstr "" +msgstr "атеқст ҿыц" #: scfuncs.src msgctxt "" @@ -21914,7 +21913,7 @@ "Can be \"osversion\", \"system\", \"release\", \"numfile\", and \"recalc\".\n" "itemlist.text" msgid "Can be \"osversion\", \"system\", \"release\", \"numfile\", and \"recalc\"." -msgstr "" +msgstr "Акәзар ауеит «osversion», «system», «release», «numfile», и «recalc»." #: scfuncs.src msgctxt "" @@ -21968,7 +21967,7 @@ "The code value for the character.\n" "itemlist.text" msgid "The code value for the character." -msgstr "" +msgstr "Асимвол акод." #: scfuncs.src msgctxt "" @@ -22994,7 +22993,7 @@ "SCSTR_RENAMEOBJECT\n" "string.text" msgid "Name Object" -msgstr "" +msgstr "Аобиеқт ахьӡ" #: scstring.src msgctxt "" @@ -23189,7 +23188,7 @@ "STR_DLG_SELECTTABLES_TITLE\n" "string.text" msgid "Select Sheets" -msgstr "" +msgstr "Иалхтәуп абӷьыцқәа" #: scstring.src msgctxt "" @@ -23197,7 +23196,7 @@ "STR_DLG_SELECTTABLES_LBNAME\n" "string.text" msgid "~Selected sheets" -msgstr "" +msgstr "Иалху абӷьыцқәа" #: scstring.src msgctxt "" @@ -23327,7 +23326,7 @@ "STR_ACC_EDITLINE_DESCR\n" "string.text" msgid "This is where you enter or edit text, numbers and formulas." -msgstr "" +msgstr "Ара шәара иҭажәгалоит насгьы аредакциа рзыжәуеит атеқст, ахыҧхьаӡарақәеи аформулақәеи." #: scstring.src msgctxt "" @@ -23415,7 +23414,7 @@ "SCSTR_PRINTOPT_SELECTEDSHEETS\n" "string.text" msgid "~Selected sheets" -msgstr "" +msgstr "Иалху абӷьыцқәа" #: scstring.src msgctxt "" @@ -23423,7 +23422,7 @@ "SCSTR_PRINTOPT_SELECTEDCELLS\n" "string.text" msgid "Selected cells" -msgstr "" +msgstr "Иалху абларҭақәа" #: scstring.src msgctxt "" @@ -23431,7 +23430,7 @@ "SCSTR_PRINTOPT_FROMWHICH\n" "string.text" msgid "From which print" -msgstr "" +msgstr "Икьыҧхьтәуп" #: scstring.src msgctxt "" @@ -23487,7 +23486,7 @@ "SCSTR_UPDATE_EXTDOCS\n" "string.text" msgid "Updating external links." -msgstr "" +msgstr "Адәныҟатәи азхьарҧшқәа рырҿыцра." #: scstring.src msgctxt "" @@ -23656,7 +23655,7 @@ "STR_NOCOLFORMULA\n" "string.text" msgid "Formulas don't form a column." -msgstr "" +msgstr "Аформулақәа еиҿыркаауам аиҵагыла." #: scstring.src msgctxt "" @@ -23664,7 +23663,7 @@ "STR_NOROWFORMULA\n" "string.text" msgid "Formulas don't form a row." -msgstr "" +msgstr "Аформулақәа еиҿыркаауам ацәаҳәа." #: scstring.src msgctxt "" @@ -23680,7 +23679,7 @@ "STR_RENAME_AUTOFORMAT_TITLE\n" "string.text" msgid "Rename AutoFormat" -msgstr "" +msgstr "Автоформат ахьӡ ҧсахтәуп" #: scstring.src msgctxt "" @@ -23696,7 +23695,7 @@ "STR_DEL_AUTOFORMAT_TITLE\n" "string.text" msgid "Delete AutoFormat" -msgstr "" +msgstr "Ианыхтәуп автоформат" #: scstring.src msgctxt "" @@ -23856,7 +23855,7 @@ "SCSTR_QHELP_BTNCANCEL\n" "string.text" msgid "Cancel" -msgstr "" +msgstr "Иаҟәыхтәуп" #: toolbox.src msgctxt "" @@ -23880,7 +23879,7 @@ "SCSTR_QHELP_EXPAND_FORMULA\n" "string.text" msgid "Expand Formula Bar" -msgstr "" +msgstr "Иаарттәуп аформулақәа рпанель" #: toolbox.src msgctxt "" @@ -23888,4 +23887,4 @@ "SCSTR_QHELP_COLLAPSE_FORMULA\n" "string.text" msgid "Collapse Formula Bar" -msgstr "" +msgstr "Иеикәарҳәтәуп аформулақәа рпанель" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sc/source/ui/StatisticsDialogs.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sc/source/ui/StatisticsDialogs.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sc/source/ui/StatisticsDialogs.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sc/source/ui/StatisticsDialogs.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-07-21 16:12+0000\n" +"PO-Revision-Date: 2017-11-30 10:24+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500653554.000000\n" +"X-POOTLE-MTIME: 1512037477.000000\n" #: StatisticsDialogs.src msgctxt "" @@ -317,7 +317,7 @@ "STR_DISTRIBUTION_UNIFORM_REAL\n" "string.text" msgid "Uniform" -msgstr "" +msgstr "Еицеиҟароу" #: StatisticsDialogs.src msgctxt "" @@ -325,7 +325,7 @@ "STR_DISTRIBUTION_UNIFORM_INTEGER\n" "string.text" msgid "Uniform Integer" -msgstr "" +msgstr "Иецеиҟароу идескреттәу" #: StatisticsDialogs.src msgctxt "" @@ -661,7 +661,7 @@ "STR_LABEL_REGRESSION_MODEL\n" "string.text" msgid "Regression Model" -msgstr "" +msgstr "Арегрессиатә модель" #: StatisticsDialogs.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sc/source/ui/styleui.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sc/source/ui/styleui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sc/source/ui/styleui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sc/source/ui/styleui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-01 15:51+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-17 08:20+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1480607518.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510906829.000000\n" #: scstyles.src msgctxt "" @@ -22,7 +22,7 @@ "All Styles\n" "itemlist.text" msgid "All Styles" -msgstr "" +msgstr "Астильқәа зегьы" #: scstyles.src msgctxt "" @@ -31,7 +31,7 @@ "Hidden Styles\n" "itemlist.text" msgid "Hidden Styles" -msgstr "" +msgstr "Иҵәаху астильқәа" #: scstyles.src msgctxt "" @@ -40,7 +40,7 @@ "Applied Styles\n" "itemlist.text" msgid "Applied Styles" -msgstr "" +msgstr "Ахархәара змоу астильқәа" #: scstyles.src msgctxt "" @@ -49,7 +49,7 @@ "Custom Styles\n" "itemlist.text" msgid "Custom Styles" -msgstr "" +msgstr "Ахархәаҩ истильқәа" #: scstyles.src msgctxt "" @@ -58,7 +58,7 @@ "All Styles\n" "itemlist.text" msgid "All Styles" -msgstr "" +msgstr "Астильқәа зегьы" #: scstyles.src msgctxt "" @@ -67,7 +67,7 @@ "Hidden Styles\n" "itemlist.text" msgid "Hidden Styles" -msgstr "" +msgstr "Иҵәаху астильқәа" #: scstyles.src msgctxt "" @@ -76,4 +76,4 @@ "Custom Styles\n" "itemlist.text" msgid "Custom Styles" -msgstr "" +msgstr "Ахархәаҩ истильқәа" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sc/uiconfig/scalc/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sc/uiconfig/scalc/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sc/uiconfig/scalc/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sc/uiconfig/scalc/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-17 15:41+0200\n" -"PO-Revision-Date: 2017-09-18 11:09+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-12-12 10:30+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1505732990.000000\n" +"X-POOTLE-MTIME: 1513074634.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -310,7 +310,7 @@ "title\n" "string.text" msgid "AutoFormat" -msgstr "" +msgstr "Автоформат" #: autoformattable.ui msgctxt "" @@ -328,7 +328,7 @@ "label\n" "string.text" msgid "Format" -msgstr "" +msgstr "Аформат" #: autoformattable.ui msgctxt "" @@ -337,7 +337,7 @@ "label\n" "string.text" msgid "_Number format" -msgstr "" +msgstr "Ахыҧхьаӡаратә формат" #: autoformattable.ui msgctxt "" @@ -391,7 +391,7 @@ "label\n" "string.text" msgid "Formatting" -msgstr "" +msgstr "Аформатркра" #: cellprotectionpage.ui msgctxt "" @@ -448,7 +448,7 @@ "label\n" "string.text" msgid "Hide _when printing" -msgstr "" +msgstr "Иҵәахтәуп акьыҧхьраан" #: cellprotectionpage.ui msgctxt "" @@ -466,7 +466,7 @@ "label\n" "string.text" msgid "Print" -msgstr "" +msgstr "Акьыҧхьра" #: changesourcedialog.ui msgctxt "" @@ -511,7 +511,7 @@ "title\n" "string.text" msgid "Character" -msgstr "" +msgstr "Асимволқәа" #: chardialog.ui msgctxt "" @@ -691,7 +691,7 @@ "label\n" "string.text" msgid "Edit..." -msgstr "" +msgstr "Иҧсахтәуп..." #: condformatmanager.ui msgctxt "" @@ -754,7 +754,7 @@ "label\n" "string.text" msgid "Apply Style:" -msgstr "" +msgstr "Ихархәатәуп астиль:" #: conditionalentry.ui msgctxt "" @@ -763,7 +763,7 @@ "0\n" "stringlist.text" msgid "New Style..." -msgstr "" +msgstr "Иаҧҵатәуп астиль..." #: conditionalentry.ui msgctxt "" @@ -2122,7 +2122,7 @@ "label\n" "string.text" msgid "Selection" -msgstr "" +msgstr "Алхра" #: databaroptions.ui msgctxt "" @@ -2806,7 +2806,7 @@ "title\n" "string.text" msgid "Data Form" -msgstr "" +msgstr "Адырқәа рформа" #: dataform.ui msgctxt "" @@ -2815,7 +2815,7 @@ "label\n" "string.text" msgid "New Record" -msgstr "" +msgstr "Иацҵатәуп анҵамҭа" #: dataform.ui msgctxt "" @@ -2824,7 +2824,7 @@ "label\n" "string.text" msgid "_New" -msgstr "" +msgstr "Иаҧҵатәуп" #: dataform.ui msgctxt "" @@ -2833,7 +2833,7 @@ "label\n" "string.text" msgid "_Delete" -msgstr "" +msgstr "_Ианыхтәуп" #: dataform.ui msgctxt "" @@ -2905,7 +2905,7 @@ "label\n" "string.text" msgid "_Browse..." -msgstr "" +msgstr "_Аҭыҧхәаҧшра..." #: datastreams.ui msgctxt "" @@ -3094,7 +3094,7 @@ "label\n" "string.text" msgid "Insert or delete _cells" -msgstr "" +msgstr "Ибжьаргылатәуп ма ианыхтәуп абларҭақәа" #: definedatabaserangedialog.ui msgctxt "" @@ -3103,7 +3103,7 @@ "label\n" "string.text" msgid "Keep _formatting" -msgstr "" +msgstr "Еиқәырхатәуп аформатркра" #: definedatabaserangedialog.ui msgctxt "" @@ -3202,7 +3202,7 @@ "label\n" "string.text" msgid "_Print range" -msgstr "" +msgstr "Акьыҧхьра адиапазон" #: definename.ui msgctxt "" @@ -3247,7 +3247,7 @@ "title\n" "string.text" msgid "Delete Cells" -msgstr "" +msgstr "Ианыхтәуп абларҭақәа" #: deletecells.ui msgctxt "" @@ -3274,7 +3274,7 @@ "label\n" "string.text" msgid "Delete entire _row(s)" -msgstr "" +msgstr "Ианыхтәуп ацәаҳәа шеибгоу" #: deletecells.ui msgctxt "" @@ -3283,7 +3283,7 @@ "label\n" "string.text" msgid "Delete entire _column(s)" -msgstr "" +msgstr "Ианыхтәуп аиҵагыла шеибгоу" #: deletecells.ui msgctxt "" @@ -3292,7 +3292,7 @@ "label\n" "string.text" msgid "Selection" -msgstr "" +msgstr "Алхра" #: deletecontents.ui msgctxt "" @@ -3310,7 +3310,7 @@ "label\n" "string.text" msgid "Delete _all" -msgstr "" +msgstr "Ианыхтәуп зегьы" #: deletecontents.ui msgctxt "" @@ -3373,7 +3373,7 @@ "label\n" "string.text" msgid "_Objects" -msgstr "" +msgstr "Аобиеқтқәа" #: deletecontents.ui msgctxt "" @@ -3382,7 +3382,7 @@ "label\n" "string.text" msgid "Selection" -msgstr "" +msgstr "Алхра" #: descriptivestatisticsdialog.ui msgctxt "" @@ -3454,7 +3454,7 @@ "title\n" "string.text" msgid "Edit Setting" -msgstr "" +msgstr "Иҧсахтәуп апараметрқәа" #: dropmenu.ui msgctxt "" @@ -3463,7 +3463,7 @@ "label\n" "string.text" msgid "Insert as Hyperlink" -msgstr "" +msgstr "Ибжьаргылатәуп агиперзхьарҧш ҳасабла" #: dropmenu.ui msgctxt "" @@ -3472,7 +3472,7 @@ "label\n" "string.text" msgid "Insert as Link" -msgstr "" +msgstr "Ибжьаргылатәуп азхьарҧш ҳасабла" #: dropmenu.ui msgctxt "" @@ -3526,7 +3526,7 @@ "label\n" "string.text" msgid "_Browse..." -msgstr "" +msgstr "Аҭыҧхәаҧшра..." #: erroralerttabpage.ui msgctxt "" @@ -3553,7 +3553,7 @@ "2\n" "stringlist.text" msgid "Information" -msgstr "" +msgstr "Аинформациа" #: erroralerttabpage.ui msgctxt "" @@ -3679,7 +3679,7 @@ "label\n" "string.text" msgid "_Browse..." -msgstr "" +msgstr "_Аҭыҧхәаҧшра..." #: externaldata.ui msgctxt "" @@ -4075,7 +4075,7 @@ "title\n" "string.text" msgid "Format Cells" -msgstr "" +msgstr "Абларҭақәа рформат" #: formatcellsdialog.ui msgctxt "" @@ -4192,7 +4192,7 @@ "0\n" "stringlist.text" msgid "Use formula syntax" -msgstr "" +msgstr "Ихархәатәуп аформулақәа рсинтаксис" #: formulacalculationoptions.ui msgctxt "" @@ -4309,7 +4309,7 @@ "5\n" "stringlist.text" msgid "Information" -msgstr "" +msgstr "Аинформациа" #: functionpanel.ui msgctxt "" @@ -4399,7 +4399,7 @@ "label\n" "string.text" msgid "_Formula cell:" -msgstr "" +msgstr "_Ахықәкыратә бларҭа" #: goalseekdlg.ui msgctxt "" @@ -4876,7 +4876,7 @@ "label\n" "string.text" msgid "File Name" -msgstr "" +msgstr "Афаил ахьӡ" #: headerfootercontent.ui msgctxt "" @@ -4885,7 +4885,7 @@ "label\n" "string.text" msgid "Path/File Name" -msgstr "" +msgstr "Амҩа/афаил ахьӡ" #: headerfooterdialog.ui msgctxt "" @@ -4921,7 +4921,7 @@ "title\n" "string.text" msgid "Import File" -msgstr "" +msgstr "Афаил аимпорт" #: imoptdialog.ui msgctxt "" @@ -4930,7 +4930,7 @@ "label\n" "string.text" msgid "_Character set:" -msgstr "" +msgstr "Акодркра:" #: imoptdialog.ui msgctxt "" @@ -4939,7 +4939,7 @@ "label\n" "string.text" msgid "_Field delimiter:" -msgstr "" +msgstr "Аҭагаларҭақәа реиҟәшага:" #: imoptdialog.ui msgctxt "" @@ -4948,7 +4948,7 @@ "label\n" "string.text" msgid "_Text delimiter:" -msgstr "" +msgstr "Атеқст аиҟәшага:" #: imoptdialog.ui msgctxt "" @@ -5047,7 +5047,7 @@ "label\n" "string.text" msgid "Selection" -msgstr "" +msgstr "Алхра" #: insertname.ui msgctxt "" @@ -5110,7 +5110,7 @@ "label\n" "string.text" msgid "_New sheet" -msgstr "" +msgstr "Абӷьыц ҿыц" #: insertsheet.ui msgctxt "" @@ -5146,7 +5146,7 @@ "label\n" "string.text" msgid "_From file" -msgstr "" +msgstr "Афаил аҟынтәи" #: insertsheet.ui msgctxt "" @@ -5155,7 +5155,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Tables in file" -msgstr "" +msgstr "Атабицақәа афаил аҟны" #: insertsheet.ui msgctxt "" @@ -5164,7 +5164,7 @@ "label\n" "string.text" msgid "_Browse..." -msgstr "" +msgstr "Аҭыҧхәаҧшра..." #: insertsheet.ui msgctxt "" @@ -5191,7 +5191,7 @@ "title\n" "string.text" msgid "Edit Setting" -msgstr "" +msgstr "Иҧсахтәуп апараметрқәа" #: leftfooterdialog.ui msgctxt "" @@ -5281,7 +5281,7 @@ "label\n" "string.text" msgid "_Print range" -msgstr "" +msgstr "Акьыҧхьра адиапазон" #: managenamesdialog.ui msgctxt "" @@ -5434,7 +5434,7 @@ "1\n" "stringlist.text" msgid "- new document -" -msgstr "" +msgstr "- иаҧҵатәуп адокумент -" #: movecopysheet.ui msgctxt "" @@ -5479,7 +5479,7 @@ "label\n" "string.text" msgid "Name contains one or more invalid characters." -msgstr "" +msgstr "Ахьӡ иаҵанакуеит изымуа асимволқәа." #: movecopysheet.ui msgctxt "" @@ -5488,7 +5488,7 @@ "label\n" "string.text" msgid "New _name" -msgstr "" +msgstr "Ахьӡ _ҿыц" #: movingaveragedialog.ui msgctxt "" @@ -5803,7 +5803,7 @@ "label\n" "string.text" msgid "File" -msgstr "" +msgstr "Афаил" #: notebookbar.ui msgctxt "" @@ -5983,7 +5983,7 @@ "label\n" "string.text" msgid "Hyperlink" -msgstr "" +msgstr "Агиперзхьарҧш" #: notebookbar_groups.ui msgctxt "" @@ -6199,7 +6199,7 @@ "label\n" "string.text" msgid "File" -msgstr "" +msgstr "Афаил" #: notebookbar_groups.ui msgctxt "" @@ -6354,7 +6354,7 @@ "label\n" "string.text" msgid "Links" -msgstr "" +msgstr "Азхьарҧшқәа" #: notebookbar_groups.ui msgctxt "" @@ -6480,7 +6480,7 @@ "label\n" "string.text" msgid "Edit Contour" -msgstr "" +msgstr "Аконтур ариашара" #: optcalculatepage.ui msgctxt "" @@ -6714,7 +6714,7 @@ "label\n" "string.text" msgid "_Deletions:" -msgstr "" +msgstr "Аныхрақәа:" #: optchangespage.ui msgctxt "" @@ -6768,7 +6768,7 @@ "1\n" "stringlist.text" msgid "OpenOffice.org legacy" -msgstr "" +msgstr "OpenOffice.org аҟнеиҧш" #: optcompatibilitypage.ui msgctxt "" @@ -6804,7 +6804,7 @@ "label\n" "string.text" msgid "New Spreadsheet" -msgstr "" +msgstr "Иҿыцу аелектронтә таблица" #: optdlg.ui msgctxt "" @@ -6840,7 +6840,7 @@ "label\n" "string.text" msgid "_Print only selected sheets" -msgstr "" +msgstr "Икьыҧхьтәуп иалху абӷьыц мацарақәа" #: optdlg.ui msgctxt "" @@ -6885,7 +6885,7 @@ "label\n" "string.text" msgid "Excel 2007 and newer:" -msgstr "" +msgstr "Excel 2007 -и иаҳа иҿыцуи:" #: optformula.ui msgctxt "" @@ -6957,7 +6957,7 @@ "label\n" "string.text" msgid "Recalculation on File Load" -msgstr "" +msgstr "Еиҭаҧхьаӡалатәуп афаил аҭагалараан" #: optformula.ui msgctxt "" @@ -7137,7 +7137,7 @@ "label\n" "string.text" msgid "_New" -msgstr "" +msgstr "Иаҧҵатәуп" #: optsortlists.ui msgctxt "" @@ -7173,7 +7173,7 @@ "label\n" "string.text" msgid "_Delete" -msgstr "" +msgstr "_Ианыхтәуп" #: pagetemplatedialog.ui msgctxt "" @@ -7254,7 +7254,7 @@ "title\n" "string.text" msgid "Paragraph" -msgstr "" +msgstr "Абзац" #: paradialog.ui msgctxt "" @@ -7416,7 +7416,7 @@ "tooltip_text\n" "string.text" msgid "Values & Formats" -msgstr "" +msgstr "Аҵакқәеи аформатқәеи" #: pastespecial.ui msgctxt "" @@ -7470,7 +7470,7 @@ "label\n" "string.text" msgid "_Formulas" -msgstr "_Аформулақәа" +msgstr "Аформулақәа" #: pastespecial.ui msgctxt "" @@ -7497,7 +7497,7 @@ "label\n" "string.text" msgid "_Objects" -msgstr "" +msgstr "Аобиеқтқәа" #: pastespecial.ui msgctxt "" @@ -7506,7 +7506,7 @@ "label\n" "string.text" msgid "Selection" -msgstr "" +msgstr "Алхра" #: pastespecial.ui msgctxt "" @@ -7587,7 +7587,7 @@ "label\n" "string.text" msgid "_Link" -msgstr "" +msgstr "Аимадара" #: pastespecial.ui msgctxt "" @@ -7983,7 +7983,7 @@ "label\n" "string.text" msgid "New sheet" -msgstr "" +msgstr "Абӷьыц ҿыц" #: pivottablelayoutdialog.ui msgctxt "" @@ -7992,7 +7992,7 @@ "label\n" "string.text" msgid "Selection" -msgstr "" +msgstr "Алхра" #: pivottablelayoutdialog.ui msgctxt "" @@ -8019,7 +8019,7 @@ "label\n" "string.text" msgid "Selection" -msgstr "" +msgstr "Алхра" #: pivottablelayoutdialog.ui msgctxt "" @@ -8055,7 +8055,7 @@ "title\n" "string.text" msgid "Edit Print Ranges" -msgstr "" +msgstr "Акьыҧхьра адиапазон аҧсахра" #: printareasdialog.ui msgctxt "" @@ -8091,7 +8091,7 @@ "3\n" "stringlist.text" msgid "- selection -" -msgstr "" +msgstr "- алкаара -" #: printareasdialog.ui msgctxt "" @@ -8100,7 +8100,7 @@ "label\n" "string.text" msgid "Print Range" -msgstr "" +msgstr "Акьыҧхьра адиапазон" #: printareasdialog.ui msgctxt "" @@ -8226,7 +8226,7 @@ "label\n" "string.text" msgid "Select protected cells" -msgstr "" +msgstr "Иалхлатәуп ихьчоу абларҭақәа" #: protectsheetdlg.ui msgctxt "" @@ -8235,7 +8235,7 @@ "label\n" "string.text" msgid "Select unprotected cells" -msgstr "" +msgstr "Иалхлатәуп ихьчам абларҭақәа" #: protectsheetdlg.ui msgctxt "" @@ -8262,7 +8262,7 @@ "label\n" "string.text" msgid "Delete columns" -msgstr "" +msgstr "Ианыхтәуп аиҵагылақәа" #: protectsheetdlg.ui msgctxt "" @@ -8271,7 +8271,7 @@ "label\n" "string.text" msgid "Delete rows" -msgstr "" +msgstr "Ианыхтәуп ацәаҳәақәа" #: queryrunstreamscriptdialog.ui msgctxt "" @@ -8399,7 +8399,7 @@ "0\n" "stringlist.text" msgid "Uniform" -msgstr "" +msgstr "Еицеиҟароу" #: randomnumbergenerator.ui msgctxt "" @@ -8408,7 +8408,7 @@ "1\n" "stringlist.text" msgid "Uniform Integer" -msgstr "" +msgstr "Иецеиҟароу идескреттәу" #: randomnumbergenerator.ui msgctxt "" @@ -8678,7 +8678,7 @@ "label\n" "string.text" msgid "New password must match the original password" -msgstr "" +msgstr "Ажәамаӡақәа еиқәшәозароуп" #: retypepassworddialog.ui msgctxt "" @@ -8921,7 +8921,7 @@ "label\n" "string.text" msgid "Edit Scenario" -msgstr "" +msgstr "Иҧсахтәуп асценари" #: scenariodialog.ui msgctxt "" @@ -8948,7 +8948,7 @@ "label\n" "string.text" msgid "Delete" -msgstr "" +msgstr "Ианыхтәуп" #: scenariomenu.ui msgctxt "" @@ -8993,7 +8993,7 @@ "label\n" "string.text" msgid "Update links when opening" -msgstr "" +msgstr "Ирҿыцлатәуп азхьарҧшқәа раартраан" #: scgeneralpage.ui msgctxt "" @@ -9182,7 +9182,7 @@ "title\n" "string.text" msgid "Select Data Source" -msgstr "" +msgstr "Адырқәа рхыҵхырҭа алхра" #: selectdatasource.ui msgctxt "" @@ -9209,7 +9209,7 @@ "0\n" "stringlist.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: selectdatasource.ui msgctxt "" @@ -9254,7 +9254,7 @@ "label\n" "string.text" msgid "Selection" -msgstr "" +msgstr "Алхра" #: selectrange.ui msgctxt "" @@ -9263,7 +9263,7 @@ "title\n" "string.text" msgid "Select Database Range" -msgstr "" +msgstr "Иалхтәуп адырқәа рдиапазон" #: selectrange.ui msgctxt "" @@ -9281,7 +9281,7 @@ "title\n" "string.text" msgid "Select Source" -msgstr "" +msgstr "Иалхтәуп ахыҵхырҭа" #: selectsource.ui msgctxt "" @@ -9290,7 +9290,7 @@ "label\n" "string.text" msgid "_Current selection" -msgstr "" +msgstr "Уажәтәи алкаара" #: selectsource.ui msgctxt "" @@ -9326,7 +9326,7 @@ "label\n" "string.text" msgid "Selection" -msgstr "" +msgstr "Алхра" #: sharedfooterdialog.ui msgctxt "" @@ -9551,7 +9551,7 @@ "label\n" "string.text" msgid "_Objects/Images" -msgstr "" +msgstr "Абиеқтқәа/Асахьақәа" #: sheetprintpage.ui msgctxt "" @@ -9560,7 +9560,7 @@ "label\n" "string.text" msgid "Charts" -msgstr "" +msgstr "Адиаграммақәа" #: sheetprintpage.ui msgctxt "" @@ -9569,7 +9569,7 @@ "label\n" "string.text" msgid "_Drawing objects" -msgstr "" +msgstr "Асахьақәа" #: sheetprintpage.ui msgctxt "" @@ -9596,7 +9596,7 @@ "label\n" "string.text" msgid "Print" -msgstr "" +msgstr "Акьыҧхьра" #: sheetprintpage.ui msgctxt "" @@ -9857,7 +9857,7 @@ "tooltip_text\n" "string.text" msgid "Select the angle for rotation." -msgstr "" +msgstr "Агьежьра акәакь алхра." #: sidebaralignment.ui msgctxt "" @@ -10721,7 +10721,7 @@ "label\n" "string.text" msgid "Edit..." -msgstr "" +msgstr "Ариашара..." #: solverprogressdialog.ui msgctxt "" @@ -11036,7 +11036,7 @@ "label\n" "string.text" msgid "Current selection" -msgstr "" +msgstr "Уажәтәи алкаара" #: sortwarning.ui msgctxt "" @@ -12080,7 +12080,7 @@ "title\n" "string.text" msgid "Text Import" -msgstr "" +msgstr "Атеқст аимпорт" #: textimportcsv.ui msgctxt "" @@ -12116,7 +12116,7 @@ "label\n" "string.text" msgid "Import" -msgstr "" +msgstr "Аимпорт" #: textimportcsv.ui msgctxt "" @@ -12152,7 +12152,7 @@ "label\n" "string.text" msgid "Merge _delimiters" -msgstr "" +msgstr "Еидҵалатәуп аиҟәшагақәа" #: textimportcsv.ui msgctxt "" @@ -12206,7 +12206,7 @@ "label\n" "string.text" msgid "Te_xt delimiter:" -msgstr "" +msgstr "Атеқст аиҟәшага:" #: textimportcsv.ui msgctxt "" @@ -12305,7 +12305,7 @@ "label\n" "string.text" msgid "Select the Language to Use for Import" -msgstr "" +msgstr "Иалышәх аимпорт азы абызшәа" #: textimportoptions.ui msgctxt "" @@ -12530,7 +12530,7 @@ "label\n" "string.text" msgid "Ob_jects/Images:" -msgstr "" +msgstr "Абиеқтқәа/Асахьақәа:" #: tpviewpage.ui msgctxt "" @@ -12548,7 +12548,7 @@ "label\n" "string.text" msgid "_Drawing objects:" -msgstr "" +msgstr "Асахьақәа:" #: tpviewpage.ui msgctxt "" @@ -12611,7 +12611,7 @@ "label\n" "string.text" msgid "Objects" -msgstr "" +msgstr "Аобиеқтқәа" #: tpviewpage.ui msgctxt "" @@ -12629,7 +12629,7 @@ "label\n" "string.text" msgid "Zoom" -msgstr "" +msgstr "Амасштаб" #: ttestdialog.ui msgctxt "" @@ -12782,7 +12782,7 @@ "label\n" "string.text" msgid "Show selection _list" -msgstr "" +msgstr "Иаарҧштәуп алкаарақәа рыхьӡынҵа" #: validationcriteriapage.ui msgctxt "" @@ -13034,7 +13034,7 @@ "tooltip_text\n" "string.text" msgid "Browse to set source file." -msgstr "" +msgstr "Иашәырба ахалагаратә фаил." #: xmlsourcedialog.ui msgctxt "" @@ -13052,7 +13052,7 @@ "label\n" "string.text" msgid "Source File" -msgstr "" +msgstr "Ахалагаратә фаил" #: xmlsourcedialog.ui msgctxt "" @@ -13079,7 +13079,7 @@ "label\n" "string.text" msgid "_Import" -msgstr "" +msgstr "Аимпорт" #: ztestdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/scaddins/source/analysis.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/scaddins/source/analysis.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/scaddins/source/analysis.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/scaddins/source/analysis.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-10-29 12:02+0000\n" +"PO-Revision-Date: 2017-11-30 10:28+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1509278547.000000\n" +"X-POOTLE-MTIME: 1512037738.000000\n" #: analysis.src msgctxt "" @@ -31,7 +31,7 @@ "Start date\n" "itemlist.text" msgid "Start date" -msgstr "" +msgstr "Алагамҭа арыцхә" #: analysis.src msgctxt "" @@ -40,7 +40,7 @@ "The start date\n" "itemlist.text" msgid "The start date" -msgstr "" +msgstr "Алагамҭа арыцхә." #: analysis.src msgctxt "" @@ -94,7 +94,7 @@ "Start date\n" "itemlist.text" msgid "Start date" -msgstr "" +msgstr "Алагамҭа арыцхә" #: analysis.src msgctxt "" @@ -103,7 +103,7 @@ "The start date\n" "itemlist.text" msgid "The start date" -msgstr "" +msgstr "Алагамҭа арыцхә." #: analysis.src msgctxt "" @@ -112,7 +112,7 @@ "End date\n" "itemlist.text" msgid "End date" -msgstr "" +msgstr "Аҵыхәтәантәи арыцхә" #: analysis.src msgctxt "" @@ -205,7 +205,7 @@ "Date\n" "itemlist.text" msgid "Date" -msgstr "" +msgstr "Арыцхә" #: analysis.src msgctxt "" @@ -223,7 +223,7 @@ "Return type\n" "itemlist.text" msgid "Return type" -msgstr "" +msgstr "Иҳанаҭо атип" #: analysis.src msgctxt "" @@ -6561,7 +6561,7 @@ "ANALYSIS_FUNCNAME_Delta\n" "string.text" msgid "DELTA" -msgstr "" +msgstr "ДЕЛЬТА" #: analysis_funcnames.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/scaddins/source/datefunc.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/scaddins/source/datefunc.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/scaddins/source/datefunc.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/scaddins/source/datefunc.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2014-11-02 19:11+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-18 16:56+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1414955478.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511024204.000000\n" #: datefunc.src msgctxt "" @@ -49,7 +49,7 @@ "End date\n" "itemlist.text" msgid "End date" -msgstr "" +msgstr "Аҵыхәтәантәи арыцхә" #: datefunc.src msgctxt "" @@ -67,7 +67,7 @@ "Type\n" "itemlist.text" msgid "Type" -msgstr "" +msgstr "Атип" #: datefunc.src msgctxt "" @@ -94,7 +94,7 @@ "Start date\n" "itemlist.text" msgid "Start date" -msgstr "" +msgstr "Алагамҭа арыцхә" #: datefunc.src msgctxt "" @@ -112,7 +112,7 @@ "End date\n" "itemlist.text" msgid "End date" -msgstr "" +msgstr "Аҵыхәтәантәи арыцхә" #: datefunc.src msgctxt "" @@ -130,7 +130,7 @@ "Type\n" "itemlist.text" msgid "Type" -msgstr "" +msgstr "Атип" #: datefunc.src msgctxt "" @@ -157,7 +157,7 @@ "Start date\n" "itemlist.text" msgid "Start date" -msgstr "" +msgstr "Алагамҭа арыцхә" #: datefunc.src msgctxt "" @@ -175,7 +175,7 @@ "End date\n" "itemlist.text" msgid "End date" -msgstr "" +msgstr "Аҵыхәтәантәи арыцхә" #: datefunc.src msgctxt "" @@ -193,7 +193,7 @@ "Type\n" "itemlist.text" msgid "Type" -msgstr "" +msgstr "Атип" #: datefunc.src msgctxt "" @@ -220,7 +220,7 @@ "Date\n" "itemlist.text" msgid "Date" -msgstr "" +msgstr "Арыцхә" #: datefunc.src msgctxt "" @@ -247,7 +247,7 @@ "Date\n" "itemlist.text" msgid "Date" -msgstr "" +msgstr "Арыцхә" #: datefunc.src msgctxt "" @@ -274,7 +274,7 @@ "Date\n" "itemlist.text" msgid "Date" -msgstr "" +msgstr "Арыцхә" #: datefunc.src msgctxt "" @@ -301,7 +301,7 @@ "Date\n" "itemlist.text" msgid "Date" -msgstr "" +msgstr "Арыцхә" #: datefunc.src msgctxt "" @@ -328,7 +328,7 @@ "Text\n" "itemlist.text" msgid "Text" -msgstr "" +msgstr "Атеқст" #: datefunc.src msgctxt "" @@ -345,7 +345,7 @@ "DATE_FUNCNAME_DiffWeeks\n" "string.text" msgid "WEEKS" -msgstr "" +msgstr "АМЧЫБЖЬҚӘА" #: datefunc.src msgctxt "" @@ -353,7 +353,7 @@ "DATE_FUNCNAME_DiffMonths\n" "string.text" msgid "MONTHS" -msgstr "" +msgstr "АМЗАҚӘА" #: datefunc.src msgctxt "" @@ -361,7 +361,7 @@ "DATE_FUNCNAME_DiffYears\n" "string.text" msgid "YEARS" -msgstr "" +msgstr "АШЫҚӘСҚӘА" #: datefunc.src msgctxt "" @@ -401,4 +401,4 @@ "DATE_FUNCNAME_Rot13\n" "string.text" msgid "ROT13" -msgstr "" +msgstr "ROT13" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/scaddins/source/pricing.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/scaddins/source/pricing.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/scaddins/source/pricing.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/scaddins/source/pricing.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2014-11-02 19:11+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-18 16:53+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1414955478.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511023993.000000\n" #: pricing.src msgctxt "" @@ -31,7 +31,7 @@ "spot\n" "itemlist.text" msgid "spot" -msgstr "" +msgstr "аспот" #: pricing.src msgctxt "" @@ -67,7 +67,7 @@ "r\n" "itemlist.text" msgid "r" -msgstr "" +msgstr "r" #: pricing.src msgctxt "" @@ -85,7 +85,7 @@ "rf\n" "itemlist.text" msgid "rf" -msgstr "" +msgstr "rf" #: pricing.src msgctxt "" @@ -103,7 +103,7 @@ "T\n" "itemlist.text" msgid "T" -msgstr "" +msgstr "T" #: pricing.src msgctxt "" @@ -193,7 +193,7 @@ "put/call\n" "itemlist.text" msgid "put/call" -msgstr "" +msgstr "аҭира/аахәара" #: pricing.src msgctxt "" @@ -274,7 +274,7 @@ "spot\n" "itemlist.text" msgid "spot" -msgstr "" +msgstr "аспот" #: pricing.src msgctxt "" @@ -310,7 +310,7 @@ "r\n" "itemlist.text" msgid "r" -msgstr "" +msgstr "r" #: pricing.src msgctxt "" @@ -328,7 +328,7 @@ "rf\n" "itemlist.text" msgid "rf" -msgstr "" +msgstr "rf" #: pricing.src msgctxt "" @@ -346,7 +346,7 @@ "T\n" "itemlist.text" msgid "T" -msgstr "" +msgstr "T" #: pricing.src msgctxt "" @@ -481,7 +481,7 @@ "spot\n" "itemlist.text" msgid "spot" -msgstr "" +msgstr "аспот" #: pricing.src msgctxt "" @@ -535,7 +535,7 @@ "T\n" "itemlist.text" msgid "T" -msgstr "" +msgstr "T" #: pricing.src msgctxt "" @@ -598,7 +598,7 @@ "spot\n" "itemlist.text" msgid "spot" -msgstr "" +msgstr "аспот" #: pricing.src msgctxt "" @@ -652,7 +652,7 @@ "T\n" "itemlist.text" msgid "T" -msgstr "" +msgstr "T" #: pricing.src msgctxt "" @@ -706,7 +706,7 @@ "put/call\n" "itemlist.text" msgid "put/call" -msgstr "" +msgstr "аҭира/аахәара" #: pricing.src msgctxt "" @@ -741,7 +741,7 @@ "PRICING_FUNCNAME_OptBarrier\n" "string.text" msgid "OPT_BARRIER" -msgstr "" +msgstr "OPT_BARRIER" #: pricing.src msgctxt "" @@ -749,7 +749,7 @@ "PRICING_FUNCNAME_OptTouch\n" "string.text" msgid "OPT_TOUCH" -msgstr "" +msgstr "OPT_TOUCH" #: pricing.src msgctxt "" @@ -757,7 +757,7 @@ "PRICING_FUNCNAME_OptProbHit\n" "string.text" msgid "OPT_PROB_HIT" -msgstr "" +msgstr "OPT_PROB_HIT" #: pricing.src msgctxt "" @@ -765,4 +765,4 @@ "PRICING_FUNCNAME_OptProbInMoney\n" "string.text" msgid "OPT_PROB_INMONEY" -msgstr "" +msgstr "OPT_PROB_INMONEY" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sccomp/source/solver.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sccomp/source/solver.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sccomp/source/solver.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sccomp/source/solver.po 2017-12-12 17:45:07.000000000 +0000 @@ -3,16 +3,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: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2017-11-10 07:40+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510299643.000000\n" #: solver.src msgctxt "" @@ -20,7 +21,7 @@ "RID_SOLVER_COMPONENT\n" "string.text" msgid "%PRODUCTNAME Linear Solver" -msgstr "" +msgstr "%PRODUCTNAME CoinMP аҵәаӷәатә ҳасабга" #: solver.src msgctxt "" @@ -28,7 +29,7 @@ "RID_COINMP_SOLVER_COMPONENT\n" "string.text" msgid "%PRODUCTNAME CoinMP Linear Solver" -msgstr "" +msgstr "%PRODUCTNAME CoinMP аҵәаӷәатә ҳасабга" #: solver.src msgctxt "" @@ -60,7 +61,7 @@ "RID_PROPERTY_EPSILONLEVEL\n" "string.text" msgid "Epsilon level (0-3)" -msgstr "" +msgstr "Епсилон аҩаӡара (0-3)" #: solver.src msgctxt "" @@ -76,7 +77,7 @@ "RID_ERROR_NONLINEAR\n" "string.text" msgid "The model is not linear." -msgstr "" +msgstr "Амодель ҵәаӷәатәӡам." #: solver.src msgctxt "" @@ -100,7 +101,7 @@ "RID_ERROR_UNBOUNDED\n" "string.text" msgid "The model is unbounded." -msgstr "" +msgstr "Амодель ҳәаадоуп." #: solver.src msgctxt "" @@ -108,4 +109,4 @@ "RID_ERROR_TIMEOUT\n" "string.text" msgid "The time limit was reached." -msgstr "" +msgstr "Аамҭа алимит нҵәеит." diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/scp2/source/base.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/scp2/source/base.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/scp2/source/base.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/scp2/source/base.po 2017-12-12 17:45:07.000000000 +0000 @@ -3,16 +3,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: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2017-11-19 18:43+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511116984.000000\n" #: folderitem_base.ulf msgctxt "" @@ -92,4 +93,4 @@ "STR_REG_VAL_OO_DATABASE\n" "LngText.text" msgid "OpenDocument Database" -msgstr "" +msgstr "OpenDocument адырқәа рбаза" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/scp2/source/calc.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/scp2/source/calc.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/scp2/source/calc.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/scp2/source/calc.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2014-11-02 19:11+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-27 08:20+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1414955481.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511770814.000000\n" #: folderitem_calc.ulf msgctxt "" @@ -101,7 +101,7 @@ "STR_REG_VAL_NEW\n" "LngText.text" msgid "&New" -msgstr "" +msgstr "&Аҿыц" #: registryitem_calc.ulf msgctxt "" @@ -125,7 +125,7 @@ "STR_REG_VAL_OO_CALC\n" "LngText.text" msgid "OpenDocument Spreadsheet" -msgstr "" +msgstr "OpenDocument аелектронтә таблица" #: registryitem_calc.ulf msgctxt "" @@ -133,7 +133,7 @@ "STR_REG_VAL_OO_CALC_TEMPLATE\n" "LngText.text" msgid "OpenDocument Spreadsheet Template" -msgstr "" +msgstr "OpenDocument аелектронтә таблица ашаблон" #: registryitem_calc.ulf msgctxt "" @@ -181,7 +181,7 @@ "STR_REG_VAL_UNIFORM_OFFICE_FORMAT_SPREADSHEET\n" "LngText.text" msgid "Uniform Office Format Spreadsheet" -msgstr "" +msgstr "Unified Office Format аелектронтә таблица" #: registryitem_calc.ulf msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/scp2/source/draw.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/scp2/source/draw.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/scp2/source/draw.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/scp2/source/draw.po 2017-12-12 17:45:07.000000000 +0000 @@ -3,16 +3,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: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2017-12-12 10:30+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1513074647.000000\n" #: folderitem_draw.ulf msgctxt "" @@ -84,7 +85,7 @@ "STR_REG_VAL_NEW\n" "LngText.text" msgid "&New" -msgstr "" +msgstr "&Аҿыц" #: registryitem_draw.ulf msgctxt "" @@ -108,7 +109,7 @@ "STR_REG_VAL_OO_DRAW\n" "LngText.text" msgid "OpenDocument Drawing" -msgstr "" +msgstr "OpenDocument асахьа" #: registryitem_draw.ulf msgctxt "" @@ -116,7 +117,7 @@ "STR_REG_VAL_OO_DRAW_TEMPLATE\n" "LngText.text" msgid "OpenDocument Drawing Template" -msgstr "" +msgstr "OpenDocument асахьа ашаблон" #: registryitem_draw.ulf msgctxt "" @@ -148,7 +149,7 @@ "STR_REG_VAL_WORDPERFECT_GRAPHIC_FILE\n" "LngText.text" msgid "WordPerfect Graphic File" -msgstr "" +msgstr "WordPerfect аграфикатә фаил" #: registryitem_draw.ulf msgctxt "" @@ -156,7 +157,7 @@ "STR_REG_VAL_AUTOCAD_DRAWING_INTERCHANGE_FORMAT\n" "LngText.text" msgid "AutoCAD File" -msgstr "" +msgstr "AutoCAD афаил" #: registryitem_draw.ulf msgctxt "" @@ -164,7 +165,7 @@ "STR_REG_VAL_MS_ENHANCED_METAFILE\n" "LngText.text" msgid "Microsoft Enhanced Metafile" -msgstr "" +msgstr "Microsoft Enhanced Metafile" #: registryitem_draw.ulf msgctxt "" @@ -172,7 +173,7 @@ "STR_REG_VAL_ENCAPSULATED_POSTSCRIPT\n" "LngText.text" msgid "Encapsulated PostScript File" -msgstr "" +msgstr "Encapsulated PostScript афаил" #: registryitem_draw.ulf msgctxt "" @@ -180,7 +181,7 @@ "STR_REG_VAL_OS2_METAFILE\n" "LngText.text" msgid "OS/2 Metafile" -msgstr "" +msgstr "OS/2 Metafile" #: registryitem_draw.ulf msgctxt "" @@ -188,7 +189,7 @@ "STR_REG_VAL_MACINTOSH_PICTURE_METAFILE\n" "LngText.text" msgid "Macintosh Picture Metafile" -msgstr "" +msgstr "Macintosh Picture Metafile" #: registryitem_draw.ulf msgctxt "" @@ -196,7 +197,7 @@ "STR_REG_VAL_MS_WINDOWS_METAFILE\n" "LngText.text" msgid "Microsoft Windows Metafile" -msgstr "" +msgstr "Microsoft Windows Metafile" #: registryitem_draw.ulf msgctxt "" @@ -204,7 +205,7 @@ "STR_REG_VAL_MS_WINDOWS_BITMAP\n" "LngText.text" msgid "Microsoft Windows Bitmap File" -msgstr "" +msgstr "Microsoft Windows Bitmap афаил" #: registryitem_draw.ulf msgctxt "" @@ -212,7 +213,7 @@ "STR_REG_VAL_CORELDRAW_FILE_FORMAT\n" "LngText.text" msgid "CorelDraw File" -msgstr "" +msgstr "CorelDraw афаил" #: registryitem_draw.ulf msgctxt "" @@ -220,7 +221,7 @@ "STR_REG_VAL_COREL_PRESENTATION_EXCHANGE\n" "LngText.text" msgid "Corel Presentation Exchange File" -msgstr "" +msgstr "Corel Presentation Exchange афаил" #: registryitem_draw.ulf msgctxt "" @@ -228,7 +229,7 @@ "STR_REG_VAL_GRAPHICS_INTERCHANGE_FORMAT\n" "LngText.text" msgid "Graphics Interchange Format File" -msgstr "" +msgstr "Graphics Interchange Format File" #: registryitem_draw.ulf msgctxt "" @@ -236,7 +237,7 @@ "STR_REG_VAL_JOINT_PHOTOGRAPHIC_EXPERTS_GROUP\n" "LngText.text" msgid "Joint Photographic Experts Group File" -msgstr "" +msgstr "Joint Photographic Experts Group афаил" #: registryitem_draw.ulf msgctxt "" @@ -244,7 +245,7 @@ "STR_REG_VAL_PORTABLE_BITMAP_FORMAT\n" "LngText.text" msgid "Portable Bitmap Format File" -msgstr "" +msgstr "Portable Network Graphics аформат афаил" #: registryitem_draw.ulf msgctxt "" @@ -252,7 +253,7 @@ "STR_REG_VAL_PERSONAL_COMPUTER_EXCHANGE\n" "LngText.text" msgid "Personal Computer Exchange File" -msgstr "" +msgstr "Personal Computer Exchange афаил" #: registryitem_draw.ulf msgctxt "" @@ -260,7 +261,7 @@ "STR_REG_VAL_PORTABLE_GRAYMAP_FORMAT\n" "LngText.text" msgid "Portable Graymap Format File" -msgstr "" +msgstr "Portable Graymap аформат афаил" #: registryitem_draw.ulf msgctxt "" @@ -268,7 +269,7 @@ "STR_REG_VAL_PORTABLE_NETWORK_GRAPHICS\n" "LngText.text" msgid "Portable Network Graphics File" -msgstr "" +msgstr "Portable Network Graphics афаил" #: registryitem_draw.ulf msgctxt "" @@ -276,7 +277,7 @@ "STR_REG_VAL_PORTABLE_PIXMAP_FORMAT\n" "LngText.text" msgid "Portable Pixmap Format File" -msgstr "" +msgstr "Portable Network Graphics аформат афаил" #: registryitem_draw.ulf msgctxt "" @@ -284,7 +285,7 @@ "STR_REG_VAL_PHOTOSHOP_DOCUMENT\n" "LngText.text" msgid "Adobe Photoshop Document" -msgstr "" +msgstr "Adobe Photoshop адокумент" #: registryitem_draw.ulf msgctxt "" @@ -292,7 +293,7 @@ "STR_REG_VAL_SUN_RASTER_GRAPHIC\n" "LngText.text" msgid "Sun Raster Graphic File" -msgstr "" +msgstr "Sun Raster Graphic афаил" #: registryitem_draw.ulf msgctxt "" @@ -300,7 +301,7 @@ "STR_REG_VAL_SCALABLE_VECTOR_GRAPHICS\n" "LngText.text" msgid "Scalable Vector Graphics File" -msgstr "" +msgstr "Scalable Vector Graphics афаил" #: registryitem_draw.ulf msgctxt "" @@ -308,7 +309,7 @@ "STR_REG_VAL_TRUEVISION_TGA\n" "LngText.text" msgid "Truevision TGA File" -msgstr "" +msgstr "Truevision TGA афаил" #: registryitem_draw.ulf msgctxt "" @@ -316,7 +317,7 @@ "STR_REG_VAL_TAGGED_IMAGE_FILE_FORMAT\n" "LngText.text" msgid "Tagged Image File" -msgstr "" +msgstr "Tagged Image афаил" #: registryitem_draw.ulf msgctxt "" @@ -324,7 +325,7 @@ "STR_REG_VAL_X_BITMAP\n" "LngText.text" msgid "X BitMap File" -msgstr "" +msgstr "X BitMap афаил" #: registryitem_draw.ulf msgctxt "" @@ -332,7 +333,7 @@ "STR_REG_VAL_X_PIXMAP\n" "LngText.text" msgid "X Pixmap File" -msgstr "" +msgstr "X Pixmap афаил" #: registryitem_draw.ulf msgctxt "" @@ -340,4 +341,4 @@ "STR_REG_VAL_KODAK_PHOTO_CD_IMAGE\n" "LngText.text" msgid "Kodak Photo CD Image File" -msgstr "" +msgstr "Kodak Photo CD Image афаил" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/scp2/source/graphicfilter.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/scp2/source/graphicfilter.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/scp2/source/graphicfilter.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/scp2/source/graphicfilter.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2017-07-21 16:12+0000\n" +"PO-Revision-Date: 2017-11-19 19:47+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500653574.000000\n" +"X-POOTLE-MTIME: 1511120835.000000\n" #: module_graphicfilter.ulf msgctxt "" @@ -37,7 +37,7 @@ "STR_NAME_MODULE_OPTIONAL_GRFFLT_ADOBE\n" "LngText.text" msgid "Adobe Photoshop Import Filter" -msgstr "" +msgstr "Adobe Photoshop Аимпорт афильтр" #: module_graphicfilter.ulf msgctxt "" @@ -45,7 +45,7 @@ "STR_DESC_MODULE_OPTIONAL_GRFFLT_ADOBE\n" "LngText.text" msgid "Adobe Photoshop Import Filter" -msgstr "" +msgstr "Adobe Photoshop Аимпорт афильтр" #: module_graphicfilter.ulf msgctxt "" @@ -53,7 +53,7 @@ "STR_NAME_MODULE_OPTIONAL_GRFFLT_TGA\n" "LngText.text" msgid "TGA Import" -msgstr "" +msgstr "TGA Аимпорт" #: module_graphicfilter.ulf msgctxt "" @@ -61,7 +61,7 @@ "STR_DESC_MODULE_OPTIONAL_GRFFLT_TGA\n" "LngText.text" msgid "TGA TrueVision TARGA Import Filter" -msgstr "" +msgstr "TGA TrueVision TARGA Аимпорт афильтр" #: module_graphicfilter.ulf msgctxt "" @@ -69,7 +69,7 @@ "STR_NAME_MODULE_OPTIONAL_GRFFLT_EPS\n" "LngText.text" msgid "EPS Import/Export Filter" -msgstr "" +msgstr "EPS Аимпорт/Аекспорт афильтр" #: module_graphicfilter.ulf msgctxt "" @@ -77,7 +77,7 @@ "STR_DESC_MODULE_OPTIONAL_GRFFLT_EPS\n" "LngText.text" msgid "Encapsulated Postscript Import/Export Filter" -msgstr "" +msgstr "Encapsulated Postscript Аимпорт/Аекспорт афильтр" #: module_graphicfilter.ulf msgctxt "" @@ -85,7 +85,7 @@ "STR_NAME_MODULE_OPTIONAL_GRFFLT_XPM\n" "LngText.text" msgid "XPM Export Filter" -msgstr "" +msgstr "XPM аекспорт афильтр" #: module_graphicfilter.ulf msgctxt "" @@ -93,7 +93,7 @@ "STR_DESC_MODULE_OPTIONAL_GRFFLT_XPM\n" "LngText.text" msgid "XPM Export Filter" -msgstr "" +msgstr "XPM аекспорт афильтр" #: module_graphicfilter.ulf msgctxt "" @@ -101,7 +101,7 @@ "STR_NAME_MODULE_OPTIONAL_GRFFLT_PBMP\n" "LngText.text" msgid "Portable Bitmap Import/Export" -msgstr "" +msgstr "Portable Bitmap Аимпорт/Аекспорт" #: module_graphicfilter.ulf msgctxt "" @@ -109,7 +109,7 @@ "STR_DESC_MODULE_OPTIONAL_GRFFLT_PBMP\n" "LngText.text" msgid "Portable Bitmap Import/Export Filters" -msgstr "" +msgstr "Portable Bitmap Аимпорт/Аекспорт афильтр" #: module_graphicfilter.ulf msgctxt "" @@ -117,7 +117,7 @@ "STR_NAME_MODULE_OPTIONAL_GRFFLT_SUNRST\n" "LngText.text" msgid "SUN Rasterfile Import/Export" -msgstr "" +msgstr "SUN Rasterfile Аимпорт/Аекспорт" #: module_graphicfilter.ulf msgctxt "" @@ -125,7 +125,7 @@ "STR_DESC_MODULE_OPTIONAL_GRFFLT_SUNRST\n" "LngText.text" msgid "SUN Rasterfile Import/Export Filters" -msgstr "" +msgstr "SUN Rasterfile Аимпорт/Аекспорт афильтр" #: module_graphicfilter.ulf msgctxt "" @@ -133,7 +133,7 @@ "STR_NAME_MODULE_OPTIONAL_GRFFLT_ACAD\n" "LngText.text" msgid "AutoCAD Import" -msgstr "" +msgstr "AutoCAD Аимпорт" #: module_graphicfilter.ulf msgctxt "" @@ -141,7 +141,7 @@ "STR_DESC_MODULE_OPTIONAL_GRFFLT_ACAD\n" "LngText.text" msgid "AutoCAD Import Filter" -msgstr "" +msgstr "AutoCAD Аимпорт афильтр" #: module_graphicfilter.ulf msgctxt "" @@ -149,7 +149,7 @@ "STR_NAME_MODULE_OPTIONAL_GRFFLT_KODAC\n" "LngText.text" msgid "Kodak Photo-CD Import" -msgstr "" +msgstr "Kodak Photo-CD Аимпорт" #: module_graphicfilter.ulf msgctxt "" @@ -157,7 +157,7 @@ "STR_DESC_MODULE_OPTIONAL_GRFFLT_KODAC\n" "LngText.text" msgid "Kodak Photo-CD Import Filter" -msgstr "" +msgstr "Kodak Photo-CD Аимпорт афильтр" #: module_graphicfilter.ulf msgctxt "" @@ -165,7 +165,7 @@ "STR_NAME_MODULE_OPTIONAL_GRFFLT_MACPICT\n" "LngText.text" msgid "Mac-Pict Import/Export" -msgstr "" +msgstr "Mac-Pict Аимпорт/Аекспорт" #: module_graphicfilter.ulf msgctxt "" @@ -173,7 +173,7 @@ "STR_DESC_MODULE_OPTIONAL_GRFFLT_MACPICT\n" "LngText.text" msgid "Mac-Pict Import/Export Filters" -msgstr "" +msgstr "Mac-Pict Аимпорт/Аекспорт афильтр" #: module_graphicfilter.ulf msgctxt "" @@ -181,7 +181,7 @@ "STR_NAME_MODULE_OPTIONAL_GRFFLT_OS2META\n" "LngText.text" msgid "OS/2 Metafile Import/Export" -msgstr "" +msgstr "OS/2 Metafile Аимпорт/Аекспорт" #: module_graphicfilter.ulf msgctxt "" @@ -189,7 +189,7 @@ "STR_DESC_MODULE_OPTIONAL_GRFFLT_OS2META\n" "LngText.text" msgid "OS/2 Metafile Import/Export Filters" -msgstr "" +msgstr "OS/2 Metafile Аимпорт/Аекспорт афильтр" #: module_graphicfilter.ulf msgctxt "" @@ -197,7 +197,7 @@ "STR_NAME_MODULE_OPTIONAL_GRFFLT_PCX\n" "LngText.text" msgid "PCX Import" -msgstr "" +msgstr "PCX Аимпорт" #: module_graphicfilter.ulf msgctxt "" @@ -205,7 +205,7 @@ "STR_DESC_MODULE_OPTIONAL_GRFFLT_PCX\n" "LngText.text" msgid "Z-Soft PCX Import" -msgstr "" +msgstr "Z-Soft PCX Аимпорт афильтр" #: module_graphicfilter.ulf msgctxt "" @@ -213,7 +213,7 @@ "STR_NAME_MODULE_OPTIONAL_GRFFLT_TIFF\n" "LngText.text" msgid "TIFF Import/Export" -msgstr "" +msgstr "TIFF Аимпорт/Аекспорт" #: module_graphicfilter.ulf msgctxt "" @@ -221,7 +221,7 @@ "STR_DESC_MODULE_OPTIONAL_GRFFLT_TIFF\n" "LngText.text" msgid "TIFF Import and Export Filter" -msgstr "" +msgstr "TIFF Аимпорт/Аекспорт афильтр" #: module_graphicfilter.ulf msgctxt "" @@ -229,7 +229,7 @@ "STR_NAME_MODULE_OPTIONAL_GRFFLT_SVG\n" "LngText.text" msgid "SVG Export" -msgstr "" +msgstr "SVG Аекспорт" #: module_graphicfilter.ulf msgctxt "" @@ -237,7 +237,7 @@ "STR_DESC_MODULE_OPTIONAL_GRFFLT_SVG\n" "LngText.text" msgid "SVG Export Filter" -msgstr "" +msgstr "SVG Аекспорт афильтр" #: module_graphicfilter.ulf msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/scp2/source/impress.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/scp2/source/impress.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/scp2/source/impress.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/scp2/source/impress.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,15 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2017-11-27 08:20+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511770822.000000\n" #: folderitem_impress.ulf msgctxt "" @@ -84,7 +85,7 @@ "STR_REG_VAL_NEW\n" "LngText.text" msgid "&New" -msgstr "" +msgstr "&Аҿыц" #: registryitem_impress.ulf msgctxt "" @@ -108,7 +109,7 @@ "STR_REG_VAL_SO60_IMPRESS_TEMPLATE\n" "LngText.text" msgid "%SXWFORMATNAME %SXWFORMATVERSION Presentation Template" -msgstr "" +msgstr "апрезентациа %SXWFORMATNAME %SXWFORMATVERSION ашаблон" #: registryitem_impress.ulf msgctxt "" @@ -116,7 +117,7 @@ "STR_REG_VAL_OO_PRESENT\n" "LngText.text" msgid "OpenDocument Presentation" -msgstr "" +msgstr "OpenDocument апрезентациа" #: registryitem_impress.ulf msgctxt "" @@ -124,7 +125,7 @@ "STR_REG_VAL_OO_PRESENT_TEMPLATE\n" "LngText.text" msgid "OpenDocument Presentation Template" -msgstr "" +msgstr "OpenDocument апрезентациа ашаблон" #: registryitem_impress.ulf msgctxt "" @@ -172,7 +173,7 @@ "STR_REG_VAL_UNIFORM_OFFICE_FORMAT_PRESENTATION\n" "LngText.text" msgid "Uniform Office Format Presentation" -msgstr "" +msgstr "Unified Office Format апрезентациа" #: registryitem_impress.ulf msgctxt "" @@ -180,4 +181,4 @@ "STR_REG_VAL_COMPUTER_GRAPHICS_METAFILE\n" "LngText.text" msgid "Computer Graphics Metafile" -msgstr "" +msgstr "Computer Graphics Metafile" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/scp2/source/math.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/scp2/source/math.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/scp2/source/math.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/scp2/source/math.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2017-07-19 15:36+0000\n" +"PO-Revision-Date: 2017-11-27 08:20+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500478597.000000\n" +"X-POOTLE-MTIME: 1511770825.000000\n" #: folderitem_math.ulf msgctxt "" @@ -21,7 +21,7 @@ "STR_FI_TOOLTIP_MATH\n" "LngText.text" msgid "Create and edit scientific formulas and equations by using Math." -msgstr "" +msgstr "Анаукатә формулақәеи аиҟаратәқәеи раҧҵареи аредакциа рзуреи." #: module_math.ulf msgctxt "" @@ -37,7 +37,7 @@ "STR_DESC_MODULE_PRG_MATH\n" "LngText.text" msgid "Create and edit scientific formulas and equations by using %PRODUCTNAME Math." -msgstr "" +msgstr "Анаукатә формулақәеи аиҟаратәқәеи раҧҵареи аредакциа рзуреи %PRODUCTNAME Math ахархәарала." #: module_math.ulf msgctxt "" @@ -77,7 +77,7 @@ "STR_REG_VAL_NEW\n" "LngText.text" msgid "&New" -msgstr "" +msgstr "&Аҿыц" #: registryitem_math.ulf msgctxt "" @@ -85,7 +85,7 @@ "STR_REG_VAL_SO60_FORMULA\n" "LngText.text" msgid "%SXWFORMATNAME %SXWFORMATVERSION Formula" -msgstr "" +msgstr "аформула %SXWFORMATNAME %SXWFORMATVERSION" #: registryitem_math.ulf msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/scp2/source/onlineupdate.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/scp2/source/onlineupdate.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/scp2/source/onlineupdate.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/scp2/source/onlineupdate.po 2017-12-12 17:45:07.000000000 +0000 @@ -3,16 +3,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: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2017-11-18 10:31+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511001113.000000\n" #: module_onlineupdate.ulf msgctxt "" @@ -20,7 +21,7 @@ "STR_NAME_MODULE_OPT_ONLINEUPDATE\n" "LngText.text" msgid "Online Update" -msgstr "" +msgstr "Арҿыцрақәа ргәаҭара" #: module_onlineupdate.ulf msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/scp2/source/ooo.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/scp2/source/ooo.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/scp2/source/ooo.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/scp2/source/ooo.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-29 18:39+0200\n" -"PO-Revision-Date: 2016-12-01 16:34+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-28 10:41+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1480610074.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511865676.000000\n" #: folderitem_ooo.ulf msgctxt "" @@ -21,7 +21,7 @@ "STR_FI_NAME_FROMTEMPLATE\n" "LngText.text" msgid "From Template" -msgstr "" +msgstr "Ашаблон аҟынтәи..." #: folderitem_ooo.ulf msgctxt "" @@ -29,7 +29,7 @@ "STR_FI_NAME_OPENDOCUMENT\n" "LngText.text" msgid "Open Document" -msgstr "" +msgstr "Иаарттәуп адокумент" #: folderitem_ooo.ulf msgctxt "" @@ -61,7 +61,7 @@ "STR_NAME_MODULE_HELPPACK_EN_US\n" "LngText.text" msgid "English (United States)" -msgstr "" +msgstr "Англыз бызшәа (США)" #: module_helppack.ulf msgctxt "" @@ -4581,7 +4581,7 @@ "STR_REG_VAL_SO60_CONFIGFILE\n" "LngText.text" msgid "%PRODUCTNAME Configuration File" -msgstr "" +msgstr "%PRODUCTNAME архиарақәа рфаил" #: registryitem_ooo.ulf msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/scp2/source/python.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/scp2/source/python.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/scp2/source/python.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/scp2/source/python.po 2017-12-12 17:45:07.000000000 +0000 @@ -3,16 +3,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: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2017-11-28 10:44+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511865876.000000\n" #: module_python_librelogo.ulf msgctxt "" @@ -20,7 +21,7 @@ "STR_NAME_MODULE_OPTIONAL_PYTHON_LIBRELOGO\n" "LngText.text" msgid "LibreLogo" -msgstr "" +msgstr "LibreLogo" #: module_python_librelogo.ulf msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/scp2/source/writer.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/scp2/source/writer.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/scp2/source/writer.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/scp2/source/writer.po 2017-12-12 17:45:07.000000000 +0000 @@ -3,16 +3,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: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2017-11-29 08:23+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511943818.000000\n" #: folderitem_writer.ulf msgctxt "" @@ -92,7 +93,7 @@ "STR_NAME_MODULE_PRG_WRT_WRITER2LATEX\n" "LngText.text" msgid "LaTeX Export" -msgstr "" +msgstr "LaTeX ахь аекспорт" #: module_writer.ulf msgctxt "" @@ -108,7 +109,7 @@ "STR_REG_VAL_NEW\n" "LngText.text" msgid "&New" -msgstr "" +msgstr "&Аҿыц" #: registryitem_writer.ulf msgctxt "" @@ -116,7 +117,7 @@ "STR_REG_VAL_SO60_TEXT\n" "LngText.text" msgid "%SXWFORMATNAME %SXWFORMATVERSION Text Document" -msgstr "" +msgstr "%SXWFORMATNAME %SXWFORMATVERSION атеқсттә документ" #: registryitem_writer.ulf msgctxt "" @@ -124,7 +125,7 @@ "STR_REG_VAL_SO60_MASTERDOC\n" "LngText.text" msgid "%SXWFORMATNAME %SXWFORMATVERSION Master Document" -msgstr "" +msgstr "%SXWFORMATNAME %SXWFORMATVERSION еилоу адокумент" #: registryitem_writer.ulf msgctxt "" @@ -132,7 +133,7 @@ "STR_REG_VAL_SO60_WRITER_TEMPLATE\n" "LngText.text" msgid "%SXWFORMATNAME %SXWFORMATVERSION Text Document Template" -msgstr "" +msgstr "%SXWFORMATNAME %SXWFORMATVERSION атеқсттә документ ашаблон" #: registryitem_writer.ulf msgctxt "" @@ -140,7 +141,7 @@ "STR_REG_VAL_OO_WRITER\n" "LngText.text" msgid "OpenDocument Text" -msgstr "" +msgstr "OpenDocument атеқсттә документ" #: registryitem_writer.ulf msgctxt "" @@ -148,7 +149,7 @@ "STR_REG_VAL_OO_WRITER_TEMPLATE\n" "LngText.text" msgid "OpenDocument Text Template" -msgstr "" +msgstr "OpenDocument атеқсттә документ ашаблон" #: registryitem_writer.ulf msgctxt "" @@ -156,7 +157,7 @@ "STR_REG_VAL_OO_MASTERDOC\n" "LngText.text" msgid "OpenDocument Master Document" -msgstr "" +msgstr "OpenDocument еилоу адокумент" #: registryitem_writer.ulf msgctxt "" @@ -212,7 +213,7 @@ "STR_REG_VAL_UNIFORM_OFFICE_FORMAT_TEXT\n" "LngText.text" msgid "Uniform Office Format Text Document" -msgstr "" +msgstr "Uniform Office атеқсттә документ" #: registryitem_writer.ulf msgctxt "" @@ -228,4 +229,4 @@ "STR_REG_VAL_T602_TEXT_FILE\n" "LngText.text" msgid "T602 Text File" -msgstr "" +msgstr "T602 атеқст" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/scp2/source/xsltfilter.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/scp2/source/xsltfilter.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/scp2/source/xsltfilter.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/scp2/source/xsltfilter.po 2017-12-12 17:45:07.000000000 +0000 @@ -3,16 +3,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: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2017-11-28 10:43+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511865801.000000\n" #: module_xsltfilter.ulf msgctxt "" @@ -20,7 +21,7 @@ "STR_NAME_MODULE_OPTIONAL_XSLTFILTERSAMPLES\n" "LngText.text" msgid "XSLT Sample Filters" -msgstr "" +msgstr "XSLT афильтрқәа рҿырҧштәқәа" #: module_xsltfilter.ulf msgctxt "" @@ -28,4 +29,4 @@ "STR_DESC_MODULE_OPTIONAL_XSLTFILTERSAMPLES\n" "LngText.text" msgid "XSLT Sample Filters" -msgstr "" +msgstr "XSLT афильтрқәа рҿырҧштәқәа" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sd/source/core.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sd/source/core.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sd/source/core.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sd/source/core.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n" -"PO-Revision-Date: 2017-07-19 08:41+0000\n" +"PO-Revision-Date: 2017-12-12 10:31+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500453714.000000\n" +"X-POOTLE-MTIME: 1513074708.000000\n" #: glob.src msgctxt "" @@ -29,7 +29,7 @@ "STR_LAYER_BCKGRNDOBJ\n" "string.text" msgid "Background objects" -msgstr "" +msgstr "Аҿаҧшыра аобиеқтқәа" #: glob.src msgctxt "" @@ -445,7 +445,7 @@ "STR_PSEUDOSHEET_BACKGROUNDOBJECTS\n" "string.text" msgid "Background objects" -msgstr "" +msgstr "Аҿаҧшыра аобиеқтқәа" #: glob.src msgctxt "" @@ -469,7 +469,7 @@ "STR_POWERPOINT_IMPORT\n" "string.text" msgid "PowerPoint Import" -msgstr "" +msgstr "PowerPoint Аимпорт" #: glob.src msgctxt "" @@ -477,7 +477,7 @@ "STR_LOAD_DOC\n" "string.text" msgid "Load Document" -msgstr "" +msgstr "Иҭагалатәуп адокумент" #: glob.src msgctxt "" @@ -485,7 +485,7 @@ "STR_SAVE_DOC\n" "string.text" msgid "Save Document" -msgstr "Иеиқәырхатәуп адокумент" +msgstr "Еиқәырхатәуп адокумент" #: glob.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sd/source/ui/animations.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sd/source/ui/animations.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sd/source/ui/animations.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sd/source/ui/animations.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n" -"PO-Revision-Date: 2017-07-21 18:59+0000\n" +"PO-Revision-Date: 2017-11-26 15:20+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500663553.000000\n" +"X-POOTLE-MTIME: 1511709643.000000\n" #: CustomAnimation.src msgctxt "" @@ -53,7 +53,7 @@ "STR_CUSTOMANIMATION_ZOOM_PROPERTY\n" "string.text" msgid "Zoom:" -msgstr "" +msgstr "Амасштаб:" #: CustomAnimation.src msgctxt "" @@ -149,7 +149,7 @@ "STR_CUSTOMANIMATION_SCALE_PROPERTY\n" "string.text" msgid "Size:" -msgstr "" +msgstr "Ашәагаа:" #: CustomAnimation.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sd/source/ui/annotations.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sd/source/ui/annotations.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sd/source/ui/annotations.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sd/source/ui/annotations.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n" -"PO-Revision-Date: 2014-11-02 19:11+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-30 10:29+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1414955486.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1512037754.000000\n" #: annotations.src msgctxt "" @@ -85,7 +85,7 @@ "STR_ANNOTATION_UNDO_DELETE\n" "string.text" msgid "Delete Comment(s)" -msgstr "" +msgstr "Ианыхтәуп акомментари" #: annotations.src msgctxt "" @@ -101,7 +101,7 @@ "STR_ANNOTATION_UNDO_EDIT\n" "string.text" msgid "Edit Comment" -msgstr "" +msgstr "Иҧсахтәуп акомментари" #: annotations.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sd/source/ui/app.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sd/source/ui/app.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sd/source/ui/app.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sd/source/ui/app.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-29 18:40+0200\n" -"PO-Revision-Date: 2017-09-18 11:10+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-12-12 10:33+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1505733015.000000\n" +"X-POOTLE-MTIME: 1513074799.000000\n" #: res_bmp.src msgctxt "" @@ -22,7 +22,7 @@ "All Styles\n" "itemlist.text" msgid "All Styles" -msgstr "" +msgstr "Астильқәа зегьы" #: res_bmp.src msgctxt "" @@ -31,7 +31,7 @@ "Hidden Styles\n" "itemlist.text" msgid "Hidden Styles" -msgstr "" +msgstr "Иҵәаху астильқәа" #: res_bmp.src msgctxt "" @@ -40,7 +40,7 @@ "Applied Styles\n" "itemlist.text" msgid "Applied Styles" -msgstr "" +msgstr "Ахархәара змоу астильқәа" #: res_bmp.src msgctxt "" @@ -49,7 +49,7 @@ "Custom Styles\n" "itemlist.text" msgid "Custom Styles" -msgstr "" +msgstr "Ахархәаҩ истильқәа" #: res_bmp.src msgctxt "" @@ -58,7 +58,7 @@ "All Styles\n" "itemlist.text" msgid "All Styles" -msgstr "" +msgstr "Астильқәа зегьы" #: res_bmp.src msgctxt "" @@ -67,7 +67,7 @@ "Hidden Styles\n" "itemlist.text" msgid "Hidden Styles" -msgstr "" +msgstr "Иҵәаху астильқәа" #: sdstring.src msgctxt "" @@ -499,7 +499,7 @@ "STR_DISPLAYMODE_EDITMODES\n" "string.text" msgid "Edit Modes" -msgstr "" +msgstr "Аредакциазура арежим" #: strings.src msgctxt "" @@ -637,7 +637,7 @@ "STR_POPUP_DELETE_SNAPLINE\n" "string.text" msgid "Delete Snap Line" -msgstr "" +msgstr "Ианыхтәуп амҩақәҵага" #: strings.src msgctxt "" @@ -669,7 +669,7 @@ "STR_UNDO_DELETEPAGES\n" "string.text" msgid "Delete slides" -msgstr "" +msgstr "Ианыхтәуп аслаид" #: strings.src msgctxt "" @@ -783,7 +783,7 @@ "STR_ALL_FILES\n" "string.text" msgid "All files" -msgstr "" +msgstr "Афаилқәа зегьы" #: strings.src msgctxt "" @@ -809,7 +809,7 @@ "STR_DLG_INSERT_PAGES_FROM_FILE\n" "string.text" msgid "Insert File" -msgstr "" +msgstr "Ибжьаргылатәуп афаил" #: strings.src msgctxt "" @@ -817,7 +817,7 @@ "STR_READ_DATA_ERROR\n" "string.text" msgid "The file could not be loaded!" -msgstr "" +msgstr "Афаил аҭагалара ауам!" #: strings.src msgctxt "" @@ -860,7 +860,7 @@ "STR_EDIT_OBJ\n" "string.text" msgid "~Edit" -msgstr "" +msgstr "Ариашара" #: strings.src msgctxt "" @@ -868,7 +868,7 @@ "STR_DELETE_PAGES\n" "string.text" msgid "Delete Slides" -msgstr "" +msgstr "Ианыхтәуп аслаидқәа" #: strings.src msgctxt "" @@ -884,7 +884,7 @@ "STR_IMPORT_GRFILTER_OPENERROR\n" "string.text" msgid "Image file cannot be opened" -msgstr "" +msgstr "Асахьа аартра ауам" #: strings.src msgctxt "" @@ -892,7 +892,7 @@ "STR_IMPORT_GRFILTER_IOERROR\n" "string.text" msgid "Image file cannot be read" -msgstr "" +msgstr "Асахьа аҧхьара ауам" #: strings.src msgctxt "" @@ -980,7 +980,7 @@ "STR_UNDO_INSERT_FILE\n" "string.text" msgid "Insert file" -msgstr "" +msgstr "Ибжьаргылатәуп афаил" #: strings.src msgctxt "" @@ -988,7 +988,7 @@ "STR_UNDO_INSERT_SPECCHAR\n" "string.text" msgid "Insert special character" -msgstr "" +msgstr "Ибжьаргылатәуп асимвол" #: strings.src msgctxt "" @@ -1020,7 +1020,7 @@ "STR_UNDO_ORIGINALSIZE\n" "string.text" msgid "Original Size" -msgstr "" +msgstr "Ахалагаратә шәагаа" #: strings.src msgctxt "" @@ -1078,7 +1078,7 @@ "STR_CLICK_ACTION_BOOKMARK\n" "string.text" msgid "Go to page or object" -msgstr "" +msgstr "Ииастәуп адаҟьахь ма аобиеқтахь" #: strings.src msgctxt "" @@ -1158,7 +1158,7 @@ "STR_EFFECTDLG_PAGE_OBJECT\n" "string.text" msgid "Slide / Object" -msgstr "" +msgstr "Аслаид / Аобиеқт" #: strings.src msgctxt "" @@ -1214,7 +1214,7 @@ "STR_LOAD_PRESENTATION_LAYOUT\n" "string.text" msgid "Load Slide Design" -msgstr "" +msgstr "Аслаид адизаин аҭагалара" #: strings.src msgctxt "" @@ -1222,7 +1222,7 @@ "STR_DRAGTYPE_URL\n" "string.text" msgid "Insert as Hyperlink" -msgstr "" +msgstr "Ибжьаргылатәуп агиперзхьарҧш ҳасабла" #: strings.src msgctxt "" @@ -1238,7 +1238,7 @@ "STR_DRAGTYPE_LINK\n" "string.text" msgid "Insert as Link" -msgstr "" +msgstr "Ибжьаргылатәуп азхьарҧш ҳасабла" #: strings.src msgctxt "" @@ -1470,7 +1470,7 @@ "STR_FILEFORMAT_NAME_EXT\n" "string.text" msgid "File name" -msgstr "" +msgstr "Афаил ахьӡ" #: strings.src msgctxt "" @@ -1478,7 +1478,7 @@ "STR_FILEFORMAT_FULLPATH\n" "string.text" msgid "Path/File name" -msgstr "" +msgstr "Амҩа/Афаил ахьӡ" #: strings.src msgctxt "" @@ -1584,7 +1584,7 @@ "STR_HTMLATTR_LINK\n" "string.text" msgid "Hyperlink" -msgstr "" +msgstr "Агиперзхьарҧш" #: strings.src msgctxt "" @@ -1600,7 +1600,7 @@ "STR_HTMLATTR_ALINK\n" "string.text" msgid "Active link" -msgstr "" +msgstr "Иактиву агиперзхьарҧш" #: strings.src msgctxt "" @@ -1664,7 +1664,7 @@ "STR_HTMLEXP_DOWNLOAD\n" "string.text" msgid "Download presentation" -msgstr "" +msgstr "Иҭагалатәуп апрезентациа" #: strings.src msgctxt "" @@ -1760,7 +1760,7 @@ "STR_DRAW_GRAF_TOOLBOX\n" "string.text" msgid "Image Object Bar" -msgstr "" +msgstr "Асахьақәа рпанель" #: strings.src msgctxt "" @@ -1810,7 +1810,7 @@ "STR_HTMLEXP_ERROR_CREATE_FILE\n" "string.text" msgid "Cannot create the file $(URL1)." -msgstr "" +msgstr "Иауам афаил $(URL1) аҧҵара." #: strings.src msgctxt "" @@ -1818,7 +1818,7 @@ "STR_HTMLEXP_ERROR_OPEN_FILE\n" "string.text" msgid "Could not open the file $(URL1)." -msgstr "" +msgstr "Иауам афаил $(URL1) аартра." #: strings.src msgctxt "" @@ -2046,7 +2046,7 @@ "STR_GRAPHICS_STYLE_FAMILY\n" "string.text" msgid "Drawing Styles" -msgstr "" +msgstr "Асахьақәа рстильқәа" #: strings.src msgctxt "" @@ -2054,7 +2054,7 @@ "STR_PRESENTATIONS_STYLE_FAMILY\n" "string.text" msgid "Presentation Styles" -msgstr "" +msgstr "Апрезентациақәа рстильқәа" #: strings.src msgctxt "" @@ -2062,7 +2062,7 @@ "STR_CELL_STYLE_FAMILY\n" "string.text" msgid "Cell Styles" -msgstr "" +msgstr "Абларҭақәа рстильқәа" #: strings.src msgctxt "" @@ -2118,7 +2118,7 @@ "STR_INSERT_TABLE\n" "string.text" msgid "Insert Table" -msgstr "" +msgstr "Ибжьаргылатәуп атаблица" #: strings.src msgctxt "" @@ -2126,7 +2126,7 @@ "STR_INSERT_CHART\n" "string.text" msgid "Insert Chart" -msgstr "" +msgstr "Ибжьаргылатәуп адиаграмма" #: strings.src msgctxt "" @@ -2182,7 +2182,7 @@ "STR_INSERT_3D_MODEL_TITLE\n" "string.text" msgid "Insert 3D Model" -msgstr "" +msgstr "Ибжьаргылатәуп 3D-амодель" #: strings.src msgctxt "" @@ -2230,4 +2230,4 @@ "RID_DRAW_TABLE_TOOLBOX\n" "string.text" msgid "Table" -msgstr "" +msgstr "Атаблица" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sd/source/ui/view.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sd/source/ui/view.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sd/source/ui/view.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sd/source/ui/view.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n" -"PO-Revision-Date: 2016-04-17 00:44+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-26 09:28+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1460853846.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511688504.000000\n" #: DocumentRenderer.src msgctxt "" @@ -29,7 +29,7 @@ "STR_IMPRESS_PRINT_UI_PRINT_GROUP\n" "string.text" msgid "Print" -msgstr "" +msgstr "Акьыҧхьра" #: DocumentRenderer.src msgctxt "" @@ -253,7 +253,7 @@ "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS\n" "string.text" msgid "~Size" -msgstr "" +msgstr "Ашәагаа" #: DocumentRenderer.src msgctxt "" @@ -262,7 +262,7 @@ "Original size\n" "itemlist.text" msgid "Original size" -msgstr "" +msgstr "Ахалагаратә шәагаа" #: DocumentRenderer.src msgctxt "" @@ -271,7 +271,7 @@ "Fit to printable page\n" "itemlist.text" msgid "Fit to printable page" -msgstr "" +msgstr "Ашәагаақәа ирҭакӡатәуп" #: DocumentRenderer.src msgctxt "" @@ -298,7 +298,7 @@ "Original size\n" "itemlist.text" msgid "Original size" -msgstr "" +msgstr "Ахалагаратә шәагаа" #: DocumentRenderer.src msgctxt "" @@ -307,7 +307,7 @@ "Fit to printable page\n" "itemlist.text" msgid "Fit to printable page" -msgstr "" +msgstr "Ашәагаақәа ирҭакӡатәуп" #: DocumentRenderer.src msgctxt "" @@ -392,7 +392,7 @@ "STR_IMPRESS_PRINT_UI_PAGE_RANGE\n" "string.text" msgid "Print range" -msgstr "" +msgstr "Акьыҧхьра адиапазон" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sd/uiconfig/sdraw/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sd/uiconfig/sdraw/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sd/uiconfig/sdraw/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sd/uiconfig/sdraw/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n" -"PO-Revision-Date: 2017-07-21 18:59+0000\n" +"PO-Revision-Date: 2017-11-30 10:30+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500663566.000000\n" +"X-POOTLE-MTIME: 1512037827.000000\n" #: breakdialog.ui msgctxt "" @@ -58,7 +58,7 @@ "title\n" "string.text" msgid "Bullets and Numbering" -msgstr "" +msgstr "Амаркерқәеи аномерркреи" #: bulletsandnumbering.ui msgctxt "" @@ -76,7 +76,7 @@ "label\n" "string.text" msgid "Bullets" -msgstr "" +msgstr "Амаркерқәа" #: bulletsandnumbering.ui msgctxt "" @@ -373,7 +373,7 @@ "title\n" "string.text" msgid "Character" -msgstr "" +msgstr "Асимволқәа" #: drawchardialog.ui msgctxt "" @@ -454,7 +454,7 @@ "title\n" "string.text" msgid "Paragraph" -msgstr "" +msgstr "Абзац" #: drawparadialog.ui msgctxt "" @@ -589,7 +589,7 @@ "label\n" "string.text" msgid "Bullets" -msgstr "" +msgstr "Амаркерқәа" #: drawprtldialog.ui msgctxt "" @@ -706,7 +706,7 @@ "label\n" "string.text" msgid "_Printable" -msgstr "" +msgstr "_Акьыҧхьразы" #: insertlayer.ui msgctxt "" @@ -733,7 +733,7 @@ "label\n" "string.text" msgid "Delete unused backg_rounds" -msgstr "" +msgstr "Ианыхтәуп ахрхәара змам аҿаҧшырақәа" #: insertslidesdialog.ui msgctxt "" @@ -742,7 +742,7 @@ "label\n" "string.text" msgid "_Link" -msgstr "" +msgstr "Аимадара" #: namedesign.ui msgctxt "" @@ -760,7 +760,7 @@ "label\n" "string.text" msgid "R_estart at this paragraph" -msgstr "" +msgstr "Иалагатәуп ҿыц абри абзац аҟынтәи" #: paranumberingtab.ui msgctxt "" @@ -778,7 +778,7 @@ "label\n" "string.text" msgid "Paragraph Numbering" -msgstr "" +msgstr "Абзацқәа рномерркра" #: printeroptions.ui msgctxt "" @@ -814,7 +814,7 @@ "label\n" "string.text" msgid "Original size" -msgstr "" +msgstr "Ахалагаратә шәагаа" #: printeroptions.ui msgctxt "" @@ -850,7 +850,7 @@ "label\n" "string.text" msgid "Original size" -msgstr "" +msgstr "Ахалагаратә шәагаа" #: printeroptions.ui msgctxt "" @@ -859,7 +859,7 @@ "label\n" "string.text" msgid "Fit to printable page" -msgstr "" +msgstr "Ашәагаақәа ирҭакӡатәуп" #: printeroptions.ui msgctxt "" @@ -886,7 +886,7 @@ "label\n" "string.text" msgid "Size" -msgstr "" +msgstr "Ашәагаа" #: queryunlinkimagedialog.ui msgctxt "" @@ -922,7 +922,7 @@ "title\n" "string.text" msgid "Table Design" -msgstr "" +msgstr "Атаблица адизаин" #: tabledesigndialog.ui msgctxt "" @@ -1021,7 +1021,7 @@ "label\n" "string.text" msgid "Tile size:" -msgstr "" +msgstr "Амозаика ашәагаа:" #: vectorize.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sd/uiconfig/simpress/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sd/uiconfig/simpress/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sd/uiconfig/simpress/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sd/uiconfig/simpress/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-29 18:40+0200\n" -"PO-Revision-Date: 2017-09-18 11:10+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-12-12 10:34+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1505733023.000000\n" +"X-POOTLE-MTIME: 1513074872.000000\n" #: annotationmenu.ui msgctxt "" @@ -85,7 +85,7 @@ "label\n" "string.text" msgid "_Delete Comment" -msgstr "" +msgstr "Ианыхтәуп акомментари" #: annotationmenu.ui msgctxt "" @@ -103,7 +103,7 @@ "label\n" "string.text" msgid "Delete _All Comments" -msgstr "" +msgstr "Ианыхтәуп акомментариқәа зегьы" #: annotationtagmenu.ui msgctxt "" @@ -121,7 +121,7 @@ "label\n" "string.text" msgid "_Delete Comment" -msgstr "" +msgstr "Ианыхтәуп акомментари" #: annotationtagmenu.ui msgctxt "" @@ -139,7 +139,7 @@ "label\n" "string.text" msgid "Delete _All Comments" -msgstr "" +msgstr "Ианыхтәуп акомментариқәа зегьы" #: currentmastermenu.ui msgctxt "" @@ -148,7 +148,7 @@ "label\n" "string.text" msgid "_Apply to All Slides" -msgstr "" +msgstr "Ихархәатәуп аслаидқәа зегьы рҟны" #: currentmastermenu.ui msgctxt "" @@ -157,7 +157,7 @@ "label\n" "string.text" msgid "Apply to _Selected Slides" -msgstr "" +msgstr "Ихархәатәуп иалкаау аслаидқәа рҟны" #: currentmastermenu.ui msgctxt "" @@ -274,7 +274,7 @@ "label\n" "string.text" msgid "delay between characters" -msgstr "" +msgstr "асимволқәа рыбжьара аанкылара" #: customanimationeffecttab.ui msgctxt "" @@ -553,7 +553,7 @@ "label\n" "string.text" msgid "_Delay:" -msgstr "" +msgstr "Аанкылара:" #: customanimationspanel.ui msgctxt "" @@ -778,7 +778,7 @@ "label\n" "string.text" msgid "_Delay:" -msgstr "" +msgstr "Аанкылара:" #: customanimationspanelhorizontal.ui msgctxt "" @@ -859,7 +859,7 @@ "1\n" "stringlist.text" msgid "All paragraphs at once" -msgstr "" +msgstr "Абзацқәа зегьы иаразнак" #: customanimationtexttab.ui msgctxt "" @@ -940,7 +940,7 @@ "label\n" "string.text" msgid "_Delay:" -msgstr "" +msgstr "Аанкылара:" #: customanimationtimingtab.ui msgctxt "" @@ -1102,7 +1102,7 @@ "label\n" "string.text" msgid "_Selected slides:" -msgstr "" +msgstr "Иалху аслаидқәа:" #: definecustomslideshow.ui #, fuzzy @@ -1293,7 +1293,7 @@ "label\n" "string.text" msgid "Bitmap object" -msgstr "" +msgstr "Арастртә обиеқт" #: dockinganimation.ui msgctxt "" @@ -1401,7 +1401,7 @@ "tooltip_text\n" "string.text" msgid "Apply Object" -msgstr "" +msgstr "Ихархәатәуп аобиеқт" #: dockinganimation.ui msgctxt "" @@ -1410,7 +1410,7 @@ "tooltip_text\n" "string.text" msgid "Apply Objects Individually" -msgstr "" +msgstr "Ихархәатәуп аобиеқтқәа акакала" #: dockinganimation.ui msgctxt "" @@ -1428,7 +1428,7 @@ "tooltip_text\n" "string.text" msgid "Delete Current Image" -msgstr "" +msgstr "Ианыхтәуп асахьа" #: dockinganimation.ui msgctxt "" @@ -1437,7 +1437,7 @@ "tooltip_text\n" "string.text" msgid "Delete All Images" -msgstr "" +msgstr "Ианыхтәуп асахьақәа зегьы" #: dockinganimation.ui msgctxt "" @@ -1671,7 +1671,7 @@ "label\n" "string.text" msgid "_Format:" -msgstr "" +msgstr "_Аформат:" #: headerfootertab.ui msgctxt "" @@ -1815,7 +1815,7 @@ "label\n" "string.text" msgid "_Browse..." -msgstr "" +msgstr "_Аҭыҧхәаҧшра..." #: interactionpage.ui msgctxt "" @@ -1842,7 +1842,7 @@ "label\n" "string.text" msgid "Apply to _Selected Slides" -msgstr "" +msgstr "Ихархәатәуп иалкаау аслаидқәа рҟны" #: layoutmenu.ui msgctxt "" @@ -1923,7 +1923,7 @@ "label\n" "string.text" msgid "_Apply to All Slides" -msgstr "" +msgstr "Ихархәатәуп аслаидқәа зегьы рҟны" #: mastermenu.ui msgctxt "" @@ -1932,7 +1932,7 @@ "label\n" "string.text" msgid "Apply to _Selected Slides" -msgstr "" +msgstr "Ихархәатәуп иалкаау аслаидқәа рҟны" #: mastermenu.ui msgctxt "" @@ -2031,7 +2031,7 @@ "label\n" "string.text" msgid "File" -msgstr "" +msgstr "Афаил" #: notebookbar.ui msgctxt "" @@ -2049,7 +2049,7 @@ "tooltip_text\n" "string.text" msgid "Bullets and Numbering" -msgstr "" +msgstr "Амаркерқәеи аномерркреи" #: notebookbar.ui msgctxt "" @@ -2193,7 +2193,7 @@ "label\n" "string.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: notebookbar.ui msgctxt "" @@ -2256,7 +2256,7 @@ "label\n" "string.text" msgid "Hyperlink" -msgstr "" +msgstr "Азхьарҧш" #: notebookbar_groups.ui msgctxt "" @@ -2364,7 +2364,7 @@ "label\n" "string.text" msgid "File" -msgstr "" +msgstr "Афаил" #: notebookbar_groups.ui msgctxt "" @@ -2483,7 +2483,7 @@ "label\n" "string.text" msgid "Links" -msgstr "" +msgstr "Азхьарҧшқәа" #: notebookbar_groups.ui msgctxt "" @@ -2609,7 +2609,7 @@ "label\n" "string.text" msgid "Edit Contour" -msgstr "" +msgstr "Аконтур ариашара" #: optimpressgeneralpage.ui msgctxt "" @@ -2636,7 +2636,7 @@ "label\n" "string.text" msgid "Text Objects" -msgstr "" +msgstr "Атеқст аобиеқтқәа" #: optimpressgeneralpage.ui msgctxt "" @@ -2645,7 +2645,7 @@ "label\n" "string.text" msgid "Start with _Template Selection" -msgstr "" +msgstr "Иалагатәуп ашаблон алхра ала" #: optimpressgeneralpage.ui msgctxt "" @@ -2654,7 +2654,7 @@ "label\n" "string.text" msgid "New Document" -msgstr "" +msgstr "Иаҧҵатәуп адокумент" #: optimpressgeneralpage.ui msgctxt "" @@ -3212,7 +3212,7 @@ "label\n" "string.text" msgid "Original size" -msgstr "" +msgstr "Ахалагаратә шәагаа" #: printeroptions.ui msgctxt "" @@ -3248,7 +3248,7 @@ "label\n" "string.text" msgid "Original size" -msgstr "" +msgstr "Ахалагаратә шәагаа" #: printeroptions.ui msgctxt "" @@ -3257,7 +3257,7 @@ "label\n" "string.text" msgid "Fit to printable page" -msgstr "" +msgstr "Адаҟьа ашәагаақәа ирҭакӡатәуп" #: printeroptions.ui msgctxt "" @@ -3284,7 +3284,7 @@ "label\n" "string.text" msgid "Size" -msgstr "" +msgstr "Ашәагаа" #: prntopts.ui msgctxt "" @@ -3329,7 +3329,7 @@ "label\n" "string.text" msgid "Print" -msgstr "" +msgstr "Акьыҧхьра" #: prntopts.ui msgctxt "" @@ -3491,7 +3491,7 @@ "title\n" "string.text" msgid "HTML Export" -msgstr "" +msgstr "HTML Аекспорт" #: publishingdialog.ui msgctxt "" @@ -3518,7 +3518,7 @@ "label\n" "string.text" msgid "Delete Selected Design" -msgstr "" +msgstr "Ианыхтәуп иалху адизаин" #: publishingdialog.ui msgctxt "" @@ -3527,7 +3527,7 @@ "label\n" "string.text" msgid "Select an existing design or create a new one" -msgstr "" +msgstr "Иалышәх иҟоу адизаин ма аҿыц аҧышәҵа" #: publishingdialog.ui msgctxt "" @@ -3707,7 +3707,7 @@ "label\n" "string.text" msgid "Standard H_TML format" -msgstr "" +msgstr "Истандарту HTML" #: publishingdialog.ui msgctxt "" @@ -3761,7 +3761,7 @@ "label\n" "string.text" msgid "Save Images As" -msgstr "Иеиқәырхатәуп асахьа иаба(ишҧа)" +msgstr "Еиқәырхатәуп асахьа иаба(ишҧа)" #: publishingdialog.ui msgctxt "" @@ -3815,7 +3815,7 @@ "label\n" "string.text" msgid "Export _hidden slides" -msgstr "" +msgstr "Експорттәуп иҵәаху аслаидқәа" #: publishingdialog.ui msgctxt "" @@ -3896,7 +3896,7 @@ "label\n" "string.text" msgid "Select Button Style" -msgstr "" +msgstr "Иалхтәуп акнопкақәа рстиль" #: publishingdialog.ui msgctxt "" @@ -3950,7 +3950,7 @@ "label\n" "string.text" msgid "Hyper_link" -msgstr "" +msgstr "_Агиперзхьарҧш" #: publishingdialog.ui msgctxt "" @@ -3977,7 +3977,7 @@ "label\n" "string.text" msgid "Select Color Scheme" -msgstr "" +msgstr "Иалхтәуп аҧштәқәа рсхема" #: publishingdialog.ui msgctxt "" @@ -4193,7 +4193,7 @@ "label\n" "string.text" msgid "_Format:" -msgstr "" +msgstr "Аформат:" #: sidebarslidebackground.ui msgctxt "" @@ -4229,7 +4229,7 @@ "label\n" "string.text" msgid "Display Objects" -msgstr "" +msgstr "Иаарҧштәуп аобиеқтқәа" #: sidebarslidebackground.ui msgctxt "" @@ -4274,7 +4274,7 @@ "label\n" "string.text" msgid "Close Master View" -msgstr "" +msgstr "Иарктәуп азҟаза арежим" #: slidecontextmenu.ui msgctxt "" @@ -4463,7 +4463,7 @@ "label\n" "string.text" msgid "_Load..." -msgstr "" +msgstr "Аҭагалара..." #: slidedesigndialog.ui msgctxt "" @@ -4481,7 +4481,7 @@ "label\n" "string.text" msgid "_Delete unused backgrounds" -msgstr "" +msgstr "Ианыхтәуп ахрхәара змам аҿаҧшырақәа" #: slidedesigndialog.ui msgctxt "" @@ -4490,7 +4490,7 @@ "label\n" "string.text" msgid "Select a Slide Design" -msgstr "" +msgstr "Аслаид адизаин алхра" #: slidetransitionspanel.ui msgctxt "" @@ -4859,7 +4859,7 @@ "title\n" "string.text" msgid "Graphic Styles" -msgstr "" +msgstr "Асахьақәа рстильқәа" #: templatedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/setup_native/source/mac.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/setup_native/source/mac.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/setup_native/source/mac.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/setup_native/source/mac.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n" -"PO-Revision-Date: 2014-11-02 19:11+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-15 07:06+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1414955490.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510729612.000000\n" #: macinstall.ulf msgctxt "" @@ -21,7 +21,7 @@ "OKLabel\n" "LngText.text" msgid "Ok" -msgstr "" +msgstr "ОК" #: macinstall.ulf msgctxt "" @@ -29,7 +29,7 @@ "InstallLabel\n" "LngText.text" msgid "Install" -msgstr "" +msgstr "Иқәыргылатәуп" #: macinstall.ulf msgctxt "" @@ -37,7 +37,7 @@ "AbortLabel\n" "LngText.text" msgid "Abort" -msgstr "" +msgstr "Еиҧҟьатәуп" #: macinstall.ulf msgctxt "" @@ -45,7 +45,7 @@ "IntroText1\n" "LngText.text" msgid "Welcome to the [FULLPRODUCTNAME] Installation Wizard" -msgstr "" +msgstr "Бзиала шәаабеит ақәыргылара Азҟаза [FULLPRODUCTNAME] аҟны" #: macinstall.ulf msgctxt "" @@ -61,7 +61,7 @@ "IntroText3\n" "LngText.text" msgid "This might take a moment." -msgstr "" +msgstr "Ари аамҭала ҧыҭрак иадхалоит." #: macinstall.ulf msgctxt "" @@ -93,7 +93,7 @@ "ListOKLabelText\n" "LngText.text" msgid "Install" -msgstr "" +msgstr "Иқәыргылатәуп" #: macinstall.ulf msgctxt "" @@ -101,7 +101,7 @@ "ListCancelLabel\n" "LngText.text" msgid "Abort" -msgstr "" +msgstr "Еиҧҟьатәуп" #: macinstall.ulf msgctxt "" @@ -109,7 +109,7 @@ "AppInvalidText1\n" "LngText.text" msgid "This is not a valid [PRODUCTNAME] [PRODUCTVERSION] installation." -msgstr "" +msgstr "[PRODUCTNAME] [PRODUCTVERSION] иашамкәа иқәыргылоуп." #: macinstall.ulf msgctxt "" @@ -165,7 +165,7 @@ "IdentifyNO\n" "LngText.text" msgid "No, abort installation" -msgstr "" +msgstr "Мап, иаҟәыхтәуп ақәыргылара" #: macinstall.ulf msgctxt "" @@ -173,7 +173,7 @@ "InstallFailedText\n" "LngText.text" msgid "Installation failed." -msgstr "" +msgstr "Ақәыргылара амуӡеит." #: macinstall.ulf msgctxt "" @@ -197,4 +197,4 @@ "InstallCompleteTextPatch\n" "LngText.text" msgid "Installation of [FULLPRODUCTNAME] completed" -msgstr "" +msgstr "[FULLPRODUCTNAME] Ақәыргылара мҩаҧысит қәҿиарала" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sfx2/source/appl.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sfx2/source/appl.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sfx2/source/appl.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sfx2/source/appl.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n" -"PO-Revision-Date: 2017-07-19 15:57+0000\n" +"PO-Revision-Date: 2017-11-29 10:31+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500479853.000000\n" +"X-POOTLE-MTIME: 1511951505.000000\n" #: app.src msgctxt "" @@ -127,7 +127,7 @@ "GID_EDIT\n" "string.text" msgid "Edit" -msgstr "" +msgstr "Ариашара" #: app.src msgctxt "" @@ -175,7 +175,7 @@ "GID_FORMAT\n" "string.text" msgid "Format" -msgstr "" +msgstr "Аформат" #: app.src msgctxt "" @@ -183,7 +183,7 @@ "GID_TEMPLATE\n" "string.text" msgid "Templates" -msgstr "" +msgstr "Ашаблонқәа" #: app.src msgctxt "" @@ -215,7 +215,7 @@ "GID_TABLE\n" "string.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: app.src msgctxt "" @@ -255,7 +255,7 @@ "GID_CHART\n" "string.text" msgid "Chart" -msgstr "" +msgstr "Адиаграмма" #: app.src msgctxt "" @@ -343,7 +343,7 @@ "STR_QUICKSTART_FILEOPEN\n" "string.text" msgid "Open Document..." -msgstr "" +msgstr "Иаарттәуп адокумент..." #: app.src msgctxt "" @@ -383,7 +383,7 @@ "STR_QUICKSTART_FILE\n" "string.text" msgid "File" -msgstr "" +msgstr "Афаил" #: app.src msgctxt "" @@ -523,7 +523,7 @@ "STR_SFX_FILTERNAME_ALL\n" "string.text" msgid "All files" -msgstr "" +msgstr "Афаилқәа зегьы" #: app.src msgctxt "" @@ -531,7 +531,7 @@ "STR_SFX_FILTERNAME_PDF\n" "string.text" msgid "PDF files" -msgstr "" +msgstr "PDF афаилқәа" #: app.src msgctxt "" @@ -539,7 +539,7 @@ "RID_SVXSTR_EDITGRFLINK\n" "string.text" msgid "Link Image" -msgstr "" +msgstr "Асахьахь азхьарҧш" #: app.src msgctxt "" @@ -559,7 +559,7 @@ "RID_SVXSTR_GRFILTER_OPENERROR\n" "string.text" msgid "Image file cannot be opened" -msgstr "" +msgstr "Асахьа аартра ауам" #: app.src msgctxt "" @@ -567,7 +567,7 @@ "RID_SVXSTR_GRFILTER_IOERROR\n" "string.text" msgid "Image file cannot be read" -msgstr "" +msgstr "Асахьа аҧхьара ауам" #: app.src msgctxt "" @@ -668,7 +668,7 @@ "STR_HELP_BUTTON_PRINT\n" "string.text" msgid "Print..." -msgstr "" +msgstr "Акьыҧхьра..." #: newhelp.src msgctxt "" @@ -740,7 +740,7 @@ "STR_PASSWD_MIN_LEN\n" "string.text" msgid "(Minimum $(MINLEN) characters)" -msgstr "" +msgstr "(Асимволқәа рминимум: $(MINLEN))" #: sfx.src msgctxt "" @@ -748,7 +748,7 @@ "STR_PASSWD_MIN_LEN1\n" "string.text" msgid "(Minimum 1 character)" -msgstr "" +msgstr "(Минимум 1 символк)" #: sfx.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sfx2/source/dialog.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sfx2/source/dialog.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sfx2/source/dialog.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sfx2/source/dialog.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n" -"PO-Revision-Date: 2017-07-21 18:59+0000\n" +"PO-Revision-Date: 2017-11-29 09:16+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500663578.000000\n" +"X-POOTLE-MTIME: 1511946962.000000\n" #: dialog.src msgctxt "" @@ -76,7 +76,7 @@ "STR_DELETE_STYLE\n" "string.text" msgid "Styles in use: " -msgstr "" +msgstr "Ахархәара змоу астильқәа:" #: dialog.src msgctxt "" @@ -498,7 +498,7 @@ "STR_SFX_EXPLORERFILE_EXPORT\n" "string.text" msgid "Export" -msgstr "" +msgstr "Аекспорт" #: filedlghelper.src msgctxt "" @@ -530,7 +530,7 @@ "STR_PB_SAVEACOPY\n" "string.text" msgid "Save a Copy" -msgstr "Иеиқәырхатәуп акопиа..." +msgstr "Еиқәырхатәуп акопиа..." #: filedlghelper.src msgctxt "" @@ -570,7 +570,7 @@ "STR_CANCEL_RECORDING\n" "string.text" msgid "Cancel Recording" -msgstr "" +msgstr "Иаҟәыхтәуп аҭаҩра" #: taskpane.src msgctxt "" @@ -618,7 +618,7 @@ "STR_STYLE_NEW_STYLE_FROM_SELECTION\n" "string.text" msgid "New Style from Selection" -msgstr "" +msgstr "Иаҧҵатәуп алкаараз астиль" #: templdlg.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sfx2/source/doc.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sfx2/source/doc.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sfx2/source/doc.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sfx2/source/doc.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-29 18:39+0200\n" -"PO-Revision-Date: 2017-07-19 08:42+0000\n" +"PO-Revision-Date: 2017-11-30 10:33+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500453770.000000\n" +"X-POOTLE-MTIME: 1512037990.000000\n" #: doc.src msgctxt "" @@ -21,7 +21,7 @@ "STR_TEMPLATE_FILTER\n" "string.text" msgid "Templates" -msgstr "" +msgstr "Ашаблонқәа" #: doc.src msgctxt "" @@ -29,7 +29,7 @@ "STR_SAVEDOC\n" "string.text" msgid "~Save" -msgstr "Иеиқәырхатәуп" +msgstr "Еиқәырхатәуп" #: doc.src msgctxt "" @@ -37,7 +37,7 @@ "STR_SAVEASDOC\n" "string.text" msgid "Save ~As..." -msgstr "Иеиқәырхатәуп иаба(ишҧа)..." +msgstr "Еиқәырхатәуп иаба(ишҧа)..." #: doc.src msgctxt "" @@ -45,7 +45,7 @@ "STR_SAVEACOPY\n" "string.text" msgid "Save a Copy..." -msgstr "Иеиқәырхатәуп акопиа..." +msgstr "Еиқәырхатәуп акопиа..." #: doc.src msgctxt "" @@ -61,7 +61,7 @@ "STR_OPEN\n" "string.text" msgid "Open" -msgstr "" +msgstr "Иаарттәуп" #: doc.src msgctxt "" @@ -69,7 +69,7 @@ "STR_EDIT_TEMPLATE\n" "string.text" msgid "Edit" -msgstr "" +msgstr "Ариашара" #: doc.src msgctxt "" @@ -93,7 +93,7 @@ "STR_DELETE\n" "string.text" msgid "Delete" -msgstr "" +msgstr "Ианыхтәуп" #: doc.src msgctxt "" @@ -117,7 +117,7 @@ "STR_RENAME_TEMPLATE\n" "string.text" msgid "Enter New Name: " -msgstr "" +msgstr "Иҭажәгал ахьӡ ҿыц:" #: doc.src msgctxt "" @@ -135,7 +135,7 @@ "STR_TEMPLATE_SELECTION\n" "string.text" msgid "Select a Template" -msgstr "" +msgstr "Иалышәх ашаблон" #: doc.src msgctxt "" @@ -151,7 +151,7 @@ "STR_EXPORTBUTTON\n" "string.text" msgid "Export" -msgstr "" +msgstr "Аекспорт" #: doc.src msgctxt "" @@ -159,7 +159,7 @@ "STR_LABEL_FILEFORMAT\n" "string.text" msgid "File format:" -msgstr "" +msgstr "Афаил аформат:" #: doc.src msgctxt "" @@ -193,7 +193,7 @@ "STR_HIDDENINFO_DOCVERSIONS\n" "string.text" msgid "Document versions" -msgstr "" +msgstr "Адокумент аверсиақәа" #: doc.src msgctxt "" @@ -276,7 +276,7 @@ "STR_QRYTEMPL_UPDATE_BTN\n" "string.text" msgid "~Update Styles" -msgstr "" +msgstr "Ирҿыцтәуп астильқәа" #: doc.src msgctxt "" @@ -284,7 +284,7 @@ "STR_QRYTEMPL_KEEP_BTN\n" "string.text" msgid "~Keep Old Styles" -msgstr "" +msgstr "Еиқәырхатәуп ажәытә стильқәа" #: doc.src msgctxt "" @@ -309,7 +309,7 @@ "STR_CATEGORY_NEW\n" "string.text" msgid "New Category" -msgstr "" +msgstr "Иаҧҵатәуп акатегориа" #: doc.src msgctxt "" @@ -325,7 +325,7 @@ "STR_CATEGORY_SELECT\n" "string.text" msgid "Select Category" -msgstr "" +msgstr "Иалышәх акатегориа" #: doc.src msgctxt "" @@ -423,7 +423,7 @@ "STR_QMSG_SEL_FOLDER_DELETE\n" "string.text" msgid "Do you want to delete the selected folders?" -msgstr "" +msgstr "Ианыхтәума иалху аҭаӡқәа?" #: doc.src msgctxt "" @@ -439,7 +439,7 @@ "STR_QMSG_SEL_TEMPLATE_DELETE\n" "string.text" msgid "Do you want to delete the selected templates?" -msgstr "" +msgstr "Ианыхтәума иалху ашаблонқәа?" #: doc.src msgctxt "" @@ -476,7 +476,7 @@ "My Templates\n" "itemlist.text" msgid "My Templates" -msgstr "" +msgstr "Сара сшаблонқәа" #: doctempl.src msgctxt "" @@ -575,7 +575,7 @@ "Styles\n" "itemlist.text" msgid "Styles" -msgstr "" +msgstr "Астильқәа" #: doctempl.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sfx2/source/sidebar.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sfx2/source/sidebar.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sfx2/source/sidebar.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sfx2/source/sidebar.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-02 09:51+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-19 19:00+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1480672276.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511118040.000000\n" #: Sidebar.src msgctxt "" @@ -29,7 +29,7 @@ "SFX_STR_SIDEBAR_CLOSE_DECK\n" "string.text" msgid "Close Sidebar Deck" -msgstr "" +msgstr "Иарктәуп аварахьтәи апанель" #: Sidebar.src msgctxt "" @@ -61,4 +61,4 @@ "SFX_STR_SIDEBAR_HIDE_SIDEBAR\n" "string.text" msgid "Close Sidebar" -msgstr "" +msgstr "Иарктәуп аварахьтәи апанель" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sfx2/source/view.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sfx2/source/view.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sfx2/source/view.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sfx2/source/view.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-06-20 13:55+0200\n" -"PO-Revision-Date: 2016-12-02 09:51+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-29 08:37+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1480672277.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511944662.000000\n" #: view.src msgctxt "" @@ -41,7 +41,7 @@ "STR_ERROR_PRINTER_BUSY\n" "string.text" msgid "Printer busy" -msgstr "" +msgstr "Апринтер ҭацәым" #: view.src msgctxt "" @@ -142,7 +142,7 @@ "STR_READONLY_DOCUMENT\n" "string.text" msgid "This document is open in read-only mode." -msgstr "" +msgstr "Ари адокумент аартуп аҧхьара мацаразы." #: view.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sfx2/uiconfig/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sfx2/uiconfig/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sfx2/uiconfig/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n" -"PO-Revision-Date: 2017-07-21 18:59+0000\n" +"PO-Revision-Date: 2017-11-30 10:39+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500663586.000000\n" +"X-POOTLE-MTIME: 1512038398.000000\n" #: alienwarndialog.ui msgctxt "" @@ -22,7 +22,7 @@ "title\n" "string.text" msgid "Confirm File Format" -msgstr "" +msgstr "Афаил аформат ашьақәырӷәӷәара" #: alienwarndialog.ui msgctxt "" @@ -49,7 +49,7 @@ "label\n" "string.text" msgid "Use %DEFAULTEXTENSION _Format" -msgstr "" +msgstr "Ихархәатәуп аформат %DEFAULTEXTENSION " #: alienwarndialog.ui msgctxt "" @@ -58,7 +58,7 @@ "label\n" "string.text" msgid "_Use %FORMATNAME Format" -msgstr "" +msgstr "Ихархәатәуп аформат %FORMATNAME" #: alienwarndialog.ui msgctxt "" @@ -121,7 +121,7 @@ "label\n" "string.text" msgid "Delete" -msgstr "" +msgstr "Ианыхтәуп" #: checkin.ui msgctxt "" @@ -139,7 +139,7 @@ "label\n" "string.text" msgid "New major version" -msgstr "" +msgstr "Иҿыцу ихадоу аверсиа" #: checkin.ui msgctxt "" @@ -364,7 +364,7 @@ "label\n" "string.text" msgid "_Apply user data" -msgstr "" +msgstr "Ихархәатәуп ахархәуаҩ изку адырқәа" #: documentinfopage.ui msgctxt "" @@ -373,7 +373,7 @@ "label\n" "string.text" msgid "Save preview image with this document" -msgstr "" +msgstr "Иеиқәырхатәуп аескиз адокумент аҟны" #: documentinfopage.ui msgctxt "" @@ -400,7 +400,7 @@ "label\n" "string.text" msgid "_Size:" -msgstr "" +msgstr "Ашәагаа:" #: documentinfopage.ui msgctxt "" @@ -544,7 +544,7 @@ "label\n" "string.text" msgid "Cancel" -msgstr "" +msgstr "Иаҟәыхтәуп" #: editdurationdialog.ui msgctxt "" @@ -877,7 +877,7 @@ "label\n" "string.text" msgid "_File:" -msgstr "" +msgstr "Афаил:" #: linkeditdialog.ui msgctxt "" @@ -895,7 +895,7 @@ "label\n" "string.text" msgid "Modify Link" -msgstr "" +msgstr "Иҧсахтәуп азхьарҧш" #: loadtemplatedialog.ui msgctxt "" @@ -904,7 +904,7 @@ "title\n" "string.text" msgid "New" -msgstr "" +msgstr "Иаҧҵатәуп" #: loadtemplatedialog.ui msgctxt "" @@ -913,7 +913,7 @@ "label\n" "string.text" msgid "From File..." -msgstr "" +msgstr "Афаил аҟынтәи..." #: loadtemplatedialog.ui msgctxt "" @@ -931,7 +931,7 @@ "label\n" "string.text" msgid "Templates" -msgstr "" +msgstr "Ашаблонқәа" #: loadtemplatedialog.ui msgctxt "" @@ -985,7 +985,7 @@ "label\n" "string.text" msgid "Load Styles" -msgstr "" +msgstr "Иҭагалатәуп астильқәа" #: loadtemplatedialog.ui msgctxt "" @@ -1039,7 +1039,7 @@ "label\n" "string.text" msgid "Edit Style" -msgstr "" +msgstr "Иҧсахтәуп астиль" #: managestylepage.ui msgctxt "" @@ -1048,7 +1048,7 @@ "label\n" "string.text" msgid "Edit Style" -msgstr "" +msgstr "Иҧсахтәуп астиль" #: managestylepage.ui msgctxt "" @@ -1057,7 +1057,7 @@ "label\n" "string.text" msgid "_AutoUpdate" -msgstr "" +msgstr "Авторҿыцра" #: managestylepage.ui msgctxt "" @@ -1111,7 +1111,7 @@ "label\n" "string.text" msgid "File" -msgstr "" +msgstr "Афаил" #: optprintpage.ui msgctxt "" @@ -1120,7 +1120,7 @@ "label\n" "string.text" msgid "_Printer" -msgstr "" +msgstr "Апринтерқәа" #: optprintpage.ui msgctxt "" @@ -1129,7 +1129,7 @@ "label\n" "string.text" msgid "Print to _file" -msgstr "" +msgstr "Афаил ахь акьыҧхьра" #: optprintpage.ui msgctxt "" @@ -1327,7 +1327,7 @@ "label\n" "string.text" msgid "P_aper size" -msgstr "" +msgstr "Ақьаад ашәагаа" #: optprintpage.ui msgctxt "" @@ -1354,7 +1354,7 @@ "label\n" "string.text" msgid "Printer Warnings" -msgstr "" +msgstr "Апринтер агәаҽанҵарақәа" #: password.ui msgctxt "" @@ -1453,7 +1453,7 @@ "title\n" "string.text" msgid "Save Document?" -msgstr "" +msgstr "Еиқәырхатәума адокумент?" #: querysavedialog.ui msgctxt "" @@ -1471,7 +1471,7 @@ "secondary_text\n" "string.text" msgid "Your changes will be lost if you don’t save them." -msgstr "" +msgstr "Аҧсахрақәа ыӡуеит еиқәырхамзар" #: querysavedialog.ui msgctxt "" @@ -1516,7 +1516,7 @@ "title\n" "string.text" msgid "Save As Template" -msgstr "Иеиқәырхатәуп шаблон ҳасабла" +msgstr "Еиқәырхатәуп шаблон ҳасабла" #: saveastemplatedlg.ui msgctxt "" @@ -1561,7 +1561,7 @@ "title\n" "string.text" msgid "Find on this Page" -msgstr "" +msgstr "Иҧшаатәуп абри адаҟьаҟны" #: searchdialog.ui msgctxt "" @@ -1624,7 +1624,7 @@ "label\n" "string.text" msgid "_Open file read-only" -msgstr "" +msgstr "Иаарттәуп аҧхьара мацараз" #: securityinfopage.ui msgctxt "" @@ -1678,7 +1678,7 @@ "label\n" "string.text" msgid "Writer Templates" -msgstr "" +msgstr "Writer ашаблонқәа" #: startcenter.ui msgctxt "" @@ -1687,7 +1687,7 @@ "label\n" "string.text" msgid "Calc Templates" -msgstr "" +msgstr "Calc ашаблонқәа" #: startcenter.ui msgctxt "" @@ -1696,7 +1696,7 @@ "label\n" "string.text" msgid "Impress Templates" -msgstr "" +msgstr "Impress ашаблонқәа" #: startcenter.ui msgctxt "" @@ -1705,7 +1705,7 @@ "label\n" "string.text" msgid "Draw Templates" -msgstr "" +msgstr "Draw ашаблонқәа" #: startcenter.ui msgctxt "" @@ -1723,7 +1723,7 @@ "label\n" "string.text" msgid "_Open File" -msgstr "" +msgstr "_Иаарттәуп афаил" #: startcenter.ui msgctxt "" @@ -1732,7 +1732,7 @@ "label\n" "string.text" msgid "Remote File_s" -msgstr "" +msgstr "Афаилқәа асервер аҟны" #: startcenter.ui msgctxt "" @@ -1858,7 +1858,7 @@ "label\n" "string.text" msgid "Templates List" -msgstr "" +msgstr "Ашаблонқәа рыхьӡынҵа" #: stylecontextmenu.ui msgctxt "" @@ -1867,7 +1867,7 @@ "label\n" "string.text" msgid "New..." -msgstr "" +msgstr "Иаҧҵатәуп..." #: stylecontextmenu.ui msgctxt "" @@ -1903,7 +1903,7 @@ "label\n" "string.text" msgid "Delete..." -msgstr "" +msgstr "Ианыхтәуп..." #: templatecategorydlg.ui msgctxt "" @@ -1912,7 +1912,7 @@ "title\n" "string.text" msgid "Select Category" -msgstr "" +msgstr "Акатегориа алхра" #: templatecategorydlg.ui msgctxt "" @@ -1921,7 +1921,7 @@ "label\n" "string.text" msgid "Select from Existing Category" -msgstr "" +msgstr "Иалхтәуп иҟоу акатегориа" #: templatecategorydlg.ui msgctxt "" @@ -1930,7 +1930,7 @@ "label\n" "string.text" msgid "or Create a New Category" -msgstr "" +msgstr "ма иаҧҵатәуп иҿыцу" #: templatecategorydlg.ui msgctxt "" @@ -1948,7 +1948,7 @@ "title\n" "string.text" msgid "Templates" -msgstr "" +msgstr "Ашаблонқәа" #: templatedlg.ui msgctxt "" @@ -2020,7 +2020,7 @@ "tooltip_text\n" "string.text" msgid "Browse online templates" -msgstr "" +msgstr "Онлаин ашаблонқәа рҭыҧхәаҧшра" #: templatedlg.ui msgctxt "" @@ -2056,7 +2056,7 @@ "label\n" "string.text" msgid "Export" -msgstr "" +msgstr "Аекспорт" #: templatedlg.ui msgctxt "" @@ -2065,7 +2065,7 @@ "tooltip_text\n" "string.text" msgid "Export Templates" -msgstr "" +msgstr "Ашаблонқәа рекспорт" #: templatedlg.ui msgctxt "" @@ -2074,7 +2074,7 @@ "label\n" "string.text" msgid "Import" -msgstr "" +msgstr "Аимпорт" #: templatedlg.ui msgctxt "" @@ -2083,7 +2083,7 @@ "tooltip_text\n" "string.text" msgid "Import Templates" -msgstr "" +msgstr "Ашаблонқәа римпорт" #: templatedlg.ui msgctxt "" @@ -2218,7 +2218,7 @@ "label\n" "string.text" msgid "Existing Versions" -msgstr "" +msgstr "Иҟоу аверсиақәа" #: versionsofdialog.ui msgctxt "" @@ -2254,7 +2254,7 @@ "label\n" "string.text" msgid "Save _New Version" -msgstr "Иеиқәырхатәуп иҿыцу аверсиа" +msgstr "Еиқәырхатәуп иҿыцу аверсиа" #: versionsofdialog.ui msgctxt "" @@ -2272,7 +2272,7 @@ "label\n" "string.text" msgid "New Versions" -msgstr "" +msgstr "Аверсиа ҿыцқәа" #: versionsofdialog.ui msgctxt "" @@ -2308,4 +2308,4 @@ "label\n" "string.text" msgid "Existing Versions" -msgstr "" +msgstr "Иҟоу аверсиақәа" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/shell/source/win32/shlxthandler/res.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/shell/source/win32/shlxthandler/res.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/shell/source/win32/shlxthandler/res.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/shell/source/win32/shlxthandler/res.po 2017-12-12 17:45:07.000000000 +0000 @@ -3,16 +3,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: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2017-11-15 08:23+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510734184.000000\n" #: shlxthdl.ulf msgctxt "" @@ -20,7 +21,7 @@ "%TITLE%\n" "LngText.text" msgid "Title" -msgstr "" +msgstr "Ахы" #: shlxthdl.ulf msgctxt "" @@ -28,7 +29,7 @@ "%TITLE_COLON%\n" "LngText.text" msgid "Title:" -msgstr "" +msgstr "Ахы:" #: shlxthdl.ulf msgctxt "" @@ -36,7 +37,7 @@ "%SUBJECT%\n" "LngText.text" msgid "Subject" -msgstr "" +msgstr "Атема" #: shlxthdl.ulf msgctxt "" @@ -44,7 +45,7 @@ "%SUBJECT_COLON%\n" "LngText.text" msgid "Subject:" -msgstr "" +msgstr "Атема:" #: shlxthdl.ulf msgctxt "" @@ -52,7 +53,7 @@ "%AUTHOR%\n" "LngText.text" msgid "Author" -msgstr "" +msgstr "Автор" #: shlxthdl.ulf msgctxt "" @@ -60,7 +61,7 @@ "%AUTHOR_COLON%\n" "LngText.text" msgid "Author:" -msgstr "" +msgstr "Автор:" #: shlxthdl.ulf msgctxt "" @@ -68,7 +69,7 @@ "%KEYWORDS%\n" "LngText.text" msgid "Keywords" -msgstr "" +msgstr "Ихадоу ажәақәа" #: shlxthdl.ulf msgctxt "" @@ -76,7 +77,7 @@ "%KEYWORDS_COLON%\n" "LngText.text" msgid "Keywords:" -msgstr "" +msgstr "Ихадоу ажәақәа:" #: shlxthdl.ulf msgctxt "" @@ -84,7 +85,7 @@ "%COMMENTS%\n" "LngText.text" msgid "Comments" -msgstr "" +msgstr "Акомментариқәа" #: shlxthdl.ulf msgctxt "" @@ -92,7 +93,7 @@ "%COMMENTS_COLON%\n" "LngText.text" msgid "Comments:" -msgstr "" +msgstr "Акомментариқәа:" #: shlxthdl.ulf msgctxt "" @@ -100,7 +101,7 @@ "%PAGES%\n" "LngText.text" msgid "Pages" -msgstr "" +msgstr "Адаҟьақәа" #: shlxthdl.ulf msgctxt "" @@ -108,7 +109,7 @@ "%TABLES%\n" "LngText.text" msgid "Tables" -msgstr "" +msgstr "Атаблицақәа" #: shlxthdl.ulf msgctxt "" @@ -116,7 +117,7 @@ "%GRAPHICS%\n" "LngText.text" msgid "Images" -msgstr "" +msgstr "Асахьақәа" #: shlxthdl.ulf msgctxt "" @@ -124,7 +125,7 @@ "%OBJECTS%\n" "LngText.text" msgid "Objects" -msgstr "" +msgstr "Аобиеқтқәа" #: shlxthdl.ulf msgctxt "" @@ -132,7 +133,7 @@ "%OLE_OBJECTS%\n" "LngText.text" msgid "OLE Objects" -msgstr "" +msgstr "OLE аобиеқтқәа" #: shlxthdl.ulf msgctxt "" @@ -140,7 +141,7 @@ "%PARAGRAPHS%\n" "LngText.text" msgid "Paragraphs" -msgstr "" +msgstr "Абзацқәа" #: shlxthdl.ulf msgctxt "" @@ -148,7 +149,7 @@ "%WORDS%\n" "LngText.text" msgid "Words" -msgstr "" +msgstr "Ажәақәа" #: shlxthdl.ulf msgctxt "" @@ -156,7 +157,7 @@ "%CHARACTERS%\n" "LngText.text" msgid "Characters" -msgstr "" +msgstr "Асимволқәа" #: shlxthdl.ulf msgctxt "" @@ -164,7 +165,7 @@ "%ROWS%\n" "LngText.text" msgid "Lines" -msgstr "" +msgstr "Ацәаҳәа(қәа)" #: shlxthdl.ulf msgctxt "" @@ -172,7 +173,7 @@ "%ORIGIN%\n" "LngText.text" msgid "Origin" -msgstr "" +msgstr "Ахыҵхырҭа" #: shlxthdl.ulf msgctxt "" @@ -180,7 +181,7 @@ "%VERSION%\n" "LngText.text" msgid "Version" -msgstr "" +msgstr "Аверсиа" #: shlxthdl.ulf msgctxt "" @@ -188,7 +189,7 @@ "%SHEETS%\n" "LngText.text" msgid "Sheets" -msgstr "" +msgstr "Абӷьыцқәа" #: shlxthdl.ulf msgctxt "" @@ -196,7 +197,7 @@ "%CELLS%\n" "LngText.text" msgid "Cells" -msgstr "" +msgstr "Абларҭақәа" #: shlxthdl.ulf msgctxt "" @@ -204,7 +205,7 @@ "%STATISTICS_TITLE%\n" "LngText.text" msgid "Document Statistics" -msgstr "" +msgstr "Адокумент астатистика" #: shlxthdl.ulf msgctxt "" @@ -212,7 +213,7 @@ "%SUMMARY_TITLE%\n" "LngText.text" msgid "Summary" -msgstr "" +msgstr "Аихшьалақәа" #: shlxthdl.ulf msgctxt "" @@ -220,7 +221,7 @@ "%PROPERTY%\n" "LngText.text" msgid "Property" -msgstr "" +msgstr "Аҷыдаҟазшьа" #: shlxthdl.ulf msgctxt "" @@ -228,7 +229,7 @@ "%PROPERTY_VALUE%\n" "LngText.text" msgid "Value" -msgstr "" +msgstr "Аҵакы" #: shlxthdl.ulf msgctxt "" @@ -236,7 +237,7 @@ "%MODIFIED%\n" "LngText.text" msgid "Modified" -msgstr "" +msgstr "Иҧсаху" #: shlxthdl.ulf msgctxt "" @@ -244,7 +245,7 @@ "%MODIFIED_COLON%\n" "LngText.text" msgid "Modified:" -msgstr "" +msgstr "Иҧсахуп:" #: shlxthdl.ulf msgctxt "" @@ -252,7 +253,7 @@ "%DOCUMENT_NUMBER%\n" "LngText.text" msgid "Revision number" -msgstr "" +msgstr "Аредакциа" #: shlxthdl.ulf msgctxt "" @@ -260,7 +261,7 @@ "%DOCUMENT_NUMBER_COLON%\n" "LngText.text" msgid "Revision number:" -msgstr "" +msgstr "Аредакциа:" #: shlxthdl.ulf msgctxt "" @@ -284,7 +285,7 @@ "%DESCRIPTION%\n" "LngText.text" msgid "Description" -msgstr "" +msgstr "Ахҳәаа" #: shlxthdl.ulf msgctxt "" @@ -292,7 +293,7 @@ "%DESCRIPTION_COLON%\n" "LngText.text" msgid "Description:" -msgstr "" +msgstr "Ахҳәаа:" #: shlxthdl.ulf msgctxt "" @@ -300,7 +301,7 @@ "%SIZE_COLON%\n" "LngText.text" msgid "Size:" -msgstr "" +msgstr "Ашәагаа:" #: shlxthdl.ulf msgctxt "" @@ -308,4 +309,4 @@ "%TYPE_COLON%\n" "LngText.text" msgid "Type:" -msgstr "" +msgstr "Атип:" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/starmath/source.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/starmath/source.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/starmath/source.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/starmath/source.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n" -"PO-Revision-Date: 2017-07-21 19:00+0000\n" +"PO-Revision-Date: 2017-11-17 08:14+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500663630.000000\n" +"X-POOTLE-MTIME: 1510906489.000000\n" #: commands.src msgctxt "" @@ -21,7 +21,7 @@ "RID_PLUSX_HELP\n" "string.text" msgid "+ Sign" -msgstr "" +msgstr "Адырга +" #: commands.src msgctxt "" @@ -29,7 +29,7 @@ "RID_MINUSX_HELP\n" "string.text" msgid "- Sign" -msgstr "" +msgstr "Адырга -" #: commands.src msgctxt "" @@ -37,7 +37,7 @@ "RID_PLUSMINUSX_HELP\n" "string.text" msgid "+- Sign" -msgstr "" +msgstr "Адырга +-" #: commands.src msgctxt "" @@ -45,7 +45,7 @@ "RID_MINUSPLUSX_HELP\n" "string.text" msgid "-+ Sign" -msgstr "" +msgstr "Адырга -+" #: commands.src msgctxt "" @@ -53,7 +53,7 @@ "RID_NEGX_HELP\n" "string.text" msgid "Boolean NOT" -msgstr "" +msgstr "Алогикатә АКӘӠАМ" #: commands.src msgctxt "" @@ -61,7 +61,7 @@ "RID_XPLUSY_HELP\n" "string.text" msgid "Addition +" -msgstr "" +msgstr "Аицҵара +" #: commands.src msgctxt "" @@ -69,7 +69,7 @@ "RID_XMINUSY_HELP\n" "string.text" msgid "Subtraction -" -msgstr "" +msgstr "Аигырхара -" #: commands.src msgctxt "" @@ -77,7 +77,7 @@ "RID_XCDOTY_HELP\n" "string.text" msgid "Multiplication (Dot)" -msgstr "" +msgstr "Ашьҭыхра (акәаҧ)" #: commands.src msgctxt "" @@ -85,7 +85,7 @@ "RID_XTIMESY_HELP\n" "string.text" msgid "Multiplication (x)" -msgstr "" +msgstr "Ашьҭыхра (x)" #: commands.src msgctxt "" @@ -93,7 +93,7 @@ "RID_XSYMTIMESY_HELP\n" "string.text" msgid "Multiplication (*)" -msgstr "" +msgstr "Ашьҭыхра (*)" #: commands.src msgctxt "" @@ -101,7 +101,7 @@ "RID_XSYMDIVIDEY_HELP\n" "string.text" msgid "Division (Slash)" -msgstr "" +msgstr "Ашара (/)" #: commands.src msgctxt "" @@ -109,7 +109,7 @@ "RID_XDIVY_HELP\n" "string.text" msgid "Division (÷)" -msgstr "" +msgstr "Ашара (÷)" #: commands.src msgctxt "" @@ -173,7 +173,7 @@ "RID_XORY_HELP\n" "string.text" msgid "Boolean OR" -msgstr "" +msgstr "Алогикатә МА" #: commands.src msgctxt "" @@ -181,7 +181,7 @@ "RID_XEQY_HELP\n" "string.text" msgid "Is Equal" -msgstr "" +msgstr "Иаҟароуп" #: commands.src msgctxt "" @@ -189,7 +189,7 @@ "RID_XNEQY_HELP\n" "string.text" msgid "Is Not Equal" -msgstr "" +msgstr "Иаҟараӡам" #: commands.src msgctxt "" @@ -197,7 +197,7 @@ "RID_XLTY_HELP\n" "string.text" msgid "Is Less Than" -msgstr "" +msgstr "Еиҵоуп аасҭа" #: commands.src msgctxt "" @@ -205,7 +205,7 @@ "RID_XGTY_HELP\n" "string.text" msgid "Is Greater Than" -msgstr "" +msgstr "Еиҳауп аасҭа" #: commands.src msgctxt "" @@ -213,7 +213,7 @@ "RID_XLEY_HELP\n" "string.text" msgid "Is Less Than Or Equal To" -msgstr "" +msgstr "Еиҵоуп ма иаҟароуп" #: commands.src msgctxt "" @@ -221,7 +221,7 @@ "RID_XGEY_HELP\n" "string.text" msgid "Is Greater Than Or Equal To" -msgstr "" +msgstr "Еиҳауп ма иаҟароуп" #: commands.src msgctxt "" @@ -229,7 +229,7 @@ "RID_XLESLANTY_HELP\n" "string.text" msgid "Is Less Than Or Equal To" -msgstr "" +msgstr "Еиҵоуп ма иаҟароуп" #: commands.src msgctxt "" @@ -237,7 +237,7 @@ "RID_XGESLANTY_HELP\n" "string.text" msgid "Is Greater Than Or Equal To" -msgstr "" +msgstr "Еиҳауп ма иаҟароуп" #: commands.src msgctxt "" @@ -365,7 +365,7 @@ "RID_XOWNSY_HELP\n" "string.text" msgid "Owns" -msgstr "" +msgstr "Иаҵанакуеит" #: commands.src msgctxt "" @@ -389,7 +389,7 @@ "RID_XSETMINUSY_HELP\n" "string.text" msgid "Difference" -msgstr "" +msgstr "Аигырхалыҵ" #: commands.src msgctxt "" @@ -397,7 +397,7 @@ "RID_XSLASHY_HELP\n" "string.text" msgid "Quotient Set" -msgstr "" +msgstr "Арацәа-ашалыҵ" #: commands.src msgctxt "" @@ -477,7 +477,7 @@ "RID_FACTX_HELP\n" "string.text" msgid "Factorial" -msgstr "" +msgstr "Афакториал" #: commands.src msgctxt "" @@ -525,7 +525,7 @@ "RID_LOGX_HELP\n" "string.text" msgid "Logarithm" -msgstr "" +msgstr "Алогарифм" #: commands.src msgctxt "" @@ -533,7 +533,7 @@ "RID_SINX_HELP\n" "string.text" msgid "Sine" -msgstr "" +msgstr "Асинус" #: commands.src msgctxt "" @@ -541,7 +541,7 @@ "RID_COSX_HELP\n" "string.text" msgid "Cosine" -msgstr "" +msgstr "Акосинус" #: commands.src msgctxt "" @@ -549,7 +549,7 @@ "RID_TANX_HELP\n" "string.text" msgid "Tangent" -msgstr "" +msgstr "Атангенс" #: commands.src msgctxt "" @@ -557,7 +557,7 @@ "RID_COTX_HELP\n" "string.text" msgid "Cotangent" -msgstr "" +msgstr "Акотангенс" #: commands.src msgctxt "" @@ -565,7 +565,7 @@ "RID_ARCSINX_HELP\n" "string.text" msgid "Arcsine" -msgstr "" +msgstr "Арксинус" #: commands.src msgctxt "" @@ -573,7 +573,7 @@ "RID_ARCCOSX_HELP\n" "string.text" msgid "Arccosine" -msgstr "" +msgstr "Арккосинус" #: commands.src msgctxt "" @@ -581,7 +581,7 @@ "RID_ARCTANX_HELP\n" "string.text" msgid "Arctangent" -msgstr "" +msgstr "Арктангенс" #: commands.src msgctxt "" @@ -589,7 +589,7 @@ "RID_ARCCOTX_HELP\n" "string.text" msgid "Arccotangent" -msgstr "" +msgstr "Арккотангенс" #: commands.src msgctxt "" @@ -597,7 +597,7 @@ "RID_SINHX_HELP\n" "string.text" msgid "Hyperbolic Sine" -msgstr "" +msgstr "Агиперболатә синус" #: commands.src msgctxt "" @@ -605,7 +605,7 @@ "RID_COSHX_HELP\n" "string.text" msgid "Hyperbolic Cosine" -msgstr "" +msgstr "Агиперболатә косинус" #: commands.src msgctxt "" @@ -613,7 +613,7 @@ "RID_TANHX_HELP\n" "string.text" msgid "Hyperbolic Tangent" -msgstr "" +msgstr "Агиперболатә тангенс" #: commands.src msgctxt "" @@ -621,7 +621,7 @@ "RID_COTHX_HELP\n" "string.text" msgid "Hyperbolic Cotangent" -msgstr "" +msgstr "Агиперболатә котангенс" #: commands.src msgctxt "" @@ -661,7 +661,7 @@ "RID_SUMX_HELP\n" "string.text" msgid "Sum" -msgstr "" +msgstr "Аицҵалыҵ" #: commands.src msgctxt "" @@ -669,7 +669,7 @@ "RID_SUM_FROMX_HELP\n" "string.text" msgid "Sum Subscript Bottom" -msgstr "" +msgstr "Аицҵалыҵ ҵаҟатәи аиндекс" #: commands.src msgctxt "" @@ -677,7 +677,7 @@ "RID_SUM_TOX_HELP\n" "string.text" msgid "Sum Superscript Top" -msgstr "" +msgstr "Аицҵалыҵ хыхьтәи аиндекс" #: commands.src msgctxt "" @@ -685,7 +685,7 @@ "RID_SUM_FROMTOX_HELP\n" "string.text" msgid "Sum Sup/Sub script" -msgstr "" +msgstr "Аицҵалыҵ аиндексқәа" #: commands.src msgctxt "" @@ -693,7 +693,7 @@ "RID_PRODX_HELP\n" "string.text" msgid "Product" -msgstr "" +msgstr "Ашьҭыхлыҵ" #: commands.src msgctxt "" @@ -701,7 +701,7 @@ "RID_PROD_FROMX_HELP\n" "string.text" msgid "Product Subscript Bottom" -msgstr "" +msgstr "Ашьҭыхлыҵ ҵаҟатәи аиндекс" #: commands.src msgctxt "" @@ -709,7 +709,7 @@ "RID_PROD_TOX_HELP\n" "string.text" msgid "Product Superscript Top" -msgstr "" +msgstr "Ашьҭыхлыҵ хыхьтәи аиндекс" #: commands.src msgctxt "" @@ -717,7 +717,7 @@ "RID_PROD_FROMTOX_HELP\n" "string.text" msgid "Product Sup/Sub script" -msgstr "" +msgstr "Ашьҭыхлыҵ аиндексқәа" #: commands.src msgctxt "" @@ -853,7 +853,7 @@ "RID_EXISTS_HELP\n" "string.text" msgid "There Exists" -msgstr "" +msgstr "Иҟоуп" #: commands.src msgctxt "" @@ -861,7 +861,7 @@ "RID_NOTEXISTS_HELP\n" "string.text" msgid "There Not Exists" -msgstr "" +msgstr "Иҟаӡам" #: commands.src msgctxt "" @@ -869,7 +869,7 @@ "RID_FORALL_HELP\n" "string.text" msgid "For all" -msgstr "" +msgstr "Иаарҧштәуп зегьы" #: commands.src msgctxt "" @@ -877,7 +877,7 @@ "RID_INTX_HELP\n" "string.text" msgid "Integral" -msgstr "" +msgstr "Аинтеграл" #: commands.src msgctxt "" @@ -885,7 +885,7 @@ "RID_INT_FROMX_HELP\n" "string.text" msgid "Integral Subscript Bottom" -msgstr "" +msgstr "Аинтеграл ҵаҟатәи аиндекс" #: commands.src msgctxt "" @@ -893,7 +893,7 @@ "RID_INT_TOX_HELP\n" "string.text" msgid "Integral Superscript Top" -msgstr "" +msgstr "Аинтеграл хыхьтәи аиндекс" #: commands.src msgctxt "" @@ -901,7 +901,7 @@ "RID_INT_FROMTOX_HELP\n" "string.text" msgid "Integral Sup/Sub script" -msgstr "" +msgstr "Аинтеграл аиндексқәа" #: commands.src msgctxt "" @@ -973,7 +973,7 @@ "RID_LINTX_HELP\n" "string.text" msgid "Curve Integral" -msgstr "" +msgstr "Аҵәаӷәархәаратә интеграл" #: commands.src msgctxt "" @@ -981,7 +981,7 @@ "RID_LINT_FROMX_HELP\n" "string.text" msgid "Curve Integral Subscript Bottom" -msgstr "" +msgstr "Аҵәаӷәархәаратә интеграл ҵаҟатәи аиндекс" #: commands.src msgctxt "" @@ -989,7 +989,7 @@ "RID_LINT_TOX_HELP\n" "string.text" msgid "Curve Integral Superscript Top" -msgstr "" +msgstr "Аҵәаӷәархәаратә интеграл хыхьтәи аиндекс" #: commands.src msgctxt "" @@ -997,7 +997,7 @@ "RID_LINT_FROMTOX_HELP\n" "string.text" msgid "Curve Integral Sup/Sub script" -msgstr "" +msgstr "Аҵәаӷәархәаратә интеграл аиндексқәа" #: commands.src msgctxt "" @@ -1077,7 +1077,7 @@ "RID_BARX_HELP\n" "string.text" msgid "Line Above" -msgstr "" +msgstr "Аҵәаӷәа хыхьла" #: commands.src msgctxt "" @@ -1109,7 +1109,7 @@ "RID_DOTX_HELP\n" "string.text" msgid "Dot" -msgstr "" +msgstr "Акәаҧ" #: commands.src msgctxt "" @@ -1117,7 +1117,7 @@ "RID_DDOTX_HELP\n" "string.text" msgid "Double Dot" -msgstr "" +msgstr "Аҩкәаҧ" #: commands.src msgctxt "" @@ -1125,7 +1125,7 @@ "RID_DDDOTX_HELP\n" "string.text" msgid "Triple Dot" -msgstr "" +msgstr "Акәаҧрацәа" #: commands.src msgctxt "" @@ -1165,7 +1165,7 @@ "RID_UNDERLINEX_HELP\n" "string.text" msgid "Line Below" -msgstr "" +msgstr "Аҵаӷәа ҵаҟа" #: commands.src msgctxt "" @@ -1181,7 +1181,7 @@ "RID_OVERSTRIKEX_HELP\n" "string.text" msgid "Line Through" -msgstr "" +msgstr "Иҵаӷәоу" #: commands.src msgctxt "" @@ -1197,7 +1197,7 @@ "RID_BOLDX_HELP\n" "string.text" msgid "Bold Font" -msgstr "" +msgstr "Ижәпоу ашрифт" #: commands.src msgctxt "" @@ -1205,7 +1205,7 @@ "RID_ITALX_HELP\n" "string.text" msgid "Italic Font" -msgstr "" +msgstr "Ихынаау ашрифт" #: commands.src msgctxt "" @@ -1213,7 +1213,7 @@ "RID_SIZEXY_HELP\n" "string.text" msgid "Resize" -msgstr "" +msgstr "Иҧсахтәуп ашәагаа" #: commands.src msgctxt "" @@ -1229,7 +1229,7 @@ "RID_COLORX_BLACK_HELP\n" "string.text" msgid "Color Black" -msgstr "" +msgstr "Еиқәаҵәоу аҧштәы" #: commands.src msgctxt "" @@ -1253,7 +1253,7 @@ "RID_COLORX_RED_HELP\n" "string.text" msgid "Color Red" -msgstr "" +msgstr "Иҟаҧшьу аҧштәы" #: commands.src msgctxt "" @@ -1557,7 +1557,7 @@ "RID_LSUBX_HELP\n" "string.text" msgid "Subscript Left" -msgstr "" +msgstr "Ҵаҟатәи аиндекс арымарахь" #: commands.src msgctxt "" @@ -1565,7 +1565,7 @@ "RID_LSUPX_HELP\n" "string.text" msgid "Superscript Left" -msgstr "" +msgstr "Хыхьтәи аиндекс арымарахь" #: commands.src msgctxt "" @@ -1597,7 +1597,7 @@ "RID_BLANK_HELP\n" "string.text" msgid "Blank" -msgstr "" +msgstr "Иҭацәуп" #: commands.src msgctxt "" @@ -1605,7 +1605,7 @@ "RID_NEWLINE_HELP\n" "string.text" msgid "New Line" -msgstr "" +msgstr "Ацәаҳәа ҿыц" #: commands.src msgctxt "" @@ -1789,7 +1789,7 @@ "RID_XDIVIDESY_HELP\n" "string.text" msgid "Divides" -msgstr "" +msgstr "Ишоит" #: commands.src msgctxt "" @@ -1797,7 +1797,7 @@ "RID_XNDIVIDESY_HELP\n" "string.text" msgid "Does Not Divide" -msgstr "" +msgstr "Ишаӡом" #: commands.src msgctxt "" @@ -1837,7 +1837,7 @@ "RID_SETZ_HELP\n" "string.text" msgid "Integers Set" -msgstr "" +msgstr "Ахыҧхьаӡара еибгақәа рырацәа" #: commands.src msgctxt "" @@ -2037,7 +2037,7 @@ "RID_CATEGORY_FUNCTIONS\n" "string.text" msgid "Functions" -msgstr "" +msgstr "Афункциақәа" #: commands.src msgctxt "" @@ -2045,7 +2045,7 @@ "RID_CATEGORY_OPERATORS\n" "string.text" msgid "Operators" -msgstr "" +msgstr "Аоператорқәа" #: commands.src msgctxt "" @@ -2053,7 +2053,7 @@ "RID_CATEGORY_ATTRIBUTES\n" "string.text" msgid "Attributes" -msgstr "" +msgstr "Атрибутқәа" #: commands.src msgctxt "" @@ -2061,7 +2061,7 @@ "RID_CATEGORY_BRACKETS\n" "string.text" msgid "Brackets" -msgstr "" +msgstr "Ахыцқәа" #: commands.src msgctxt "" @@ -2069,7 +2069,7 @@ "RID_CATEGORY_FORMATS\n" "string.text" msgid "Formats" -msgstr "" +msgstr "Аформатқәа" #: commands.src msgctxt "" @@ -2077,7 +2077,7 @@ "RID_CATEGORY_OTHERS\n" "string.text" msgid "Others" -msgstr "" +msgstr "Егьырҭқәа" #: commands.src msgctxt "" @@ -2085,7 +2085,7 @@ "RID_CATEGORY_EXAMPLES\n" "string.text" msgid "Examples" -msgstr "" +msgstr "Аҿырҧштәқәа" #: smres.src msgctxt "" @@ -2093,7 +2093,7 @@ "RID_FONTREGULAR\n" "string.text" msgid "Standard" -msgstr "" +msgstr "Истандарту" #: smres.src msgctxt "" @@ -2101,7 +2101,7 @@ "RID_FONTITALIC\n" "string.text" msgid "Italic" -msgstr "" +msgstr "Акурсив" #: smres.src msgctxt "" @@ -2109,7 +2109,7 @@ "RID_FONTBOLD\n" "string.text" msgid "Bold" -msgstr "" +msgstr "Ажәпа" #: smres.src msgctxt "" @@ -2117,7 +2117,7 @@ "STR_BLACK\n" "string.text" msgid "black" -msgstr "" +msgstr "аиқәаҵәа" #: smres.src msgctxt "" @@ -2245,7 +2245,7 @@ "STR_SIZE\n" "string.text" msgid "size" -msgstr "" +msgstr "акегль" #: smres.src msgctxt "" @@ -2261,7 +2261,7 @@ "STR_ALIGN_LEFT\n" "string.text" msgid "left" -msgstr "" +msgstr "арымарахь" #: smres.src msgctxt "" @@ -2269,7 +2269,7 @@ "STR_ALIGN_CENTER\n" "string.text" msgid "center" -msgstr "" +msgstr "ацентр ала" #: smres.src msgctxt "" @@ -2277,7 +2277,7 @@ "STR_ALIGN_RIGHT\n" "string.text" msgid "right" -msgstr "" +msgstr "арыгьарахь" #: smres.src msgctxt "" @@ -2285,7 +2285,7 @@ "STR_CMDBOXWINDOW\n" "string.text" msgid "Commands" -msgstr "" +msgstr "Акомандақәа" #: smres.src msgctxt "" @@ -2301,7 +2301,7 @@ "STR_STATSTR_READING\n" "string.text" msgid "Loading document..." -msgstr "" +msgstr "Адокумент аҭагалара..." #: smres.src msgctxt "" @@ -2309,7 +2309,7 @@ "STR_STATSTR_WRITING\n" "string.text" msgid "Saving document..." -msgstr "" +msgstr "Адокумент аиқәырхара..." #: smres.src msgctxt "" @@ -2325,7 +2325,7 @@ "RID_ERR_IDENT\n" "string.text" msgid "ERROR : " -msgstr "" +msgstr "АГХА : " #: smres.src msgctxt "" @@ -2333,7 +2333,7 @@ "RID_ERR_UNEXPECTEDCHARACTER\n" "string.text" msgid "Unexpected character" -msgstr "" +msgstr "Ҳаззыҧшымыз асимвол" #: smres.src msgctxt "" @@ -2485,7 +2485,7 @@ "RID_PRINTUIOPT_SIZE\n" "string.text" msgid "Size" -msgstr "" +msgstr "Ашәагаа" #: smres.src msgctxt "" @@ -2493,7 +2493,7 @@ "RID_PRINTUIOPT_ORIGSIZE\n" "string.text" msgid "O~riginal size" -msgstr "" +msgstr "Ахалагаратә шәагаа" #: smres.src msgctxt "" @@ -2501,7 +2501,7 @@ "RID_PRINTUIOPT_FITTOPAGE\n" "string.text" msgid "Fit to ~page" -msgstr "" +msgstr "Адаҟьа ашәагаа иақәыршәаны" #: smres.src msgctxt "" @@ -2509,7 +2509,7 @@ "RID_PRINTUIOPT_SCALING\n" "string.text" msgid "~Scaling" -msgstr "" +msgstr "Амасштаб" #: symbol.src msgctxt "" @@ -2527,7 +2527,7 @@ "Special\n" "itemlist.text" msgid "Special" -msgstr "" +msgstr "Испециалу" #: symbol.src msgctxt "" @@ -2536,7 +2536,7 @@ "alpha\n" "itemlist.text" msgid "alpha" -msgstr "" +msgstr "alpha" #: symbol.src msgctxt "" @@ -2545,7 +2545,7 @@ "ALPHA\n" "itemlist.text" msgid "ALPHA" -msgstr "" +msgstr "ALPHA" #: symbol.src msgctxt "" @@ -2554,7 +2554,7 @@ "beta\n" "itemlist.text" msgid "beta" -msgstr "" +msgstr "beta" #: symbol.src msgctxt "" @@ -2563,7 +2563,7 @@ "BETA\n" "itemlist.text" msgid "BETA" -msgstr "" +msgstr "BETA" #: symbol.src msgctxt "" @@ -2572,7 +2572,7 @@ "gamma\n" "itemlist.text" msgid "gamma" -msgstr "" +msgstr "gamma" #: symbol.src msgctxt "" @@ -2581,7 +2581,7 @@ "GAMMA\n" "itemlist.text" msgid "GAMMA" -msgstr "" +msgstr "GAMMA" #: symbol.src msgctxt "" @@ -2590,7 +2590,7 @@ "delta\n" "itemlist.text" msgid "delta" -msgstr "" +msgstr "delta" #: symbol.src msgctxt "" @@ -2599,7 +2599,7 @@ "DELTA\n" "itemlist.text" msgid "DELTA" -msgstr "" +msgstr "DELTA" #: symbol.src msgctxt "" @@ -2608,7 +2608,7 @@ "epsilon\n" "itemlist.text" msgid "epsilon" -msgstr "" +msgstr "epsilon" #: symbol.src msgctxt "" @@ -2617,7 +2617,7 @@ "EPSILON\n" "itemlist.text" msgid "EPSILON" -msgstr "" +msgstr "EPSILON" #: symbol.src msgctxt "" @@ -2626,7 +2626,7 @@ "zeta\n" "itemlist.text" msgid "zeta" -msgstr "" +msgstr "zeta" #: symbol.src msgctxt "" @@ -2635,7 +2635,7 @@ "ZETA\n" "itemlist.text" msgid "ZETA" -msgstr "" +msgstr "ZETA" #: symbol.src msgctxt "" @@ -2644,7 +2644,7 @@ "eta\n" "itemlist.text" msgid "eta" -msgstr "" +msgstr "eta" #: symbol.src msgctxt "" @@ -2653,7 +2653,7 @@ "ETA\n" "itemlist.text" msgid "ETA" -msgstr "" +msgstr "ETA" #: symbol.src msgctxt "" @@ -2662,7 +2662,7 @@ "theta\n" "itemlist.text" msgid "theta" -msgstr "" +msgstr "theta" #: symbol.src msgctxt "" @@ -2671,7 +2671,7 @@ "THETA\n" "itemlist.text" msgid "THETA" -msgstr "" +msgstr "THETA" #: symbol.src msgctxt "" @@ -2680,7 +2680,7 @@ "iota\n" "itemlist.text" msgid "iota" -msgstr "" +msgstr "iota" #: symbol.src msgctxt "" @@ -2689,7 +2689,7 @@ "IOTA\n" "itemlist.text" msgid "IOTA" -msgstr "" +msgstr "IOTA" #: symbol.src msgctxt "" @@ -2698,7 +2698,7 @@ "kappa\n" "itemlist.text" msgid "kappa" -msgstr "" +msgstr "kappa" #: symbol.src msgctxt "" @@ -2707,7 +2707,7 @@ "KAPPA\n" "itemlist.text" msgid "KAPPA" -msgstr "" +msgstr "KAPPA" #: symbol.src msgctxt "" @@ -2716,7 +2716,7 @@ "lambda\n" "itemlist.text" msgid "lambda" -msgstr "" +msgstr "lambda" #: symbol.src msgctxt "" @@ -2725,7 +2725,7 @@ "LAMBDA\n" "itemlist.text" msgid "LAMBDA" -msgstr "" +msgstr "LAMBDA" #: symbol.src msgctxt "" @@ -2734,7 +2734,7 @@ "mu\n" "itemlist.text" msgid "mu" -msgstr "" +msgstr "mu" #: symbol.src msgctxt "" @@ -2743,7 +2743,7 @@ "MU\n" "itemlist.text" msgid "MU" -msgstr "" +msgstr "MU" #: symbol.src msgctxt "" @@ -2752,7 +2752,7 @@ "nu\n" "itemlist.text" msgid "nu" -msgstr "" +msgstr "nu" #: symbol.src msgctxt "" @@ -2761,7 +2761,7 @@ "NU\n" "itemlist.text" msgid "NU" -msgstr "" +msgstr "NU" #: symbol.src msgctxt "" @@ -2770,7 +2770,7 @@ "xi\n" "itemlist.text" msgid "xi" -msgstr "" +msgstr "xi" #: symbol.src msgctxt "" @@ -2779,7 +2779,7 @@ "XI\n" "itemlist.text" msgid "XI" -msgstr "" +msgstr "XI" #: symbol.src msgctxt "" @@ -2788,7 +2788,7 @@ "omicron\n" "itemlist.text" msgid "omicron" -msgstr "" +msgstr "omicron" #: symbol.src msgctxt "" @@ -2797,7 +2797,7 @@ "OMICRON\n" "itemlist.text" msgid "OMICRON" -msgstr "" +msgstr "OMICRON" #: symbol.src msgctxt "" @@ -2806,7 +2806,7 @@ "pi\n" "itemlist.text" msgid "pi" -msgstr "" +msgstr "pi" #: symbol.src msgctxt "" @@ -2815,7 +2815,7 @@ "PI\n" "itemlist.text" msgid "PI" -msgstr "" +msgstr "PI" #: symbol.src msgctxt "" @@ -2824,7 +2824,7 @@ "rho\n" "itemlist.text" msgid "rho" -msgstr "" +msgstr "rho" #: symbol.src msgctxt "" @@ -2833,7 +2833,7 @@ "RHO\n" "itemlist.text" msgid "RHO" -msgstr "" +msgstr "RHO" #: symbol.src msgctxt "" @@ -2842,7 +2842,7 @@ "sigma\n" "itemlist.text" msgid "sigma" -msgstr "" +msgstr "sigma" #: symbol.src msgctxt "" @@ -2851,7 +2851,7 @@ "SIGMA\n" "itemlist.text" msgid "SIGMA" -msgstr "" +msgstr "SIGMA" #: symbol.src msgctxt "" @@ -2860,7 +2860,7 @@ "tau\n" "itemlist.text" msgid "tau" -msgstr "" +msgstr "tau" #: symbol.src msgctxt "" @@ -2869,7 +2869,7 @@ "TAU\n" "itemlist.text" msgid "TAU" -msgstr "" +msgstr "TAU" #: symbol.src msgctxt "" @@ -2878,7 +2878,7 @@ "upsilon\n" "itemlist.text" msgid "upsilon" -msgstr "" +msgstr "upsilon" #: symbol.src msgctxt "" @@ -2887,7 +2887,7 @@ "UPSILON\n" "itemlist.text" msgid "UPSILON" -msgstr "" +msgstr "UPSILON" #: symbol.src msgctxt "" @@ -2896,7 +2896,7 @@ "phi\n" "itemlist.text" msgid "phi" -msgstr "" +msgstr "phi" #: symbol.src msgctxt "" @@ -2905,7 +2905,7 @@ "PHI\n" "itemlist.text" msgid "PHI" -msgstr "" +msgstr "PHI" #: symbol.src msgctxt "" @@ -2914,7 +2914,7 @@ "chi\n" "itemlist.text" msgid "chi" -msgstr "" +msgstr "chi" #: symbol.src msgctxt "" @@ -2923,7 +2923,7 @@ "CHI\n" "itemlist.text" msgid "CHI" -msgstr "" +msgstr "CHI" #: symbol.src msgctxt "" @@ -2932,7 +2932,7 @@ "psi\n" "itemlist.text" msgid "psi" -msgstr "" +msgstr "psi" #: symbol.src msgctxt "" @@ -2941,7 +2941,7 @@ "PSI\n" "itemlist.text" msgid "PSI" -msgstr "" +msgstr "PSI" #: symbol.src msgctxt "" @@ -2950,7 +2950,7 @@ "omega\n" "itemlist.text" msgid "omega" -msgstr "" +msgstr "omega" #: symbol.src msgctxt "" @@ -2959,7 +2959,7 @@ "OMEGA\n" "itemlist.text" msgid "OMEGA" -msgstr "" +msgstr "OMEGA" #: symbol.src msgctxt "" @@ -2968,7 +2968,7 @@ "varepsilon\n" "itemlist.text" msgid "varepsilon" -msgstr "" +msgstr "varepsilon" #: symbol.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/starmath/uiconfig/smath/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/starmath/uiconfig/smath/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/starmath/uiconfig/smath/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/starmath/uiconfig/smath/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-17 15:41+0200\n" -"PO-Revision-Date: 2017-07-21 19:00+0000\n" +"PO-Revision-Date: 2017-11-18 08:33+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500663653.000000\n" +"X-POOTLE-MTIME: 1510994015.000000\n" #: alignmentdialog.ui msgctxt "" @@ -22,7 +22,7 @@ "title\n" "string.text" msgid "Alignment" -msgstr "" +msgstr "Аиҟаратәра" #: alignmentdialog.ui msgctxt "" @@ -40,7 +40,7 @@ "label\n" "string.text" msgid "_Left" -msgstr "" +msgstr "Арымарахь" #: alignmentdialog.ui msgctxt "" @@ -49,7 +49,7 @@ "label\n" "string.text" msgid "_Centered" -msgstr "" +msgstr "Ацентр ала" #: alignmentdialog.ui msgctxt "" @@ -58,7 +58,7 @@ "label\n" "string.text" msgid "_Right" -msgstr "" +msgstr "Арыӷьарахь" #: alignmentdialog.ui msgctxt "" @@ -67,7 +67,7 @@ "label\n" "string.text" msgid "Horizontal" -msgstr "" +msgstr "Горизонталла" #: catalogdialog.ui msgctxt "" @@ -76,7 +76,7 @@ "title\n" "string.text" msgid "Symbols" -msgstr "" +msgstr "Асимволқәа" #: catalogdialog.ui msgctxt "" @@ -85,7 +85,7 @@ "label\n" "string.text" msgid "_Insert" -msgstr "" +msgstr "Ибжьаргылатәуп" #: catalogdialog.ui msgctxt "" @@ -94,7 +94,7 @@ "label\n" "string.text" msgid "_Edit..." -msgstr "" +msgstr "Иҧсахтәуп..." #: catalogdialog.ui msgctxt "" @@ -112,7 +112,7 @@ "label\n" "string.text" msgid "button" -msgstr "" +msgstr "акнопка" #: catalogdialog.ui msgctxt "" @@ -121,7 +121,7 @@ "label\n" "string.text" msgid "Unknown" -msgstr "" +msgstr "Идырым" #: dockingelements.ui msgctxt "" @@ -130,7 +130,7 @@ "title\n" "string.text" msgid "Elements" -msgstr "" +msgstr "Аелементқәа" #: fontdialog.ui msgctxt "" @@ -166,7 +166,7 @@ "label\n" "string.text" msgid "_Italic" -msgstr "" +msgstr "Акурсив" #: fontdialog.ui msgctxt "" @@ -175,7 +175,7 @@ "label\n" "string.text" msgid "Attributes" -msgstr "" +msgstr "Атрибутқәа" #: fontsizedialog.ui msgctxt "" @@ -202,7 +202,7 @@ "label\n" "string.text" msgid "Base _size:" -msgstr "" +msgstr "Истандарту:" #: fontsizedialog.ui msgctxt "" @@ -211,7 +211,7 @@ "label\n" "string.text" msgid "_Operators:" -msgstr "" +msgstr "Аоператорқәа:" #: fontsizedialog.ui msgctxt "" @@ -229,7 +229,7 @@ "label\n" "string.text" msgid "_Text:" -msgstr "" +msgstr "Атеқст:" #: fontsizedialog.ui msgctxt "" @@ -238,7 +238,7 @@ "label\n" "string.text" msgid "_Functions:" -msgstr "" +msgstr "Афункциақәа:" #: fontsizedialog.ui msgctxt "" @@ -247,7 +247,7 @@ "label\n" "string.text" msgid "_Indexes:" -msgstr "" +msgstr "Аиндексқәа:" #: fontsizedialog.ui msgctxt "" @@ -274,7 +274,7 @@ "label\n" "string.text" msgid "_Modify" -msgstr "" +msgstr "Иҧсахтәуп" #: fonttypedialog.ui msgctxt "" @@ -292,7 +292,7 @@ "label\n" "string.text" msgid "_Variables:" -msgstr "" +msgstr "Аҽеиҭакқәа:" #: fonttypedialog.ui msgctxt "" @@ -301,7 +301,7 @@ "label\n" "string.text" msgid "_Functions:" -msgstr "" +msgstr "Афункциақәа:" #: fonttypedialog.ui msgctxt "" @@ -310,7 +310,7 @@ "label\n" "string.text" msgid "_Numbers:" -msgstr "" +msgstr "Ахыҧхьаӡарақәа:" #: fonttypedialog.ui msgctxt "" @@ -319,7 +319,7 @@ "label\n" "string.text" msgid "_Text:" -msgstr "" +msgstr "Атеқст:" #: fonttypedialog.ui msgctxt "" @@ -328,7 +328,7 @@ "label\n" "string.text" msgid "Formula Fonts" -msgstr "Аформула ашрифтқәа" +msgstr "Аформулақәа ршрифтқәа" #: fonttypedialog.ui msgctxt "" @@ -373,7 +373,7 @@ "label\n" "string.text" msgid "_Variables" -msgstr "" +msgstr "Аҽеиҭакқәа" #: fonttypedialog.ui msgctxt "" @@ -382,7 +382,7 @@ "label\n" "string.text" msgid "_Functions" -msgstr "" +msgstr "Афункциақәа" #: fonttypedialog.ui msgctxt "" @@ -391,7 +391,7 @@ "label\n" "string.text" msgid "_Numbers" -msgstr "" +msgstr "Ахыҧхьаӡарақәа" #: fonttypedialog.ui msgctxt "" @@ -400,7 +400,7 @@ "label\n" "string.text" msgid "_Text" -msgstr "" +msgstr "Атеқст" #: fonttypedialog.ui msgctxt "" @@ -436,7 +436,7 @@ "label\n" "string.text" msgid "Title" -msgstr "" +msgstr "Ахьӡ" #: printeroptions.ui msgctxt "" @@ -472,7 +472,7 @@ "label\n" "string.text" msgid "Original size" -msgstr "" +msgstr "Ахалагаратә шәагаа" #: printeroptions.ui msgctxt "" @@ -490,7 +490,7 @@ "label\n" "string.text" msgid "Scaling:" -msgstr "" +msgstr "Амасштабркра:" #: printeroptions.ui msgctxt "" @@ -499,7 +499,7 @@ "label\n" "string.text" msgid "Size" -msgstr "" +msgstr "Ашәагаа" #: savedefaultsdialog.ui msgctxt "" @@ -571,7 +571,7 @@ "label\n" "string.text" msgid "O_riginal size" -msgstr "" +msgstr "Ахалагаратә шәагаа" #: smathsettings.ui msgctxt "" @@ -589,7 +589,7 @@ "label\n" "string.text" msgid "_Scaling:" -msgstr "" +msgstr "Амасштабркра:" #: smathsettings.ui msgctxt "" @@ -598,7 +598,7 @@ "label\n" "string.text" msgid "Print Format" -msgstr "" +msgstr "Акьыҧхьра аформат" #: smathsettings.ui msgctxt "" @@ -643,7 +643,7 @@ "title\n" "string.text" msgid "Spacing" -msgstr "" +msgstr "Аинтервалқәа" #: spacingdialog.ui msgctxt "" @@ -652,7 +652,7 @@ "label\n" "string.text" msgid "_Category" -msgstr "" +msgstr "Акатегориа" #: spacingdialog.ui msgctxt "" @@ -679,7 +679,7 @@ "label\n" "string.text" msgid "Title" -msgstr "" +msgstr "Ахы" #: spacingdialog.ui msgctxt "" @@ -688,7 +688,7 @@ "label\n" "string.text" msgid "_Spacing:" -msgstr "" +msgstr "Аинтервал:" #: spacingdialog.ui msgctxt "" @@ -697,7 +697,7 @@ "label\n" "string.text" msgid "_Line spacing:" -msgstr "" +msgstr "Ацәаҳәабжьаратәи аинтервал:" #: spacingdialog.ui msgctxt "" @@ -715,7 +715,7 @@ "label\n" "string.text" msgid "Spacing" -msgstr "" +msgstr "Аинтервалқәа" #: spacingdialog.ui msgctxt "" @@ -724,7 +724,7 @@ "label\n" "string.text" msgid "_Superscript:" -msgstr "" +msgstr "Хыхьтәи аиндекс" #: spacingdialog.ui msgctxt "" @@ -733,7 +733,7 @@ "label\n" "string.text" msgid "S_ubscript:" -msgstr "" +msgstr "Ҵаҟатәи аиндекс:" #: spacingdialog.ui msgctxt "" @@ -742,7 +742,7 @@ "label\n" "string.text" msgid "Indexes" -msgstr "" +msgstr "Аиндексқәа" #: spacingdialog.ui msgctxt "" @@ -787,7 +787,7 @@ "label\n" "string.text" msgid "_Weight:" -msgstr "" +msgstr "Аҵәаӷәа ашәпара:" #: spacingdialog.ui msgctxt "" @@ -841,7 +841,7 @@ "label\n" "string.text" msgid "_Spacing:" -msgstr "" +msgstr "Аинтервал:" #: spacingdialog.ui msgctxt "" @@ -859,7 +859,7 @@ "label\n" "string.text" msgid "Brackets" -msgstr "" +msgstr "Ахыцқәа" #: spacingdialog.ui msgctxt "" @@ -868,7 +868,7 @@ "label\n" "string.text" msgid "_Line spacing:" -msgstr "" +msgstr "Ацәаҳәабжьаратәи аинтервал:" #: spacingdialog.ui msgctxt "" @@ -877,7 +877,7 @@ "label\n" "string.text" msgid "_Column spacing:" -msgstr "" +msgstr "Аиҵагылақәа рыбжьара:" #: spacingdialog.ui msgctxt "" @@ -886,7 +886,7 @@ "label\n" "string.text" msgid "Matrix" -msgstr "" +msgstr "Аматрица" #: spacingdialog.ui msgctxt "" @@ -913,7 +913,7 @@ "label\n" "string.text" msgid "Symbols" -msgstr "" +msgstr "Асимволқәа" #: spacingdialog.ui msgctxt "" @@ -931,7 +931,7 @@ "label\n" "string.text" msgid "_Spacing:" -msgstr "" +msgstr "Аинтервал:" #: spacingdialog.ui msgctxt "" @@ -940,7 +940,7 @@ "label\n" "string.text" msgid "Operators" -msgstr "" +msgstr "Аоператорқәа" #: spacingdialog.ui msgctxt "" @@ -949,7 +949,7 @@ "label\n" "string.text" msgid "_Left:" -msgstr "" +msgstr "Арымарахь:" #: spacingdialog.ui msgctxt "" @@ -958,7 +958,7 @@ "label\n" "string.text" msgid "_Right:" -msgstr "" +msgstr "Арыӷьарахь:" #: spacingdialog.ui msgctxt "" @@ -967,7 +967,7 @@ "label\n" "string.text" msgid "_Top:" -msgstr "" +msgstr "Хыхьла:" #: spacingdialog.ui msgctxt "" @@ -976,7 +976,7 @@ "label\n" "string.text" msgid "_Bottom:" -msgstr "" +msgstr "Ҵаҟала: " #: spacingdialog.ui msgctxt "" @@ -994,7 +994,7 @@ "label\n" "string.text" msgid "Spacing" -msgstr "" +msgstr "Аинтервалқәа" #: spacingdialog.ui msgctxt "" @@ -1003,7 +1003,7 @@ "label\n" "string.text" msgid "Indexes" -msgstr "" +msgstr "Аиндексқәа" #: spacingdialog.ui msgctxt "" @@ -1039,7 +1039,7 @@ "label\n" "string.text" msgid "Brackets" -msgstr "" +msgstr "Ахыцқәа" #: spacingdialog.ui msgctxt "" @@ -1048,7 +1048,7 @@ "label\n" "string.text" msgid "Matrices" -msgstr "" +msgstr "Аматрицақәа" #: spacingdialog.ui msgctxt "" @@ -1057,7 +1057,7 @@ "label\n" "string.text" msgid "Symbols" -msgstr "" +msgstr "Асимволқәа" #: spacingdialog.ui msgctxt "" @@ -1066,7 +1066,7 @@ "label\n" "string.text" msgid "Operators" -msgstr "" +msgstr "Аоператорқәа" #: spacingdialog.ui msgctxt "" @@ -1084,7 +1084,7 @@ "title\n" "string.text" msgid "Edit Symbols" -msgstr "" +msgstr "Асимволқәа рыриашара" #: symdefinedialog.ui msgctxt "" @@ -1111,7 +1111,7 @@ "label\n" "string.text" msgid "_Symbol:" -msgstr "" +msgstr "Асимвол:" #: symdefinedialog.ui msgctxt "" @@ -1129,7 +1129,7 @@ "label\n" "string.text" msgid "_Font:" -msgstr "_Ашрифт:" +msgstr "Ашрифт:" #: symdefinedialog.ui msgctxt "" @@ -1138,7 +1138,7 @@ "label\n" "string.text" msgid "S_tyle:" -msgstr "" +msgstr "Астиль:" #: symdefinedialog.ui msgctxt "" @@ -1156,4 +1156,4 @@ "label\n" "string.text" msgid "_Modify" -msgstr "" +msgstr "Иҧсахтәуп" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/svl/source/misc.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/svl/source/misc.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/svl/source/misc.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/svl/source/misc.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n" -"PO-Revision-Date: 2017-07-19 15:38+0000\n" +"PO-Revision-Date: 2017-11-29 10:32+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500478700.000000\n" +"X-POOTLE-MTIME: 1511951526.000000\n" #: mediatyp.src msgctxt "" @@ -21,7 +21,7 @@ "STR_SVT_MIMETYPE_APP_OCTSTREAM\n" "string.text" msgid "Binary file" -msgstr "" +msgstr "Иҩба-шьаҭатәу афаил" #: mediatyp.src msgctxt "" @@ -29,7 +29,7 @@ "STR_SVT_MIMETYPE_APP_PDF\n" "string.text" msgid "PDF file" -msgstr "" +msgstr "PDF афаил" #: mediatyp.src msgctxt "" @@ -37,7 +37,7 @@ "STR_SVT_MIMETYPE_APP_RTF\n" "string.text" msgid "RTF File" -msgstr "" +msgstr "RTF афаил" #: mediatyp.src msgctxt "" @@ -61,7 +61,7 @@ "STR_SVT_MIMETYPE_APP_STARCHART\n" "string.text" msgid "%PRODUCTNAME Chart" -msgstr "" +msgstr "%PRODUCTNAME адиаграмма" #: mediatyp.src msgctxt "" @@ -101,7 +101,7 @@ "STR_SVT_MIMETYPE_APP_ZIP\n" "string.text" msgid "ZIP file" -msgstr "" +msgstr "ZIP иаформату афаил" #: mediatyp.src msgctxt "" @@ -109,7 +109,7 @@ "STR_SVT_MIMETYPE_APP_JAR\n" "string.text" msgid "JAR file" -msgstr "" +msgstr "JAR иаформату афаил" #: mediatyp.src msgctxt "" @@ -117,7 +117,7 @@ "STR_SVT_MIMETYPE_AUDIO_AIFF\n" "string.text" msgid "Audio file" -msgstr "" +msgstr "Аудиофаил" #: mediatyp.src msgctxt "" @@ -125,7 +125,7 @@ "STR_SVT_MIMETYPE_AUDIO_BASIC\n" "string.text" msgid "Audio file" -msgstr "" +msgstr "Аудиофаил" #: mediatyp.src msgctxt "" @@ -133,7 +133,7 @@ "STR_SVT_MIMETYPE_AUDIO_MIDI\n" "string.text" msgid "Audio file" -msgstr "" +msgstr "Аудиофаил" #: mediatyp.src msgctxt "" @@ -141,7 +141,7 @@ "STR_SVT_MIMETYPE_AUDIO_VORBIS\n" "string.text" msgid "Audio file" -msgstr "" +msgstr "Аудиофаил" #: mediatyp.src msgctxt "" @@ -149,7 +149,7 @@ "STR_SVT_MIMETYPE_AUDIO_WAV\n" "string.text" msgid "Audio file" -msgstr "" +msgstr "Аудиофаил" #: mediatyp.src msgctxt "" @@ -157,7 +157,7 @@ "STR_SVT_MIMETYPE_AUDIO_WEBM\n" "string.text" msgid "Audio file" -msgstr "" +msgstr "Аудиофаил" #: mediatyp.src msgctxt "" @@ -205,7 +205,7 @@ "STR_SVT_MIMETYPE_TEXT_PLAIN\n" "string.text" msgid "Text file" -msgstr "" +msgstr "Атқстә фаил" #: mediatyp.src msgctxt "" @@ -221,7 +221,7 @@ "STR_SVT_MIMETYPE_TEXT_VCARD\n" "string.text" msgid "vCard file" -msgstr "" +msgstr "vCard афаил" #: mediatyp.src msgctxt "" @@ -229,7 +229,7 @@ "STR_SVT_MIMETYPE_VIDEO_MSVIDEO\n" "string.text" msgid "Video file" -msgstr "" +msgstr "Авидеофаил" #: mediatyp.src msgctxt "" @@ -237,7 +237,7 @@ "STR_SVT_MIMETYPE_VIDEO_THEORA\n" "string.text" msgid "Video file" -msgstr "" +msgstr "Авидеофаил" #: mediatyp.src msgctxt "" @@ -245,7 +245,7 @@ "STR_SVT_MIMETYPE_VIDEO_VDO\n" "string.text" msgid "Video file" -msgstr "" +msgstr "Авидеофаил" #: mediatyp.src msgctxt "" @@ -253,7 +253,7 @@ "STR_SVT_MIMETYPE_VIDEO_WEBM\n" "string.text" msgid "Video file" -msgstr "" +msgstr "Авидеофаил" #: mediatyp.src msgctxt "" @@ -269,7 +269,7 @@ "STR_SVT_MIMETYPE_X_VRML\n" "string.text" msgid "VRML file" -msgstr "" +msgstr "VRML афаил" #: mediatyp.src msgctxt "" @@ -373,7 +373,7 @@ "STR_SVT_MIMETYPE_MACRO\n" "string.text" msgid "Macro file" -msgstr "" +msgstr "Амакросқәа рфаил" #: mediatyp.src msgctxt "" @@ -429,7 +429,7 @@ "STR_SVT_MIMETYPE_TEXT_VCALENDAR\n" "string.text" msgid "vCalendar-file" -msgstr "" +msgstr "vCalendar афаил" #: mediatyp.src msgctxt "" @@ -437,7 +437,7 @@ "STR_SVT_MIMETYPE_TEXT_ICALENDAR\n" "string.text" msgid "iCalendar-File" -msgstr "" +msgstr "iCalendar афаил" #: mediatyp.src msgctxt "" @@ -445,7 +445,7 @@ "STR_SVT_MIMETYPE_TEXT_XMLICALENDAR\n" "string.text" msgid "XML-iCalendar-File" -msgstr "" +msgstr "XML-iCalendar афаил" #: mediatyp.src msgctxt "" @@ -453,7 +453,7 @@ "STR_SVT_MIMETYPE_TEXT_CDE_CALENDAR_APP\n" "string.text" msgid "CDE-Calendar-File" -msgstr "" +msgstr "CDE-Calendar афаил" #: mediatyp.src msgctxt "" @@ -509,7 +509,7 @@ "STR_SVT_MIMETYPE_APP_SXCALC\n" "string.text" msgid "OpenOffice.org 1.0 Spreadsheet" -msgstr "" +msgstr "OpenOffice.org 1.0 аелектронтә таблица" #: mediatyp.src msgctxt "" @@ -517,7 +517,7 @@ "STR_SVT_MIMETYPE_APP_SXCHART\n" "string.text" msgid "OpenOffice.org 1.0 Chart" -msgstr "" +msgstr "OpenOffice.org 1.0 адиаграмма" #: mediatyp.src msgctxt "" @@ -525,7 +525,7 @@ "STR_SVT_MIMETYPE_APP_SXDRAW\n" "string.text" msgid "OpenOffice.org 1.0 Drawing" -msgstr "" +msgstr "OpenOffice.org 1.0 асахьа" #: mediatyp.src msgctxt "" @@ -541,7 +541,7 @@ "STR_SVT_MIMETYPE_APP_SXWRITER\n" "string.text" msgid "OpenOffice.org 1.0 Text Document" -msgstr "" +msgstr "OpenOffice.org атеқсттә документ" #: mediatyp.src msgctxt "" @@ -549,7 +549,7 @@ "STR_SVT_MIMETYPE_APP_SXIMPRESS\n" "string.text" msgid "OpenOffice.org 1.0 Presentation" -msgstr "" +msgstr "OpenOffice.org 1.0 апрезентациа" #: mediatyp.src msgctxt "" @@ -557,7 +557,7 @@ "STR_SVT_MIMETYPE_APP_SXGLOBAL\n" "string.text" msgid "OpenOffice.org 1.0 Master Document" -msgstr "" +msgstr "OpenOffice.org 1.0 еилоу адокумент" #: mediatyp.src msgctxt "" @@ -565,4 +565,4 @@ "STR_SVT_MIMETYPE_APP_SXIPACKED\n" "string.text" msgid "OpenOffice.org 1.0 Presentation (packed)" -msgstr "" +msgstr "OpenOffice.org 1.0 апрезентациа ашаблон" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/svtools/source/contnr.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/svtools/source/contnr.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/svtools/source/contnr.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/svtools/source/contnr.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n" -"PO-Revision-Date: 2015-04-23 18:29+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-19 19:54+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1429813762.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511121282.000000\n" #: fileview.src msgctxt "" @@ -29,7 +29,7 @@ "STR_SVT_FILEVIEW_COLUMN_SIZE\n" "string.text" msgid "Size" -msgstr "" +msgstr "Ашәагаа" #: fileview.src msgctxt "" @@ -109,7 +109,7 @@ "STR_SVT_ACC_DESC_FILE\n" "string.text" msgid "File" -msgstr "" +msgstr "Афаил" #: svcontnr.src msgctxt "" @@ -198,7 +198,7 @@ "Printed on\n" "itemlist.text" msgid "Printed on" -msgstr "" +msgstr "Акьыҧхьра арыцхә" #: templwin.src msgctxt "" @@ -207,7 +207,7 @@ "Printed by\n" "itemlist.text" msgid "Printed by" -msgstr "" +msgstr "Икьыҧхьуп" #: templwin.src msgctxt "" @@ -225,4 +225,4 @@ "Size\n" "itemlist.text" msgid "Size" -msgstr "" +msgstr "Ашәагаа" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/svtools/source/control.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/svtools/source/control.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/svtools/source/control.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/svtools/source/control.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-06-20 13:55+0200\n" -"PO-Revision-Date: 2015-06-25 22:37+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-29 10:32+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1435271858.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511951559.000000\n" #: calendar.src msgctxt "" @@ -69,7 +69,7 @@ "STR_SVT_COLLATE_CHARSET\n" "string.text" msgid "Character set" -msgstr "" +msgstr "Акодркра" #: ctrlbox.src msgctxt "" @@ -429,7 +429,7 @@ "STR_FILECTRL_BUTTONTEXT\n" "string.text" msgid "Browse..." -msgstr "" +msgstr "Аҭыҧхәаҧшра..." #: filectrl.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/svtools/source/dialogs.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/svtools/source/dialogs.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/svtools/source/dialogs.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/svtools/source/dialogs.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-04-25 13:52+0200\n" -"PO-Revision-Date: 2017-09-18 11:10+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-12-12 10:38+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1505733040.000000\n" +"X-POOTLE-MTIME: 1513075121.000000\n" #: addresstemplate.src #, fuzzy @@ -246,7 +246,7 @@ "STR_FIELD_MOBILE\n" "string.text" msgid "Mobile" -msgstr "" +msgstr "Амобилтә" #: addresstemplate.src msgctxt "" @@ -278,7 +278,7 @@ "STR_FILEDLG_OPEN\n" "string.text" msgid "Open" -msgstr "" +msgstr "Иаарттәуп" #: filedlg2.src msgctxt "" @@ -286,7 +286,7 @@ "STR_FILEDLG_TYPE\n" "string.text" msgid "File ~type" -msgstr "" +msgstr "Афаил атип" #: filedlg2.src msgctxt "" @@ -294,7 +294,7 @@ "STR_FILEDLG_SAVE\n" "string.text" msgid "Save" -msgstr "Иеиқәырхатәуп" +msgstr "Еиқәырхатәуп" #: filedlg2.src msgctxt "" @@ -310,7 +310,7 @@ "STR_FORMAT_STRING\n" "string.text" msgid "Unformatted text" -msgstr "" +msgstr "Атеқст амацара" #: formats.src msgctxt "" @@ -326,7 +326,7 @@ "STR_FORMAT_GDIMETAFILE\n" "string.text" msgid "GDI metafile" -msgstr "" +msgstr "GDI аметафаил" #: formats.src msgctxt "" @@ -334,7 +334,7 @@ "STR_FORMAT_RTF\n" "string.text" msgid "Formatted text [RTF]" -msgstr "" +msgstr "Иформатрку атеқст [RTF]" #: formats.src msgctxt "" @@ -342,7 +342,7 @@ "STR_FORMAT_ID_RICHTEXT\n" "string.text" msgid "Formatted text [Richtext]" -msgstr "" +msgstr "Иформатрку атеқст [RTF] " #: formats.src msgctxt "" @@ -350,7 +350,7 @@ "STR_FORMAT_ID_DRAWING\n" "string.text" msgid "Drawing format" -msgstr "" +msgstr "Аҭыхра аформат" #: formats.src msgctxt "" @@ -374,7 +374,7 @@ "STR_FORMAT_ID_SOLK\n" "string.text" msgid "SOLK (%PRODUCTNAME Link)" -msgstr "" +msgstr "SOLK (Азхьарҧш %PRODUCTNAME)" #: formats.src msgctxt "" @@ -390,7 +390,7 @@ "STR_FORMAT_ID_STARSERVER\n" "string.text" msgid "Star server format" -msgstr "" +msgstr "Асервер Star аформат" #: formats.src msgctxt "" @@ -398,7 +398,7 @@ "STR_FORMAT_ID_STAROBJECT\n" "string.text" msgid "Star object format" -msgstr "" +msgstr "Аобиеқт Star аформат" #: formats.src msgctxt "" @@ -422,7 +422,7 @@ "STR_FORMAT_ID_STARWRITER_30\n" "string.text" msgid "StarWriter 3.0 object" -msgstr "" +msgstr "StarWriter 3.0 аобиеқт" #: formats.src msgctxt "" @@ -430,7 +430,7 @@ "STR_FORMAT_ID_STARWRITER_40\n" "string.text" msgid "StarWriter 4.0 object" -msgstr "" +msgstr "StarWriter 4.0 аобиеқт" #: formats.src msgctxt "" @@ -438,7 +438,7 @@ "STR_FORMAT_ID_STARWRITER_50\n" "string.text" msgid "StarWriter 5.0 object" -msgstr "" +msgstr "StarWriter 5.0 аобиеқт" #: formats.src msgctxt "" @@ -446,7 +446,7 @@ "STR_FORMAT_ID_STARWRITERWEB_40\n" "string.text" msgid "StarWriter/Web 4.0 object" -msgstr "" +msgstr "StarWriter/Web 4.0 аобиеқт" #: formats.src msgctxt "" @@ -454,7 +454,7 @@ "STR_FORMAT_ID_STARWRITERWEB_50\n" "string.text" msgid "StarWriter/Web 5.0 object" -msgstr "" +msgstr "StarWriter/Web 5.0 аобиеқт" #: formats.src msgctxt "" @@ -462,7 +462,7 @@ "STR_FORMAT_ID_STARWRITERGLOB_40\n" "string.text" msgid "StarWriter/Master 4.0 object" -msgstr "" +msgstr "StarWriter/Master 4.0 аобиеқт" #: formats.src msgctxt "" @@ -470,7 +470,7 @@ "STR_FORMAT_ID_STARWRITERGLOB_50\n" "string.text" msgid "StarWriter/Master 5.0 object" -msgstr "" +msgstr "StarWriter/Master 5.0 аобиеқт" #: formats.src msgctxt "" @@ -478,7 +478,7 @@ "STR_FORMAT_ID_STARDRAW\n" "string.text" msgid "StarDraw object" -msgstr "" +msgstr "StarDraw аобиеқт" #: formats.src msgctxt "" @@ -486,7 +486,7 @@ "STR_FORMAT_ID_STARDRAW_40\n" "string.text" msgid "StarDraw 4.0 object" -msgstr "" +msgstr "StarDraw 4.0 аобиеқт" #: formats.src msgctxt "" @@ -494,7 +494,7 @@ "STR_FORMAT_ID_STARIMPRESS_50\n" "string.text" msgid "StarImpress 5.0 object" -msgstr "" +msgstr "StarImpress 5.0 аобиеқт" #: formats.src msgctxt "" @@ -502,7 +502,7 @@ "STR_FORMAT_ID_STARDRAW_50\n" "string.text" msgid "StarDraw 5.0 object" -msgstr "" +msgstr "StarDraw 5.0 аобиеқт" #: formats.src msgctxt "" @@ -510,7 +510,7 @@ "STR_FORMAT_ID_STARCALC\n" "string.text" msgid "StarCalc object" -msgstr "" +msgstr "StarCalc аобиеқт" #: formats.src msgctxt "" @@ -518,7 +518,7 @@ "STR_FORMAT_ID_STARCALC_40\n" "string.text" msgid "StarCalc 4.0 object" -msgstr "" +msgstr "StarCalc 4.0 аобиеқт" #: formats.src msgctxt "" @@ -526,7 +526,7 @@ "STR_FORMAT_ID_STARCALC_50\n" "string.text" msgid "StarCalc 5.0 object" -msgstr "" +msgstr "StarCalc 5.0 аобиеқт" #: formats.src msgctxt "" @@ -534,7 +534,7 @@ "STR_FORMAT_ID_STARCHART\n" "string.text" msgid "StarChart object" -msgstr "" +msgstr "StarChart аобиеқт" #: formats.src msgctxt "" @@ -542,7 +542,7 @@ "STR_FORMAT_ID_STARCHART_40\n" "string.text" msgid "StarChart 4.0 object" -msgstr "" +msgstr "StarChart 4.0 аобиеқт" #: formats.src msgctxt "" @@ -550,7 +550,7 @@ "STR_FORMAT_ID_STARCHART_50\n" "string.text" msgid "StarChart 5.0 object" -msgstr "" +msgstr "StarChart 5.0 аобиеқт" #: formats.src msgctxt "" @@ -558,7 +558,7 @@ "STR_FORMAT_ID_STARIMAGE\n" "string.text" msgid "StarImage object" -msgstr "" +msgstr "StarImage аобиеқт" #: formats.src msgctxt "" @@ -566,7 +566,7 @@ "STR_FORMAT_ID_STARIMAGE_40\n" "string.text" msgid "StarImage 4.0 object" -msgstr "" +msgstr "StarImage 4.0 аобиеқт" #: formats.src msgctxt "" @@ -574,7 +574,7 @@ "STR_FORMAT_ID_STARIMAGE_50\n" "string.text" msgid "StarImage 5.0 object" -msgstr "" +msgstr "StarImage 5.0 аобиеқт" #: formats.src msgctxt "" @@ -582,7 +582,7 @@ "STR_FORMAT_ID_STARMATH\n" "string.text" msgid "StarMath object" -msgstr "" +msgstr "StarMath аобиеқт" #: formats.src msgctxt "" @@ -590,7 +590,7 @@ "STR_FORMAT_ID_STARMATH_40\n" "string.text" msgid "StarMath 4.0 object" -msgstr "" +msgstr "StarMath 4.0 аобиеқт" #: formats.src msgctxt "" @@ -598,7 +598,7 @@ "STR_FORMAT_ID_STARMATH_50\n" "string.text" msgid "StarMath 5.0 object" -msgstr "" +msgstr "StarMath 5.0 аобиеқт" #: formats.src msgctxt "" @@ -606,7 +606,7 @@ "STR_FORMAT_ID_STAROBJECT_PAINTDOC\n" "string.text" msgid "StarObject Paint object" -msgstr "" +msgstr "StarObject Paint аобиеқт" #: formats.src msgctxt "" @@ -622,7 +622,7 @@ "STR_FORMAT_ID_HTML_SIMPLE\n" "string.text" msgid "HTML format" -msgstr "" +msgstr "HTML-аформат" #: formats.src msgctxt "" @@ -654,7 +654,7 @@ "STR_FORMAT_ID_LINK\n" "string.text" msgid "DDE link" -msgstr "" +msgstr "Аимадара DDE ала" #: formats.src msgctxt "" @@ -670,7 +670,7 @@ "STR_FORMAT_ID_MSWORD_DOC\n" "string.text" msgid "Microsoft Word object" -msgstr "" +msgstr "Microsoft Word аобиеқт" #: formats.src msgctxt "" @@ -678,7 +678,7 @@ "STR_FORMAT_ID_STAR_FRAMESET_DOC\n" "string.text" msgid "StarFrameSet object" -msgstr "" +msgstr "StarFrameSet аобиеқт" #: formats.src msgctxt "" @@ -686,7 +686,7 @@ "STR_FORMAT_ID_OFFICE_DOC\n" "string.text" msgid "Office document object" -msgstr "" +msgstr "Office адокумент аобиеқт" #: formats.src msgctxt "" @@ -710,7 +710,7 @@ "STR_FORMAT_ID_STARCHARTDOCUMENT_50\n" "string.text" msgid "StarChart 5.0 object" -msgstr "" +msgstr "StarChart 5.0 аобиеқт" #: formats.src msgctxt "" @@ -718,7 +718,7 @@ "STR_FORMAT_ID_GRAPHOBJ\n" "string.text" msgid "Graphic object" -msgstr "" +msgstr "Аграфикатә обиеқт" #: formats.src msgctxt "" @@ -726,7 +726,7 @@ "STR_FORMAT_ID_STARWRITER_60\n" "string.text" msgid "OpenOffice.org 1.0 Writer object" -msgstr "" +msgstr "OpenOffice.org 1.0 Writer аобиеқт" #: formats.src msgctxt "" @@ -734,7 +734,7 @@ "STR_FORMAT_ID_STARWRITERWEB_60\n" "string.text" msgid "OpenOffice.org 1.0 Writer/Web object" -msgstr "" +msgstr "OpenOffice.org 1.0 Writer аобиеқт" #: formats.src msgctxt "" @@ -742,7 +742,7 @@ "STR_FORMAT_ID_STARWRITERGLOB_60\n" "string.text" msgid "OpenOffice.org 1.0 Writer/Master object" -msgstr "" +msgstr "OpenOffice.org 1.0 Writer/Еилоу адокумент " #: formats.src msgctxt "" @@ -750,7 +750,7 @@ "STR_FORMAT_ID_STARDRAW_60\n" "string.text" msgid "OpenOffice.org 1.0 Draw object" -msgstr "" +msgstr "OpenOffice.org 1.0 Draw аобиеқт" #: formats.src msgctxt "" @@ -758,7 +758,7 @@ "STR_FORMAT_ID_STARIMPRESS_60\n" "string.text" msgid "OpenOffice.org 1.0 Impress object" -msgstr "" +msgstr "OpenOffice.org 1.0 Impress аобиеқт" #: formats.src msgctxt "" @@ -766,7 +766,7 @@ "STR_FORMAT_ID_STARCALC_60\n" "string.text" msgid "OpenOffice.org 1.0 Calc object" -msgstr "" +msgstr "OpenOffice.org 1.0 Calc аобиеқт" #: formats.src msgctxt "" @@ -774,7 +774,7 @@ "STR_FORMAT_ID_STARCHART_60\n" "string.text" msgid "OpenOffice.org 1.0 Chart object" -msgstr "" +msgstr "OpenOffice.org 1.0 Chart аобиеқт" #: formats.src msgctxt "" @@ -782,7 +782,7 @@ "STR_FORMAT_ID_STARMATH_60\n" "string.text" msgid "OpenOffice.org 1.0 Math object" -msgstr "" +msgstr "OpenOffice.org 1.0 Math аобиеқт" #: formats.src msgctxt "" @@ -790,7 +790,7 @@ "STR_FORMAT_ID_WMF\n" "string.text" msgid "Windows metafile" -msgstr "" +msgstr "Windows аметафаил" #: formats.src msgctxt "" @@ -806,7 +806,7 @@ "STR_FORMAT_ID_DBACCESS_TABLE\n" "string.text" msgid "Data source table" -msgstr "" +msgstr "Ахалагаратә дырқәа ртаблица" #: formats.src msgctxt "" @@ -822,7 +822,7 @@ "STR_FORMAT_ID_DIALOG_60\n" "string.text" msgid "OpenOffice.org 1.0 dialog" -msgstr "" +msgstr "OpenOffice.org 1.0 адиалог" #: formats.src msgctxt "" @@ -830,7 +830,7 @@ "STR_FORMAT_ID_FILEGRPDESCRIPTOR\n" "string.text" msgid "Link" -msgstr "" +msgstr "Азхьарҧш" #: formats.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/svtools/source/java.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/svtools/source/java.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/svtools/source/java.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/svtools/source/java.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-02 09:52+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-27 17:26+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1480672353.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511803574.000000\n" #: javaerror.src msgctxt "" @@ -77,7 +77,7 @@ "STR_WARNING_INVALIDJAVASETTINGS_TITLE\n" "string.text" msgid "Select JRE" -msgstr "" +msgstr "Иалхтәуп JRE" #: javaerror.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/svtools/source/misc.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/svtools/source/misc.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/svtools/source/misc.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/svtools/source/misc.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-20 13:55+0200\n" -"PO-Revision-Date: 2017-07-19 15:38+0000\n" +"PO-Revision-Date: 2017-12-12 10:39+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500478735.000000\n" +"X-POOTLE-MTIME: 1513075178.000000\n" #: imagemgr.src msgctxt "" @@ -61,7 +61,7 @@ "STR_DESCRIPTION_DATABASE_TABLE\n" "string.text" msgid "Database table" -msgstr "" +msgstr "Адырқәа рбаза атаблица" #: imagemgr.src msgctxt "" @@ -69,7 +69,7 @@ "STR_DESCRIPTION_SYSFILE\n" "string.text" msgid "System file" -msgstr "" +msgstr "Асистематә фаил" #: imagemgr.src msgctxt "" @@ -85,7 +85,7 @@ "STR_DESCRIPTION_HELP_DOC\n" "string.text" msgid "Help file" -msgstr "" +msgstr "Аилыркаага афаил" #: imagemgr.src msgctxt "" @@ -101,7 +101,7 @@ "STR_DESCRIPTION_ARCHIVFILE\n" "string.text" msgid "Archive file" -msgstr "" +msgstr "Архив афаил" #: imagemgr.src msgctxt "" @@ -109,7 +109,7 @@ "STR_DESCRIPTION_LOGFILE\n" "string.text" msgid "Log file" -msgstr "" +msgstr "Ажурнал" #: imagemgr.src msgctxt "" @@ -141,7 +141,7 @@ "STR_DESCRIPTION_TEXTFILE\n" "string.text" msgid "Text file" -msgstr "" +msgstr "Атеқсттә фаил" #: imagemgr.src msgctxt "" @@ -149,7 +149,7 @@ "STR_DESCRIPTION_LINK\n" "string.text" msgid "Link" -msgstr "" +msgstr "Азхьарҧш" #: imagemgr.src msgctxt "" @@ -181,7 +181,7 @@ "STR_DESCRIPTION_BATCHFILE\n" "string.text" msgid "Batch file" -msgstr "" +msgstr "Апакеттә фаил" #: imagemgr.src msgctxt "" @@ -189,7 +189,7 @@ "STR_DESCRIPTION_FILE\n" "string.text" msgid "File" -msgstr "" +msgstr "Афаил" #: imagemgr.src msgctxt "" @@ -269,7 +269,7 @@ "STR_DESCRIPTION_CALC_TEMPLATE\n" "string.text" msgid "OpenOffice.org 1.0 Spreadsheet Template" -msgstr "" +msgstr "OpenOffice.org 1.0 аелектронтә таблица ашаблон" #: imagemgr.src msgctxt "" @@ -277,7 +277,7 @@ "STR_DESCRIPTION_DRAW_TEMPLATE\n" "string.text" msgid "OpenOffice.org 1.0 Drawing Template" -msgstr "" +msgstr "OpenOffice.org 1.0 асахьа ашаблон" #: imagemgr.src msgctxt "" @@ -285,7 +285,7 @@ "STR_DESCRIPTION_IMPRESS_TEMPLATE\n" "string.text" msgid "OpenOffice.org 1.0 Presentation Template" -msgstr "" +msgstr "OpenOffice.org 1.0 апрезентациа ашаблон" #: imagemgr.src msgctxt "" @@ -293,7 +293,7 @@ "STR_DESCRIPTION_WRITER_TEMPLATE\n" "string.text" msgid "OpenOffice.org 1.0 Text Document Template" -msgstr "" +msgstr "OpenOffice.org 1.0 атеқсттә документ ашаблон" #: imagemgr.src msgctxt "" @@ -365,7 +365,7 @@ "STR_DESCRIPTION_SXCHART_DOC\n" "string.text" msgid "OpenOffice.org 1.0 Chart" -msgstr "" +msgstr "OpenOffice.org 1.0 адиаграмма" #: imagemgr.src msgctxt "" @@ -373,7 +373,7 @@ "STR_DESCRIPTION_SXDRAW_DOC\n" "string.text" msgid "OpenOffice.org 1.0 Drawing" -msgstr "" +msgstr "OpenOffice.org 1.0 асахьа" #: imagemgr.src msgctxt "" @@ -381,7 +381,7 @@ "STR_DESCRIPTION_SXCALC_DOC\n" "string.text" msgid "OpenOffice.org 1.0 Spreadsheet" -msgstr "" +msgstr "OpenOffice.org 1.0 аелектронтә таблица" #: imagemgr.src msgctxt "" @@ -389,7 +389,7 @@ "STR_DESCRIPTION_SXIMPRESS_DOC\n" "string.text" msgid "OpenOffice.org 1.0 Presentation" -msgstr "" +msgstr "OpenOffice.org 1.0 апрезентациа" #: imagemgr.src msgctxt "" @@ -397,7 +397,7 @@ "STR_DESCRIPTION_SXWRITER_DOC\n" "string.text" msgid "OpenOffice.org 1.0 Text Document" -msgstr "" +msgstr "OpenOffice.org 1.0 атеқсттә фаил" #: imagemgr.src msgctxt "" @@ -405,7 +405,7 @@ "STR_DESCRIPTION_SXGLOBAL_DOC\n" "string.text" msgid "OpenOffice.org 1.0 Master Document" -msgstr "" +msgstr "OpenOffice.org 1.0 еилоу адокумент" #: imagemgr.src msgctxt "" @@ -421,7 +421,7 @@ "STR_DESCRIPTION_OO_DATABASE_DOC\n" "string.text" msgid "OpenDocument Database" -msgstr "" +msgstr "OpenDocument адырқәа рбаза" #: imagemgr.src msgctxt "" @@ -429,7 +429,7 @@ "STR_DESCRIPTION_OO_DRAW_DOC\n" "string.text" msgid "OpenDocument Drawing" -msgstr "" +msgstr "OpenDocument асахьа" #: imagemgr.src msgctxt "" @@ -445,7 +445,7 @@ "STR_DESCRIPTION_OO_GLOBAL_DOC\n" "string.text" msgid "OpenDocument Master Document" -msgstr "" +msgstr "OpenDocument еилоу адокумент" #: imagemgr.src msgctxt "" @@ -453,7 +453,7 @@ "STR_DESCRIPTION_OO_IMPRESS_DOC\n" "string.text" msgid "OpenDocument Presentation" -msgstr "" +msgstr "OpenDocument апрезентациа" #: imagemgr.src msgctxt "" @@ -461,7 +461,7 @@ "STR_DESCRIPTION_OO_CALC_DOC\n" "string.text" msgid "OpenDocument Spreadsheet" -msgstr "" +msgstr "OpenDocumentа аелектронтә таблица" #: imagemgr.src msgctxt "" @@ -469,7 +469,7 @@ "STR_DESCRIPTION_OO_WRITER_DOC\n" "string.text" msgid "OpenDocument Text" -msgstr "" +msgstr "OpenDocument атеқсттә документ" #: imagemgr.src msgctxt "" @@ -477,7 +477,7 @@ "STR_DESCRIPTION_OO_CALC_TEMPLATE\n" "string.text" msgid "OpenDocument Spreadsheet Template" -msgstr "" +msgstr "OpenDocument аелектронтә таблица ашаблон" #: imagemgr.src msgctxt "" @@ -485,7 +485,7 @@ "STR_DESCRIPTION_OO_DRAW_TEMPLATE\n" "string.text" msgid "OpenDocument Drawing Template" -msgstr "" +msgstr "OpenDocument асахьа ашаблон" #: imagemgr.src msgctxt "" @@ -493,7 +493,7 @@ "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE\n" "string.text" msgid "OpenDocument Presentation Template" -msgstr "" +msgstr "OpenDocument апрезентациа ашаблон" #: imagemgr.src msgctxt "" @@ -501,7 +501,7 @@ "STR_DESCRIPTION_OO_WRITER_TEMPLATE\n" "string.text" msgid "OpenDocument Text Template" -msgstr "" +msgstr "OpenDocument атеқсттә документ ашаблон" #: imagemgr.src msgctxt "" @@ -3991,7 +3991,7 @@ "STR_SVT_ESTIMATED_SIZE_VEC\n" "string.text" msgid "The file size is %1 KB." -msgstr "" +msgstr "Афаил ашәагаа %1 KB." #: svtools.src msgctxt "" @@ -4031,7 +4031,7 @@ "STR_SVT_PRNDLG_PENDING\n" "string.text" msgid "Pending deletion" -msgstr "" +msgstr "Аныхра ахырҧоуп" #: svtools.src msgctxt "" @@ -4079,7 +4079,7 @@ "STR_SVT_PRNDLG_PRINTING\n" "string.text" msgid "Printing" -msgstr "" +msgstr "Акьыҧхьра" #: svtools.src msgctxt "" @@ -4135,7 +4135,7 @@ "STR_SVT_PRNDLG_PAPER_PROBLEM\n" "string.text" msgid "Paper problem" -msgstr "" +msgstr "Ақьаад апроблема" #: svtools.src msgctxt "" @@ -4175,7 +4175,7 @@ "STR_SVT_PRNDLG_PAGE_PUNT\n" "string.text" msgid "Delete Page" -msgstr "" +msgstr "Ианыхтәуп адаҟьа" #: svtools.src msgctxt "" @@ -4231,7 +4231,7 @@ "STR_UNDO\n" "string.text" msgid "Undo: " -msgstr "" +msgstr "Иаҟәыхтәуп: " #: undo.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/svtools/uiconfig/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/svtools/uiconfig/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/svtools/uiconfig/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/svtools/uiconfig/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n" -"PO-Revision-Date: 2017-07-19 15:59+0000\n" +"PO-Revision-Date: 2017-12-12 10:39+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500479954.000000\n" +"X-POOTLE-MTIME: 1513075183.000000\n" #: GraphicExportOptionsDialog.ui msgctxt "" @@ -85,7 +85,7 @@ "label\n" "string.text" msgid "Size" -msgstr "" +msgstr "Ашәагаа" #: addresstemplatedialog.ui msgctxt "" @@ -112,7 +112,7 @@ "label\n" "string.text" msgid "Table:" -msgstr "" +msgstr "Атаблица:" #: addresstemplatedialog.ui msgctxt "" @@ -148,7 +148,7 @@ "label\n" "string.text" msgid "_Delete" -msgstr "" +msgstr "Ианыхтәуп" #: fileviewmenu.ui msgctxt "" @@ -202,7 +202,7 @@ "label\n" "string.text" msgid "Size" -msgstr "" +msgstr "Ашәагаа" #: graphicexport.ui msgctxt "" @@ -283,7 +283,7 @@ "label\n" "string.text" msgid "Drawing Objects" -msgstr "" +msgstr "Асахьақәа" #: graphicexport.ui msgctxt "" @@ -364,7 +364,7 @@ "label\n" "string.text" msgid "Color Format" -msgstr "" +msgstr "Аҧштәы аформат" #: graphicexport.ui msgctxt "" @@ -427,7 +427,7 @@ "label\n" "string.text" msgid "Information" -msgstr "" +msgstr "Аинформациа" #: graphicexport.ui msgctxt "" @@ -526,7 +526,7 @@ "title\n" "string.text" msgid "File Services" -msgstr "" +msgstr "Афаилтә маҵзурақәа" #: placeedit.ui msgctxt "" @@ -670,7 +670,7 @@ "title\n" "string.text" msgid "Printer Setup" -msgstr "" +msgstr "Апринтер архиарақәа" #: printersetupdialog.ui msgctxt "" @@ -742,7 +742,7 @@ "label\n" "string.text" msgid "Printer" -msgstr "" +msgstr "Апринтер" #: querydeletedialog.ui msgctxt "" @@ -751,7 +751,7 @@ "title\n" "string.text" msgid "Confirm Delete" -msgstr "" +msgstr "Ишьақәырӷәӷәатәуп аныхра" #: querydeletedialog.ui msgctxt "" @@ -760,7 +760,7 @@ "text\n" "string.text" msgid "Are you sure you want to delete the selected data?" -msgstr "" +msgstr "Ианыхтәума иалху адырқәа?" #: querydeletedialog.ui msgctxt "" @@ -778,7 +778,7 @@ "label\n" "string.text" msgid "_Delete" -msgstr "" +msgstr "_Ианыхтәуп" #: querydeletedialog.ui msgctxt "" @@ -787,7 +787,7 @@ "label\n" "string.text" msgid "Delete _All" -msgstr "" +msgstr "Ианыхтәуп_зегьы" #: querydeletedialog.ui msgctxt "" @@ -796,7 +796,7 @@ "label\n" "string.text" msgid "Do _Not Delete" -msgstr "" +msgstr "Ианыхтәӡам" #: restartdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/svx/source/accessibility.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/svx/source/accessibility.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/svx/source/accessibility.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/svx/source/accessibility.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2014-11-02 19:11+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-29 09:19+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1414955499.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511947146.000000\n" #: accessibility.src msgctxt "" @@ -29,7 +29,7 @@ "RID_SVXSTR_A11Y_FILLSTYLE_NONE\n" "string.text" msgid "None" -msgstr "" +msgstr "Ада" #: accessibility.src msgctxt "" @@ -53,7 +53,7 @@ "RID_SVXSTR_A11Y_FILLSTYLE_GRADIENT\n" "string.text" msgid "Gradient" -msgstr "" +msgstr "Аградиент" #: accessibility.src msgctxt "" @@ -61,7 +61,7 @@ "RID_SVXSTR_A11Y_FILLSTYLE_BITMAP\n" "string.text" msgid "Bitmap" -msgstr "" +msgstr "Арастр" #: accessibility.src msgctxt "" @@ -77,7 +77,7 @@ "RID_SVXSTR_A11Y_STYLE\n" "string.text" msgid "Style" -msgstr "" +msgstr "Астиль" #: accessibility.src msgctxt "" @@ -85,7 +85,7 @@ "RID_SVXSTR_A11Y_AND\n" "string.text" msgid "and" -msgstr "" +msgstr "и" #: accessibility.src msgctxt "" @@ -101,7 +101,7 @@ "RID_SVXSTR_RECTCTL_ACC_CORN_DESCR\n" "string.text" msgid "Selection of a corner point." -msgstr "" +msgstr "Акәакьтә кәаҧ алхра" #: accessibility.src msgctxt "" @@ -117,7 +117,7 @@ "RID_SVXSTR_RECTCTL_ACC_ANGL_DESCR\n" "string.text" msgid "Selection of a major angle." -msgstr "" +msgstr "Ихадоу акәакь алхра." #: accessibility.src msgctxt "" @@ -157,7 +157,7 @@ "RID_SVXSTR_RECTCTL_ACC_CHLD_MM\n" "string.text" msgid "Center" -msgstr "" +msgstr "Ацентр ала" #: accessibility.src msgctxt "" @@ -205,7 +205,7 @@ "RID_SVXSTR_RECTCTL_ACC_CHLD_A045\n" "string.text" msgid "45 degrees" -msgstr "" +msgstr "45 градус" #: accessibility.src msgctxt "" @@ -213,7 +213,7 @@ "RID_SVXSTR_RECTCTL_ACC_CHLD_A090\n" "string.text" msgid "90 degrees" -msgstr "" +msgstr "90 градус" #: accessibility.src msgctxt "" @@ -221,7 +221,7 @@ "RID_SVXSTR_RECTCTL_ACC_CHLD_A135\n" "string.text" msgid "135 degrees" -msgstr "" +msgstr "135 градус" #: accessibility.src msgctxt "" @@ -229,7 +229,7 @@ "RID_SVXSTR_RECTCTL_ACC_CHLD_A180\n" "string.text" msgid "180 degrees" -msgstr "" +msgstr "180 градус" #: accessibility.src msgctxt "" @@ -237,7 +237,7 @@ "RID_SVXSTR_RECTCTL_ACC_CHLD_A225\n" "string.text" msgid "225 degrees" -msgstr "" +msgstr "225 градус" #: accessibility.src msgctxt "" @@ -245,7 +245,7 @@ "RID_SVXSTR_RECTCTL_ACC_CHLD_A270\n" "string.text" msgid "270 degrees" -msgstr "" +msgstr "270 градус" #: accessibility.src msgctxt "" @@ -253,7 +253,7 @@ "RID_SVXSTR_RECTCTL_ACC_CHLD_A315\n" "string.text" msgid "315 degrees" -msgstr "" +msgstr "315 градус" #: accessibility.src msgctxt "" @@ -269,7 +269,7 @@ "RID_SVXSTR_GRAPHCTRL_ACC_DESCRIPTION\n" "string.text" msgid "This is where you can edit the contour." -msgstr "" +msgstr "Ара шәара ишәылшоит ишәыҧсахыр аконтур." #: accessibility.src msgctxt "" @@ -277,7 +277,7 @@ "RID_SVXSTR_CHARACTER_SELECTION\n" "string.text" msgid "Special character selection" -msgstr "" +msgstr "Иҷыдоу асимвол алхра" #: accessibility.src msgctxt "" @@ -293,4 +293,4 @@ "RID_SVXSTR_CHARACTER_CODE\n" "string.text" msgid "Character code " -msgstr "" +msgstr "Асимвол акод " diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/svx/source/core.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/svx/source/core.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/svx/source/core.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/svx/source/core.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-25 13:52+0200\n" -"PO-Revision-Date: 2017-07-19 08:43+0000\n" +"PO-Revision-Date: 2017-11-19 19:40+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500453835.000000\n" +"X-POOTLE-MTIME: 1511120428.000000\n" #: graphichelper.src msgctxt "" @@ -21,7 +21,7 @@ "RID_SVXSTR_EXPORT_GRAPHIC_TITLE\n" "string.text" msgid "Image Export" -msgstr "" +msgstr "Асахьа аекспорт" #: graphichelper.src msgctxt "" @@ -29,4 +29,4 @@ "RID_SVXSTR_SAVEAS_IMAGE\n" "string.text" msgid "Save as Image" -msgstr "Иеиқәырхатәуп асахьа" +msgstr "Еиқәырхатәуп асахьа" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/svx/source/dialog.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/svx/source/dialog.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/svx/source/dialog.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/svx/source/dialog.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-17 15:41+0200\n" -"PO-Revision-Date: 2016-12-02 10:55+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-29 10:59+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1480676122.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511953154.000000\n" #: SafeMode.src msgctxt "" @@ -21,7 +21,7 @@ "RID_SVXSTR_SAFEMODE_ZIP_FAILURE\n" "string.text" msgid "The zip file could not be created." -msgstr "" +msgstr "ZIP -фаил аҧҵара ауам." #: bmpmask.src msgctxt "" @@ -37,7 +37,7 @@ "STR_IMAGE_ORIGINAL_SIZE\n" "string.text" msgid "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) px)" -msgstr "" +msgstr "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) пикс.)" #: compressgraphicdialog.src msgctxt "" @@ -45,7 +45,7 @@ "STR_IMAGE_VIEW_SIZE\n" "string.text" msgid "$(WIDTH) x $(HEIGHT) at $(DPI) DPI" -msgstr "" +msgstr "$(WIDTH) x $(HEIGHT) в $(DPI) dpi" #: compressgraphicdialog.src msgctxt "" @@ -53,7 +53,7 @@ "STR_IMAGE_CAPACITY\n" "string.text" msgid "$(CAPACITY) kiB" -msgstr "" +msgstr "$(CAPACITY) кб" #: compressgraphicdialog.src msgctxt "" @@ -61,7 +61,7 @@ "STR_IMAGE_GIF\n" "string.text" msgid "Gif image" -msgstr "" +msgstr "асахьа GIF" #: compressgraphicdialog.src msgctxt "" @@ -69,7 +69,7 @@ "STR_IMAGE_JPEG\n" "string.text" msgid "Jpeg image" -msgstr "" +msgstr "асахьа JPEG" #: compressgraphicdialog.src msgctxt "" @@ -77,7 +77,7 @@ "STR_IMAGE_PNG\n" "string.text" msgid "PNG image" -msgstr "" +msgstr "асахьа PNG" #: compressgraphicdialog.src msgctxt "" @@ -85,7 +85,7 @@ "STR_IMAGE_TIFF\n" "string.text" msgid "TIFF image" -msgstr "" +msgstr "асахьа TIFF" #: compressgraphicdialog.src msgctxt "" @@ -93,7 +93,7 @@ "STR_IMAGE_WMF\n" "string.text" msgid "WMF image" -msgstr "" +msgstr "асахьа WMF" #: compressgraphicdialog.src msgctxt "" @@ -101,7 +101,7 @@ "STR_IMAGE_MET\n" "string.text" msgid "MET image" -msgstr "" +msgstr "асахьа MET" #: compressgraphicdialog.src msgctxt "" @@ -109,7 +109,7 @@ "STR_IMAGE_PCT\n" "string.text" msgid "PCT image" -msgstr "" +msgstr "асахьа PCT" #: compressgraphicdialog.src msgctxt "" @@ -117,7 +117,7 @@ "STR_IMAGE_SVG\n" "string.text" msgid "SVG image" -msgstr "" +msgstr "асахьа SVG" #: compressgraphicdialog.src msgctxt "" @@ -125,7 +125,7 @@ "STR_IMAGE_BMP\n" "string.text" msgid "BMP image" -msgstr "" +msgstr "асахьа BMP" #: compressgraphicdialog.src msgctxt "" @@ -133,7 +133,7 @@ "STR_IMAGE_UNKNOWN\n" "string.text" msgid "Unknown" -msgstr "" +msgstr "идырым" #: dlgctrl.src msgctxt "" @@ -319,7 +319,7 @@ "RID_SVXSTR_LANGUAGE_ALL\n" "string.text" msgid "[All]" -msgstr "" +msgstr "[Зегьы]" #: numberingtype.src msgctxt "" @@ -328,7 +328,7 @@ "None\n" "itemlist.text" msgid "None" -msgstr "" +msgstr "Мап" #: numberingtype.src msgctxt "" @@ -337,7 +337,7 @@ "Bullet\n" "itemlist.text" msgid "Bullet" -msgstr "" +msgstr "Амаркер" #: numberingtype.src msgctxt "" @@ -346,7 +346,7 @@ "Graphics\n" "itemlist.text" msgid "Graphics" -msgstr "" +msgstr "Асахьақәа" #: numberingtype.src msgctxt "" @@ -364,7 +364,7 @@ "1, 2, 3, ...\n" "itemlist.text" msgid "1, 2, 3, ..." -msgstr "" +msgstr "1, 2, 3, ..." #: numberingtype.src msgctxt "" @@ -373,7 +373,7 @@ "A, B, C, ...\n" "itemlist.text" msgid "A, B, C, ..." -msgstr "" +msgstr "A, B, C, ..." #: numberingtype.src msgctxt "" @@ -382,7 +382,7 @@ "a, b, c, ...\n" "itemlist.text" msgid "a, b, c, ..." -msgstr "" +msgstr "a, b, c, ..." #: numberingtype.src msgctxt "" @@ -391,7 +391,7 @@ "I, II, III, ...\n" "itemlist.text" msgid "I, II, III, ..." -msgstr "" +msgstr "I, II, III, ..." #: numberingtype.src msgctxt "" @@ -400,7 +400,7 @@ "i, ii, iii, ...\n" "itemlist.text" msgid "i, ii, iii, ..." -msgstr "" +msgstr "i, ii, iii, ..." #: numberingtype.src msgctxt "" @@ -409,7 +409,7 @@ "A, .., AA, .., AAA, ...\n" "itemlist.text" msgid "A, .., AA, .., AAA, ..." -msgstr "" +msgstr "A, .., AA, .., AAA, ..." #: numberingtype.src msgctxt "" @@ -418,7 +418,7 @@ "a, .., aa, .., aaa, ...\n" "itemlist.text" msgid "a, .., aa, .., aaa, ..." -msgstr "" +msgstr "a, .., aa, .., aaa, ..." #: numberingtype.src msgctxt "" @@ -427,7 +427,7 @@ "Native Numbering\n" "itemlist.text" msgid "Native Numbering" -msgstr "" +msgstr "Амилаҭтә номерркра" #: numberingtype.src msgctxt "" @@ -436,7 +436,7 @@ "А, Б, .., Аа, Аб, ... (Bulgarian)\n" "itemlist.text" msgid "А, Б, .., Аа, Аб, ... (Bulgarian)" -msgstr "" +msgstr "А, Б, .., Аа, Аб, ... (аболгартә)" #: numberingtype.src msgctxt "" @@ -445,7 +445,7 @@ "а, б, .., аа, аб, ... (Bulgarian)\n" "itemlist.text" msgid "а, б, .., аа, аб, ... (Bulgarian)" -msgstr "" +msgstr "а, б, .., аа, аб, ... (аболгартә)" #: numberingtype.src msgctxt "" @@ -454,7 +454,7 @@ "А, Б, .., Аа, Бб, ... (Bulgarian)\n" "itemlist.text" msgid "А, Б, .., Аа, Бб, ... (Bulgarian)" -msgstr "" +msgstr "А, Б, .., Аа, Бб, ... (аболгартә)" #: numberingtype.src msgctxt "" @@ -463,7 +463,7 @@ "а, б, .., аа, бб, ... (Bulgarian)\n" "itemlist.text" msgid "а, б, .., аа, бб, ... (Bulgarian)" -msgstr "" +msgstr "а, б, .., аа, бб, ... (аболгартә)" #: numberingtype.src msgctxt "" @@ -472,7 +472,7 @@ "А, Б, .., Аа, Аб, ... (Russian)\n" "itemlist.text" msgid "А, Б, .., Аа, Аб, ... (Russian)" -msgstr "" +msgstr "А, Б, .., Аа, Аб, ... (аурыстә)" #: numberingtype.src msgctxt "" @@ -481,7 +481,7 @@ "а, б, .., аа, аб, ... (Russian)\n" "itemlist.text" msgid "а, б, .., аа, аб, ... (Russian)" -msgstr "" +msgstr "а, б, .., аа, аб, ... (аурыстә)" #: numberingtype.src msgctxt "" @@ -490,7 +490,7 @@ "А, Б, .., Аа, Бб, ... (Russian)\n" "itemlist.text" msgid "А, Б, .., Аа, Бб, ... (Russian)" -msgstr "" +msgstr "А, Б, .., Аа, Бб, ... (аурыстә)" #: numberingtype.src msgctxt "" @@ -499,7 +499,7 @@ "а, б, .., аа, бб, ... (Russian)\n" "itemlist.text" msgid "а, б, .., аа, бб, ... (Russian)" -msgstr "" +msgstr "а, б, .., аа, бб, ... (аурыстә)" #: numberingtype.src msgctxt "" @@ -580,7 +580,7 @@ "A6\n" "itemlist.text" msgid "A6" -msgstr "" +msgstr "A6" #: page.src msgctxt "" @@ -589,7 +589,7 @@ "A5\n" "itemlist.text" msgid "A5" -msgstr "" +msgstr "A5" #: page.src msgctxt "" @@ -598,7 +598,7 @@ "A4\n" "itemlist.text" msgid "A4" -msgstr "" +msgstr "A4" #: page.src msgctxt "" @@ -607,7 +607,7 @@ "A3\n" "itemlist.text" msgid "A3" -msgstr "" +msgstr "A3" #: page.src msgctxt "" @@ -616,7 +616,7 @@ "B6 (ISO)\n" "itemlist.text" msgid "B6 (ISO)" -msgstr "" +msgstr "B6 (ISO)" #: page.src msgctxt "" @@ -625,7 +625,7 @@ "B5 (ISO)\n" "itemlist.text" msgid "B5 (ISO)" -msgstr "" +msgstr "B5 (ISO)" #: page.src msgctxt "" @@ -634,7 +634,7 @@ "B4 (ISO)\n" "itemlist.text" msgid "B4 (ISO)" -msgstr "" +msgstr "B4 (ISO)" #: page.src msgctxt "" @@ -643,7 +643,7 @@ "Letter\n" "itemlist.text" msgid "Letter" -msgstr "" +msgstr "Letter" #: page.src msgctxt "" @@ -652,7 +652,7 @@ "Legal\n" "itemlist.text" msgid "Legal" -msgstr "" +msgstr "Legal" #: page.src msgctxt "" @@ -661,7 +661,7 @@ "Long Bond\n" "itemlist.text" msgid "Long Bond" -msgstr "" +msgstr "Long Bond" #: page.src msgctxt "" @@ -670,7 +670,7 @@ "Tabloid\n" "itemlist.text" msgid "Tabloid" -msgstr "" +msgstr "Tabloid" #: page.src msgctxt "" @@ -679,7 +679,7 @@ "B6 (JIS)\n" "itemlist.text" msgid "B6 (JIS)" -msgstr "" +msgstr "B6 (JIS)" #: page.src msgctxt "" @@ -688,7 +688,7 @@ "B5 (JIS)\n" "itemlist.text" msgid "B5 (JIS)" -msgstr "" +msgstr "B5 (JIS)" #: page.src msgctxt "" @@ -697,7 +697,7 @@ "B4 (JIS)\n" "itemlist.text" msgid "B4 (JIS)" -msgstr "" +msgstr "B4 (JIS)" #: page.src msgctxt "" @@ -706,7 +706,7 @@ "16 Kai\n" "itemlist.text" msgid "16 Kai" -msgstr "" +msgstr "16 Kai" #: page.src msgctxt "" @@ -715,7 +715,7 @@ "32 Kai\n" "itemlist.text" msgid "32 Kai" -msgstr "" +msgstr "32 Kai" #: page.src msgctxt "" @@ -724,7 +724,7 @@ "Big 32 Kai\n" "itemlist.text" msgid "Big 32 Kai" -msgstr "" +msgstr "Идуу 32 Kai" #: page.src msgctxt "" @@ -850,7 +850,7 @@ "A6\n" "itemlist.text" msgid "A6" -msgstr "" +msgstr "A6" #: page.src msgctxt "" @@ -859,7 +859,7 @@ "A5\n" "itemlist.text" msgid "A5" -msgstr "" +msgstr "A5" #: page.src msgctxt "" @@ -868,7 +868,7 @@ "A4\n" "itemlist.text" msgid "A4" -msgstr "" +msgstr "A4" #: page.src msgctxt "" @@ -877,7 +877,7 @@ "A3\n" "itemlist.text" msgid "A3" -msgstr "" +msgstr "A3" #: page.src msgctxt "" @@ -886,7 +886,7 @@ "A2\n" "itemlist.text" msgid "A2" -msgstr "" +msgstr "А2" #: page.src msgctxt "" @@ -895,7 +895,7 @@ "A1\n" "itemlist.text" msgid "A1" -msgstr "" +msgstr "А1" #: page.src msgctxt "" @@ -904,7 +904,7 @@ "A0\n" "itemlist.text" msgid "A0" -msgstr "" +msgstr "А0" #: page.src msgctxt "" @@ -913,7 +913,7 @@ "B6 (ISO)\n" "itemlist.text" msgid "B6 (ISO)" -msgstr "" +msgstr "B6 (ISO)" #: page.src msgctxt "" @@ -922,7 +922,7 @@ "B5 (ISO)\n" "itemlist.text" msgid "B5 (ISO)" -msgstr "" +msgstr "B5 (ISO)" #: page.src msgctxt "" @@ -931,7 +931,7 @@ "B4 (ISO)\n" "itemlist.text" msgid "B4 (ISO)" -msgstr "" +msgstr "B4 (ISO)" #: page.src msgctxt "" @@ -940,7 +940,7 @@ "Letter\n" "itemlist.text" msgid "Letter" -msgstr "" +msgstr "Letter" #: page.src msgctxt "" @@ -949,7 +949,7 @@ "Legal\n" "itemlist.text" msgid "Legal" -msgstr "" +msgstr "Legal" #: page.src msgctxt "" @@ -958,7 +958,7 @@ "Long Bond\n" "itemlist.text" msgid "Long Bond" -msgstr "" +msgstr "Long Bond" #: page.src msgctxt "" @@ -967,7 +967,7 @@ "Tabloid\n" "itemlist.text" msgid "Tabloid" -msgstr "" +msgstr "Tabloid" #: page.src msgctxt "" @@ -976,7 +976,7 @@ "B6 (JIS)\n" "itemlist.text" msgid "B6 (JIS)" -msgstr "" +msgstr "B6 (JIS)" #: page.src msgctxt "" @@ -985,7 +985,7 @@ "B5 (JIS)\n" "itemlist.text" msgid "B5 (JIS)" -msgstr "" +msgstr "B5 (JIS)" #: page.src msgctxt "" @@ -994,7 +994,7 @@ "B4 (JIS)\n" "itemlist.text" msgid "B4 (JIS)" -msgstr "" +msgstr "B4 (JIS)" #: page.src msgctxt "" @@ -1003,7 +1003,7 @@ "16 Kai\n" "itemlist.text" msgid "16 Kai" -msgstr "" +msgstr "16 Kai" #: page.src msgctxt "" @@ -1012,7 +1012,7 @@ "32 Kai\n" "itemlist.text" msgid "32 Kai" -msgstr "" +msgstr "32 Kai" #: page.src msgctxt "" @@ -1021,7 +1021,7 @@ "Big 32 Kai\n" "itemlist.text" msgid "Big 32 Kai" -msgstr "" +msgstr "Идуу 32 Kai" #: page.src msgctxt "" @@ -1084,7 +1084,7 @@ "Dia Slide\n" "itemlist.text" msgid "Dia Slide" -msgstr "" +msgstr "Dia Slide" #: page.src msgctxt "" @@ -1093,7 +1093,7 @@ "Screen 4:3\n" "itemlist.text" msgid "Screen 4:3" -msgstr "" +msgstr "Аекран 4:3" #: page.src msgctxt "" @@ -1102,7 +1102,7 @@ "Screen 16:9\n" "itemlist.text" msgid "Screen 16:9" -msgstr "" +msgstr "Аекран 16:9" #: page.src msgctxt "" @@ -1111,7 +1111,7 @@ "Screen 16:10\n" "itemlist.text" msgid "Screen 16:10" -msgstr "" +msgstr "Аекран 16:10" #: page.src msgctxt "" @@ -1128,7 +1128,7 @@ "RID_SVXSTR_ERR_OLD_PASSWD\n" "string.text" msgid "Invalid password" -msgstr "" +msgstr "Ииашам ажәамаӡа" #: passwd.src msgctxt "" @@ -1136,7 +1136,7 @@ "RID_SVXSTR_ERR_REPEAT_PASSWD\n" "string.text" msgid "Passwords do not match" -msgstr "" +msgstr "Ажәамаӡақәа еиқәшәаӡом" #: prtqry.src msgctxt "" @@ -1144,7 +1144,7 @@ "RID_SVXSTR_QRY_PRINT_TITLE\n" "string.text" msgid "Printing selection" -msgstr "" +msgstr "Иалкаау ахәҭа акьыҧхьра" #: prtqry.src msgctxt "" @@ -1160,7 +1160,7 @@ "RID_SVXSTR_QRY_PRINT_ALL\n" "string.text" msgid "~All" -msgstr "" +msgstr "Зегьы" #: prtqry.src msgctxt "" @@ -1168,7 +1168,7 @@ "RID_SVXSTR_QRY_PRINT_SELECTION\n" "string.text" msgid "~Selection" -msgstr "" +msgstr "Алкаара" #: ruler.src msgctxt "" @@ -1209,7 +1209,7 @@ "All Pages\n" "itemlist.text" msgid "All Pages" -msgstr "" +msgstr "Адаҟьақәа зегьы" #: samecontent.src msgctxt "" @@ -1218,7 +1218,7 @@ "First Page\n" "itemlist.text" msgid "First Page" -msgstr "" +msgstr "Актәи адаҟьа" #: samecontent.src msgctxt "" @@ -1227,7 +1227,7 @@ "Left and Right Pages\n" "itemlist.text" msgid "Left and Right Pages" -msgstr "" +msgstr "Армарахтәии арӷьарахьтәии адаҟьақәа" #: samecontent.src msgctxt "" @@ -1236,7 +1236,7 @@ "First, Left and Right Pages\n" "itemlist.text" msgid "First, Left and Right Pages" -msgstr "" +msgstr "Актәи, армарахтәии арӷьарахьтәии адаҟьақәа" #: sdstring.src msgctxt "" @@ -1252,7 +1252,7 @@ "RID_SVXSTR_GRADIENT\n" "string.text" msgid "Gradient" -msgstr "" +msgstr "Аградиент" #: sdstring.src msgctxt "" @@ -1260,7 +1260,7 @@ "RID_SVXSTR_BITMAP\n" "string.text" msgid "Bitmap" -msgstr "" +msgstr "Атеқстура" #: sdstring.src msgctxt "" @@ -1284,7 +1284,7 @@ "RID_SVXSTR_LINESTYLE\n" "string.text" msgid "Line Style" -msgstr "" +msgstr "Аҵәаӷәа астиль" #: sdstring.src msgctxt "" @@ -1292,7 +1292,7 @@ "RID_SVXSTR_INVISIBLE\n" "string.text" msgid "None" -msgstr "" +msgstr "Мап" #: sdstring.src msgctxt "" @@ -1300,7 +1300,7 @@ "RID_SVXSTR_COLOR\n" "string.text" msgid "Color" -msgstr "" +msgstr "Аҧштәы" #: sdstring.src msgctxt "" @@ -1324,7 +1324,7 @@ "RID_SVXSTR_COLOR_BLACK\n" "string.text" msgid "Black" -msgstr "" +msgstr "Аиқәаҵәа" #: sdstring.src msgctxt "" @@ -1356,7 +1356,7 @@ "RID_SVXSTR_COLOR_RED\n" "string.text" msgid "Red" -msgstr "" +msgstr "Аҟаҧшь" #: sdstring.src msgctxt "" @@ -1380,7 +1380,7 @@ "RID_SVXSTR_COLOR_YELLOW\n" "string.text" msgid "Yellow" -msgstr "" +msgstr "Аҩежь" #: sdstring.src msgctxt "" @@ -1388,7 +1388,7 @@ "RID_SVXSTR_COLOR_WHITE\n" "string.text" msgid "White" -msgstr "" +msgstr "Ашкәакәа" #: sdstring.src msgctxt "" @@ -1420,7 +1420,7 @@ "RID_SVXSTR_ARROW\n" "string.text" msgid "Arrow" -msgstr "" +msgstr "Ахыц" #: sdstring.src msgctxt "" @@ -1428,7 +1428,7 @@ "RID_SVXSTR_SQUARE\n" "string.text" msgid "Square" -msgstr "" +msgstr "Аквадрат" #: sdstring.src msgctxt "" @@ -1436,7 +1436,7 @@ "RID_SVXSTR_CIRCLE\n" "string.text" msgid "Circle" -msgstr "" +msgstr "Агьежь" #: sdstring.src msgctxt "" @@ -1444,7 +1444,7 @@ "RID_SVXSTR_NONE\n" "string.text" msgid "- none -" -msgstr "" +msgstr "- мап -" #: sdstring.src msgctxt "" @@ -1460,7 +1460,7 @@ "RID_SVXSTR_CENTERED\n" "string.text" msgid "Centered" -msgstr "" +msgstr "Ацентр ала" #: sdstring.src msgctxt "" @@ -1468,7 +1468,7 @@ "RID_SVXSTR_NOTCENTERED\n" "string.text" msgid "Not centered" -msgstr "" +msgstr "Ацентр ала акәымкәа" #: sdstring.src msgctxt "" @@ -1564,7 +1564,7 @@ "RID_SVXSTR_COLOR_CHART\n" "string.text" msgid "Chart" -msgstr "" +msgstr "Адиаграмма" #: sdstring.src msgctxt "" @@ -1612,7 +1612,7 @@ "RID_SVXSTR_TBLAFMT_3D\n" "string.text" msgid "3D" -msgstr "" +msgstr "3D" #: sdstring.src msgctxt "" @@ -1620,7 +1620,7 @@ "RID_SVXSTR_TBLAFMT_BLACK1\n" "string.text" msgid "Black 1" -msgstr "" +msgstr "Аиқәаҵәа 1" #: sdstring.src msgctxt "" @@ -1628,7 +1628,7 @@ "RID_SVXSTR_TBLAFMT_BLACK2\n" "string.text" msgid "Black 2" -msgstr "" +msgstr "Аиқәаҵәа 2" #: sdstring.src msgctxt "" @@ -1716,7 +1716,7 @@ "RID_SVXSTR_TBLAFMT_RED\n" "string.text" msgid "Red" -msgstr "" +msgstr "Аҟаҧшь" #: sdstring.src msgctxt "" @@ -1732,7 +1732,7 @@ "RID_SVXSTR_TBLAFMT_YELLOW\n" "string.text" msgid "Yellow" -msgstr "" +msgstr "Аҩежь" #: sdstring.src msgctxt "" @@ -1796,7 +1796,7 @@ "RID_SVXSTR_GRDT0\n" "string.text" msgid "Gradient" -msgstr "" +msgstr "Аградиент" #: sdstring.src msgctxt "" @@ -1877,7 +1877,7 @@ "RID_SVXSTR_GRDT10\n" "string.text" msgid "Diagonal 1l" -msgstr "" +msgstr "Адиагональ 1l" #. r means right #: sdstring.src @@ -1886,7 +1886,7 @@ "RID_SVXSTR_GRDT11\n" "string.text" msgid "Diagonal 1r" -msgstr "" +msgstr "Адиагональ 1r" #. l means left #: sdstring.src @@ -1895,7 +1895,7 @@ "RID_SVXSTR_GRDT12\n" "string.text" msgid "Diagonal 2l" -msgstr "" +msgstr "Адиагональ 2l" #. r means right #: sdstring.src @@ -1904,7 +1904,7 @@ "RID_SVXSTR_GRDT13\n" "string.text" msgid "Diagonal 2r" -msgstr "" +msgstr "Адиагональ 2r" #. l means left #: sdstring.src @@ -1913,7 +1913,7 @@ "RID_SVXSTR_GRDT14\n" "string.text" msgid "Diagonal 3l" -msgstr "" +msgstr "Адиагональ 3l" #. r means right #: sdstring.src @@ -1922,7 +1922,7 @@ "RID_SVXSTR_GRDT15\n" "string.text" msgid "Diagonal 3r" -msgstr "" +msgstr "Адиагональ 3r" #. l means left #: sdstring.src @@ -1931,7 +1931,7 @@ "RID_SVXSTR_GRDT16\n" "string.text" msgid "Diagonal 4l" -msgstr "" +msgstr "Адиагональ 4l" #. r means right #: sdstring.src @@ -1940,7 +1940,7 @@ "RID_SVXSTR_GRDT17\n" "string.text" msgid "Diagonal 4r" -msgstr "" +msgstr "Адиагональ 4r" #: sdstring.src msgctxt "" @@ -1972,7 +1972,7 @@ "RID_SVXSTR_GRDT21\n" "string.text" msgid "Diagonal Red" -msgstr "" +msgstr "Адиагональ, аҟаҧшь" #: sdstring.src msgctxt "" @@ -1996,7 +1996,7 @@ "RID_SVXSTR_GRDT24\n" "string.text" msgid "From a Corner" -msgstr "" +msgstr "Акәакь аҟынтәи" #: sdstring.src msgctxt "" @@ -2316,7 +2316,7 @@ "RID_SVXSTR_GRDT64\n" "string.text" msgid "Sky" -msgstr "" +msgstr "Ажәҩан" #: sdstring.src msgctxt "" @@ -2348,7 +2348,7 @@ "RID_SVXSTR_GRDT68\n" "string.text" msgid "Night" -msgstr "" +msgstr "Аҵх" #: sdstring.src msgctxt "" @@ -2428,7 +2428,7 @@ "RID_SVXSTR_GRDT78\n" "string.text" msgid "Clay" -msgstr "" +msgstr "Анышәаҧшь" #: sdstring.src msgctxt "" @@ -2596,7 +2596,7 @@ "RID_SVXSTR_BMP0\n" "string.text" msgid "Empty" -msgstr "" +msgstr "Иҭацәуп" #: sdstring.src msgctxt "" @@ -2604,7 +2604,7 @@ "RID_SVXSTR_BMP1\n" "string.text" msgid "Sky" -msgstr "" +msgstr "Ажәҩан" #: sdstring.src msgctxt "" @@ -2612,7 +2612,7 @@ "RID_SVXSTR_BMP2\n" "string.text" msgid "Water" -msgstr "" +msgstr "Аӡы" #: sdstring.src msgctxt "" @@ -2636,7 +2636,7 @@ "RID_SVXSTR_BMP5\n" "string.text" msgid "Space" -msgstr "" +msgstr "Акосмос" #: sdstring.src msgctxt "" @@ -2652,7 +2652,7 @@ "RID_SVXSTR_BMP7\n" "string.text" msgid "Droplets" -msgstr "" +msgstr "Ацәыкәбарқәа" #: sdstring.src msgctxt "" @@ -2660,7 +2660,7 @@ "RID_SVXSTR_BMP8\n" "string.text" msgid "Marble" -msgstr "" +msgstr "Амрамор" #: sdstring.src msgctxt "" @@ -2676,7 +2676,7 @@ "RID_SVXSTR_BMP10\n" "string.text" msgid "Stone" -msgstr "" +msgstr "Ахаҳә" #: sdstring.src msgctxt "" @@ -2700,7 +2700,7 @@ "RID_SVXSTR_BMP13\n" "string.text" msgid "Brownstone" -msgstr "" +msgstr "Ақьырмыт" #: sdstring.src msgctxt "" @@ -2716,7 +2716,7 @@ "RID_SVXSTR_BMP15\n" "string.text" msgid "Leaves" -msgstr "" +msgstr "Абӷьқәа" #: sdstring.src msgctxt "" @@ -2748,7 +2748,7 @@ "RID_SVXSTR_BMP19\n" "string.text" msgid "Fiery" -msgstr "" +msgstr "Амца" #: sdstring.src msgctxt "" @@ -2764,7 +2764,7 @@ "RID_SVXSTR_BMP21\n" "string.text" msgid "Bitmap" -msgstr "" +msgstr "Атеқстура" #: sdstring.src msgctxt "" @@ -2884,7 +2884,7 @@ "RID_SVXSTR_LEND1\n" "string.text" msgid "Square 45" -msgstr "" +msgstr "Аромб" #: sdstring.src msgctxt "" @@ -2948,7 +2948,7 @@ "RID_SVXSTR_LEND9\n" "string.text" msgid "Circle" -msgstr "" +msgstr "Агьежь" #: sdstring.src msgctxt "" @@ -2956,7 +2956,7 @@ "RID_SVXSTR_LEND10\n" "string.text" msgid "Square" -msgstr "" +msgstr "Аквадрат" #: sdstring.src msgctxt "" @@ -2964,7 +2964,7 @@ "RID_SVXSTR_LEND11\n" "string.text" msgid "Arrow" -msgstr "" +msgstr "Ахыц" #: sdstring.src msgctxt "" @@ -2996,7 +2996,7 @@ "RID_SVXSTR_LEND15\n" "string.text" msgid "Diamond" -msgstr "" +msgstr "Аромб" #: sdstring.src msgctxt "" @@ -3053,7 +3053,7 @@ "Millimeter\n" "itemlist.text" msgid "Millimeter" -msgstr "" +msgstr "Амиллиметрқәа" #: sdstring.src msgctxt "" @@ -3062,7 +3062,7 @@ "Centimeter\n" "itemlist.text" msgid "Centimeter" -msgstr "" +msgstr "Асантиметрқәа" #: sdstring.src msgctxt "" @@ -3071,7 +3071,7 @@ "Meter\n" "itemlist.text" msgid "Meter" -msgstr "" +msgstr "Аметрқәа" #: sdstring.src msgctxt "" @@ -3080,7 +3080,7 @@ "Kilometer\n" "itemlist.text" msgid "Kilometer" -msgstr "" +msgstr "Акилометрқәа" #: sdstring.src msgctxt "" @@ -3089,7 +3089,7 @@ "Inch\n" "itemlist.text" msgid "Inch" -msgstr "" +msgstr "Адиуимқәа" #: sdstring.src msgctxt "" @@ -3098,7 +3098,7 @@ "Foot\n" "itemlist.text" msgid "Foot" -msgstr "" +msgstr "Афутқәа" #: sdstring.src msgctxt "" @@ -3107,7 +3107,7 @@ "Miles\n" "itemlist.text" msgid "Miles" -msgstr "" +msgstr "Мили" #: sdstring.src msgctxt "" @@ -3125,7 +3125,7 @@ "Point\n" "itemlist.text" msgid "Point" -msgstr "" +msgstr "Апункт" #: sdstring.src msgctxt "" @@ -3134,7 +3134,7 @@ "Char\n" "itemlist.text" msgid "Char" -msgstr "" +msgstr "Асимвол" #: sdstring.src msgctxt "" @@ -3143,7 +3143,7 @@ "Line\n" "itemlist.text" msgid "Line" -msgstr "" +msgstr "Ацәаҳәа" #: sdstring.src msgctxt "" @@ -3295,7 +3295,7 @@ "RID_SVXSTR_GALLERY_PREVIEW\n" "string.text" msgid "Preview" -msgstr "" +msgstr "Ахәаҧшра" #: sdstring.src msgctxt "" @@ -3303,7 +3303,7 @@ "RID_SVXSTR_SUCCESSRECOV\n" "string.text" msgid "Successfully recovered" -msgstr "" +msgstr "Қәҿиарала еиҭашьақәыргылоуп" #: sdstring.src msgctxt "" @@ -3359,7 +3359,7 @@ "RID_SVXSTR_RECOVERYONLY_FINISH\n" "string.text" msgid "~Finish" -msgstr "" +msgstr "Ихыркәшатәуп" #: sdstring.src msgctxt "" @@ -3367,7 +3367,7 @@ "RID_SVXSTR_WIDTH_LAST_CUSTOM\n" "string.text" msgid "Last Custom Value" -msgstr "" +msgstr "Аҵыхәтәантәи аҵакы" #: sdstring.src msgctxt "" @@ -3375,7 +3375,7 @@ "RID_SVXSTR_PT\n" "string.text" msgid "pt" -msgstr "" +msgstr "пт" #: spacing.src msgctxt "" @@ -3384,7 +3384,7 @@ "None\n" "itemlist.text" msgid "None" -msgstr "" +msgstr "Мап" #: spacing.src msgctxt "" @@ -3455,7 +3455,7 @@ "RID_SVXSTR_SEARCH_STYLES\n" "string.text" msgid "Including Styles" -msgstr "" +msgstr "Астильқәа алаҵаны" #: srchdlg.src msgctxt "" @@ -3463,7 +3463,7 @@ "RID_SVXSTR_WRITER_STYLES\n" "string.text" msgid "Paragraph St~yles" -msgstr "" +msgstr "Абзац астильқәа" #: srchdlg.src msgctxt "" @@ -3479,7 +3479,7 @@ "RID_SVXSTR_SEARCH\n" "string.text" msgid "(Search)" -msgstr "" +msgstr "(Иҧшаатәуп)" #: srchdlg.src msgctxt "" @@ -3511,7 +3511,7 @@ "RID_SVXSTR_SEARCH_NOT_FOUND\n" "string.text" msgid "Search key not found" -msgstr "" +msgstr "Аҧшааратә цәаҳәа ҧшаам" #: srchdlg.src msgctxt "" @@ -3527,7 +3527,7 @@ "RID_SVXSTR_BULLET_DESCRIPTION_0\n" "string.text" msgid "Solid small circular bullets" -msgstr "" +msgstr "Асанҭыр хәыҷқәа" #: svxbmpnumvalueset.src msgctxt "" @@ -3535,7 +3535,7 @@ "RID_SVXSTR_BULLET_DESCRIPTION_1\n" "string.text" msgid "Solid large circular bullets" -msgstr "" +msgstr "Асанҭыр дуқәа" #: svxbmpnumvalueset.src msgctxt "" @@ -3583,7 +3583,7 @@ "RID_SVXSTR_BULLET_DESCRIPTION_7\n" "string.text" msgid "Tick mark bullets" -msgstr "" +msgstr "Иазгәаҭатәуп амаркерқәа" #: svxbmpnumvalueset.src msgctxt "" @@ -3591,7 +3591,7 @@ "RID_SVXSTR_SINGLENUM_DESCRIPTION_0\n" "string.text" msgid "Number 1) 2) 3)" -msgstr "" +msgstr "Аномерркра 1) 2) 3)" #: svxbmpnumvalueset.src msgctxt "" @@ -3599,7 +3599,7 @@ "RID_SVXSTR_SINGLENUM_DESCRIPTION_1\n" "string.text" msgid "Number 1. 2. 3." -msgstr "" +msgstr "Аномерркра 1. 2. 3." #: svxbmpnumvalueset.src msgctxt "" @@ -3607,7 +3607,7 @@ "RID_SVXSTR_SINGLENUM_DESCRIPTION_2\n" "string.text" msgid "Number (1) (2) (3)" -msgstr "" +msgstr "Аномерркра (1) (2) (3)" #: svxbmpnumvalueset.src msgctxt "" @@ -3729,7 +3729,7 @@ "Right\n" "itemlist.text" msgid "Right" -msgstr "" +msgstr "Арыӷьарахь" #: swframeposstrings.src msgctxt "" @@ -3738,7 +3738,7 @@ "From left\n" "itemlist.text" msgid "From left" -msgstr "" +msgstr "Арымарахь" #: swframeposstrings.src msgctxt "" @@ -3747,7 +3747,7 @@ "Inside\n" "itemlist.text" msgid "Inside" -msgstr "" +msgstr "Аҩныҵҟа" #: swframeposstrings.src msgctxt "" @@ -3756,7 +3756,7 @@ "Outside\n" "itemlist.text" msgid "Outside" -msgstr "" +msgstr "Адәныҟа" #: swframeposstrings.src msgctxt "" @@ -3765,7 +3765,7 @@ "From inside\n" "itemlist.text" msgid "From inside" -msgstr "" +msgstr "Аҩныҵҟа" #: swframeposstrings.src msgctxt "" @@ -3864,7 +3864,7 @@ "Entire page\n" "itemlist.text" msgid "Entire page" -msgstr "" +msgstr "Адаҟьа зегьы" #: swframeposstrings.src msgctxt "" @@ -3891,7 +3891,7 @@ "Character\n" "itemlist.text" msgid "Character" -msgstr "" +msgstr "Асимвол" #: swframeposstrings.src msgctxt "" @@ -3900,7 +3900,7 @@ "Row\n" "itemlist.text" msgid "Row" -msgstr "" +msgstr "АЦӘАҲӘА" #: swframeposstrings.src msgctxt "" @@ -3909,7 +3909,7 @@ "Margin\n" "itemlist.text" msgid "Margin" -msgstr "" +msgstr "Аҭакыра" #: swframeposstrings.src msgctxt "" @@ -3972,7 +3972,7 @@ "Top\n" "itemlist.text" msgid "Top" -msgstr "" +msgstr "Хыхьла" #: swframeposstrings.src msgctxt "" @@ -3981,7 +3981,7 @@ "Bottom\n" "itemlist.text" msgid "Bottom" -msgstr "" +msgstr "Ҵаҟала" #: swframeposstrings.src msgctxt "" @@ -3990,7 +3990,7 @@ "Center\n" "itemlist.text" msgid "Center" -msgstr "" +msgstr "Ацентр ала" #: swframeposstrings.src msgctxt "" @@ -3999,7 +3999,7 @@ "From top\n" "itemlist.text" msgid "From top" -msgstr "" +msgstr "Хыхьала" #: swframeposstrings.src msgctxt "" @@ -4008,7 +4008,7 @@ "From bottom\n" "itemlist.text" msgid "From bottom" -msgstr "" +msgstr "Ҵаҟала" #: swframeposstrings.src msgctxt "" @@ -4017,7 +4017,7 @@ "Below\n" "itemlist.text" msgid "Below" -msgstr "" +msgstr "Илаҟәны" #: swframeposstrings.src msgctxt "" @@ -4026,7 +4026,7 @@ "From right\n" "itemlist.text" msgid "From right" -msgstr "" +msgstr "Арыӷьарахь" #: swframeposstrings.src msgctxt "" @@ -4071,7 +4071,7 @@ "Line of text\n" "itemlist.text" msgid "Line of text" -msgstr "" +msgstr "Ацәаҳәа атеқст аҟынтәи" #: txenctab.src msgctxt "" @@ -5106,7 +5106,7 @@ "Number Forms\n" "itemlist.text" msgid "Number Forms" -msgstr "" +msgstr "Ахыҧхьаӡаратә формақәа" #: ucsubset.src msgctxt "" @@ -6105,7 +6105,7 @@ "Vertical Forms\n" "itemlist.text" msgid "Vertical Forms" -msgstr "" +msgstr "Ивертикалу аформақәа" #: ucsubset.src msgctxt "" @@ -7212,7 +7212,7 @@ "Newa\n" "itemlist.text" msgid "Newa" -msgstr "" +msgstr "Нева" #: ucsubset.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/svx/source/engine3d.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/svx/source/engine3d.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/svx/source/engine3d.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/svx/source/engine3d.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2015-04-23 18:30+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-27 09:44+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1429813829.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511775888.000000\n" #: float3d.src msgctxt "" @@ -21,7 +21,7 @@ "RID_SVXFLOAT3D_FAVORITE\n" "string.text" msgid "Favorite" -msgstr "" +msgstr "Атеқстура" #: float3d.src msgctxt "" @@ -29,7 +29,7 @@ "RID_SVXFLOAT3D_FIX_R\n" "string.text" msgid "R:" -msgstr "" +msgstr "R:" #: float3d.src msgctxt "" @@ -37,7 +37,7 @@ "RID_SVXFLOAT3D_FIX_G\n" "string.text" msgid "G:" -msgstr "" +msgstr "G:" #: float3d.src msgctxt "" @@ -45,7 +45,7 @@ "RID_SVXFLOAT3D_FIX_B\n" "string.text" msgid "B:" -msgstr "" +msgstr "B:" #: string3d.src msgctxt "" @@ -53,7 +53,7 @@ "RID_SVX_3D_UNDO_EXCHANGE_PASTE\n" "string.text" msgid "Insert object(s)" -msgstr "" +msgstr "Ибжьаргылатәуп аобиеқт(қәа)" #: string3d.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/svx/source/form.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/svx/source/form.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/svx/source/form.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/svx/source/form.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n" -"PO-Revision-Date: 2017-09-18 11:10+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-27 17:26+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1505733058.000000\n" +"X-POOTLE-MTIME: 1511803617.000000\n" #: datanavi.src msgctxt "" @@ -97,7 +97,7 @@ "RID_STR_DOUBLE_MODELNAME\n" "string.text" msgid "The name '%1' already exists. Please enter a new name." -msgstr "" +msgstr "Ахьӡ «%1» ыҟоуп. Иалышәх даҽа хьӡык." #: datanavi.src msgctxt "" @@ -113,7 +113,7 @@ "RID_STR_METHOD_POST\n" "string.text" msgid "Post" -msgstr "" +msgstr "Post" #: datanavi.src msgctxt "" @@ -121,7 +121,7 @@ "RID_STR_METHOD_PUT\n" "string.text" msgid "Put" -msgstr "" +msgstr "Put" #: datanavi.src msgctxt "" @@ -129,7 +129,7 @@ "RID_STR_METHOD_GET\n" "string.text" msgid "Get" -msgstr "" +msgstr "Get" #: datanavi.src msgctxt "" @@ -137,7 +137,7 @@ "RID_STR_REPLACE_NONE\n" "string.text" msgid "None" -msgstr "" +msgstr "Мап" #: datanavi.src msgctxt "" @@ -145,7 +145,7 @@ "RID_STR_REPLACE_INST\n" "string.text" msgid "Instance" -msgstr "" +msgstr "Аекземплиар" #: datanavi.src msgctxt "" @@ -153,7 +153,7 @@ "RID_STR_REPLACE_DOC\n" "string.text" msgid "Document" -msgstr "" +msgstr "Адокумент" #: datanavi.src msgctxt "" @@ -161,7 +161,7 @@ "RID_STR_DATANAV_SUBM_BIND\n" "string.text" msgid "Binding: " -msgstr "" +msgstr "Аидҳәалара:" #: datanavi.src msgctxt "" @@ -169,7 +169,7 @@ "RID_STR_DATANAV_SUBM_REF\n" "string.text" msgid "Reference: " -msgstr "" +msgstr "Азхьарҧш: " #: datanavi.src msgctxt "" @@ -185,7 +185,7 @@ "RID_STR_DATANAV_SUBM_METHOD\n" "string.text" msgid "Method: " -msgstr "" +msgstr "Аметод: " #: datanavi.src msgctxt "" @@ -201,7 +201,7 @@ "RID_STR_DATANAV_ADD_ELEMENT\n" "string.text" msgid "Add Element" -msgstr "" +msgstr "Иацҵатәуп аелемент" #: datanavi.src msgctxt "" @@ -217,7 +217,7 @@ "RID_STR_DATANAV_REMOVE_ELEMENT\n" "string.text" msgid "Delete Element" -msgstr "" +msgstr "Ианыхтәуп аелемент" #: datanavi.src msgctxt "" @@ -225,7 +225,7 @@ "RID_STR_DATANAV_ADD_ATTRIBUTE\n" "string.text" msgid "Add Attribute" -msgstr "" +msgstr "Иацҵатәуп атрибут" #: datanavi.src msgctxt "" @@ -241,7 +241,7 @@ "RID_STR_DATANAV_REMOVE_ATTRIBUTE\n" "string.text" msgid "Delete Attribute" -msgstr "" +msgstr "Ианыхтәуп атрибут" #: datanavi.src msgctxt "" @@ -297,7 +297,7 @@ "RID_STR_ELEMENT\n" "string.text" msgid "Element" -msgstr "" +msgstr "Аелемент" #: datanavi.src msgctxt "" @@ -305,7 +305,7 @@ "RID_STR_ATTRIBUTE\n" "string.text" msgid "Attribute" -msgstr "" +msgstr "Атрибут" #: datanavi.src msgctxt "" @@ -313,7 +313,7 @@ "RID_STR_BINDING\n" "string.text" msgid "Binding" -msgstr "" +msgstr "Аидҳәалара" #: datanavi.src msgctxt "" @@ -337,7 +337,7 @@ "RID_STR_FORMS\n" "string.text" msgid "Forms" -msgstr "" +msgstr "Аформақәа" #: fmstring.src msgctxt "" @@ -353,7 +353,7 @@ "RID_STR_PROPERTIES_CONTROL\n" "string.text" msgid "Properties: " -msgstr "" +msgstr "Аҷыдаҟазшьақәа:" #: fmstring.src msgctxt "" @@ -361,7 +361,7 @@ "RID_STR_PROPERTIES_FORM\n" "string.text" msgid "Form Properties" -msgstr "" +msgstr "Аформа аҷыдаҟазшьақәа" #: fmstring.src msgctxt "" @@ -377,7 +377,7 @@ "RID_STR_FORM\n" "string.text" msgid "Form" -msgstr "" +msgstr "Аформа" #: fmstring.src msgctxt "" @@ -386,7 +386,7 @@ "Table\n" "itemlist.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: fmstring.src msgctxt "" @@ -395,7 +395,7 @@ "Query\n" "itemlist.text" msgid "Query" -msgstr "" +msgstr "Азыҳәара" #: fmstring.src msgctxt "" @@ -404,7 +404,7 @@ "SQL\n" "itemlist.text" msgid "SQL" -msgstr "" +msgstr "SQL" #: fmstring.src msgctxt "" @@ -412,7 +412,7 @@ "RID_STR_STDFORMNAME\n" "string.text" msgid "Form" -msgstr "" +msgstr "Аформа" #: fmstring.src msgctxt "" @@ -436,7 +436,7 @@ "RID_STR_REC_TEXT\n" "string.text" msgid "Record" -msgstr "" +msgstr "Анҵамҭа" #: fmstring.src msgctxt "" @@ -444,7 +444,7 @@ "RID_STR_REC_FROM_TEXT\n" "string.text" msgid "of" -msgstr "" +msgstr "аҟынтә" #: fmstring.src msgctxt "" @@ -452,7 +452,7 @@ "RID_STR_FIELDSELECTION\n" "string.text" msgid "Add field:" -msgstr "" +msgstr "Аҭакыра алхра:" #: fmstring.src msgctxt "" @@ -510,7 +510,7 @@ "RID_STR_COLUMN\n" "string.text" msgid "Col" -msgstr "" +msgstr "Аиҵагыла" #: fmstring.src msgctxt "" @@ -534,7 +534,7 @@ "RID_STR_UNDO_CONTAINER_REMOVE\n" "string.text" msgid "Delete #" -msgstr "" +msgstr "Ианыхтәуп #" #: fmstring.src msgctxt "" @@ -542,7 +542,7 @@ "RID_STR_UNDO_CONTAINER_REMOVE_MULTIPLE\n" "string.text" msgid "Delete # objects" -msgstr "" +msgstr "Ианыхтәуп # аобиеқт(қәа)" #: fmstring.src msgctxt "" @@ -566,7 +566,7 @@ "RID_STR_PROPTITLE_PUSHBUTTON\n" "string.text" msgid "Push Button" -msgstr "" +msgstr "Акнопка" #: fmstring.src msgctxt "" @@ -590,7 +590,7 @@ "RID_STR_PROPTITLE_FIXEDTEXT\n" "string.text" msgid "Label Field" -msgstr "" +msgstr "Аҭыҧдырга" #: fmstring.src msgctxt "" @@ -598,7 +598,7 @@ "RID_STR_PROPTITLE_GROUPBOX\n" "string.text" msgid "Group Box" -msgstr "" +msgstr "Агәыҧ" #: fmstring.src msgctxt "" @@ -622,7 +622,7 @@ "RID_STR_PROPTITLE_LISTBOX\n" "string.text" msgid "List Box" -msgstr "" +msgstr "Ахьӡынҵа" #: fmstring.src msgctxt "" @@ -638,7 +638,7 @@ "RID_STR_PROPTITLE_IMAGEBUTTON\n" "string.text" msgid "Image Button" -msgstr "" +msgstr "Аграфикатә кнопка" #: fmstring.src msgctxt "" @@ -654,7 +654,7 @@ "RID_STR_PROPTITLE_FILECONTROL\n" "string.text" msgid "File Selection" -msgstr "" +msgstr "Афаил алхра" #: fmstring.src msgctxt "" @@ -734,7 +734,7 @@ "RID_STR_PROPTITLE_MULTISELECT\n" "string.text" msgid "Multiselection" -msgstr "" +msgstr "Гәыҧ-гәыҧла алкаара" #: fmstring.src msgctxt "" @@ -758,7 +758,7 @@ "RID_STR_POSTFIX_TIME\n" "string.text" msgid " (Time)" -msgstr "" +msgstr " (Аамҭа)" #: fmstring.src msgctxt "" @@ -782,7 +782,7 @@ "RID_STR_FILTER_FILTER_OR\n" "string.text" msgid "Or" -msgstr "" +msgstr "Ма" #: fmstring.src msgctxt "" @@ -808,7 +808,7 @@ "LIKE\n" "itemlist.text" msgid "LIKE" -msgstr "" +msgstr "LIKE" #: fmstring.src msgctxt "" @@ -817,7 +817,7 @@ "NOT\n" "itemlist.text" msgid "NOT" -msgstr "" +msgstr "NOT" #: fmstring.src msgctxt "" @@ -826,7 +826,7 @@ "EMPTY\n" "itemlist.text" msgid "EMPTY" -msgstr "" +msgstr "EMPTY" #: fmstring.src msgctxt "" @@ -835,7 +835,7 @@ "TRUE\n" "itemlist.text" msgid "TRUE" -msgstr "" +msgstr "TRUE" #: fmstring.src msgctxt "" @@ -844,7 +844,7 @@ "FALSE\n" "itemlist.text" msgid "FALSE" -msgstr "" +msgstr "FALSE" #: fmstring.src msgctxt "" @@ -853,7 +853,7 @@ "IS\n" "itemlist.text" msgid "IS" -msgstr "" +msgstr "IS" #: fmstring.src msgctxt "" @@ -862,7 +862,7 @@ "BETWEEN\n" "itemlist.text" msgid "BETWEEN" -msgstr "" +msgstr "BETWEEN" #: fmstring.src msgctxt "" @@ -871,7 +871,7 @@ "OR\n" "itemlist.text" msgid "OR" -msgstr "" +msgstr "OR" #: fmstring.src msgctxt "" @@ -880,7 +880,7 @@ "AND\n" "itemlist.text" msgid "AND" -msgstr "" +msgstr "AND" #: fmstring.src msgctxt "" @@ -889,7 +889,7 @@ "Average\n" "itemlist.text" msgid "Average" -msgstr "" +msgstr "Ибжьаратәу" #: fmstring.src msgctxt "" @@ -898,7 +898,7 @@ "Count\n" "itemlist.text" msgid "Count" -msgstr "" +msgstr "Ахыҧхьаӡара" #: fmstring.src msgctxt "" @@ -907,7 +907,7 @@ "Maximum\n" "itemlist.text" msgid "Maximum" -msgstr "" +msgstr "Амаксимум" #: fmstring.src msgctxt "" @@ -916,7 +916,7 @@ "Minimum\n" "itemlist.text" msgid "Minimum" -msgstr "" +msgstr "Аминимум" #: fmstring.src msgctxt "" @@ -925,7 +925,7 @@ "Sum\n" "itemlist.text" msgid "Sum" -msgstr "" +msgstr "Аицҵалыҵ" #: fmstring.src msgctxt "" @@ -961,7 +961,7 @@ "STDDEV_POP\n" "itemlist.text" msgid "STDDEV_POP" -msgstr "" +msgstr "STDDEV_POP" #: fmstring.src msgctxt "" @@ -970,7 +970,7 @@ "STDDEV_SAMP\n" "itemlist.text" msgid "STDDEV_SAMP" -msgstr "" +msgstr "STDDEV_SAMP" #: fmstring.src msgctxt "" @@ -979,7 +979,7 @@ "VAR_SAMP\n" "itemlist.text" msgid "VAR_SAMP" -msgstr "" +msgstr "VAR_SAMP" #: fmstring.src msgctxt "" @@ -988,7 +988,7 @@ "VAR_POP\n" "itemlist.text" msgid "VAR_POP" -msgstr "" +msgstr "VAR_POP" #: fmstring.src msgctxt "" @@ -1006,7 +1006,7 @@ "Fusion\n" "itemlist.text" msgid "Fusion" -msgstr "" +msgstr "Аидҵара" #: fmstring.src msgctxt "" @@ -1127,7 +1127,7 @@ "RID_STR_READONLY_VIEW\n" "string.text" msgid " (read-only)" -msgstr "" +msgstr " (аҧхьара мацараз)" #: fmstring.src msgctxt "" @@ -1135,7 +1135,7 @@ "RID_STR_ALREADYEXISTOVERWRITE\n" "string.text" msgid "The file already exists. Overwrite?" -msgstr "" +msgstr "Ари афаил ыҟоуп. Ихҩылаатәума?" #: fmstring.src msgctxt "" @@ -1143,4 +1143,4 @@ "RID_STR_OBJECT_LABEL\n" "string.text" msgid "#object# label" -msgstr "" +msgstr "#object# аҭыҧдырга" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/svx/source/gallery2.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/svx/source/gallery2.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/svx/source/gallery2.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/svx/source/gallery2.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n" -"PO-Revision-Date: 2015-04-23 18:30+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-12-12 10:40+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1429813831.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1513075209.000000\n" #: gallery.src msgctxt "" @@ -29,7 +29,7 @@ "RID_SVXSTR_GALLERY_NEWTHEME\n" "string.text" msgid "New Theme" -msgstr "" +msgstr "Атема ҿыц" #: gallery.src msgctxt "" @@ -37,7 +37,7 @@ "RID_SVXSTR_GALLERY_CREATETHEME\n" "string.text" msgid "New Theme..." -msgstr "" +msgstr "Иаҧҵатәуп атема..." #: gallery.src msgctxt "" @@ -85,7 +85,7 @@ "RID_GALLERYSTR_THEME_BULLETS\n" "string.text" msgid "Bullets" -msgstr "" +msgstr "Амаркерқәа" #: galtheme.src msgctxt "" @@ -109,7 +109,7 @@ "RID_GALLERYSTR_THEME_FLOWCHARTS\n" "string.text" msgid "Flow Charts" -msgstr "" +msgstr "Аблок-схемақәа" #: galtheme.src msgctxt "" @@ -349,7 +349,7 @@ "RID_GALLERYSTR_THEME_TROUBLE\n" "string.text" msgid "Problem Solving" -msgstr "" +msgstr "Апроблемақәа рыӡбара" #: galtheme.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/svx/source/items.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/svx/source/items.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/svx/source/items.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/svx/source/items.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-07-21 19:01+0000\n" +"PO-Revision-Date: 2017-11-29 10:34+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500663682.000000\n" +"X-POOTLE-MTIME: 1511951665.000000\n" #: svxerr.src msgctxt "" @@ -67,7 +67,7 @@ "$(ERR) loading the graphics.\n" "itemlist.text" msgid "$(ERR) loading the graphics." -msgstr "" +msgstr "$(ERR) аграфика аҭагалараан." #: svxerr.src msgctxt "" @@ -228,7 +228,7 @@ "The password is incorrect. The document cannot be opened.\n" "itemlist.text" msgid "The password is incorrect. The document cannot be opened." -msgstr "" +msgstr "Ииашам ажәамаӡа. Адокумент аартра ауам." #: svxerr.src msgctxt "" @@ -294,7 +294,7 @@ "Character\n" "itemlist.text" msgid "Character" -msgstr "" +msgstr "Асимвол" #: svxitems.src msgctxt "" @@ -438,7 +438,7 @@ "Character blinking\n" "itemlist.text" msgid "Character blinking" -msgstr "" +msgstr "Асимволқәа рылацәҟәра" #: svxitems.src msgctxt "" @@ -465,7 +465,7 @@ "Paragraph\n" "itemlist.text" msgid "Paragraph" -msgstr "" +msgstr "Абзац" #: svxitems.src msgctxt "" @@ -600,7 +600,7 @@ "Blinking\n" "itemlist.text" msgid "Blinking" -msgstr "" +msgstr "Алацәҟәра" #: svxitems.src msgctxt "" @@ -618,7 +618,7 @@ "Character background\n" "itemlist.text" msgid "Character background" -msgstr "" +msgstr "Асимволқәа рҿаҧшыра" #: svxitems.src msgctxt "" @@ -753,7 +753,7 @@ "Forbidden characters\n" "itemlist.text" msgid "Forbidden characters" -msgstr "" +msgstr "Изымуа асимволқәа" #: svxitems.src msgctxt "" @@ -771,7 +771,7 @@ "Character scaling\n" "itemlist.text" msgid "Character scaling" -msgstr "" +msgstr "Асимволқәа рмасштаб" #: svxitems.src msgctxt "" @@ -989,4 +989,4 @@ "RID_SVXITEMS_BRUSH_CHAR\n" "string.text" msgid "Character background" -msgstr "" +msgstr "Асимволқәа рҿаҧшыра" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/svx/source/src.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/svx/source/src.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/svx/source/src.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/svx/source/src.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-17 15:41+0200\n" -"PO-Revision-Date: 2016-12-02 10:00+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-12-12 10:40+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1480672822.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1513075237.000000\n" #: errtxt.src msgctxt "" @@ -22,7 +22,7 @@ "Error\n" "itemlist.text" msgid "Error" -msgstr "" +msgstr "Агха" #: errtxt.src msgctxt "" @@ -31,7 +31,7 @@ "Warning\n" "itemlist.text" msgid "Warning" -msgstr "" +msgstr "Агәаҽанҵара" #: errtxt.src msgctxt "" @@ -40,7 +40,7 @@ "$(ERR) loading the template $(ARG1)\n" "itemlist.text" msgid "$(ERR) loading the template $(ARG1)" -msgstr "" +msgstr "$(ERR) ашаблон $(ARG1) аҭагалараан" #: errtxt.src msgctxt "" @@ -49,7 +49,7 @@ "$(ERR) saving the document $(ARG1)\n" "itemlist.text" msgid "$(ERR) saving the document $(ARG1)" -msgstr "" +msgstr "$(ERR) адокумент $(ARG1) аиқәырхараан" #: errtxt.src msgctxt "" @@ -94,7 +94,7 @@ "$(ERR) loading document $(ARG1)\n" "itemlist.text" msgid "$(ERR) loading document $(ARG1)" -msgstr "" +msgstr "$(ERR) адокумент $(ARG1) аҭагалараан" #: errtxt.src msgctxt "" @@ -103,7 +103,7 @@ "$(ERR) creating a new document\n" "itemlist.text" msgid "$(ERR) creating a new document" -msgstr "" +msgstr "$(ERR) адокумент ҿыц, аҧҵараан" #: errtxt.src msgctxt "" @@ -121,7 +121,7 @@ "$(ERR) loading BASIC of document $(ARG1)\n" "itemlist.text" msgid "$(ERR) loading BASIC of document $(ARG1)" -msgstr "" +msgstr "$(ERR) BASIC адокумент $(ARG1) аҭагалараан" #: errtxt.src msgctxt "" @@ -139,7 +139,7 @@ "Abort\n" "itemlist.text" msgid "Abort" -msgstr "" +msgstr "Еиҧҟьатәуп" #: errtxt.src msgctxt "" @@ -148,7 +148,7 @@ "Nonexistent object\n" "itemlist.text" msgid "Nonexistent object" -msgstr "" +msgstr "Иҟам аобиеқт" #: errtxt.src msgctxt "" @@ -157,7 +157,7 @@ "Object already exists\n" "itemlist.text" msgid "Object already exists" -msgstr "" +msgstr "Аобиеқт ыҟоуп" #: errtxt.src msgctxt "" @@ -166,7 +166,7 @@ "Object not accessible\n" "itemlist.text" msgid "Object not accessible" -msgstr "" +msgstr "Аобиеқт ахь анаӡара ауам" #: errtxt.src msgctxt "" @@ -175,7 +175,7 @@ "Inadmissible path\n" "itemlist.text" msgid "Inadmissible path" -msgstr "" +msgstr "Изымуа амҩа" #: errtxt.src msgctxt "" @@ -193,7 +193,7 @@ "Wrong parameter\n" "itemlist.text" msgid "Wrong parameter" -msgstr "" +msgstr "Ииашам апараметр" #: errtxt.src msgctxt "" @@ -220,7 +220,7 @@ "Read Error\n" "itemlist.text" msgid "Read Error" -msgstr "" +msgstr "Аҧхьара агха" #: errtxt.src msgctxt "" @@ -229,7 +229,7 @@ "Write Error\n" "itemlist.text" msgid "Write Error" -msgstr "" +msgstr "Аҭаҩра агха" #: errtxt.src msgctxt "" @@ -238,7 +238,7 @@ "unknown\n" "itemlist.text" msgid "unknown" -msgstr "" +msgstr "идырӡам" #: errtxt.src msgctxt "" @@ -247,7 +247,7 @@ "Version Incompatibility\n" "itemlist.text" msgid "Version Incompatibility" -msgstr "" +msgstr "Аверсиақәа реинымаалара" #: errtxt.src msgctxt "" @@ -256,7 +256,7 @@ "General Error\n" "itemlist.text" msgid "General Error" -msgstr "" +msgstr "Азеиҧш гха" #: errtxt.src msgctxt "" @@ -265,7 +265,7 @@ "Incorrect format\n" "itemlist.text" msgid "Incorrect format" -msgstr "" +msgstr "Ииашам аформат" #: errtxt.src msgctxt "" @@ -274,7 +274,7 @@ "Error creating object\n" "itemlist.text" msgid "Error creating object" -msgstr "" +msgstr "Аобиеқт аҧҵара агха" #: errtxt.src msgctxt "" @@ -301,7 +301,7 @@ "BASIC syntax error\n" "itemlist.text" msgid "BASIC syntax error" -msgstr "" +msgstr "BASIC асинтаксистә гха" #: errtxt.src msgctxt "" @@ -319,7 +319,7 @@ "Invalid file name.\n" "itemlist.text" msgid "Invalid file name." -msgstr "" +msgstr "Афаил ииашам ахьӡ." #: errtxt.src msgctxt "" @@ -328,7 +328,7 @@ "Nonexistent file.\n" "itemlist.text" msgid "Nonexistent file." -msgstr "" +msgstr "Афаил ыҟаӡам." #: errtxt.src msgctxt "" @@ -337,7 +337,7 @@ "File already exists.\n" "itemlist.text" msgid "File already exists." -msgstr "" +msgstr "Ари афаил ыҟоуп. " #: errtxt.src msgctxt "" @@ -346,7 +346,7 @@ "The object is not a directory.\n" "itemlist.text" msgid "The object is not a directory." -msgstr "" +msgstr "Аобиеқт каталогӡам." #: errtxt.src msgctxt "" @@ -355,7 +355,7 @@ "The object is not a file.\n" "itemlist.text" msgid "The object is not a file." -msgstr "" +msgstr "Аобиеқт фаилӡам." #: errtxt.src msgctxt "" @@ -424,7 +424,7 @@ "There are too many files open.\n" "itemlist.text" msgid "There are too many files open." -msgstr "" +msgstr "Иаартуп афаилқәа мыцхәны." #: errtxt.src msgctxt "" @@ -433,7 +433,7 @@ "Data could not be read from the file.\n" "itemlist.text" msgid "Data could not be read from the file." -msgstr "" +msgstr "Афаил аҧхьара ауам." #: errtxt.src msgctxt "" @@ -442,7 +442,7 @@ "The file could not be written.\n" "itemlist.text" msgid "The file could not be written." -msgstr "" +msgstr "Афаил аҭаҩра ауам." #: errtxt.src msgctxt "" @@ -460,7 +460,7 @@ "The seek operation could not be run.\n" "itemlist.text" msgid "The seek operation could not be run." -msgstr "" +msgstr "Аоперациа seek анагӡара ауам." #: errtxt.src msgctxt "" @@ -469,7 +469,7 @@ "The tell operation could not be run.\n" "itemlist.text" msgid "The tell operation could not be run." -msgstr "" +msgstr "Аоперациа tell анагӡара ауам." #: errtxt.src msgctxt "" @@ -478,7 +478,7 @@ "Incorrect file version.\n" "itemlist.text" msgid "Incorrect file version." -msgstr "" +msgstr "Афаил ииашам аверсиа." #: errtxt.src msgctxt "" @@ -487,7 +487,7 @@ "Incorrect file format.\n" "itemlist.text" msgid "Incorrect file format." -msgstr "" +msgstr "Афаил ииашам аформат." #: errtxt.src msgctxt "" @@ -496,7 +496,7 @@ "The file name contains invalid characters.\n" "itemlist.text" msgid "The file name contains invalid characters." -msgstr "" +msgstr "Афаил ахьӡ иаҵанакуеит изымуа асимволқәа." #: errtxt.src msgctxt "" @@ -523,7 +523,7 @@ "The file could not be created.\n" "itemlist.text" msgid "The file could not be created." -msgstr "" +msgstr "Афаил аҧҵара ауам." #: errtxt.src msgctxt "" @@ -550,7 +550,7 @@ "Path to the file does not exist.\n" "itemlist.text" msgid "Path to the file does not exist." -msgstr "" +msgstr "Афаил ахь амҩа ыҟаӡам." #: errtxt.src msgctxt "" @@ -595,7 +595,7 @@ "The wrong password has been entered.\n" "itemlist.text" msgid "The wrong password has been entered." -msgstr "" +msgstr "Иҭагалоуп ииашам ажәамаӡа." #: errtxt.src msgctxt "" @@ -604,7 +604,7 @@ "Error reading file.\n" "itemlist.text" msgid "Error reading file." -msgstr "" +msgstr "Афаил аҧхьара агха." #: errtxt.src msgctxt "" @@ -613,7 +613,7 @@ "The document was opened as read-only.\n" "itemlist.text" msgid "The document was opened as read-only." -msgstr "" +msgstr "Адокумент аартуп аҧхьара мацараз." #: errtxt.src msgctxt "" @@ -622,7 +622,7 @@ "General OLE Error.\n" "itemlist.text" msgid "General OLE Error." -msgstr "" +msgstr "OLE азеиҧш гха." #: errtxt.src msgctxt "" @@ -673,7 +673,7 @@ "General Internet error has occurred.\n" "itemlist.text" msgid "General Internet error has occurred." -msgstr "" +msgstr "аИнтернет азеиҧш гха." #: errtxt.src msgctxt "" @@ -709,7 +709,7 @@ "The input syntax is invalid.\n" "itemlist.text" msgid "The input syntax is invalid." -msgstr "" +msgstr "Ииашам аҭагалара асинтаксис." #: errtxt.src msgctxt "" @@ -739,7 +739,7 @@ "Could not create backup copy.\n" "itemlist.text" msgid "Could not create backup copy." -msgstr "" +msgstr "Арезервтә копиа аҧҵара ауам." #: errtxt.src msgctxt "" @@ -818,7 +818,7 @@ "Invalid data length.\n" "itemlist.text" msgid "Invalid data length." -msgstr "" +msgstr "Ииашам адырқәа раура." #: errtxt.src msgctxt "" @@ -854,7 +854,7 @@ "Wrong checksum.\n" "itemlist.text" msgid "Wrong checksum." -msgstr "" +msgstr "Аконтрольтә еицҵалыҵ иашам." #: errtxt.src msgctxt "" @@ -863,7 +863,7 @@ "Function not possible: write protected.\n" "itemlist.text" msgid "Function not possible: write protected." -msgstr "" +msgstr "Аоперациа анагӡара ауам: аҭаҩра иацәыхьчоуп." #: errtxt.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/svx/source/stbctrls.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/svx/source/stbctrls.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/svx/source/stbctrls.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/svx/source/stbctrls.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n" -"PO-Revision-Date: 2016-12-02 10:00+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-26 15:20+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1480672838.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511709654.000000\n" #: stbctrls.src msgctxt "" @@ -86,7 +86,7 @@ "RID_SVXSTR_DOC_MODIFIED_YES\n" "string.text" msgid "The document has been modified. Click to save the document." -msgstr "" +msgstr "Адокумент ҧсахын. Шәақәыӷәӷәа аиқәырхараз." #: stbctrls.src msgctxt "" @@ -134,7 +134,7 @@ "RID_SVXSTR_ZOOM_IN\n" "string.text" msgid "Zoom In" -msgstr "" +msgstr "Ирдуны" #: stbctrls.src msgctxt "" @@ -142,7 +142,7 @@ "RID_SVXSTR_ZOOM_OUT\n" "string.text" msgid "Zoom Out" -msgstr "" +msgstr "Ирхәыҷны" #: stbctrls.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/svx/source/svdraw.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/svx/source/svdraw.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/svx/source/svdraw.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/svx/source/svdraw.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-30 11:52+0200\n" -"PO-Revision-Date: 2017-07-21 19:02+0000\n" +"PO-Revision-Date: 2017-12-12 10:43+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500663777.000000\n" +"X-POOTLE-MTIME: 1513075421.000000\n" #: svdstr.src msgctxt "" @@ -21,7 +21,7 @@ "STR_ObjNameSingulNONE\n" "string.text" msgid "Drawing object" -msgstr "" +msgstr "Асахьа" #: svdstr.src msgctxt "" @@ -29,7 +29,7 @@ "STR_ObjNamePluralNONE\n" "string.text" msgid "Drawing objects" -msgstr "" +msgstr "Асахьақәа" #: svdstr.src msgctxt "" @@ -645,7 +645,7 @@ "STR_ObjNameSingulGRAFMTF\n" "string.text" msgid "Metafile" -msgstr "" +msgstr "Аметафаил" #: svdstr.src msgctxt "" @@ -653,7 +653,7 @@ "STR_ObjNamePluralGRAFMTF\n" "string.text" msgid "Metafiles" -msgstr "" +msgstr "Аметафаилқәа" #: svdstr.src msgctxt "" @@ -885,7 +885,7 @@ "STR_ObjNamePlural\n" "string.text" msgid "Drawing objects" -msgstr "" +msgstr "Асахьақәа" #: svdstr.src msgctxt "" @@ -901,7 +901,7 @@ "STR_ObjNameSingulPlural\n" "string.text" msgid "Draw object(s)" -msgstr "" +msgstr "Асахьақәа" #: svdstr.src msgctxt "" @@ -957,7 +957,7 @@ "STR_ObjNameSingulObj3d\n" "string.text" msgid "3D object" -msgstr "" +msgstr "3D-обиеқт" #: svdstr.src msgctxt "" @@ -965,7 +965,7 @@ "STR_ObjNamePluralObj3d\n" "string.text" msgid "3D objects" -msgstr "" +msgstr "3D-обиеқтқәа" #: svdstr.src msgctxt "" @@ -1021,7 +1021,7 @@ "STR_EditDelete\n" "string.text" msgid "Delete %1" -msgstr "" +msgstr "Ианыхтәуп %1" #: svdstr.src msgctxt "" @@ -1077,7 +1077,7 @@ "STR_EditResize\n" "string.text" msgid "Resize %1" -msgstr "" +msgstr "Иҧсахтәуп ашәагаа %1" #: svdstr.src msgctxt "" @@ -1157,7 +1157,7 @@ "STR_EditRipUp\n" "string.text" msgid "Undo %1" -msgstr "" +msgstr "Иаҟәыхтәуп %1 " #: svdstr.src msgctxt "" @@ -1229,7 +1229,7 @@ "STR_EditSetStylesheet\n" "string.text" msgid "Apply Styles to %1" -msgstr "" +msgstr "Ихархәатәуп астильқәа %1 аза" #: svdstr.src msgctxt "" @@ -1397,7 +1397,7 @@ "STR_DistributeMarkedObjects\n" "string.text" msgid "Distribute selected objects" -msgstr "" +msgstr "Иеихшатәуп иалху аобиеқтқәа" #: svdstr.src msgctxt "" @@ -1501,7 +1501,7 @@ "STR_DragMethResize\n" "string.text" msgid "Resize %1" -msgstr "" +msgstr "Иҧсахтәуп ашәагаа %1" #: svdstr.src msgctxt "" @@ -1621,7 +1621,7 @@ "STR_DragRectResize\n" "string.text" msgid "Resize %1" -msgstr "" +msgstr "Иҧсахтәуп ашәагаа %1" #: svdstr.src msgctxt "" @@ -1669,7 +1669,7 @@ "STR_ViewMarked\n" "string.text" msgid "%1 selected" -msgstr "" +msgstr "Иалхуп аобиеқт %1" #: svdstr.src msgctxt "" @@ -1709,7 +1709,7 @@ "STR_ViewMarkObjs\n" "string.text" msgid "Mark objects" -msgstr "" +msgstr "Иазгәаҭатәуп аобиеқтқәа" #: svdstr.src msgctxt "" @@ -1789,7 +1789,7 @@ "STR_UndoObjSetText\n" "string.text" msgid "Edit text of %1" -msgstr "" +msgstr "Иҧсахтәуп атеқст %1" #: svdstr.src msgctxt "" @@ -1805,7 +1805,7 @@ "STR_UndoDelPage\n" "string.text" msgid "Delete page" -msgstr "" +msgstr "Ианыхтәуп адаҟьа" #: svdstr.src msgctxt "" @@ -1861,7 +1861,7 @@ "STR_UndoDelLayer\n" "string.text" msgid "Delete layer" -msgstr "" +msgstr "Ианыхтәуп аҿыгҳара" #: svdstr.src msgctxt "" @@ -2013,7 +2013,7 @@ "STR_ItemValFITTOSIZEALLLINES\n" "string.text" msgid "Fit to size (all rows separately) " -msgstr "" +msgstr "Ацәаҳәақәа зегьы хазы." #: svdstr.src msgctxt "" @@ -2549,7 +2549,7 @@ "SIP_XA_FILLBMP_SIZELOG\n" "string.text" msgid "Tile size not in %" -msgstr "" +msgstr "Амозаика ашәагаа %-ла акәымкәа" #: svdstr.src msgctxt "" @@ -3269,7 +3269,7 @@ "SIP_SA_MEASUREFORMATSTRING\n" "string.text" msgid "Dimension value format" -msgstr "" +msgstr "Атеқст ашәагаақәа рформат" #: svdstr.src msgctxt "" @@ -3349,7 +3349,7 @@ "SIP_SA_OBJSIZEPROTECT\n" "string.text" msgid "Protected object size" -msgstr "" +msgstr "Аобиеқт ихьчоу ашәагаа" #: svdstr.src msgctxt "" @@ -3365,7 +3365,7 @@ "SIP_SA_OBJVISIBLE\n" "string.text" msgid "Object, visible" -msgstr "" +msgstr "Иаабо аобиеқт" #: svdstr.src msgctxt "" @@ -3389,7 +3389,7 @@ "SIP_SA_OBJECTNAME\n" "string.text" msgid "Object name" -msgstr "" +msgstr "Аобиеқт ахьӡ" #: svdstr.src msgctxt "" @@ -3509,7 +3509,7 @@ "SIP_SA_RESIZEXONE\n" "string.text" msgid "Resize X, single" -msgstr "" +msgstr "Иҧсахтәуп Х ашәагаа хазы-хазы" #: svdstr.src msgctxt "" @@ -3517,7 +3517,7 @@ "SIP_SA_RESIZEYONE\n" "string.text" msgid "Resize Y, single" -msgstr "" +msgstr "Иҧсахтәуп Y ашәагаа хазы-хазы" #: svdstr.src msgctxt "" @@ -3549,7 +3549,7 @@ "SIP_SA_RESIZEXALL\n" "string.text" msgid "Resize X, complete" -msgstr "" +msgstr "Иҧсахтәуп Х ашәагаақәа ишеибгоу" #: svdstr.src msgctxt "" @@ -3557,7 +3557,7 @@ "SIP_SA_RESIZEYALL\n" "string.text" msgid "Resize Y, complete" -msgstr "" +msgstr "Иҧсахтәуп Y ашәагаақәа ишеибгоу" #: svdstr.src msgctxt "" @@ -3629,7 +3629,7 @@ "SIP_EE_PARA_BULLETSTATE\n" "string.text" msgid "Display bullets" -msgstr "" +msgstr "Иаарҧштәуп амаркерқәа" #: svdstr.src msgctxt "" @@ -3653,7 +3653,7 @@ "SIP_EE_PARA_BULLET\n" "string.text" msgid "Bullets and Numberings" -msgstr "" +msgstr "Амаркерқәеи аномерркреи" #: svdstr.src msgctxt "" @@ -3709,7 +3709,7 @@ "SIP_EE_CHAR_FONTINFO\n" "string.text" msgid "Character set" -msgstr "" +msgstr "Акодркра" #: svdstr.src msgctxt "" @@ -3837,7 +3837,7 @@ "SIP_EE_FEATURE_NOTCONV\n" "string.text" msgid "Non-convertible character" -msgstr "" +msgstr "Зҽызымҧсахуа адырга" #: svdstr.src msgctxt "" @@ -3965,7 +3965,7 @@ "STR_UNDO_COL_DELETE\n" "string.text" msgid "Delete column" -msgstr "" +msgstr "Ианыхтәуп аиҵагыла" #: svdstr.src msgctxt "" @@ -3973,7 +3973,7 @@ "STR_UNDO_ROW_DELETE\n" "string.text" msgid "Delete row" -msgstr "" +msgstr "Ианыхтәуп ацәаҳәа" #: svdstr.src msgctxt "" @@ -3997,7 +3997,7 @@ "STR_TABLE_NUMFORMAT\n" "string.text" msgid "Format cell" -msgstr "" +msgstr "Абларҭақәа рформат" #: svdstr.src msgctxt "" @@ -4021,7 +4021,7 @@ "STR_TABLE_DELETE_CELL_CONTENTS\n" "string.text" msgid "Delete cell contents" -msgstr "" +msgstr "Ианыхтәуп абларҭа иаҵанакуа" #: svdstr.src msgctxt "" @@ -4029,7 +4029,7 @@ "STR_TABLE_STYLE\n" "string.text" msgid "Table style" -msgstr "" +msgstr "Атаблица астиль" #: svdstr.src msgctxt "" @@ -4037,7 +4037,7 @@ "STR_TABLE_STYLE_SETTINGS\n" "string.text" msgid "Table style settings" -msgstr "" +msgstr "Атаблица астиль апараметрқәа" #: svdstr.src msgctxt "" @@ -4045,7 +4045,7 @@ "STR_ObjNameSingulTable\n" "string.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: svdstr.src msgctxt "" @@ -4053,7 +4053,7 @@ "STR_ObjNamePluralTable\n" "string.text" msgid "Tables" -msgstr "" +msgstr "Атаблицақәа" #: svdstr.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/svx/source/tbxctrls.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/svx/source/tbxctrls.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/svx/source/tbxctrls.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/svx/source/tbxctrls.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-29 18:39+0200\n" -"PO-Revision-Date: 2017-07-21 19:03+0000\n" +"PO-Revision-Date: 2017-11-29 10:59+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500663787.000000\n" +"X-POOTLE-MTIME: 1511953197.000000\n" #: colrctrl.src msgctxt "" @@ -517,7 +517,7 @@ "RID_SVXSTR_MOREBULLETS\n" "string.text" msgid "More Bullets..." -msgstr "" +msgstr "Еиҭа амаркерқәа..." #: tbcontrl.src msgctxt "" @@ -541,7 +541,7 @@ "RID_SVXSTR_CLEARFORM\n" "string.text" msgid "Clear formatting" -msgstr "" +msgstr "Ирыцқьатәуп аформатркра" #: tbcontrl.src msgctxt "" @@ -549,7 +549,7 @@ "RID_SVXSTR_MORE_STYLES\n" "string.text" msgid "More Styles..." -msgstr "" +msgstr "Еиҳаны астильқәа..." #: tbcontrl.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/svx/source/toolbars.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/svx/source/toolbars.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/svx/source/toolbars.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/svx/source/toolbars.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2017-07-21 19:03+0000\n" +"PO-Revision-Date: 2017-11-27 09:46+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500663793.000000\n" +"X-POOTLE-MTIME: 1511775972.000000\n" #: extrusionbar.src msgctxt "" @@ -21,7 +21,7 @@ "RID_SVX_EXTRUSION_BAR\n" "string.text" msgid "Extrusion" -msgstr "" +msgstr "Аекструзиа" #: extrusionbar.src msgctxt "" @@ -37,7 +37,7 @@ "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_DOWN\n" "string.text" msgid "Tilt Down" -msgstr "" +msgstr "Инарҳәтәуп ҵаҟа" #: extrusionbar.src msgctxt "" @@ -45,7 +45,7 @@ "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_UP\n" "string.text" msgid "Tilt Up" -msgstr "" +msgstr "Инарҳәтәуп хыхь" #: extrusionbar.src msgctxt "" @@ -53,7 +53,7 @@ "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_LEFT\n" "string.text" msgid "Tilt Left" -msgstr "" +msgstr "Инарҳәтәуп армарахь" #: extrusionbar.src msgctxt "" @@ -61,7 +61,7 @@ "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_RIGHT\n" "string.text" msgid "Tilt Right" -msgstr "" +msgstr "Инарҳәтәуп арӷьарахь" #: extrusionbar.src msgctxt "" @@ -133,7 +133,7 @@ "RID_SVXSTR_UNDO_APPLY_FONTWORK_SHAPE\n" "string.text" msgid "Apply Fontwork Shape" -msgstr "" +msgstr "Ихархәатәуп атеқсттә еффект аформа" #: fontworkbar.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/svx/uiconfig/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/svx/uiconfig/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/svx/uiconfig/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/svx/uiconfig/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-17 15:41+0200\n" -"PO-Revision-Date: 2017-07-21 19:03+0000\n" +"PO-Revision-Date: 2017-12-12 10:44+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500663822.000000\n" +"X-POOTLE-MTIME: 1513075461.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -67,7 +67,7 @@ "label\n" "string.text" msgid "Edit Comment..." -msgstr "" +msgstr "Иҧсахтәуп акомментари..." #: acceptrejectchangesdialog.ui msgctxt "" @@ -85,7 +85,7 @@ "label\n" "string.text" msgid "Action" -msgstr "" +msgstr "Аҟаҵара" #: acceptrejectchangesdialog.ui msgctxt "" @@ -94,7 +94,7 @@ "label\n" "string.text" msgid "Position" -msgstr "" +msgstr "Аҭыҧ" #: acceptrejectchangesdialog.ui msgctxt "" @@ -103,7 +103,7 @@ "label\n" "string.text" msgid "Author" -msgstr "" +msgstr "Автор" #: acceptrejectchangesdialog.ui msgctxt "" @@ -112,7 +112,7 @@ "label\n" "string.text" msgid "Date" -msgstr "" +msgstr "Арыцхә" #: acceptrejectchangesdialog.ui msgctxt "" @@ -121,7 +121,7 @@ "label\n" "string.text" msgid "Description" -msgstr "" +msgstr "Ахҳәаа" #: acceptrejectchangesdialog.ui msgctxt "" @@ -130,7 +130,7 @@ "label\n" "string.text" msgid "Edit Comment..." -msgstr "" +msgstr "Иҧсахтәуп акомментари..." #: acceptrejectchangesdialog.ui msgctxt "" @@ -148,7 +148,7 @@ "label\n" "string.text" msgid "Action" -msgstr "" +msgstr "Аҟаҵара" #: acceptrejectchangesdialog.ui msgctxt "" @@ -157,7 +157,7 @@ "label\n" "string.text" msgid "Author" -msgstr "" +msgstr "Автор" #: acceptrejectchangesdialog.ui msgctxt "" @@ -166,7 +166,7 @@ "label\n" "string.text" msgid "Date" -msgstr "" +msgstr "Арыцхә" #: acceptrejectchangesdialog.ui msgctxt "" @@ -175,7 +175,7 @@ "label\n" "string.text" msgid "Comment" -msgstr "" +msgstr "Акомментари" #: acceptrejectchangesdialog.ui msgctxt "" @@ -202,7 +202,7 @@ "label\n" "string.text" msgid "_Condition:" -msgstr "" +msgstr "Аҭагылазаашьа:" #: addconditiondialog.ui msgctxt "" @@ -211,7 +211,7 @@ "label\n" "string.text" msgid "_Result:" -msgstr "" +msgstr "Алҵшәа:" #: addconditiondialog.ui msgctxt "" @@ -229,7 +229,7 @@ "label\n" "string.text" msgid "_Name:" -msgstr "" +msgstr "Ахьӡ:" #: adddataitemdialog.ui msgctxt "" @@ -247,7 +247,7 @@ "label\n" "string.text" msgid "_Add..." -msgstr "" +msgstr "_Иацҵатәуп..." #: adddataitemdialog.ui msgctxt "" @@ -256,7 +256,7 @@ "label\n" "string.text" msgid "Item" -msgstr "" +msgstr "Аелемент" #: adddataitemdialog.ui msgctxt "" @@ -265,7 +265,7 @@ "label\n" "string.text" msgid "_Data type:" -msgstr "" +msgstr "Адырқәа ртип:" #: adddataitemdialog.ui msgctxt "" @@ -274,7 +274,7 @@ "label\n" "string.text" msgid "_Required" -msgstr "" +msgstr "Ихымҧадатәуп" #: adddataitemdialog.ui msgctxt "" @@ -283,7 +283,7 @@ "label\n" "string.text" msgid "Condition" -msgstr "" +msgstr "Аҭагылазаашьа" #: adddataitemdialog.ui msgctxt "" @@ -301,7 +301,7 @@ "label\n" "string.text" msgid "Condition" -msgstr "" +msgstr "Аҭагылазаашьа" #: adddataitemdialog.ui msgctxt "" @@ -319,7 +319,7 @@ "label\n" "string.text" msgid "Read-_only" -msgstr "" +msgstr "Аҧхьара мацараз" #: adddataitemdialog.ui msgctxt "" @@ -337,7 +337,7 @@ "label\n" "string.text" msgid "Condition" -msgstr "" +msgstr "Аҭагылазаашьа" #: adddataitemdialog.ui msgctxt "" @@ -346,7 +346,7 @@ "label\n" "string.text" msgid "Condition" -msgstr "" +msgstr "Аҭагылазаашьа" #: adddataitemdialog.ui msgctxt "" @@ -355,7 +355,7 @@ "label\n" "string.text" msgid "Condition" -msgstr "" +msgstr "Аҭагылазаашьа" #: adddataitemdialog.ui msgctxt "" @@ -364,7 +364,7 @@ "label\n" "string.text" msgid "Settings" -msgstr "" +msgstr "Архиарақәа" #: addinstancedialog.ui msgctxt "" @@ -382,7 +382,7 @@ "label\n" "string.text" msgid "_Name:" -msgstr "" +msgstr "Ахьӡ:" #: addinstancedialog.ui msgctxt "" @@ -400,7 +400,7 @@ "label\n" "string.text" msgid "_URL:" -msgstr "" +msgstr "URL:" #: addinstancedialog.ui msgctxt "" @@ -409,7 +409,7 @@ "label\n" "string.text" msgid "_Browse..." -msgstr "" +msgstr "_Аҭыҧхәаҧшра..." #: addinstancedialog.ui msgctxt "" @@ -427,7 +427,7 @@ "title\n" "string.text" msgid "Add Model" -msgstr "" +msgstr "Иацҵатәуп амодель" #: addmodeldialog.ui msgctxt "" @@ -445,7 +445,7 @@ "label\n" "string.text" msgid "_Name:" -msgstr "" +msgstr "Ахьӡ:" #: addmodeldialog.ui msgctxt "" @@ -454,7 +454,7 @@ "label\n" "string.text" msgid "Edit Model" -msgstr "" +msgstr "Амодель аредакциазура" #: addnamespacedialog.ui msgctxt "" @@ -472,7 +472,7 @@ "label\n" "string.text" msgid "_Prefix:" -msgstr "" +msgstr "Апрефикс:" #: addnamespacedialog.ui msgctxt "" @@ -481,7 +481,7 @@ "label\n" "string.text" msgid "_URL:" -msgstr "" +msgstr "URL:" #: addnamespacedialog.ui msgctxt "" @@ -508,7 +508,7 @@ "label\n" "string.text" msgid "_Name:" -msgstr "" +msgstr "Ахьӡ:" #: addsubmissiondialog.ui msgctxt "" @@ -526,7 +526,7 @@ "label\n" "string.text" msgid "_Add..." -msgstr "" +msgstr "_Иацҵатәуп..." #: addsubmissiondialog.ui msgctxt "" @@ -535,7 +535,7 @@ "label\n" "string.text" msgid "_Action:" -msgstr "" +msgstr "Аҟаҵара:" #: addsubmissiondialog.ui msgctxt "" @@ -544,7 +544,7 @@ "label\n" "string.text" msgid "_Method:" -msgstr "" +msgstr "Аметод:" #: addsubmissiondialog.ui msgctxt "" @@ -553,7 +553,7 @@ "label\n" "string.text" msgid "_Binding:" -msgstr "" +msgstr "Аидҳәалара:" #: addsubmissiondialog.ui msgctxt "" @@ -580,7 +580,7 @@ "label\n" "string.text" msgid "Base text" -msgstr "" +msgstr "Ихадоу атеқст" #: asianphoneticguidedialog.ui msgctxt "" @@ -598,7 +598,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Base text" -msgstr "" +msgstr "Ихадоу атеқст" #: asianphoneticguidedialog.ui msgctxt "" @@ -616,7 +616,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Base text" -msgstr "" +msgstr "Ихадоу атеқст" #: asianphoneticguidedialog.ui msgctxt "" @@ -643,7 +643,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Base text" -msgstr "" +msgstr "Ихадоу атеқст" #: asianphoneticguidedialog.ui msgctxt "" @@ -652,7 +652,7 @@ "label\n" "string.text" msgid "Alignment:" -msgstr "" +msgstr "Аиҟаратәра:" #: asianphoneticguidedialog.ui msgctxt "" @@ -661,7 +661,7 @@ "label\n" "string.text" msgid "Position:" -msgstr "" +msgstr "Аҭыҧ:" #: asianphoneticguidedialog.ui msgctxt "" @@ -679,7 +679,7 @@ "label\n" "string.text" msgid "Styles" -msgstr "" +msgstr "Астильқәа" #: asianphoneticguidedialog.ui msgctxt "" @@ -697,7 +697,7 @@ "1\n" "stringlist.text" msgid "Center" -msgstr "" +msgstr "Ацентр ала" #: asianphoneticguidedialog.ui msgctxt "" @@ -715,7 +715,7 @@ "3\n" "stringlist.text" msgid "0 1 0" -msgstr "" +msgstr "0 1 0" #: asianphoneticguidedialog.ui msgctxt "" @@ -724,7 +724,7 @@ "4\n" "stringlist.text" msgid "1 2 1" -msgstr "" +msgstr "1 2 1" #: asianphoneticguidedialog.ui msgctxt "" @@ -733,7 +733,7 @@ "0\n" "stringlist.text" msgid "Top" -msgstr "" +msgstr "Хыхьла" #: asianphoneticguidedialog.ui msgctxt "" @@ -742,7 +742,7 @@ "1\n" "stringlist.text" msgid "Bottom" -msgstr "" +msgstr "Ҵаҟала" #: asianphoneticguidedialog.ui msgctxt "" @@ -751,7 +751,7 @@ "label\n" "string.text" msgid "Preview:" -msgstr "" +msgstr "Ахәаҧшра:" #: cellmenu.ui msgctxt "" @@ -760,7 +760,7 @@ "label\n" "string.text" msgid "_Copy" -msgstr "" +msgstr "Акопиа ахыхтәуп" #: chineseconversiondialog.ui msgctxt "" @@ -814,7 +814,7 @@ "label\n" "string.text" msgid "_Edit Terms..." -msgstr "" +msgstr "Атерминқәа рыриашара..." #: chineseconversiondialog.ui msgctxt "" @@ -823,7 +823,7 @@ "label\n" "string.text" msgid "Common Terms" -msgstr "" +msgstr "Ихадоу атерминқәа" #: chinesedictionary.ui msgctxt "" @@ -832,7 +832,7 @@ "title\n" "string.text" msgid "Edit Dictionary" -msgstr "" +msgstr "Ажәар аредакциазура" #: chinesedictionary.ui msgctxt "" @@ -868,7 +868,7 @@ "label\n" "string.text" msgid "Term" -msgstr "" +msgstr "Атермин" #: chinesedictionary.ui msgctxt "" @@ -886,7 +886,7 @@ "label\n" "string.text" msgid "Property" -msgstr "" +msgstr "Аҷыдаҟазшьа" #: chinesedictionary.ui msgctxt "" @@ -895,7 +895,7 @@ "0\n" "stringlist.text" msgid "Other" -msgstr "" +msgstr "Егьырҭқәа" #: chinesedictionary.ui msgctxt "" @@ -913,7 +913,7 @@ "2\n" "stringlist.text" msgid "First name" -msgstr "" +msgstr "Ахьӡ" #: chinesedictionary.ui msgctxt "" @@ -922,7 +922,7 @@ "3\n" "stringlist.text" msgid "Last name" -msgstr "" +msgstr "Ажәла" #: chinesedictionary.ui msgctxt "" @@ -931,7 +931,7 @@ "4\n" "stringlist.text" msgid "Title" -msgstr "" +msgstr "Ахы" #: chinesedictionary.ui msgctxt "" @@ -940,7 +940,7 @@ "5\n" "stringlist.text" msgid "Status" -msgstr "" +msgstr "Аҭагылазаашьа" #: chinesedictionary.ui msgctxt "" @@ -949,7 +949,7 @@ "6\n" "stringlist.text" msgid "Place name" -msgstr "" +msgstr "Аҭыҧ ахьӡ" #: chinesedictionary.ui msgctxt "" @@ -976,7 +976,7 @@ "9\n" "stringlist.text" msgid "Idiom" -msgstr "" +msgstr "Аидиома" #: chinesedictionary.ui msgctxt "" @@ -985,7 +985,7 @@ "10\n" "stringlist.text" msgid "Abbreviation" -msgstr "" +msgstr "Аркьаҿра" #: chinesedictionary.ui msgctxt "" @@ -994,7 +994,7 @@ "11\n" "stringlist.text" msgid "Numerical" -msgstr "" +msgstr "Ахыҧхьаӡаратә" #: chinesedictionary.ui msgctxt "" @@ -1030,7 +1030,7 @@ "label\n" "string.text" msgid "_Modify" -msgstr "" +msgstr "Ихархәатәуп" #: colorwindow.ui msgctxt "" @@ -1039,7 +1039,7 @@ "label\n" "string.text" msgid "None" -msgstr "" +msgstr "Мап" #: colorwindow.ui msgctxt "" @@ -1057,7 +1057,7 @@ "label\n" "string.text" msgid "Custom Color…" -msgstr "" +msgstr "Аҧштәы алхра..." #: colsmenu.ui msgctxt "" @@ -1066,7 +1066,7 @@ "label\n" "string.text" msgid "Insert _Column" -msgstr "" +msgstr "Ибжьаргылатәуп аиҵагыла" #: colsmenu.ui msgctxt "" @@ -1174,7 +1174,7 @@ "label\n" "string.text" msgid "_Replace with" -msgstr "" +msgstr "Иҧсахтәуп ала" #: colsmenu.ui msgctxt "" @@ -1210,7 +1210,7 @@ "label\n" "string.text" msgid "List Box" -msgstr "" +msgstr "Ахьӡынҵа" #: colsmenu.ui msgctxt "" @@ -1282,7 +1282,7 @@ "label\n" "string.text" msgid "Delete column" -msgstr "" +msgstr "Ианыхтәуп аиҵагыла" #: colsmenu.ui msgctxt "" @@ -1489,7 +1489,7 @@ "label\n" "string.text" msgid "Image size:" -msgstr "" +msgstr "Асахьа ашәагаа:" #: compressgraphicdialog.ui msgctxt "" @@ -1516,7 +1516,7 @@ "label\n" "string.text" msgid "Image Information" -msgstr "" +msgstr "Асахьа иазку аинформациа" #: compressgraphicdialog.ui msgctxt "" @@ -1642,7 +1642,7 @@ "label\n" "string.text" msgid "_File Selection" -msgstr "" +msgstr "Афаил алхра" #: convertmenu.ui msgctxt "" @@ -1759,7 +1759,7 @@ "label\n" "string.text" msgid "_Don’t Send" -msgstr "" +msgstr "_Идәықәҵатәӡам" #: crashreportdlg.ui msgctxt "" @@ -1822,7 +1822,7 @@ "label\n" "string.text" msgid "_Models" -msgstr "" +msgstr "Амодельқәа" #: datanavigator.ui msgctxt "" @@ -1876,7 +1876,7 @@ "label\n" "string.text" msgid "_Edit..." -msgstr "" +msgstr "Ариашара..." #: datanavigator.ui msgctxt "" @@ -1912,7 +1912,7 @@ "label\n" "string.text" msgid "_Edit..." -msgstr "" +msgstr "_Ариашара..." #: datanavigator.ui msgctxt "" @@ -1984,7 +1984,7 @@ "label\n" "string.text" msgid "Flowchart" -msgstr "" +msgstr "Аблок-схема" #: defaultshapespanel.ui msgctxt "" @@ -2011,7 +2011,7 @@ "label\n" "string.text" msgid "3D Objects" -msgstr "" +msgstr "3D-обиеқтқәа" #: deletefooterdialog.ui msgctxt "" @@ -2047,7 +2047,7 @@ "title\n" "string.text" msgid "Delete header?" -msgstr "" +msgstr "Ианыхтәума хыхьтәи аколонтитул?" #: deleteheaderdialog.ui msgctxt "" @@ -2650,7 +2650,7 @@ "label\n" "string.text" msgid "_Object color" -msgstr "" +msgstr "Аобиеқт аҧштәы" #: docking3deffects.ui msgctxt "" @@ -2794,7 +2794,7 @@ "tooltip_text\n" "string.text" msgid "Update" -msgstr "" +msgstr "Ирҿыцтәуп" #: docking3deffects.ui msgctxt "" @@ -3118,7 +3118,7 @@ "tooltip_text\n" "string.text" msgid "AutoSize Text" -msgstr "" +msgstr "Атеқст автошәагаа" #: dockingfontwork.ui msgctxt "" @@ -3226,7 +3226,7 @@ "label\n" "string.text" msgid "_Save" -msgstr "Иеиқәырхатәуп" +msgstr "Еиқәырхатәуп" #: docrecoverybrokendialog.ui msgctxt "" @@ -3256,7 +3256,7 @@ "label\n" "string.text" msgid "_Save to:" -msgstr "Иеиқәырхатәуп абра:" +msgstr "Еиқәырхатәуп абра:" #: docrecoverybrokendialog.ui msgctxt "" @@ -3274,7 +3274,7 @@ "title\n" "string.text" msgid "Documents Are Being Saved" -msgstr "" +msgstr "Адокументқәа еиқәырхахоит" #: docrecoveryprogressdialog.ui msgctxt "" @@ -3409,7 +3409,7 @@ "label\n" "string.text" msgid "_Delete" -msgstr "" +msgstr "Ианыхтәуп" #: filtermenu.ui msgctxt "" @@ -3418,7 +3418,7 @@ "label\n" "string.text" msgid "_Edit" -msgstr "" +msgstr "Ариашара" #: filtermenu.ui msgctxt "" @@ -3544,7 +3544,7 @@ "label\n" "string.text" msgid "Find Pre_vious" -msgstr "" +msgstr "Аҧхьатәи" #: findreplacedialog.ui msgctxt "" @@ -3580,7 +3580,7 @@ "label\n" "string.text" msgid "C_urrent selection only" -msgstr "" +msgstr "_Уажәтәи алкаара мацара" #: findreplacedialog.ui msgctxt "" @@ -3616,7 +3616,7 @@ "label\n" "string.text" msgid "_No Format" -msgstr "" +msgstr "Форматда" #: findreplacedialog.ui msgctxt "" @@ -3931,7 +3931,7 @@ "label\n" "string.text" msgid "Apply" -msgstr "" +msgstr "Ихархәатәуп" #: floatingcontour.ui msgctxt "" @@ -3949,7 +3949,7 @@ "label\n" "string.text" msgid "Select" -msgstr "" +msgstr "Иалхтәуп" #: floatingcontour.ui msgctxt "" @@ -3985,7 +3985,7 @@ "label\n" "string.text" msgid "Edit Points" -msgstr "" +msgstr "Агеометриа аҧсахра" #: floatingcontour.ui msgctxt "" @@ -4030,7 +4030,7 @@ "label\n" "string.text" msgid "Undo " -msgstr "" +msgstr "Иаҟәыхтәуп " #: floatingcontour.ui msgctxt "" @@ -4039,7 +4039,7 @@ "label\n" "string.text" msgid "Redo" -msgstr "" +msgstr "Ирхынҳәтәуп" #: floatingcontour.ui msgctxt "" @@ -4138,7 +4138,7 @@ "label\n" "string.text" msgid "Edit" -msgstr "" +msgstr "Иҧсахтәуп" #: formdatamenu.ui msgctxt "" @@ -4147,7 +4147,7 @@ "label\n" "string.text" msgid "Delete" -msgstr "" +msgstr "Ианыхтәуп" #: formlinkwarndialog.ui msgctxt "" @@ -4177,7 +4177,7 @@ "label\n" "string.text" msgid "_Edit" -msgstr "" +msgstr "Ариашара" #: formnavimenu.ui msgctxt "" @@ -4186,7 +4186,7 @@ "label\n" "string.text" msgid "_New" -msgstr "" +msgstr "Иаҧҵатәуп" #: formnavimenu.ui msgctxt "" @@ -4195,7 +4195,7 @@ "label\n" "string.text" msgid "Form" -msgstr "" +msgstr "Аформа" #: formnavimenu.ui msgctxt "" @@ -4249,7 +4249,7 @@ "label\n" "string.text" msgid "_Delete" -msgstr "" +msgstr "Ианыхтәуп" #: formnavimenu.ui msgctxt "" @@ -4357,7 +4357,7 @@ "label\n" "string.text" msgid "Selection count" -msgstr "" +msgstr "Алкаарақәа рхыҧхьаӡара" #: functionmenu.ui msgctxt "" @@ -4375,7 +4375,7 @@ "label\n" "string.text" msgid "Update" -msgstr "" +msgstr "Ирҿыцтәуп" #: gallerymenu1.ui msgctxt "" @@ -4384,7 +4384,7 @@ "label\n" "string.text" msgid "_Delete" -msgstr "" +msgstr "Ианыхтәуп" #: gallerymenu1.ui msgctxt "" @@ -4456,7 +4456,7 @@ "label\n" "string.text" msgid "_Delete" -msgstr "" +msgstr "Ианыхтәуп" #: gallerymenu2.ui msgctxt "" @@ -4582,7 +4582,7 @@ "label\n" "string.text" msgid "_Edit..." -msgstr "" +msgstr "Ариашара..." #: headfootformatpage.ui msgctxt "" @@ -4618,7 +4618,7 @@ "label\n" "string.text" msgid "Apply" -msgstr "" +msgstr "Ихархәатәуп" #: imapdialog.ui msgctxt "" @@ -4627,7 +4627,7 @@ "label\n" "string.text" msgid "Open..." -msgstr "" +msgstr "Иаарттәуп..." #: imapdialog.ui msgctxt "" @@ -4636,7 +4636,7 @@ "label\n" "string.text" msgid "Save..." -msgstr "Иеиқәырхатәуп..." +msgstr "Еиқәырхатәуп..." #: imapdialog.ui msgctxt "" @@ -4654,7 +4654,7 @@ "label\n" "string.text" msgid "Select" -msgstr "" +msgstr "Иалхтәуп" #: imapdialog.ui msgctxt "" @@ -4699,7 +4699,7 @@ "label\n" "string.text" msgid "Edit Points" -msgstr "" +msgstr "Агеометриа аҧсахра" #: imapdialog.ui msgctxt "" @@ -4735,7 +4735,7 @@ "label\n" "string.text" msgid "Undo " -msgstr "" +msgstr "Иаҟәыхтәуп " #: imapdialog.ui msgctxt "" @@ -4744,7 +4744,7 @@ "label\n" "string.text" msgid "Redo" -msgstr "" +msgstr "Ирхынҳәтәуп" #: imapdialog.ui msgctxt "" @@ -4879,7 +4879,7 @@ "label\n" "string.text" msgid "Select _All" -msgstr "" +msgstr "Иалкаатәуп зегьы" #: imapmenu.ui msgctxt "" @@ -4888,7 +4888,7 @@ "label\n" "string.text" msgid "_Delete" -msgstr "" +msgstr "Ианыхтәуп" #: linkwarndialog.ui msgctxt "" @@ -4924,7 +4924,7 @@ "label\n" "string.text" msgid "_Keep Link" -msgstr "" +msgstr "_Иааныжьтәуп аимадара" #: linkwarndialog.ui msgctxt "" @@ -5005,7 +5005,7 @@ "label\n" "string.text" msgid "_Edit..." -msgstr "" +msgstr "Ариашара..." #: namespacedialog.ui msgctxt "" @@ -5410,7 +5410,7 @@ "tooltip_text\n" "string.text" msgid "Above Paragraph Spacing" -msgstr "" +msgstr "Аинтервал абзац аҧхьа" #: paraulspacing.ui msgctxt "" @@ -5419,7 +5419,7 @@ "tooltip_text\n" "string.text" msgid "Below Paragraph Spacing" -msgstr "" +msgstr "Аинтервал абзац ашьҭахь" #: passwd.ui msgctxt "" @@ -5473,7 +5473,7 @@ "label\n" "string.text" msgid "New Password" -msgstr "" +msgstr "Ажәамаӡа ҿыц" #: presetmenu.ui msgctxt "" @@ -5491,7 +5491,7 @@ "label\n" "string.text" msgid "Delete" -msgstr "" +msgstr "Ианыхтәуп" #: profileexporteddialog.ui msgctxt "" @@ -5500,7 +5500,7 @@ "title\n" "string.text" msgid "Profile exported" -msgstr "" +msgstr "Апрофиль експортуп" #: profileexporteddialog.ui msgctxt "" @@ -5527,7 +5527,7 @@ "title\n" "string.text" msgid "Delete the contour?" -msgstr "" +msgstr "Ианыхтәума аконтур?" #: querydeletecontourdialog.ui msgctxt "" @@ -5556,7 +5556,7 @@ "title\n" "string.text" msgid "Delete this object?" -msgstr "" +msgstr "Ианыхтәума абри аобиеқт?" #: querydeleteobjectdialog.ui msgctxt "" @@ -5574,7 +5574,7 @@ "title\n" "string.text" msgid "Delete this theme?" -msgstr "" +msgstr "Ианыхтәума абри атема?" #: querydeletethemedialog.ui msgctxt "" @@ -5610,7 +5610,7 @@ "secondary_text\n" "string.text" msgid "Do you want to save the changes?" -msgstr "" +msgstr "Еиқәырхатәума аҧсахрақәа?" #: querynewcontourdialog.ui msgctxt "" @@ -5637,7 +5637,7 @@ "title\n" "string.text" msgid "Save contour changes?" -msgstr "Иеиқәырхатәума аконтур аҧсахрақәа?" +msgstr "Еиқәырхатәума аконтур аҧсахрақәа?" #: querysavecontchangesdialog.ui msgctxt "" @@ -5655,7 +5655,7 @@ "secondary_text\n" "string.text" msgid "Do you want to save the changes?" -msgstr "Иеиқәырхатәума аҧсахрақәа?" +msgstr "Еиқәырхатәума аҧсахрақәа?" #: querysaveimagemapchangesdialog.ui msgctxt "" @@ -5682,7 +5682,7 @@ "secondary_text\n" "string.text" msgid "Do you want to save the changes?" -msgstr "" +msgstr "Еиқәырхатәума аҧсахрақәа?" #: queryunlinkgraphicsdialog.ui msgctxt "" @@ -6006,7 +6006,7 @@ "label\n" "string.text" msgid "Delete Rows" -msgstr "" +msgstr "Ианыхтәуп ацәаҳәақәа" #: rowsmenu.ui msgctxt "" @@ -6015,7 +6015,7 @@ "label\n" "string.text" msgid "Save Record" -msgstr "Иеиқәырхатәуп анҵамҭа" +msgstr "Еиқәырхатәуп анҵамҭа" #: rowsmenu.ui msgctxt "" @@ -6024,7 +6024,7 @@ "label\n" "string.text" msgid "Undo: Data entry" -msgstr "" +msgstr "Иаҟәыхтәуп: адырқәа рҭагалара" #: rulermenu.ui msgctxt "" @@ -6114,7 +6114,7 @@ "label\n" "string.text" msgid "Char" -msgstr "" +msgstr "Асимвол" #: rulermenu.ui msgctxt "" @@ -6353,7 +6353,7 @@ "text\n" "string.text" msgid "Do you want to save your changes?" -msgstr "Иеиқәырхатәума аҧсахрақәа?" +msgstr "Еиқәырхатәума аҧсахрақәа?" #: savemodifieddialog.ui msgctxt "" @@ -6398,7 +6398,7 @@ "label\n" "string.text" msgid "Block selection" -msgstr "" +msgstr "Блокла алкаара" #: sidebararea.ui msgctxt "" @@ -6425,7 +6425,7 @@ "tooltip_text\n" "string.text" msgid "Select the color to apply." -msgstr "" +msgstr "Иалышәх аҧштәы." #: sidebararea.ui msgctxt "" @@ -6434,7 +6434,7 @@ "tooltip_text\n" "string.text" msgid "Select the effect to apply." -msgstr "" +msgstr "Иалышәх аеффект" #: sidebararea.ui msgctxt "" @@ -6488,7 +6488,7 @@ "tooltip_text\n" "string.text" msgid "Select the gradient style." -msgstr "" +msgstr "Аградиент астиль алхра." #: sidebararea.ui msgctxt "" @@ -6560,7 +6560,7 @@ "label\n" "string.text" msgid "_Import" -msgstr "" +msgstr "Аимпорт" #: sidebararea.ui msgctxt "" @@ -6569,7 +6569,7 @@ "tooltip_text\n" "string.text" msgid "Select the gradient angle." -msgstr "" +msgstr "Аградиент анаара алхра." #: sidebararea.ui msgctxt "" @@ -6920,7 +6920,7 @@ "tooltip_text\n" "string.text" msgid "Select the style of the line." -msgstr "" +msgstr "Иалышәх аҵаӷәа астиль." #: sidebarline.ui msgctxt "" @@ -6983,7 +6983,7 @@ "tooltip_text\n" "string.text" msgid "Select the color of the line." -msgstr "" +msgstr "Иалышәх аҵәаӷәа аҧштәы." #: sidebarline.ui msgctxt "" @@ -6992,7 +6992,7 @@ "tooltip_text\n" "string.text" msgid "Select the color of the line." -msgstr "" +msgstr "Иалышәх аҵәаӷәа аҧштәы." #: sidebarline.ui msgctxt "" @@ -7037,7 +7037,7 @@ "tooltip_text\n" "string.text" msgid "Select the style of the edge connections." -msgstr "" +msgstr "Иалышәх аиҧшьрақәа рстиль." #: sidebarline.ui msgctxt "" @@ -7100,7 +7100,7 @@ "tooltip_text\n" "string.text" msgid "Select the style of the line caps." -msgstr "" +msgstr "Иалышәх аҵәаӷәа анҵәамҭа астиль." #: sidebarline.ui msgctxt "" @@ -7145,7 +7145,7 @@ "tooltip_text\n" "string.text" msgid "Bullets and Numbering" -msgstr "" +msgstr "Амаркерқәеи аномерркреи" #: sidebarparagraph.ui msgctxt "" @@ -7190,7 +7190,7 @@ "tooltip_text\n" "string.text" msgid "Above Paragraph Spacing" -msgstr "" +msgstr "Аинтервал абзац аҧхьа" #: sidebarparagraph.ui msgctxt "" @@ -7199,7 +7199,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Above Paragraph Spacing" -msgstr "" +msgstr "Аинтервал абзац аҧхьа" #: sidebarparagraph.ui msgctxt "" @@ -7208,7 +7208,7 @@ "tooltip_text\n" "string.text" msgid "Below Paragraph Spacing" -msgstr "" +msgstr "Аинтервал абзац ашьҭахь" #: sidebarparagraph.ui msgctxt "" @@ -7217,7 +7217,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Below Paragraph Spacing" -msgstr "" +msgstr "Аинтервал абзац ашьҭахь" #: sidebarparagraph.ui msgctxt "" @@ -7334,7 +7334,7 @@ "tooltip_text\n" "string.text" msgid "Paragraph Background Color" -msgstr "" +msgstr "Абзац аҿаҧшыра аҧштәы" #: sidebarpossize.ui msgctxt "" @@ -7406,7 +7406,7 @@ "tooltip_text\n" "string.text" msgid "Enter a width for the selected object." -msgstr "" +msgstr "Иашәырба иалху аобиеқт аҭбаара." #: sidebarpossize.ui msgctxt "" @@ -7433,7 +7433,7 @@ "tooltip_text\n" "string.text" msgid "Enter a height for the selected object." -msgstr "" +msgstr "Иашәырба иалху аобиеқт аҳаракыра." #: sidebarpossize.ui msgctxt "" @@ -7487,7 +7487,7 @@ "tooltip_text\n" "string.text" msgid "Select the angle for rotation." -msgstr "" +msgstr "Иашәырба агьежьра акәакь." #: sidebarpossize.ui msgctxt "" @@ -7577,7 +7577,7 @@ "label\n" "string.text" msgid "Edit Style..." -msgstr "" +msgstr "Иҧсахтәуп астиль..." #: textcharacterspacingcontrol.ui msgctxt "" @@ -7658,7 +7658,7 @@ "title\n" "string.text" msgid "Character" -msgstr "" +msgstr "Асимволқәа" #: textcontrolchardialog.ui msgctxt "" @@ -7694,7 +7694,7 @@ "title\n" "string.text" msgid "Paragraph" -msgstr "" +msgstr "Абзац" #: textcontrolparadialog.ui msgctxt "" @@ -7874,7 +7874,7 @@ "label\n" "string.text" msgid "Edit" -msgstr "" +msgstr "Иҧсахтәуп" #: xformspage.ui msgctxt "" @@ -7883,7 +7883,7 @@ "label\n" "string.text" msgid "Delete" -msgstr "" +msgstr "Ианыхтәуп" #: xmlsecstatmenu.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/core/layout.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/core/layout.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/core/layout.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/core/layout.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n" -"PO-Revision-Date: 2014-11-02 19:11+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-21 10:06+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1414955510.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511258762.000000\n" #: pagefrm.src msgctxt "" @@ -21,4 +21,4 @@ "STR_COLUMN_BREAK\n" "string.text" msgid "Manual Column Break" -msgstr "" +msgstr "Аиҵаҩ аимҟьара" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/core/undo.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/core/undo.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/core/undo.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/core/undo.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-06-20 13:56+0200\n" -"PO-Revision-Date: 2017-09-18 11:11+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-29 10:36+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1505733079.000000\n" +"X-POOTLE-MTIME: 1511951791.000000\n" #: undo.src msgctxt "" @@ -21,7 +21,7 @@ "STR_CANT_UNDO\n" "string.text" msgid "not possible" -msgstr "" +msgstr "изалшом" #: undo.src msgctxt "" @@ -29,7 +29,7 @@ "STR_DELETE_UNDO\n" "string.text" msgid "Delete $1" -msgstr "" +msgstr "Ианыхтәуп $1" #: undo.src msgctxt "" @@ -37,7 +37,7 @@ "STR_INSERT_UNDO\n" "string.text" msgid "Insert $1" -msgstr "" +msgstr "Ибжьаргылатәуп $1" #: undo.src msgctxt "" @@ -45,7 +45,7 @@ "STR_OVR_UNDO\n" "string.text" msgid "Overwrite: $1" -msgstr "" +msgstr "Ихҩылаатәуп: $1" #: undo.src msgctxt "" @@ -53,7 +53,7 @@ "STR_SPLITNODE_UNDO\n" "string.text" msgid "New Paragraph" -msgstr "" +msgstr "Абзац ҿыц" #: undo.src msgctxt "" @@ -61,7 +61,7 @@ "STR_MOVE_UNDO\n" "string.text" msgid "Move" -msgstr "" +msgstr "Ииагатәуп" #: undo.src msgctxt "" @@ -69,7 +69,7 @@ "STR_INSATTR_UNDO\n" "string.text" msgid "Apply attributes" -msgstr "" +msgstr "Ихархәатәуп атрибутқәа" #: undo.src msgctxt "" @@ -77,7 +77,7 @@ "STR_SETFMTCOLL_UNDO\n" "string.text" msgid "Apply Styles: $1" -msgstr "" +msgstr "Ихархәатәуп астиль: $1" #: undo.src msgctxt "" @@ -85,7 +85,7 @@ "STR_RESET_ATTR_UNDO\n" "string.text" msgid "Reset attributes" -msgstr "" +msgstr "Атрибутқәа еиҭашьақәыргылатәуп" #: undo.src msgctxt "" @@ -93,7 +93,7 @@ "STR_INSFMT_ATTR_UNDO\n" "string.text" msgid "Change style: $1" -msgstr "" +msgstr "Иҧсахтәуп астиль: $1" #: undo.src msgctxt "" @@ -101,7 +101,7 @@ "STR_INSERT_DOC_UNDO\n" "string.text" msgid "Insert file" -msgstr "" +msgstr "Ибжьаргылатәуп афаил" #: undo.src msgctxt "" @@ -109,7 +109,7 @@ "STR_INSERT_GLOSSARY\n" "string.text" msgid "Insert AutoText" -msgstr "" +msgstr "Ибжьаргылатәуп автотеқст" #: undo.src msgctxt "" @@ -117,7 +117,7 @@ "STR_DELBOOKMARK\n" "string.text" msgid "Delete bookmark: $1" -msgstr "" +msgstr "Ианыхтәуп агәылаҵа: $1" #: undo.src msgctxt "" @@ -125,7 +125,7 @@ "STR_INSBOOKMARK\n" "string.text" msgid "Insert bookmark: $1" -msgstr "" +msgstr "Ибжьаргылатәуп агәылаҵа: $1" #: undo.src msgctxt "" @@ -149,7 +149,7 @@ "STR_INSTABLE_UNDO\n" "string.text" msgid "Insert table: $1$2$3" -msgstr "" +msgstr "Ибжьаргылатәуп атаблица; $1$2$3" #: undo.src msgctxt "" @@ -173,7 +173,7 @@ "STR_COPY_UNDO\n" "string.text" msgid "Copy: $1" -msgstr "" +msgstr "Акопиа ахыхтәуп; $1" #: undo.src msgctxt "" @@ -181,7 +181,7 @@ "STR_REPLACE_UNDO\n" "string.text" msgid "Replace $1 $2 $3" -msgstr "" +msgstr "Иҧсахтәуп $1 $2 $3" #: undo.src msgctxt "" @@ -205,7 +205,7 @@ "STR_PLAY_MACRO_UNDO\n" "string.text" msgid "Run macro" -msgstr "" +msgstr "Инагӡатәуп амакрос" #: undo.src msgctxt "" @@ -221,7 +221,7 @@ "STR_DRAG_AND_COPY\n" "string.text" msgid "Copy: $1" -msgstr "" +msgstr "Акопиа ахыхтәуп; $1" #: undo.src msgctxt "" @@ -229,7 +229,7 @@ "STR_DRAG_AND_MOVE\n" "string.text" msgid "Move: $1" -msgstr "" +msgstr "Ииагатәуп: $1" #: undo.src msgctxt "" @@ -237,7 +237,7 @@ "STR_INSERT_CHART\n" "string.text" msgid "Insert %PRODUCTNAME Chart" -msgstr "" +msgstr "Ибжьаргылатәуп адиаграмма %PRODUCTNAME" #: undo.src msgctxt "" @@ -261,7 +261,7 @@ "STR_AUTOFORMAT\n" "string.text" msgid "AutoFormat" -msgstr "" +msgstr "Автоформат" #: undo.src msgctxt "" @@ -269,7 +269,7 @@ "STR_TABLEHEADLINE\n" "string.text" msgid "Table heading" -msgstr "" +msgstr "Атаблица ахы" #: undo.src msgctxt "" @@ -277,7 +277,7 @@ "STR_REPLACE\n" "string.text" msgid "Replace: $1 $2 $3" -msgstr "" +msgstr "Аҧсахра $1 $2 $3" #: undo.src msgctxt "" @@ -293,7 +293,7 @@ "STR_DELETESECTION\n" "string.text" msgid "Delete section" -msgstr "" +msgstr "Ианыхтәуп аҟәша" #: undo.src msgctxt "" @@ -325,7 +325,7 @@ "STR_REPLACE_STYLE\n" "string.text" msgid "Replace style: $1 $2 $3" -msgstr "" +msgstr "Иҧсахтәуп астиль; $1 $2 $3" #: undo.src msgctxt "" @@ -341,7 +341,7 @@ "STR_TEXT_CORRECTION\n" "string.text" msgid "Text Correction" -msgstr "" +msgstr "Атеқст ариашара" #: undo.src msgctxt "" @@ -357,7 +357,7 @@ "STR_OUTLINE_UD\n" "string.text" msgid "Move outline" -msgstr "" +msgstr "Ииагатәуп аструктура" #: undo.src msgctxt "" @@ -389,7 +389,7 @@ "STR_MOVENUM\n" "string.text" msgid "Move paragraphs" -msgstr "" +msgstr "Ииагатәуп абзацқәа" #: undo.src msgctxt "" @@ -405,7 +405,7 @@ "STR_NUMORNONUM\n" "string.text" msgid "Number On/Off" -msgstr "" +msgstr "Аномер Аҿак/Аҿых" #: undo.src msgctxt "" @@ -477,7 +477,7 @@ "STR_DONTEXPAND\n" "string.text" msgid "Stop attribute" -msgstr "" +msgstr "Иаанкылатәуп атрибут" #: undo.src msgctxt "" @@ -485,7 +485,7 @@ "STR_AUTOCORRECT\n" "string.text" msgid "AutoCorrect" -msgstr "" +msgstr "Автоҧсахра" #: undo.src msgctxt "" @@ -501,7 +501,7 @@ "STR_TRANSLITERATE\n" "string.text" msgid "Change Case" -msgstr "" +msgstr "Арегистр" #: undo.src msgctxt "" @@ -509,7 +509,7 @@ "STR_DELNUM\n" "string.text" msgid "Delete numbering" -msgstr "" +msgstr "Ианыхтәуп аномерркра" #: undo.src msgctxt "" @@ -517,7 +517,7 @@ "STR_DRAWUNDO\n" "string.text" msgid "Drawing objects: $1" -msgstr "" +msgstr "Асахьақәа; $1 " #: undo.src msgctxt "" @@ -541,7 +541,7 @@ "STR_DRAWDELETE\n" "string.text" msgid "Delete drawing objects" -msgstr "" +msgstr "Ианыхтәуп асахьақәа" #: undo.src msgctxt "" @@ -557,7 +557,7 @@ "STR_DELGRF\n" "string.text" msgid "Delete Image" -msgstr "" +msgstr "Ианыхтәуп асахьа" #: undo.src msgctxt "" @@ -565,7 +565,7 @@ "STR_DELOLE\n" "string.text" msgid "Delete object" -msgstr "" +msgstr "Ианыхтәуп аобиеқт" #: undo.src msgctxt "" @@ -573,7 +573,7 @@ "STR_TABLE_ATTR\n" "string.text" msgid "Apply table attributes" -msgstr "" +msgstr "Ихархәуатәуп атаблица атрибутқәа " #: undo.src msgctxt "" @@ -581,7 +581,7 @@ "STR_TABLE_AUTOFMT\n" "string.text" msgid "AutoFormat Table" -msgstr "" +msgstr "Атаблица автоформат" #: undo.src msgctxt "" @@ -605,7 +605,7 @@ "STR_TABLE_DELBOX\n" "string.text" msgid "Delete row/column" -msgstr "" +msgstr "Ианыхтәуп ацәаҳәа/аиҵагыла" #: undo.src msgctxt "" @@ -613,7 +613,7 @@ "STR_UNDO_COL_DELETE\n" "string.text" msgid "Delete column" -msgstr "" +msgstr "Ианыхтәуп аиҵагыла" #: undo.src msgctxt "" @@ -621,7 +621,7 @@ "STR_UNDO_ROW_DELETE\n" "string.text" msgid "Delete row" -msgstr "" +msgstr "Ианыхтәуп ацәаҳәа" #: undo.src msgctxt "" @@ -637,7 +637,7 @@ "STR_TABLE_MERGE\n" "string.text" msgid "Merge Cells" -msgstr "" +msgstr "Еидҵатәуп абларҭақәа" #: undo.src msgctxt "" @@ -645,7 +645,7 @@ "STR_TABLE_NUMFORMAT\n" "string.text" msgid "Format cell" -msgstr "" +msgstr "Абларҭақәа рформат" #: undo.src msgctxt "" @@ -669,7 +669,7 @@ "STR_TABLE_TBLCPYTBL\n" "string.text" msgid "Copy table" -msgstr "" +msgstr "Атаблица акопиа ахыхра" #: undo.src msgctxt "" @@ -677,7 +677,7 @@ "STR_TABLE_CPYTBL\n" "string.text" msgid "Copy table" -msgstr "" +msgstr "Атаблица акопиа ахыхра" #: undo.src msgctxt "" @@ -725,7 +725,7 @@ "STR_UNDO_COMPAREDOC\n" "string.text" msgid "Compare Document" -msgstr "" +msgstr "Еиҿырҧштәуп адокумент аверсиақәа" #: undo.src msgctxt "" @@ -733,7 +733,7 @@ "STR_UNDO_SETFLYFRMFMT\n" "string.text" msgid "Apply frame style: $1" -msgstr "" +msgstr "Ихархәатәуп афреим астиль: $1" #: undo.src msgctxt "" @@ -749,7 +749,7 @@ "STR_UNDO_TMPAUTOCORR\n" "string.text" msgid "AutoCorrect" -msgstr "" +msgstr "Автоҧсахра" #: undo.src msgctxt "" @@ -773,7 +773,7 @@ "STR_INSERT_URLTXT\n" "string.text" msgid "Insert Hyperlink" -msgstr "" +msgstr "Ибжьаргылатәуп агиперзхьарҧш" #: undo.src msgctxt "" @@ -789,7 +789,7 @@ "STR_TOXCHANGE\n" "string.text" msgid "Table/index changed" -msgstr "" +msgstr "Атаблица/аиндекс ҧсахуп" #: undo.src #, fuzzy @@ -832,7 +832,7 @@ "STR_TYPING_UNDO\n" "string.text" msgid "Typing: $1" -msgstr "" +msgstr "Аҭагалара; $1 " #: undo.src msgctxt "" @@ -848,7 +848,7 @@ "STR_YIELDS\n" "string.text" msgid "→" -msgstr "" +msgstr "→" #: undo.src msgctxt "" @@ -904,7 +904,7 @@ "STR_UNDO_REDLINE_DELETE\n" "string.text" msgid "Delete $1" -msgstr "" +msgstr "$1 аныхра" #: undo.src msgctxt "" @@ -912,7 +912,7 @@ "STR_UNDO_REDLINE_FORMAT\n" "string.text" msgid "Attributes changed" -msgstr "" +msgstr "Атрибутқәа ҧсахуп" #: undo.src msgctxt "" @@ -920,7 +920,7 @@ "STR_UNDO_REDLINE_TABLE\n" "string.text" msgid "Table changed" -msgstr "" +msgstr "Атаблица ҧсахуп" #: undo.src msgctxt "" @@ -928,7 +928,7 @@ "STR_UNDO_REDLINE_FMTCOLL\n" "string.text" msgid "Style changed" -msgstr "" +msgstr "Астиль ҧсахуп" #: undo.src msgctxt "" @@ -936,7 +936,7 @@ "STR_UNDO_REDLINE_PARAGRAPH_FORMAT\n" "string.text" msgid "Paragraph formatting changed" -msgstr "" +msgstr "Абзац аформат ҧсахуп" #: undo.src msgctxt "" @@ -952,7 +952,7 @@ "STR_UNDO_REDLINE_TABLE_ROW_DELETE\n" "string.text" msgid "Delete Row" -msgstr "" +msgstr "Ацәаҳәа аныхра" #: undo.src msgctxt "" @@ -968,7 +968,7 @@ "STR_UNDO_REDLINE_TABLE_CELL_DELETE\n" "string.text" msgid "Delete Cell" -msgstr "" +msgstr "Абларҭа аныхра" #: undo.src msgctxt "" @@ -984,7 +984,7 @@ "STR_UNDO_PAGEDESC\n" "string.text" msgid "Change page style: $1" -msgstr "" +msgstr "Иҧсахтәуп адаҟьа астиль: $1" #: undo.src msgctxt "" @@ -992,7 +992,7 @@ "STR_UNDO_PAGEDESC_CREATE\n" "string.text" msgid "Create page style: $1" -msgstr "" +msgstr "Иаҧҵатәуп адаҟьа астиль: $1" #: undo.src msgctxt "" @@ -1000,7 +1000,7 @@ "STR_UNDO_PAGEDESC_DELETE\n" "string.text" msgid "Delete page style: $1" -msgstr "" +msgstr "Ианыхтәуп адаҟьа астиль: $1" #: undo.src msgctxt "" @@ -1032,7 +1032,7 @@ "STR_UNDO_TXTFMTCOL_CREATE\n" "string.text" msgid "Create paragraph style: $1" -msgstr "" +msgstr "Иаҧҵатәуп абзац астиль: $1" #: undo.src msgctxt "" @@ -1040,7 +1040,7 @@ "STR_UNDO_TXTFMTCOL_DELETE\n" "string.text" msgid "Delete paragraph style: $1" -msgstr "" +msgstr "Ианыхтәуп абзац астиль: $1" #: undo.src msgctxt "" @@ -1048,7 +1048,7 @@ "STR_UNDO_TXTFMTCOL_RENAME\n" "string.text" msgid "Rename paragraph style: $1 $2 $3" -msgstr "" +msgstr "Абзац: $1 $2 $3 астиль ахьӡ ҧсахтәуп" #: undo.src msgctxt "" @@ -1056,7 +1056,7 @@ "STR_UNDO_CHARFMT_CREATE\n" "string.text" msgid "Create character style: $1" -msgstr "" +msgstr "Иаҧҵатәуп асимвол астиль: $1" #: undo.src msgctxt "" @@ -1064,7 +1064,7 @@ "STR_UNDO_CHARFMT_DELETE\n" "string.text" msgid "Delete character style: $1" -msgstr "" +msgstr "Ианыхтәуп асимвол астиль: $1" #: undo.src msgctxt "" @@ -1072,7 +1072,7 @@ "STR_UNDO_CHARFMT_RENAME\n" "string.text" msgid "Rename character style: $1 $2 $3" -msgstr "" +msgstr "Асимвол: $1 $2 $3 астиль ахьӡ ҧсахтәуп" #: undo.src msgctxt "" @@ -1080,7 +1080,7 @@ "STR_UNDO_FRMFMT_CREATE\n" "string.text" msgid "Create frame style: $1" -msgstr "" +msgstr "Ихархәатәуп афреим астиль: $1" #: undo.src msgctxt "" @@ -1088,7 +1088,7 @@ "STR_UNDO_FRMFMT_DELETE\n" "string.text" msgid "Delete frame style: $1" -msgstr "" +msgstr "Ианыхтәуп афреим астиль: $1" #: undo.src msgctxt "" @@ -1104,7 +1104,7 @@ "STR_UNDO_NUMRULE_CREATE\n" "string.text" msgid "Create numbering style: $1" -msgstr "" +msgstr "Иаҧҵатәуп ахьӡынҵа астиль: $1" #: undo.src msgctxt "" @@ -1112,7 +1112,7 @@ "STR_UNDO_NUMRULE_DELETE\n" "string.text" msgid "Delete numbering style: $1" -msgstr "" +msgstr "Ианыхтәуп ахьӡынҵа астиль: $1" #: undo.src msgctxt "" @@ -1152,7 +1152,7 @@ "STR_FIELD\n" "string.text" msgid "field" -msgstr "" +msgstr "аҭакыра" #: undo.src msgctxt "" @@ -1160,7 +1160,7 @@ "STR_PARAGRAPHS\n" "string.text" msgid "Paragraphs" -msgstr "" +msgstr "Абзацқәа" #: undo.src msgctxt "" @@ -1168,7 +1168,7 @@ "STR_FRAME\n" "string.text" msgid "frame" -msgstr "" +msgstr "Афреим" #: undo.src msgctxt "" @@ -1176,7 +1176,7 @@ "STR_OLE\n" "string.text" msgid "OLE-object" -msgstr "" +msgstr "OLE-аобиеқт" #: undo.src msgctxt "" @@ -1192,7 +1192,7 @@ "STR_CHART\n" "string.text" msgid "chart" -msgstr "" +msgstr "адиаграмма" #: undo.src msgctxt "" @@ -1200,7 +1200,7 @@ "STR_NOTE\n" "string.text" msgid "comment" -msgstr "" +msgstr "акомментари" #: undo.src msgctxt "" @@ -1216,7 +1216,7 @@ "STR_SCRIPT\n" "string.text" msgid "script" -msgstr "" +msgstr "Асценари" #: undo.src msgctxt "" @@ -1232,7 +1232,7 @@ "STR_SPECIALCHAR\n" "string.text" msgid "special character" -msgstr "" +msgstr "Испециалтәу асимвол" #: undo.src msgctxt "" @@ -1248,7 +1248,7 @@ "STR_GRAPHIC\n" "string.text" msgid "image" -msgstr "" +msgstr "асахьа" #: undo.src msgctxt "" @@ -1264,7 +1264,7 @@ "STR_TABLE_NAME\n" "string.text" msgid "table: $1$2$3" -msgstr "" +msgstr "атаблица: $1$2$3" #: undo.src msgctxt "" @@ -1272,7 +1272,7 @@ "STR_PARAGRAPH_UNDO\n" "string.text" msgid "paragraph" -msgstr "" +msgstr "абзац" #: undo.src msgctxt "" @@ -1296,7 +1296,7 @@ "STR_UNDO_TBLSTYLE_CREATE\n" "string.text" msgid "Create table style: $1" -msgstr "" +msgstr "Иаҧҵатәуп атаблица астиль: $1" #: undo.src msgctxt "" @@ -1304,7 +1304,7 @@ "STR_UNDO_TBLSTYLE_DELETE\n" "string.text" msgid "Delete table style: $1" -msgstr "" +msgstr "Ианыхтәуп атаблица астиль: $1" #: undo.src msgctxt "" @@ -1312,7 +1312,7 @@ "STR_UNDO_TBLSTYLE_UPDATE\n" "string.text" msgid "Update table style: $1" -msgstr "" +msgstr "Ирҿыцтәуп атаблица астиль: $1" #: undo.src msgctxt "" @@ -1320,4 +1320,4 @@ "STR_UNDO_TABLE_DELETE\n" "string.text" msgid "Delete table" -msgstr "" +msgstr "Ианыхтәуп атаблица" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/core/unocore.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/core/unocore.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/core/unocore.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/core/unocore.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-02 10:21+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-21 10:37+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1480674063.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511260625.000000\n" #: unocore.src msgctxt "" @@ -21,7 +21,7 @@ "STR_CHART2_ROW_LABEL_TEXT\n" "string.text" msgid "Row %ROWNUMBER" -msgstr "" +msgstr "Ацәаҳәа %ROWNUMBER" #: unocore.src msgctxt "" @@ -29,7 +29,7 @@ "STR_CHART2_COL_LABEL_TEXT\n" "string.text" msgid "Column %COLUMNLETTER" -msgstr "" +msgstr "Аиҵагыла %COLUMNLETTER " #: unocore.src msgctxt "" @@ -37,7 +37,7 @@ "STR_STYLE_FAMILY_CHARACTER\n" "string.text" msgid "Character" -msgstr "" +msgstr "Асимвол" #: unocore.src msgctxt "" @@ -45,7 +45,7 @@ "STR_STYLE_FAMILY_PARAGRAPH\n" "string.text" msgid "Paragraph" -msgstr "" +msgstr "Абзац" #: unocore.src msgctxt "" @@ -53,7 +53,7 @@ "STR_STYLE_FAMILY_FRAME\n" "string.text" msgid "Frame" -msgstr "" +msgstr "Афреим" #: unocore.src msgctxt "" @@ -61,7 +61,7 @@ "STR_STYLE_FAMILY_PAGE\n" "string.text" msgid "Pages" -msgstr "" +msgstr "Адаҟьақәа" #: unocore.src msgctxt "" @@ -69,7 +69,7 @@ "STR_STYLE_FAMILY_NUMBERING\n" "string.text" msgid "Numbering" -msgstr "" +msgstr "Аномерркра" #: unocore.src msgctxt "" @@ -77,7 +77,7 @@ "STR_STYLE_FAMILY_TABLE\n" "string.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: unocore.src msgctxt "" @@ -85,4 +85,4 @@ "STR_STYLE_FAMILY_CELL\n" "string.text" msgid "Cell" -msgstr "" +msgstr "Абларҭа" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/app.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/app.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/app.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/app.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-17 15:41+0200\n" -"PO-Revision-Date: 2017-07-18 20:05+0000\n" +"PO-Revision-Date: 2017-12-12 10:45+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500408354.000000\n" +"X-POOTLE-MTIME: 1513075546.000000\n" #: app.src msgctxt "" @@ -21,7 +21,7 @@ "STR_PARAGRAPHSTYLEFAMILY\n" "string.text" msgid "Paragraph Styles" -msgstr "" +msgstr "Абзацқәа рстильқәа" #: app.src msgctxt "" @@ -29,7 +29,7 @@ "STR_CHARACTERSTYLEFAMILY\n" "string.text" msgid "Character Styles" -msgstr "" +msgstr "Асимволқәа рстильқәа" #: app.src msgctxt "" @@ -45,7 +45,7 @@ "STR_PAGESTYLEFAMILY\n" "string.text" msgid "Page Styles" -msgstr "" +msgstr "Адаҟьақәа рстильқәа" #: app.src msgctxt "" @@ -53,7 +53,7 @@ "STR_LISTSTYLEFAMILY\n" "string.text" msgid "List Styles" -msgstr "" +msgstr "Ахьӡынҵақәа рстильқәа" #: app.src msgctxt "" @@ -61,7 +61,7 @@ "STR_TABLESTYLEFAMILY\n" "string.text" msgid "Table Styles" -msgstr "" +msgstr "Атаблицақәа рстильқәа" #: app.src msgctxt "" @@ -70,7 +70,7 @@ "All Styles\n" "itemlist.text" msgid "All Styles" -msgstr "" +msgstr "Астильқәа зегьы" #: app.src msgctxt "" @@ -79,7 +79,7 @@ "Hidden Styles\n" "itemlist.text" msgid "Hidden Styles" -msgstr "" +msgstr "Иҵәаху астильқәа" #: app.src msgctxt "" @@ -88,7 +88,7 @@ "Applied Styles\n" "itemlist.text" msgid "Applied Styles" -msgstr "" +msgstr "Ахархәара змоу астильқәа" #: app.src msgctxt "" @@ -97,7 +97,7 @@ "Custom Styles\n" "itemlist.text" msgid "Custom Styles" -msgstr "" +msgstr "Ахархәаҩ истильқәа" #: app.src msgctxt "" @@ -115,7 +115,7 @@ "Text Styles\n" "itemlist.text" msgid "Text Styles" -msgstr "" +msgstr "Атеқст астильқәа" #: app.src msgctxt "" @@ -124,7 +124,7 @@ "Chapter Styles\n" "itemlist.text" msgid "Chapter Styles" -msgstr "" +msgstr "Ахқәа рстильқәа" #: app.src msgctxt "" @@ -133,7 +133,7 @@ "List Styles\n" "itemlist.text" msgid "List Styles" -msgstr "" +msgstr "Ахьӡынҵақәа рстильқәа" #: app.src msgctxt "" @@ -142,7 +142,7 @@ "Index Styles\n" "itemlist.text" msgid "Index Styles" -msgstr "" +msgstr "Аҭыҧрбагақәа рстильқәа" #: app.src msgctxt "" @@ -151,7 +151,7 @@ "Special Styles\n" "itemlist.text" msgid "Special Styles" -msgstr "" +msgstr "Иҷыдоу астильқәа" #: app.src msgctxt "" @@ -160,7 +160,7 @@ "HTML Styles\n" "itemlist.text" msgid "HTML Styles" -msgstr "" +msgstr "HTML астильқәа" #: app.src msgctxt "" @@ -169,7 +169,7 @@ "Conditional Styles\n" "itemlist.text" msgid "Conditional Styles" -msgstr "" +msgstr "Аҭагылазаашьатә стильқәа" #: app.src msgctxt "" @@ -187,7 +187,7 @@ "Hidden Styles\n" "itemlist.text" msgid "Hidden Styles" -msgstr "" +msgstr "Иҵәаху астильқәа" #: app.src msgctxt "" @@ -196,7 +196,7 @@ "Applied Styles\n" "itemlist.text" msgid "Applied Styles" -msgstr "" +msgstr "Ахархәара змоу астильқәа" #: app.src msgctxt "" @@ -205,7 +205,7 @@ "Custom Styles\n" "itemlist.text" msgid "Custom Styles" -msgstr "" +msgstr "Ахархәаҩ истильқәа" #: app.src msgctxt "" @@ -223,7 +223,7 @@ "Hidden Styles\n" "itemlist.text" msgid "Hidden Styles" -msgstr "" +msgstr "Иҵәаху астильқәа" #: app.src msgctxt "" @@ -232,7 +232,7 @@ "Applied Styles\n" "itemlist.text" msgid "Applied Styles" -msgstr "" +msgstr "Ахархәара змоу астильқәа" #: app.src msgctxt "" @@ -241,7 +241,7 @@ "Custom Styles\n" "itemlist.text" msgid "Custom Styles" -msgstr "" +msgstr "Ахархәаҩ истильқәа" #: app.src msgctxt "" @@ -259,7 +259,7 @@ "Hidden Styles\n" "itemlist.text" msgid "Hidden Styles" -msgstr "" +msgstr "Иҵәаху астильқәа" #: app.src msgctxt "" @@ -268,7 +268,7 @@ "Applied Styles\n" "itemlist.text" msgid "Applied Styles" -msgstr "" +msgstr "Ахархәара змоу астильқәа" #: app.src msgctxt "" @@ -277,7 +277,7 @@ "Custom Styles\n" "itemlist.text" msgid "Custom Styles" -msgstr "" +msgstr "Ахархәаҩ истильқәа" #: app.src msgctxt "" @@ -295,7 +295,7 @@ "Hidden Styles\n" "itemlist.text" msgid "Hidden Styles" -msgstr "" +msgstr "Иҵәаху астильқәа" #: app.src msgctxt "" @@ -304,7 +304,7 @@ "Applied Styles\n" "itemlist.text" msgid "Applied Styles" -msgstr "" +msgstr "Ахархәара змоу астильқәа" #: app.src msgctxt "" @@ -313,7 +313,7 @@ "Custom Styles\n" "itemlist.text" msgid "Custom Styles" -msgstr "" +msgstr "Ахархәаҩ истильқәа" #: app.src msgctxt "" @@ -331,7 +331,7 @@ "Hidden Styles\n" "itemlist.text" msgid "Hidden Styles" -msgstr "" +msgstr "Иҵәаху астильқәа" #: app.src msgctxt "" @@ -340,7 +340,7 @@ "Applied Styles\n" "itemlist.text" msgid "Applied Styles" -msgstr "" +msgstr "Ахархәара змоу астильқәа" #: app.src msgctxt "" @@ -349,7 +349,7 @@ "Custom Styles\n" "itemlist.text" msgid "Custom Styles" -msgstr "" +msgstr "Ахархәаҩ истильқәа" #: app.src msgctxt "" @@ -389,7 +389,7 @@ "STR_CANTOPEN\n" "string.text" msgid "Cannot open document." -msgstr "" +msgstr "Адокумент аартра залшом." #: app.src msgctxt "" @@ -525,7 +525,7 @@ "STR_DOC_STAT\n" "string.text" msgid "Statistics" -msgstr "" +msgstr "Астатистика" #: app.src msgctxt "" @@ -533,7 +533,7 @@ "STR_STATSTR_W4WREAD\n" "string.text" msgid "Importing document..." -msgstr "" +msgstr "Адокумент аимпорт..." #: app.src msgctxt "" @@ -541,7 +541,7 @@ "STR_STATSTR_W4WWRITE\n" "string.text" msgid "Exporting document..." -msgstr "" +msgstr "Адокумент аекспорт..." #: app.src msgctxt "" @@ -549,7 +549,7 @@ "STR_STATSTR_SWGREAD\n" "string.text" msgid "Loading document..." -msgstr "" +msgstr "Адокумент аҭагалара..." #: app.src msgctxt "" @@ -645,7 +645,7 @@ "STR_TABLE_DEFNAME\n" "string.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: app.src msgctxt "" @@ -661,7 +661,7 @@ "STR_OBJECT_DEFNAME\n" "string.text" msgid "Object" -msgstr "" +msgstr "Аобиеқт" #: app.src msgctxt "" @@ -845,7 +845,7 @@ "STR_DEL_AUTOFORMAT_TITLE\n" "string.text" msgid "Delete AutoFormat" -msgstr "" +msgstr "Ианыхтәуп автоформат" #: app.src msgctxt "" @@ -853,7 +853,7 @@ "STR_DEL_AUTOFORMAT_MSG\n" "string.text" msgid "The following AutoFormat entry will be deleted:" -msgstr "" +msgstr "Анаҩстәи автоформат аныххооит:" #: app.src msgctxt "" @@ -861,7 +861,7 @@ "STR_RENAME_AUTOFORMAT_TITLE\n" "string.text" msgid "Rename AutoFormat" -msgstr "" +msgstr "Автоформат ахьӡ ҧсахтәуп" #: app.src msgctxt "" @@ -968,7 +968,7 @@ "STR_AUTHMRK_EDIT\n" "string.text" msgid "Edit Bibliography Entry" -msgstr "" +msgstr "Абиблиографиатә зхьарҧшқәа рыриашара" #: app.src msgctxt "" @@ -1024,7 +1024,7 @@ "STR_CAPTION_OLE\n" "string.text" msgid "Other OLE Objects" -msgstr "" +msgstr "OLE егьырҭ аобиеқтқәа" #: app.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/chrdlg.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/chrdlg.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/chrdlg.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/chrdlg.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n" -"PO-Revision-Date: 2014-11-18 11:18+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-21 10:37+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1416309536.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511260679.000000\n" #: chrdlg.src msgctxt "" @@ -21,7 +21,7 @@ "STR_TEXTCOLL_HEADER\n" "string.text" msgid "(Paragraph Style: " -msgstr "" +msgstr "(Абзац астиль: " #: chrdlg.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/config.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/config.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/config.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/config.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-03-09 20:49+0100\n" -"PO-Revision-Date: 2016-03-10 13:27+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-29 10:37+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1457616435.000000\n" +"X-POOTLE-MTIME: 1511951853.000000\n" #: optdlg.src msgctxt "" @@ -109,7 +109,7 @@ "STR_PRINTOPTUI_PRINT_BLACK\n" "string.text" msgid "Print text in blac~k" -msgstr "" +msgstr "Икьыҧхьтәуп атеқст еиқәаҵәала" #: optdlg.src msgctxt "" @@ -141,7 +141,7 @@ "STR_PRINTOPTUI_PRINT\n" "string.text" msgid "Print" -msgstr "" +msgstr "Акьыҧхьра" #: optdlg.src msgctxt "" @@ -277,7 +277,7 @@ "STR_PRINTOPTUI_SELECTION\n" "string.text" msgid "~Selection" -msgstr "" +msgstr "Иалкаау" #: optdlg.src msgctxt "" @@ -375,7 +375,7 @@ "Char\n" "itemlist.text" msgid "Char" -msgstr "" +msgstr "Асимвол" #: optload.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/dbui.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/dbui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/dbui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/dbui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n" -"PO-Revision-Date: 2017-09-18 11:11+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-27 17:34+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1505733082.000000\n" +"X-POOTLE-MTIME: 1511804044.000000\n" #: dbui.src msgctxt "" @@ -155,7 +155,7 @@ "STR_FILTER_ALL\n" "string.text" msgid "All files" -msgstr "" +msgstr "Афаилқәа зегьы" #: dbui.src msgctxt "" @@ -254,7 +254,7 @@ "ST_STARTING\n" "string.text" msgid "Select starting document" -msgstr "" +msgstr "Ахалагаратә документ алхра" #: mailmergewizard.src msgctxt "" @@ -262,7 +262,7 @@ "ST_DOCUMENTTYPE\n" "string.text" msgid "Select document type" -msgstr "" +msgstr "Адокумент атип алхра" #: mailmergewizard.src msgctxt "" @@ -536,7 +536,7 @@ "ST_TABLE\n" "string.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: selectdbtabledialog.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/dialog.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/dialog.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/dialog.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/dialog.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n" -"PO-Revision-Date: 2014-11-18 11:19+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-21 10:38+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1416309555.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511260709.000000\n" #: dialog.src msgctxt "" @@ -29,4 +29,4 @@ "STR_SPELLING_COMPLETED\n" "string.text" msgid "The spellcheck is complete." -msgstr "" +msgstr "Аорфографиа агәаҭара хыркәшоуп." diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/dochdl.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/dochdl.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/dochdl.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/dochdl.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-08-25 12:34+0200\n" -"PO-Revision-Date: 2015-08-25 17:02+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-12-12 10:46+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1440522173.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1513075568.000000\n" #: dochdl.src msgctxt "" @@ -77,7 +77,7 @@ "STR_PRIVATEOLE\n" "string.text" msgid "Object [%PRODUCTNAME Writer]" -msgstr "" +msgstr "[%PRODUCTNAME Writer] аобиеқт" #: dochdl.src msgctxt "" @@ -85,4 +85,4 @@ "STR_DDEFORMAT\n" "string.text" msgid "DDE link" -msgstr "" +msgstr "Аимадара DDE ала" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/docvw.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/docvw.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/docvw.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/docvw.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n" -"PO-Revision-Date: 2014-11-02 19:11+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-21 10:50+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1414955516.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511261452.000000\n" #: access.src msgctxt "" @@ -21,7 +21,7 @@ "STR_ACCESS_DOC_NAME\n" "string.text" msgid "Document view" -msgstr "" +msgstr "Адокумент ахәаҧшра" #: access.src msgctxt "" @@ -29,7 +29,7 @@ "STR_ACCESS_DOC_DESC\n" "string.text" msgid "Document view" -msgstr "" +msgstr "Адокумент ахәаҧшра" #: access.src msgctxt "" @@ -37,7 +37,7 @@ "STR_ACCESS_HEADER_NAME\n" "string.text" msgid "Header $(ARG1)" -msgstr "" +msgstr "Хыхьтәи аколонтитул $(ARG1)" #: access.src msgctxt "" @@ -45,7 +45,7 @@ "STR_ACCESS_HEADER_DESC\n" "string.text" msgid "Header page $(ARG1)" -msgstr "" +msgstr "Хыхьтәи аколонтитул $(ARG1)" #: access.src msgctxt "" @@ -53,7 +53,7 @@ "STR_ACCESS_FOOTER_NAME\n" "string.text" msgid "Footer $(ARG1)" -msgstr "" +msgstr "Ҵаҟатәи аколонтитул $(ARG1)" #: access.src msgctxt "" @@ -61,7 +61,7 @@ "STR_ACCESS_FOOTER_DESC\n" "string.text" msgid "Footer page $(ARG1)" -msgstr "" +msgstr "Ҵаҟатәи аколонтитул $(ARG1)" #: access.src msgctxt "" @@ -109,7 +109,7 @@ "STR_ACCESS_PAGE_NAME\n" "string.text" msgid "Page $(ARG1)" -msgstr "" +msgstr "Адаҟьа $(ARG1)" #: access.src msgctxt "" @@ -117,7 +117,7 @@ "STR_ACCESS_PAGE_DESC\n" "string.text" msgid "Page: $(ARG1)" -msgstr "" +msgstr "Адаҟьа $(ARG1)" #: access.src msgctxt "" @@ -125,7 +125,7 @@ "STR_ACCESS_ANNOTATION_AUTHOR_NAME\n" "string.text" msgid "Author" -msgstr "" +msgstr "Автор" #: access.src msgctxt "" @@ -133,7 +133,7 @@ "STR_ACCESS_ANNOTATION_DATE_NAME\n" "string.text" msgid "Date" -msgstr "" +msgstr "Арыцхә" #: access.src msgctxt "" @@ -157,7 +157,7 @@ "STR_ACCESS_PREVIEW_DOC_NAME\n" "string.text" msgid "Document preview" -msgstr "" +msgstr "Адокумент ахәаҧшра" #: access.src msgctxt "" @@ -165,7 +165,7 @@ "STR_ACCESS_PREVIEW_DOC_SUFFIX\n" "string.text" msgid "(Preview mode)" -msgstr "" +msgstr "(Ахәаҧшра арежим)" #: access.src msgctxt "" @@ -173,7 +173,7 @@ "STR_ACCESS_DOC_WORDPROCESSING\n" "string.text" msgid "%PRODUCTNAME Document" -msgstr "" +msgstr "%PRODUCTNAME адокуменқәа" #: annotation.src msgctxt "" @@ -213,7 +213,7 @@ "STR_NOAUTHOR\n" "string.text" msgid "(no author)" -msgstr "" +msgstr "(автор дамам)" #: annotation.src msgctxt "" @@ -221,4 +221,4 @@ "STR_REPLY\n" "string.text" msgid "Reply to $1" -msgstr "" +msgstr "Аҭак $1 аҟны" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/envelp.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/envelp.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/envelp.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/envelp.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n" -"PO-Revision-Date: 2014-11-18 11:19+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-21 10:54+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1416309565.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511261691.000000\n" #: envelp.src msgctxt "" @@ -53,7 +53,7 @@ "STR_WIDTH\n" "string.text" msgid "Width" -msgstr "" +msgstr "Аҭбаара" #: labfmt.src msgctxt "" @@ -61,7 +61,7 @@ "STR_HEIGHT\n" "string.text" msgid "Height" -msgstr "" +msgstr "Аҳаракыра" #: labfmt.src msgctxt "" @@ -85,7 +85,7 @@ "STR_COLS\n" "string.text" msgid "Columns" -msgstr "" +msgstr "Аиҵагылақәа" #: labfmt.src msgctxt "" @@ -93,7 +93,7 @@ "STR_ROWS\n" "string.text" msgid "Rows" -msgstr "" +msgstr "Ацәаҳәақәа" #: labfmt.src msgctxt "" @@ -101,7 +101,7 @@ "STR_PWIDTH\n" "string.text" msgid "Page Width" -msgstr "" +msgstr "Адаҟьа аҭбаара" #: labfmt.src msgctxt "" @@ -109,4 +109,4 @@ "STR_PHEIGHT\n" "string.text" msgid "Page Height" -msgstr "" +msgstr "Адаҟьа аҳаракыра:" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/fldui.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/fldui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/fldui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/fldui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n" -"PO-Revision-Date: 2017-07-19 15:39+0000\n" +"PO-Revision-Date: 2017-12-12 10:46+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500478778.000000\n" +"X-POOTLE-MTIME: 1513075577.000000\n" #: fldui.src msgctxt "" @@ -37,7 +37,7 @@ "STR_FILENAMEFLD\n" "string.text" msgid "File name" -msgstr "" +msgstr "Афаил ахьӡ" #: fldui.src msgctxt "" @@ -69,7 +69,7 @@ "STR_DOCSTATFLD\n" "string.text" msgid "Statistics" -msgstr "" +msgstr "Астатистика" #: fldui.src msgctxt "" @@ -85,7 +85,7 @@ "STR_TEMPLNAMEFLD\n" "string.text" msgid "Templates" -msgstr "" +msgstr "Ашаблонқәа" #: fldui.src msgctxt "" @@ -93,7 +93,7 @@ "STR_EXTUSERFLD\n" "string.text" msgid "Sender" -msgstr "" +msgstr "Адәықәҵаҩ" #: fldui.src msgctxt "" @@ -213,7 +213,7 @@ "STR_COMBINED_CHARS\n" "string.text" msgid "Combine characters" -msgstr "" +msgstr "Еидҵатәуп асимволқәа" #: fldui.src msgctxt "" @@ -333,7 +333,7 @@ "STR_HIDDENPARAFLD\n" "string.text" msgid "Hidden Paragraph" -msgstr "" +msgstr "Иҵәаху абзац" #: fldui.src msgctxt "" @@ -341,7 +341,7 @@ "STR_DOCINFOFLD\n" "string.text" msgid "DocInformation" -msgstr "" +msgstr "Адокумент иазкны" #: fldui.src msgctxt "" @@ -381,7 +381,7 @@ "FLD_STAT_TABLE\n" "string.text" msgid "Tables" -msgstr "" +msgstr "Атаблицақәа" #: fldui.src msgctxt "" @@ -389,7 +389,7 @@ "FLD_STAT_CHAR\n" "string.text" msgid "Characters" -msgstr "" +msgstr "Асимволқәа" #: fldui.src msgctxt "" @@ -405,7 +405,7 @@ "FLD_STAT_PARA\n" "string.text" msgid "Paragraphs" -msgstr "" +msgstr "Абзацқәа" #: fldui.src msgctxt "" @@ -421,7 +421,7 @@ "FLD_STAT_OBJ\n" "string.text" msgid "Objects" -msgstr "" +msgstr "Аобиеқтқәа" #: fldui.src msgctxt "" @@ -589,7 +589,7 @@ "FMT_FF_NAME\n" "string.text" msgid "File name" -msgstr "" +msgstr "Афаил ахьӡ" #: fldui.src msgctxt "" @@ -605,7 +605,7 @@ "FMT_FF_PATHNAME\n" "string.text" msgid "Path/File name" -msgstr "" +msgstr "Амҩа/Афаил ахьӡ" #: fldui.src msgctxt "" @@ -909,7 +909,7 @@ "FMT_MARK_TABLE\n" "string.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: fldui.src msgctxt "" @@ -933,7 +933,7 @@ "FMT_MARK_OLE\n" "string.text" msgid "Object" -msgstr "" +msgstr "Аобиеқтқәа" #: fldui.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/frmdlg.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/frmdlg.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/frmdlg.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/frmdlg.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n" -"PO-Revision-Date: 2014-11-02 19:11+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-29 09:21+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1414955518.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511947312.000000\n" #: frmui.src msgctxt "" @@ -77,7 +77,7 @@ "STR_OLE_EDIT\n" "string.text" msgid "Edit object" -msgstr "" +msgstr "Иҧсахтәуп аобиеқт" #: frmui.src msgctxt "" @@ -85,7 +85,7 @@ "STR_COLL_HEADER\n" "string.text" msgid " (Template: " -msgstr "" +msgstr "(Ашаблон: " #: frmui.src msgctxt "" @@ -101,4 +101,4 @@ "STR_FRMUI_PATTERN\n" "string.text" msgid "Background" -msgstr "" +msgstr "Аҿаҧшыры" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/globdoc.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/globdoc.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/globdoc.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/globdoc.po 2017-12-12 17:45:07.000000000 +0000 @@ -3,16 +3,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: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2017-11-21 10:56+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511261783.000000\n" #: globdoc.src msgctxt "" @@ -20,7 +21,7 @@ "STR_HUMAN_SWGLOBDOC_NAME\n" "string.text" msgid "Master Document" -msgstr "" +msgstr "Еилоу адокумент" #: globdoc.src msgctxt "" @@ -28,4 +29,4 @@ "STR_WRITER_GLOBALDOC_FULLTYPE\n" "string.text" msgid "%PRODUCTNAME %PRODUCTVERSION Master Document" -msgstr "" +msgstr "%PRODUCTNAME %PRODUCTVERSION еилоу адокумент" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/index.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/index.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/index.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/index.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-09-18 11:11+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-12-12 10:46+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1505733085.000000\n" +"X-POOTLE-MTIME: 1513075584.000000\n" #: cnttab.src msgctxt "" @@ -200,7 +200,7 @@ "STR_TOKEN_HELP_LINK_START\n" "string.text" msgid "Hyperlink start" -msgstr "" +msgstr "Агиперзхьарҧш алагамҭа" #: cnttab.src msgctxt "" @@ -208,7 +208,7 @@ "STR_TOKEN_HELP_LINK_END\n" "string.text" msgid "Hyperlink end" -msgstr "" +msgstr "Агиперзхьарҧш анҵәамҭа" #: cnttab.src msgctxt "" @@ -224,7 +224,7 @@ "STR_CHARSTYLE\n" "string.text" msgid "Character Style: " -msgstr "" +msgstr "Асимволқәа рстиль: " #: cnttab.src msgctxt "" @@ -242,7 +242,7 @@ "%PRODUCTNAME Chart\n" "itemlist.text" msgid "%PRODUCTNAME Chart" -msgstr "" +msgstr "%PRODUCTNAME адиаграмма" #: cnttab.src msgctxt "" @@ -269,7 +269,7 @@ "Other OLE Objects\n" "itemlist.text" msgid "Other OLE Objects" -msgstr "" +msgstr "OLE егьырҭ аобиеқтқәа" #: cnttab.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/misc.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/misc.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/misc.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/misc.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n" -"PO-Revision-Date: 2017-09-18 11:11+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-30 10:53+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1505733086.000000\n" +"X-POOTLE-MTIME: 1512039187.000000\n" #: glossary.src msgctxt "" @@ -29,7 +29,7 @@ "STR_QUERY_DELETE\n" "string.text" msgid "Delete AutoText?" -msgstr "" +msgstr "Ианыхтәума автотеқст?" #: glossary.src msgctxt "" @@ -37,7 +37,7 @@ "STR_QUERY_DELETE_GROUP1\n" "string.text" msgid "Delete the category " -msgstr "" +msgstr "Ианыхтәуп акатегориа " #: glossary.src #, fuzzy @@ -62,7 +62,7 @@ "STR_SAVE_GLOSSARY\n" "string.text" msgid "Save AutoText" -msgstr "Иеиқәырхатәуп автотеқст" +msgstr "Еиқәырхатәуп автотеқст" #: glossary.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/shells.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/shells.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/shells.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/shells.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n" -"PO-Revision-Date: 2015-04-23 18:31+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-12-12 10:46+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1429813873.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1513075590.000000\n" #: shells.src msgctxt "" @@ -21,7 +21,7 @@ "STR_GRFILTER_OPENERROR\n" "string.text" msgid "Image file cannot be opened" -msgstr "" +msgstr "Асахьа аартра ауам" #: shells.src msgctxt "" @@ -93,7 +93,7 @@ "STR_REDLINE_DELETED\n" "string.text" msgid "Deletion" -msgstr "" +msgstr "Аныхра" #: shells.src msgctxt "" @@ -109,7 +109,7 @@ "STR_REDLINE_FORMATED\n" "string.text" msgid "Formats" -msgstr "" +msgstr "Аформатқәа" #: shells.src msgctxt "" @@ -117,7 +117,7 @@ "STR_REDLINE_TABLECHG\n" "string.text" msgid "Table Changes" -msgstr "" +msgstr "Атаблица аредакциазура" #: shells.src msgctxt "" @@ -125,7 +125,7 @@ "STR_REDLINE_FMTCOLLSET\n" "string.text" msgid "Applied Paragraph Styles" -msgstr "" +msgstr "Ихархәоуп абзац астиль" #: shells.src msgctxt "" @@ -168,7 +168,7 @@ "STR_REDLINE_EDIT\n" "string.text" msgid "Edit Changes" -msgstr "" +msgstr "Аҧсахрақәа ранализ" #: shells.src msgctxt "" @@ -200,7 +200,7 @@ "STR_SWBG_PARAGRAPH\n" "string.text" msgid "Paragraph" -msgstr "" +msgstr "Абзац" #: shells.src msgctxt "" @@ -216,7 +216,7 @@ "STR_SWBG_OLE\n" "string.text" msgid "OLE object" -msgstr "" +msgstr "OLE-аобиеқт" #: shells.src msgctxt "" @@ -232,7 +232,7 @@ "STR_SWBG_TABLE\n" "string.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: shells.src msgctxt "" @@ -240,7 +240,7 @@ "STR_SWBG_TABLE_ROW\n" "string.text" msgid "Table row" -msgstr "" +msgstr "Атаблица ацәаҳәа" #: shells.src msgctxt "" @@ -248,7 +248,7 @@ "STR_SWBG_TABLE_CELL\n" "string.text" msgid "Table cell" -msgstr "" +msgstr "Атаблица абларҭа" #: shells.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/sidebar.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/sidebar.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/sidebar.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/sidebar.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-12-02 10:22+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-21 10:57+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1480674162.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511261878.000000\n" #: PagePropertyPanel.src msgctxt "" @@ -21,7 +21,7 @@ "STR_MARGIN_TOOLTIP_LEFT\n" "string.text" msgid "Left: " -msgstr "" +msgstr "Арымарахь;" #: PagePropertyPanel.src msgctxt "" @@ -29,7 +29,7 @@ "STR_MARGIN_TOOLTIP_RIGHT\n" "string.text" msgid ". Right: " -msgstr "" +msgstr "Арыӷьарахь;" #: PagePropertyPanel.src msgctxt "" @@ -37,7 +37,7 @@ "STR_MARGIN_TOOLTIP_INNER\n" "string.text" msgid "Inner: " -msgstr "" +msgstr "Аҩныҵҟа : " #: PagePropertyPanel.src msgctxt "" @@ -45,7 +45,7 @@ "STR_MARGIN_TOOLTIP_OUTER\n" "string.text" msgid ". Outer: " -msgstr "" +msgstr " Адәныҟа: " #: PagePropertyPanel.src msgctxt "" @@ -53,7 +53,7 @@ "STR_MARGIN_TOOLTIP_TOP\n" "string.text" msgid ". Top: " -msgstr "" +msgstr "Хыхьла;" #: PagePropertyPanel.src msgctxt "" @@ -61,4 +61,4 @@ "STR_MARGIN_TOOLTIP_BOT\n" "string.text" msgid ". Bottom: " -msgstr "" +msgstr "Ҵаҟала;" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/utlui.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/utlui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/utlui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/utlui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n" -"PO-Revision-Date: 2017-07-19 15:39+0000\n" +"PO-Revision-Date: 2017-12-12 10:47+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500478781.000000\n" +"X-POOTLE-MTIME: 1513075672.000000\n" #: poolfmt.src msgctxt "" @@ -37,7 +37,7 @@ "STR_POOLCHR_LABEL\n" "string.text" msgid "Caption Characters" -msgstr "" +msgstr "Ахьӡ асимволқәа" #: poolfmt.src msgctxt "" @@ -61,7 +61,7 @@ "STR_POOLCHR_BUL_LEVEL\n" "string.text" msgid "Bullets" -msgstr "" +msgstr "Ахьӡынҵа амаркерқәа" #: poolfmt.src msgctxt "" @@ -69,7 +69,7 @@ "STR_POOLCHR_INET_NORMAL\n" "string.text" msgid "Internet Link" -msgstr "" +msgstr "аИнтернет-зхьарҧш" #: poolfmt.src msgctxt "" @@ -829,7 +829,7 @@ "STR_POOLCOLL_TABLE_HDLN\n" "string.text" msgid "Table Heading" -msgstr "" +msgstr "Атаблица ахы" #: poolfmt.src msgctxt "" @@ -877,7 +877,7 @@ "STR_POOLCOLL_LABEL_TABLE\n" "string.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: poolfmt.src msgctxt "" @@ -909,7 +909,7 @@ "STR_POOLCOLL_SENDADRESS\n" "string.text" msgid "Sender" -msgstr "" +msgstr "Адәықәҵаҩ" #: poolfmt.src msgctxt "" @@ -1165,7 +1165,7 @@ "STR_POOLCOLL_TOX_OBJECT1\n" "string.text" msgid "Object Index 1" -msgstr "" +msgstr "Аобиеқтқәа рыхьӡынҵа 1" #: poolfmt.src msgctxt "" @@ -1181,7 +1181,7 @@ "STR_POOLCOLL_TOX_TABLES1\n" "string.text" msgid "Table Index 1" -msgstr "" +msgstr "Атаблицақәа рыхьӡынҵа 1" #: poolfmt.src msgctxt "" @@ -1607,7 +1607,7 @@ "Remove empty paragraphs\n" "itemlist.text" msgid "Remove empty paragraphs" -msgstr "" +msgstr "Ианыхтәуп иҭацәу абзацқәа" #: utlui.src msgctxt "" @@ -1661,7 +1661,7 @@ "Bullets replaced\n" "itemlist.text" msgid "Bullets replaced" -msgstr "" +msgstr "Амаркерқәа ҧсахуп" #: utlui.src msgctxt "" @@ -1795,7 +1795,7 @@ "STR_EVENT_OBJECT_SELECT\n" "string.text" msgid "Click object" -msgstr "" +msgstr "Аобиеқт алхра" #: utlui.src msgctxt "" @@ -1827,7 +1827,7 @@ "STR_EVENT_MOUSECLICK_OBJECT\n" "string.text" msgid "Trigger hyperlink" -msgstr "" +msgstr "Агиперзхьарҧш ала аиасра" #: utlui.src msgctxt "" @@ -1843,7 +1843,7 @@ "STR_EVENT_IMAGE_LOAD\n" "string.text" msgid "Image loaded successfully" -msgstr "" +msgstr "Асахьа қәҿиарала иҭагалоуп" #: utlui.src msgctxt "" @@ -1851,7 +1851,7 @@ "STR_EVENT_IMAGE_ABORT\n" "string.text" msgid "Image loading terminated" -msgstr "" +msgstr "Асахьа аҭагалара аанкылоуп" #: utlui.src msgctxt "" @@ -1859,7 +1859,7 @@ "STR_EVENT_IMAGE_ERROR\n" "string.text" msgid "Could not load image" -msgstr "" +msgstr "Асахьа аҭагалара ауам" #: utlui.src msgctxt "" @@ -1867,7 +1867,7 @@ "STR_EVENT_FRM_KEYINPUT_A\n" "string.text" msgid "Input of alphanumeric characters" -msgstr "" +msgstr "Алф.-цифр. символқәа рҭагалара" #: utlui.src msgctxt "" @@ -1907,7 +1907,7 @@ "STR_CONTENT_TYPE_TABLE\n" "string.text" msgid "Tables" -msgstr "" +msgstr "Атаблицақәа" #: utlui.src msgctxt "" @@ -1931,7 +1931,7 @@ "STR_CONTENT_TYPE_OLE\n" "string.text" msgid "OLE objects" -msgstr "" +msgstr "OLE аобиеқтқәа" #: utlui.src msgctxt "" @@ -1955,7 +1955,7 @@ "STR_CONTENT_TYPE_URLFIELD\n" "string.text" msgid "Hyperlinks" -msgstr "" +msgstr "Агиперзхьарҧшқәа" #: utlui.src msgctxt "" @@ -1979,7 +1979,7 @@ "STR_CONTENT_TYPE_DRAWOBJECT\n" "string.text" msgid "Drawing objects" -msgstr "" +msgstr "Асахьақәа" #: utlui.src msgctxt "" @@ -2067,7 +2067,7 @@ "STR_CONTENT_TYPE_SINGLE_TABLE\n" "string.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: utlui.src msgctxt "" @@ -2091,7 +2091,7 @@ "STR_CONTENT_TYPE_SINGLE_OLE\n" "string.text" msgid "OLE object" -msgstr "" +msgstr "OLE-аобиеқт" #: utlui.src msgctxt "" @@ -2115,7 +2115,7 @@ "STR_CONTENT_TYPE_SINGLE_URLFIELD\n" "string.text" msgid "Hyperlink" -msgstr "" +msgstr "Агиперзхьарҧш" #: utlui.src msgctxt "" @@ -2147,7 +2147,7 @@ "STR_CONTENT_TYPE_SINGLE_DRAWOBJECT\n" "string.text" msgid "Draw object" -msgstr "" +msgstr "Аграфикатә обиеқт" #: utlui.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/web.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/web.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/ui/web.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/ui/web.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n" -"PO-Revision-Date: 2015-04-23 18:31+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-21 10:58+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1429813876.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511261909.000000\n" #: web.src msgctxt "" @@ -21,7 +21,7 @@ "STR_HUMAN_SWWEBDOC_NAME\n" "string.text" msgid "HTML" -msgstr "" +msgstr "HTML" #: web.src msgctxt "" @@ -29,7 +29,7 @@ "STR_WRITER_WEBDOC_FULLTYPE\n" "string.text" msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document" -msgstr "" +msgstr "HTML (%PRODUCTNAME %PRODUCTVERSION) адокумент" #: web.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/uibase/dbui.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/uibase/dbui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/uibase/dbui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/uibase/dbui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n" -"PO-Revision-Date: 2014-11-18 11:21+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-20 19:33+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1416309694.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511206431.000000\n" #: mailmergechildwindow.src msgctxt "" @@ -45,7 +45,7 @@ "ST_SENDINGTO\n" "string.text" msgid "Sending to: %1" -msgstr "" +msgstr "Адәықәҵара: %1" #: mailmergechildwindow.src msgctxt "" @@ -61,4 +61,4 @@ "ST_FAILED\n" "string.text" msgid "Sending failed" -msgstr "" +msgstr "Адәықәҵара амуӡеит" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/uibase/docvw.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/uibase/docvw.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/uibase/docvw.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/uibase/docvw.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-06-20 13:56+0200\n" -"PO-Revision-Date: 2014-11-18 11:21+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-30 10:54+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1416309694.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1512039248.000000\n" #: docvw.src msgctxt "" @@ -29,7 +29,7 @@ "STR_REDLINE_DELETE\n" "string.text" msgid "Deleted" -msgstr "" +msgstr "Ианыхуп" #: docvw.src msgctxt "" @@ -37,7 +37,7 @@ "STR_REDLINE_FORMAT\n" "string.text" msgid "Formatted" -msgstr "" +msgstr "Иформатркуп" #: docvw.src msgctxt "" @@ -45,7 +45,7 @@ "STR_REDLINE_TABLE\n" "string.text" msgid "Table changed" -msgstr "" +msgstr "Атаблица ҧсахуп" #: docvw.src msgctxt "" @@ -53,7 +53,7 @@ "STR_REDLINE_FMTCOLL\n" "string.text" msgid "Applied Paragraph Styles" -msgstr "" +msgstr "Ихархәоуп абзац астиль" #: docvw.src msgctxt "" @@ -61,7 +61,7 @@ "STR_REDLINE_PARAGRAPH_FORMAT\n" "string.text" msgid "Paragraph formatting changed" -msgstr "" +msgstr "Абзац аформат ҧсахуп" #: docvw.src msgctxt "" @@ -77,7 +77,7 @@ "STR_REDLINE_TABLE_ROW_DELETE\n" "string.text" msgid "Row Deleted" -msgstr "" +msgstr "Ацәаҳәа аныхуп" #: docvw.src msgctxt "" @@ -93,7 +93,7 @@ "STR_REDLINE_TABLE_CELL_DELETE\n" "string.text" msgid "Cell Deleted" -msgstr "" +msgstr "Абларҭа аныхуп" #: docvw.src msgctxt "" @@ -133,7 +133,7 @@ "STR_TABLE_SELECT_ALL\n" "string.text" msgid "Select whole table" -msgstr "" +msgstr "Иалкаатәуп атаблица зегьы" #: docvw.src msgctxt "" @@ -141,7 +141,7 @@ "STR_TABLE_SELECT_ROW\n" "string.text" msgid "Select table row" -msgstr "" +msgstr "Иалкаатәуп атаблица ацәаҳәа" #: docvw.src msgctxt "" @@ -149,7 +149,7 @@ "STR_TABLE_SELECT_COL\n" "string.text" msgid "Select table column" -msgstr "" +msgstr "Иалкаатәуп атаблица аиҵагыла" #: docvw.src msgctxt "" @@ -229,7 +229,7 @@ "STR_DELETE_HEADER\n" "string.text" msgid "Delete Header..." -msgstr "" +msgstr "Ианыхтәуп хыхьтәи аколонтитул..." #: docvw.src msgctxt "" @@ -245,7 +245,7 @@ "STR_DELETE_FOOTER\n" "string.text" msgid "Delete Footer..." -msgstr "" +msgstr "Ианыхтәуп ҵаҟатәи аколонтитул..." #: docvw.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/uibase/ribbar.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/uibase/ribbar.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/uibase/ribbar.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/uibase/ribbar.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-20 13:56+0200\n" -"PO-Revision-Date: 2017-07-19 15:41+0000\n" +"PO-Revision-Date: 2017-12-12 10:48+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500478864.000000\n" +"X-POOTLE-MTIME: 1513075736.000000\n" #: inputwin.src msgctxt "" @@ -29,7 +29,7 @@ "STR_FORMULA_CANCEL\n" "string.text" msgid "Cancel" -msgstr "" +msgstr "Аҟәыхра" #: inputwin.src msgctxt "" @@ -37,7 +37,7 @@ "STR_FORMULA_APPLY\n" "string.text" msgid "Apply" -msgstr "" +msgstr "Ихархәатәуп" #: inputwin.src msgctxt "" @@ -53,7 +53,7 @@ "STR_ACCESS_FORMULA_TYPE\n" "string.text" msgid "Formula Type" -msgstr "Аформула ахкы" +msgstr "Аформула атип" #: inputwin.src msgctxt "" @@ -77,7 +77,7 @@ "ST_TBL\n" "string.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: workctrl.src msgctxt "" @@ -141,7 +141,7 @@ "ST_OLE\n" "string.text" msgid "OLE object" -msgstr "" +msgstr "OLE аобиеқт" #: workctrl.src msgctxt "" @@ -157,7 +157,7 @@ "ST_SEL\n" "string.text" msgid "Selection" -msgstr "" +msgstr "Алкаара" #: workctrl.src msgctxt "" @@ -221,7 +221,7 @@ "STR_IMGBTN_TBL_DOWN\n" "string.text" msgid "Next table" -msgstr "" +msgstr "Анаҩстәи атаблица" #: workctrl.src msgctxt "" @@ -285,7 +285,7 @@ "STR_IMGBTN_OLE_DOWN\n" "string.text" msgid "Next OLE object" -msgstr "" +msgstr "OLE анаҩстәи аобиеқт" #: workctrl.src msgctxt "" @@ -301,7 +301,7 @@ "STR_IMGBTN_SEL_DOWN\n" "string.text" msgid "Next selection" -msgstr "" +msgstr "Анаҩстәи алкаара" #: workctrl.src msgctxt "" @@ -349,7 +349,7 @@ "STR_IMGBTN_TBL_UP\n" "string.text" msgid "Previous table" -msgstr "" +msgstr "Аҧхьатәи атаблица" #: workctrl.src msgctxt "" @@ -413,7 +413,7 @@ "STR_IMGBTN_OLE_UP\n" "string.text" msgid "Previous OLE object" -msgstr "" +msgstr "OLE аҧхьатәи аобиеқт" #: workctrl.src msgctxt "" @@ -429,7 +429,7 @@ "STR_IMGBTN_SEL_UP\n" "string.text" msgid "Previous selection" -msgstr "" +msgstr "Аҧхьатәи алкаара" #: workctrl.src msgctxt "" @@ -477,7 +477,7 @@ "STR_IMGBTN_TBLFML_UP\n" "string.text" msgid "Previous table formula" -msgstr "" +msgstr "Атаблица иаҧхьааиуа аформула" #: workctrl.src msgctxt "" @@ -485,7 +485,7 @@ "STR_IMGBTN_TBLFML_DOWN\n" "string.text" msgid "Next table formula" -msgstr "" +msgstr "Атаблица анаҩстәи аформула" #: workctrl.src msgctxt "" @@ -493,7 +493,7 @@ "STR_IMGBTN_TBLFML_ERR_UP\n" "string.text" msgid "Previous faulty table formula" -msgstr "" +msgstr "Атаблица иаҧхьааиуа игхатәу аформула" #: workctrl.src msgctxt "" @@ -501,4 +501,4 @@ "STR_IMGBTN_TBLFML_ERR_DOWN\n" "string.text" msgid "Next faulty table formula" -msgstr "" +msgstr "Атаблица анаҩстәи игхатәу аформула" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/uibase/uiview.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/uibase/uiview.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/uibase/uiview.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/uibase/uiview.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-06-20 13:56+0200\n" -"PO-Revision-Date: 2014-11-18 11:21+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-29 08:39+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1416309695.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511944772.000000\n" #: view.src msgctxt "" @@ -37,7 +37,7 @@ "STR_ERR_SRCSTREAM\n" "string.text" msgid "The source cannot be loaded." -msgstr "" +msgstr "Ахалагаратә теқст аҭагалара ауам." #: view.src msgctxt "" @@ -133,7 +133,7 @@ "STR_SAVEAS_SRC\n" "string.text" msgid "~Export source..." -msgstr "" +msgstr "Ахалагаратә теқст аекспорт..." #: view.src msgctxt "" @@ -141,7 +141,7 @@ "STR_SAVEACOPY_SRC\n" "string.text" msgid "~Export copy of source..." -msgstr "" +msgstr "Ахыҵхырҭа акопиақәа рекспорт..." #: view.src msgctxt "" @@ -149,4 +149,4 @@ "RID_PVIEW_TOOLBOX\n" "string.text" msgid "Print Preview" -msgstr "" +msgstr "Заатәи ахәаҧшра" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/uibase/utlui.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/uibase/utlui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/source/uibase/utlui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/source/uibase/utlui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-04-19 21:38+0200\n" -"PO-Revision-Date: 2016-12-02 10:23+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-30 10:54+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1480674210.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1512039266.000000\n" #: attrdesc.src msgctxt "" @@ -93,7 +93,7 @@ "STR_CHARFMT\n" "string.text" msgid "Character Style" -msgstr "" +msgstr "Асимволқәа рстиль" #: attrdesc.src msgctxt "" @@ -221,7 +221,7 @@ "STR_FLY_AT_PARA\n" "string.text" msgid "to paragraph" -msgstr "" +msgstr "абзац ахь" #: attrdesc.src msgctxt "" @@ -229,7 +229,7 @@ "STR_FLY_AS_CHAR\n" "string.text" msgid "to character" -msgstr "" +msgstr "асимвол ахь" #: attrdesc.src msgctxt "" @@ -773,7 +773,7 @@ "STR_TOC\n" "string.text" msgid "Table of Contents" -msgstr "" +msgstr "Ахы" #: initui.src msgctxt "" @@ -797,7 +797,7 @@ "STR_TOX_TBL\n" "string.text" msgid "Index of Tables" -msgstr "" +msgstr "Атаблицақәа рыхьӡынҵа" #: initui.src msgctxt "" @@ -805,7 +805,7 @@ "STR_TOX_OBJ\n" "string.text" msgid "Table of Objects" -msgstr "" +msgstr "Аобиеқтқәа рыхьӡынҵа" #: initui.src msgctxt "" @@ -885,7 +885,7 @@ "FLD_DOCINFO_PRINT\n" "string.text" msgid "Last printed" -msgstr "" +msgstr "Икьыҧхьуп" #: initui.src msgctxt "" @@ -1165,7 +1165,7 @@ "STR_AUTH_FIELD_EDITION\n" "string.text" msgid "Edition" -msgstr "" +msgstr "Аҭыжьымҭа" #: initui.src msgctxt "" @@ -1173,7 +1173,7 @@ "STR_AUTH_FIELD_EDITOR\n" "string.text" msgid "Editor" -msgstr "" +msgstr "Аредақтор" #: initui.src msgctxt "" @@ -1389,7 +1389,7 @@ "STR_HYPERLINK\n" "string.text" msgid "Insert as Hyperlink" -msgstr "" +msgstr "Ибжьаргылатәуп агиперзхьарҧш ҳасабла" #: navipi.src msgctxt "" @@ -1453,7 +1453,7 @@ "STR_EDIT_ENTRY\n" "string.text" msgid "Edit..." -msgstr "" +msgstr "Ариашара..." #: navipi.src msgctxt "" @@ -1461,7 +1461,7 @@ "STR_UPDATE\n" "string.text" msgid "~Update" -msgstr "" +msgstr "Ирҿыцтәуп" #: navipi.src msgctxt "" @@ -1469,7 +1469,7 @@ "STR_EDIT_CONTENT\n" "string.text" msgid "Edit" -msgstr "" +msgstr "Ариашара" #: navipi.src msgctxt "" @@ -1477,7 +1477,7 @@ "STR_EDIT_LINK\n" "string.text" msgid "Edit link" -msgstr "" +msgstr "Аимадарақәа рыриашара" #: navipi.src msgctxt "" @@ -1501,7 +1501,7 @@ "STR_FILE\n" "string.text" msgid "File" -msgstr "" +msgstr "Афаил" #: navipi.src msgctxt "" @@ -1509,7 +1509,7 @@ "STR_NEW_FILE\n" "string.text" msgid "New Document" -msgstr "" +msgstr "Иаҧҵатәуп адокумент" #: navipi.src msgctxt "" @@ -1525,7 +1525,7 @@ "STR_DELETE\n" "string.text" msgid "Delete" -msgstr "" +msgstr "Ианыхтәуп" #: navipi.src msgctxt "" @@ -1533,7 +1533,7 @@ "STR_DELETE_ENTRY\n" "string.text" msgid "~Delete" -msgstr "" +msgstr "Ианыхтәуп" #: navipi.src msgctxt "" @@ -1541,7 +1541,7 @@ "STR_UPDATE_SEL\n" "string.text" msgid "Selection" -msgstr "" +msgstr "Иалкаау" #: navipi.src msgctxt "" @@ -1557,7 +1557,7 @@ "STR_UPDATE_LINK\n" "string.text" msgid "Links" -msgstr "" +msgstr "Аимадарақәа" #: navipi.src msgctxt "" @@ -1597,7 +1597,7 @@ "STR_BROKEN_LINK\n" "string.text" msgid "File not found: " -msgstr "" +msgstr "Афаил ҧшаам: " #: navipi.src msgctxt "" @@ -1637,7 +1637,7 @@ "STR_POSTIT_DELETE\n" "string.text" msgid "Delete All" -msgstr "" +msgstr "Ианыхтәуп зегьы" #: statusbar.src msgctxt "" @@ -1710,7 +1710,7 @@ "~Zoom\n" "itemlist.text" msgid "~Zoom" -msgstr "" +msgstr "Амасштаб" #: unotools.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/uiconfig/swriter/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sw/uiconfig/swriter/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sw/uiconfig/swriter/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-06-06 20:00+0200\n" -"PO-Revision-Date: 2017-09-18 11:11+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-12-12 10:51+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1505733117.000000\n" +"X-POOTLE-MTIME: 1513075916.000000\n" #: abstractdialog.ui msgctxt "" @@ -202,7 +202,7 @@ "title\n" "string.text" msgid "File already exists" -msgstr "" +msgstr "Ари афаил ыҟоуп" #: alreadyexistsdialog.ui msgctxt "" @@ -211,7 +211,7 @@ "label\n" "string.text" msgid "New document name:" -msgstr "" +msgstr "Адокумент иҿыцу ахьӡ:" #: annotationmenu.ui msgctxt "" @@ -229,7 +229,7 @@ "label\n" "string.text" msgid "Delete _Comment" -msgstr "" +msgstr "Ианыхтәуп акомментари" #: annotationmenu.ui msgctxt "" @@ -247,7 +247,7 @@ "label\n" "string.text" msgid "_Delete All Comments" -msgstr "" +msgstr "Ианыхтәуп акомментариқәа зегьы" #: annotationmenu.ui msgctxt "" @@ -274,7 +274,7 @@ "label\n" "string.text" msgid "_Character set" -msgstr "" +msgstr "Акодркра" #: asciifilterdialog.ui msgctxt "" @@ -382,7 +382,7 @@ "title\n" "string.text" msgid "Assign Styles" -msgstr "" +msgstr "Иазалхтәуп астильқәа" #: assignstylesdialog.ui msgctxt "" @@ -418,7 +418,7 @@ "label\n" "string.text" msgid "Styles" -msgstr "" +msgstr "Астильқәа" #: attachnamedialog.ui msgctxt "" @@ -598,7 +598,7 @@ "title\n" "string.text" msgid "AutoFormat" -msgstr "" +msgstr "Автоформат" #: autoformattable.ui msgctxt "" @@ -616,7 +616,7 @@ "label\n" "string.text" msgid "Format" -msgstr "" +msgstr "Аформат" #: autoformattable.ui msgctxt "" @@ -625,7 +625,7 @@ "label\n" "string.text" msgid "Number format" -msgstr "" +msgstr "Ахыҧхьаӡаратә формат" #: autoformattable.ui msgctxt "" @@ -670,7 +670,7 @@ "label\n" "string.text" msgid "Formatting" -msgstr "" +msgstr "Аформатркра" #: autotext.ui msgctxt "" @@ -724,7 +724,7 @@ "label\n" "string.text" msgid "_File system" -msgstr "" +msgstr "Афаилтә системақәа" #: autotext.ui msgctxt "" @@ -787,7 +787,7 @@ "label\n" "string.text" msgid "_New" -msgstr "" +msgstr "Иаҧҵатәуп" #: autotext.ui msgctxt "" @@ -796,7 +796,7 @@ "label\n" "string.text" msgid "New (text only)" -msgstr "" +msgstr "Иаҧҵатәуп (атеқст мацара)" #: autotext.ui msgctxt "" @@ -841,7 +841,7 @@ "label\n" "string.text" msgid "_Delete" -msgstr "" +msgstr "_Ианыхтәуп" #: autotext.ui msgctxt "" @@ -850,7 +850,7 @@ "label\n" "string.text" msgid "_Edit" -msgstr "" +msgstr "Ариашара" #: autotext.ui msgctxt "" @@ -868,7 +868,7 @@ "label\n" "string.text" msgid "_Import..." -msgstr "" +msgstr "_Аимпорт..." #: bibliographyentry.ui msgctxt "" @@ -895,7 +895,7 @@ "label\n" "string.text" msgid "Apply" -msgstr "" +msgstr "Ихархәатәуп" #: bibliographyentry.ui msgctxt "" @@ -958,7 +958,7 @@ "title\n" "string.text" msgid "Bullets and Numbering" -msgstr "" +msgstr "Амаркерқәеи аномерркреи" #: bulletsandnumbering.ui msgctxt "" @@ -985,7 +985,7 @@ "label\n" "string.text" msgid "Bullets" -msgstr "" +msgstr "Амаркерқәа" #: bulletsandnumbering.ui msgctxt "" @@ -1192,7 +1192,7 @@ "label\n" "string.text" msgid "Phone/mobile:" -msgstr "" +msgstr "Аҭел/Амобилтә:" #: businessdatapage.ui msgctxt "" @@ -1309,7 +1309,7 @@ "label\n" "string.text" msgid "Character style:" -msgstr "" +msgstr "Асимвол астиль:" #: captionoptions.ui msgctxt "" @@ -1417,7 +1417,7 @@ "label\n" "string.text" msgid "Table:" -msgstr "" +msgstr "Атаблица:" #: cardmediumpage.ui msgctxt "" @@ -1489,7 +1489,7 @@ "label\n" "string.text" msgid "Format" -msgstr "" +msgstr "Аформат" #: ccdialog.ui msgctxt "" @@ -1543,7 +1543,7 @@ "title\n" "string.text" msgid "Character" -msgstr "" +msgstr "Асимвол" #: characterproperties.ui msgctxt "" @@ -1588,7 +1588,7 @@ "label\n" "string.text" msgid "Hyperlink" -msgstr "" +msgstr "Агиперзхьарҧш" #: characterproperties.ui msgctxt "" @@ -1660,7 +1660,7 @@ "label\n" "string.text" msgid "Browse..." -msgstr "" +msgstr "Аҭыҧхәаҧшра..." #: charurlpage.ui msgctxt "" @@ -1669,7 +1669,7 @@ "label\n" "string.text" msgid "Hyperlink" -msgstr "" +msgstr "Агиперзхьарҧш" #: charurlpage.ui msgctxt "" @@ -1696,7 +1696,7 @@ "label\n" "string.text" msgid "Character Styles" -msgstr "" +msgstr "Асимвол астильқәа" #: columndialog.ui msgctxt "" @@ -1912,7 +1912,7 @@ "0\n" "stringlist.text" msgid "Selection" -msgstr "" +msgstr "Иалкаау" #: columnpage.ui msgctxt "" @@ -2011,7 +2011,7 @@ "label\n" "string.text" msgid "Applied Styles" -msgstr "" +msgstr "Ахархәара змоу астильқәа" #: conditionpage.ui msgctxt "" @@ -2020,7 +2020,7 @@ "label\n" "string.text" msgid "_Paragraph Styles" -msgstr "" +msgstr "Абзац астильқәа" #: conditionpage.ui msgctxt "" @@ -2038,7 +2038,7 @@ "1\n" "stringlist.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: conditionpage.ui msgctxt "" @@ -2336,7 +2336,7 @@ "label\n" "string.text" msgid "Paragraph" -msgstr "" +msgstr "Абзац" #: converttexttable.ui msgctxt "" @@ -2426,7 +2426,7 @@ "label\n" "string.text" msgid "AutoFormat..." -msgstr "" +msgstr "Автоформат..." #: converttexttable.ui msgctxt "" @@ -2509,7 +2509,7 @@ "label\n" "string.text" msgid "_New" -msgstr "" +msgstr "Иаҧҵатәуп" #: createaddresslist.ui msgctxt "" @@ -2518,7 +2518,7 @@ "label\n" "string.text" msgid "_Delete" -msgstr "" +msgstr "_Ианыхтәуп" #: createaddresslist.ui msgctxt "" @@ -2743,7 +2743,7 @@ "label\n" "string.text" msgid "Number of _characters:" -msgstr "" +msgstr "Асимволқәа:" #: dropcapspage.ui msgctxt "" @@ -2788,7 +2788,7 @@ "label\n" "string.text" msgid "Character st_yle:" -msgstr "" +msgstr "Асимволқәа рстиль:" #: dropcapspage.ui msgctxt "" @@ -2815,7 +2815,7 @@ "label\n" "string.text" msgid "Edit" -msgstr "" +msgstr "Иҧсахтәуп" #: editcategories.ui msgctxt "" @@ -2842,7 +2842,7 @@ "label\n" "string.text" msgid "Selection list" -msgstr "" +msgstr "Алхрақәа рыхьӡынҵа" #: editcategories.ui msgctxt "" @@ -2887,7 +2887,7 @@ "label\n" "string.text" msgid "_Edit" -msgstr "" +msgstr "Ариашара" #: editsectiondialog.ui msgctxt "" @@ -2923,7 +2923,7 @@ "label\n" "string.text" msgid "_Link" -msgstr "" +msgstr "_Азхьарҧш" #: editsectiondialog.ui msgctxt "" @@ -2941,7 +2941,7 @@ "label\n" "string.text" msgid "Browse..." -msgstr "" +msgstr "Аҭыҧхәаҧшра..." #: editsectiondialog.ui msgctxt "" @@ -2959,7 +2959,7 @@ "label\n" "string.text" msgid "_File name" -msgstr "" +msgstr "Афаил ахьӡ" #: editsectiondialog.ui msgctxt "" @@ -2977,7 +2977,7 @@ "label\n" "string.text" msgid "Link" -msgstr "" +msgstr "Азхьарҧш" #: editsectiondialog.ui msgctxt "" @@ -3112,7 +3112,7 @@ "label\n" "string.text" msgid "Paragraph" -msgstr "" +msgstr "Абзац" #: endnotepage.ui msgctxt "" @@ -3130,7 +3130,7 @@ "label\n" "string.text" msgid "Styles" -msgstr "" +msgstr "Астильқәа" #: endnotepage.ui msgctxt "" @@ -3157,7 +3157,7 @@ "label\n" "string.text" msgid "Character Styles" -msgstr "" +msgstr "Асимволқәа рстильқәа" #: envaddresspage.ui msgctxt "" @@ -3184,7 +3184,7 @@ "label\n" "string.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: envaddresspage.ui msgctxt "" @@ -3211,7 +3211,7 @@ "label\n" "string.text" msgid "_Sender" -msgstr "" +msgstr "Адәықәҵаҩ" #: envaddresspage.ui msgctxt "" @@ -3238,7 +3238,7 @@ "label\n" "string.text" msgid "_New Document" -msgstr "" +msgstr "Иаҧҵатәуп адокумент" #: envdialog.ui msgctxt "" @@ -3274,7 +3274,7 @@ "label\n" "string.text" msgid "Format" -msgstr "" +msgstr "Аформат" #: envdialog.ui msgctxt "" @@ -3283,7 +3283,7 @@ "label\n" "string.text" msgid "Printer" -msgstr "" +msgstr "Апринтер" #: envformatpage.ui msgctxt "" @@ -3310,7 +3310,7 @@ "label\n" "string.text" msgid "Format" -msgstr "" +msgstr "Аформат" #: envformatpage.ui msgctxt "" @@ -3319,7 +3319,7 @@ "label\n" "string.text" msgid "Edit" -msgstr "" +msgstr "Ариашара" #: envformatpage.ui msgctxt "" @@ -3364,7 +3364,7 @@ "label\n" "string.text" msgid "Format" -msgstr "" +msgstr "Аформат" #: envformatpage.ui msgctxt "" @@ -3373,7 +3373,7 @@ "label\n" "string.text" msgid "Edit" -msgstr "" +msgstr "Ариашара" #: envformatpage.ui msgctxt "" @@ -3391,7 +3391,7 @@ "label\n" "string.text" msgid "Sender" -msgstr "" +msgstr "Адәықәҵаҩ" #: envformatpage.ui msgctxt "" @@ -3436,7 +3436,7 @@ "label\n" "string.text" msgid "Size" -msgstr "" +msgstr "Ашәагаа" #: envformatpage.ui msgctxt "" @@ -3625,7 +3625,7 @@ "label\n" "string.text" msgid "Printer Name" -msgstr "" +msgstr "Апринтер ахьӡ" #: envprinterpage.ui msgctxt "" @@ -3634,7 +3634,7 @@ "label\n" "string.text" msgid "Current Printer" -msgstr "" +msgstr "Уажәтәи апринтер" #: exchangedatabases.ui msgctxt "" @@ -3679,7 +3679,7 @@ "label\n" "string.text" msgid "Browse..." -msgstr "" +msgstr "Аҭыҧхәаҧшра..." #: exchangedatabases.ui msgctxt "" @@ -3762,7 +3762,7 @@ "label\n" "string.text" msgid "DocInformation" -msgstr "" +msgstr "Адокумент иазкны" #: fielddialog.ui msgctxt "" @@ -3807,7 +3807,7 @@ "label\n" "string.text" msgid "Find _only in" -msgstr "" +msgstr "Иҧшаатәуп абра мацара" #: flddbpage.ui msgctxt "" @@ -3861,7 +3861,7 @@ "label\n" "string.text" msgid "Browse..." -msgstr "" +msgstr "Аҭыҧхәаҧшра..." #: flddbpage.ui msgctxt "" @@ -3888,7 +3888,7 @@ "label\n" "string.text" msgid "Format" -msgstr "" +msgstr "Аформат" #: flddocinfopage.ui msgctxt "" @@ -4212,7 +4212,7 @@ "label\n" "string.text" msgid "Selection" -msgstr "" +msgstr "Алхра" #: fldrefpage.ui msgctxt "" @@ -4221,7 +4221,7 @@ "placeholder_text\n" "string.text" msgid "Filter Selection" -msgstr "" +msgstr "Афильтр" #: fldrefpage.ui msgctxt "" @@ -4293,7 +4293,7 @@ "4\n" "stringlist.text" msgid "Numbered Paragraphs" -msgstr "" +msgstr "Иномеррку абзацқәа" #: fldvarpage.ui msgctxt "" @@ -4402,7 +4402,7 @@ "tooltip_text\n" "string.text" msgid "Apply" -msgstr "" +msgstr "Ихархәатәуп" #: fldvarpage.ui msgctxt "" @@ -4411,7 +4411,7 @@ "tooltip_text\n" "string.text" msgid "Delete" -msgstr "" +msgstr "Ианыхтәуп" #: fldvarpage.ui msgctxt "" @@ -4717,7 +4717,7 @@ "label\n" "string.text" msgid "Paragraph" -msgstr "" +msgstr "Абзац" #: footnotepage.ui msgctxt "" @@ -4735,7 +4735,7 @@ "label\n" "string.text" msgid "Styles" -msgstr "" +msgstr "Астильқәа" #: footnotepage.ui msgctxt "" @@ -4762,7 +4762,7 @@ "label\n" "string.text" msgid "Character Styles" -msgstr "" +msgstr "Асимволқәа рстильқәа" #: footnotepage.ui msgctxt "" @@ -4843,7 +4843,7 @@ "label\n" "string.text" msgid "Custom _format" -msgstr "" +msgstr "Ахархәаҩ иформат" #: footnotesendnotestabpage.ui msgctxt "" @@ -4915,7 +4915,7 @@ "label\n" "string.text" msgid "_Custom format" -msgstr "" +msgstr "Ахархәаҩ иформат" #: footnotesendnotestabpage.ui msgctxt "" @@ -5221,7 +5221,7 @@ "label\n" "string.text" msgid "Hyperlink" -msgstr "" +msgstr "Агиперзхьарҧш" #: framedialog.ui msgctxt "" @@ -5322,7 +5322,7 @@ "label\n" "string.text" msgid "_Next link:" -msgstr "" +msgstr "Анаҩстәи азхьарҧш:" #: frmaddpage.ui msgctxt "" @@ -5385,7 +5385,7 @@ "label\n" "string.text" msgid "_Size" -msgstr "" +msgstr "Ашәагаа" #: frmaddpage.ui msgctxt "" @@ -5511,7 +5511,7 @@ "label\n" "string.text" msgid "AutoSize" -msgstr "" +msgstr "Авто-зыҧшаара" #: frmtypepage.ui msgctxt "" @@ -5547,7 +5547,7 @@ "label\n" "string.text" msgid "AutoSize" -msgstr "" +msgstr "Авто-зыҧшаара" #: frmtypepage.ui msgctxt "" @@ -5592,7 +5592,7 @@ "label\n" "string.text" msgid "_Original Size" -msgstr "" +msgstr "Ахалагаратә шәагаа" #: frmtypepage.ui msgctxt "" @@ -5601,7 +5601,7 @@ "label\n" "string.text" msgid "Size" -msgstr "" +msgstr "Ашәагаа" #: frmtypepage.ui msgctxt "" @@ -5619,7 +5619,7 @@ "label\n" "string.text" msgid "To paragrap_h" -msgstr "" +msgstr "Абзац ахь" #: frmtypepage.ui msgctxt "" @@ -5637,7 +5637,7 @@ "label\n" "string.text" msgid "_As character" -msgstr "" +msgstr "Асимвол еиҧш" #: frmtypepage.ui msgctxt "" @@ -5772,7 +5772,7 @@ "label\n" "string.text" msgid "_Browse..." -msgstr "" +msgstr "Аҭыҧхәаҧшра..." #: frmurlpage.ui msgctxt "" @@ -6033,7 +6033,7 @@ "label\n" "string.text" msgid "Selection" -msgstr "" +msgstr "Алхра" #: infonotfounddialog.ui msgctxt "" @@ -6096,7 +6096,7 @@ "label\n" "string.text" msgid "Edit" -msgstr "" +msgstr "Иҧсахтәуп" #: inputwinmenu.ui msgctxt "" @@ -6402,7 +6402,7 @@ "label\n" "string.text" msgid "Delete" -msgstr "" +msgstr "Ианыхтәуп" #: insertbookmark.ui msgctxt "" @@ -6728,7 +6728,7 @@ "label\n" "string.text" msgid "Aut_oFormat..." -msgstr "" +msgstr "Автоформат..." #: insertdbcolumnsdialog.ui msgctxt "" @@ -6737,7 +6737,7 @@ "label\n" "string.text" msgid "Paragraph _style:" -msgstr "" +msgstr "Абзац астиль:" #: insertdbcolumnsdialog.ui msgctxt "" @@ -6764,7 +6764,7 @@ "label\n" "string.text" msgid "Format" -msgstr "" +msgstr "Аформат" #: insertfootnote.ui msgctxt "" @@ -6791,7 +6791,7 @@ "label\n" "string.text" msgid "Character" -msgstr "" +msgstr "Асимвол" #: insertfootnote.ui msgctxt "" @@ -6800,7 +6800,7 @@ "AtkObject::accessible-name\n" "string.text" msgid "Character" -msgstr "" +msgstr "Асимвол" #: insertfootnote.ui msgctxt "" @@ -6890,7 +6890,7 @@ "label\n" "string.text" msgid "Browse…" -msgstr "" +msgstr "Аҭыҧхәаҧшра..." #: insertscript.ui msgctxt "" @@ -6971,7 +6971,7 @@ "title\n" "string.text" msgid "Insert Table" -msgstr "" +msgstr "Ибжьаргылатәуп атаблица" #: inserttable.ui msgctxt "" @@ -7070,7 +7070,7 @@ "label\n" "string.text" msgid "Auto_Format" -msgstr "" +msgstr "Автоформат" #: inserttable.ui msgctxt "" @@ -7097,7 +7097,7 @@ "label\n" "string.text" msgid "_New Document" -msgstr "" +msgstr "Иаҧҵатәуп адокумент" #: labeldialog.ui msgctxt "" @@ -7151,7 +7151,7 @@ "label\n" "string.text" msgid "Format" -msgstr "" +msgstr "Аформат" #: labeldialog.ui msgctxt "" @@ -7259,7 +7259,7 @@ "label\n" "string.text" msgid "_Save..." -msgstr "Иеиқәырхатәуп..." +msgstr "Еиқәырхатәуп..." #: labeloptionspage.ui msgctxt "" @@ -7331,7 +7331,7 @@ "label\n" "string.text" msgid "Printer Name" -msgstr "" +msgstr "Апринтер ахьӡ" #: labeloptionspage.ui msgctxt "" @@ -7340,7 +7340,7 @@ "label\n" "string.text" msgid "Printer" -msgstr "" +msgstr "Апринтер" #: linenumbering.ui msgctxt "" @@ -7367,7 +7367,7 @@ "label\n" "string.text" msgid "Character style:" -msgstr "" +msgstr "Асимволқәа рстиль:" #: linenumbering.ui msgctxt "" @@ -7376,7 +7376,7 @@ "label\n" "string.text" msgid "Format:" -msgstr "" +msgstr "Аформат:" #: linenumbering.ui msgctxt "" @@ -7583,7 +7583,7 @@ "label\n" "string.text" msgid "User Information" -msgstr "" +msgstr "Ахархәаҩ изку аинформациа" #: mailconfigpage.ui msgctxt "" @@ -7664,7 +7664,7 @@ "label\n" "string.text" msgid "_Selected records" -msgstr "" +msgstr "Иалкаау анҵамҭақәа" #: mailmerge.ui msgctxt "" @@ -7700,7 +7700,7 @@ "label\n" "string.text" msgid "_Printer" -msgstr "" +msgstr "Апринтер" #: mailmerge.ui msgctxt "" @@ -7718,7 +7718,7 @@ "label\n" "string.text" msgid "File" -msgstr "" +msgstr "Афаил" #: mailmerge.ui msgctxt "" @@ -7763,7 +7763,7 @@ "label\n" "string.text" msgid "F_ile format:" -msgstr "" +msgstr "Афаил аформат:" #: mailmerge.ui msgctxt "" @@ -7844,7 +7844,7 @@ "label\n" "string.text" msgid "Save Merged Document" -msgstr "" +msgstr "Еиқәырхатәуп еилоу адокумент" #: mailmerge.ui msgctxt "" @@ -7934,7 +7934,7 @@ "label\n" "string.text" msgid "Edit Comment..." -msgstr "" +msgstr "Иҧсахтәуп акомментари..." #: managechangessidebar.ui msgctxt "" @@ -8042,7 +8042,7 @@ "title\n" "string.text" msgid "Merge Tables" -msgstr "" +msgstr "Еидҵатәуп атаблицақәа" #: mergetabledialog.ui msgctxt "" @@ -8375,7 +8375,7 @@ "label\n" "string.text" msgid "_Zoom" -msgstr "" +msgstr "Амасштаб" #: mmlayoutpage.ui msgctxt "" @@ -8483,7 +8483,7 @@ "label\n" "string.text" msgid "_New..." -msgstr "" +msgstr "Иаҧҵатәуп..." #: mmmailbody.ui msgctxt "" @@ -8564,7 +8564,7 @@ "label\n" "string.text" msgid "Send Documents" -msgstr "" +msgstr "Идәықәҵатәуп адокументқәа" #: mmresultemaildialog.ui msgctxt "" @@ -8672,7 +8672,7 @@ "0\n" "stringlist.text" msgid "OpenDocument Text" -msgstr "" +msgstr "OpenDocument атеқсттә документ" #: mmresultemaildialog.ui msgctxt "" @@ -8681,7 +8681,7 @@ "1\n" "stringlist.text" msgid "Adobe PDF-Document" -msgstr "" +msgstr "PDF адокумент" #: mmresultemaildialog.ui msgctxt "" @@ -8726,7 +8726,7 @@ "label\n" "string.text" msgid "Print Documents" -msgstr "" +msgstr "Икьыҧхьтәуп адокументқәа" #: mmresultprintdialog.ui msgctxt "" @@ -8735,7 +8735,7 @@ "label\n" "string.text" msgid "_Printer" -msgstr "" +msgstr "Апринтер" #: mmresultprintdialog.ui msgctxt "" @@ -8762,7 +8762,7 @@ "label\n" "string.text" msgid "Print _all documents" -msgstr "" +msgstr "Икьыҧхьтәуп адокументқәа зегьы" #: mmresultprintdialog.ui msgctxt "" @@ -8798,7 +8798,7 @@ "title\n" "string.text" msgid "Save merged document" -msgstr "" +msgstr "Еиқәырхатәуп еилоу адокумент" #: mmresultsavedialog.ui msgctxt "" @@ -8807,7 +8807,7 @@ "label\n" "string.text" msgid "Save Documents" -msgstr "Иеиқәырхатәуп адокументқәа" +msgstr "Еиқәырхатәуп адокументқәа" #: mmresultsavedialog.ui msgctxt "" @@ -8852,7 +8852,7 @@ "label\n" "string.text" msgid "Save As options" -msgstr "Иеиқәырхатәуп апараметрқәа" +msgstr "Еиқәырхатәуп апараметрқәа" #: mmsalutationpage.ui msgctxt "" @@ -8969,7 +8969,7 @@ "label\n" "string.text" msgid "_New..." -msgstr "" +msgstr "Иаҧҵатәуп..." #: mmsalutationpage.ui msgctxt "" @@ -9329,7 +9329,7 @@ "tooltip_text\n" "string.text" msgid "Edit" -msgstr "" +msgstr "Иҧсахтәуп" #: navigatorpanel.ui msgctxt "" @@ -9338,7 +9338,7 @@ "tooltip_text\n" "string.text" msgid "Update" -msgstr "" +msgstr "Ирҿыцтәуп" #: navigatorpanel.ui msgctxt "" @@ -9410,7 +9410,7 @@ "label\n" "string.text" msgid "File" -msgstr "" +msgstr "Афаил" #: notebookbar.ui msgctxt "" @@ -9446,7 +9446,7 @@ "tooltip_text\n" "string.text" msgid "Bullets and Numbering" -msgstr "" +msgstr "Амаркерқәеи аномерркреи" #: notebookbar.ui msgctxt "" @@ -9590,7 +9590,7 @@ "tooltip_text\n" "string.text" msgid "Open Clip Art and Media Gallery" -msgstr "" +msgstr "Иаарттәуп агалереиа" #: notebookbar.ui msgctxt "" @@ -9635,7 +9635,7 @@ "tooltip_text\n" "string.text" msgid "Links" -msgstr "" +msgstr "Азхьарҧшқәа" #: notebookbar.ui msgctxt "" @@ -9734,7 +9734,7 @@ "tooltip_text\n" "string.text" msgid "Zoom" -msgstr "" +msgstr "Амасштаб" #: notebookbar.ui msgctxt "" @@ -9770,7 +9770,7 @@ "label\n" "string.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: notebookbar.ui msgctxt "" @@ -9869,7 +9869,7 @@ "label\n" "string.text" msgid "File" -msgstr "" +msgstr "Афаил" #: notebookbar_groupedbar_compact.ui msgctxt "" @@ -9878,7 +9878,7 @@ "label\n" "string.text" msgid "Edit" -msgstr "" +msgstr "Ариашара" #: notebookbar_groupedbar_compact.ui msgctxt "" @@ -9887,7 +9887,7 @@ "label\n" "string.text" msgid "Styles" -msgstr "" +msgstr "Астильқәа" #: notebookbar_groupedbar_compact.ui msgctxt "" @@ -9896,7 +9896,7 @@ "label\n" "string.text" msgid "Format" -msgstr "" +msgstr "Аформат" #: notebookbar_groupedbar_compact.ui msgctxt "" @@ -9905,7 +9905,7 @@ "label\n" "string.text" msgid "Paragraph" -msgstr "" +msgstr "Абзац" #: notebookbar_groupedbar_compact.ui msgctxt "" @@ -9950,7 +9950,7 @@ "label\n" "string.text" msgid "Styles" -msgstr "" +msgstr "Астильқәа" #: notebookbar_groupedbar_compact.ui msgctxt "" @@ -9959,7 +9959,7 @@ "label\n" "string.text" msgid "Format" -msgstr "" +msgstr "Аформат" #: notebookbar_groupedbar_compact.ui msgctxt "" @@ -9968,7 +9968,7 @@ "label\n" "string.text" msgid "Paragraph" -msgstr "" +msgstr "Абзац" #: notebookbar_groupedbar_compact.ui msgctxt "" @@ -9977,7 +9977,7 @@ "label\n" "string.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: notebookbar_groupedbar_compact.ui msgctxt "" @@ -10004,7 +10004,7 @@ "label\n" "string.text" msgid "Select" -msgstr "" +msgstr "Алхра" #: notebookbar_groupedbar_compact.ui msgctxt "" @@ -10031,7 +10031,7 @@ "label\n" "string.text" msgid "Edit" -msgstr "" +msgstr "Ариашара" #: notebookbar_groupedbar_compact.ui msgctxt "" @@ -10058,7 +10058,7 @@ "tooltip_text\n" "string.text" msgid "Bullets and Numbering" -msgstr "" +msgstr "Амаркерқәеи аномерркреи" #: notebookbar_groupedbar_compact.ui msgctxt "" @@ -10076,7 +10076,7 @@ "tooltip_text\n" "string.text" msgid "Bullets and Numbering" -msgstr "" +msgstr "Амаркерқәеи аномерркреи" #: notebookbar_groupedbar_compact.ui msgctxt "" @@ -10085,7 +10085,7 @@ "tooltip_text\n" "string.text" msgid "Bullets and Numbering" -msgstr "" +msgstr "Амаркерқәеи аномерркреи" #: notebookbar_groupedbar_compact.ui msgctxt "" @@ -10121,7 +10121,7 @@ "label\n" "string.text" msgid "Files" -msgstr "" +msgstr "Афаилқәа" #: notebookbar_groupedbar_compact.ui msgctxt "" @@ -10158,7 +10158,7 @@ "label\n" "string.text" msgid "_File" -msgstr "" +msgstr "Афаил" #: notebookbar_groupedbar_full.ui msgctxt "" @@ -10167,7 +10167,7 @@ "label\n" "string.text" msgid "_Edit" -msgstr "" +msgstr "Ариашара" #: notebookbar_groupedbar_full.ui msgctxt "" @@ -10176,7 +10176,7 @@ "label\n" "string.text" msgid "_Styles" -msgstr "" +msgstr "Астильқәа" #: notebookbar_groupedbar_full.ui msgctxt "" @@ -10194,7 +10194,7 @@ "label\n" "string.text" msgid "_Paragraph" -msgstr "" +msgstr "Абзац" #: notebookbar_groupedbar_full.ui msgctxt "" @@ -10275,7 +10275,7 @@ "label\n" "string.text" msgid "_Styles" -msgstr "" +msgstr "Астильқәа" #: notebookbar_groupedbar_full.ui msgctxt "" @@ -10284,7 +10284,7 @@ "label\n" "string.text" msgid "_Format" -msgstr "" +msgstr "Аформат" #: notebookbar_groupedbar_full.ui msgctxt "" @@ -10293,7 +10293,7 @@ "label\n" "string.text" msgid "_Paragraph" -msgstr "" +msgstr "Абзац" #: notebookbar_groupedbar_full.ui msgctxt "" @@ -10419,7 +10419,7 @@ "label\n" "string.text" msgid "_Edit" -msgstr "" +msgstr "Ариашара" #: notebookbar_groupedbar_full.ui msgctxt "" @@ -10491,7 +10491,7 @@ "label\n" "string.text" msgid "_Paragraph" -msgstr "" +msgstr "Абзац" #: notebookbar_groupedbar_full.ui msgctxt "" @@ -10725,7 +10725,7 @@ "label\n" "string.text" msgid "Hyperlink" -msgstr "" +msgstr "Агиперзхьарҧш" #: notebookbar_groups.ui msgctxt "" @@ -10770,7 +10770,7 @@ "label\n" "string.text" msgid "Default Paragraph" -msgstr "" +msgstr "Ибазатәу абзац" #: notebookbar_groups.ui msgctxt "" @@ -10815,7 +10815,7 @@ "label\n" "string.text" msgid "Default Character" -msgstr "" +msgstr "Абазатә символ" #: notebookbar_groups.ui msgctxt "" @@ -10914,7 +10914,7 @@ "label\n" "string.text" msgid "Delete Rows" -msgstr "" +msgstr "Ианыхтәуп ацәаҳәақәа" #: notebookbar_groups.ui msgctxt "" @@ -10923,7 +10923,7 @@ "label\n" "string.text" msgid "Select Rows" -msgstr "" +msgstr "Иалхтәуп ацәаҳәақәа" #: notebookbar_groups.ui msgctxt "" @@ -10959,7 +10959,7 @@ "label\n" "string.text" msgid "File" -msgstr "" +msgstr "Афаил" #: notebookbar_groups.ui msgctxt "" @@ -10995,7 +10995,7 @@ "label\n" "string.text" msgid "Links" -msgstr "" +msgstr "Азхьарҧшқәа" #: notebookbar_groups.ui msgctxt "" @@ -11049,7 +11049,7 @@ "label\n" "string.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: notebookbar_groups.ui msgctxt "" @@ -11166,7 +11166,7 @@ "label\n" "string.text" msgid "Edit Contour" -msgstr "" +msgstr "Аконтур ариашара" #: notebookbar_single.ui msgctxt "" @@ -11202,7 +11202,7 @@ "title\n" "string.text" msgid "Save As" -msgstr "Иеиқәырхатәуп иаба(ишҧа)" +msgstr "Еиқәырхатәуп иаба(ишҧа)" #: numberingnamedialog.ui msgctxt "" @@ -11211,7 +11211,7 @@ "label\n" "string.text" msgid "Format" -msgstr "" +msgstr "Аформат" #: numberingnamedialog.ui msgctxt "" @@ -11436,7 +11436,7 @@ "label\n" "string.text" msgid "Edit Style" -msgstr "" +msgstr "Иҧсахтәуп астиль" #: numparapage.ui msgctxt "" @@ -11445,7 +11445,7 @@ "label\n" "string.text" msgid "R_estart at this paragraph" -msgstr "" +msgstr "Иалагатәуп ҿыц абри абзац аҟынтәи" #: numparapage.ui msgctxt "" @@ -11481,7 +11481,7 @@ "label\n" "string.text" msgid "Rest_art at this paragraph" -msgstr "" +msgstr "Иалагатәуп ҿыц абри абзац аҟынтәи" #: numparapage.ui msgctxt "" @@ -11508,7 +11508,7 @@ "title\n" "string.text" msgid "Object" -msgstr "" +msgstr "Аобиеқт" #: objectdialog.ui msgctxt "" @@ -11544,7 +11544,7 @@ "label\n" "string.text" msgid "Hyperlink" -msgstr "" +msgstr "Агиперзхьарҧш" #: objectdialog.ui msgctxt "" @@ -11689,7 +11689,7 @@ "label\n" "string.text" msgid "Character style:" -msgstr "" +msgstr "Асимволқәа рстиль: " #: optcaptionpage.ui msgctxt "" @@ -11781,7 +11781,7 @@ "label\n" "string.text" msgid "By _character" -msgstr "" +msgstr "асимвол ала" #: optcomparison.ui msgctxt "" @@ -11934,7 +11934,7 @@ "11\n" "stringlist.text" msgid "Protect form" -msgstr "" +msgstr "Аформа ахьчара" #: optcompatpage.ui msgctxt "" @@ -11997,7 +11997,7 @@ "label\n" "string.text" msgid "_Size" -msgstr "" +msgstr "Акегль" #: optfonttabpage.ui msgctxt "" @@ -12303,7 +12303,7 @@ "label\n" "string.text" msgid "_Charts" -msgstr "" +msgstr "Адиаграммақәа" #: optgeneralpage.ui msgctxt "" @@ -12312,7 +12312,7 @@ "label\n" "string.text" msgid "Automatically Update" -msgstr "" +msgstr "Автоматикала" #: optgeneralpage.ui msgctxt "" @@ -12573,7 +12573,7 @@ "text\n" "string.text" msgid "Delete" -msgstr "" +msgstr "Ианыхтәуп" #: optredlinepage.ui msgctxt "" @@ -12753,7 +12753,7 @@ "label\n" "string.text" msgid "New Table Defaults" -msgstr "" +msgstr "Атаблицаҿыц аҷыдаҟазшьақәа" #: opttablepage.ui msgctxt "" @@ -12789,7 +12789,7 @@ "label\n" "string.text" msgid "Input in Tables" -msgstr "" +msgstr "Атаблицақәа рахь аҭагалара" #: opttablepage.ui msgctxt "" @@ -12933,7 +12933,7 @@ "label\n" "string.text" msgid "_Format" -msgstr "" +msgstr "Аформат" #: outlinenumbering.ui msgctxt "" @@ -13041,7 +13041,7 @@ "label\n" "string.text" msgid "Save _As..." -msgstr "Иеиқәырхатәуп иаба(ишҧа)..." +msgstr "Еиқәырхатәуп иаба(ишҧа)..." #: outlinenumberingpage.ui msgctxt "" @@ -13059,7 +13059,7 @@ "label\n" "string.text" msgid "Paragraph style:" -msgstr "" +msgstr "Абзац астиль:" #: outlinenumberingpage.ui msgctxt "" @@ -13077,7 +13077,7 @@ "label\n" "string.text" msgid "Character style:" -msgstr "" +msgstr "Асимволқәа рстиль: " #: outlinenumberingpage.ui msgctxt "" @@ -13475,7 +13475,7 @@ "label\n" "string.text" msgid "Size:" -msgstr "" +msgstr "Ашәагаа:" #: pageformatpanel.ui msgctxt "" @@ -13988,7 +13988,7 @@ "title\n" "string.text" msgid "Paragraph" -msgstr "" +msgstr "Абзац" #: paradialog.ui msgctxt "" @@ -14123,7 +14123,7 @@ "label\n" "string.text" msgid "Hyperlink" -msgstr "" +msgstr "Агиперзхьарҧш" #: picturedialog.ui msgctxt "" @@ -14186,7 +14186,7 @@ "label\n" "string.text" msgid "Browse..." -msgstr "" +msgstr "Аҭыҧхәаҧшра..." #: picturepage.ui msgctxt "" @@ -14195,7 +14195,7 @@ "label\n" "string.text" msgid "_File name" -msgstr "" +msgstr "Афаил ахьӡ" #: picturepage.ui msgctxt "" @@ -14204,7 +14204,7 @@ "label\n" "string.text" msgid "Link" -msgstr "" +msgstr "Аимадара" #: picturepage.ui msgctxt "" @@ -14348,7 +14348,7 @@ "label\n" "string.text" msgid "Print text in black" -msgstr "" +msgstr "Икьыҧхьтәуп атеқст еиқәаҵәала" #: printeroptions.ui msgctxt "" @@ -14393,7 +14393,7 @@ "title\n" "string.text" msgid "Print monitor" -msgstr "" +msgstr "Аекран ақәҭыхымҭа акьыҧхьра" #: printmonitordialog.ui msgctxt "" @@ -14429,7 +14429,7 @@ "label\n" "string.text" msgid "_Images and objects" -msgstr "" +msgstr "Асахьақәеи аобиеқтқәеи" #: printoptionspage.ui msgctxt "" @@ -14456,7 +14456,7 @@ "label\n" "string.text" msgid "Print text in blac_k" -msgstr "" +msgstr "Икьыҧхьтәуп атеқст еиқәаҵәала" #: printoptionspage.ui msgctxt "" @@ -14825,7 +14825,7 @@ "label\n" "string.text" msgid "Phone/mobile:" -msgstr "" +msgstr "Аҭел/Амобилтә:" #: privateuserpage.ui msgctxt "" @@ -14960,7 +14960,7 @@ "title\n" "string.text" msgid "Save label?" -msgstr "Иеиқәырхатәума?" +msgstr "Еиқәырхатәума?" #: querysavelabeldialog.ui msgctxt "" @@ -15014,7 +15014,7 @@ "label\n" "string.text" msgid "_Open" -msgstr "" +msgstr "Иаарттәуп" #: readonlymenu.ui msgctxt "" @@ -15032,7 +15032,7 @@ "label\n" "string.text" msgid "_Edit" -msgstr "" +msgstr "Ариашара" #: readonlymenu.ui msgctxt "" @@ -15041,7 +15041,7 @@ "label\n" "string.text" msgid "Select Text" -msgstr "" +msgstr "Иалхтәуп атеқст" #: readonlymenu.ui msgctxt "" @@ -15095,7 +15095,7 @@ "label\n" "string.text" msgid "Save Image..." -msgstr "Иеиқәырхатәуп асахьа..." +msgstr "Еиқәырхатәуп асахьа..." #: readonlymenu.ui msgctxt "" @@ -15113,7 +15113,7 @@ "label\n" "string.text" msgid "As Link" -msgstr "" +msgstr "Азхьарҧш еиҧш" #: readonlymenu.ui msgctxt "" @@ -15131,7 +15131,7 @@ "label\n" "string.text" msgid "Save Background..." -msgstr "Иеиқәырхатәуп аҿаҧшыра..." +msgstr "Еиқәырхатәуп аҿаҧшыра..." #: readonlymenu.ui msgctxt "" @@ -15140,7 +15140,7 @@ "label\n" "string.text" msgid "Copy _Link" -msgstr "" +msgstr "Азхьарҧш акопиа ахыхтәуп" #: readonlymenu.ui msgctxt "" @@ -15158,7 +15158,7 @@ "label\n" "string.text" msgid "Load Image" -msgstr "" +msgstr "Иҭагалатәуп асахьа" #: readonlymenu.ui msgctxt "" @@ -15212,7 +15212,7 @@ "label\n" "string.text" msgid "_New" -msgstr "" +msgstr "Иаҧҵатәуп" #: renameautotextdialog.ui msgctxt "" @@ -15266,7 +15266,7 @@ "label\n" "string.text" msgid "New name" -msgstr "" +msgstr "Ахьӡ ҿыц" #: renameobjectdialog.ui msgctxt "" @@ -15293,7 +15293,7 @@ "label\n" "string.text" msgid "_Fit to size" -msgstr "" +msgstr "Ашәагаа азыҧшаара" #: rowheight.ui msgctxt "" @@ -15311,7 +15311,7 @@ "title\n" "string.text" msgid "Save as HTML?" -msgstr "Иеиқәырхатәума HTML ҳасабла?" +msgstr "Еиқәырхатәума HTML ҳасабла?" #: saveashtmldialog.ui msgctxt "" @@ -15383,7 +15383,7 @@ "label\n" "string.text" msgid "_Link" -msgstr "" +msgstr "Аимадара" #: sectionpage.ui msgctxt "" @@ -15410,7 +15410,7 @@ "label\n" "string.text" msgid "_File name" -msgstr "" +msgstr "Афаил ахьӡ" #: sectionpage.ui msgctxt "" @@ -15428,7 +15428,7 @@ "label\n" "string.text" msgid "Browse..." -msgstr "" +msgstr "Аҭыҧхәаҧшра..." #: sectionpage.ui msgctxt "" @@ -15437,7 +15437,7 @@ "label\n" "string.text" msgid "Link" -msgstr "" +msgstr "Аимадара" #: sectionpage.ui msgctxt "" @@ -15581,7 +15581,7 @@ "label\n" "string.text" msgid "_Edit..." -msgstr "" +msgstr "Ариашара..." #: selectaddressdialog.ui msgctxt "" @@ -15590,7 +15590,7 @@ "label\n" "string.text" msgid "Change _Table..." -msgstr "" +msgstr "Иҧсахтәуп атаблица..." #: selectaddressdialog.ui msgctxt "" @@ -15608,7 +15608,7 @@ "label\n" "string.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: selectaddressdialog.ui msgctxt "" @@ -15626,7 +15626,7 @@ "title\n" "string.text" msgid "Select AutoText:" -msgstr "" +msgstr "Иалхтәуп автотеқст:" #: selectautotextdialog.ui msgctxt "" @@ -15653,7 +15653,7 @@ "label\n" "string.text" msgid "_New..." -msgstr "" +msgstr "Иаҧҵатәуп..." #: selectblockdialog.ui msgctxt "" @@ -15662,7 +15662,7 @@ "label\n" "string.text" msgid "_Edit..." -msgstr "" +msgstr "Ариашара..." #: selectblockdialog.ui msgctxt "" @@ -15671,7 +15671,7 @@ "label\n" "string.text" msgid "_Delete" -msgstr "" +msgstr "Ианыхтәуп" #: selectblockdialog.ui msgctxt "" @@ -15734,7 +15734,7 @@ "label\n" "string.text" msgid "Selection" -msgstr "" +msgstr "Иалкаау" #: selecttabledialog.ui msgctxt "" @@ -15743,7 +15743,7 @@ "title\n" "string.text" msgid "Select Table" -msgstr "" +msgstr "Иалкаатәуп атаблица" #: selecttabledialog.ui msgctxt "" @@ -15779,7 +15779,7 @@ "tooltip_text\n" "string.text" msgid "Size" -msgstr "" +msgstr "Ашәагаа" #: sidebarpage.ui msgctxt "" @@ -15950,7 +15950,7 @@ "label\n" "string.text" msgid "Edit Contour" -msgstr "" +msgstr "Аконтур ариашара" #: sidebarwrap.ui msgctxt "" @@ -16184,7 +16184,7 @@ "label\n" "string.text" msgid "Character " -msgstr "" +msgstr "Асимвол " #: sortdialog.ui msgctxt "" @@ -16193,7 +16193,7 @@ "label\n" "string.text" msgid "Select..." -msgstr "" +msgstr "Алхра..." #: sortdialog.ui msgctxt "" @@ -16274,7 +16274,7 @@ "label\n" "string.text" msgid "Set Language for Selection" -msgstr "" +msgstr "Иқәыргылатәуп алкаараз абызшәа" #: spellmenu.ui msgctxt "" @@ -16283,7 +16283,7 @@ "label\n" "string.text" msgid "Set Language for Paragraph" -msgstr "" +msgstr "Иқәыргылатәуп абызшәа абзацаз" #: spellmenu.ui msgctxt "" @@ -16391,7 +16391,7 @@ "label\n" "string.text" msgid "Tables:" -msgstr "" +msgstr "Атаблицақәа:" #: statisticsinfopage.ui msgctxt "" @@ -16409,7 +16409,7 @@ "label\n" "string.text" msgid "OLE objects:" -msgstr "" +msgstr "OLE аобиеқтқәа:" #: statisticsinfopage.ui msgctxt "" @@ -16418,7 +16418,7 @@ "label\n" "string.text" msgid "Paragraphs:" -msgstr "" +msgstr "Абзацқәа:" #: statisticsinfopage.ui msgctxt "" @@ -16436,7 +16436,7 @@ "label\n" "string.text" msgid "Characters:" -msgstr "" +msgstr "Асимволқәа:" #: statisticsinfopage.ui msgctxt "" @@ -16463,7 +16463,7 @@ "label\n" "string.text" msgid "Update" -msgstr "" +msgstr "Ирҿыцтәуп" #: stringinput.ui msgctxt "" @@ -16625,7 +16625,7 @@ "title\n" "string.text" msgid "Table Properties" -msgstr "" +msgstr "Атаблица аҷыдаҟазшьақәа" #: tableproperties.ui msgctxt "" @@ -16634,7 +16634,7 @@ "label\n" "string.text" msgid "Table" -msgstr "" +msgstr "Атаблица" #: tableproperties.ui msgctxt "" @@ -16895,7 +16895,7 @@ "title\n" "string.text" msgid "Character Style" -msgstr "" +msgstr "Асимволқәа рстиль" #: templatedialog1.ui msgctxt "" @@ -16994,7 +16994,7 @@ "label\n" "string.text" msgid "Bullets" -msgstr "" +msgstr "Амаркерқәа" #: templatedialog16.ui msgctxt "" @@ -17048,7 +17048,7 @@ "title\n" "string.text" msgid "Paragraph Style" -msgstr "" +msgstr "Абзац астиль" #: templatedialog2.ui msgctxt "" @@ -17534,7 +17534,7 @@ "label\n" "string.text" msgid "Characters per line:" -msgstr "" +msgstr "Асимволқәа ацәаҳәа аҟны:" #: textgridpage.ui msgctxt "" @@ -17570,7 +17570,7 @@ "label\n" "string.text" msgid "Character _width:" -msgstr "" +msgstr "Асимволқәа рыҭбаара:" #: textgridpage.ui msgctxt "" @@ -17588,7 +17588,7 @@ "label\n" "string.text" msgid "Max. base text size:" -msgstr "" +msgstr "Атеқст хада ашәагаа" #: textgridpage.ui msgctxt "" @@ -17777,7 +17777,7 @@ "label\n" "string.text" msgid "Edit..." -msgstr "" +msgstr "Ариашара..." #: titlepage.ui msgctxt "" @@ -17840,7 +17840,7 @@ "label\n" "string.text" msgid "Styles" -msgstr "" +msgstr "Астильқәа" #: tocdialog.ui msgctxt "" @@ -17903,7 +17903,7 @@ "label\n" "string.text" msgid "Character style:" -msgstr "" +msgstr "Асимволқәа рстиль: " #: tocentriespage.ui msgctxt "" @@ -17912,7 +17912,7 @@ "label\n" "string.text" msgid "_Edit..." -msgstr "" +msgstr "Ариашара..." #: tocentriespage.ui msgctxt "" @@ -17921,7 +17921,7 @@ "label\n" "string.text" msgid "Fill character:" -msgstr "" +msgstr "Ахарҭәаага:" #: tocentriespage.ui msgctxt "" @@ -17993,7 +17993,7 @@ "label\n" "string.text" msgid "Format:" -msgstr "" +msgstr "Аформат:" #: tocentriespage.ui msgctxt "" @@ -18083,7 +18083,7 @@ "label\n" "string.text" msgid "H_yperlink" -msgstr "" +msgstr "Агиперзхьарҧш" #: tocentriespage.ui msgctxt "" @@ -18137,7 +18137,7 @@ "label\n" "string.text" msgid "Format" -msgstr "" +msgstr "Аформат" #: tocentriespage.ui msgctxt "" @@ -18263,7 +18263,7 @@ "label\n" "string.text" msgid "Open" -msgstr "" +msgstr "Иаарттәуп" #: tocindexpage.ui msgctxt "" @@ -18272,7 +18272,7 @@ "label\n" "string.text" msgid "_New..." -msgstr "" +msgstr "Иаҧҵатәуп..." #: tocindexpage.ui msgctxt "" @@ -18281,7 +18281,7 @@ "label\n" "string.text" msgid "_Edit..." -msgstr "" +msgstr "Ариашара..." #: tocindexpage.ui msgctxt "" @@ -18389,7 +18389,7 @@ "label\n" "string.text" msgid "Tables" -msgstr "" +msgstr "Атаблицақәа" #: tocindexpage.ui msgctxt "" @@ -18416,7 +18416,7 @@ "label\n" "string.text" msgid "OLE objects" -msgstr "" +msgstr "OLE аобиеқтқәа" #: tocindexpage.ui msgctxt "" @@ -18434,7 +18434,7 @@ "label\n" "string.text" msgid "_Additional styles" -msgstr "" +msgstr "Иацҵоу астильқәа" #: tocindexpage.ui msgctxt "" @@ -18452,7 +18452,7 @@ "label\n" "string.text" msgid "Assign styles..." -msgstr "" +msgstr "Ихархәатәуп астильқәа..." #: tocindexpage.ui msgctxt "" @@ -18470,7 +18470,7 @@ "label\n" "string.text" msgid "Object names" -msgstr "" +msgstr "Аобиеқтқәа рыхьӡқәа" #: tocindexpage.ui msgctxt "" @@ -18609,7 +18609,7 @@ "label\n" "string.text" msgid "Formatting of the Entries" -msgstr "" +msgstr "Аелементқәа рформатркра" #: tocindexpage.ui msgctxt "" @@ -18681,7 +18681,7 @@ "label\n" "string.text" msgid "_File" -msgstr "" +msgstr "Афаил" #: tocindexpage.ui msgctxt "" @@ -18726,7 +18726,7 @@ "0\n" "stringlist.text" msgid "Table of Contents" -msgstr "" +msgstr "Ахы" #: tocindexpage.ui msgctxt "" @@ -18753,7 +18753,7 @@ "3\n" "stringlist.text" msgid "Index of Tables" -msgstr "" +msgstr "Атаблицақәа рыхьӡынҵа" #: tocindexpage.ui msgctxt "" @@ -18771,7 +18771,7 @@ "5\n" "stringlist.text" msgid "Table of Objects" -msgstr "" +msgstr "Аобиеқтқәа рыхьӡынҵа" #: tocindexpage.ui msgctxt "" @@ -18798,7 +18798,7 @@ "label\n" "string.text" msgid "Paragraph _Styles" -msgstr "" +msgstr "Абзац астильқәа" #: tocstylespage.ui msgctxt "" @@ -18816,7 +18816,7 @@ "label\n" "string.text" msgid "_Edit" -msgstr "" +msgstr "Ариашара" #: tocstylespage.ui msgctxt "" @@ -18852,7 +18852,7 @@ "label\n" "string.text" msgid "_Images and objects" -msgstr "" +msgstr "Асахьақәеи аобиеқтқәеи" #: viewoptionspage.ui msgctxt "" @@ -18861,7 +18861,7 @@ "label\n" "string.text" msgid "_Tables" -msgstr "" +msgstr "Атаблицақәа" #: viewoptionspage.ui msgctxt "" @@ -19122,7 +19122,7 @@ "label\n" "string.text" msgid "Selection" -msgstr "" +msgstr "Алкаара" #: wordcount.ui msgctxt "" @@ -19275,7 +19275,7 @@ "label\n" "string.text" msgid "_First paragraph" -msgstr "" +msgstr "Актәи абзац" #: wrappage.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/swext/mediawiki/help.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/swext/mediawiki/help.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/swext/mediawiki/help.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/swext/mediawiki/help.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-07-31 08:17+0000\n" +"PO-Revision-Date: 2017-11-27 08:29+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1501489072.000000\n" +"X-POOTLE-MTIME: 1511771397.000000\n" #: help.tree msgctxt "" @@ -37,7 +37,7 @@ "tit\n" "help.text" msgid "Wiki Publisher" -msgstr "" +msgstr "Wiki Publisher" #: wiki.xhp msgctxt "" @@ -45,7 +45,7 @@ "bm_id3154408\n" "help.text" msgid "Wiki;Wiki PublisherWiki Publisherextensions;MediaWiki" -msgstr "" +msgstr "Wiki;Wiki PublisherWiki Publisherextensions;MediaWiki" #: wiki.xhp msgctxt "" @@ -53,7 +53,7 @@ "hd_id5993530\n" "help.text" msgid "Wiki Publisher" -msgstr "" +msgstr "Wiki Publisher" #: wiki.xhp msgctxt "" @@ -77,7 +77,7 @@ "hd_id4554582\n" "help.text" msgid "System Requirements" -msgstr "" +msgstr "Асистематә ҭахрақәа" #: wiki.xhp msgctxt "" @@ -85,7 +85,7 @@ "par_id9340495\n" "help.text" msgid "Java Runtime Environment" -msgstr "" +msgstr "Java Runtime Environment" #: wiki.xhp msgctxt "" @@ -101,7 +101,7 @@ "hd_id8047120\n" "help.text" msgid "Installing Wiki Publisher" -msgstr "" +msgstr "Wiki Publisher ақәыргылара" #: wiki.xhp msgctxt "" @@ -117,7 +117,7 @@ "hd_id5316019\n" "help.text" msgid "To Connect to a Wiki" -msgstr "" +msgstr "Wiki аҽамадаразы" #: wiki.xhp msgctxt "" @@ -213,7 +213,7 @@ "hd_id7044892\n" "help.text" msgid "To Create a New Wiki Page" -msgstr "" +msgstr "Wiki адаҟьа ҿыц, аҧҵаразы" #: wiki.xhp msgctxt "" @@ -221,7 +221,7 @@ "par_id3514206\n" "help.text" msgid "Open a Writer document." -msgstr "" +msgstr "Иаашәырты адокументҿыц." #: wiki.xhp msgctxt "" @@ -253,7 +253,7 @@ "par_id2564165\n" "help.text" msgid "MediaWiki server: Select the wiki." -msgstr "" +msgstr "Асервер MediaWiki: иалышәх Wiki." #: wiki.xhp msgctxt "" @@ -293,7 +293,7 @@ "par_id8346812\n" "help.text" msgid "Click Send." -msgstr "" +msgstr "Шәақәыӷәӷәа Идәықәҵатәуп." #: wikiaccount.xhp msgctxt "" @@ -413,7 +413,7 @@ "hd_id7178868\n" "help.text" msgid "Headings" -msgstr "" +msgstr "Ахқәа" #: wikiformats.xhp msgctxt "" @@ -429,7 +429,7 @@ "hd_id7217627\n" "help.text" msgid "Hyperlinks" -msgstr "" +msgstr "Агиперзхьарҧшқәа" #: wikiformats.xhp msgctxt "" @@ -461,7 +461,7 @@ "hd_id7026886\n" "help.text" msgid "Paragraphs" -msgstr "" +msgstr "Абзацқәа" #: wikiformats.xhp msgctxt "" @@ -469,7 +469,7 @@ "hd_id4436475\n" "help.text" msgid "Alignment" -msgstr "" +msgstr "Аиҟаратәра" #: wikiformats.xhp msgctxt "" @@ -485,7 +485,7 @@ "hd_id7486190\n" "help.text" msgid "Pre-formatted text" -msgstr "" +msgstr "Иформатрку атеқст" #: wikiformats.xhp msgctxt "" @@ -501,7 +501,7 @@ "hd_id4834131\n" "help.text" msgid "Character styles" -msgstr "" +msgstr "Асимвол астильқәа" #: wikiformats.xhp msgctxt "" @@ -533,7 +533,7 @@ "hd_id9405499\n" "help.text" msgid "Images" -msgstr "" +msgstr "Асахьақәа" #: wikiformats.xhp msgctxt "" @@ -549,7 +549,7 @@ "hd_id2162236\n" "help.text" msgid "Tables" -msgstr "" +msgstr "Атаблицақәа" #: wikiformats.xhp msgctxt "" @@ -565,7 +565,7 @@ "hd_id2954496\n" "help.text" msgid "Joined Cells" -msgstr "" +msgstr "Еидҵоу абларҭақәа" #: wikiformats.xhp msgctxt "" @@ -605,7 +605,7 @@ "hd_id6255073\n" "help.text" msgid "Character set and special characters" -msgstr "" +msgstr "Акодркреи испециалтәу асимволқәеи" #: wikiformats.xhp msgctxt "" @@ -621,7 +621,7 @@ "tit\n" "help.text" msgid "Send to MediaWiki" -msgstr "" +msgstr "Идәықәҵатәп MediaWiki ахь " #: wikisend.xhp msgctxt "" @@ -629,7 +629,7 @@ "hd_id108340\n" "help.text" msgid "Send to MediaWiki" -msgstr "" +msgstr "Идәықәҵатәп MediaWiki ахь " #: wikisend.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:39+0200\n" -"PO-Revision-Date: 2017-07-21 16:14+0000\n" +"PO-Revision-Date: 2017-11-19 19:23+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500653652.000000\n" +"X-POOTLE-MTIME: 1511119418.000000\n" #: WikiExtension.xcu msgctxt "" @@ -85,7 +85,7 @@ "Dlg_EditSetting_UrlLabel\n" "value.text" msgid "U~RL" -msgstr "" +msgstr "U~RL" #: WikiExtension.xcu msgctxt "" @@ -94,7 +94,7 @@ "Dlg_EditSetting_UsernameLabel\n" "value.text" msgid "~Username" -msgstr "" +msgstr "Ахархәаҩ ихьӡ" #: WikiExtension.xcu msgctxt "" @@ -103,7 +103,7 @@ "Dlg_EditSetting_PasswordLabel\n" "value.text" msgid "~Password" -msgstr "" +msgstr "Ажәамаӡа" #: WikiExtension.xcu msgctxt "" @@ -112,7 +112,7 @@ "Dlg_SendTitle\n" "value.text" msgid "Send to MediaWiki" -msgstr "" +msgstr "Идәықәҵатәп MediaWiki ахь " #: WikiExtension.xcu msgctxt "" @@ -121,7 +121,7 @@ "Dlg_WikiArticle\n" "value.text" msgid "Wiki article" -msgstr "" +msgstr "Wiki астатиа" #: WikiExtension.xcu msgctxt "" @@ -130,7 +130,7 @@ "Dlg_No\n" "value.text" msgid "No" -msgstr "" +msgstr "Мап" #: WikiExtension.xcu msgctxt "" @@ -139,7 +139,7 @@ "Dlg_OK\n" "value.text" msgid "OK" -msgstr "" +msgstr "OK" #: WikiExtension.xcu msgctxt "" @@ -148,7 +148,7 @@ "Dlg_Yes\n" "value.text" msgid "Yes" -msgstr "" +msgstr "Ааи" #: WikiExtension.xcu msgctxt "" @@ -157,7 +157,7 @@ "Dlg_AddButton\n" "value.text" msgid "~Add..." -msgstr "" +msgstr "Иацҵатәуп..." #: WikiExtension.xcu msgctxt "" @@ -166,7 +166,7 @@ "Dlg_EditButton\n" "value.text" msgid "~Edit..." -msgstr "" +msgstr "Ариашара..." #: WikiExtension.xcu msgctxt "" @@ -175,7 +175,7 @@ "Dlg_SendButton\n" "value.text" msgid "~Send" -msgstr "" +msgstr "Идәықәҵатәуп" #: WikiExtension.xcu msgctxt "" @@ -184,7 +184,7 @@ "Dlg_RemoveButton\n" "value.text" msgid "~Remove" -msgstr "" +msgstr "Ианыхтәуп" #: WikiExtension.xcu msgctxt "" @@ -211,7 +211,7 @@ "Dlg_SendToMediaWiki_Label2\n" "value.text" msgid "~Title" -msgstr "" +msgstr "~Ахы" #: WikiExtension.xcu msgctxt "" @@ -220,7 +220,7 @@ "Dlg_SendToMediaWiki_Label3\n" "value.text" msgid "S~ummary" -msgstr "" +msgstr "Аихшьалақәа" #: WikiExtension.xcu msgctxt "" @@ -238,7 +238,7 @@ "Dlg_SendToMediaWiki_BrowserCheck\n" "value.text" msgid "Show in web ~browser" -msgstr "" +msgstr "Иаарҧштәуп абраузер аҟны" #: WikiExtension.xcu msgctxt "" @@ -247,7 +247,7 @@ "UnknownCert\n" "value.text" msgid "The certificate of the selected site is unknown." -msgstr "" +msgstr "Иарбоу асаит асертификат дырым." #: WikiExtension.xcu msgctxt "" @@ -283,7 +283,7 @@ "Dlg_EditSetting_SaveBox\n" "value.text" msgid "~Save password" -msgstr "Иеиқәырхатәуп ажәамаӡа" +msgstr "Еиқәырхатәуп ажәамаӡа" #: WikiExtension.xcu msgctxt "" @@ -292,7 +292,7 @@ "Dlg_MediaWiki_Extension_String\n" "value.text" msgid "Wiki Publisher" -msgstr "" +msgstr "Wiki Publisher" #: WikiExtension.xcu msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/swext/mediawiki/src.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/swext/mediawiki/src.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/swext/mediawiki/src.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/swext/mediawiki/src.po 2017-12-12 17:45:07.000000000 +0000 @@ -3,16 +3,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: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2015-04-22 23:39+0200\n" +"PO-Revision-Date: 2017-11-18 15:16+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511018188.000000\n" #: description.xml msgctxt "" @@ -20,7 +21,7 @@ "dispname\n" "description.text" msgid "Wiki Publisher" -msgstr "" +msgstr "Wiki Publisher" #: description.xml msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/sysui/desktop/share.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/sysui/desktop/share.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/sysui/desktop/share.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/sysui/desktop/share.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-05-07 21:35+0200\n" -"PO-Revision-Date: 2017-07-19 15:41+0000\n" +"PO-Revision-Date: 2017-11-18 08:35+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500478917.000000\n" +"X-POOTLE-MTIME: 1510994123.000000\n" #: documents.ulf msgctxt "" @@ -21,7 +21,7 @@ "text\n" "LngText.text" msgid "OpenOffice.org 1.0 Text Document" -msgstr "" +msgstr "OpenOffice.org атеқсттә документ" #: documents.ulf msgctxt "" @@ -29,7 +29,7 @@ "text-template\n" "LngText.text" msgid "OpenOffice.org 1.0 Text Document Template" -msgstr "" +msgstr "OpenOffice.org 1.0 атеқсттә документ ашаблон" #: documents.ulf msgctxt "" @@ -37,7 +37,7 @@ "master-document\n" "LngText.text" msgid "OpenOffice.org 1.0 Master Document" -msgstr "" +msgstr "OpenOffice.org 1.0 еилоу адокумент" #: documents.ulf msgctxt "" @@ -53,7 +53,7 @@ "presentation\n" "LngText.text" msgid "OpenOffice.org 1.0 Presentation" -msgstr "" +msgstr "OpenOffice.org 1.0 апрезентациа" #: documents.ulf msgctxt "" @@ -61,7 +61,7 @@ "presentation-template\n" "LngText.text" msgid "OpenOffice.org 1.0 Presentation Template" -msgstr "" +msgstr "OpenOffice.org 1.0 апрезентациа ашаблон" #: documents.ulf msgctxt "" @@ -69,7 +69,7 @@ "drawing\n" "LngText.text" msgid "OpenOffice.org 1.0 Drawing" -msgstr "" +msgstr "OpenOffice.org 1.0 асахьа" #: documents.ulf msgctxt "" @@ -77,7 +77,7 @@ "drawing-template\n" "LngText.text" msgid "OpenOffice.org 1.0 Drawing Template" -msgstr "" +msgstr "OpenOffice.org 1.0 асахьа ашаблон" #: documents.ulf msgctxt "" @@ -85,7 +85,7 @@ "spreadsheet\n" "LngText.text" msgid "OpenOffice.org 1.0 Spreadsheet" -msgstr "" +msgstr "OpenOffice.org 1.0 аелектронтә таблица" #: documents.ulf msgctxt "" @@ -93,7 +93,7 @@ "spreadsheet-template\n" "LngText.text" msgid "OpenOffice.org 1.0 Spreadsheet Template" -msgstr "" +msgstr "OpenOffice.org 1.0 аелектронтә таблица ашаблон" #: documents.ulf msgctxt "" @@ -101,7 +101,7 @@ "oasis-text\n" "LngText.text" msgid "OpenDocument Text" -msgstr "" +msgstr "OpenDocument атеқсттә документ" #: documents.ulf msgctxt "" @@ -109,7 +109,7 @@ "oasis-text-flat-xml\n" "LngText.text" msgid "OpenDocument Text (Flat XML)" -msgstr "" +msgstr "OpenDocument (иҟьаҧсу XML) атеқсттә документ " #: documents.ulf msgctxt "" @@ -117,7 +117,7 @@ "oasis-text-template\n" "LngText.text" msgid "OpenDocument Text Template" -msgstr "" +msgstr "OpenDocument атеқсттә документ ашаблон" #: documents.ulf msgctxt "" @@ -125,7 +125,7 @@ "oasis-master-document\n" "LngText.text" msgid "OpenDocument Master Document" -msgstr "" +msgstr "OpenDocument еилоу адокумент" #: documents.ulf msgctxt "" @@ -133,7 +133,7 @@ "oasis-master-document-template\n" "LngText.text" msgid "OpenDocument Master Document Template" -msgstr "" +msgstr "OpenDocument еилоу адокумент ашаблон" #: documents.ulf msgctxt "" @@ -149,7 +149,7 @@ "oasis-presentation\n" "LngText.text" msgid "OpenDocument Presentation" -msgstr "" +msgstr "OpenDocument апрезентациа" #: documents.ulf msgctxt "" @@ -157,7 +157,7 @@ "oasis-presentation-flat-xml\n" "LngText.text" msgid "OpenDocument Presentation (Flat XML)" -msgstr "" +msgstr "OpenDocument апрезентациа (иҟьаҟьоу XML)" #: documents.ulf msgctxt "" @@ -165,7 +165,7 @@ "oasis-presentation-template\n" "LngText.text" msgid "OpenDocument Presentation Template" -msgstr "" +msgstr "OpenDocument апрезентациа ашаблон" #: documents.ulf msgctxt "" @@ -173,7 +173,7 @@ "oasis-drawing\n" "LngText.text" msgid "OpenDocument Drawing" -msgstr "" +msgstr "OpenDocument асахьа" #: documents.ulf msgctxt "" @@ -181,7 +181,7 @@ "oasis-drawing-flat-xml\n" "LngText.text" msgid "OpenDocument Drawing (Flat XML)" -msgstr "" +msgstr "OpenDocument асахьа (иҟьаҧсу XML)" #: documents.ulf msgctxt "" @@ -189,7 +189,7 @@ "oasis-drawing-template\n" "LngText.text" msgid "OpenDocument Drawing Template" -msgstr "" +msgstr "OpenDocument асахьа ашаблон" #: documents.ulf msgctxt "" @@ -197,7 +197,7 @@ "oasis-spreadsheet\n" "LngText.text" msgid "OpenDocument Spreadsheet" -msgstr "" +msgstr "OpenDocumentа аелектронтә таблица" #: documents.ulf msgctxt "" @@ -205,7 +205,7 @@ "oasis-spreadsheet-flat-xml\n" "LngText.text" msgid "OpenDocument Spreadsheet (Flat XML)" -msgstr "" +msgstr "OpenDocument аелектронтә таблица (иҟьаҧсу XML)" #: documents.ulf msgctxt "" @@ -213,7 +213,7 @@ "oasis-spreadsheet-template\n" "LngText.text" msgid "OpenDocument Spreadsheet Template" -msgstr "" +msgstr "OpenDocument аелектронтә таблица ашаблон" #: documents.ulf msgctxt "" @@ -221,7 +221,7 @@ "oasis-database\n" "LngText.text" msgid "OpenDocument Database" -msgstr "" +msgstr "OpenDocument адырқәа рбаза" #: documents.ulf msgctxt "" @@ -229,7 +229,7 @@ "oasis-web-template\n" "LngText.text" msgid "HTML Document Template" -msgstr "" +msgstr "HTML адокумент ашаблон" #: documents.ulf msgctxt "" @@ -237,7 +237,7 @@ "extension\n" "LngText.text" msgid "%PRODUCTNAME Extension" -msgstr "" +msgstr "%PRODUCTNAME арҭбаара" #: documents.ulf msgctxt "" @@ -245,7 +245,7 @@ "ms-excel-sheet\n" "LngText.text" msgid "Microsoft Excel Worksheet" -msgstr "" +msgstr "Microsoft Excel аелектронтә таблица" #: documents.ulf msgctxt "" @@ -253,7 +253,7 @@ "ms-powerpoint-presentation\n" "LngText.text" msgid "Microsoft PowerPoint Presentation" -msgstr "" +msgstr "Microsoft PowerPoint апрезентациа" #: documents.ulf msgctxt "" @@ -261,7 +261,7 @@ "ms-word-document\n" "LngText.text" msgid "Microsoft Word Document" -msgstr "" +msgstr "Microsoft Word адокумент" #: documents.ulf msgctxt "" @@ -269,7 +269,7 @@ "ms-word-document2\n" "LngText.text" msgid "Microsoft Word Document" -msgstr "" +msgstr "Microsoft Word адокумент" #: documents.ulf msgctxt "" @@ -277,7 +277,7 @@ "ms-excel-sheet-12\n" "LngText.text" msgid "Microsoft Excel Worksheet" -msgstr "" +msgstr "Microsoft Excel аелектронтә таблица" #: documents.ulf msgctxt "" @@ -285,7 +285,7 @@ "ms-excel-template-12\n" "LngText.text" msgid "Microsoft Excel Worksheet Template" -msgstr "" +msgstr "Microsoft Excel аелектронтә таблица ашаблон" #: documents.ulf msgctxt "" @@ -293,7 +293,7 @@ "ms-powerpoint-presentation-12\n" "LngText.text" msgid "Microsoft PowerPoint Presentation" -msgstr "" +msgstr "Microsoft PowerPoint апрезентациақәа" #: documents.ulf msgctxt "" @@ -301,7 +301,7 @@ "ms-powerpoint-template-12\n" "LngText.text" msgid "Microsoft PowerPoint Presentation Template" -msgstr "" +msgstr "Microsoft PowerPoint апрезентациа ашаблон" #: documents.ulf msgctxt "" @@ -309,7 +309,7 @@ "ms-word-document-12\n" "LngText.text" msgid "Microsoft Word Document" -msgstr "" +msgstr "Microsoft Word адокумент" #: documents.ulf msgctxt "" @@ -317,7 +317,7 @@ "ms-word-template-12\n" "LngText.text" msgid "Microsoft Word Document Template" -msgstr "" +msgstr "Microsoft Word адокумент ашаблон" #: documents.ulf msgctxt "" @@ -325,7 +325,7 @@ "openxmlformats-officedocument-presentationml-presentation\n" "LngText.text" msgid "Microsoft PowerPoint Presentation" -msgstr "" +msgstr "Microsoft PowerPoint апрезентациақәа" #: documents.ulf msgctxt "" @@ -333,7 +333,7 @@ "openxmlformats-officedocument-presentationml-template\n" "LngText.text" msgid "Microsoft PowerPoint Presentation Template" -msgstr "" +msgstr "Microsoft PowerPoint апрезентациа ашаблон" #: documents.ulf msgctxt "" @@ -341,7 +341,7 @@ "openxmlformats-officedocument-spreadsheetml-sheet\n" "LngText.text" msgid "Microsoft Excel Worksheet" -msgstr "" +msgstr "Microsoft Excel аелектронтә таблица" #: documents.ulf msgctxt "" @@ -349,7 +349,7 @@ "openxmlformats-officedocument-spreadsheetml-template\n" "LngText.text" msgid "Microsoft Excel Worksheet Template" -msgstr "" +msgstr "Microsoft Excel аелектронтә таблица ашаблон" #: documents.ulf msgctxt "" @@ -357,7 +357,7 @@ "openxmlformats-officedocument-wordprocessingml-document\n" "LngText.text" msgid "Microsoft Word Document" -msgstr "" +msgstr "Microsoft Word адокумент" #: documents.ulf msgctxt "" @@ -365,7 +365,7 @@ "openxmlformats-officedocument-wordprocessingml-template\n" "LngText.text" msgid "Microsoft Word Document Template" -msgstr "" +msgstr "Microsoft Word адокумент ашаблон" #: documents.ulf msgctxt "" @@ -373,7 +373,7 @@ "ms-excel-sheet-binary-12\n" "LngText.text" msgid "Microsoft Excel Worksheet" -msgstr "" +msgstr "Microsoft Excel аелектронтә таблица" #: launcher_comment.ulf msgctxt "" @@ -413,7 +413,7 @@ "math\n" "LngText.text" msgid "Create and edit scientific formulas and equations by using Math." -msgstr "" +msgstr "Анаукатә формулақәеи аиҟаратәқәеи раҧҵареи аредакциа рзуреи." #: launcher_comment.ulf msgctxt "" @@ -437,7 +437,7 @@ "writer\n" "LngText.text" msgid "Word Processor" -msgstr "" +msgstr "Атеқсттә процессор" #: launcher_genericname.ulf msgctxt "" @@ -445,7 +445,7 @@ "impress\n" "LngText.text" msgid "Presentation" -msgstr "" +msgstr "Апрезентациа" #: launcher_genericname.ulf msgctxt "" @@ -453,7 +453,7 @@ "calc\n" "LngText.text" msgid "Spreadsheet" -msgstr "" +msgstr "Аелектронтә таблица" #: launcher_genericname.ulf msgctxt "" @@ -461,7 +461,7 @@ "base\n" "LngText.text" msgid "Database Development" -msgstr "" +msgstr "Адырқәа рбаза" #: launcher_genericname.ulf msgctxt "" @@ -477,7 +477,7 @@ "draw\n" "LngText.text" msgid "Drawing Program" -msgstr "" +msgstr "Асахьақәа Рредақтор" #: launcher_genericname.ulf msgctxt "" @@ -485,7 +485,7 @@ "startcenter\n" "LngText.text" msgid "Office" -msgstr "" +msgstr "Аофис" #: launcher_genericname.ulf msgctxt "" @@ -493,7 +493,7 @@ "xsltfilter\n" "LngText.text" msgid "XSLT based filters" -msgstr "" +msgstr "XSLT афильтрқәа" #: launcher_unityquicklist.ulf msgctxt "" @@ -501,7 +501,7 @@ "writer\n" "LngText.text" msgid "New Document" -msgstr "" +msgstr "Иаҧҵатәуп адокумент" #: launcher_unityquicklist.ulf msgctxt "" @@ -509,7 +509,7 @@ "impress\n" "LngText.text" msgid "New Presentation" -msgstr "" +msgstr "Иаҧҵатәуп апрезентациа" #: launcher_unityquicklist.ulf msgctxt "" @@ -517,7 +517,7 @@ "calc\n" "LngText.text" msgid "New Spreadsheet" -msgstr "" +msgstr "Иаҧҵатәуп аел.таблица" #: launcher_unityquicklist.ulf msgctxt "" @@ -525,7 +525,7 @@ "base\n" "LngText.text" msgid "New Database" -msgstr "" +msgstr "Иаҧҵатәуп адырқәа рбаза" #: launcher_unityquicklist.ulf msgctxt "" @@ -541,4 +541,4 @@ "draw\n" "LngText.text" msgid "New Drawing" -msgstr "" +msgstr "Иаҧҵатәуп асахьа" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/uui/source.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/uui/source.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/uui/source.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/uui/source.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n" -"PO-Revision-Date: 2017-07-19 08:46+0000\n" +"PO-Revision-Date: 2017-11-29 10:44+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500454018.000000\n" +"X-POOTLE-MTIME: 1511952275.000000\n" #: alreadyopen.src msgctxt "" @@ -41,7 +41,7 @@ "STR_ALREADYOPEN_READONLY_BTN\n" "string.text" msgid "Open ~Read-Only" -msgstr "" +msgstr "Открыть ~аҧхьара мацараз" #: alreadyopen.src msgctxt "" @@ -77,7 +77,7 @@ "STR_ALREADYOPEN_SAVE_BTN\n" "string.text" msgid "~Save" -msgstr "Иеиқәырхатәуп" +msgstr "Еиқәырхатәуп" #: filechanged.src msgctxt "" @@ -105,7 +105,7 @@ "STR_FILECHANGED_SAVEANYWAY_BTN\n" "string.text" msgid "~Save Anyway" -msgstr "" +msgstr "Аиқәырхара иацҵатәуп" #: ids.src msgctxt "" @@ -287,7 +287,7 @@ "$(ARG1) contains invalid characters.\n" "itemlist.text" msgid "$(ARG1) contains invalid characters." -msgstr "" +msgstr "$(ARG1) иаҵанакуеит изымуа асимволқәа." #: ids.src msgctxt "" @@ -341,7 +341,7 @@ "$(ARG1) contains misplaced characters.\n" "itemlist.text" msgid "$(ARG1) contains misplaced characters." -msgstr "" +msgstr "$(ARG1) иаҵанакуеит иахьахәҭам игылоу асимволқәа." #: ids.src msgctxt "" @@ -350,7 +350,7 @@ "The name $(ARG1) contains too many characters.\n" "itemlist.text" msgid "The name $(ARG1) contains too many characters." -msgstr "" +msgstr "Ахьӡ $(ARG1) иаҵанакуеит инамыцхәны асимволқәа." #: ids.src msgctxt "" @@ -359,7 +359,7 @@ "$(ARG1) does not exist.\n" "itemlist.text" msgid "$(ARG1) does not exist." -msgstr "" +msgstr "$(ARG1) ыҟаӡам." #: ids.src msgctxt "" @@ -368,7 +368,7 @@ "The path $(ARG1) does not exist.\n" "itemlist.text" msgid "The path $(ARG1) does not exist." -msgstr "" +msgstr "Амҩа $(ARG1) ахь иҟаӡам." #: ids.src msgctxt "" @@ -386,7 +386,7 @@ "$(ARG1) is not a directory.\n" "itemlist.text" msgid "$(ARG1) is not a directory." -msgstr "" +msgstr "$(ARG1) каталогӡам." #: ids.src msgctxt "" @@ -395,7 +395,7 @@ "$(ARG1) is not a file.\n" "itemlist.text" msgid "$(ARG1) is not a file." -msgstr "" +msgstr "$(ARG1) фаилӡам." #: ids.src msgctxt "" @@ -458,7 +458,7 @@ "$(ARG1) is write protected.\n" "itemlist.text" msgid "$(ARG1) is write protected." -msgstr "" +msgstr "$(ARG1) хьчоуп аҭаҩразы." #: ids.src msgctxt "" @@ -467,7 +467,7 @@ "$(ARG1) is not in the correct format.\n" "itemlist.text" msgid "$(ARG1) is not in the correct format." -msgstr "" +msgstr "Ииашам аформат $(ARG1). " #: ids.src msgctxt "" @@ -476,7 +476,7 @@ "The version of $(ARG1) is not correct.\n" "itemlist.text" msgid "The version of $(ARG1) is not correct." -msgstr "" +msgstr "Ииашам аверсиа $(ARG1)." #: ids.src msgctxt "" @@ -485,7 +485,7 @@ "Drive $(ARG1) does not exist.\n" "itemlist.text" msgid "Drive $(ARG1) does not exist." -msgstr "" +msgstr "Асанҭыр $(ARG1) ыҟаӡам." #: ids.src msgctxt "" @@ -494,7 +494,7 @@ "Folder $(ARG1) does not exist.\n" "itemlist.text" msgid "Folder $(ARG1) does not exist." -msgstr "" +msgstr "Акаталог $(ARG1) ыҟаӡам." #: ids.src msgctxt "" @@ -636,7 +636,7 @@ "The file '$(ARG1)' could not be repaired and therefore cannot be opened.\n" "itemlist.text" msgid "The file '$(ARG1)' could not be repaired and therefore cannot be opened." -msgstr "" +msgstr "Афаил «$(ARG1)» аартреи аиҭашьақәыргылареи ауам." #: ids.src msgctxt "" @@ -884,7 +884,7 @@ "STR_SAME_NAME_USED\n" "string.text" msgid "Please provide a different file name!" -msgstr "" +msgstr "Афаил иашәҭ даҽа хьӡык!" #: openlocked.src msgctxt "" @@ -892,7 +892,7 @@ "STR_OPENLOCKED_TITLE\n" "string.text" msgid "Document in Use" -msgstr "" +msgstr "Адокумент ахархәара амоуп" #: openlocked.src msgctxt "" @@ -914,7 +914,7 @@ "STR_OPENLOCKED_OPENREADONLY_BTN\n" "string.text" msgid "Open ~Read-Only" -msgstr "" +msgstr "Иаарттәуп ~аҧхьара мацараз" #: openlocked.src msgctxt "" @@ -922,7 +922,7 @@ "STR_OPENLOCKED_OPENCOPY_BTN\n" "string.text" msgid "Open ~Copy" -msgstr "" +msgstr "Иаарттәуп ~акопиа" #: openlocked.src msgctxt "" @@ -930,7 +930,7 @@ "STR_UNKNOWNUSER\n" "string.text" msgid "Unknown User" -msgstr "" +msgstr "Идырым ахархәаҩ" #: passworddlg.src msgctxt "" @@ -938,7 +938,7 @@ "STR_ENTER_PASSWORD_TO_OPEN\n" "string.text" msgid "Enter password to open file: \n" -msgstr "" +msgstr "Афаил аартраз иҭажәгал ажәамаӡа: \n" #: passworddlg.src msgctxt "" @@ -947,6 +947,8 @@ "string.text" msgid "Enter password to modify file: \n" msgstr "" +"Афаил аҧсахраз иҭажәгал ажәамаӡа: \n" +" " #: passworddlg.src msgctxt "" @@ -954,7 +956,7 @@ "STR_ENTER_SIMPLE_PASSWORD\n" "string.text" msgid "Enter password: " -msgstr "" +msgstr "Иҭажәгал ажәамаӡа:" #: passworddlg.src msgctxt "" @@ -962,7 +964,7 @@ "STR_CONFIRM_SIMPLE_PASSWORD\n" "string.text" msgid "Confirm password: " -msgstr "" +msgstr "Ишьақәшәырӷәӷәа ажәамаӡа:" #: passworddlg.src msgctxt "" @@ -970,7 +972,7 @@ "STR_TITLE_CREATE_PASSWORD\n" "string.text" msgid "Set Password" -msgstr "" +msgstr "Иқәыргылатәуп ажәамаӡа" #: passworddlg.src msgctxt "" @@ -978,7 +980,7 @@ "STR_TITLE_ENTER_PASSWORD\n" "string.text" msgid "Enter Password" -msgstr "" +msgstr "Иҭажәгал ажәамаӡа" #: passworddlg.src msgctxt "" @@ -994,7 +996,7 @@ "STR_ERROR_PASSWORD_TO_OPEN_WRONG\n" "string.text" msgid "The password is incorrect. The file cannot be opened." -msgstr "" +msgstr "Ииашам ажәамаӡа. Адокумент аартра ауам." #: passworderrs.src msgctxt "" @@ -1002,7 +1004,7 @@ "STR_ERROR_PASSWORD_TO_MODIFY_WRONG\n" "string.text" msgid "The password is incorrect. The file cannot be modified." -msgstr "" +msgstr "Ииашам ажәамаӡа. Адокумент аҧсахра ауам." #: passworderrs.src msgctxt "" @@ -1010,7 +1012,7 @@ "STR_ERROR_MASTERPASSWORD_WRONG\n" "string.text" msgid "The master password is incorrect." -msgstr "" +msgstr "Ииашам ажәамаӡа-азҟаза." #: passworderrs.src msgctxt "" @@ -1018,7 +1020,7 @@ "STR_ERROR_SIMPLE_PASSWORD_WRONG\n" "string.text" msgid "The password is incorrect." -msgstr "" +msgstr "Ииашам ажәамаӡа." #: passworderrs.src msgctxt "" @@ -1026,7 +1028,7 @@ "STR_ERROR_PASSWORDS_NOT_IDENTICAL\n" "string.text" msgid "The password confirmation does not match." -msgstr "" +msgstr "Ажәамаӡақәа еиқәшәаӡом." #: trylater.src msgctxt "" @@ -1034,7 +1036,7 @@ "STR_TRYLATER_TITLE\n" "string.text" msgid "Document in Use" -msgstr "" +msgstr "Адокумент ахархәара амоуп" #: trylater.src msgctxt "" @@ -1064,4 +1066,4 @@ "STR_TRYLATER_SAVEAS_BTN\n" "string.text" msgid "~Save As..." -msgstr "Иеиқәырхатәуп иаба(ишҧа)..." +msgstr "Еиқәырхатәуп иаба(ишҧа)..." diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/uui/uiconfig/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/uui/uiconfig/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/uui/uiconfig/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/uui/uiconfig/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-07-18 11:06+0000\n" +"PO-Revision-Date: 2017-11-29 08:04+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500376003.000000\n" +"X-POOTLE-MTIME: 1511942671.000000\n" #: authfallback.ui msgctxt "" @@ -210,7 +210,7 @@ "label\n" "string.text" msgid "The document contains document macros." -msgstr "" +msgstr "Адокумент иаҵанакуеит амакросқәа." #: macrowarnmedium.ui msgctxt "" @@ -264,7 +264,7 @@ "title\n" "string.text" msgid "Set Password" -msgstr "" +msgstr "Иқәыргылатәуп ажәамаӡа" #: setmasterpassworddlg.ui msgctxt "" @@ -354,7 +354,7 @@ "label\n" "string.text" msgid "Continue" -msgstr "" +msgstr "Иацҵатәуп" #: sslwarndialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/vcl/source/edit.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/vcl/source/edit.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/vcl/source/edit.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/vcl/source/edit.po 2017-12-12 17:45:07.000000000 +0000 @@ -3,16 +3,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: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2017-11-30 10:56+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1512039371.000000\n" #: textundo.src msgctxt "" @@ -20,7 +21,7 @@ "STR_TEXTUNDO_DELPARA\n" "string.text" msgid "delete line" -msgstr "" +msgstr "ианыхтәуп ацәаҳәа" #: textundo.src msgctxt "" @@ -28,7 +29,7 @@ "STR_TEXTUNDO_CONNECTPARAS\n" "string.text" msgid "delete multiple lines" -msgstr "" +msgstr "ианыхтәуп ацәаҳәақәа ҧыҭк" #: textundo.src msgctxt "" @@ -52,4 +53,4 @@ "STR_TEXTUNDO_REMOVECHARS\n" "string.text" msgid "delete '$1'" -msgstr "" +msgstr "ианыхтәуп '$1' " diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/vcl/source/src.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/vcl/source/src.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/vcl/source/src.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/vcl/source/src.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n" -"PO-Revision-Date: 2017-09-18 11:12+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-30 10:56+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1505733123.000000\n" +"X-POOTLE-MTIME: 1512039379.000000\n" #: app.src msgctxt "" @@ -79,7 +79,7 @@ "SV_BUTTONTEXT_CANCEL\n" "string.text" msgid "~Cancel" -msgstr "" +msgstr "~Иаҟәыхтәуп" #. This is used on buttons for Windows, there should be no ~ mnemonic in this string #: btntext.src @@ -97,7 +97,7 @@ "SV_BUTTONTEXT_CANCEL_NOMNEMONIC\n" "string.text" msgid "Cancel" -msgstr "" +msgstr "Иаҟәыхтәуп" #: btntext.src msgctxt "" @@ -193,7 +193,7 @@ "SV_BUTTONTEXT_DELETE\n" "string.text" msgid "~Delete" -msgstr "" +msgstr "~Ианыхтәуп" #: btntext.src msgctxt "" @@ -209,7 +209,7 @@ "SV_BUTTONTEXT_NEW\n" "string.text" msgid "~New" -msgstr "" +msgstr "Иаҧҵатәуп" #: btntext.src msgctxt "" @@ -217,7 +217,7 @@ "SV_BUTTONTEXT_EDIT\n" "string.text" msgid "~Edit" -msgstr "" +msgstr "~Ариашара" #: btntext.src msgctxt "" @@ -225,7 +225,7 @@ "SV_BUTTONTEXT_APPLY\n" "string.text" msgid "~Apply" -msgstr "" +msgstr "~Ихархәатәуп" #: btntext.src msgctxt "" @@ -233,7 +233,7 @@ "SV_BUTTONTEXT_SAVE\n" "string.text" msgid "~Save" -msgstr "Иеиқәырхатәуп" +msgstr "Еиқәырхатәуп" #: btntext.src msgctxt "" @@ -241,7 +241,7 @@ "SV_BUTTONTEXT_OPEN\n" "string.text" msgid "~Open" -msgstr "" +msgstr "~Иаарттәуп" #: btntext.src msgctxt "" @@ -249,7 +249,7 @@ "SV_BUTTONTEXT_UNDO\n" "string.text" msgid "~Undo" -msgstr "" +msgstr "Иаҟәыхтәуп" #: btntext.src msgctxt "" @@ -345,7 +345,7 @@ "STR_FPICKER_PASSWORD\n" "string.text" msgid "Save with pass~word" -msgstr "Иеиқәырхатәуп ажәамаӡа шацу" +msgstr "Еиқәырхатәуп ажәамаӡа шацу" #: fpicker.src msgctxt "" @@ -353,7 +353,7 @@ "STR_FPICKER_FILTER_OPTIONS\n" "string.text" msgid "~Edit filter settings" -msgstr "" +msgstr "Афильтр апараметрқәа рыриашара" #: fpicker.src msgctxt "" @@ -369,7 +369,7 @@ "STR_FPICKER_INSERT_AS_LINK\n" "string.text" msgid "Insert as ~Link" -msgstr "" +msgstr "Ибжьаргылатәуп азхьарҧш еиҧш" #: fpicker.src msgctxt "" @@ -417,7 +417,7 @@ "STR_FPICKER_SELECTION\n" "string.text" msgid "~Selection" -msgstr "" +msgstr "Алкаара" #: fpicker.src msgctxt "" @@ -425,7 +425,7 @@ "STR_FPICKER_FOLDER_DEFAULT_TITLE\n" "string.text" msgid "Select Path" -msgstr "" +msgstr "Иалхтәуп амҩа" #: fpicker.src msgctxt "" @@ -433,7 +433,7 @@ "STR_FPICKER_FOLDER_DEFAULT_DESCRIPTION\n" "string.text" msgid "Please select a folder." -msgstr "" +msgstr "Иалышәх аҭаӡ." #: fpicker.src msgctxt "" @@ -457,7 +457,7 @@ "STR_FPICKER_ALLFORMATS\n" "string.text" msgid "All Formats" -msgstr "" +msgstr "Аформатқәа зегьы" #: fpicker.src msgctxt "" @@ -465,7 +465,7 @@ "STR_FPICKER_OPEN\n" "string.text" msgid "Open" -msgstr "" +msgstr "Иаарттәуп" #: fpicker.src msgctxt "" @@ -473,7 +473,7 @@ "STR_FPICKER_SAVE\n" "string.text" msgid "Save" -msgstr "Иеиқәырхатәуп" +msgstr "Еиқәырхатәуп" #: fpicker.src msgctxt "" @@ -481,7 +481,7 @@ "STR_FPICKER_TYPE\n" "string.text" msgid "File ~type" -msgstr "" +msgstr "Афаил атип" #: helptext.src msgctxt "" @@ -577,7 +577,7 @@ "SV_RESID_STRING_NOSELECTIONPOSSIBLE\n" "string.text" msgid "" -msgstr "" +msgstr "<Алхра ауӡом>" #: menu.src msgctxt "" @@ -662,7 +662,7 @@ "Print selection only\n" "itemlist.text" msgid "Print selection only" -msgstr "" +msgstr "Икьыҧхьтәуп иалкаау мацара" #: print.src msgctxt "" @@ -1011,7 +1011,7 @@ "SV_PRINT_TOFILE_TXT\n" "string.text" msgid "Print to File..." -msgstr "" +msgstr "Икьыҧхьтәуп афаил ахь..." #: print.src msgctxt "" @@ -1027,7 +1027,7 @@ "SV_PRINT_PRINTPREVIEW_TXT\n" "string.text" msgid "Print preview" -msgstr "" +msgstr "Заатәи ахәаҧшра" #: print.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/vcl/uiconfig/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/vcl/uiconfig/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/vcl/uiconfig/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/vcl/uiconfig/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n" -"PO-Revision-Date: 2014-11-18 11:21+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-30 10:56+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1416309676.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1512039385.000000\n" #: cupspassworddialog.ui msgctxt "" @@ -58,7 +58,7 @@ "label\n" "string.text" msgid "_Undo" -msgstr "" +msgstr "Иаҟәыхтәуп" #: editmenu.ui msgctxt "" @@ -94,7 +94,7 @@ "label\n" "string.text" msgid "_Delete" -msgstr "" +msgstr "Ианыхтәуп" #: editmenu.ui msgctxt "" @@ -103,7 +103,7 @@ "label\n" "string.text" msgid "Select _All" -msgstr "" +msgstr "Иалкаатәуп зегьы" #: editmenu.ui msgctxt "" @@ -112,7 +112,7 @@ "label\n" "string.text" msgid "_Special Character..." -msgstr "" +msgstr "Асимволқәа..." #: errornocontentdialog.ui msgctxt "" @@ -130,7 +130,7 @@ "text\n" "string.text" msgid "There are no pages to be printed." -msgstr "" +msgstr "Икьыҧхьтәу ыҟам." #: errornocontentdialog.ui msgctxt "" @@ -175,7 +175,7 @@ "title\n" "string.text" msgid "Print" -msgstr "" +msgstr "Акьыҧхьра" #: printdialog.ui msgctxt "" @@ -238,7 +238,7 @@ "label\n" "string.text" msgid "Long printer name" -msgstr "" +msgstr "Апринтер ахьӡ" #: printdialog.ui msgctxt "" @@ -265,7 +265,7 @@ "label\n" "string.text" msgid "Printer" -msgstr "" +msgstr "Апринтер" #: printdialog.ui msgctxt "" @@ -301,7 +301,7 @@ "label\n" "string.text" msgid "Selected sheets" -msgstr "" +msgstr "Иалху абӷьыцқәа" #: printdialog.ui msgctxt "" @@ -310,7 +310,7 @@ "label\n" "string.text" msgid "Selected cells" -msgstr "" +msgstr "Иалкаау абларҭақәа" #: printdialog.ui msgctxt "" @@ -319,7 +319,7 @@ "label\n" "string.text" msgid "From which print" -msgstr "" +msgstr "Икьыҧхьтәуп" #: printdialog.ui msgctxt "" @@ -346,7 +346,7 @@ "label\n" "string.text" msgid "Selection" -msgstr "" +msgstr "Алхра" #: printdialog.ui msgctxt "" @@ -382,7 +382,7 @@ "label\n" "string.text" msgid "Print" -msgstr "" +msgstr "Акьыҧхьра" #: printdialog.ui msgctxt "" @@ -418,7 +418,7 @@ "label\n" "string.text" msgid "Print" -msgstr "" +msgstr "Акьыҧхьра" #: printdialog.ui msgctxt "" @@ -787,7 +787,7 @@ "label\n" "string.text" msgid "Printer language _type:" -msgstr "" +msgstr "Апринтер абызшәа:" #: printerdevicepage.ui msgctxt "" @@ -895,7 +895,7 @@ "label\n" "string.text" msgid "_Paper size:" -msgstr "" +msgstr "Абӷьыц ашәагаа:" #: printerpaperpage.ui msgctxt "" @@ -976,7 +976,7 @@ "title\n" "string.text" msgid "Printing" -msgstr "" +msgstr "Акьыҧхьра" #: printprogressdialog.ui msgctxt "" @@ -994,4 +994,4 @@ "title\n" "string.text" msgid "New Data Type" -msgstr "" +msgstr "Адырқәа ртип ҿыц" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/wizards/source/euro.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/wizards/source/euro.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/wizards/source/euro.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/wizards/source/euro.po 2017-12-12 17:45:07.000000000 +0000 @@ -3,16 +3,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: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2017-11-29 09:40+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511948403.000000\n" #: euro.src msgctxt "" @@ -20,7 +21,7 @@ "STEP_ZERO\n" "string.text" msgid "~Cancel" -msgstr "" +msgstr "~Иаҟәыхтәуп" #: euro.src msgctxt "" @@ -28,7 +29,7 @@ "STEP_ZERO + 1\n" "string.text" msgid "~Help" -msgstr "" +msgstr "~Ацхыраагӡа" #: euro.src msgctxt "" @@ -36,7 +37,7 @@ "STEP_ZERO + 2\n" "string.text" msgid "<<~Back" -msgstr "" +msgstr "< ~Шьҭахьҟа" #: euro.src msgctxt "" @@ -68,7 +69,7 @@ "STEP_ZERO + 6\n" "string.text" msgid "Currencies:" -msgstr "" +msgstr "Авалиута:" #: euro.src msgctxt "" @@ -76,7 +77,7 @@ "STEP_ZERO + 7\n" "string.text" msgid "C~ontinue>>" -msgstr "" +msgstr "Анаҩс>>" #: euro.src msgctxt "" @@ -84,7 +85,7 @@ "STEP_ZERO + 8\n" "string.text" msgid "C~lose" -msgstr "" +msgstr "~Иарктәуп" #: euro.src msgctxt "" @@ -92,7 +93,7 @@ "STEP_CONVERTER\n" "string.text" msgid "~Entire document" -msgstr "" +msgstr "~Адокумент зегьы" #: euro.src msgctxt "" @@ -100,7 +101,7 @@ "STEP_CONVERTER + 1\n" "string.text" msgid "Selection" -msgstr "" +msgstr "Алкаара" #: euro.src msgctxt "" @@ -108,7 +109,7 @@ "STEP_CONVERTER + 2\n" "string.text" msgid "Cell S~tyles" -msgstr "" +msgstr "Абларҭа астильқәа" #: euro.src msgctxt "" @@ -140,7 +141,7 @@ "STEP_CONVERTER + 6\n" "string.text" msgid "Select Cell Styles" -msgstr "" +msgstr "Абларҭақәа рстильқәа ралхра" #: euro.src msgctxt "" @@ -148,7 +149,7 @@ "STEP_CONVERTER + 7\n" "string.text" msgid "Select currency cells" -msgstr "" +msgstr "Иалкаатәуп авалиута абларҭақәа" #: euro.src msgctxt "" @@ -164,7 +165,7 @@ "STEP_CONVERTER + 9\n" "string.text" msgid "Templates:" -msgstr "" +msgstr "Ашаблонқәа:" #: euro.src msgctxt "" @@ -172,7 +173,7 @@ "STEP_AUTOPILOT\n" "string.text" msgid "Extent" -msgstr "" +msgstr "Аҭаӡара" #: euro.src msgctxt "" @@ -188,7 +189,7 @@ "STEP_AUTOPILOT + 2\n" "string.text" msgid "Complete ~directory" -msgstr "" +msgstr "Акаталог зегьы" #: euro.src msgctxt "" @@ -292,7 +293,7 @@ "MESSAGES\n" "string.text" msgid "~Finish" -msgstr "" +msgstr "Ихиоуп" #: euro.src msgctxt "" @@ -300,7 +301,7 @@ "MESSAGES + 1\n" "string.text" msgid "Select directory" -msgstr "" +msgstr "Иалышәх акаталог" #: euro.src msgctxt "" @@ -308,7 +309,7 @@ "MESSAGES + 2\n" "string.text" msgid "Select file" -msgstr "" +msgstr "Иалышәх афаил" #: euro.src msgctxt "" @@ -324,7 +325,7 @@ "MESSAGES + 4\n" "string.text" msgid "non-existent" -msgstr "" +msgstr "иҟаӡам" #: euro.src msgctxt "" @@ -332,7 +333,7 @@ "MESSAGES + 5\n" "string.text" msgid "Euro Converter" -msgstr "" +msgstr "Евро аконвертер" #: euro.src msgctxt "" @@ -356,7 +357,7 @@ "MESSAGES + 8\n" "string.text" msgid "Wrong Password!" -msgstr "" +msgstr "Ииашам ажәамаӡа!" #: euro.src msgctxt "" @@ -372,7 +373,7 @@ "MESSAGES + 10\n" "string.text" msgid "Warning!" -msgstr "" +msgstr "Агәаҽанҵара!" #: euro.src msgctxt "" @@ -420,7 +421,7 @@ "MESSAGES + 16\n" "string.text" msgid "Password:" -msgstr "" +msgstr "Ажәамаӡа:" #: euro.src msgctxt "" @@ -428,7 +429,7 @@ "MESSAGES + 17\n" "string.text" msgid "OK" -msgstr "" +msgstr "OK" #: euro.src msgctxt "" @@ -436,7 +437,7 @@ "MESSAGES + 18\n" "string.text" msgid "Cancel" -msgstr "" +msgstr "Иаҟәыхтәуп" #: euro.src msgctxt "" @@ -444,7 +445,7 @@ "MESSAGES + 19\n" "string.text" msgid "Please select a %PRODUCTNAME Calc document for editing!" -msgstr "" +msgstr "Ариашараз иалышәх адокумент %PRODUCTNAME Calc! " #: euro.src msgctxt "" @@ -452,7 +453,7 @@ "MESSAGES + 20\n" "string.text" msgid "'<1>' is not a directory!" -msgstr "" +msgstr "«<1>» каталогӡам!" #: euro.src msgctxt "" @@ -460,7 +461,7 @@ "MESSAGES + 21\n" "string.text" msgid "Document is read-only!" -msgstr "" +msgstr "Адокумент аҧхьара мацараз!" #: euro.src msgctxt "" @@ -484,7 +485,7 @@ "MESSAGES + 24\n" "string.text" msgid "Cancel Wizard" -msgstr "" +msgstr "Иаҟәыхтәуп азҟаза адәықәҵара" #: euro.src msgctxt "" @@ -668,7 +669,7 @@ "STEP_LASTPAGE + 3\n" "string.text" msgid "Settings:" -msgstr "" +msgstr "Архиарақәа:" #: euro.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/wizards/source/formwizard.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/wizards/source/formwizard.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/wizards/source/formwizard.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/wizards/source/formwizard.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-29 18:39+0200\n" -"PO-Revision-Date: 2017-09-18 11:12+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-30 10:57+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1505733132.000000\n" +"X-POOTLE-MTIME: 1512039435.000000\n" #: dbwizres.src msgctxt "" @@ -85,7 +85,7 @@ "RID_COMMON_START + 8\n" "string.text" msgid "Yes" -msgstr "" +msgstr "Ааи" #: dbwizres.src msgctxt "" @@ -93,7 +93,7 @@ "RID_COMMON_START + 9\n" "string.text" msgid "Yes to All" -msgstr "" +msgstr "Ааи, зегьы рзы" #: dbwizres.src msgctxt "" @@ -101,7 +101,7 @@ "RID_COMMON_START + 10\n" "string.text" msgid "No" -msgstr "" +msgstr "Мап" #: dbwizres.src msgctxt "" @@ -109,7 +109,7 @@ "RID_COMMON_START + 11\n" "string.text" msgid "Cancel" -msgstr "" +msgstr "Аҟәыхра" #: dbwizres.src msgctxt "" @@ -117,7 +117,7 @@ "RID_COMMON_START + 12\n" "string.text" msgid "~Finish" -msgstr "" +msgstr "Ихиоуп" #: dbwizres.src msgctxt "" @@ -125,7 +125,7 @@ "RID_COMMON_START + 13\n" "string.text" msgid "< ~Back" -msgstr "" +msgstr "< ~Шьҭахьҟа" #: dbwizres.src msgctxt "" @@ -133,7 +133,7 @@ "RID_COMMON_START + 14\n" "string.text" msgid "~Next >" -msgstr "" +msgstr "~Анаҩс >" #: dbwizres.src msgctxt "" @@ -141,7 +141,7 @@ "RID_COMMON_START + 15\n" "string.text" msgid "~Help" -msgstr "" +msgstr "~Ацхыраагӡа" #: dbwizres.src msgctxt "" @@ -149,7 +149,7 @@ "RID_COMMON_START + 16\n" "string.text" msgid "Steps" -msgstr "" +msgstr "Ашьаҿақәа" #: dbwizres.src msgctxt "" @@ -165,7 +165,7 @@ "RID_COMMON_START + 18\n" "string.text" msgid "OK" -msgstr "" +msgstr "OK" #: dbwizres.src msgctxt "" @@ -173,7 +173,7 @@ "RID_COMMON_START + 19\n" "string.text" msgid "The file already exists. Do you want to overwrite it?" -msgstr "" +msgstr "Афаил ыҟоуп. Иҧсахтәума?" #: dbwizres.src msgctxt "" @@ -200,7 +200,7 @@ "RID_DB_COMMON_START + 0\n" "string.text" msgid "C~reate" -msgstr "" +msgstr "Иаҧҵатәуп" #: dbwizres.src msgctxt "" @@ -208,7 +208,7 @@ "RID_DB_COMMON_START + 1\n" "string.text" msgid "~Cancel" -msgstr "" +msgstr "~Иаҟәыхтәуп" #: dbwizres.src msgctxt "" @@ -216,7 +216,7 @@ "RID_DB_COMMON_START + 2\n" "string.text" msgid "<< ~Back" -msgstr "" +msgstr "<< ~Шьҭахьҟа" #: dbwizres.src msgctxt "" @@ -224,7 +224,7 @@ "RID_DB_COMMON_START + 3\n" "string.text" msgid "~Next >>" -msgstr "" +msgstr "~Анаҩс >>" #: dbwizres.src msgctxt "" @@ -232,7 +232,7 @@ "RID_DB_COMMON_START + 4\n" "string.text" msgid "~Database" -msgstr "" +msgstr "~Адырқәа рбаза" #: dbwizres.src msgctxt "" @@ -240,7 +240,7 @@ "RID_DB_COMMON_START + 5\n" "string.text" msgid "~Table name" -msgstr "" +msgstr "~Атаблица ахьӡ" #: dbwizres.src msgctxt "" @@ -264,7 +264,7 @@ "RID_DB_COMMON_START + 9\n" "string.text" msgid "The database does not contain any tables." -msgstr "" +msgstr "Адырқәа рбаза атаблицақәа аҵанакуам." #: dbwizres.src msgctxt "" @@ -312,7 +312,7 @@ "RID_DB_COMMON_START + 20\n" "string.text" msgid "~Help" -msgstr "" +msgstr "~Ацхыраагӡа" #: dbwizres.src msgctxt "" @@ -320,7 +320,7 @@ "RID_DB_COMMON_START + 21\n" "string.text" msgid "~Stop" -msgstr "" +msgstr "~Аанкылара" #: dbwizres.src msgctxt "" @@ -336,7 +336,7 @@ "RID_DB_COMMON_START + 33\n" "string.text" msgid "Exiting the wizard" -msgstr "" +msgstr "Азҟаза аҟынтә аҭыҵра" #: dbwizres.src msgctxt "" @@ -368,7 +368,7 @@ "RID_DB_COMMON_START + 37\n" "string.text" msgid "Please select a data source" -msgstr "" +msgstr "Иалышәх адырқәа рхыҵхырҭа" #: dbwizres.src msgctxt "" @@ -440,7 +440,7 @@ "RID_DB_FORM_WIZARD_START + 0\n" "string.text" msgid "Form Wizard" -msgstr "" +msgstr "Аформақәа разҟаза" #: dbwizres.src msgctxt "" @@ -654,7 +654,7 @@ "RID_DB_FORM_WIZARD_START + 33\n" "string.text" msgid "Align left" -msgstr "" +msgstr "Армарахь ала" #: dbwizres.src msgctxt "" @@ -662,7 +662,7 @@ "RID_DB_FORM_WIZARD_START + 34\n" "string.text" msgid "Align right" -msgstr "" +msgstr "Арӷьарахь ала" #: dbwizres.src msgctxt "" @@ -766,7 +766,7 @@ "RID_DB_FORM_WIZARD_START + 48\n" "string.text" msgid "Do not allow ~deletion of existing data" -msgstr "" +msgstr "Иҟоу адырқәа раныхра мап ацәкра" #: dbwizres.src msgctxt "" @@ -782,7 +782,7 @@ "RID_DB_FORM_WIZARD_START + 50\n" "string.text" msgid "Name of ~the form" -msgstr "" +msgstr "Аформа ахьӡ" #: dbwizres.src msgctxt "" @@ -798,7 +798,7 @@ "RID_DB_FORM_WIZARD_START + 52\n" "string.text" msgid "~Work with the form" -msgstr "" +msgstr "Аформа аус адулара" #: dbwizres.src msgctxt "" @@ -814,7 +814,7 @@ "RID_DB_FORM_WIZARD_START + 55\n" "string.text" msgid "~Page Styles" -msgstr "" +msgstr "Адаҟьақәа рстильқәа" #: dbwizres.src msgctxt "" @@ -822,7 +822,7 @@ "RID_DB_FORM_WIZARD_START + 80\n" "string.text" msgid "Field selection" -msgstr "" +msgstr "Аҭакыра алхра" #: dbwizres.src msgctxt "" @@ -870,7 +870,7 @@ "RID_DB_FORM_WIZARD_START + 86\n" "string.text" msgid "Apply styles" -msgstr "" +msgstr "Ихархәатәуп астильқәа" #: dbwizres.src msgctxt "" @@ -878,7 +878,7 @@ "RID_DB_FORM_WIZARD_START + 87\n" "string.text" msgid "Set name" -msgstr "" +msgstr "Ахь аҭатәуп" #: dbwizres.src msgctxt "" @@ -886,7 +886,7 @@ "RID_DB_FORM_WIZARD_START + 88\n" "string.text" msgid "(Date)" -msgstr "" +msgstr "(Арыцхә)" #: dbwizres.src msgctxt "" @@ -894,7 +894,7 @@ "RID_DB_FORM_WIZARD_START + 89\n" "string.text" msgid "(Time)" -msgstr "" +msgstr "(Аамҭа)" #: dbwizres.src msgctxt "" @@ -902,7 +902,7 @@ "RID_DB_FORM_WIZARD_START + 90\n" "string.text" msgid "Select the fields of your form" -msgstr "" +msgstr "Иалышәх аформа аҭакырақәа" #: dbwizres.src msgctxt "" @@ -942,7 +942,7 @@ "RID_DB_FORM_WIZARD_START + 95\n" "string.text" msgid "Select the data entry mode" -msgstr "" +msgstr "Адырқәа рхыҵхырҭа арежим алхра" #: dbwizres.src msgctxt "" @@ -1000,7 +1000,7 @@ "RID_DB_QUERY_WIZARD_START + 3\n" "string.text" msgid "~Tables" -msgstr "" +msgstr "Атаблицақәа" #: dbwizres.src msgctxt "" @@ -1120,7 +1120,7 @@ "RID_DB_QUERY_WIZARD_START + 21\n" "string.text" msgid "Table: " -msgstr "" +msgstr "Атаблица:" #: dbwizres.src msgctxt "" @@ -1144,7 +1144,7 @@ "RID_DB_QUERY_WIZARD_START + 25\n" "string.text" msgid "Value" -msgstr "" +msgstr "Аҵакы" #: dbwizres.src msgctxt "" @@ -1152,7 +1152,7 @@ "RID_DB_QUERY_WIZARD_START + 26\n" "string.text" msgid "is equal to" -msgstr "" +msgstr "иаҟароуп" #: dbwizres.src msgctxt "" @@ -1160,7 +1160,7 @@ "RID_DB_QUERY_WIZARD_START + 27\n" "string.text" msgid "is not equal to" -msgstr "" +msgstr "иаҟарам" #: dbwizres.src msgctxt "" @@ -1168,7 +1168,7 @@ "RID_DB_QUERY_WIZARD_START + 28\n" "string.text" msgid "is smaller than" -msgstr "" +msgstr "еиҵоуп" #: dbwizres.src msgctxt "" @@ -1176,7 +1176,7 @@ "RID_DB_QUERY_WIZARD_START + 29\n" "string.text" msgid "is greater than" -msgstr "" +msgstr "еиҳауп" #: dbwizres.src msgctxt "" @@ -1184,7 +1184,7 @@ "RID_DB_QUERY_WIZARD_START + 30\n" "string.text" msgid "is equal or less than " -msgstr "" +msgstr "еиҵоуп ма иаҟароуп" #: dbwizres.src msgctxt "" @@ -1192,7 +1192,7 @@ "RID_DB_QUERY_WIZARD_START + 31\n" "string.text" msgid "is equal or greater than" -msgstr "" +msgstr "еиҳауп ма иаҟароуп" #: dbwizres.src msgctxt "" @@ -1216,7 +1216,7 @@ "RID_DB_QUERY_WIZARD_START + 34\n" "string.text" msgid "is null" -msgstr "" +msgstr "иҭацәуп" #: dbwizres.src msgctxt "" @@ -1224,7 +1224,7 @@ "RID_DB_QUERY_WIZARD_START + 35\n" "string.text" msgid "is not null" -msgstr "" +msgstr "иҭацәӡам" #: dbwizres.src msgctxt "" @@ -1232,7 +1232,7 @@ "RID_DB_QUERY_WIZARD_START + 36\n" "string.text" msgid "true" -msgstr "" +msgstr "аиаша" #: dbwizres.src msgctxt "" @@ -1240,7 +1240,7 @@ "RID_DB_QUERY_WIZARD_START + 37\n" "string.text" msgid "false" -msgstr "" +msgstr "амц" #: dbwizres.src msgctxt "" @@ -1248,7 +1248,7 @@ "RID_DB_QUERY_WIZARD_START + 38\n" "string.text" msgid "and" -msgstr "" +msgstr "-и -и" #: dbwizres.src msgctxt "" @@ -1256,7 +1256,7 @@ "RID_DB_QUERY_WIZARD_START + 39\n" "string.text" msgid "or" -msgstr "" +msgstr "ма" #: dbwizres.src msgctxt "" @@ -1264,7 +1264,7 @@ "RID_DB_QUERY_WIZARD_START + 40\n" "string.text" msgid "get the sum of" -msgstr "" +msgstr "аицҵалыҵ аиура" #: dbwizres.src msgctxt "" @@ -1304,7 +1304,7 @@ "RID_DB_QUERY_WIZARD_START + 48\n" "string.text" msgid "(none)" -msgstr "" +msgstr "(мап)" #: dbwizres.src msgctxt "" @@ -1432,7 +1432,7 @@ "RID_DB_QUERY_WIZARD_START + 74\n" "string.text" msgid "Select the groups" -msgstr "" +msgstr "Иалышәх агәыҧ" #: dbwizres.src msgctxt "" @@ -1464,7 +1464,7 @@ "RID_DB_QUERY_WIZARD_START + 80\n" "string.text" msgid "Field selection" -msgstr "" +msgstr "Аҭакыра алхра" #: dbwizres.src msgctxt "" @@ -1606,7 +1606,7 @@ "RID_DB_REPORT_WIZARD_START + 0\n" "string.text" msgid "Report Wizard" -msgstr "" +msgstr "Аҳасабырбақәа разҟаза" #: dbwizres.src msgctxt "" @@ -1614,7 +1614,7 @@ "RID_DB_REPORT_WIZARD_START + 3\n" "string.text" msgid "~Table" -msgstr "" +msgstr "Атаблица" #: dbwizres.src msgctxt "" @@ -1622,7 +1622,7 @@ "RID_DB_REPORT_WIZARD_START + 4\n" "string.text" msgid "Colu~mns" -msgstr "" +msgstr "Аиҵагылақәа" #: dbwizres.src msgctxt "" @@ -1630,7 +1630,7 @@ "RID_DB_REPORT_WIZARD_START + 7\n" "string.text" msgid "Report_" -msgstr "" +msgstr "Аҳасабырба_" #: dbwizres.src msgctxt "" @@ -1726,7 +1726,7 @@ "RID_DB_REPORT_WIZARD_START + 22\n" "string.text" msgid "Orientation" -msgstr "" +msgstr "Ахырхарҭа" #: dbwizres.src msgctxt "" @@ -1734,7 +1734,7 @@ "RID_DB_REPORT_WIZARD_START + 23\n" "string.text" msgid "Portrait" -msgstr "" +msgstr "Ашәҟәытә" #: dbwizres.src msgctxt "" @@ -1742,7 +1742,7 @@ "RID_DB_REPORT_WIZARD_START + 24\n" "string.text" msgid "Landscape" -msgstr "" +msgstr "Альбомтә" #: dbwizres.src msgctxt "" @@ -1790,7 +1790,7 @@ "RID_DB_REPORT_WIZARD_START + 33\n" "string.text" msgid "Title of report" -msgstr "" +msgstr "Аҳасабырба ахы" #: dbwizres.src msgctxt "" @@ -1798,7 +1798,7 @@ "RID_DB_REPORT_WIZARD_START + 34\n" "string.text" msgid "Display report" -msgstr "" +msgstr "Иаарҧштәуп аҳасабырба" #: dbwizres.src msgctxt "" @@ -1806,7 +1806,7 @@ "RID_DB_REPORT_WIZARD_START + 35\n" "string.text" msgid "Create report" -msgstr "" +msgstr "Иаҧҵатәуп аҳасабырба" #: dbwizres.src msgctxt "" @@ -1814,7 +1814,7 @@ "RID_DB_REPORT_WIZARD_START + 36\n" "string.text" msgid "Ascending" -msgstr "" +msgstr "Еиҵоу-еиҳаула" #: dbwizres.src msgctxt "" @@ -1822,7 +1822,7 @@ "RID_DB_REPORT_WIZARD_START + 37\n" "string.text" msgid "Descending" -msgstr "" +msgstr "Еиҳау-еиҵоула" #: dbwizres.src msgctxt "" @@ -1838,7 +1838,7 @@ "RID_DB_REPORT_WIZARD_START + 41\n" "string.text" msgid "~Create report now" -msgstr "" +msgstr "Иаҧҵатәуп аҳасабырба абыржәы" #: dbwizres.src msgctxt "" @@ -1862,7 +1862,7 @@ "RID_DB_REPORT_WIZARD_START + 44\n" "string.text" msgid "Save as" -msgstr "Иеиқәырхатәуп иаба(ишҧа)" +msgstr "Еиқәырхатәуп иаба(ишҧа)" #: dbwizres.src msgctxt "" @@ -1894,7 +1894,7 @@ "RID_DB_REPORT_WIZARD_START + 53\n" "string.text" msgid "Asc~ending" -msgstr "" +msgstr "Еиҵоу-еиҳаула" #: dbwizres.src msgctxt "" @@ -1902,7 +1902,7 @@ "RID_DB_REPORT_WIZARD_START + 54\n" "string.text" msgid "Ascend~ing" -msgstr "" +msgstr "Еиҵоу-еиҳаула" #: dbwizres.src msgctxt "" @@ -1910,7 +1910,7 @@ "RID_DB_REPORT_WIZARD_START + 55\n" "string.text" msgid "Ascendin~g" -msgstr "" +msgstr "Еиҵоу-еиҳаула" #: dbwizres.src msgctxt "" @@ -1918,7 +1918,7 @@ "RID_DB_REPORT_WIZARD_START + 56\n" "string.text" msgid "De~scending" -msgstr "" +msgstr "Еиҳау-еиҵоула" #: dbwizres.src msgctxt "" @@ -1926,7 +1926,7 @@ "RID_DB_REPORT_WIZARD_START + 57\n" "string.text" msgid "Des~cending" -msgstr "" +msgstr "Еиҳау-еиҵоула" #: dbwizres.src msgctxt "" @@ -1934,7 +1934,7 @@ "RID_DB_REPORT_WIZARD_START + 58\n" "string.text" msgid "De~scending" -msgstr "" +msgstr "Еиҳау-еиҵоула" #: dbwizres.src msgctxt "" @@ -1950,7 +1950,7 @@ "RID_DB_REPORT_WIZARD_START + 61\n" "string.text" msgid "The table '' does not exist." -msgstr "" +msgstr "Атеқсттә таблица «» ыҟаӡам." #: dbwizres.src msgctxt "" @@ -1958,7 +1958,7 @@ "RID_DB_REPORT_WIZARD_START + 62\n" "string.text" msgid "Creating Report..." -msgstr "" +msgstr "Аҳасабырба аҧҵоуп..." #: dbwizres.src msgctxt "" @@ -1998,7 +1998,7 @@ "RID_DB_REPORT_WIZARD_START + 67\n" "string.text" msgid "Importing data..." -msgstr "" +msgstr "Адырқәа римпортра..." #: dbwizres.src msgctxt "" @@ -2094,7 +2094,7 @@ "RID_DB_REPORT_WIZARD_START + 80\n" "string.text" msgid "Tabular" -msgstr "" +msgstr "Атаблицатә" #: dbwizres.src msgctxt "" @@ -2142,7 +2142,7 @@ "RID_DB_REPORT_WIZARD_START + 86\n" "string.text" msgid "Title:" -msgstr "" +msgstr "Ахы:" #: dbwizres.src msgctxt "" @@ -2150,7 +2150,7 @@ "RID_DB_REPORT_WIZARD_START + 87\n" "string.text" msgid "Author:" -msgstr "" +msgstr "Автор:" #: dbwizres.src msgctxt "" @@ -2158,7 +2158,7 @@ "RID_DB_REPORT_WIZARD_START + 88\n" "string.text" msgid "Date:" -msgstr "" +msgstr "Арыцхә:" #. Please don't translate the words #page# and #count#, these are placeholders. #: dbwizres.src @@ -2175,7 +2175,7 @@ "RID_DB_REPORT_WIZARD_START + 90\n" "string.text" msgid "Page number:" -msgstr "" +msgstr "Адаҟьа аномер:" #: dbwizres.src msgctxt "" @@ -2183,7 +2183,7 @@ "RID_DB_REPORT_WIZARD_START + 91\n" "string.text" msgid "Page count:" -msgstr "" +msgstr "Адаҟьақәа рхыҧхьаӡара:" #: dbwizres.src msgctxt "" @@ -2199,7 +2199,7 @@ "RID_DB_REPORT_WIZARD_START + 93\n" "string.text" msgid "Page:" -msgstr "" +msgstr "Адаҟьа:" #: dbwizres.src msgctxt "" @@ -2367,7 +2367,7 @@ "RID_DB_REPORT_WIZARD_START + 114\n" "string.text" msgid "Cinema" -msgstr "" +msgstr "Акино" #: dbwizres.src msgctxt "" @@ -2375,7 +2375,7 @@ "RID_DB_REPORT_WIZARD_START + 115\n" "string.text" msgid "Controlling" -msgstr "" +msgstr "Аконтроль" #: dbwizres.src msgctxt "" @@ -2391,7 +2391,7 @@ "RID_DB_REPORT_WIZARD_START + 117\n" "string.text" msgid "Drafting" -msgstr "" +msgstr "Асахьа" #: dbwizres.src msgctxt "" @@ -2399,7 +2399,7 @@ "RID_DB_REPORT_WIZARD_START + 118\n" "string.text" msgid "Finances" -msgstr "" +msgstr "Афинансқәа" #: dbwizres.src msgctxt "" @@ -2423,7 +2423,7 @@ "RID_DB_REPORT_WIZARD_START + 121\n" "string.text" msgid "Generic" -msgstr "" +msgstr "Иуниверсалтәу" #: dbwizres.src msgctxt "" @@ -2431,7 +2431,7 @@ "RID_DB_REPORT_WIZARD_START + 122\n" "string.text" msgid "Worldmap" -msgstr "" +msgstr "Адунеи ахсаала" #: dbwizres.src msgctxt "" @@ -2439,7 +2439,7 @@ "RID_DB_TABLE_WIZARD_START + 1\n" "string.text" msgid "Table Wizard" -msgstr "" +msgstr "Атаблицақәа разҟаза" #: dbwizres.src msgctxt "" @@ -2447,7 +2447,7 @@ "RID_DB_TABLE_WIZARD_START + 2\n" "string.text" msgid "Select fields" -msgstr "" +msgstr "Иалхтәуп аҭакырақәа" #: dbwizres.src msgctxt "" @@ -2471,7 +2471,7 @@ "RID_DB_TABLE_WIZARD_START + 5\n" "string.text" msgid "Create table" -msgstr "" +msgstr "Иаҧҵатәуп атаблица" #: dbwizres.src msgctxt "" @@ -2479,7 +2479,7 @@ "RID_DB_TABLE_WIZARD_START + 8\n" "string.text" msgid "Select fields for your table" -msgstr "" +msgstr "Иалхтәуп аҭакырақәа атаблицаз" #: dbwizres.src msgctxt "" @@ -2503,7 +2503,7 @@ "RID_DB_TABLE_WIZARD_START + 11\n" "string.text" msgid "Create table" -msgstr "" +msgstr "Иаҧҵатәуп атаблица" #: dbwizres.src msgctxt "" @@ -2519,7 +2519,7 @@ "RID_DB_TABLE_WIZARD_START + 15\n" "string.text" msgid "Ca~tegory" -msgstr "" +msgstr "Акатегориа" #: dbwizres.src msgctxt "" @@ -2567,7 +2567,7 @@ "RID_DB_TABLE_WIZARD_START + 21\n" "string.text" msgid "+" -msgstr "" +msgstr "+" #: dbwizres.src #, fuzzy @@ -2600,7 +2600,7 @@ "RID_DB_TABLE_WIZARD_START + 25\n" "string.text" msgid "~Selected fields" -msgstr "" +msgstr "Иалху аҭакырақәа" #: dbwizres.src msgctxt "" @@ -2672,7 +2672,7 @@ "RID_DB_TABLE_WIZARD_START + 34\n" "string.text" msgid "What do you want to name your table?" -msgstr "" +msgstr "Ахьӡ" #: dbwizres.src msgctxt "" @@ -2696,7 +2696,7 @@ "RID_DB_TABLE_WIZARD_START + 37\n" "string.text" msgid "Modify the table design" -msgstr "" +msgstr "Иҧсахтәуп атаблица адизаин" #: dbwizres.src msgctxt "" @@ -2720,7 +2720,7 @@ "RID_DB_TABLE_WIZARD_START + 40\n" "string.text" msgid "The table you have created could not be opened." -msgstr "" +msgstr "Иаҧҵоу атаблица аартра ауам." #: dbwizres.src msgctxt "" @@ -2752,7 +2752,7 @@ "RID_DB_TABLE_WIZARD_START + 44\n" "string.text" msgid "MyTable" -msgstr "" +msgstr "СараСтаблица" #: dbwizres.src msgctxt "" @@ -2768,7 +2768,7 @@ "RID_DB_TABLE_WIZARD_START + 46\n" "string.text" msgid "Remove the selected Field" -msgstr "" +msgstr "Ианыхтәуп иалкаау аҭакыра" #: dbwizres.src msgctxt "" @@ -2794,7 +2794,7 @@ "RID_DB_TABLE_WIZARD_START + 49\n" "string.text" msgid "Catalog of the table" -msgstr "" +msgstr "Атаблицақәа ркаталог" #: dbwizres.src msgctxt "" @@ -2802,7 +2802,7 @@ "RID_DB_TABLE_WIZARD_START + 50\n" "string.text" msgid "Schema of the table" -msgstr "" +msgstr "Атаблицақәа рсхема" #: dbwizres.src msgctxt "" @@ -2826,7 +2826,7 @@ "RID_LETTERWIZARDDIALOG_START + 2\n" "string.text" msgid "Label9" -msgstr "" +msgstr "Аҭыҧрбага9" #: dbwizres.src msgctxt "" @@ -2866,7 +2866,7 @@ "RID_LETTERWIZARDDIALOG_START + 7\n" "string.text" msgid "~Logo" -msgstr "" +msgstr "~Алоготип" #: dbwizres.src msgctxt "" @@ -2898,7 +2898,7 @@ "RID_LETTERWIZARDDIALOG_START + 11\n" "string.text" msgid "~Logo" -msgstr "" +msgstr "~Алоготип" #: dbwizres.src msgctxt "" @@ -2922,7 +2922,7 @@ "RID_LETTERWIZARDDIALOG_START + 14\n" "string.text" msgid "S~ubject line" -msgstr "" +msgstr "Атема" #: dbwizres.src msgctxt "" @@ -3034,7 +3034,7 @@ "RID_LETTERWIZARDDIALOG_START + 28\n" "string.text" msgid "Page design" -msgstr "" +msgstr "Адаҟьа адизаин" #: dbwizres.src msgctxt "" @@ -3042,7 +3042,7 @@ "RID_LETTERWIZARDDIALOG_START + 29\n" "string.text" msgid "Page design" -msgstr "" +msgstr "Адаҟьа адизаин" #: dbwizres.src msgctxt "" @@ -3050,7 +3050,7 @@ "RID_LETTERWIZARDDIALOG_START + 30\n" "string.text" msgid "Page design" -msgstr "" +msgstr "Адаҟьа адизаин" #: dbwizres.src msgctxt "" @@ -3066,7 +3066,7 @@ "RID_LETTERWIZARDDIALOG_START + 32\n" "string.text" msgid "~Height:" -msgstr "" +msgstr "Аҳаракыра:" #: dbwizres.src msgctxt "" @@ -3074,7 +3074,7 @@ "RID_LETTERWIZARDDIALOG_START + 33\n" "string.text" msgid "~Width:" -msgstr "" +msgstr "Аҭбаара:" #: dbwizres.src msgctxt "" @@ -3098,7 +3098,7 @@ "RID_LETTERWIZARDDIALOG_START + 36\n" "string.text" msgid "Height:" -msgstr "" +msgstr "Аҳаракыра:" #: dbwizres.src msgctxt "" @@ -3106,7 +3106,7 @@ "RID_LETTERWIZARDDIALOG_START + 37\n" "string.text" msgid "Width:" -msgstr "" +msgstr "Аҭбаара:" #: dbwizres.src msgctxt "" @@ -3130,7 +3130,7 @@ "RID_LETTERWIZARDDIALOG_START + 40\n" "string.text" msgid "Height:" -msgstr "" +msgstr "Аҳаракыра:" #: dbwizres.src msgctxt "" @@ -3146,7 +3146,7 @@ "RID_LETTERWIZARDDIALOG_START + 43\n" "string.text" msgid "Name:" -msgstr "" +msgstr "Ахьӡ:" #: dbwizres.src msgctxt "" @@ -3154,7 +3154,7 @@ "RID_LETTERWIZARDDIALOG_START + 44\n" "string.text" msgid "Street:" -msgstr "" +msgstr "Амҩа ахьӡ:" #: dbwizres.src msgctxt "" @@ -3202,7 +3202,7 @@ "RID_LETTERWIZARDDIALOG_START + 50\n" "string.text" msgid "Template name:" -msgstr "" +msgstr "Ашаблон ахьӡ:" #: dbwizres.src msgctxt "" @@ -3210,7 +3210,7 @@ "RID_LETTERWIZARDDIALOG_START + 51\n" "string.text" msgid "Location and file name:" -msgstr "" +msgstr "Ашаблон аҭыҧ:" #: dbwizres.src msgctxt "" @@ -3274,7 +3274,7 @@ "RID_LETTERWIZARDDIALOG_START + 59\n" "string.text" msgid "Subject:" -msgstr "" +msgstr "Атема:" #: dbwizres.src msgctxt "" @@ -3290,7 +3290,7 @@ "RID_LETTERWIZARDDIALOG_START + 61\n" "string.text" msgid "Modern" -msgstr "" +msgstr "Иахьатәи" #: dbwizres.src msgctxt "" @@ -3298,7 +3298,7 @@ "RID_LETTERWIZARDDIALOG_START + 62\n" "string.text" msgid "Office" -msgstr "" +msgstr "Аофис" #: dbwizres.src msgctxt "" @@ -3314,7 +3314,7 @@ "RID_LETTERWIZARDDIALOG_START + 64\n" "string.text" msgid "Mail" -msgstr "" +msgstr "Mail" #: dbwizres.src msgctxt "" @@ -3322,7 +3322,7 @@ "RID_LETTERWIZARDDIALOG_START + 65\n" "string.text" msgid "Marine" -msgstr "" +msgstr "Амшынтәи" #: dbwizres.src msgctxt "" @@ -3402,7 +3402,7 @@ "RID_LETTERWIZARDROADMAP_START + 3\n" "string.text" msgid "Printed items" -msgstr "" +msgstr "Акьыҧхьраз аелементқәа" #: dbwizres.src msgctxt "" @@ -3434,7 +3434,7 @@ "RID_FAXWIZARDDIALOG_START + 1\n" "string.text" msgid "Fax Wizard" -msgstr "" +msgstr "Афаксқәа разҟаза" #: dbwizres.src msgctxt "" @@ -3442,7 +3442,7 @@ "RID_FAXWIZARDDIALOG_START + 2\n" "string.text" msgid "Label9" -msgstr "" +msgstr "Аҭыҧрбага9" #: dbwizres.src msgctxt "" @@ -3466,7 +3466,7 @@ "RID_FAXWIZARDDIALOG_START + 5\n" "string.text" msgid "~Logo" -msgstr "" +msgstr "~Алоготип" #: dbwizres.src msgctxt "" @@ -3474,7 +3474,7 @@ "RID_FAXWIZARDDIALOG_START + 6\n" "string.text" msgid "S~ubject line" -msgstr "" +msgstr "Атема" #: dbwizres.src msgctxt "" @@ -3546,7 +3546,7 @@ "RID_FAXWIZARDDIALOG_START + 15\n" "string.text" msgid "Page design" -msgstr "" +msgstr "Адаҟьа адизаин" #: dbwizres.src msgctxt "" @@ -3554,7 +3554,7 @@ "RID_FAXWIZARDDIALOG_START + 16\n" "string.text" msgid "Page design" -msgstr "" +msgstr "Адаҟьа адизаин" #: dbwizres.src msgctxt "" @@ -3578,7 +3578,7 @@ "RID_FAXWIZARDDIALOG_START + 19\n" "string.text" msgid "Name:" -msgstr "" +msgstr "Ахьӡ:" #: dbwizres.src msgctxt "" @@ -3586,7 +3586,7 @@ "RID_FAXWIZARDDIALOG_START + 20\n" "string.text" msgid "Street:" -msgstr "" +msgstr "Амҩа ахьӡ:" #: dbwizres.src msgctxt "" @@ -3626,7 +3626,7 @@ "RID_FAXWIZARDDIALOG_START + 25\n" "string.text" msgid "Template Name:" -msgstr "" +msgstr "Ашаблон ахьӡ:" #: dbwizres.src msgctxt "" @@ -3634,7 +3634,7 @@ "RID_FAXWIZARDDIALOG_START + 26\n" "string.text" msgid "Location and file name:" -msgstr "" +msgstr "Ашаблон аҭыҧ:" #: dbwizres.src msgctxt "" @@ -3682,7 +3682,7 @@ "RID_FAXWIZARDDIALOG_START + 32\n" "string.text" msgid "Choose a name and save the template" -msgstr "" +msgstr "Ашаблон аҧҵара ахыркәшара" #: dbwizres.src msgctxt "" @@ -3698,7 +3698,7 @@ "RID_FAXWIZARDDIALOG_START + 34\n" "string.text" msgid "~Include page number" -msgstr "" +msgstr "Иацҵатәуп адаҟьа аномер" #: dbwizres.src msgctxt "" @@ -3706,7 +3706,7 @@ "RID_FAXWIZARDDIALOG_START + 35\n" "string.text" msgid "~Date" -msgstr "" +msgstr "Арыцхә" #: dbwizres.src msgctxt "" @@ -3722,7 +3722,7 @@ "RID_FAXWIZARDDIALOG_START + 37\n" "string.text" msgid "Fax Number:" -msgstr "" +msgstr "Афакс аномер:" #: dbwizres.src msgctxt "" @@ -3770,7 +3770,7 @@ "RID_FAXWIZARDDIALOG_START + 43\n" "string.text" msgid "Fax:" -msgstr "" +msgstr "Афакс:" #: dbwizres.src msgctxt "" @@ -3778,7 +3778,7 @@ "RID_FAXWIZARDDIALOG_START + 44\n" "string.text" msgid "Tel:" -msgstr "" +msgstr "Аҭел:" #: dbwizres.src msgctxt "" @@ -3786,7 +3786,7 @@ "RID_FAXWIZARDDIALOG_START + 45\n" "string.text" msgid "E-mail:" -msgstr "" +msgstr "E-mail:" #: dbwizres.src msgctxt "" @@ -3802,7 +3802,7 @@ "RID_FAXWIZARDDIALOG_START + 47\n" "string.text" msgid "page" -msgstr "" +msgstr "адаҟьа" #: dbwizres.src msgctxt "" @@ -3834,7 +3834,7 @@ "RID_FAXWIZARDDIALOG_START + 51\n" "string.text" msgid "Marine" -msgstr "" +msgstr "Амшынтәи" #: dbwizres.src msgctxt "" @@ -3874,7 +3874,7 @@ "RID_FAXWIZARDDIALOG_START + 56\n" "string.text" msgid "Fax" -msgstr "" +msgstr "Афакс" #: dbwizres.src msgctxt "" @@ -3882,7 +3882,7 @@ "RID_FAXWIZARDCOMMUNICATION_START + 1\n" "string.text" msgid "Important Information!" -msgstr "" +msgstr "Акрызҵазкуа аинформациа!" #: dbwizres.src msgctxt "" @@ -3898,7 +3898,7 @@ "RID_FAXWIZARDCOMMUNICATION_START + 3\n" "string.text" msgid "News!" -msgstr "" +msgstr "Иҿыцу!" #: dbwizres.src msgctxt "" @@ -3970,7 +3970,7 @@ "RID_FAXWIZARDROADMAP_START + 1\n" "string.text" msgid "Page design" -msgstr "" +msgstr "Адаҟьа адизаин" #: dbwizres.src msgctxt "" @@ -3986,7 +3986,7 @@ "RID_FAXWIZARDROADMAP_START + 3\n" "string.text" msgid "Sender and Recipient" -msgstr "" +msgstr "Адәықәҵаҩи изауеи" #: dbwizres.src msgctxt "" @@ -4026,7 +4026,7 @@ "RID_AGENDAWIZARDDIALOG_START +3\n" "string.text" msgid "Template name:" -msgstr "" +msgstr "Ашаблон ахьӡ:" #: dbwizres.src msgctxt "" @@ -4034,7 +4034,7 @@ "RID_AGENDAWIZARDDIALOG_START + 4\n" "string.text" msgid "Location and file name:" -msgstr "" +msgstr "Ашаблон аҭыҧ:" #: dbwizres.src msgctxt "" @@ -4090,7 +4090,7 @@ "RID_AGENDAWIZARDDIALOG_START +11\n" "string.text" msgid "Choose a name and save the template" -msgstr "" +msgstr "Ашаблон аҧҵара ахыркәшара" #: dbwizres.src msgctxt "" @@ -4114,7 +4114,7 @@ "RID_AGENDAWIZARDDIALOG_START +14\n" "string.text" msgid "Time:" -msgstr "" +msgstr "Аамҭа:" #: dbwizres.src msgctxt "" @@ -4122,7 +4122,7 @@ "RID_AGENDAWIZARDDIALOG_START +15\n" "string.text" msgid "Name:" -msgstr "" +msgstr "Ахьӡ:" #: dbwizres.src msgctxt "" @@ -4130,7 +4130,7 @@ "RID_AGENDAWIZARDDIALOG_START + 16\n" "string.text" msgid "Location:" -msgstr "" +msgstr "Аҭыҧ:" #: dbwizres.src msgctxt "" @@ -4219,7 +4219,7 @@ "RID_AGENDAWIZARDDIALOG_START +27\n" "string.text" msgid "Moderator" -msgstr "" +msgstr "Амодератор" #: dbwizres.src msgctxt "" @@ -4227,7 +4227,7 @@ "RID_AGENDAWIZARDDIALOG_START +28\n" "string.text" msgid "Attendees" -msgstr "" +msgstr "Алахәылаҩцәа" #: dbwizres.src msgctxt "" @@ -4235,7 +4235,7 @@ "RID_AGENDAWIZARDDIALOG_START +29\n" "string.text" msgid "Observers" -msgstr "" +msgstr "Анаҧшцәа" #: dbwizres.src msgctxt "" @@ -4283,7 +4283,7 @@ "RID_AGENDAWIZARDDIALOG_START +35\n" "string.text" msgid "Notes" -msgstr "" +msgstr "Азгәаҭақәа" #: dbwizres.src msgctxt "" @@ -4299,7 +4299,7 @@ "RID_AGENDAWIZARDDIALOG_START +38\n" "string.text" msgid "Date:" -msgstr "" +msgstr "Арыцхә:" #: dbwizres.src msgctxt "" @@ -4315,7 +4315,7 @@ "RID_AGENDAWIZARDDIALOG_START +40\n" "string.text" msgid "Page design:" -msgstr "" +msgstr "Адаҟьа адизаин:" #: dbwizres.src msgctxt "" @@ -4347,7 +4347,7 @@ "RID_AGENDAWIZARDDIALOG_START +44\n" "string.text" msgid "Name" -msgstr "" +msgstr "Ахьӡ" #: dbwizres.src msgctxt "" @@ -4355,7 +4355,7 @@ "RID_AGENDAWIZARDDIALOG_START +45\n" "string.text" msgid "Date" -msgstr "" +msgstr "Арыцхә" #: dbwizres.src msgctxt "" @@ -4363,7 +4363,7 @@ "RID_AGENDAWIZARDDIALOG_START +46\n" "string.text" msgid "Time" -msgstr "" +msgstr "Аамҭа" #: dbwizres.src msgctxt "" @@ -4371,7 +4371,7 @@ "RID_AGENDAWIZARDDIALOG_START + 47\n" "string.text" msgid "Location" -msgstr "" +msgstr "Аҭыҧ" #: dbwizres.src msgctxt "" @@ -4387,7 +4387,7 @@ "RID_AGENDAWIZARDDIALOG_START +50\n" "string.text" msgid "Page design" -msgstr "" +msgstr "Адаҟьа адизаин" #: dbwizres.src msgctxt "" @@ -4395,7 +4395,7 @@ "RID_AGENDAWIZARDDIALOG_START +51\n" "string.text" msgid "General information" -msgstr "" +msgstr "Азеиҧштә информациа" #: dbwizres.src msgctxt "" @@ -4467,7 +4467,7 @@ "RID_AGENDAWIZARDDIALOG_START +60\n" "string.text" msgid "Notes" -msgstr "" +msgstr "Азгәаҭақәа" #: dbwizres.src msgctxt "" @@ -4475,7 +4475,7 @@ "RID_AGENDAWIZARDDIALOG_START +61\n" "string.text" msgid "Meeting called by" -msgstr "" +msgstr "Аиҿкааҩ" #: dbwizres.src msgctxt "" @@ -4491,7 +4491,7 @@ "RID_AGENDAWIZARDDIALOG_START +63\n" "string.text" msgid "Attendees" -msgstr "" +msgstr "Алахәылаҩцәа" #: dbwizres.src msgctxt "" @@ -4499,7 +4499,7 @@ "RID_AGENDAWIZARDDIALOG_START +64\n" "string.text" msgid "Minute keeper" -msgstr "" +msgstr "Амаӡаныҟәгаҩ" #: dbwizres.src msgctxt "" @@ -4507,7 +4507,7 @@ "RID_AGENDAWIZARDDIALOG_START +65\n" "string.text" msgid "Moderator" -msgstr "" +msgstr "Амодератор" #: dbwizres.src msgctxt "" @@ -4515,7 +4515,7 @@ "RID_AGENDAWIZARDDIALOG_START +66\n" "string.text" msgid "Observers" -msgstr "" +msgstr "Анаҧшцәа" #: dbwizres.src msgctxt "" @@ -4523,7 +4523,7 @@ "RID_AGENDAWIZARDDIALOG_START +67\n" "string.text" msgid "Facility personnel" -msgstr "" +msgstr "Аперсонал" #: dbwizres.src msgctxt "" @@ -4531,7 +4531,7 @@ "RID_AGENDAWIZARDDIALOG_START +68\n" "string.text" msgid "Insert" -msgstr "" +msgstr "Ибжьаргылатәуп" #: dbwizres.src msgctxt "" @@ -4539,7 +4539,7 @@ "RID_AGENDAWIZARDDIALOG_START +69\n" "string.text" msgid "Remove" -msgstr "" +msgstr "Ианыхтәуп" #: dbwizres.src msgctxt "" @@ -4547,7 +4547,7 @@ "RID_AGENDAWIZARDDIALOG_START +70\n" "string.text" msgid "Move up" -msgstr "" +msgstr "Аҩада" #: dbwizres.src msgctxt "" @@ -4555,7 +4555,7 @@ "RID_AGENDAWIZARDDIALOG_START +71\n" "string.text" msgid "Move down" -msgstr "" +msgstr "Алада" #: dbwizres.src msgctxt "" @@ -4563,7 +4563,7 @@ "RID_AGENDAWIZARDDIALOG_START +72\n" "string.text" msgid "Date:" -msgstr "" +msgstr "Арыцхә:" #: dbwizres.src msgctxt "" @@ -4571,7 +4571,7 @@ "RID_AGENDAWIZARDDIALOG_START +73\n" "string.text" msgid "Time:" -msgstr "" +msgstr "Аамҭа:" #: dbwizres.src msgctxt "" @@ -4579,7 +4579,7 @@ "RID_AGENDAWIZARDDIALOG_START +74\n" "string.text" msgid "Location:" -msgstr "" +msgstr "Аҭыҧ:" #: dbwizres.src msgctxt "" @@ -4587,7 +4587,7 @@ "RID_AGENDAWIZARDDIALOG_START +75\n" "string.text" msgid "Topics" -msgstr "" +msgstr "Атемақәа" #: dbwizres.src msgctxt "" @@ -4595,7 +4595,7 @@ "RID_AGENDAWIZARDDIALOG_START +76\n" "string.text" msgid "Num." -msgstr "" +msgstr "Ахыҧ." #: dbwizres.src msgctxt "" @@ -4603,7 +4603,7 @@ "RID_AGENDAWIZARDDIALOG_START +77\n" "string.text" msgid "Topic" -msgstr "" +msgstr "Атема" #: dbwizres.src msgctxt "" @@ -4611,7 +4611,7 @@ "RID_AGENDAWIZARDDIALOG_START +78\n" "string.text" msgid "Responsible" -msgstr "" +msgstr "Аҭакзыҧхықәу" #: dbwizres.src msgctxt "" @@ -4619,7 +4619,7 @@ "RID_AGENDAWIZARDDIALOG_START +79\n" "string.text" msgid "Time" -msgstr "" +msgstr "Аамҭа" #: dbwizres.src msgctxt "" @@ -4715,7 +4715,7 @@ "RID_AGENDAWIZARDDIALOG_START +91\n" "string.text" msgid "Green" -msgstr "" +msgstr "Аиаҵәа" #: dbwizres.src msgctxt "" @@ -4731,7 +4731,7 @@ "RID_AGENDAWIZARDDIALOG_START +93\n" "string.text" msgid "Modern" -msgstr "" +msgstr "Иахьатәи" #: dbwizres.src msgctxt "" @@ -4747,7 +4747,7 @@ "RID_AGENDAWIZARDDIALOG_START +95\n" "string.text" msgid "Red" -msgstr "" +msgstr "Аҟаҧшь" #: dbwizres.src msgctxt "" @@ -4755,4 +4755,4 @@ "RID_AGENDAWIZARDDIALOG_START +96\n" "string.text" msgid "Simple" -msgstr "" +msgstr "Амариа" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/wizards/source/importwizard.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/wizards/source/importwizard.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/wizards/source/importwizard.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/wizards/source/importwizard.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2017-07-19 08:47+0000\n" +"PO-Revision-Date: 2017-11-29 08:27+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500454072.000000\n" +"X-POOTLE-MTIME: 1511944036.000000\n" #: importwi.src msgctxt "" @@ -29,7 +29,7 @@ "sCancelButton\n" "string.text" msgid "~Cancel" -msgstr "" +msgstr "~Иаҟәыхтәуп" #: importwi.src msgctxt "" @@ -85,7 +85,7 @@ "sMSTemplateCheckbox_1_\n" "string.text" msgid "Word templates" -msgstr "" +msgstr "Word ашаблонқәа" #: importwi.src msgctxt "" @@ -93,7 +93,7 @@ "sMSTemplateCheckbox_2_\n" "string.text" msgid "Excel templates" -msgstr "" +msgstr "Excel ашаблонқәа" #: importwi.src msgctxt "" @@ -101,7 +101,7 @@ "sMSTemplateCheckbox_3_\n" "string.text" msgid "PowerPoint templates" -msgstr "" +msgstr "PowerPoint ашаблонқәа" #: importwi.src msgctxt "" @@ -165,7 +165,7 @@ "sTextExportLabel\n" "string.text" msgid "Save to:" -msgstr "Иеиқәырхатәуп абра:" +msgstr "Еиқәырхатәуп абра:" #: importwi.src msgctxt "" @@ -205,7 +205,7 @@ "sProgressMoreTemplates\n" "string.text" msgid "Templates" -msgstr "" +msgstr "Ашаблонқәа" #: importwi.src msgctxt "" @@ -277,7 +277,7 @@ "scouldNotopenDocument\n" "string.text" msgid "Document '<1>' could not be opened." -msgstr "" +msgstr "Адокумент «<1>» аартра ауам." #: importwi.src msgctxt "" @@ -293,7 +293,7 @@ "sConvertError2\n" "string.text" msgid "Cancel Wizard" -msgstr "" +msgstr "Иаҟәыхтәуп Азҟаза" #: importwi.src msgctxt "" @@ -317,7 +317,7 @@ "sPathDialogMessage\n" "string.text" msgid "Select a directory" -msgstr "" +msgstr "Иалышәх акаталог" #: importwi.src msgctxt "" @@ -397,7 +397,7 @@ "sCreateLogfile\n" "string.text" msgid "Create log file" -msgstr "" +msgstr "Иаҧҵатәуп ажурнал" #: importwi.src msgctxt "" @@ -421,7 +421,7 @@ "sshowLogfile\n" "string.text" msgid "Show log file" -msgstr "" +msgstr "Иаарҧштәуп ажурнал" #: importwi.src msgctxt "" @@ -437,7 +437,7 @@ "sSumSaveDokumente\n" "string.text" msgid "These will be exported to the following directory:" -msgstr "" +msgstr "Анаҩстәи акаталог ахь аекспорт:" #: importwi.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/wizards/source/template.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/wizards/source/template.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/wizards/source/template.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/wizards/source/template.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-29 18:39+0200\n" -"PO-Revision-Date: 2014-11-02 19:12+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-27 17:43+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1414955531.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511804605.000000\n" #: template.src msgctxt "" @@ -37,7 +37,7 @@ "STYLES + 2\n" "string.text" msgid "~Cancel" -msgstr "" +msgstr "~Иаҟәыхтәуп" #: template.src msgctxt "" @@ -45,7 +45,7 @@ "STYLES + 3\n" "string.text" msgid "~OK" -msgstr "" +msgstr "~OK" #: template.src msgctxt "" @@ -61,7 +61,7 @@ "STYLENAME + 1\n" "string.text" msgid "Autumn Leaves" -msgstr "" +msgstr "Ҭагалантәи абӷьқәа" #: template.src msgctxt "" @@ -77,7 +77,7 @@ "STYLENAME + 3\n" "string.text" msgid "Black and White" -msgstr "" +msgstr "Аиқәаҵәа-ашкәакәа" #: template.src msgctxt "" @@ -125,7 +125,7 @@ "STYLENAME + 9\n" "string.text" msgid "Marine" -msgstr "" +msgstr "Амшынтәи" #: template.src msgctxt "" @@ -141,7 +141,7 @@ "STYLENAME + 11\n" "string.text" msgid "Nature" -msgstr "" +msgstr "Аҧсабара" #: template.src msgctxt "" @@ -149,7 +149,7 @@ "STYLENAME + 12\n" "string.text" msgid "Neon" -msgstr "" +msgstr "Неон" #: template.src msgctxt "" @@ -157,7 +157,7 @@ "STYLENAME + 13\n" "string.text" msgid "Night" -msgstr "" +msgstr "Аҵх" #: template.src msgctxt "" @@ -213,7 +213,7 @@ "AgendaDlgFrame\n" "string.text" msgid "Minutes Type" -msgstr "" +msgstr "Апротокол атип" #: template.src msgctxt "" @@ -253,7 +253,7 @@ "CorrespondenceMsgError\n" "string.text" msgid "An error has occurred." -msgstr "" +msgstr "Иҟалеит агха." #: template.src msgctxt "" @@ -261,7 +261,7 @@ "CorrespondenceDialog\n" "string.text" msgid "Addressee" -msgstr "" +msgstr "Изауа" #: template.src msgctxt "" @@ -285,7 +285,7 @@ "CorrespondenceDialog+3\n" "string.text" msgid "Use of This Template" -msgstr "" +msgstr "Ари ашаблон ахархәара" #: template.src msgctxt "" @@ -301,7 +301,7 @@ "CorrespondenceFields+1\n" "string.text" msgid "Company" -msgstr "" +msgstr "Аиҿкаара" #: template.src msgctxt "" @@ -309,7 +309,7 @@ "CorrespondenceFields+2\n" "string.text" msgid "Department" -msgstr "" +msgstr "Аҟәша" #: template.src msgctxt "" @@ -317,7 +317,7 @@ "CorrespondenceFields+3\n" "string.text" msgid "First Name" -msgstr "" +msgstr "Ахьӡ" #: template.src msgctxt "" @@ -325,7 +325,7 @@ "CorrespondenceFields+4\n" "string.text" msgid "Last Name" -msgstr "" +msgstr "Ажәла" #: template.src msgctxt "" @@ -333,7 +333,7 @@ "CorrespondenceFields+5\n" "string.text" msgid "Street" -msgstr "" +msgstr "Амҩа ахьӡ" #: template.src msgctxt "" @@ -341,7 +341,7 @@ "CorrespondenceFields+6\n" "string.text" msgid "Country" -msgstr "" +msgstr "Атәыла" #: template.src msgctxt "" @@ -357,7 +357,7 @@ "CorrespondenceFields+8\n" "string.text" msgid "City" -msgstr "" +msgstr "Ақалақь" #: template.src msgctxt "" @@ -373,7 +373,7 @@ "CorrespondenceFields+10\n" "string.text" msgid "Position" -msgstr "" +msgstr "Аҭыҧ" #: template.src msgctxt "" @@ -389,7 +389,7 @@ "CorrespondenceFields+12\n" "string.text" msgid "Initials" -msgstr "" +msgstr "Аинициалқәа" #: template.src msgctxt "" @@ -405,7 +405,7 @@ "CorrespondenceFields+14\n" "string.text" msgid "Home Phone" -msgstr "" +msgstr "Аҩн. аҭел" #: template.src msgctxt "" @@ -413,7 +413,7 @@ "CorrespondenceFields+15\n" "string.text" msgid "Work Phone" -msgstr "" +msgstr "Аус. аҭел" #: template.src msgctxt "" @@ -421,7 +421,7 @@ "CorrespondenceFields+16\n" "string.text" msgid "Fax" -msgstr "" +msgstr "Афакс" #: template.src msgctxt "" @@ -429,7 +429,7 @@ "CorrespondenceFields+17\n" "string.text" msgid "E-Mail" -msgstr "" +msgstr "E-Mail" #: template.src msgctxt "" @@ -437,7 +437,7 @@ "CorrespondenceFields+18\n" "string.text" msgid "URL" -msgstr "" +msgstr "URL" #: template.src msgctxt "" @@ -445,7 +445,7 @@ "CorrespondenceFields+19\n" "string.text" msgid "Notes" -msgstr "" +msgstr "Азгәаҭақәа" #: template.src msgctxt "" @@ -485,7 +485,7 @@ "CorrespondenceFields+24\n" "string.text" msgid "ID" -msgstr "" +msgstr "Акод" #: template.src msgctxt "" @@ -509,7 +509,7 @@ "CorrespondenceFields+27\n" "string.text" msgid "Pager" -msgstr "" +msgstr "Апеиджер" #: template.src msgctxt "" @@ -517,7 +517,7 @@ "CorrespondenceFields+28\n" "string.text" msgid "Mobile Phone" -msgstr "" +msgstr "Амобилтә ҭел" #: template.src msgctxt "" @@ -533,7 +533,7 @@ "CorrespondenceFields+30\n" "string.text" msgid "Calendar URL" -msgstr "" +msgstr "Амзар а-URL" #: template.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/xmlsecurity/source/dialogs.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/xmlsecurity/source/dialogs.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/xmlsecurity/source/dialogs.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/xmlsecurity/source/dialogs.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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: 2016-05-25 11:53+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-18 15:04+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1464177187.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511017494.000000\n" #: certificateviewer.src msgctxt "" @@ -21,7 +21,7 @@ "STR_CERTIFICATE_NOT_VALIDATED\n" "string.text" msgid "The certificate could not be validated." -msgstr "" +msgstr "Асертификат агәаҭара ауам." #: certificateviewer.src msgctxt "" @@ -29,7 +29,7 @@ "STR_HEADERBAR\n" "string.text" msgid "Field\tValue" -msgstr "" +msgstr "Аҭакыра\tАҵакы" #: certificateviewer.src msgctxt "" @@ -37,7 +37,7 @@ "STR_VERSION\n" "string.text" msgid "Version" -msgstr "" +msgstr "Аверсиа" #: certificateviewer.src msgctxt "" @@ -45,7 +45,7 @@ "STR_SERIALNUM\n" "string.text" msgid "Serial Number" -msgstr "" +msgstr "Асериатә номер" #: certificateviewer.src msgctxt "" @@ -53,7 +53,7 @@ "STR_ISSUER\n" "string.text" msgid "Issuer" -msgstr "" +msgstr "Аҭыжьҩы" #: certificateviewer.src msgctxt "" @@ -61,7 +61,7 @@ "STR_VALIDFROM\n" "string.text" msgid "Valid From" -msgstr "" +msgstr "Иҵабыргуп инаркны" #: certificateviewer.src msgctxt "" @@ -69,7 +69,7 @@ "STR_VALIDTO\n" "string.text" msgid "Valid to" -msgstr "" +msgstr "Иҵабыргуп аҟынӡа" #: certificateviewer.src msgctxt "" @@ -77,7 +77,7 @@ "STR_SUBJECT\n" "string.text" msgid "Subject" -msgstr "" +msgstr "Асубиект" #: certificateviewer.src msgctxt "" @@ -85,7 +85,7 @@ "STR_SUBJECT_PUBKEY_ALGO\n" "string.text" msgid "Subject Algorithm" -msgstr "" +msgstr "Алгоритм" #: certificateviewer.src msgctxt "" @@ -93,7 +93,7 @@ "STR_SUBJECT_PUBKEY_VAL\n" "string.text" msgid "Public Key" -msgstr "" +msgstr "Иаарту ацаҧха" #: certificateviewer.src msgctxt "" @@ -101,7 +101,7 @@ "STR_SIGNATURE_ALGO\n" "string.text" msgid "Signature Algorithm" -msgstr "" +msgstr "Асертификат анапаҵаҩра алгоритм" #: certificateviewer.src msgctxt "" @@ -109,7 +109,7 @@ "STR_USE\n" "string.text" msgid "Certificate Use" -msgstr "" +msgstr "Асертификат ахархәара" #: certificateviewer.src msgctxt "" @@ -117,7 +117,7 @@ "STR_THUMBPRINT_SHA1\n" "string.text" msgid "Thumbprint SHA1" -msgstr "" +msgstr "Аҭыҧынҵа SHA1" #: certificateviewer.src msgctxt "" @@ -125,7 +125,7 @@ "STR_THUMBPRINT_MD5\n" "string.text" msgid "Thumbprint MD5" -msgstr "" +msgstr "Аҭыҧынҵа MD5" #: digitalsignaturesdialog.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ab/xmlsecurity/uiconfig/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/ab/xmlsecurity/uiconfig/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ab/xmlsecurity/uiconfig/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ab/xmlsecurity/uiconfig/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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: 2016-12-02 10:55+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-27 17:44+0000\n" +"Last-Translator: Андрей Абухба \n" "Language-Team: LANGUAGE \n" "Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1480676122.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511804653.000000\n" #: certgeneral.ui msgctxt "" @@ -22,7 +22,7 @@ "label\n" "string.text" msgid "Certificate Information" -msgstr "" +msgstr "Асертификат иазку аинформациа" #: certgeneral.ui msgctxt "" @@ -31,7 +31,7 @@ "label\n" "string.text" msgid "This certificate is validated." -msgstr "" +msgstr "Асертификат ҵабыргуп." #: certgeneral.ui msgctxt "" @@ -40,7 +40,7 @@ "label\n" "string.text" msgid "Issued to: " -msgstr "" +msgstr "Изырҭаз:" #: certgeneral.ui msgctxt "" @@ -49,7 +49,7 @@ "label\n" "string.text" msgid "Issued by: " -msgstr "" +msgstr "Ирызҭаз:" #: certgeneral.ui msgctxt "" @@ -58,7 +58,7 @@ "label\n" "string.text" msgid "Valid from:" -msgstr "" +msgstr "Иҵабыргуп инаркны:" #: certgeneral.ui msgctxt "" @@ -67,7 +67,7 @@ "label\n" "string.text" msgid "You have a private key that corresponds to this certificate." -msgstr "" +msgstr "Шәара ишәымоуп шәхатә цаҧха ари асертификатаз." #: certgeneral.ui msgctxt "" @@ -76,7 +76,7 @@ "label\n" "string.text" msgid "Valid to:" -msgstr "" +msgstr "Иҵабыргуп аҟынӡа:" #: certpage.ui msgctxt "" @@ -85,7 +85,7 @@ "label\n" "string.text" msgid "Certification path" -msgstr "" +msgstr "Асертификациа амҩа" #: certpage.ui msgctxt "" @@ -94,7 +94,7 @@ "label\n" "string.text" msgid "View Certificate..." -msgstr "" +msgstr "Асертифкат..." #: certpage.ui msgctxt "" @@ -103,7 +103,7 @@ "label\n" "string.text" msgid "Certification status" -msgstr "" +msgstr "Асертификат аҭагылазаашьа" #: certpage.ui msgctxt "" @@ -112,7 +112,7 @@ "label\n" "string.text" msgid "The certificate is OK." -msgstr "" +msgstr "Асертификат шьақәырӷәӷәоуп." #: certpage.ui msgctxt "" @@ -121,7 +121,7 @@ "label\n" "string.text" msgid "The certificate could not be validated." -msgstr "" +msgstr "Асертификат агәаҭара ауам." #: digitalsignaturesdialog.ui msgctxt "" @@ -130,7 +130,7 @@ "title\n" "string.text" msgid "Digital Signatures" -msgstr "" +msgstr "Ацифратә напаҵаҩрақәа" #: digitalsignaturesdialog.ui msgctxt "" @@ -139,7 +139,7 @@ "label\n" "string.text" msgid "The following have signed the document content: " -msgstr "" +msgstr "Адокумент рнапы аҵарҩит ҵаҟа зыӡбахә ҳәоу:" #: digitalsignaturesdialog.ui msgctxt "" @@ -148,7 +148,7 @@ "label\n" "string.text" msgid "View Certificate..." -msgstr "" +msgstr "Асертифкат..." #: digitalsignaturesdialog.ui msgctxt "" @@ -157,7 +157,7 @@ "label\n" "string.text" msgid "Sign Document..." -msgstr "" +msgstr "Анапаҵаҩтәуп адокумент..." #: digitalsignaturesdialog.ui msgctxt "" @@ -166,7 +166,7 @@ "label\n" "string.text" msgid "Remove" -msgstr "" +msgstr "Ианыхтәуп" #: digitalsignaturesdialog.ui msgctxt "" @@ -184,7 +184,7 @@ "label\n" "string.text" msgid "Signed by " -msgstr "" +msgstr "Анапаҵаҩуп " #: digitalsignaturesdialog.ui msgctxt "" @@ -202,7 +202,7 @@ "label\n" "string.text" msgid "Date" -msgstr "" +msgstr "Арыцхә" #: digitalsignaturesdialog.ui msgctxt "" @@ -211,7 +211,7 @@ "label\n" "string.text" msgid "Description" -msgstr "" +msgstr "Ахҳәаа" #: digitalsignaturesdialog.ui msgctxt "" @@ -220,7 +220,7 @@ "label\n" "string.text" msgid "Signature type" -msgstr "" +msgstr "Анапаҵаҩра атип" #: digitalsignaturesdialog.ui msgctxt "" @@ -229,7 +229,7 @@ "label\n" "string.text" msgid "The following have signed the document macro:" -msgstr "" +msgstr "Адокумент амакрос рнапы аҵарҩит ҵаҟа зыӡбахә ҳәоу:" #: digitalsignaturesdialog.ui msgctxt "" @@ -238,7 +238,7 @@ "label\n" "string.text" msgid "The following have signed this package:" -msgstr "" +msgstr "Ари апакет рнапы аҵарҩит ҵаҟа зыӡбахә ҳәоу:" #: digitalsignaturesdialog.ui msgctxt "" @@ -274,7 +274,7 @@ "label\n" "string.text" msgid "Certificate could not be validated" -msgstr "" +msgstr "Асертификат агәаҭара ауам" #: digitalsignaturesdialog.ui msgctxt "" @@ -292,7 +292,7 @@ "title\n" "string.text" msgid "Macro Security" -msgstr "" +msgstr "Амакросқәа ршәарҭадара" #: macrosecuritydialog.ui msgctxt "" @@ -301,7 +301,7 @@ "label\n" "string.text" msgid "Security Level" -msgstr "" +msgstr "Ашәарҭадара аҩаӡара" #: macrosecuritydialog.ui msgctxt "" @@ -310,7 +310,7 @@ "label\n" "string.text" msgid "Trusted Sources" -msgstr "" +msgstr "Игәрагоу ахыҵхырҭақәа" #: securitylevelpage.ui msgctxt "" @@ -366,7 +366,7 @@ "label\n" "string.text" msgid "_View..." -msgstr "" +msgstr "_Ахәаҧшра..." #: securitytrustpage.ui msgctxt "" @@ -375,7 +375,7 @@ "label\n" "string.text" msgid "Issued to" -msgstr "" +msgstr "Изырҭаз" #: securitytrustpage.ui msgctxt "" @@ -384,7 +384,7 @@ "label\n" "string.text" msgid "Issued by" -msgstr "" +msgstr "Ирызҭаз" #: securitytrustpage.ui msgctxt "" @@ -393,7 +393,7 @@ "label\n" "string.text" msgid "Expiration date" -msgstr "" +msgstr "Анҵәамҭа арыцхә" #: securitytrustpage.ui msgctxt "" @@ -402,7 +402,7 @@ "label\n" "string.text" msgid "Trusted Certificates" -msgstr "" +msgstr "Игәрагоу асертификатқәа" #: securitytrustpage.ui msgctxt "" @@ -420,7 +420,7 @@ "label\n" "string.text" msgid "A_dd..." -msgstr "" +msgstr "Иацҵатәуп..." #: securitytrustpage.ui msgctxt "" @@ -429,7 +429,7 @@ "label\n" "string.text" msgid "Trusted File Locations" -msgstr "" +msgstr "Игәрагоу афаилқәа рҭыҧ" #: selectcertificatedialog.ui msgctxt "" @@ -438,7 +438,7 @@ "title\n" "string.text" msgid "Select Certificate" -msgstr "" +msgstr "Иалышәх асертификат" #: selectcertificatedialog.ui msgctxt "" @@ -447,7 +447,7 @@ "label\n" "string.text" msgid "Issued to " -msgstr "" +msgstr "Изырҭаз " #: selectcertificatedialog.ui msgctxt "" @@ -456,7 +456,7 @@ "label\n" "string.text" msgid "Issued by" -msgstr "" +msgstr "Ирызҭаз" #: selectcertificatedialog.ui msgctxt "" @@ -465,7 +465,7 @@ "label\n" "string.text" msgid "Certificate usage" -msgstr "" +msgstr "Асертификат ахархәара" #: selectcertificatedialog.ui msgctxt "" @@ -474,7 +474,7 @@ "label\n" "string.text" msgid "Expiration date" -msgstr "" +msgstr "Анҵәамҭа арыцхә" #: selectcertificatedialog.ui msgctxt "" @@ -483,7 +483,7 @@ "label\n" "string.text" msgid "Type" -msgstr "" +msgstr "Атип" #: selectcertificatedialog.ui msgctxt "" @@ -492,7 +492,7 @@ "label\n" "string.text" msgid "Digital signature" -msgstr "" +msgstr "Ацифратә напаҵаҩра" #: selectcertificatedialog.ui msgctxt "" @@ -510,7 +510,7 @@ "label\n" "string.text" msgid "Key encipherment" -msgstr "" +msgstr "Ацаҧха ашифрркра" #: selectcertificatedialog.ui msgctxt "" @@ -519,7 +519,7 @@ "label\n" "string.text" msgid "Data encipherment" -msgstr "" +msgstr "Адырқәа ршифрркра" #: selectcertificatedialog.ui msgctxt "" @@ -528,7 +528,7 @@ "label\n" "string.text" msgid "Key Agreement" -msgstr "" +msgstr "Ацапхазы аиқәшаҳаҭра" #: selectcertificatedialog.ui msgctxt "" @@ -537,7 +537,7 @@ "label\n" "string.text" msgid "Certificate signature verification" -msgstr "" +msgstr "Асертификат анапаҵаҩра агәаҭара" #: selectcertificatedialog.ui msgctxt "" @@ -546,7 +546,7 @@ "label\n" "string.text" msgid "CRL signature verification" -msgstr "" +msgstr "CRL анапаҵаҩра агәаҭара" #: selectcertificatedialog.ui msgctxt "" @@ -555,7 +555,7 @@ "label\n" "string.text" msgid "Only for encipherment" -msgstr "" +msgstr "Ашифрркра мацараз" #: selectcertificatedialog.ui msgctxt "" @@ -564,7 +564,7 @@ "label\n" "string.text" msgid "Select the certificate you want to use for signing:" -msgstr "" +msgstr "Иалышәх асертификат, анапаҵаҩразы:" #: selectcertificatedialog.ui msgctxt "" @@ -573,7 +573,7 @@ "label\n" "string.text" msgid "View Certificate..." -msgstr "" +msgstr "Асертифкат..." #: selectcertificatedialog.ui msgctxt "" @@ -582,7 +582,7 @@ "label\n" "string.text" msgid "Description:" -msgstr "" +msgstr "Ахҳәаа:" #: viewcertdialog.ui msgctxt "" @@ -591,7 +591,7 @@ "title\n" "string.text" msgid "View Certificate" -msgstr "" +msgstr "Асертифкат ахәаҧшра " #: viewcertdialog.ui msgctxt "" @@ -600,7 +600,7 @@ "label\n" "string.text" msgid "General" -msgstr "" +msgstr "Азеиҧшқәа" #: viewcertdialog.ui msgctxt "" @@ -609,7 +609,7 @@ "label\n" "string.text" msgid "Details" -msgstr "" +msgstr "Хәҭа-хәҭала" #: viewcertdialog.ui msgctxt "" @@ -618,4 +618,4 @@ "label\n" "string.text" msgid "Certification Path" -msgstr "" +msgstr "Асертификациа амҩа" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/bg/cui/source/customize.po libreoffice-l10n-5.4.4~rc2/translations/source/bg/cui/source/customize.po --- libreoffice-l10n-5.4.3~rc2/translations/source/bg/cui/source/customize.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/bg/cui/source/customize.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-01-23 01:03+0000\n" +"PO-Revision-Date: 2017-11-07 07:45+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: LANGUAGE \n" "Language: bg\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1485133381.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510040741.000000\n" #: cfg.src msgctxt "" @@ -170,7 +170,7 @@ "RID_SVXSTR_CONFIRM_RESTORE_DEFAULT\n" "string.text" msgid "This will delete all changes previously made to this toolbar. Do you really want to reset the toolbar?" -msgstr "Това ще изтрие всички промени, направени по тази лента с инструменти. Наистина искате ли да възстановите лентата с инструменти?" +msgstr "Всички промени в тази лента с инструменти ще бъдат отменени. Наистина ли искате да я върнете в начално състояние?" #: cfg.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/bg/cui/uiconfig/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/bg/cui/uiconfig/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/bg/cui/uiconfig/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/bg/cui/uiconfig/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "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: 2017-05-17 15:41+0200\n" -"PO-Revision-Date: 2017-10-25 07:39+0000\n" +"PO-Revision-Date: 2017-12-02 14:26+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: .\n" "Language: bg\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1508917152.000000\n" +"X-POOTLE-MTIME: 1512224771.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -5370,7 +5370,7 @@ "label\n" "string.text" msgid "State" -msgstr "Щат/област" +msgstr "Състояние" #: formatcellsdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/bg/helpcontent2/source/auxiliary.po libreoffice-l10n-5.4.4~rc2/translations/source/bg/helpcontent2/source/auxiliary.po --- libreoffice-l10n-5.4.3~rc2/translations/source/bg/helpcontent2/source/auxiliary.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/bg/helpcontent2/source/auxiliary.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-11-09 14:10+0100\n" -"PO-Revision-Date: 2014-07-10 15:24+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-06 00:02+0000\n" +"Last-Translator: Mihail Balabanov \n" "Language-Team: LANGUAGE \n" "Language: bg\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1405005893.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1509926576.000000\n" #: sbasic.tree msgctxt "" @@ -118,7 +118,7 @@ "0804\n" "node.text" msgid "Loading, Saving, Importing, and Exporting" -msgstr "Зареждане, запазване, импортиране и експортиране" +msgstr "Зареждане, записване, импортиране и експортиране" #: scalc.tree msgctxt "" @@ -366,7 +366,7 @@ "1013\n" "node.text" msgid "Load, Save, Import, Export" -msgstr "Зареждане, запазване, импортиране и експортиране" +msgstr "Зареждане, записване, импортиране и експортиране" #: shared.tree msgctxt "" @@ -518,7 +518,7 @@ "0403\n" "node.text" msgid "Loading, Saving, Importing, and Exporting" -msgstr "Зареждане, запазване, импортиране и експортиране" +msgstr "Зареждане, записване, импортиране и експортиране" #: simpress.tree msgctxt "" @@ -782,7 +782,7 @@ "0219\n" "node.text" msgid "Loading, Saving, Importing, and Exporting" -msgstr "Зареждане, запазване, импортиране и експортиране" +msgstr "Зареждане, записване, импортиране и експортиране" #: swriter.tree msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/bg/helpcontent2/source/text/sbasic/shared/02.po libreoffice-l10n-5.4.4~rc2/translations/source/bg/helpcontent2/source/text/sbasic/shared/02.po --- libreoffice-l10n-5.4.3~rc2/translations/source/bg/helpcontent2/source/text/sbasic/shared/02.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/bg/helpcontent2/source/text/sbasic/shared/02.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-05-12 14:35+0200\n" -"PO-Revision-Date: 2015-06-22 20:47+0000\n" +"PO-Revision-Date: 2017-11-06 00:04+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: LANGUAGE \n" "Language: bg\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1435006036.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1509926688.000000\n" #: 11010000.xhp msgctxt "" @@ -870,7 +870,7 @@ "par_id3152363\n" "help.text" msgid "In the dialog editor, this command calls a \"Save as\" dialog to export the current BASIC dialog." -msgstr "Показва диалогов прозорец „Съхраняване като“ за експортиране на текущия диалогов прозорец на BASIC." +msgstr "Показва диалогов прозорец „Записване като“ за експортиране на текущия диалогов прозорец на BASIC." #: 11190000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/bg/helpcontent2/source/text/sbasic/shared.po libreoffice-l10n-5.4.4~rc2/translations/source/bg/helpcontent2/source/text/sbasic/shared.po --- libreoffice-l10n-5.4.3~rc2/translations/source/bg/helpcontent2/source/text/sbasic/shared.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/bg/helpcontent2/source/text/sbasic/shared.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-09 19:44+0000\n" +"PO-Revision-Date: 2017-11-06 00:04+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: LANGUAGE \n" "Language: bg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1507578279.000000\n" +"X-POOTLE-MTIME: 1509926676.000000\n" #: 00000002.xhp msgctxt "" @@ -2974,7 +2974,7 @@ "par_id3150327\n" "help.text" msgid "Select the module that you want to export as text from the object catalog." -msgstr "Изберете от каталога на обектите модула, който желаете да експортиране като текст." +msgstr "Изберете от каталога на обектите модула, който желаете да експортирате като текст." #: 01030200.xhp msgctxt "" @@ -3398,7 +3398,7 @@ "par_id3147007\n" "help.text" msgid "In the Location list you specify where your library is stored. Select the library that you want to export. Note that you cannot export the Standard library." -msgstr "В списъка Местоположение задайте къде е запазена библиотеката. Изберете библиотеката, която искате да експортирате. Забележете, че не можете да експортирате библиотеката Standard." +msgstr "В списъка Местоположение задайте къде се съхранява библиотеката. Изберете библиотеката, която искате да експортирате. Забележете, че не можете да експортирате библиотеката Standard." #: 01030400.xhp msgctxt "" @@ -3438,7 +3438,7 @@ "par_id3147012\n" "help.text" msgid "Click Save to export the library." -msgstr "Щракнете върху Съхраняване, за да експортирате библиотеката." +msgstr "Щракнете върху Записване, за да експортирате библиотеката." #: 01030400.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/bg/helpcontent2/source/text/schart/01.po libreoffice-l10n-5.4.4~rc2/translations/source/bg/helpcontent2/source/text/schart/01.po --- libreoffice-l10n-5.4.3~rc2/translations/source/bg/helpcontent2/source/text/schart/01.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/bg/helpcontent2/source/text/schart/01.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-07 16:37+0000\n" +"PO-Revision-Date: 2017-11-05 11:27+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: LANGUAGE \n" "Language: bg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1507394275.000000\n" +"X-POOTLE-MTIME: 1509881225.000000\n" #: 03010000.xhp msgctxt "" @@ -1470,7 +1470,7 @@ "par_id18082016163702791\n" "help.text" msgid "To show the coefficient of determination R2, select the equation in the chart, right-click to open the context menu, and choose Insert R2." -msgstr "За да се покаже коефициентът на детерминация R2, изберете уравнението в диаграмата, отворете контекстното меню с десния бутон на мишката и изберете Вмъкване на R2." +msgstr "За да се покаже коефициентът на детерминация R2, изберете уравнението в диаграмата, отворете контекстното меню с десния бутон на мишката и изберете Вмъкване на R2." #: 04050100.xhp msgctxt "" @@ -1526,7 +1526,7 @@ "par_id180820161612526680\n" "help.text" msgid "Exponential trend line: regression through equation y=b∙exp(a∙x).This equation is equivalent to y=b∙mx with m=exp(a). Intercept b can be forced." -msgstr "Експоненциална: регресия с уравнение y=b∙exp(a∙x). Тя е еквивалентна на y=b∙mx с m=exp(a). Свободният член b може да бъде фиксиран." +msgstr "Експоненциална: регресия с уравнение y=b∙exp(a∙x). Тя е еквивалентна на y=b∙mx с m=exp(a). Свободният член b може да бъде фиксиран." #: 04050100.xhp msgctxt "" @@ -1534,7 +1534,7 @@ "par_id180820161612527230\n" "help.text" msgid "Power trend line: regression through equation y=b∙xa." -msgstr "Степенна: регресия с уравнение y=b∙xa." +msgstr "Степенна: регресия с уравнение y=b∙xa." #: 04050100.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/bg/helpcontent2/source/text/shared/autopi.po libreoffice-l10n-5.4.4~rc2/translations/source/bg/helpcontent2/source/text/shared/autopi.po --- libreoffice-l10n-5.4.3~rc2/translations/source/bg/helpcontent2/source/text/shared/autopi.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/bg/helpcontent2/source/text/shared/autopi.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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" -"PO-Revision-Date: 2017-10-20 15:12+0000\n" +"PO-Revision-Date: 2017-11-18 12:31+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: LANGUAGE \n" "Language: bg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1508512335.000000\n" +"X-POOTLE-MTIME: 1511008271.000000\n" #: 01000000.xhp msgctxt "" @@ -438,7 +438,7 @@ "par_id3156423\n" "help.text" msgid "Sets the object distance from the top page margin." -msgstr "Задава разстоянието от обекта до лявото бяло поле на страницата." +msgstr "Задава разстоянието от обекта до горното бяло поле на страницата." #: 01010200.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/bg/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-l10n-5.4.4~rc2/translations/source/bg/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-l10n-5.4.3~rc2/translations/source/bg/instsetoo_native/inc_openoffice/windows/msi_languages.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/bg/instsetoo_native/inc_openoffice/windows/msi_languages.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-02-16 15:42+0000\n" +"PO-Revision-Date: 2017-11-11 22:41+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: LANGUAGE \n" "Language: bg\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1487259735.000000\n" +"X-POOTLE-MTIME: 1510440083.000000\n" #: ActionTe.ulf msgctxt "" @@ -2174,7 +2174,7 @@ "OOO_CONTROL_204\n" "LngText.text" msgid "&Abort" -msgstr "&Прекъсване" +msgstr "Прекратяване" #: Control.ulf msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/bg/wizards/source/euro.po libreoffice-l10n-5.4.4~rc2/translations/source/bg/wizards/source/euro.po --- libreoffice-l10n-5.4.3~rc2/translations/source/bg/wizards/source/euro.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/bg/wizards/source/euro.po 2017-12-12 17:45:07.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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: 2015-01-28 14:38+0000\n" -"Last-Translator: Mihail \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2017-11-17 10:10+0000\n" +"Last-Translator: Mihail Balabanov \n" "Language-Team: LANGUAGE \n" "Language: bg\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-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1422455934.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510913459.000000\n" #: euro.src msgctxt "" @@ -342,7 +342,7 @@ "MESSAGES + 6\n" "string.text" msgid "Should protected spreadsheets be temporarily unprotected?" -msgstr "Желаете ли временно сваляне на защитата на защитените електронни таблици?" +msgstr "Да се свали ли временно защитата на защитените електронни таблици?" #: euro.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/bg/wizards/source/importwizard.po libreoffice-l10n-5.4.4~rc2/translations/source/bg/wizards/source/importwizard.po --- libreoffice-l10n-5.4.3~rc2/translations/source/bg/wizards/source/importwizard.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/bg/wizards/source/importwizard.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2015-05-23 16:24+0000\n" +"PO-Revision-Date: 2017-11-18 19:34+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: LANGUAGE \n" "Language: bg\n" @@ -12,9 +12,9 @@ "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.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1432398296.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511033691.000000\n" #: importwi.src msgctxt "" @@ -78,7 +78,7 @@ "sWelcometextLabel3\n" "string.text" msgid "Select the document type for conversion:" -msgstr "Избор на типа на документа за преобразуване:" +msgstr "Изберете типа на документите за преобразуване:" #: importwi.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/bg/wizards/source/template.po libreoffice-l10n-5.4.4~rc2/translations/source/bg/wizards/source/template.po --- libreoffice-l10n-5.4.3~rc2/translations/source/bg/wizards/source/template.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/bg/wizards/source/template.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-29 18:39+0200\n" -"PO-Revision-Date: 2015-05-23 12:01+0000\n" +"PO-Revision-Date: 2017-12-02 14:33+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: LANGUAGE \n" "Language: bg\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1432382473.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1512225232.000000\n" #: template.src msgctxt "" @@ -278,7 +278,7 @@ "CorrespondenceDialog+2\n" "string.text" msgid "Several recipients (address database)" -msgstr "Няколко получателя (БД с адреси)" +msgstr "Няколко получатели (БД с адреси)" #: template.src msgctxt "" @@ -382,7 +382,7 @@ "CorrespondenceFields+11\n" "string.text" msgid "Form of Address" -msgstr "Формуляр за адрес" +msgstr "Обръщение" #: template.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ca/xmlsecurity/source/dialogs.po libreoffice-l10n-5.4.4~rc2/translations/source/ca/xmlsecurity/source/dialogs.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ca/xmlsecurity/source/dialogs.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ca/xmlsecurity/source/dialogs.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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: 2016-05-27 11:16+0000\n" +"PO-Revision-Date: 2017-11-22 21:46+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1464347779.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511387202.000000\n" #: certificateviewer.src msgctxt "" @@ -163,3 +163,5 @@ "Document signature cannot be restored, once removed.\n" "Do you really want to remove selected signature?" msgstr "" +"La signatura d'un document no es pot recuperar un cop s'ha suprimit.\n" +"Esteu segur de voler suprimir la signatura seleccionada?" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ca/xmlsecurity/uiconfig/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/ca/xmlsecurity/uiconfig/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ca/xmlsecurity/uiconfig/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ca/xmlsecurity/uiconfig/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-23 06:39+0000\n" +"PO-Revision-Date: 2017-11-22 21:46+0000\n" "Last-Translator: Joan Montané \n" "Language-Team: LANGUAGE \n" "Language: ca\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1498199988.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511387206.000000\n" #: certgeneral.ui msgctxt "" @@ -495,7 +495,7 @@ "label\n" "string.text" msgid "Type" -msgstr "" +msgstr "Tipus" #: selectcertificatedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/da/helpcontent2/source/text/simpress/guide.po libreoffice-l10n-5.4.4~rc2/translations/source/da/helpcontent2/source/text/simpress/guide.po --- libreoffice-l10n-5.4.3~rc2/translations/source/da/helpcontent2/source/text/simpress/guide.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/da/helpcontent2/source/text/simpress/guide.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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" -"PO-Revision-Date: 2017-07-21 18:20+0000\n" -"Last-Translator: scootergrisen \n" +"PO-Revision-Date: 2017-12-01 20:57+0000\n" +"Last-Translator: David Lamhauge \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500661233.000000\n" +"X-POOTLE-MTIME: 1512161857.000000\n" #: 3d_create.xhp msgctxt "" @@ -4182,7 +4182,7 @@ "par_id221120161524598688\n" "help.text" msgid "Slide Shows" -msgstr "Diasshows" +msgstr "Præsentationer" #: photo_album.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/da/sd/uiconfig/simpress/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/da/sd/uiconfig/simpress/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/da/sd/uiconfig/simpress/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/da/sd/uiconfig/simpress/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "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: 2017-05-29 18:40+0200\n" -"PO-Revision-Date: 2017-07-20 00:06+0000\n" -"Last-Translator: scootergrisen \n" +"PO-Revision-Date: 2017-12-02 07:20+0000\n" +"Last-Translator: David Lamhauge \n" "Language-Team: none\n" "Language: da\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500509179.000000\n" +"X-POOTLE-MTIME: 1512199206.000000\n" #: annotationmenu.ui msgctxt "" @@ -2147,7 +2147,7 @@ "label\n" "string.text" msgid "Slide Show" -msgstr "Diasshow" +msgstr "Præsentation" #: notebookbar.ui msgctxt "" @@ -4262,7 +4262,7 @@ "label\n" "string.text" msgid "Master Slide" -msgstr "Hoveddias" +msgstr "Masterdias" #: sidebarslidebackground.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/da/sfx2/source/control.po libreoffice-l10n-5.4.4~rc2/translations/source/da/sfx2/source/control.po --- libreoffice-l10n-5.4.3~rc2/translations/source/da/sfx2/source/control.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/da/sfx2/source/control.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 19:30+0000\n" -"Last-Translator: Leif Lodahl \n" +"PO-Revision-Date: 2017-11-12 09:35+0000\n" +"Last-Translator: scootergrisen \n" "Language-Team: LANGUAGE \n" "Language: da\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467660648.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510479331.000000\n" #: templateview.src msgctxt "" @@ -30,4 +30,4 @@ "STR_WELCOME_LINE2\n" "string.text" msgid "Drop a document here or pick an app from the left side to create one." -msgstr "Drop et dokument her eller vælg en app til venstre for at oprette et." +msgstr "Slip et dokument her eller vælg et program til venstre for at oprette et." diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/avmedia/source/framework.po libreoffice-l10n-5.4.4~rc2/translations/source/de/avmedia/source/framework.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/avmedia/source/framework.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/avmedia/source/framework.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-04-14 07:35+0000\n" -"Last-Translator: Thomas Hackert \n" +"PO-Revision-Date: 2017-11-11 05:57+0000\n" +"Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1492155326.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510379875.000000\n" #: mediacontrol.src msgctxt "" @@ -86,7 +86,7 @@ "AVMEDIA_STR_ZOOM_50\n" "string.text" msgid "50%" -msgstr "50%" +msgstr "50 %" #: mediacontrol.src msgctxt "" @@ -94,7 +94,7 @@ "AVMEDIA_STR_ZOOM_100\n" "string.text" msgid "100%" -msgstr "100%" +msgstr "100 %" #: mediacontrol.src msgctxt "" @@ -102,7 +102,7 @@ "AVMEDIA_STR_ZOOM_200\n" "string.text" msgid "200%" -msgstr "200%" +msgstr "200 %" #: mediacontrol.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/chart2/uiconfig/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/de/chart2/uiconfig/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/chart2/uiconfig/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/chart2/uiconfig/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-04-14 17:35+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-11-06 07:54+0000\n" +"Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1492191353.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1509954893.000000\n" #: 3dviewdialog.ui msgctxt "" @@ -1004,7 +1004,7 @@ "label\n" "string.text" msgid "Indents & Spacing" -msgstr "Einzüge & Abstände" +msgstr "Einzüge und Abstände" #: paradialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/cui/source/options.po libreoffice-l10n-5.4.4~rc2/translations/source/de/cui/source/options.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/cui/source/options.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/cui/source/options.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-03-05 12:54+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-11-05 11:10+0000\n" +"Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1488718464.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1509880212.000000\n" #: connpooloptions.src msgctxt "" @@ -1154,7 +1154,7 @@ "Defaults\n" "itemlist.text" msgid "Defaults" -msgstr "Standards" +msgstr "Vorgaben" #: treeopt.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/cui/uiconfig/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/de/cui/uiconfig/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/cui/uiconfig/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/cui/uiconfig/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "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: 2017-05-17 15:41+0200\n" -"PO-Revision-Date: 2017-06-26 09:49+0000\n" +"PO-Revision-Date: 2017-12-08 19:30+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: none\n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1498470541.000000\n" +"X-POOTLE-MTIME: 1512761415.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -230,7 +230,7 @@ "label\n" "string.text" msgid "https://www.libreoffice.org/about-us/credits/" -msgstr "http://de.libreoffice.org/about-us/credits/" +msgstr "https://de.libreoffice.org/about-us/credits/" #: accelconfigpage.ui msgctxt "" @@ -941,7 +941,7 @@ "label\n" "string.text" msgid "Smart Tags" -msgstr "Geeignete Schlagwörter" +msgstr "SmartTags" #: backgroundpage.ui msgctxt "" @@ -2777,7 +2777,7 @@ "label\n" "string.text" msgid "Smart Tags" -msgstr "Geeignete Schlagwörter" +msgstr "SmartTags" #: colorconfigwin.ui msgctxt "" @@ -9343,7 +9343,7 @@ "label\n" "string.text" msgid "_Use system colors for page previews" -msgstr "Systemfarben für Druckvorschau _verwenden" +msgstr "Systemfarben für Druckvorschauen _verwenden" #: optaccessibilitypage.ui msgctxt "" @@ -11242,7 +11242,7 @@ "label\n" "string.text" msgid "Online Update Options" -msgstr "Online Update Optionen" +msgstr "Online-Update-Optionen" #: optopenclpage.ui msgctxt "" @@ -14836,7 +14836,7 @@ "label\n" "string.text" msgid "Indents & Spacing" -msgstr "Einzüge & Abstände" +msgstr "Einzüge und Abstände" #: searchformatdialog.ui msgctxt "" @@ -15259,7 +15259,7 @@ "label\n" "string.text" msgid "Label text with smart tags" -msgstr "Text mit Smart Tags versehen" +msgstr "Text mit SmartTags versehen" #: smarttagoptionspage.ui msgctxt "" @@ -15277,7 +15277,7 @@ "label\n" "string.text" msgid "Currently Installed Smart Tags" -msgstr "Aktuell installierte Smart Tags" +msgstr "Aktuell installierte SmartTags" #: smoothdialog.ui msgctxt "" @@ -17050,7 +17050,7 @@ "label\n" "string.text" msgid "100%" -msgstr "100%" +msgstr "100 %" #: zoomdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/dbaccess/source/ui/tabledesign.po libreoffice-l10n-5.4.4~rc2/translations/source/de/dbaccess/source/ui/tabledesign.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/dbaccess/source/ui/tabledesign.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/dbaccess/source/ui/tabledesign.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n" -"PO-Revision-Date: 2017-01-14 10:34+0000\n" -"Last-Translator: kuehl \n" +"PO-Revision-Date: 2017-11-05 11:11+0000\n" +"Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1484390068.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1509880281.000000\n" #: table.src msgctxt "" @@ -264,7 +264,7 @@ "STR_HELP_NUMERIC_TYPE\n" "string.text" msgid "Enter the number format." -msgstr "Legen Sie hier fest, welchen Typ die Zahl haben soll." +msgstr "Geben Sie das Zahlenformat ein." #: table.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/extensions/source/abpilot.po libreoffice-l10n-5.4.4~rc2/translations/source/de/extensions/source/abpilot.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/extensions/source/abpilot.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/extensions/source/abpilot.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2016-11-22 08:08+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-11-05 14:13+0000\n" +"Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" -"X-POOTLE-MTIME: 1479802093.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1509891214.000000\n" #: abspilot.src msgctxt "" @@ -70,7 +70,7 @@ "RID_STR_NEEDTYPESELECTION\n" "string.text" msgid "Please select a type of address book." -msgstr "Bitte wählen sie einen Adressbuch-Typ aus." +msgstr "Bitte wählen Sie einen Adressbuch-Typ aus." #: abspilot.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/extensions/source/update/check.po libreoffice-l10n-5.4.4~rc2/translations/source/de/extensions/source/update/check.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/extensions/source/update/check.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/extensions/source/update/check.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-05-23 21:37+0200\n" -"PO-Revision-Date: 2016-03-13 10:55+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-12-08 19:30+0000\n" +"Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457866532.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1512761424.000000\n" #: updatehdl.src msgctxt "" @@ -96,7 +96,7 @@ msgstr "" "Der Speicherort ist: %DOWNLOAD_PATH.\n" "\n" -"Sie können den Speicherort unter Extras – Optionen... - %PRODUCTNAME – Online Update ändern." +"Sie können den Speicherort unter Extras – Optionen... - %PRODUCTNAME – Online-Update ändern." #: updatehdl.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/filter/source/config/fragments/filters.po libreoffice-l10n-5.4.4~rc2/translations/source/de/filter/source/config/fragments/filters.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/filter/source/config/fragments/filters.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/filter/source/config/fragments/filters.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-06 20:00+0200\n" -"PO-Revision-Date: 2017-10-14 05:20+0000\n" +"PO-Revision-Date: 2017-11-25 11:26+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1507958420.000000\n" +"X-POOTLE-MTIME: 1511609164.000000\n" #: ADO_rowset_XML.xcu msgctxt "" @@ -230,7 +230,7 @@ "UIName\n" "value.text" msgid "HTML Document" -msgstr "HTML Dokument" +msgstr "HTML-Dokument" #: HTML_MasterDoc.xcu msgctxt "" @@ -239,7 +239,7 @@ "UIName\n" "value.text" msgid "HTML Document (Master Document)" -msgstr "HTML Dokument (Globaldokument)" +msgstr "HTML-Dokument (Globaldokument)" #: HTML__StarCalc_.xcu msgctxt "" @@ -248,7 +248,7 @@ "UIName\n" "value.text" msgid "HTML Document (Calc)" -msgstr "HTML Dokument (Calc)" +msgstr "HTML-Dokument (Calc)" #: HTML__StarWriter_.xcu msgctxt "" @@ -257,7 +257,7 @@ "UIName\n" "value.text" msgid "HTML Document (Writer)" -msgstr "HTML Dokument (Writer)" +msgstr "HTML-Dokument (Writer)" #: JPG___JPEG.xcu msgctxt "" @@ -1175,7 +1175,7 @@ "UIName\n" "value.text" msgid "ODF Spreadsheet" -msgstr "ODF Tabellendokument" +msgstr "ODF-Tabellendokument" #: calc8_template.xcu msgctxt "" @@ -1184,7 +1184,7 @@ "UIName\n" "value.text" msgid "ODF Spreadsheet Template" -msgstr "ODF Tabellendokumentvorlage" +msgstr "ODF-Tabellendokumentvorlage" #: calc_Gnumeric.xcu msgctxt "" @@ -1409,7 +1409,7 @@ "UIName\n" "value.text" msgid "HTML Document (Draw)" -msgstr "HTML Dokument (Draw)" +msgstr "HTML-Dokument (Draw)" #: draw_jpg_Export.xcu msgctxt "" @@ -1706,7 +1706,7 @@ "UIName\n" "value.text" msgid "ODF Text Document" -msgstr "ODF Textdokument" +msgstr "ODF-Textdokument" #: writer8_template.xcu msgctxt "" @@ -1715,7 +1715,7 @@ "UIName\n" "value.text" msgid "ODF Text Document Template" -msgstr "ODF Textdokumentvorlage" +msgstr "ODF-Textdokumentvorlage" #: writer_MIZI_Hwp_97.xcu msgctxt "" @@ -1886,7 +1886,7 @@ "UIName\n" "value.text" msgid "ODF Text Document" -msgstr "ODF Textdokument" +msgstr "ODF-Textdokument" #: writerweb8_writer.xcu msgctxt "" @@ -1904,4 +1904,4 @@ "UIName\n" "value.text" msgid "HTML Document Template" -msgstr "HTML Dokumentvorlage" +msgstr "HTML-Dokumentvorlage" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/sbasic/guide.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/sbasic/guide.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/sbasic/guide.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/sbasic/guide.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-17 15:41+0200\n" -"PO-Revision-Date: 2017-10-26 14:10+0000\n" +"PO-Revision-Date: 2017-11-27 17:40+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1509027014.000000\n" +"X-POOTLE-MTIME: 1511804454.000000\n" #: access2base.xhp msgctxt "" @@ -302,7 +302,7 @@ "par_id3146797\n" "help.text" msgid "Use the tools on the Toolbox of the BASIC dialog editor to add controls to your dialog." -msgstr "Verwenden Sie die Werkzeuge der Werkzeugleiste im BASIC Dialog-Editor, um Ihren Dialog mit Kontrollfeldern zu versehen." +msgstr "Verwenden Sie die Werkzeuge der Werkzeugleiste im BASIC-Dialog-Editor, um Ihren Dialog mit Kontrollfeldern zu versehen." #: insert_control.xhp msgctxt "" @@ -358,7 +358,7 @@ "par_id3153031\n" "help.text" msgid "The following examples are for a new dialog called \"Dialog1\". Use the tools on the Toolbox bar in the dialog editor to create the dialog and add the following controls: a Check Box called \"CheckBox1\", a Label Field called \"Label1\", a Button called \"CommandButton1\", and a List Box called \"ListBox1\"." -msgstr "Um diese Beispiele ausprobieren zu können, müssen Sie einen neuen Dialog mit dem Namen \"Dialog1\" anlegen. Im Dialogeditor legen Sie mithilfe der Schaltflächen in der Werkzeugleiste folgende Kontrollfelder an: ein Markierfeld mit dem Namen \"CheckBox1\", ein Beschriftungsfeld mit dem Namen \"Label1\", eine Schaltfläche mit dem Namen \"CommandButton1\" und ein Listenfeld mit dem Namen \"ListBox1\"." +msgstr "Um diese Beispiele ausprobieren zu können, müssen Sie einen neuen Dialog mit dem Namen \"Dialog1\" anlegen. Im Dialog-Editor legen Sie mithilfe der Schaltflächen in der Werkzeugleiste folgende Kontrollfelder an: ein Markierfeld mit dem Namen \"CheckBox1\", ein Beschriftungsfeld mit dem Namen \"Label1\", eine Schaltfläche mit dem Namen \"CommandButton1\" und ein Listenfeld mit dem Namen \"ListBox1\"." #: sample_code.xhp msgctxt "" @@ -542,7 +542,7 @@ "par_id3145171\n" "help.text" msgid "In the %PRODUCTNAME BASIC window for a dialog that you created, leave the dialog editor by clicking the name tab of the Module that the dialog is assigned to. The name tab is at the bottom of the window." -msgstr "Nachdem Sie einen Dialog erzeugt haben, möchten Sie diesen Dialog nun in Ihren Programmcode einbinden. Sie befinden sich noch im Dialogeditor und müssen zunächst wieder in die %PRODUCTNAME Basic-IDE gelangen." +msgstr "Nachdem Sie einen Dialog erzeugt haben, möchten Sie diesen Dialog nun in Ihren Programmcode einbinden. Sie befinden sich noch im Dialog-Editor und müssen zunächst wieder in die %PRODUCTNAME Basic-IDE gelangen." #: show_dialog.xhp msgctxt "" @@ -598,7 +598,7 @@ "par_id4601940\n" "help.text" msgid "The Language toolbar in the Basic IDE dialog editor shows controls to enable and manage localizable dialogs." -msgstr "Die Symbolleiste Sprache im Basic-IDE-Dialogeditor zeigt Steuerelemente, mit denen lokalisierte Dialoge aktiviert und verwaltet werden können." +msgstr "Die Symbolleiste Sprache im Basic-IDE-Dialog-Editor zeigt Steuerelemente, mit denen lokalisierte Dialoge aktiviert und verwaltet werden können." #: translation.xhp msgctxt "" @@ -726,7 +726,7 @@ "par_id9121982\n" "help.text" msgid "The first time you click Add, you see the Set Default User Interface Language dialog. The following times you click Add, this dialog has the name Add User Interface Language." -msgstr "Wenn Sie erstmalig auf Hinzufügen klicken, sehen Sie den Dialog 'Standardsprache für Benutzerschnittstelle festlegen'. Wenn Sie die folgenden Male auf Hinzufügen klicken, hat dieser Dialog den Namen 'Sprachen zur Benutzerschnittstelle hinzufügen'." +msgstr "Wenn Sie erstmalig auf Hinzufügen klicken, sehen Sie den Dialog \"Standardsprache für Benutzerschnittstelle festlegen\". Wenn Sie die folgenden Male auf Hinzufügen klicken, hat dieser Dialog den Namen \"Sprachen zur Benutzerschnittstelle hinzufügen\"." #: translation.xhp msgctxt "" @@ -774,7 +774,7 @@ "par_id2334665\n" "help.text" msgid "Once you have added the resources for localizable strings in your dialogs, you can select the current language from the Current Language listbox on the Language toolbar." -msgstr "Nachdem Sie Ihren Dialogen Sprachressourcen hinzugefügt haben, können Sie die aktuelle Sprache aus dem Listenfeld 'Aktuelle Sprache' in der Symbolleiste Sprache auswählen." +msgstr "Nachdem Sie Ihren Dialogen Sprachressourcen hinzugefügt haben, können Sie die aktuelle Sprache aus dem Listenfeld \"Aktuelle Sprache\" in der Symbolleiste Sprache auswählen." #: translation.xhp msgctxt "" @@ -782,7 +782,7 @@ "par_id8956572\n" "help.text" msgid "Switch the Current Language listbox to display the default language." -msgstr "Wählen Sie die Standardsprache im Listenfeld 'Aktuelle Sprache'." +msgstr "Wählen Sie die Standardsprache im Listenfeld \"Aktuelle Sprache\"." #: translation.xhp msgctxt "" @@ -798,7 +798,7 @@ "par_id8366649\n" "help.text" msgid "Select another language in the Current Language listbox." -msgstr "Wählen Sie eine andere Sprache in dem Listenfeld 'Aktuelle Sprache' aus." +msgstr "Wählen Sie eine andere Sprache in dem Listenfeld \"Aktuelle Sprache\" aus." #: translation.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/sbasic/shared/02.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/sbasic/shared/02.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/sbasic/shared/02.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/sbasic/shared/02.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-05-12 14:35+0200\n" -"PO-Revision-Date: 2017-10-21 18:27+0000\n" +"PO-Revision-Date: 2017-12-09 16:57+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1508610452.000000\n" +"X-POOTLE-MTIME: 1512838654.000000\n" #: 11010000.xhp msgctxt "" @@ -614,7 +614,7 @@ "par_id3150445\n" "help.text" msgid "Place the cursor in the code where you want to insert the source text, and then click the Insert source text icon. Locate the file that contains the Basic source text that you want to insert, and then click Open." -msgstr "Setzen Sie den Cursor an die Stelle im Code, an der der Quelltext eingefügt werden soll. Klicken Sie auf das Symbol Quelltext einfügen und wählen Sie im jetzt gezeigten Dateiauswahldialog eine Datei, die Basic-Quelltext enthält. Bestätigen Sie den Dateiauswahldialog mit einem Klick auf Öffnen. Der Quelltext wird in das Basic-IDE eingefügt." +msgstr "Setzen Sie den Cursor an die Stelle im Code, an der der Quelltext eingefügt werden soll. Klicken Sie auf das Symbol Quelltext einfügen und wählen Sie im jetzt gezeigten Dateiauswahldialog eine Datei, die Basic-Quelltext enthält. Bestätigen Sie den Dateiauswahldialog mit einem Klick auf Öffnen. Der Quelltext wird in die Basic-IDE eingefügt." #: 11140000.xhp msgctxt "" @@ -902,7 +902,7 @@ "bm_id3150402\n" "help.text" msgid "controls; in dialog editorpush button control in dialog editoricon controlbuttons; controlsimage controlcheck box controlradio button controloption button controlfixed text controllabel field controlediting; controlstext boxes; controlslist boxes; controlscombo box controlscroll bar controlhorizontal scrollbar controlvertical scrollbar controlgroup box controlprogress bar controlfixed line controlhorizontal line controlline controlvertical line controldate field controltime field controlnumerical field controlcurrency field controlformatted field controlpattern field controlmasked field controlfile selection controlselection options for controlstest mode control" -msgstr "Kontrollfelder; im DialogeditorSchaltflächen (Kontrollfeld) im Dialog-EditorSymbol (Kontrollfeld)Schaltflächen; KontrollfelderGrafisches KontrollfeldMarkierfeld (Kontrollfeld)Optionsfeld (Kontrollfeld)Optionsfeld (Kontrollfeld)Fester Text (Kontrollfeld)Beschriftungsfeld (Kontrollfeld)Bearbeiten; KontrollfelderTextfelder; KontrollfelderListenfelder; KontrollfelderKombinationsfeld (Kontrollfeld)Bildlaufleisten (Kontrollfeld)Horizontale Bildlaufleiste (Kontrollfeld)Vertikale Bildlaufleiste (Kontrollfeld)Gruppenfeld (Kontrollfeld)Fortschrittsbalken (Kontrollfeld)Feste Linien (Kontrollfeld)Horizontale Linie (Kontrollfeld)Linie (Kontrollfeld)Vertikale Linie (Kontrollfeld)Datumsfeld (Kontrollfeld)Uhrzeitfeld (Kontrollfeld)Numerisches Feld (Kontrollfeld)Währungsfeld (Kontrollfeld)Formatiertes Feld (Kontrollfeld)Musterfeld (Kontrollfeld)Maskiertes Feld (Kontrollfeld)Dateiauswahl (Kontrollfeld)Auswahloptionen für KontrollfelderTestmodus (Kontrollfeld)" +msgstr "Kontrollfelder; im Dialog-EditorSchaltflächen (Kontrollfeld) im Dialog-EditorSymbol (Kontrollfeld)Schaltflächen; KontrollfelderGrafisches KontrollfeldMarkierfeld (Kontrollfeld)Optionsfeld (Kontrollfeld)Optionsfeld (Kontrollfeld)Fester Text (Kontrollfeld)Beschriftungsfeld (Kontrollfeld)Bearbeiten; KontrollfelderTextfelder; KontrollfelderListenfelder; KontrollfelderKombinationsfeld (Kontrollfeld)Bildlaufleisten (Kontrollfeld)Horizontale Bildlaufleiste (Kontrollfeld)Vertikale Bildlaufleiste (Kontrollfeld)Gruppenfeld (Kontrollfeld)Fortschrittsbalken (Kontrollfeld)Feste Linien (Kontrollfeld)Horizontale Linie (Kontrollfeld)Linie (Kontrollfeld)Vertikale Linie (Kontrollfeld)Datumsfeld (Kontrollfeld)Uhrzeitfeld (Kontrollfeld)Numerisches Feld (Kontrollfeld)Währungsfeld (Kontrollfeld)Formatiertes Feld (Kontrollfeld)Musterfeld (Kontrollfeld)Maskiertes Feld (Kontrollfeld)Dateiauswahl (Kontrollfeld)Auswahloptionen für KontrollfelderTestmodus (Kontrollfeld)" #: 20000000.xhp msgctxt "" @@ -1150,7 +1150,7 @@ "par_id3154199\n" "help.text" msgid "Adds a combo box. A combo box is a one line list box that a user can click, and then choose an entry from the list. If you want, you can make the entries in the combo box \"read only\"." -msgstr "Fügt ein Kombinationsfeld ein. Ein Kombinationsfeld ist ein einzeiliges Listenfeld, auf das der Benutzer klicken und dann einen Eintrag aus der Liste auswählen kann. Falls gewünscht können Sie die Einträge im Kombinationsfeld als \"Nur Lesen\" definieren." +msgstr "Fügt ein Kombinationsfeld ein. Ein Kombinationsfeld ist ein einzeiliges Listenfeld, auf das der Benutzer klicken und dann einen Eintrag aus der Liste auswählen kann. Falls gewünscht, können Sie die Einträge im Kombinationsfeld als \"Nur Lesen\" definieren." #: 20000000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/sbasic/shared.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/sbasic/shared.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/sbasic/shared.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/sbasic/shared.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-26 13:22+0000\n" +"PO-Revision-Date: 2017-12-10 12:15+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1509024156.000000\n" +"X-POOTLE-MTIME: 1512908157.000000\n" #: 00000002.xhp msgctxt "" @@ -990,7 +990,7 @@ "par_id31469414\n" "help.text" msgid "294 Invalid DDE link format" -msgstr "294 Ungültiges DDE-Link Format" +msgstr "294 Ungültiges DDE-Verknüpfungsformat" #: 00000003.xhp msgctxt "" @@ -2270,7 +2270,7 @@ "par_id3153707\n" "help.text" msgid "The object catalog provides an overview of all modules and dialogs you have created in $[officename]." -msgstr "Der Objektkatalog bietet eine Auflistung der Module und Dialoge, die Sie in Ihrem $[officename] eingebaut haben." +msgstr "Der Objektkatalog bietet eine Übersicht aller Module und Dialoge, die Sie in Ihrem $[officename] erstellt haben." #: 01020200.xhp msgctxt "" @@ -2846,7 +2846,7 @@ "par_id3147434\n" "help.text" msgid "Basic IDE" -msgstr "Basic-Oberfläche" +msgstr "Basic-IDE" #: 01030200.xhp msgctxt "" @@ -3038,7 +3038,7 @@ "par_id3153198\n" "help.text" msgid "Basic IDE" -msgstr "Basic-Oberfläche" +msgstr "Basic-IDE" #: 01030300.xhp msgctxt "" @@ -3174,7 +3174,7 @@ "par_id3153368\n" "help.text" msgid "You can monitor the values of a variable by adding it to the Watch window. To add a variable to the list of watched variables, type the variable name in the Watch text box and press Enter." -msgstr "Sie können den Wert einer Variablen überwachen, indem Sie sie dem Fenster Beobachter hinzufügen. Um der Liste beobachteter Variablen eine Variable hinzuzufügen, geben Sie den Variablennamen in das Textfeld Beobachter ein und drücken dann die Eingabetaste." +msgstr "Sie können den Wert einer Variablen überwachen, indem Sie sie dem Fenster Beobachter hinzufügen. Um der Liste beobachteter Variablen eine Variable hinzuzufügen, geben Sie den Variablennamen in das Textfeld Beobachter ein und drücken Sie dann die Eingabetaste." #: 01030300.xhp msgctxt "" @@ -3350,7 +3350,7 @@ "par_id3163807\n" "help.text" msgid "If you want to insert the library as a reference only check the Insert as reference (read-only) box. Read-only libraries are fully functional but cannot be modified in the Basic IDE." -msgstr "Wenn Sie die Bibliothek nur als Referenz einfügen möchten, aktivieren Sie das Markierfeld Als Referenz einfügen (nur lesen). Schreibgeschützte Bibliotheken sind voll funktionsfähig, können jedoch in der Basic-IDE nicht geändert werden." +msgstr "Wenn Sie die Bibliothek nur als Referenz einfügen möchten, aktivieren Sie das Markierfeld Als Referenz einfügen (nur lesen). Schreibgeschützte Bibliotheken sind voll funktionsfähig, können jedoch in der Basic-IDE nicht verändert werden." #: 01030400.xhp msgctxt "" @@ -3694,7 +3694,7 @@ "bm_id3154581\n" "help.text" msgid "deleting; macro assignments to events macros; assigning to events assigning macros to events events; assigning macros" -msgstr "Löschen; Makrozuweisungen zu EreignissenMakros; Ereignissen zuweisenMakros Ereignissen zuweisenEreignisse; Makros zuweisen" +msgstr "Löschen; Makrozuweisungen zu EreignissenMakros; Ereignisse zuweisenMakros Ereignisse zuweisenEreignisse; Makros zuweisen" #: 01040000.xhp msgctxt "" @@ -5190,7 +5190,7 @@ "par_id4171269\n" "help.text" msgid "Set the environment variable HELP_DEBUG to 1 to view the Help-IDs as extended help tips." -msgstr "Setzen Sie die Umgebungsvariable HELP_DEBUG auf 1, um die Help-IDs als erweiterten Hilfe Tipp zu sehen." +msgstr "Setzen Sie die Umgebungsvariable HELP_DEBUG auf 1, um die Help-IDs als erweiterte Hilfetipps zu sehen." #: 01170101.xhp msgctxt "" @@ -6590,7 +6590,7 @@ "par_id3150769\n" "help.text" msgid "DialogTitle: String expression displayed in the title bar of the dialog. If omitted, the title bar displays the name of the respective application." -msgstr "Dialogtitel: Zeichenkettenausdruck, der in der Titelleiste des Dialogs angezeigt wird. Wird dieser Parameter übergangen, so erscheint in der Titelleiste der Name der jeweiligen Anwendung." +msgstr "Dialogtitel: Zeichenkettenausdruck, der in der Titelleiste des Dialoges angezeigt wird. Wird dieser Parameter übergangen, so erscheint in der Titelleiste der Name der jeweiligen Anwendung." #: 03010101.xhp msgctxt "" @@ -6846,7 +6846,7 @@ "par_id3147317\n" "help.text" msgid "DialogTitle: String expression displayed in the title bar of the dialog. If omitted, the name of the respective application is displayed." -msgstr "Dialogtitel: Zeichenkettenausdruck, der in der Titelleiste des Dialogs angezeigt wird. Wird dieser Parameter übergangen, so wird der Name der jeweiligen Anwendung angezeigt." +msgstr "Dialogtitel: Zeichenkettenausdruck, der in der Titelleiste des Dialoges angezeigt wird. Wird dieser Parameter übergangen, so wird der Name der jeweiligen Anwendung angezeigt." #: 03010102.xhp msgctxt "" @@ -7134,7 +7134,7 @@ "bm_id3147230\n" "help.text" msgid "Print statement" -msgstr "Anweisung Print" +msgstr "Print (Anweisung)" #: 03010103.xhp msgctxt "" @@ -8230,7 +8230,7 @@ "bm_id3157896\n" "help.text" msgid "Close statement" -msgstr "Anweisung Close" +msgstr "Close (Anweisung)" #: 03020101.xhp msgctxt "" @@ -8318,7 +8318,7 @@ "bm_id3150400\n" "help.text" msgid "FreeFile function" -msgstr "Funktion FreeFile" +msgstr "FreeFile (Funktion)" #: 03020102.xhp msgctxt "" @@ -10262,7 +10262,7 @@ "par_id3146974\n" "help.text" msgid "Attrib: Any integer expression that specifies bitwise file attributes. The Dir function only returns files or directories that match the specified attributes. You can combine several attributes by adding the attribute values:" -msgstr "Attribut: Ein beliebiger Integer-Ausdruck, der die Dateiattribute als Bitmuster angibt. Die Dir-Funktion gibt nur Dateien oder Verzeichnisse zurück, auf die die angegebenen Attribute zutreffen. Durch Addieren der Attributwerte können Sie mehrere Attribute kombinieren:" +msgstr "Attribut: Ein beliebiger Integer-Ausdruck, der die Dateiattribute als Bitmuster angibt. Die Dir-Funktion gibt nur Dateien oder Verzeichnisse zurück, auf die die angegebenen Attribute zutreffen. Durch Addieren der Attributwerte können Sie mehrere Attribute kombinieren:" #: 03020404.xhp msgctxt "" @@ -19078,7 +19078,7 @@ "par_id3154760\n" "help.text" msgid "The following functions convert numbers from one number format to another." -msgstr "Hier finden Sie die Funktionen zur Umwandlung von Zahlen von einem Zahlensystem in ein anderes." +msgstr "Hier finden Sie die Funktionen zur Umwandlung von Zahlen von einem Zahlenformat in ein anderes." #: 03080801.xhp msgctxt "" @@ -21966,7 +21966,7 @@ "par_id3154138\n" "help.text" msgid "VarName: Parameter that you want to pass to the subroutine." -msgstr "VarName: Parameter, der der Subroutine übergeben werden soll." +msgstr "VarName: Parameter, der der Subroutine übergeben werden soll." #: 03090409.xhp msgctxt "" @@ -28214,7 +28214,7 @@ "par_id3151384\n" "help.text" msgid "Returns the Unicode value of the first character in a string expression." -msgstr "Gibt den Unicodewert des ersten Zeichens eines Zeichenkettenausdrucks zurück. " +msgstr "Gibt den Unicodewert des ersten Zeichens eines Zeichenkettenausdrucks zurück." #: 03120111.xhp msgctxt "" @@ -28878,7 +28878,7 @@ "par_id3155411\n" "help.text" msgid "Characters that must be preceded by a backslash in the format code in order to be displayed as literal characters are date- and time-formatting characters (a, c, d, h, m, n, p, q, s, t, w, y, /, :), numeric-formatting characters (#, 0, %, E, e, comma, period), and string-formatting characters (@, &, <, >, !)." -msgstr "Die Zeichen, denen Sie im Formatcode einen umgekehrten Schrägstrich voranstellen müssen, damit sie als normales Zeichen (also nicht in ihrer Sonderbedeutung) angezeigt werden, sind die Zeichen zur Formatierung von Datumsangaben (a, c, d, h, m, n, p, q, s, t, w, y, /, :), von Zahlen (#, 0, %, E, e, Komma, Punkt) und von Zeichenketten (@, &, <, >, !)." +msgstr "Die Zeichen, denen Sie im Formatcode einen umgekehrten Schrägstrich voranstellen müssen, damit sie als normales Zeichen (also nicht in ihrer Sonderbedeutung) angezeigt werden, sind die Zeichen zur Formatierung von Datum- und Zeitangaben (a, c, d, h, m, n, p, q, s, t, w, y, /, :), von Zahlen (#, 0, %, E, e, Komma, Punkt) und von Zeichenketten (@, &, <, >, !)." #: 03120301.xhp msgctxt "" @@ -31974,7 +31974,7 @@ "bm_id8334604\n" "help.text" msgid "filepicker;API service" -msgstr "filepicker;API-Dienst" +msgstr "filepicker; API-Dienst" #: 03131600.xhp msgctxt "" @@ -34358,7 +34358,7 @@ "hd_id3154232\n" "help.text" msgid "%PRODUCTNAME Basic Help" -msgstr "Hilfe zu %PRODUCTNAME-Basic" +msgstr "Hilfe zu %PRODUCTNAME Basic" #: main0601.xhp msgctxt "" @@ -34382,7 +34382,7 @@ "hd_id3146957\n" "help.text" msgid "Working with %PRODUCTNAME Basic" -msgstr "Arbeiten mit %PRODUCTNAME-Basic" +msgstr "Arbeiten mit %PRODUCTNAME Basic" #: main0601.xhp msgctxt "" @@ -34438,7 +34438,7 @@ "hd_id051820170407499827\n" "help.text" msgid "These exclusive VBA functions are enabled when Option VBASupport 1 is the first line of a %PRODUCTNAME Basic module." -msgstr "Diese exklusiven VBA-Funktionen werden aktiviert, wenn die erste Zeile eines %PRODUCTNAME Basic Moduls Option VBASupport 1 lautet." +msgstr "Diese exklusiven VBA-Funktionen werden aktiviert, wenn die erste Zeile eines %PRODUCTNAME Basic-Moduls Option VBASupport 1 lautet." #: special_vba_func.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/scalc/00.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/scalc/00.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/scalc/00.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/scalc/00.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-30 09:54+0200\n" -"PO-Revision-Date: 2017-06-24 04:13+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-11-28 18:21+0000\n" +"Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1498277610.000000\n" +"X-POOTLE-MTIME: 1511893281.000000\n" #: 00000004.xhp msgctxt "" @@ -1190,7 +1190,7 @@ "par_id3149401\n" "help.text" msgid "AutoFilter" -msgstr "Automatischer Filter" +msgstr "AutoFilter" #: 00000412.xhp msgctxt "" @@ -1430,7 +1430,7 @@ "par_id3153555\n" "help.text" msgid "Ungroup" -msgstr "Gruppierung entfernen" +msgstr "Gruppierung aufheben" #: 00000412.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/scalc/01.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/scalc/01.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-01 17:04+0000\n" +"PO-Revision-Date: 2017-12-10 12:13+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1509555869.000000\n" +"X-POOTLE-MTIME: 1512907984.000000\n" #: 01120000.xhp msgctxt "" @@ -2006,7 +2006,7 @@ "hd_id3155764\n" "help.text" msgid "Date & time" -msgstr "Datum & Zeit" +msgstr "Datum und Zeit" #: 02150000.xhp msgctxt "" @@ -2174,7 +2174,7 @@ "hd_id3146918\n" "help.text" msgid "Delete entire row(s)" -msgstr "Ganze Zeile löschen" +msgstr "Ganze Zeile(n) löschen" #: 02160000.xhp msgctxt "" @@ -2190,7 +2190,7 @@ "hd_id3155114\n" "help.text" msgid "Delete entire column(s)" -msgstr "Ganze Spalte löschen" +msgstr "Ganze Spalte(n) löschen" #: 02160000.xhp msgctxt "" @@ -3782,7 +3782,7 @@ "hd_id3155443\n" "help.text" msgid "Date & Time" -msgstr "Datum & Zeit" +msgstr "Datum und Zeit" #: 04060100.xhp msgctxt "" @@ -4718,7 +4718,7 @@ "bm_id3148462\n" "help.text" msgid "DSTDEV function standard deviations in databases;based on a sample" -msgstr "DBSTABW (Funktion)Standardabweichung in Datenbanken; basierend auf eine Stichprobe" +msgstr "DBSTABW (Funktion)Standardabweichungen in Datenbanken; basierend auf einer Stichprobe" #: 04060101.xhp msgctxt "" @@ -4734,7 +4734,7 @@ "par_id3154605\n" "help.text" msgid "DSTDEV calculates the standard deviation of a population based on a sample, using the numbers in a database column that match the given conditions. The records are treated as a sample of data. That means that the children in the example represent a cross section of all children. Note that a representative result can not be obtained from a sample of less than one thousand." -msgstr "DBSTDABW berechnet die Standardabweichung einer Grundgesamtheit auf Grundlage einer Stichprobe. Hierzu verwendet die Funktion die Zahlen einer Datenbankspalte, die mit den gegebenen Bedingungen übereinstimmen. Die Datensätze werden wie eine Datenprobe behandelt. Das bedeutet, dass die Kinder im Beispiel einen Durchschnitt aller Kinder darstellen. Beachten Sie hierbei, dass mit Stichproben von weniger als tausend Einzeldaten kein repräsentatives Ergebnis erzielt werden kann." +msgstr "DBSTDABW berechnet die Standardabweichung einer Grundgesamtheit, basierend auf einer Stichprobe. Hierzu verwendet die Funktion die Zahlen einer Datenbankspalte, die mit den gegebenen Bedingungen übereinstimmen. Die Datensätze werden wie eine Datenprobe behandelt. Das bedeutet, dass die Kinder im Beispiel einen Durchschnitt aller Kinder darstellen. Beachten Sie hierbei, dass mit Stichproben von weniger als tausend Einzeldaten kein repräsentatives Ergebnis erzielt werden kann." #: 04060101.xhp msgctxt "" @@ -4790,7 +4790,7 @@ "bm_id3150429\n" "help.text" msgid "DSTDEVP function standard deviations in databases;based on populations" -msgstr "DBSTDABWN (Funktion)Standardabweichung in Datenbanken; basierend auf Verteilungen" +msgstr "DBSTDABWN (Funktion)Standardabweichungen in Datenbanken; basierend auf Verteilungen" #: 04060101.xhp msgctxt "" @@ -5006,7 +5006,7 @@ "bm_id3153880\n" "help.text" msgid "DVARP function variances;based on populations" -msgstr "DBVARIANZEN (Funktion)Varianzen; basierend auf Gesamtheit" +msgstr "DBVARIANZEN (Funktion)Varianzen; basierend auf Verteilungen" #: 04060101.xhp msgctxt "" @@ -5078,7 +5078,7 @@ "tit\n" "help.text" msgid "Date & Time Functions" -msgstr "Kategorie Datum & Zeit" +msgstr "Datums- und Zeitfunktionen" #: 04060102.xhp msgctxt "" @@ -5086,7 +5086,7 @@ "bm_id3154536\n" "help.text" msgid "date and time functions functions; date & time Function Wizard; date & time" -msgstr "Datums- und ZeitfunktionenFunktionen; Datum & ZeitFunktions-Assistent; Datum & Zeit" +msgstr "Datums- und ZeitfunktionenFunktionen; Datum und ZeitFunktions-Assistent; Datum und Zeit" #: 04060102.xhp msgctxt "" @@ -5582,7 +5582,7 @@ "bm_id3151240\n" "help.text" msgid "ACCRINTM function accrued interests;one-off payments" -msgstr "AUFGELZINSF (Funktion)Aufgelaufene Zinsen; einmalige Auszahlung" +msgstr "AUFGELZINSF (Funktion)Aufgelaufene Zinsen; einmalige Auszahlungen" #: 04060103.xhp msgctxt "" @@ -5662,7 +5662,7 @@ "par_id3154541\n" "help.text" msgid "A security is issued on 2001-04-01. The maturity date is set for 2001-06-15. The Rate is 0.1 or 10% and Par is 1000 currency units. The basis of the daily/annual calculation is the daily balance (3). How much interest has accrued?" -msgstr "Ein Wertpapier wird am 01.04.2001 ausgegeben. Der Fälligkeitstermin ist auf den 15.06.2001 festgelegt. Nominalzins sei 10% oder 0,1 und der Nennwert sei 1000 Währungseinheiten. Basis der Berechnung ist taggenau (3). Wie hoch sind die aufgelaufenen Zinsen?" +msgstr "Ein Wertpapier wird am 01.04.2001 ausgegeben. Der Fälligkeitstermin ist auf den 15.06.2001 festgelegt. Nominalzins sei 10 % oder 0,1 und der Nennwert sei 1000 Währungseinheiten. Basis der Berechnung ist taggenau (3). Wie hoch sind die aufgelaufenen Zinsen?" #: 04060103.xhp msgctxt "" @@ -5814,7 +5814,7 @@ "par_id3153334\n" "help.text" msgid "Enter these values either as numbers, expressions or references. If, for example, interest is paid annually at 8%, but you want to use month as your period, enter 8%/12 under Rate and %PRODUCTNAME Calc with automatically calculate the correct factor." -msgstr "Sie können die Werte als Zahlen, Ausdrücke oder Bezüge eingeben. Erhalten Sie beispielsweise 8% Zinsen jährlich, möchten aber als Periode den Monat eingeben, so geben Sie in das Feld Zinsen 8%/12 ein und %PRODUCTNAME Calc berechnet automatisch den korrekten Faktor." +msgstr "Sie können die Werte als Zahlen, Ausdrücke oder Bezüge eingeben. Erhalten Sie beispielsweise 8 % Zinsen jährlich, möchten aber als Periode den Monat eingeben, so geben Sie in das Feld Zinsen 8%/12 ein und %PRODUCTNAME Calc berechnet automatisch den korrekten Faktor." #: 04060103.xhp msgctxt "" @@ -5886,7 +5886,7 @@ "par_id3145225\n" "help.text" msgid "What is the present value of an investment, if 500 currency units are paid out monthly and the annual interest rate is 8%? The payment period is 48 months and 20,000 currency units are to remain at the end of the payment period." -msgstr "Wie hoch ist der Barwert einer Investition, wenn monatlich 500 Währungseinheiten ausgezahlt werden, der Zinssatz 8% pro Jahr beträgt? Der Zahlungszeitraum beträgt 48 Monate und als Endwert sollen noch 20.000 Währungseinheiten übrig bleiben." +msgstr "Wie hoch ist der Barwert einer Investition, wenn monatlich 500 Währungseinheiten ausgezahlt werden, der Zinssatz 8 % pro Jahr beträgt? Der Zahlungszeitraum beträgt 48 Monate und als Endwert sollen noch 20.000 Währungseinheiten übrig bleiben." #: 04060103.xhp msgctxt "" @@ -6518,7 +6518,7 @@ "par_id3152797\n" "help.text" msgid "=DISC(\"2001-01-25\";\"2001-11-15\";97;100;3) returns about 0.0372 or 3.72 per cent." -msgstr "=DISAGIO(\"25.1.2001\";\"15.11.2001\";97;100;3) ergibt ungefähr 0,0372 oder 3,72%." +msgstr "=DISAGIO(\"25.1.2001\";\"15.11.2001\";97;100;3) ergibt ungefähr 0,0372 oder 3,72 %." #: 04060103.xhp msgctxt "" @@ -6526,7 +6526,7 @@ "bm_id3154695\n" "help.text" msgid "DURATION_ADD function Microsoft Excel functions durations;fixed interest securities" -msgstr "LAUFZEIT_ADD (Funktion)Microsoft Excel-FunktionenLaufzeit; Wertpapiere mit Festzins" +msgstr "LAUFZEIT_ADD (Funktion)Microsoft Excel-FunktionenLaufzeiten; Wertpapiere mit Festzins" #: 04060103.xhp msgctxt "" @@ -6702,7 +6702,7 @@ "par_id3144499\n" "help.text" msgid "If the annual nominal interest rate is 9.75% and four interest calculation periods are defined, what is the actual interest rate (effective rate)?" -msgstr "Wenn der jährliche Nominalzins 9,75% beträgt und vier Zinsberechnungszeiträume festgelegt sind, wie hoch ist dann tatsächliche Zinssatz (Effektivzins)?" +msgstr "Wenn der jährliche Nominalzins 9,75 % beträgt und vier Zinsberechnungszeiträume festgelegt sind, wie hoch ist dann tatsächliche Zinssatz (Effektivzins)?" #: 04060103.xhp msgctxt "" @@ -6710,7 +6710,7 @@ "par_id3150772\n" "help.text" msgid "=EFFECTIVE(9.75%;4) = 10.11% The annual effective rate is therefore 10.11%." -msgstr "=EFFEKTIV(9,75%;4) = 10,11%. Der jährliche effektive Zins beträgt demzufolge 10,11%." +msgstr "=EFFEKTIV(9,75%;4) = 10,11 %. Der jährliche effektive Zins beträgt demzufolge 10,11 %." #: 04060103.xhp msgctxt "" @@ -6782,7 +6782,7 @@ "par_id3158426\n" "help.text" msgid "What is the effective annual rate of interest for a 5.25% nominal rate and quarterly payment." -msgstr "Welcher Effektivzins ergibt sich bei 5,25% Nominalzins und vierteljährlicher Zahlung?" +msgstr "Welcher Effektivzins ergibt sich bei 5,25 % Nominalzins und vierteljährlicher Zahlung?" #: 04060103.xhp msgctxt "" @@ -6790,7 +6790,7 @@ "par_id3148927\n" "help.text" msgid "=EFFECT_ADD(0.0525;4) returns 0.053543 or 5.3543%." -msgstr "=EFFEKTIV_ADD(0,0525;4) ergibt 0,053543 beziehungsweise 5,3534%." +msgstr "=EFFEKTIV_ADD(0,0525;4) ergibt 0,053543 oder 5,3543 %." #: 04060103.xhp msgctxt "" @@ -6982,7 +6982,7 @@ "par_id3154608\n" "help.text" msgid "Period is the length of each period. The length must be entered in the same date unit as the depreciation period." -msgstr "Zeitraum ist die Länge einer Periode. Die Länge muss in in derselben Zeiteinheit wie die Nutzungsdauer angegeben werden." +msgstr "Zeitraum ist die Länge einer Periode. Die Länge muss in derselben Zeiteinheit wie die Nutzungsdauer angegeben werden." #: 04060103.xhp msgctxt "" @@ -7102,7 +7102,7 @@ "par_id3150630\n" "help.text" msgid "Under the assumption that cell contents are A1=-10000, A2=3500, A3=7600 and A4=1000, the formula =IRR(A1:A4) gives a result of 11,33%." -msgstr "Unter der Annahme, dass die Zellinhalte A1=-10000, A2=3500, A3=7600 and A4=1000 sind, ergibt die Formel =IKV(A1:A4) ein Ergebnis von 11,33%." +msgstr "Unter der Annahme, dass die Zellinhalte A1=-10000, A2=3500, A3=7600 and A4=1000 sind, ergibt die Formel =IKV(A1:A4) ein Ergebnis von 11,33 %." #: 04060103.xhp msgctxt "" @@ -7190,7 +7190,7 @@ "par_id3149558\n" "help.text" msgid "For a credit amount of 120,000 currency units with a two-year term and monthly installments, at a yearly interest rate of 12% the level of interest after 1.5 years is required." -msgstr "Bei einer Kreditsumme von 120.000 Währungseinheiten mit zweijähriger Laufzeit und monatlicher Tilgung, bei einem jährlichen Zinssatz von 12% wird die Höhe der Zinsen nach 1,5 Jahren gesucht." +msgstr "Bei einer Kreditsumme von 120.000 Währungseinheiten mit zweijähriger Laufzeit und monatlicher Tilgung, bei einem jährlichen Zinssatz von 12 % wird die Höhe der Zinsen nach 1,5 Jahren gesucht." #: 04060103.xhp msgctxt "" @@ -8006,7 +8006,7 @@ "par_id3156316\n" "help.text" msgid "Tests for error conditions, including the #N/A error value, and returns TRUE or FALSE." -msgstr "Prüft auf Fehlerbedingungen (einschließlich dem Fehlerwert #NV) und ergibt WAHR oder FALSCH." +msgstr "Prüft auf Fehlerbedingungen, einschließlich dem Fehlerwert #NV, und ergibt WAHR oder FALSCH." #: 04060104.xhp msgctxt "" @@ -8606,7 +8606,7 @@ "bm_id3153685\n" "help.text" msgid "ISNA function #N/A error;recognizing" -msgstr "ISTNV (Funktion)#N/V-Fehler; erkennen" +msgstr "ISTNV (Funktion)#NV-Fehler; erkennen" #: 04060104.xhp msgctxt "" @@ -8678,7 +8678,7 @@ "bm_id31536851\n" "help.text" msgid "IFNA function #N/A error;testing" -msgstr "WENNNV (Funktion)#NV-Fehler; Testen" +msgstr "WENNNV (Funktion)#NV-Fehler; testen" #: 04060104.xhp msgctxt "" @@ -8694,7 +8694,7 @@ "par_id31491051\n" "help.text" msgid "Returns the value if the cell does not contains the #N/A (value not available) error value, or the alternative value if it does." -msgstr "Ergibt Wert, wenn die Zelle nicht den Fehlerwert #NV (Wert nicht verfügbar) enthält, oder Alternativer Wert, wenn sie den Fehlerwert enthält." +msgstr "Ergibt den Wert, sofern die Zelle nicht den Fehlerwert #NV (Wert nicht verfügbar) enthält, oder den alternativen Wert, wenn sie den Fehlerwert enthält." #: 04060104.xhp msgctxt "" @@ -9166,7 +9166,7 @@ "bm_id3156275\n" "help.text" msgid "NA function #N/A error;assigning to a cell" -msgstr "NV (Funktion)#N/V-Fehler; einer Zelle zuweisen" +msgstr "NV (Funktion)#NV-Fehler; einer Zelle zuweisen" #: 04060104.xhp msgctxt "" @@ -9742,7 +9742,7 @@ "par_id3154375\n" "help.text" msgid "In the above formats, the number of decimal places after the decimal separator is given as a number. Example: the number format #,##0.0 returns ,1 and the number format 00.000% returns P3" -msgstr "In den obigen Formaten wird die Anzahl der Nachkommastellen als eine Zahl zurückgegeben. Beispiel: Das Zahlenformat #.##0,0 ergibt ,1 und das Zahlenformat 00,000% ergibt P3" +msgstr "In den obigen Formaten wird die Anzahl der Nachkommastellen als eine Zahl zurückgegeben. Beispiel: Das Zahlenformat #.##0,0 ergibt ,1 und das Zahlenformat 00,000 % ergibt P3" #: 04060104.xhp msgctxt "" @@ -10486,7 +10486,7 @@ "par_id3154943\n" "help.text" msgid "This category contains the Mathematical functions for Calc. To open the Function Wizard, choose Insert - Function." -msgstr "Diese Kategorie enthält mathematische Funktionen. Um den Funktions-Assistenten zu öffnen, wählen Sie Einfügen - Funktion...." +msgstr "Diese Kategorie enthält mathematische Funktionen für Calc. Um den Funktions-Assistenten zu öffnen, wählen Sie Einfügen - Funktion...." #: 04060106.xhp msgctxt "" @@ -11814,7 +11814,7 @@ "par_id3150592\n" "help.text" msgid "Returns e raised to the power of a number. The constant e has a value of approximately 2.71828182845904." -msgstr "Ergibt die Potenz von e mit der eingegebenen Zahl. Die Konstante e hat etwas den Wert 2,71828182845904." +msgstr "Ergibt die Potenz von e mit der eingegebenen Zahl. Die Konstante e hat etwa den Wert 2,71828182845904." #: 04060106.xhp msgctxt "" @@ -12390,7 +12390,7 @@ "bm_id3155802\n" "help.text" msgid "COMBIN function number of combinations" -msgstr "KOMBINATIONEN (Funktion)Anzahl; an Kombinationen" +msgstr "KOMBINATIONEN (Funktion)Anzahl an Kombinationen" #: 04060106.xhp msgctxt "" @@ -12478,7 +12478,7 @@ "bm_id3150284\n" "help.text" msgid "COMBINA function number of combinations with repetitions" -msgstr "KOMBINATIONEN2 (Funktion)Anzahl; an Kombinationen mit Wiederholungen" +msgstr "KOMBINATIONEN2 (Funktion)Anzahl an Kombinationen mit Wiederholungen" #: 04060106.xhp msgctxt "" @@ -13830,7 +13830,7 @@ "par_id3145899\n" "help.text" msgid "=ROUND(-32.4834;3) returns -32.483. Change the cell format to see all decimals." -msgstr "=RUNDEN(-32,4834;3) ergibt -32,483. Ändern Sie das Zellenformat, um alle Dezimalzahlen anzuzeigen." +msgstr "=RUNDEN(-32,4834;3) ergibt -32,483. Ändern Sie das Zellenformat, um alle Dezimalstellen anzuzeigen." #: 04060106.xhp msgctxt "" @@ -14414,7 +14414,7 @@ "par_id3151740\n" "help.text" msgid "=SUM(A1;A3;B5) calculates the sum of the three cells. =SUM (A1:E10) calculates the sum of all cells in the A1 to E10 cell range." -msgstr "=SUMME(A1;A3;B5) berechnet die Summe der der Werte der angegebenen drei Zellen. =SUMME (A1:E10) berechnet die Summe der Werte aller Zellen im rechteckigen Bereich A1 bis E10." +msgstr "=SUMME(A1;A3;B5) berechnet die Summe der Werte der angegebenen drei Zellen. =SUMME (A1:E10) berechnet die Summe der Werte aller Zellen im rechteckigen Bereich A1 bis E10." #: 04060106.xhp msgctxt "" @@ -14726,7 +14726,7 @@ "bm_id3165633\n" "help.text" msgid "AutoFilter function; subtotals sums;of filtered data filtered data; sums SUBTOTAL function" -msgstr "AutoFilter; TeilergebnisseSummen; von gefilterten DatenGefilterte Daten; SummenTEILERGEBNIS (Funktion)" +msgstr "AutoFilter (Funktion); TeilergebnisseSummen; von gefilterten DatenGefilterte Daten; SummenTEILERGEBNIS (Funktion)" #: 04060106.xhp msgctxt "" @@ -17582,7 +17582,7 @@ "par_id3154428\n" "help.text" msgid "data_X is a corresponding single row or column range specifying the x coordinates. If data_X is omitted it defaults to 1, 2, 3, ..., n. If there is more than one set of variables data_X may be a range with corresponding multiple rows or columns." -msgstr "DatenX ist eine Zeile oder Spalte, die die X-Koordinaten bestimmt. Wenn DatenX fehlt, ist es standardmäßig 1, 2, 3, ..., n. Wenn es mehr als eine Menge von Variablen gibt, kann DatenX ein Bereich von mehreren Zeilen oder Spalten sein." +msgstr "DatenX ist eine Zeile oder Spalte, die die X-Koordinaten bestimmt. Wenn DatenX fehlt, ist es standardmäßig 1, 2, 3, ..., n Wenn es mehr als eine Menge von Variablen gibt, kann DatenX ein Bereich von mehreren Zeilen oder Spalten sein." #: 04060107.xhp msgctxt "" @@ -20342,7 +20342,7 @@ "bm_id3148829\n" "help.text" msgid "number of sheets; function SHEETS function" -msgstr "Anzahl; der Tabellen (Funktion)TABELLEN (Funktion)" +msgstr "Anzahl der Tabellen; FunktionTABELLEN (Funktion)" #: 04060109.xhp msgctxt "" @@ -21198,7 +21198,7 @@ "par_idN11803\n" "help.text" msgid "To open a hyperlinked cell with the keyboard, select the cell, press F2 to enter the Edit mode, move the cursor in front of the hyperlink, press Shift+F10, and then choose Open Hyperlink." -msgstr "Um eine Hyperlink-Zelle über die Tastatur zu öffnen, markieren Sie die Zelle, drücken F2, um in den Bearbeitungsmodus zu wechseln, stellen den Cursor vor den Hyperlink, drücken Umschalt+ F10, und wählen dann Hyperlink öffnen." +msgstr "Um eine Hyperlink-Zelle über die Tastatur zu öffnen, markieren Sie die Zelle, drücken F2, um in den Bearbeitungsmodus zu wechseln, stellen den Cursor vor den Hyperlink, drücken Umschalt+F10, und wählen dann Hyperlink öffnen." #: 04060109.xhp msgctxt "" @@ -21246,7 +21246,7 @@ "par_idN11827\n" "help.text" msgid "=HYPERLINK(\"http://www.example.org\") displays the text \"http://www.example.org\" in the cell and executes the hyperlink http://www.example.org when clicked." -msgstr "=HYPERLINK(\"http://www.beispiel.org\") zeigt in der Zelle den Text \"http://www.beispiel.org\" an und führt den Hyperlink http://www.beispiel.org, wenn auf diesen geklickt wird." +msgstr "=HYPERLINK(\"http://www.beispiel.org\") zeigt in der Zelle den Text \"http://www.beispiel.org\" an und führt den Hyperlink http://www.beispiel.org aus, wenn auf diesen geklickt wird." #: 04060109.xhp msgctxt "" @@ -25014,7 +25014,7 @@ "bm_id3151076\n" "help.text" msgid "programming; add-insshared libraries; programmingexternal DLL functionsfunctions; $[officename] Calc add-in DLLadd-ins; for programming" -msgstr "Programmieren; Add-insGemeinsame Bibliotheken; ProgrammierungExterne DLL-FunktionenFunktionen; $[officename] Calc Add-in DLLAdd-ins; zum Programmieren" +msgstr "Programmieren; Add-insGemeinsame Bibliotheken; ProgrammierungExterne DLL-FunktionenFunktionen; $[officename] Calc Add-in-DLLAdd-ins; zum Programmieren" #: 04060112.xhp msgctxt "" @@ -30622,7 +30622,7 @@ "par_id3150572\n" "help.text" msgid "=ODDLYIELD(\"1999-04-20\";\"1999-06-15\"; \"1998-10-15\"; 0.0375; 99.875; 100;2;0) returns 0.044873 or 4.4873%." -msgstr "=UNREGLEREND(\"2.4.1999\";\"15.6.1999\";\"15.10.1998\";0,0375;99,875;100;2;0) ergibt 0,044873 oder 4,4873%." +msgstr "=UNREGLEREND(\"2.4.1999\";\"15.6.1999\";\"15.10.1998\";0,0375;99,875;100;2;0) ergibt 0,044873 oder 4,4873 %." #: 04060118.xhp msgctxt "" @@ -30806,7 +30806,7 @@ "par_id3149708\n" "help.text" msgid "Guess (optional) is a guess that can be input for the internal rate of return. The default is 10%." -msgstr "SW (optional) ist ein Schätzwert, der für die internen Zinsfuß eingegeben werden kann. 10% ist der Standardwert." +msgstr "SW (optional) ist ein Schätzwert, der für die internen Zinsfuß eingegeben werden kann. 10 % ist der Standardwert." #: 04060118.xhp msgctxt "" @@ -31070,7 +31070,7 @@ "par_id3150525\n" "help.text" msgid "Calculation of the net present value for the above-mentioned five payments for a notional internal rate of return of 6%." -msgstr "Berechne den Kapitalwert für die oben genannten fünf Zahlungen bei einem rechnerischen Zinsfuß von 6%." +msgstr "Berechnung des Kapitalwerts für die oben genannten fünf Zahlungen bei einem rechnerischen Zinsfuß von 6 %." #: 04060118.xhp msgctxt "" @@ -31286,7 +31286,7 @@ "par_id3155586\n" "help.text" msgid "=RATE(3;-10;900) = -75.63% The interest rate is therefore 75.63%." -msgstr "=ZINS(3;-10;900) ergibt -75,63%. Der Zinssatz beträgt demzufolge 75,63%." +msgstr "=ZINS(3;-10;900) ergibt -75,63 %. Der Zinssatz beträgt demzufolge 75,63 %." #: 04060118.xhp msgctxt "" @@ -31382,7 +31382,7 @@ "par_id3151125\n" "help.text" msgid "=INTRATE(\"1990-01-15\"; \"2002-05-05\"; 1000000; 2000000; 3) returns 8.12%." -msgstr "=ZINSSATZ(\"15.1.1990\"; \"5.5.2002\"; 1000000; 2000000; 3) ergibt 8,12%." +msgstr "=ZINSSATZ(\"15.1.1990\"; \"5.5.2002\"; 1000000; 2000000; 3) ergibt 8,12 %." #: 04060118.xhp msgctxt "" @@ -32014,7 +32014,7 @@ "par_id3149438\n" "help.text" msgid "What is the interest rate during the fifth period (year) if the constant interest rate is 5% and the cash value is 15,000 currency units? The periodic payment is seven years." -msgstr "Wie hoch ist die Verzinsung in der fünften Periode (Jahr), wenn der konstante Zins auf 5% beziffert ist und der Barwert 15000 Währungseinheiten beträgt? Der periodische Zahlungszeitraum beträgt sieben Jahre." +msgstr "Wie hoch ist die Verzinsung in der fünften Periode (Jahr), wenn der konstante Zins auf 5 % beziffert ist und der Barwert 15000 Währungseinheiten beträgt? Der periodische Zahlungszeitraum beträgt sieben Jahre." #: 04060118.xhp msgctxt "" @@ -32118,7 +32118,7 @@ "par_id3146813\n" "help.text" msgid "What is the value at the end of an investment if the interest rate is 4% and the payment period is two years, with a periodic payment of 750 currency units. The investment has a present value of 2,500 currency units." -msgstr "Wie hoch ist der Endwert einer Investition, wenn der Zinssatz 4% beträgt und der Zahlungszeitraum bei einer periodischen Ratenzahlung von 750 Währungseinheiten sich auf zwei Jahre erstreckt. Die Investition hat einen gegenwärtigen Wert von 2.500 Währungseinheiten." +msgstr "Wie hoch ist der Endwert einer Investition, wenn der Zinssatz 4 % beträgt und der Zahlungszeitraum bei einer periodischen Ratenzahlung von 750 Währungseinheiten sich auf zwei Jahre erstreckt. Die Investition hat einen gegenwärtigen Wert von 2.500 Währungseinheiten." #: 04060118.xhp msgctxt "" @@ -32198,7 +32198,7 @@ "par_id3148638\n" "help.text" msgid "1000 currency units have been invested in for three years. The interest rates were 3%, 4% and 5% per annum. What is the value after three years?" -msgstr "Es wurden 1000 Währungseinheiten auf drei Jahre angelegt. Die Zinssätze betrugen jährlich 3%, 4% und 5%. Wie hoch ist der Wert nach drei Jahren?" +msgstr "Es wurden 1000 Währungseinheiten auf drei Jahre angelegt. Die Zinssätze betrugen jährlich 3 %, 4 % und 5 %. Wie hoch ist der Wert nach drei Jahren?" #: 04060118.xhp msgctxt "" @@ -32214,7 +32214,7 @@ "bm_id3156435\n" "help.text" msgid "calculating;number of payment periods payment periods;number of number of payment periods NPER function" -msgstr "Berechnen; Anzahl der ZahlungsperiodenZahlungsperioden; Anzahl berechnenAnzahl; der Zahlungsperioden berechnenZZR (Funktion)" +msgstr "Berechnen; Anzahl der ZahlungsperiodenZahlungsperioden; Anzahl berechnenAnzahl der Zahlungsperioden berechnenZZR (Funktion)" #: 04060118.xhp msgctxt "" @@ -32302,7 +32302,7 @@ "par_id3147378\n" "help.text" msgid "How many payment periods does a payment period cover with a periodic interest rate of 6%, a periodic payment of 153.75 currency units and a present cash value of 2.600 currency units." -msgstr "Über wie viele Zahlungsperioden erstreckt sich ein Zahlungszeitraum bei einem periodischen Zinssatz von 6%, einer periodischen Zahlung von 153,75 Währungseinheiten und einem gegenwärtigen Barwert von 2.600 Währungseinheiten." +msgstr "Über wie viele Zahlungsperioden erstreckt sich ein Zahlungszeitraum bei einem periodischen Zinssatz von 6 %, einer periodischen Zahlung von 153,75 Währungseinheiten und einem gegenwärtigen Barwert von 2.600 Währungseinheiten." #: 04060118.xhp msgctxt "" @@ -32462,7 +32462,7 @@ "par_id3154811\n" "help.text" msgid "How high is the periodic monthly payment at an annual interest rate of 8.75% over a period of 3 years? The cash value is 5,000 currency units and is always paid at the beginning of a period. The future value is 8,000 currency units." -msgstr "Wie hoch ist die periodische Tilgung bei einem jährlichen Zinssatz von 8,75% und einem Zahlungszeitraum von 3 Jahren? Der Barwert beträgt 5.000 Währungseinheiten, und es soll stets zu Beginn einer Periode gezahlt werden. Der zukünftige Wert beträgt 8.000 Währungseinheiten." +msgstr "Wie hoch ist die periodische Tilgung bei einem jährlichen Zinssatz von 8,75 % und einem Zahlungszeitraum von 3 Jahren? Der Barwert beträgt 5.000 Währungseinheiten, und es soll stets zu Beginn einer Periode gezahlt werden. Der zukünftige Wert beträgt 8.000 Währungseinheiten." #: 04060119.xhp msgctxt "" @@ -32694,7 +32694,7 @@ "par_id3150661\n" "help.text" msgid "Rate: 9.00 per cent per annum (9% / 12 = 0.0075), Duration: 30 years (payment periods = 30 * 12 = 360), NPV: 125000 currency units." -msgstr "Zins: 9,00 Prozent pro Jahr (9% / 12 = 0,0075), Laufzeit: 30 Jahre (Zahlungsperioden = 30 * 12 = 360), Bw: 125000 Währungseinheiten." +msgstr "Zins: 9,00 Prozent pro Jahr (9 % / 12 = 0,0075), Laufzeit: 30 Jahre (Zahlungsperioden = 30 * 12 = 360), Bw: 125000 Währungseinheiten." #: 04060119.xhp msgctxt "" @@ -32950,7 +32950,7 @@ "par_id3147566\n" "help.text" msgid "Rate: 9.00 per cent per annum (9% / 12 = 0.0075), Duration: 30 years (NPER = 30 * 12 = 360), Pv: 125000 currency units." -msgstr "Zins: 9,00 Prozent pro Jahr (9% / 12 = 0,0075), Laufzeit: 30 Jahre (ZZR = 30 * 12 = 360), BW: 125000 Währungseinheiten." +msgstr "Zins: 9,00 Prozent pro Jahr (9 % / 12 = 0,0075), Laufzeit: 30 Jahre (ZZR = 30 * 12 = 360), BW: 125000 Währungseinheiten." #: 04060119.xhp msgctxt "" @@ -33382,7 +33382,7 @@ "par_id3148480\n" "help.text" msgid "At an interest rate of 4.75%, a cash value of 25,000 currency units and a future value of 1,000,000 currency units, a duration of 79.49 payment periods is returned. The periodic payment is the resulting quotient from the future value and the duration, in this case 1,000,000/79.49=12,850.20." -msgstr "Bei einem Zinssatz von 4,75%, einem Gegenwartswert von 25.000 Währungseinheiten und einem zukünftigen Wert von 1.000.000 Währungseinheiten ergibt sich eine Laufzeit von 79,49 Zahlungsperioden. Die periodische Zahlung ergibt sich als Quotient aus zukünftigem Wert und Laufzeit, also: 1.000.000/79,49=12.580,20." +msgstr "Bei einem Zinssatz von 4,75 %, einem Gegenwartswert von 25.000 Währungseinheiten und einem zukünftigen Wert von 1.000.000 Währungseinheiten ergibt sich eine Laufzeit von 79,49 Zahlungsperioden. Die periodische Zahlung ergibt sich als Quotient aus zukünftigem Wert und Laufzeit, also: 1.000.000/79,49=12.580,20." #: 04060119.xhp msgctxt "" @@ -33446,7 +33446,7 @@ "par_id3166444\n" "help.text" msgid "Life is the depreciation period determining the number of periods in the depreciation of the asset." -msgstr "Nutzungsdauer ist die Abschreibungsdauer, die die Anzahl von Zeiträumen innerhalb der Abschreibungsdauer des Wirtschaftsguts bestimmt." +msgstr "Nutzungsdauer ist die Abschreibungsdauer, die die Anzahl von Zeiträumen innerhalb der Abschreibungsdauer des Wirtschaftsgutes bestimmt." #: 04060119.xhp msgctxt "" @@ -33654,7 +33654,7 @@ "par_id3154800\n" "help.text" msgid "What is the net present value of periodic payments of 10, 20 and 30 currency units with a discount rate of 8.75%. At time zero the costs were payed as -40 currency units." -msgstr "Wie lautet der Barwert von regelmäßigen Einzahlungen von 10, 20 und 30 Währungseinheiten mit einem Diskontsatz von 8,75%. Zum Zeitpunkt Null wurden die Kosten als -40 Währungseinheiten gezahlt." +msgstr "Wie lautet der Barwert von regelmäßigen Einzahlungen von 10, 20 und 30 Währungseinheiten mit einem Diskontsatz von 8,75 %. Zum Zeitpunkt Null wurden die Kosten als -40 Währungseinheiten gezahlt." #: 04060119.xhp msgctxt "" @@ -33734,7 +33734,7 @@ "par_id3147091\n" "help.text" msgid "What is the nominal interest per year for an effective interest rate of 13.5% if twelve payments are made per year." -msgstr "Wie hoch sind die jährlichen Nominalzinsen zu einer Effektivverzinsung von 13,5%, wenn zwölf Zinszahlung pro Jahr erfolgen." +msgstr "Wie hoch sind die jährlichen Nominalzinsen zu einer Effektivverzinsung von 13,5 %, wenn zwölf Zinszahlung pro Jahr erfolgen." #: 04060119.xhp msgctxt "" @@ -33742,7 +33742,7 @@ "par_id3154831\n" "help.text" msgid "=NOMINAL(13.5%;12) = 12.73%. The nominal interest rate per year is 12.73%." -msgstr "=NOMINAL(13,5%;12) = 12,73%. Der Nominalzinssatz pro Jahr beträgt 12,73%." +msgstr "=NOMINAL(13,5 %;12) = 12,73 %. Der Nominalzinssatz pro Jahr beträgt 12,73 %." #: 04060119.xhp msgctxt "" @@ -33814,7 +33814,7 @@ "par_id3145777\n" "help.text" msgid "What is the nominal rate of interest for a 5.3543% effective rate of interest and quarterly payment." -msgstr "Welcher Nominalzins ergibt sich bei 5,3543% effektiven Zins und vierteljährlicher Zahlung?" +msgstr "Welcher Nominalzins ergibt sich bei 5,3543 % effektiven Zins und vierteljährlicher Zahlung?" #: 04060119.xhp msgctxt "" @@ -33822,7 +33822,7 @@ "par_id3156146\n" "help.text" msgid "=NOMINAL_ADD(5.3543%;4) returns 0.0525 or 5.25%." -msgstr "=NOMINAL_ADD(5,3543%;4) ergibt 0,0525 oder 5,25%." +msgstr "=NOMINAL_ADD(5,3543%;4) ergibt 0,0525 oder 5,25 %." #: 04060119.xhp msgctxt "" @@ -34062,7 +34062,7 @@ "par_id3147352\n" "help.text" msgid "Assuming a cell content of A1 = -5, A2 = 10, A3 = 15, and A4 = 8, and an investment value of 0.5 and a reinvestment value of 0.1, the result is 94.16%." -msgstr "Wenn von den Zellinhalten A1 = -5, A2 = 10, A3 = 15 A4 = 8, einem Anlagewert von 0,5 und einem Wiederanlagewert von 0,1 ausgegangen wird, ist das Ergebnis 94,16%." +msgstr "Wenn von den Zellinhalten A1 = -5, A2 = 10, A3 = 15 A4 = 8, einem Anlagewert von 0,5 und einem Wiederanlagewert von 0,1 ausgegangen wird, ist das Ergebnis 94,16 %." #: 04060119.xhp msgctxt "" @@ -35310,7 +35310,7 @@ "bm_id3149729\n" "help.text" msgid "COUNTA function number of entries" -msgstr "ANZAHL2 (Funktion)Anzahl; von Einträgen" +msgstr "ANZAHL2 (Funktion)Anzahl von Einträgen" #: 04060181.xhp msgctxt "" @@ -35654,7 +35654,7 @@ "par_id3149393\n" "help.text" msgid "=B(10;1/6;2) returns a probability of 29%." -msgstr "=B(10;1/6;2) ergibt eine Wahrscheinlichkeit von 29%." +msgstr "=B(10;1/6;2) ergibt eine Wahrscheinlichkeit von 29 %." #: 04060181.xhp msgctxt "" @@ -36638,7 +36638,7 @@ "par_id3158401\n" "help.text" msgid "If the probability of error is 5%, the die is not true. If the probability of error is 2%, there is no reason to believe it is fixed." -msgstr "Mit einer Irrtumswahrscheinlichkeit von 5% ist der Würfel nicht echt, mit einer Irrtumswahrscheinlichkeit von 2% gibt es keinen Grund, seine Echtheit anzuzweifeln." +msgstr "Mit einer Irrtumswahrscheinlichkeit von 5 % ist der Würfel nicht echt, mit einer Irrtumswahrscheinlichkeit von 2 % gibt es keinen Grund, seine Echtheit anzuzweifeln." #: 04060181.xhp msgctxt "" @@ -36750,7 +36750,7 @@ "par_id2958401\n" "help.text" msgid "If the probability of error is 5%, the die is not true. If the probability of error is 2%, there is no reason to believe it is fixed." -msgstr "Mit einer Irrtumswahrscheinlichkeit von 5% ist der Würfel nicht echt, mit einer Irrtumswahrscheinlichkeit von 2% gibt es keinen Grund, seine Echtheit anzuzweifeln." +msgstr "Mit einer Irrtumswahrscheinlichkeit von 5 % ist der Würfel nicht echt, mit einer Irrtumswahrscheinlichkeit von 2 % gibt es keinen Grund, seine Echtheit anzuzweifeln." #: 04060181.xhp msgctxt "" @@ -37318,7 +37318,7 @@ "par_id3156141\n" "help.text" msgid "If the Chi square value of the random sample is 13.27 and if the experiment has 5 degrees of freedom, then the hypothesis is assured with a probability of error of 2%." -msgstr "Beträgt der Chi-Quadrat-Wert der Stichprobe 13,27 und hat das Experiment 5 Freiheitsgrade, dann ist die Hypothese mit einer Irrtumswahrscheinlichkeit von 2% gesichert." +msgstr "Beträgt der Chi-Quadrat-Wert der Stichprobe 13,27 und hat das Experiment 5 Freiheitsgrade, dann ist die Hypothese mit einer Irrtumswahrscheinlichkeit von 2 % gesichert." #: 04060181.xhp msgctxt "" @@ -37494,7 +37494,7 @@ "par_id2956141\n" "help.text" msgid "If the Chi square value of the random sample is 13.27 and if the experiment has 5 degrees of freedom, then the hypothesis is assured with a probability of error of 2%." -msgstr "Beträgt der Chi-Quadrat-Wert der Stichprobe 13,27 und hat das Experiment 5 Freiheitsgrade, dann ist die Hypothese mit einer Irrtumswahrscheinlichkeit von 2% gesichert." +msgstr "Beträgt der Chi-Quadrat-Wert der Stichprobe 13,27 und hat das Experiment 5 Freiheitsgrade, dann ist die Hypothese mit einer Irrtumswahrscheinlichkeit von 2 % gesichert." #: 04060181.xhp msgctxt "" @@ -39278,7 +39278,7 @@ "par_id3150758\n" "help.text" msgid "Calculates the probability of observing a z-statistic greater than the one computed based on a sample." -msgstr "Berechnet die Wahrscheinlichkeit der Beobachtung einer z-Statistik größer als die auf Basis einer Probe berechneten." +msgstr "Berechnet die Wahrscheinlichkeit der Beobachtung einer z-Statistik, die größer ist als die auf Basis einer Stichprobe berechneten." #: 04060182.xhp msgctxt "" @@ -39350,7 +39350,7 @@ "par_id2950758\n" "help.text" msgid "Calculates the probability of observing a z-statistic greater than the one computed based on a sample." -msgstr "Berechnet die Wahrscheinlichkeit der Beobachtung einer z-Statistik, die größer ist, als die auf Basis einer Probe berechneten." +msgstr "Berechnet die Wahrscheinlichkeit der Beobachtung einer z-Statistik, die größer ist als die auf Basis einer Stichprobe berechneten." #: 04060182.xhp msgctxt "" @@ -39558,7 +39558,7 @@ "par_id3154904\n" "help.text" msgid "=HYPGEOMDIST(2;2;90;100) yields 0.81. If 90 out of 100 pieces of buttered toast fall from the table and hit the floor with the buttered side first, then if 2 pieces of buttered toast are dropped from the table, the probability is 81%, that both will strike buttered side first." -msgstr "=HYPGEOMVERT(2;2;90;100) ergibt 0,81. Wenn ein mit Butter bestrichenes Toastbrot vom Tisch auf den Boden fällt, fällt in 90 von 100 Fällen zuerst die mit Butter bestrichene Seite auf den Boden. Daraus folgt: Bei 2 mit Butter bestrichenen Toastbroten beträgt die Wahrscheinlichkeit, dass beide mit der bestrichenen Seite zuerst auf den Boden fallen, 81%." +msgstr "=HYPGEOMVERT(2;2;90;100) ergibt 0,81. Wenn ein mit Butter bestrichenes Toastbrot vom Tisch auf den Boden fällt, fällt in 90 von 100 Fällen zuerst die mit Butter bestrichene Seite auf den Boden. Daraus folgt: Bei 2 mit Butter bestrichenen Toastbroten beträgt die Wahrscheinlichkeit, dass beide mit der bestrichenen Seite zuerst auf den Boden fallen, 81 %." #: 04060182.xhp msgctxt "" @@ -39654,7 +39654,7 @@ "par_id2954904\n" "help.text" msgid "=HYPGEOM.DIST(2;2;90;100;0) yields 0.8090909091. If 90 out of 100 pieces of buttered toast fall from the table and hit the floor with the buttered side first, then if 2 pieces of buttered toast are dropped from the table, the probability is 81%, that both will strike buttered side first." -msgstr "=HYPGEOM.VERT(2;2;90;100;0) ergibt 0,8090909091. Wenn ein mit Butter bestrichenes Toastbrot vom Tisch auf den Boden fällt, fällt in 90 von 100 Fällen zuerst die mit Butter bestrichene Seite auf den Boden. Daraus folgt: Bei 2 mit Butter bestrichenen Toastbroten beträgt die Wahrscheinlichkeit, dass beide mit der bestrichenen Seite zuerst auf den Boden fallen, 81%." +msgstr "=HYPGEOM.VERT(2;2;90;100;0) ergibt 0,8090909091. Wenn ein mit Butter bestrichenes Toastbrot vom Tisch auf den Boden fällt, fällt in 90 von 100 Fällen zuerst die mit Butter bestrichene Seite auf den Boden. Daraus folgt: Bei 2 mit Butter bestrichenen Toastbroten beträgt die Wahrscheinlichkeit, dass beide mit der bestrichenen Seite zuerst auf den Boden fallen, 81 %." #: 04060182.xhp msgctxt "" @@ -41550,7 +41550,7 @@ "par_id2963792\n" "help.text" msgid "If the data set contains no duplicate data points, MODE.SNGL returns the #VALUE! error value." -msgstr "Wenn der Datensatz keine doppelten Datenpunkte enthält, ergibt MODUS.EINF den Fehlerwert #Wert!." +msgstr "Wenn der Datensatz keine doppelten Datenpunkte enthält, gibt MODUS.EINF den Fehlerwert #Wert! zurück." #: 04060184.xhp msgctxt "" @@ -42502,7 +42502,7 @@ "par_id3154940\n" "help.text" msgid "Returns the alpha-percentile of data values in an array. A percentile returns the scale value for a data series which goes from the smallest (Alpha=0) to the largest value (alpha=1) of a data series. For Alpha = 25%, the percentile means the first quartile; Alpha = 50% is the MEDIAN." -msgstr "Ergibt den Alpha-Prozentsatz des Datenwerts in einer Matrix. Ein Prozentsatz ergibt einen Skalenwert für eine Datenreihe, die vom kleinsten (Alpha = 0) bis zum größten Wert (Alpha = 1) der Datenreihe reicht. Bei Alpha = 25 % ist der Prozentsatz das erste Quartil; Alpha = 50 % ist der MEDIAN." +msgstr "Ergibt den Alpha-Prozentsatz des Datenwerts in einer Matrix. Ein Prozentsatz ergibt einen Skalenwert für eine Datenreihe, die vom kleinsten (Alpha = 0) bis zum größten Wert (Alpha = 1) der Datenreihe reicht. Bei Alpha = 25 % entspricht dem ersten Quartil; Alpha = 50 % ist der MEDIAN." #: 04060184.xhp msgctxt "" @@ -42574,7 +42574,7 @@ "par_id2854940\n" "help.text" msgid "Returns the Alpha'th percentile of a supplied range of values for a given value of Alpha, within the range 0 to 1 (exclusive). A percentile returns the scale value for a data series which goes from the smallest (Alpha=0) to the largest value (Alpha=1) of a data series. For Alpha = 25%, the percentile means the first quartile; Alpha = 50% is the MEDIAN." -msgstr "Ergibt das Alpha-te Quantil eines übergebenen Bereichs von Werten für einen übergegebenen Wert Alpha im Bereich von 0 bis 1 (exklusiv). Ein Quantil ergibt den Skalenwert für eine Datenreihe, die vom kleinsten Wert (Alpha=0) bis zum größten Wert (Alpha=1) eines Datenbereichs reicht. Alpha = 25% entspricht dem ersten Quartil; Alpha = 50% ist der MEDIAN." +msgstr "Ergibt das Alpha-te Quantil eines übergebenen Bereichs von Werten für einen übergegebenen Wert Alpha im Bereich von 0 bis 1 (exklusiv). Ein Quantil ergibt den Skalenwert für eine Datenreihe, die vom kleinsten Wert (Alpha=0) bis zum größten Wert (Alpha=1) eines Datenbereichs reicht. Alpha = 25 % entspricht dem ersten Quartil; Alpha = 50 % ist der MEDIAN." #: 04060184.xhp msgctxt "" @@ -42662,7 +42662,7 @@ "par_id2954940\n" "help.text" msgid "Returns the alpha-percentile of data values in an array. A percentile returns the scale value for a data series which goes from the smallest (Alpha=0) to the largest value (alpha=1) of a data series. For Alpha = 25%, the percentile means the first quartile; Alpha = 50% is the MEDIAN." -msgstr "Ergibt den Alpha-Prozentsatz des Datenwerts in einer Matrix. Ein Prozentsatz ergibt einen Skalenwert für eine Datenreihe, die vom kleinsten (Alpha = 0) bis zum größten Wert (Alpha = 1) der Datenreihe reicht. Bei Alpha = 25 % ist der Prozentsatz das erste Viertel; Alpha = 50 % ist der MEDIAN." +msgstr "Ergibt den Alpha-Prozentsatz des Datenwerts in einer Matrix. Ein Prozentsatz ergibt einen Skalenwert für eine Datenreihe, die vom kleinsten (Alpha = 0) bis zum größten Wert (Alpha = 1) der Datenreihe reicht. Bei Alpha = 25 % entspricht dem ersten Viertel; Alpha = 50 % ist der MEDIAN." #: 04060184.xhp msgctxt "" @@ -43030,7 +43030,7 @@ "par_id3155589\n" "help.text" msgid "Type represents the type of quartile. (0 = MIN, 1 = 25%, 2 = 50% (MEDIAN), 3 = 75% and 4 = MAX.)" -msgstr "Typ ist der Typ des Quartils. (0 = MIN, 1 = 25%, 2 = 50% (MEDIAN) ,3 = 75% und 4 = MAX.)" +msgstr "Typ ist der Typ des Quartils. (0 = MIN, 1 = 25 %, 2 = 50 % (MEDIAN) ,3 = 75 % und 4 = MAX.)" #: 04060184.xhp msgctxt "" @@ -43126,7 +43126,7 @@ "par_id2859276\n" "help.text" msgid "=QUARTILE.EXC(A1:A50;2) returns the value of which 50% of the scale corresponds to the lowest to highest values in the range A1:A50." -msgstr "=QUARTILE.EXKL(A1:A50;2) ergibt den Wert, von dem 50% der Skala den Werten (niedrigster bis höchster Wert) im Bereich A1:A50 entsprechen." +msgstr "=QUARTILE.EXKL(A1:A50;2) ergibt den Wert, von dem 50 % der Skala den Werten (niedrigster bis höchster Wert) im Bereich A1:A50 entsprechen." #: 04060184.xhp msgctxt "" @@ -43190,7 +43190,7 @@ "par_id2955589\n" "help.text" msgid "Type represents the type of quartile. (0 = MIN, 1 = 25%, 2 = 50% (MEDIAN), 3 = 75% and 4 = MAX.)" -msgstr "Typ legt die Art des Quartils fest (0 = MIN, 1 = 25%, 2 = 50% (MEDIAN), 3 = 75% und 4 = MAX)." +msgstr "Typ legt die Art des Quartils fest (0 = MIN, 1 = 25 %, 2 = 50 % (MEDIAN), 3 = 75 % und 4 = MAX)." #: 04060184.xhp msgctxt "" @@ -43206,7 +43206,7 @@ "par_id2959276\n" "help.text" msgid "=QUARTILE.INC(A1:A50;2) returns the value of which 50% of the scale corresponds to the lowest to highest values in the range A1:A50." -msgstr "=QUARTILE.INKL(A1:A50;2) ergibt den Wert, von dem 50% der Skala den Werten (niedrigster bis höchster Wert) im Bereich A1:A50 entsprechen." +msgstr "=QUARTILE.INKL(A1:A50;2) ergibt den Wert, von dem 50 % der Skala den Werten (niedrigster bis höchster Wert) im Bereich A1:A50 entsprechen." #: 04060185.xhp msgctxt "" @@ -43758,7 +43758,7 @@ "bm_id3149143\n" "help.text" msgid "STDEV function standard deviations in statistics;based on a sample" -msgstr "STABW (Funktion)Standardabweichung in Statistiken; basierend auf eine Stichprobe" +msgstr "STABW (Funktion)Standardabweichungen in Statistiken; basierend auf einer Stichprobe" #: 04060185.xhp msgctxt "" @@ -43774,7 +43774,7 @@ "par_id3146888\n" "help.text" msgid "Estimates the standard deviation based on a sample." -msgstr "Berechnet eine Schätzung der Standardabweichung auf Basis einer Stichprobe." +msgstr "Berechnet eine Schätzung der Standardabweichung, basierend auf einer Stichprobe." #: 04060185.xhp msgctxt "" @@ -43838,7 +43838,7 @@ "par_id3151234\n" "help.text" msgid "Calculates the standard deviation of an estimation based on a sample." -msgstr "Berechnet eine Schätzung der Standardabweichung auf Basis einer Stichprobe. Text wird als 0 gewertet." +msgstr "Berechnet eine Schätzung der Standardabweichung, basierend auf einer Stichprobe." #: 04060185.xhp msgctxt "" @@ -43886,7 +43886,7 @@ "bm_id3149734\n" "help.text" msgid "STDEVP function standard deviations in statistics;based on a population" -msgstr "STABW.N (Funktion)Standardabweichung in Statistiken; basierend auf einer Gesamtheit" +msgstr "STABW.N (Funktion)Standardabweichungen in Statistiken; basierend auf einer Gesamtheit" #: 04060185.xhp msgctxt "" @@ -44014,7 +44014,7 @@ "bm_id2849734\n" "help.text" msgid "STDEV.S function standard deviations in statistics;based on a sample" -msgstr "STABW.S (Funktion)Standardabweichungen in Statistiken; basierend auf eine Stichprobe" +msgstr "STABW.S (Funktion)Standardabweichungen in Statistiken; basierend auf einer Stichprobe" #: 04060185.xhp msgctxt "" @@ -44662,7 +44662,7 @@ "par_id3154748\n" "help.text" msgid "Returns the sum of squares of deviations based on a sample mean." -msgstr "Ergibt die Summe der quadrierten Abweichungen von Datenpunkten ausgehend von deren Stichprobenmittelwert." +msgstr "Ergibt die Summe der quadrierten Abweichungen von Datenpunkten, ausgehend von deren Stichprobenmittelwert." #: 04060185.xhp msgctxt "" @@ -45422,7 +45422,7 @@ "par_id3159165\n" "help.text" msgid "Estimates the variance based on a sample." -msgstr "Berechnet ausgehend von einer Stichprobe eine Schätzung der Varianz." +msgstr "Berechnet eine Schätzung der Varianz, basierend auf einer Stichprobe." #: 04060185.xhp msgctxt "" @@ -45486,7 +45486,7 @@ "par_id2959165\n" "help.text" msgid "Estimates the variance based on a sample." -msgstr "Berechnet ausgehend von einer Stichprobe eine Schätzung der Varianz." +msgstr "Berechnet eine Schätzung der Varianz, basierend auf einer Stichprobe." #: 04060185.xhp msgctxt "" @@ -45550,7 +45550,7 @@ "par_id3155122\n" "help.text" msgid "Estimates a variance based on a sample. The value of text is 0." -msgstr "Berechnet ausgehend von einer Stichprobe eine Schätzung der Varianz. Text wird als 0 gewertet." +msgstr "Berechnet eine Schätzung der Varianz, basierend auf einer Stichprobe. Text wird als 0 gewertet." #: 04060185.xhp msgctxt "" @@ -45790,7 +45790,7 @@ "bm_id3154599\n" "help.text" msgid "PERMUT function number of permutations" -msgstr "VARIATIONEN (Funktion)Anzahl; an Variationen" +msgstr "VARIATIONEN (Funktion)Anzahl an Variationen" #: 04060185.xhp msgctxt "" @@ -46286,7 +46286,7 @@ "bm_id3156445\n" "help.text" msgid "formulas; operatorsoperators; formula functionsdivision sign, see also operatorsmultiplication sign, see also operatorsminus sign, see also operatorsplus sign, see also operatorstext operatorscomparisons;operators in Calcarithmetical operatorsreference operators" -msgstr "Formeln;Operatoren Operatoren;Formelfunktionen Divisionszeichen (Operator) Multiplikationszeichen (Operator) Minuszeichen (Operator) Pluszeichen (Operator) Textoperatoren Vergleiche;Operatoren in Calc arithmetische Operatoren Bezugsoperatoren" +msgstr "Formeln; OperatorenOperatoren; FormelfunktionenDivisionszeichen, siehe auch OperatorenMultiplikationszeichen, siehe auch OperatorenMinuszeichen, siehe auch OperatorenPluszeichen, siehe auch OperatorenTextoperatorenVergleiche; Operatoren in Calcarithmetische OperatorenBezugsoperatoren" #: 04060199.xhp msgctxt "" @@ -46486,7 +46486,7 @@ "par_id3145632\n" "help.text" msgid "15%" -msgstr "15%" +msgstr "15 %" #: 04060199.xhp msgctxt "" @@ -47190,7 +47190,7 @@ "bm_id3153195\n" "help.text" msgid "cell ranges; inserting named rangesinserting; cell ranges pasting; cell ranges" -msgstr "Zellbereiche;benannte Bereiche einfügen Einfügen;Zellbereiche Einfügen;benannte Bereiche" +msgstr "Zellbereiche; benannte Bereiche einfügen Einfügen; ZellbereicheÜbertragen; Zellbereiche" #: 04070200.xhp msgctxt "" @@ -47526,7 +47526,7 @@ "bm_id3154126\n" "help.text" msgid "formula list window function list window inserting functions; function list window" -msgstr "Funktions-Assistent Funktion einfügen;Assistent Formel einfügen;Funktions-Assistent" +msgstr "FormellistenfensterFunktionslistenfensterFunktionen einfügen; Funktionslistenfenster" #: 04080000.xhp msgctxt "" @@ -48326,7 +48326,7 @@ "par_id3147396\n" "help.text" msgid "Alternatively, click the sheet tab while pressing the CommandAlt key. Now you can change the name directly. " -msgstr "Alternativ dazu klicken Sie mit gedrückter BefehlAlt-Taste auf das Tabellenregister. Sie können nun direkt den Namen ändern. " +msgstr "Alternativ dazu klicken Sie mit gedrückter BefehlAlt-Taste auf das Tabellenregister. Sie können nun direkt den Namen ändern. " #: 05050300.xhp msgctxt "" @@ -48838,7 +48838,7 @@ "par_idN109C3\n" "help.text" msgid "If you clear both boxes, this will result in a scaling factor of 100%." -msgstr "Wenn Sie beide Markierfelder deaktivieren, wird ein Skalierungsfaktor von 100% verwendet." +msgstr "Wenn Sie beide Markierfelder deaktivieren, wird ein Skalierungsfaktor von 100 % verwendet." #: 05070500.xhp msgctxt "" @@ -49134,7 +49134,7 @@ "bm_id3150447\n" "help.text" msgid "Stylist, see Styles and Formatting window Styles and Formatting window formats; Styles and Formatting window formatting; Styles and Formatting window paint can for applying styles" -msgstr "Formatvorlagen, (Fenster)FormatvorlagenFormate; FormatvorlagenFormatierungen; FormatvorlagenGießkannenmodus zum Anwenden von Formatvorlagen" +msgstr "Formatvorlagen (Fenster)FormatvorlagenFormate; FormatvorlagenFormatierungen; FormatvorlagenGießkannenmodus zum Anwenden von Formatvorlagen" #: 05100000.xhp msgctxt "" @@ -51886,7 +51886,7 @@ "par_id3149378\n" "help.text" msgid "Natural sort is a sort algorithm that sorts string-prefixed numbers based on the value of the numerical element in each sorted number, instead of the traditional way of sorting them as ordinary strings. For instance, let's assume you have a series of values such as, A1, A2, A3, A4, A5, A6, ..., A19, A20, A21. When you put these values into a range of cells and run the sort, it will become A1, A11, A12, A13, ..., A19, A2, A20, A21, A3, A4, A5, ..., A9. While this sorting behavior may make sense to those who understand the underlying sorting mechanism, to the rest of the population it seems completely bizarre, if not outright inconvenient. With the natural sort feature enabled, values such as the ones in the above example get sorted \"properly\", which improves the convenience of sorting operations in general." -msgstr "Natürliche Sortierung ist ein Sortieralgorithmus, der mit einer Zeichenkette vorangestellte Zahlen sortiert, die auf den Wert des Zahlenelements in jeder sortierten Zahl basiert, anstatt auf der traditionellen Art sie als gewöhnliche Zeichenketten zu sortieren. Nehmen Sie beispielsweise eine Wertereihe wie A1, A2, A3, A4, A5, A6, ..., A19, A20, A21. Wenn Sie diese Werte in einen Zellenbereich bringen und sie sortieren lassen, wird A1, A11, A12, A13, ..., A19, A2, A20, A21, A3, A4, A5, ..., A9 herauskommen. Während dieses Sortierverhalten vielleicht für die Sinn macht, die den zugrunde liegenden Sortiermechanismus verstehen, scheint er für den Rest der Bevölkerung verwirrend oder zumindest unpraktisch. Mit der aktivierten Funktion Natürliche Sortierung werden die die im obigen Beispiel angegebenen Werte „richtig“ sortiert, was den Komfort der Sortieroperationen im Allgemeinen verbessert." +msgstr "Natürliche Sortierung ist ein Sortieralgorithmus, der mit einer Zeichenkette vorangestellte Zahlen sortiert, die auf den Wert des Zahlenelements in jeder sortierten Zahl basiert, anstatt auf der traditionellen Art sie als gewöhnliche Zeichenketten zu sortieren. Nehmen Sie beispielsweise eine Wertereihe wie A1, A2, A3, A4, A5, A6, ..., A19, A20, A21. Wenn Sie diese Werte in einen Zellenbereich bringen und sie sortieren lassen, wird A1, A11, A12, A13, ..., A19, A2, A20, A21, A3, A4, A5, ..., A9 herauskommen. Während dieses Sortierverhalten vielleicht für die Sinn macht, die den zugrunde liegenden Sortiermechanismus verstehen, scheint er für den Rest der Bevölkerung verwirrend oder zumindest unpraktisch. Mit der aktivierten Funktion Natürliche Sortierung werden die im obigen Beispiel angegebenen Werte „richtig“ sortiert, was den Komfort der Sortieroperationen im Allgemeinen verbessert." #: 12030200.xhp msgctxt "" @@ -52126,7 +52126,7 @@ "tit\n" "help.text" msgid "AutoFilter" -msgstr "Automatischer Filter" +msgstr "AutoFilter" #: 12040100.xhp msgctxt "" @@ -52390,7 +52390,7 @@ "bm_id3150276\n" "help.text" msgid "database ranges; hiding AutoFilter" -msgstr "Datenbankbereich; AutoFilter ausblenden" +msgstr "Datenbankbereiche; AutoFilter ausblenden" #: 12040500.xhp msgctxt "" @@ -53854,7 +53854,7 @@ "par_id3150768\n" "help.text" msgid "To define the layout of a pivot table, drag and drop data field buttons onto the Page Fields, Row Fields, Column Fields, and Data Fields areas. You can also use drag and drop to rearrange the data fields on a pivot table." -msgstr "Um das Layout für Ihre Pivot-Tabelle festzulegen, ziehen Sie die Datenfeldschaltflächen in die Bereiche Zeilenfelder, Spaltenfelder und Datenfelder und legen sie an der gewünschten Stelle ab. Die Datenfelder lassen sich in der Tabelle auch durch Ziehen-und-Ablegen umordnen." +msgstr "Um das Layout für Ihre Pivot-Tabelle festzulegen, ziehen Sie die Datenfeldschaltflächen in die Bereiche Zeilenfelder, Spaltenfelder und Datenfelder und legen Sie diese an der gewünschten Stelle ab. Die Datenfelder lassen sich in der Tabelle auch durch Ziehen-und-Ablegen umordnen." #: 12090102.xhp msgctxt "" @@ -55638,7 +55638,7 @@ "par_idN106B0\n" "help.text" msgid "Allow only values or strings specified in a list. Strings and values can be mixed. Numbers evaluate to their value, so if you enter the number 1 in the list, the entry 100% is also valid." -msgstr "Gestatten Sie nur Werte oder Zeichenkette gemäß einer Liste. Zeichenketten und Werte können gemischt werden. Zahlen werden entsprechend ihres Wertes ausgewertet, wenn Sie also die Zahl 1 in die Liste eingeben, ist auch der Eintrag 100% gültig." +msgstr "Gestatten Sie nur Werte oder Zeichenkette gemäß einer Liste. Zeichenketten und Werte können gemischt werden. Zahlen werden entsprechend ihres Wertes ausgewertet, wenn Sie also die Zahl 1 in die Liste eingeben, ist auch der Eintrag 100 % gültig." #: 12120100.xhp msgctxt "" @@ -56382,7 +56382,7 @@ "par_id040320161859450\n" "help.text" msgid "The time line doesn't have to to be sorted, the functions will sort it for calculations.
The time line values must have a consistent step between them.
If a constant step can't be identified in the sorted time line, the functions will return the #NUM! error.
If the ranges of the time line and historical values aren't of same size, the functions will return the #N/A error.
If the time line contains less than 2 periods of data, the functions will return the #VALUE! Error." -msgstr "Der Zeitraum muss nicht sortiert sein, die Funktion sortiert die Werte für die Berechnung selbst.
Der Zeitbereich muss gleichbleibende Abstände aufweisen.
Wenn keine gleichbleibenden Abstände im Zeitraum festgestellt werden können, gibt die Funktion einen Fehler #ZAHL! zurück.
Wenn Zeitraum und Werte nicht dieselbe Dimension aufweisen, gibt die Funktion einen Fehler #NV zurück.
Wenn Zeitraum weniger als zwei Perioden enthält, gibt die Funktion einen Fehler #WERT! zurück." +msgstr "Der Zeitraum muss nicht sortiert sein, die Funktion sortiert die Werte für die Berechnung selbst.
Der Zeitbereich muss gleichbleibende Abstände aufweisen.
Wenn keine gleichbleibenden Abstände im Zeitraum festgestellt werden können, gibt die Funktion den Fehler #ZAHL! zurück.
Wenn Zeitraum und Werte nicht dieselbe Dimension aufweisen, gibt die Funktion den Fehler #NV zurück.
Wenn der Zeitraum weniger als 2 Perioden enthält, gibt die Funktion den Fehler #WERT! zurück." #: exponsmooth_embd.xhp msgctxt "" @@ -56398,7 +56398,7 @@ "par_id0403201618594678\n" "help.text" msgid "Although the time line requires a constant step between data points, the function support up to 30% missing data points, and will add these data points." -msgstr "Obwohl der Zeitraum gleichbleibende Abstände zwischen den Datenpunkten erfordert, unterstützt die Funktion nur maximal 30% Fehlwerte, die sie ergänzen kann." +msgstr "Obwohl der Zeitraum gleichbleibende Abstände zwischen den Datenpunkten erfordert, unterstützt die Funktion nur maximal 30 % Fehlwerte, die sie ergänzen kann." #: exponsmooth_embd.xhp msgctxt "" @@ -57446,7 +57446,7 @@ "par_id243522732832394\n" "help.text" msgid "Calculates the average for values of the same range that are greater than the first smallest value of this range. Returns 25, because the first smallest value (the fourth row) does not participate in the calculation." -msgstr "Berechnet den Mittelwert der Werte desselben Bereichs, die größer als der der erst-kleinste Wert dieses Bereichs sind. Ergibt 25, da der erst-kleinste Wert (in der vierten Zeile) nicht in die Berechnung mit einbezogen wird." +msgstr "Berechnet den Mittelwert der Werte desselben Bereichs, die größer als der erst-kleinste Wert dieses Bereiches sind. Ergibt 25, da der erst-kleinste Wert (in der vierten Zeile) nicht in die Berechnung mit einbezogen wird." #: func_averageif.xhp msgctxt "" @@ -57726,7 +57726,7 @@ "par_id151201977228038\n" "help.text" msgid "In all examples below, ranges for average calculation contain the row #6, but it is ignored, because it contains text." -msgstr "In allen unten stehenden Beispielen enthält der Bereich für die Berechnung des Mittelwerts Zeile 6, wird aber ignoriert, da diese Text enthält." +msgstr "In allen unten stehenden Beispielen enthält der Bereich für die Berechnung des Mittelwerts die Zeile 6, diese wird aber ignoriert, da sie Text enthält." #: func_averageifs.xhp msgctxt "" @@ -57950,7 +57950,7 @@ "bm_id452245224522\n" "help.text" msgid "COUNTIFS function counting row;satisfying criteria counting column;satisfying criteria" -msgstr "Funktion ZÄHLENWENNSZeilen zählen; hinreichende BedingungenSpalten zählen; hinreichende Bedingungen" +msgstr "ZÄHLENWENNS (Funktion)Zeilen zählen; hinreichende BedingungenSpalten zählen; hinreichende Bedingungen" #: func_countifs.xhp msgctxt "" @@ -59638,7 +59638,7 @@ "par_id0403201618595126\n" "help.text" msgid "For example, with a 90% Confidence level, a 90% prediction interval will be computed (90% of future points are to fall within this radius from forecast)." -msgstr "Beispielsweise wird bei einem Konfidenzintervall von 90% ein Vorhersageintervall von 90% berechnet (90% der zukünftigen Werte sollten innerhalb des Vorhersageintervalls liegen)." +msgstr "Beispielsweise wird bei einem Konfidenzintervall von 90 % ein Vorhersageintervall von 90 % berechnet (90 % der zukünftigen Werte sollten innerhalb des Vorhersageintervalls liegen)." #: func_forecastetspiadd.xhp msgctxt "" @@ -59670,7 +59670,7 @@ "hd_id04032016112394554\n" "help.text" msgid "Returns 18.8061295551355, the prediction interval for additive forecast for January 2014 based on Values and Timeline named ranges above, 90% (=0.9) confidence level, with one sample per period, no missing data, and AVERAGE as aggregation." -msgstr "Ergibt 18,8061295551355, das Vorhersageintervall für die additive Vorhersage für Januar 2014 basierend auf den für Werte und Zeitraum benannten Bereichen oberhalb, einem 90% (=0,9) Konfidenzintervall, einer Periodenlänge von 1, keinen fehlenden Daten und MITTELWERT als Näherung." +msgstr "Ergibt 18,8061295551355, das Vorhersageintervall für die additive Vorhersage für Januar 2014 basierend auf den für Werte und Zeitraum benannten Bereichen oberhalb, einem 90 % (=0,9) Konfidenzintervall, einer Periodenlänge von 1, keinen fehlenden Daten und MITTELWERT als Näherung." #: func_forecastetspiadd.xhp msgctxt "" @@ -59758,7 +59758,7 @@ "par_id0403201618595126\n" "help.text" msgid "For example, with a 90% Confidence level, a 90% prediction interval will be computed (90% of future points are to fall within this radius from forecast)." -msgstr "Beispielsweise wird bei einem Konfidenzintervall von 90% ein Vorhersageintervall von 90% berechnet (90% der zukünftigen Werte sollten innerhalb des Vorhersageintervalls liegen)." +msgstr "Beispielsweise wird bei einem Konfidenzintervall von 90 % ein Vorhersageintervall von 90 % berechnet (90 % der zukünftigen Werte sollten innerhalb des Vorhersageintervalls liegen)." #: func_forecastetspimult.xhp msgctxt "" @@ -59790,7 +59790,7 @@ "hd_id04032016112394554\n" "help.text" msgid "Returns 20.1040952101013, the prediction interval for multiplicative forecast for January 2014 based on Values and Timeline named ranges above, confidence level of 90% (=0.9) with one sample per period, no missing data, and AVERAGE as aggregation." -msgstr "Ergibt 20,1040952101013, das Vorhersageintervall für die multiplikative Vorhersage für Januar 2014 basierend auf den für Werte und Zeitraum benannten Bereichen oberhalb, einem 90% (=0,9) Konfidenzintervall, einer Periodenlänge von 1, keinen fehlenden Daten und MITTELWERT als Näherung." +msgstr "Ergibt 20,1040952101013, das Vorhersageintervall für die multiplikative Vorhersage für Januar 2014 basierend auf den für Werte und Zeitraum benannten Bereichen oberhalb, einem 90 % (=0,9) Konfidenzintervall, einer Periodenlänge von 1, keinen fehlenden Daten und MITTELWERT als Näherung." #: func_forecastetspimult.xhp msgctxt "" @@ -61982,7 +61982,7 @@ "par_id1191767622119\n" "help.text" msgid "In all examples below, ranges for sum calculation contain the row #6, but it is ignored, because it contains text." -msgstr "In allen unten stehenden Beispielen enthält der Bereich für die Berechnung der Summe Zeile 6, wird aber ignoriert, da diese Text enthält." +msgstr "In allen unten stehenden Beispielen enthält der Bereich für die Berechnung der Summe die Zeile 6, diese wird aber ignoriert, da sie Text enthält." #: func_sumifs.xhp msgctxt "" @@ -62870,7 +62870,7 @@ "par_id3154281\n" "help.text" msgid "11 = Monday, system 1" -msgstr "11 = Montag, Sytem 1" +msgstr "11 = Montag, System 1" #: func_weeknum.xhp msgctxt "" @@ -66054,7 +66054,7 @@ "bm_id2764278\n" "help.text" msgid "Analysis toolpack;regression analysis regression analysis;Analysis toolpack Data statistics;regression analysis" -msgstr "Analysefunktionen; RegressionenRegressionen; AnalysefunktionenDatenstatistiken; Regressionen" +msgstr "Analysefunktionen; RegressionsanalyseRegressionsanalyse; AnalysefunktionenDatenstatistiken; Regressionsanalyse" #: statistics_regression.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/scalc/02.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/scalc/02.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/scalc/02.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/scalc/02.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-05-12 14:35+0200\n" -"PO-Revision-Date: 2017-10-22 07:46+0000\n" +"PO-Revision-Date: 2017-11-27 19:32+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1508658389.000000\n" +"X-POOTLE-MTIME: 1511811177.000000\n" #: 02130000.xhp msgctxt "" @@ -126,7 +126,7 @@ "par_id3155411\n" "help.text" msgid "1% corresponds to 0.01" -msgstr "1% entspricht 0,01" +msgstr "1 % entspricht 0,01" #: 02140000.xhp msgctxt "" @@ -134,7 +134,7 @@ "par_id3145749\n" "help.text" msgid "1 + 16% corresponds to 116% or 1.16" -msgstr "1 + 16% entspricht 116% oder 1,16" +msgstr "1 + 16% entspricht 116 % oder 1,16" #: 02140000.xhp msgctxt "" @@ -158,7 +158,7 @@ "tit\n" "help.text" msgid "Number format: Default" -msgstr "Zahlenformat: Vorgaben" +msgstr "Zahlenformat: Standard" #: 02150000.xhp msgctxt "" @@ -174,7 +174,7 @@ "par_id3163802\n" "help.text" msgid "Applies the default number format to the selected cells." -msgstr "Wendet das Standardzahlenformat auf die ausgewählten Zellen an." +msgstr "Wendet das vorgegebene Zahlenformat auf die ausgewählten Zellen an." #: 02150000.xhp msgctxt "" @@ -414,7 +414,7 @@ "bm_id3150084\n" "help.text" msgid "formula bar; functionsfunctions; formula bar icon" -msgstr "Rechenleiste; Funktion (Symbol)Funktion; Symbol in der Rechenleiste" +msgstr "Rechenleiste; Funktionen (Symbol)Funktionen; Symbol in der Rechenleiste" #: 06040000.xhp msgctxt "" @@ -734,7 +734,7 @@ "par_id3145171\n" "help.text" msgid "The maximum zoom factor is 400%." -msgstr "Der größte Zoomfaktor beträgt 400%." +msgstr "Der größte Zoomfaktor beträgt 400 %." #: 10050000.xhp msgctxt "" @@ -790,7 +790,7 @@ "par_id3150398\n" "help.text" msgid "The minimum zoom factor is 20%." -msgstr "Der kleinste Zoomfaktor beträgt 20%." +msgstr "Der niedrigste Zoomfaktor beträgt 20 %." #: 10060000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/scalc/04.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/scalc/04.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/scalc/04.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/scalc/04.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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" -"PO-Revision-Date: 2017-10-22 07:46+0000\n" +"PO-Revision-Date: 2017-11-15 10:28+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1508658400.000000\n" +"X-POOTLE-MTIME: 1510741695.000000\n" #: 01020000.xhp msgctxt "" @@ -950,7 +950,7 @@ "par_id3156128\n" "help.text" msgid "Ungroups the selected data range." -msgstr "Löst die Gruppierung des ausgewählten Datenbereichs auf." +msgstr "Hebt die Gruppierung des ausgewählten Datenbereichs auf." #: 01020000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/scalc/guide.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/scalc/guide.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/scalc/guide.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/scalc/guide.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-26 16:49+0000\n" +"PO-Revision-Date: 2017-12-09 15:38+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1509036589.000000\n" +"X-POOTLE-MTIME: 1512833910.000000\n" #: address_auto.xhp msgctxt "" @@ -246,7 +246,7 @@ "bm_id3156423\n" "help.text" msgid "filters, see also AutoFilter function AutoFilter function;applying sheets; filter values numbers; filter sheets columns; AutoFilter function drop-down menus in sheet columns database ranges; AutoFilter function" -msgstr "Filter, siehe AutoFilter-FunktionAutoFilter-Funktion; anwendenTabellen; FilterwerteZahlen; FiltertabelleSpalten; AutoFilter-FunktionKombinationsfelder in TabellenspaltenDatenbankbereiche; AutoFilter-Funktion" +msgstr "Filter, siehe auch AutoFilter-FunktionAutoFilter-Funktion; anwendenTabellen; FilterwerteZahlen; FiltertabellenSpalten; AutoFilter-FunktionKombinationsfelder in TabellenspaltenDatenbankbereiche; AutoFilter (Funktion)" #: autofilter.xhp msgctxt "" @@ -310,7 +310,7 @@ "par_id3153714\n" "help.text" msgid "To display all records again, select the all entry in the AutoFilter combo box. If you choose \"Standard\", the Standard Filter dialog appears, allowing you to set up a standard filter. Choose \"Top 10\" to display the highest 10 values only." -msgstr "Um wieder alle Datensätze einzublenden, wählen Sie Alles im Kombinationsfeld AutoFilter. Wenn Sie \"Standardfilter...\" wählen, wird der Dialog Standardfilter geöffnet, in dem Sie einen Standardfilter definieren können. Wählen Sie \"Top 10\", um nur die zehn höchsten Werte anzuzeigen." +msgstr "Um wieder alle Datensätze einzublenden, wählen Sie Alles im Kombinationsfeld AutoFilter. Wenn Sie \"Standardfilter...\" wählen, wird der Dialog Standardfilter geöffnet, in dem Sie einen Standardfilter definieren können. Wählen Sie \"Top 10\", um nur die 10 höchsten Werte anzuzeigen." #: autofilter.xhp msgctxt "" @@ -526,7 +526,7 @@ "bm_id3149346\n" "help.text" msgid "spreadsheets; backgrounds backgrounds;cell ranges tables; backgrounds cells; backgrounds rows, see also cells columns, see also cells" -msgstr "Tabellendokumente; HintergrundHintergrund; ZellbereicheTabellen; HintergrundZellen; HintergrundZeilen; HintergrundSpalten; Hintergrund" +msgstr "Tabellendokumente; HintergründeHintergründe; ZellbereicheTabellen; HintergründeZellen; HintergründeZeilen; siehe auch ZellenSpalten; siehe auch Zellen" #: background.xhp msgctxt "" @@ -646,7 +646,7 @@ "bm_id3457441\n" "help.text" msgid "cells;borders line arrangements with cells borders;cells" -msgstr "Zellen; UmrandungLinienanordnung mit ZellenUmrandung; Zellen" +msgstr "Zellen; UmrandungenLinienanordnung mit ZellenUmrandungen; Zellen" #: borders.xhp msgctxt "" @@ -1118,7 +1118,7 @@ "bm_id3146120\n" "help.text" msgid "dates; in cells times; in cells cells;date and time formats current date and time values" -msgstr "Datumsangabe; in ZellenUhrzeit; in ZellenZellen; Datums- und ZeitformatAktueller Datums- und Zeitwert" +msgstr "Datumsangaben; in ZellenUhrzeiten; in ZellenZellen; Daten- und ZeitformateAktueller Datums- und Zeitwert" #: calc_date.xhp msgctxt "" @@ -1558,7 +1558,7 @@ "bm_id3150868\n" "help.text" msgid "values; inserting in multiple cells inserting;values cell ranges;selecting for data entries areas, see also cell ranges" -msgstr "Werte; Einfügen in mehreren ZellenEinfügen; WerteZellbereich; auswählen für DateneingabeBereiche; Zellbereiche" +msgstr "Werte; einfügen in mehreren ZellenEinfügen; WerteZellbereiche; auswählen für DateneingabenBereiche; siehe auch Zellbereiche" #: cell_enter.xhp msgctxt "" @@ -1750,7 +1750,7 @@ "par_id3152985\n" "help.text" msgid "Select the protection options that you want. All options will be applied only after you protect the sheet from the Tools menu - see below." -msgstr "Wählen sie die gewünschten Zellschutzoptionen. Alle Optionen sind erst dann wirksam, wenn Sie die Tabelle, wie etwas weiter unten beschrieben, schützen." +msgstr "Wählen Sie die gewünschten Zellschutzoptionen. Alle Optionen sind erst dann wirksam, wenn Sie die Tabelle, wie etwas weiter unten beschrieben, schützen." #: cell_protect.xhp msgctxt "" @@ -1854,7 +1854,7 @@ "bm_id3153252\n" "help.text" msgid "cell protection; unprotecting protecting; unprotecting cells unprotecting cells" -msgstr "Zellschutz; aufhebenSchutz; Zellschutz aufhebenungeschützte Zellen" +msgstr "Zellschutz; aufhebenSchutz; Zellschutz aufhebenZellschutz aufheben" #: cell_unprotect.xhp msgctxt "" @@ -2310,7 +2310,7 @@ "par_id3152892\n" "help.text" msgid "Enter the URL of the document or Web page in the dialog. The URL must be in the format: http://www.my-bank.com/table.html. The URL for local or local area network files is the path seen in the File - Open dialog." -msgstr "Geben Sie im Dialog den URL des Dokuments oder der Webseite ein. Nutzen Sie folgende vollständige URL-Schreibweise: (fiktives Beispiel) http://www.meine-bank.com/tabelle.html. Einen Dateinamen aus dem lokalen oder Netzwerk-Dateisystem können Sie auch in der gewohnten Weise wie im Dialog Datei - Öffnen... eingeben." +msgstr "Geben Sie im Dialog die URL des Dokuments oder der Webseite ein. Nutzen Sie folgende vollständige URL-Schreibweise (fiktives Beispiel): http://www.meine-bank.com/tabelle.html. Einen Dateinamen aus dem lokalen oder Netzwerk-Dateisystem können Sie auch in der gewohnten Weise wie im Dialog Datei - Öffnen... eingeben." #: cellreferences_url.xhp msgctxt "" @@ -2806,7 +2806,7 @@ "bm_id3147434\n" "help.text" msgid "negative numbers numbers; highlighting negative numbers highlighting;negative numbers colors;negative numbers number formats;colors for negative numbers" -msgstr "Negative ZahlenZahlen; negative hervorhebenHervorheben; negative ZahlenFarbe; negative ZahlenZahlenformate; Farben für negative Zahlen" +msgstr "Negative ZahlenZahlen; negative hervorhebenHervorheben; negative ZahlenFarben; negative ZahlenZahlenformate; Farben für negative Zahlen" #: cellstyle_minusvalue.xhp msgctxt "" @@ -3494,7 +3494,7 @@ "bm_id3156329\n" "help.text" msgid "currency formats; spreadsheetscells; currency formatsinternational currency formatsformats; currency formats in cellscurrencies; default currenciesdefaults;currency formatschanging;currency formats" -msgstr "Währungsformate; TabellendokumenteZellen; WährungsformateInternationale WährungsformateFormate; Währungsformate in ZellenWährungen; StandardwährungenStandards; WährungsformateÄndern; Währungsformate" +msgstr "Währungsformate; TabellendokumenteZellen; WährungsformateInternationale WährungsformateFormate; Währungsformate in ZellenWährungen; StandardwährungenVoreinstellungen; WährungsformateÄndern; Währungsformate" #: currency_format.xhp msgctxt "" @@ -3574,7 +3574,7 @@ "bm_id3154758\n" "help.text" msgid "tables; database ranges database ranges; defining ranges; defining database ranges defining;database ranges" -msgstr "Tabelle; DatenbankbereicheDatenbankbereiche; definierenBereiche; Datenbankbereiche definierenDefinieren; Datenbankbereiche" +msgstr "Tabellen; DatenbankbereicheDatenbankbereiche; definierenBereiche; Datenbankbereiche definierenDefinieren; Datenbankbereiche" #: database_define.xhp msgctxt "" @@ -5262,7 +5262,7 @@ "tit\n" "help.text" msgid "Formatting Numbers With Decimals" -msgstr "Formatieren von Dezimalzahlen" +msgstr "Formatieren von Zahlen mit Dezimalstellen" #: format_value.xhp msgctxt "" @@ -5270,7 +5270,7 @@ "bm_id3145367\n" "help.text" msgid "numbers;formatting decimals formats; numbers in tables tables; number formats defaults; number formats in spreadsheets decimal places;formatting numbers formatting;numbers with decimals formatting;adding/deleting decimal places number formats; adding/deleting decimal places in cells deleting; decimal places decimal places; adding/deleting" -msgstr "Zahlen; Dezimalstellen formatierenFormate; Zahlen in TabellenTabellen; ZahlenformateStandards; Zahlenformate in TabellenDezimalstellen; Zahlen formatierenFormatierungen; Zahlen mit DezimalstellenFormatierungen; Dezimalstellen hinzufügen/löschenZahlenformate; Dezimalstellen in Zellen hinzufügen/löschenLöschen; DezimalstellenDezimalstellen; löschen/hinzufügen" +msgstr "Zahlen; Dezimalstellen formatierenFormate; Zahlen in TabellenTabellen; ZahlenformateVoreinstellungen; Zahlenformate in TabellenDezimalstellen; Zahlen formatierenFormatierungen; Zahlen mit DezimalstellenFormatierungen; Dezimalstellen hinzufügen/löschenZahlenformate; Dezimalstellen in Zellen hinzufügen/löschenLöschen; DezimalstellenDezimalstellen; löschen/hinzufügen" #: format_value.xhp msgctxt "" @@ -5278,7 +5278,7 @@ "hd_id3145367\n" "help.text" msgid "Formatting Numbers With Decimals" -msgstr "Formatieren von Dezimalzahlen" +msgstr "Formatieren von Zahlen mit Dezimalstellen" #: format_value.xhp msgctxt "" @@ -5294,7 +5294,7 @@ "par_id3154012\n" "help.text" msgid "To format numbers with decimals:" -msgstr "So formatieren Sie Zahlen mit Nachkommastellen:" +msgstr "So formatieren Sie Zahlen mit Dezimalstellen:" #: format_value.xhp msgctxt "" @@ -5310,7 +5310,7 @@ "par_id3153157\n" "help.text" msgid "On the Numbers tab you will see a selection of predefined number formats. In the bottom right in the dialog you will see a preview of how your current number would look if you were to give it a particular format." -msgstr "Im Register Zahlen sehen Sie eine Auswahl von vorgegebenen Zahlenformaten. Rechts unten im Dialog sehen Sie eine Vorschau, wie Ihre aktuelle Zahl aussehen würde, wenn Sie diese mit einem Format ausstatten würden." +msgstr "Im Register Zahlen sehen Sie eine Auswahl von vorgegebenen Zahlenformaten. Rechts unten im Dialog sehen Sie eine Vorschau, wie Ihre aktuelle Zahl aussehen würde, wenn Sie diese mit einem bestimmten Format ausstatten würden." #: format_value.xhp msgctxt "" @@ -5358,7 +5358,7 @@ "par_id3150400\n" "help.text" msgid "You can define your own number formats to display numbers in %PRODUCTNAME Calc." -msgstr "Mit eigenen Zahlenformaten können Sie bestimmen, wie Zahlen in %PRODUCTNAME-Calc angezeigt werden." +msgstr "Mit eigenen Zahlenformaten können Sie bestimmen, wie Zahlen in %PRODUCTNAME Calc angezeigt werden." #: format_value_userdef.xhp msgctxt "" @@ -5894,7 +5894,7 @@ "par_id3145272\n" "help.text" msgid "Remember that the basic arithmetic operators (+, -, *, /) can be used in formulas using the \"Multiplication and Division before Addition and Subtraction\" rule. Instead of writing =SUM(A1:B1) you can write =A1+B1." -msgstr "Denken Sie daran, dass auch die Grundrechenarten mit ihren Formelzeichen +, -, * und / in Formeln genutzt werden können, nach der Regel \"Punktrechnung vor Strichrechnung\". Statt =SUMME(A1;B1) können Sie =A1+B1 schreiben." +msgstr "Denken Sie daran, dass auch die Grundrechenarten mit ihren Formelzeichen +, -, * und / nach der Regel \"Punktrechnung vor Strichrechnung\" in Formeln genutzt werden können. Statt =SUMME(A1;B1) können Sie =A1+B1 schreiben." #: formulas.xhp msgctxt "" @@ -5942,7 +5942,7 @@ "par_id3154255\n" "help.text" msgid "Displays 16% of the contents of A1." -msgstr "Zeigt 16% des Inhalts von A1 an." +msgstr "Zeigt 16 % des Inhalts von A1 an." #: formulas.xhp msgctxt "" @@ -6166,7 +6166,7 @@ "par_id3155335\n" "help.text" msgid "Let us assume that the interest rate i of 7.5% and the number of years n (1) will remain constant. However, you want to know how much the investment capital C would have to be modified in order to attain a particular return I. For this example, calculate how much capital C would be required if you want an annual return of $15,000." -msgstr "Es wird vorausgesetzt, dass der Zinssatz i 7,5% beträgt und die Anzahl der Jahre n (1) nicht veränderbar ist. Sie möchten jedoch wissen, wie der Kapitaleinsatz C verändert werden muss, um einen bestimmten Ertrag I zu erzielen. Es soll errechnet werden, wie viel Kapital C notwendig ist, wenn der Zinsertrag 15.000 € betragen soll." +msgstr "Es wird vorausgesetzt, dass der Zinssatz i 7,5 % beträgt und die Anzahl der Jahre n (1) nicht veränderbar ist. Sie möchten jedoch wissen, wie der Kapitaleinsatz C verändert werden muss, um einen bestimmten Ertrag I zu erzielen. Es soll errechnet werden, wie viel Kapital C notwendig ist, wenn der Zinsertrag 15.000 € betragen soll." #: goalseek.xhp msgctxt "" @@ -6198,7 +6198,7 @@ "par_id3166426\n" "help.text" msgid "Place the cursor in the field Variable Cell. In the sheet, click in the cell that contains the value to be changed, in this example it is the cell with the capital value C." -msgstr "Setzen Sie den Cursor im Dialog in das Feld Variable Zelle. Klicken Sie in der Tabelle auf die Zelle, in der der zu ändernden Wert enthalten ist. In diesem Beispiel ist es die Zelle mit dem Kapitalwert C." +msgstr "Setzen Sie den Cursor im Dialog in das Feld Variable Zelle. Klicken Sie in der Tabelle auf die Zelle, in der der zu ändernde Wert enthalten ist. In diesem Beispiel ist es die Zelle mit dem Kapitalwert C." #: goalseek.xhp msgctxt "" @@ -6286,7 +6286,7 @@ "par_id3148645\n" "help.text" msgid "In the File type list box, in the area with the other %PRODUCTNAME Calc filters, choose the file type \"HTML Document (%PRODUCTNAME Calc)\"." -msgstr "Wählen Sie im Listenfeld Dateityp, im Bereich mit den anderen %PRODUCTNAME Calc-Filtern, den Dateityp \"HTML Dokument (%PRODUCTNAME Calc)\" aus." +msgstr "Wählen Sie im Listenfeld Dateityp, im Bereich mit den anderen %PRODUCTNAME Calc-Filtern, den Dateityp \"HTML-Dokument (%PRODUCTNAME Calc)\" aus." #: html_doc.xhp msgctxt "" @@ -6358,7 +6358,7 @@ "bm_id3147560\n" "help.text" msgid "zero values; entering leading zeros numbers; with leading zeros leading zeros integers with leading zeros cells; changing text/number formats formats; changing text/number text in cells; changing to numbers converting;text with leading zeros, into numbers" -msgstr "Null-Werte; Eingabe führender NullenZahlen; mit führenden NullenFührende NullenGanzzahlen mit führenden NullenZellen; Format von Text/Zahlen ändernFormate; von Text/Zahlen ändernText in Zellen; zu Zahlen ändernUmwandeln; Text mit führenden Nullen in Zahlen" +msgstr "Null-Werte; Eingabe führender NullenZahlen; mit führenden NullenFührende NullenGanzzahlen mit führenden NullenZellen; Formate von Text/Zahlen ändernFormate; von Text/Zahlen ändernText in Zellen; zu Zahlen ändernUmwandeln; Text mit führenden Nullen in Zahlen" #: integer_leading_zero.xhp msgctxt "" @@ -6390,7 +6390,7 @@ "par_id3154013\n" "help.text" msgid "Format a cell with a number format such as \\0000. This format can be assigned in the Format code field under the Format - Cells - Numbers tab, and defines the cell display as \"always put a zero first and then the integer, having at least three places, and filled with zeros at the left if less than three digits\"." -msgstr "Die Zelle mit einem Zahlenformat wie \\0000 formatieren. Dieses Format kann im Formatcode Feld im Register Format - Zellen - Zahlen zugewiesen werden und legt die Zelldarstellung als \"immer erst eine Null setzen und dann die Ganzzahl, bestehend aus mindestens drei Stellen, und von links mit Nullen aufgefüllt wenn es weniger als drei Stellen sind\" fest." +msgstr "Die Zelle mit einem Zahlenformat wie \\0000 formatieren. Dieses Format kann im Formatcode Feld im Register Format - Zellen - Zahlen zugewiesen werden und legt die Zelldarstellung als \"immer erst eine Null setzen und dann die Ganzzahl, bestehend aus mindestens drei Stellen, und von links mit Nullen aufgefüllt, wenn es weniger als drei Stellen sind\" fest." #: integer_leading_zero.xhp msgctxt "" @@ -6638,7 +6638,7 @@ "par_id3155379\n" "help.text" msgid "Now you can use Tab to select the next drawing object or graphic and Shift+Tab to select the previous one." -msgstr "Nun können Sie mit mit der Taste Tabulator das nächste, mit Umschalt+Tabulator das vorige Zeichnungs-/Grafikobjekt auswählen." +msgstr "Nun können Sie mit mit der Tabulator-Taste das nächste, mit der Umschalt+Tabulator-Taste das vorige Zeichnungs-/Grafikobjekt auswählen." #: line_fix.xhp msgctxt "" @@ -7222,7 +7222,7 @@ "par_id2586748\n" "help.text" msgid "In both modes, you can hold down the CommandCtrl key, or CommandCtrl+Shift keys while you release the mouse button to insert a copy or a link, respectively." -msgstr "In beiden Modi können Sie die BefehlStrg- oder die BefehlStrg+Umschalt-Taste gedrückt halten, während Sie die Maustaste loslassen, um eine Kopie beziehungsweise einen Link einzufügen." +msgstr "In beiden Modi können Sie die BefehlStrg- oder die BefehlStrg+Umschalttaste gedrückt halten, während Sie die Maustaste loslassen, um eine Kopie beziehungsweise einen Link einzufügen." #: move_dragdrop.xhp msgctxt "" @@ -7278,7 +7278,7 @@ "par_id2805566\n" "help.text" msgid "CommandCtrl+Shift keys" -msgstr "BefehlStrg+Umschalt-Tasten" +msgstr "BefehlStrg+Umschalttasten" #: move_dragdrop.xhp msgctxt "" @@ -7334,7 +7334,7 @@ "par_id584124\n" "help.text" msgid "Option+CommandAlt+Ctrl+Shift keys" -msgstr "Option+BefehlAlt+Strg+Umschalt-Tasten" +msgstr "Option+BefehlAlt+Strg+Umschalttasten" #: move_dragdrop.xhp msgctxt "" @@ -8270,7 +8270,7 @@ "bm_id3153194\n" "help.text" msgid "printing; sheet countssheets; printing sheet countspage breaks; spreadsheet previewediting;print rangesviewing;print rangespreviews;page breaks for printing" -msgstr "Drucken; TabellenanzahlTabellen; Tabellenanzahl druckenSeitenumbrüche; Tabellendokument (Vorschau)Bearbeiten; DruckbereicheAnzeigen; DruckbereicheVorschau; Seitenumbrüche zum Drucken" +msgstr "Drucken; TabellenanzahlTabellen; Tabellenanzahl druckenSeitenumbrüche; Tabellendokument (Vorschau)Bearbeiten; DruckbereicheAnzeigen; DruckbereicheVorschauen; Seitenumbrüche zum Drucken" #: print_exact.xhp msgctxt "" @@ -10222,7 +10222,7 @@ "bm_id3154346\n" "help.text" msgid "tables; transposingtransposing tablesinverting tablesswapping tablescolumns; swap with rowsrows; swapping with columnstables; rotatingrotating; tables" -msgstr "Tabellen; transponierenTabellen transponierenTabellen invertierenTabellen umkehrenSpalten; mit Zeilen vertauschenZeilen; mit Spalten vertauschenTabellen; umdrehenUmdrehen; Tabellen" +msgstr "Tabellen; transponierenTabellen transponierenTabellen invertierenTabellen umkehrenSpalten; mit Zeilen vertauschenZeilen; mit Spalten vertauschenTabellen; drehenDrehen; Tabellen" #: table_rotate.xhp msgctxt "" @@ -10598,7 +10598,7 @@ "hd_id3149260\n" "help.text" msgid "Defining A Function Using %PRODUCTNAME Basic" -msgstr "Eigene Funktion in der %PRODUCTNAME-Basic IDE definieren" +msgstr "Eigene Funktion in der %PRODUCTNAME Basic-IDE definieren" #: userdefined_function.xhp msgctxt "" @@ -10614,7 +10614,7 @@ "par_id3154510\n" "help.text" msgid "Click the Edit button. You will now see the Basic IDE." -msgstr "Klicken Sie auf die Schaltfläche Bearbeiten. Sie sehen die Basic-IDE." +msgstr "Klicken Sie auf die Schaltfläche Bearbeiten. Sie sehen nun die Basic-IDE." #: userdefined_function.xhp msgctxt "" @@ -10654,7 +10654,7 @@ "par_id3145232\n" "help.text" msgid "In stage 2 of \"Defining A Function Using %PRODUCTNAME Basic\", in the Macro dialog you clicked on Edit . As the default, in the Macro from field the My Macros - Standard - Module1 module is selected. The Standard library resides locally in your user directory." -msgstr "Im Schritt 2 von \"Eigene Funktion in %PRODUCTNAME Basic-IDE definieren\" haben Sie im Dialog Makro auf Bearbeiten geklickt. Standardmäßig ist im Feld Makro aus das Modul Meine Makros - Standard - Module1 ausgewählt. Das Modul Standard liegt in Ihrem lokalen Benutzerverzeichnis." +msgstr "Im Schritt 2 von \"Eigene Funktion in der %PRODUCTNAME Basic-IDE definieren\" haben Sie im Dialog Makro auf Bearbeiten geklickt. Standardmäßig ist im Feld Makro aus das Modul Meine Makros - Standard - Module1 ausgewählt. Das Modul Standard liegt in Ihrem lokalen Benutzerverzeichnis." #: userdefined_function.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/schart/00.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/schart/00.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/schart/00.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/schart/00.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-17 15:41+0200\n" -"PO-Revision-Date: 2017-06-24 04:58+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-11-06 12:34+0000\n" +"Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1498280322.000000\n" +"X-POOTLE-MTIME: 1509971697.000000\n" #: 00000004.xhp msgctxt "" @@ -182,7 +182,7 @@ "par_id3154532\n" "help.text" msgid "Choose Insert - Special Character (Charts)" -msgstr "Wählen Sie Einfügen - Sonderzeichen (Diagramme) " +msgstr "Wählen Sie Einfügen - Sonderzeichen (Diagramme)" #: 00000004.xhp msgctxt "" @@ -262,7 +262,7 @@ "par_id3147297\n" "help.text" msgid "Choose Format - Legend, or Format - Format Selection - Legend (Charts)" -msgstr "Wählen Sie Format - Legende oder Format - Auswahl formatieren - Legende (Diagramme)" +msgstr "Wählen Sie Format - Legende oder Format - Auswahl formatieren - Legende (Diagramme)" #: 00000004.xhp msgctxt "" @@ -270,7 +270,7 @@ "par_id3157876\n" "help.text" msgid "Choose Format - Axis - X Axis/Secondary X Axis/Z Axis/All Axes (Charts)" -msgstr "Wählen Sie Format - Achse - X-Achse/Sekundäre X-Achse/Z-Achse/Alle Achsen(Diagramme)" +msgstr "Wählen Sie Format - Achse - X-Achse/Sekundäre X-Achse/Z-Achse/Alle Achsen (Diagramme)" #: 00000004.xhp msgctxt "" @@ -326,7 +326,7 @@ "par_id3145828\n" "help.text" msgid "Choose Format - Chart Wall - Chart dialog (Charts)" -msgstr "Wählen Sie Format - Diagrammwand - Diagramm (Diagramme) " +msgstr "Wählen Sie Format - Diagrammwand - Diagramm (Diagramme)" #: 00000004.xhp msgctxt "" @@ -334,7 +334,7 @@ "par_id3153039\n" "help.text" msgid "Choose Format - Chart Floor(Charts)" -msgstr "Wählen Sie Format - Diagrammboden (Diagramme) " +msgstr "Wählen Sie Format - Diagrammboden (Diagramme)" #: 00000004.xhp msgctxt "" @@ -342,7 +342,7 @@ "par_id3150141\n" "help.text" msgid "Choose Format - Chart Area(Charts)" -msgstr "Wählen Sie Format - Diagrammfläche (Diagramme) " +msgstr "Wählen Sie Format - Diagrammfläche (Diagramme)" #: 00000004.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/schart/01.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/schart/01.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/schart/01.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/schart/01.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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 08:41+0000\n" +"PO-Revision-Date: 2017-11-27 17:31+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1508661701.000000\n" +"X-POOTLE-MTIME: 1511803901.000000\n" #: 03010000.xhp msgctxt "" @@ -1390,7 +1390,7 @@ "par_id4349192\n" "help.text" msgid "To insert a trend line for a data series, select the data series in the chart. Choose Insert - Trend Line, or right-click to open the context menu, and choose Insert Trend Line." -msgstr "Um eine Trendlinie für eine Datenreihe einzufügen, wählen Sie die Datenreihe im Diagramm. Wählen Sie Einfügen - Trendlinie... oder klicken Sie mit rechts zum Öffnen des Kontextmenüs und wählen Sie Trendlinie einfügen...." +msgstr "Um eine Trendlinie für eine Datenreihe einzufügen, wählen Sie die Datenreihe im Diagramm. Wählen Sie Einfügen - Trendlinie... oder rechtsklicken Sie zum Öffnen des Kontextmenüs und wählen Sie Trendlinie einfügen...." #: 04050100.xhp msgctxt "" @@ -2030,7 +2030,7 @@ "par_id3155376\n" "help.text" msgid "Defines the spacing between the columns in percent. The maximal spacing is 600%." -msgstr "Legt Abstand zwischen den Spalten in Prozent fest. Der maximal zulässige Abstand beträgt 600%." +msgstr "Legt den Abstand zwischen den Spalten in Prozent fest. Der maximal zulässige Abstand beträgt 600 %." #: 04060000.xhp msgctxt "" @@ -2046,7 +2046,7 @@ "par_id3156447\n" "help.text" msgid "Defines the necessary settings for overlapping data series. You can choose between -100 and +100%." -msgstr "Legt die notwendigen Einstellungen für überlappende Datenreihen fest. Sie können einen Wert zwischen -100 und +100% wählen." +msgstr "Legt die notwendigen Einstellungen für überlappende Datenreihen fest. Sie können einen Wert zwischen -100 % und +100 % wählen." #: 04060000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/sdraw/04.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/sdraw/04.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/sdraw/04.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/sdraw/04.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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" -"PO-Revision-Date: 2017-10-21 16:20+0000\n" +"PO-Revision-Date: 2017-12-10 12:16+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1508602853.000000\n" +"X-POOTLE-MTIME: 1512908178.000000\n" #: 01020000.xhp msgctxt "" @@ -382,7 +382,7 @@ "par_id3148582\n" "help.text" msgid "Ungroups selected group." -msgstr "Gruppierung aufheben" +msgstr "Hebt die ausgewählte Gruppierung auf." #: 01020000.xhp msgctxt "" @@ -438,7 +438,7 @@ "hd_id3145245\n" "help.text" msgid "CommandCtrl+ +" -msgstr "BefehlStrg + +" +msgstr "BefehlStrg+ +" #: 01020000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/sdraw/guide.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/sdraw/guide.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/sdraw/guide.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/sdraw/guide.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-05-12 14:35+0200\n" -"PO-Revision-Date: 2017-10-22 08:46+0000\n" +"PO-Revision-Date: 2017-11-16 17:48+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1508662016.000000\n" +"X-POOTLE-MTIME: 1510854537.000000\n" #: align_arrange.xhp msgctxt "" @@ -1414,7 +1414,7 @@ "par_id3154490\n" "help.text" msgid "Assigned - group lasts until it is ungrouped through a menu command." -msgstr "Einmal zugewiesen gelten Gruppierungen so lange, bis Sie sie über den entsprechenden Befehl im Menü wieder aufheben." +msgstr "Einmal zugewiesen, gelten Gruppierungen so lange, bis Sie diese über den entsprechenden Befehl im Menü wieder aufheben." #: groups.xhp msgctxt "" @@ -1934,7 +1934,7 @@ "par_id0930200803002463\n" "help.text" msgid "Right-click the object to open the context menu. Choose Position and Size - Rotation to enter an exact rotation value." -msgstr "Klicken Sie mit rechts auf das Objekt, um das Kontextmenü zu öffnen. Wählen Sie Position und Größe - Drehung, um einen exakten Drehwinkel einzugeben." +msgstr "Rechtsklicken Sie auf das Objekt, um das Kontextmenü zu öffnen. Wählen Sie Position und Größe - Drehung, um einen exakten Drehwinkel einzugeben." #: rotate_object.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/sdraw.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/sdraw.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/sdraw.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/sdraw.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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" -"PO-Revision-Date: 2017-10-03 15:38+0000\n" +"PO-Revision-Date: 2017-12-09 17:53+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1507045121.000000\n" +"X-POOTLE-MTIME: 1512842007.000000\n" #: main0000.xhp msgctxt "" @@ -718,7 +718,7 @@ "par_idN105E1\n" "help.text" msgid "Draws a filled rectangle where you drag in the current document. Click where you want to place a corner of the rectangle, and drag to the size you want. To draw a square, hold down Shift while you drag." -msgstr "Zeichnet an der Stelle, an der Sie im aktuellen Dokument ziehen, ein gefülltes Rechteck. Klicken Sie dorthin, wo eine Ecke des Rechtecks platziert werden soll, und ziehen Sie es bei gedrückter linker Maustaste auf die gewünschte Größe. Um ein Quadrat zu zeichnen, halten Sie beim Ziehen die Umschalttaste gedrückt." +msgstr "Zeichnet an der Stelle, an der Sie im aktuellen Dokument ziehen, ein gefülltes Rechteck. Klicken Sie dorthin, wo eine Ecke des Rechtecks platziert werden soll, und ziehen Sie es bei gedrückter linker Maustaste auf die gewünschte Größe auf. Um ein Quadrat zu zeichnen, halten Sie beim Ziehen die Umschalttaste gedrückt." #: main0210.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/shared/00.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/shared/00.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/shared/00.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/shared/00.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-20 14:17+0200\n" -"PO-Revision-Date: 2017-10-24 14:50+0000\n" +"PO-Revision-Date: 2017-12-10 06:11+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1508856658.000000\n" +"X-POOTLE-MTIME: 1512886283.000000\n" #: 00000001.xhp msgctxt "" @@ -102,7 +102,7 @@ "par_id7493209\n" "help.text" msgid "In the Basic IDE, a spin button is the name used for the numerical field together with the two arrow symbols." -msgstr "In der Basic IDE wird ein numerisches Feld mit zwei Pfeilsymbolen als Drehfeld bezeichnet." +msgstr "In der Basic-IDE wird ein numerisches Feld mit zwei Pfeilsymbolen als Drehfeld bezeichnet." #: 00000001.xhp msgctxt "" @@ -710,7 +710,7 @@ "bm_id3149290\n" "help.text" msgid "hyperlinks; definition" -msgstr "Hyperlink; Definition" +msgstr "Hyperlinks; Definition" #: 00000002.xhp msgctxt "" @@ -1814,7 +1814,7 @@ "par_id3154820\n" "help.text" msgid "You can create a DDE link using the following procedure: Select cells from a Calc spreadsheet, copy them into the clipboard and switch to another spreadsheet and select the Edit - Paste Special dialog. Select the Link option to insert the contents as a DDE link. When activating a link, the inserted cell area will be read from its original file." -msgstr "DDE-Verknüpfungen lassen sich wie folgt erzeugen: Wählen Sie in einem Calc Tabellendokument Zellen aus, kopieren Sie sie in die Zwischenablage, wechseln Sie in ein anderes Tabellendokument und wählen Sie Bearbeiten - Inhalte einfügen.... Wählen Sie die Option Verknüpfen aus, um den Inhalt als DDE-Verknüpfung einzufügen. Bei Aktivierung der Verknüpfung wird der eingefügte Zellbereich aus der Originaldatei eingelesen." +msgstr "DDE-Verknüpfungen lassen sich wie folgt erzeugen: Wählen Sie in einem Calc-Tabellendokument Zellen aus, kopieren Sie sie in die Zwischenablage, wechseln Sie in ein anderes Tabellendokument und wählen Sie Bearbeiten - Inhalte einfügen.... Wählen Sie die Option Verknüpfen aus, um den Inhalt als DDE-Verknüpfung einzufügen. Bei Aktivierung der Verknüpfung wird der eingefügte Zellbereich aus der Originaldatei eingelesen." #: 00000005.xhp msgctxt "" @@ -2278,7 +2278,7 @@ "par_id3154223\n" "help.text" msgid "Register-true is a typography term that is used in printing. This term refers to the congruent imprint of the lines within a type area on the front and the back side of book pages, newspaper pages and magazine pages. The register-true feature make these pages easier to read by preventing gray shadows from shining through between the lines of text. The register-true term also refers to lines in adjacent text columns that are of the same height." -msgstr "Registerhaltigkeit ist ein Begriff aus der Typographie. Darunter versteht man den deckungsgleichen Abdruck der Zeilen eines Satzspiegels auf der Vorder- und Rückseite von Büchern, Zeitschriften und Zeitungen. Mit der Funktion Registerhaltigkeit können diese Seiten einfacher gelesen werden, indem verhindert wird, dass graue Schatten durch die Textzeilen hindurchscheinen. Von Zeilenregisterhaltigkeit spricht man auch dann, wenn sich bei Textspalten alle nebeneinanderliegenden Zeilen auf gleicher Höhe befinden." +msgstr "Registerhaltigkeit ist ein Begriff aus der Typografie. Darunter versteht man den deckungsgleichen Abdruck der Zeilen eines Satzspiegels auf der Vorder- und Rückseite von Büchern, Zeitschriften und Zeitungen. Mit der Funktion Registerhaltigkeit können diese Seiten einfacher gelesen werden, indem verhindert wird, dass graue Schatten durch die Textzeilen hindurchscheinen. Von Zeilenregisterhaltigkeit spricht man auch dann, wenn sich bei Textspalten alle nebeneinanderliegenden Zeilen auf gleicher Höhe befinden." #: 00000005.xhp msgctxt "" @@ -2406,7 +2406,7 @@ "par_id3149448\n" "help.text" msgid "Widows and orphans are historical typography terms, which have been in use for many years. A widow refers to a short line at the end of a paragraph, which when printed, appears alone at the top of the next page. An orphan is, in contrast, the first line of a paragraph printed alone at the bottom of the previous page. In a $[officename] text document you can automatically prevent such occurrences in the desired Paragraph Style. When doing so, you can determine the minimum amount of lines to be kept together on a page." -msgstr "Schusterjungen und Hurenkinder sind historische Begriffe aus der Typographie, die seit langem benutzt werden. Ein Hurenkind ist die letzte Zeile eines Absatzes, die alleine am oberen Rand der nächsten Seite steht. Ein Schusterjunge ist dagegen die erste Zeile eines Absatzes, die alleine am unteren Rand der Vorseite steht. Mit einem Textdokument von $[officename] können Sie diese unschönen Erscheinungen automatisch für die gewünschte Absatzvorlage vermeiden. Dabei können Sie sogar wählen, wie viele Zeilen mindestens immer zusammen auf einer Seite gehalten werden sollen." +msgstr "Schusterjungen und Hurenkinder sind historische Begriffe aus der Typografie, die seit langem benutzt werden. Ein Hurenkind ist die letzte Zeile eines Absatzes, die alleine am oberen Rand der nächsten Seite steht. Ein Schusterjunge ist dagegen die erste Zeile eines Absatzes, die alleine am unteren Rand der Vorseite steht. Mit einem Textdokument von $[officename] können Sie diese unschönen Erscheinungen automatisch für die gewünschte Absatzvorlage vermeiden. Dabei können Sie sogar wählen, wie viele Zeilen mindestens immer zusammen auf einer Seite gehalten werden sollen." #: 00000007.xhp msgctxt "" @@ -2918,7 +2918,7 @@ "par_id3150129\n" "help.text" msgid "\"Font: 10pt\" switches to a 10pt font, with bold, italic, small caps off." -msgstr "\"Font: 10pt\" schaltet auf eine 10pt-Schrift und gleichzeitig fett, kursiv und Kapitälchen aus." +msgstr "\"Font: 10pt\" schaltet auf 10 pt und gleichzeitig fett, kursiv und Kapitälchen aus." #: 00000020.xhp msgctxt "" @@ -3246,7 +3246,7 @@ "bm_id3154408\n" "help.text" msgid "exporting; XML files XML file formats extensions; file formats suffixes in file formats document types in $[officename] file formats; changing $[officename] defaults defaults;file formats in $[officename] file formats;OpenDocument/XML OpenDocument file formats ODF file formats" -msgstr "Exportieren; XML-DateienXML-DateiformateErweiterungen; DateiformateEndung bei DateiformatenDokumenttypen in $[officename]Dateiformate; Standard in $[officename] ändernStandards; Dateiformate in $[officename]Dateiformate; OpenDocument/XMLOpenDocument DateiformateODF Dateiformate" +msgstr "Exportieren; XML-DateienXML-DateiformateErweiterungen; DateiformateEndungen bei DateiformatenDokumenttypen in $[officename]Dateiformate; Standardeinstellungen in $[officename] ändernStandardeinstellungen; Dateiformate in $[officename]Dateiformate; OpenDocument/XMLOpenDocument DateiformateODF Dateiformate" #: 00000021.xhp msgctxt "" @@ -3270,7 +3270,7 @@ "par_idN10725\n" "help.text" msgid "The OpenDocument file format (ODF) is a standardized file format used by many software applications. You can find more information at the Wikipedia site: wikipedia.org/wiki/OpenDocument." -msgstr "Das OpenDocument-Dateiformat (ODF) ist ein standardisiertes Dateiformat, das durch viele Software-Applikationen benutzt wird. Sie können weitere Informationen dazu auf der Wikipedia-Seite: wikipedia.org/wiki/OpenDocument finden." +msgstr "Das OpenDocument-Dateiformat (ODF) ist ein standardisiertes Dateiformat, das durch viele Software-Applikationen benutzt wird. Weitere Informationen dazu finden Sie auf der Wikipedia-Seite: wikipedia.org/wiki/OpenDocument." #: 00000021.xhp msgctxt "" @@ -3310,7 +3310,7 @@ "par_idN10762\n" "help.text" msgid "ODF Text" -msgstr "ODF Text" +msgstr "ODF-Text" #: 00000021.xhp msgctxt "" @@ -3326,7 +3326,7 @@ "par_idN1076D\n" "help.text" msgid "ODF Text Template" -msgstr "ODF Textdokumentvorlage" +msgstr "ODF-Textdokumentvorlage" #: 00000021.xhp msgctxt "" @@ -3390,7 +3390,7 @@ "par_idN10799\n" "help.text" msgid "ODF Spreadsheet" -msgstr "ODF Tabellendokument" +msgstr "ODF-Tabellendokument" #: 00000021.xhp msgctxt "" @@ -3406,7 +3406,7 @@ "par_idN107A4\n" "help.text" msgid "ODF Spreadsheet Template" -msgstr "ODF Tabellendokumentvorlage" +msgstr "ODF-Tabellendokumentvorlage" #: 00000021.xhp msgctxt "" @@ -6590,7 +6590,7 @@ "par_id3149488\n" "help.text" msgid "Choose Edit - Track Changes - Manage Changes - List tab. Click an entry in the list and open the context menu. Choose Edit Comment" -msgstr "Wählen Sie Bearbeiten - Änderungen verfolgen - Verwalten... - Register: Liste. Klicken Sie mit rechts auf einen Eintrag in der Liste. Wählen Sie Kommentar bearbeiten aus dem Kontextmenü" +msgstr "Wählen Sie Bearbeiten - Änderungen verfolgen - Verwalten... - Register: Liste. Rechtsklicken Sie auf einen Eintrag in der Liste und wählen Sie Kommentar bearbeiten aus dem Kontextmenü." #: 00000402.xhp msgctxt "" @@ -6902,7 +6902,7 @@ "par_id3146806\n" "help.text" msgid "Choose Insert - Hyperlink" -msgstr "Wählen Sie Einfügen - Verknüpfung..." +msgstr "Wählen Sie Einfügen - Hyperlink...." #: 00000403.xhp msgctxt "" @@ -7118,7 +7118,7 @@ "par_id3152372\n" "help.text" msgid "Choose Format - Bullets and Numbering - Customize - Character button" -msgstr "Wählen Sie Format - Nummerierung und Aufzählungszeichen... - Benutzerdefinert - Auswahl..." +msgstr "Wählen Sie Format - Nummerierung und Aufzählungszeichen... - Benutzerdefiniert - Auswahl..." #: 00000404.xhp msgctxt "" @@ -8366,7 +8366,7 @@ "par_id3152496\n" "help.text" msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Defaults" -msgstr "Öffnen Sie ein Tabellendokument und wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Calc - Standards" +msgstr "Öffnen Sie ein Tabellendokument und wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Calc - Vorgaben" #: 00000406.xhp msgctxt "" @@ -8782,7 +8782,7 @@ "par_id3156329\n" "help.text" msgid "In a database file window, click the Tables icon. Choose Insert - Table Design or Edit - Edit" -msgstr "Klicken Sie in einem Datenbank-Dateifenster auf das Symbol \"Tabellen\". Wählen Sie Einfügen - Tabellenentwurf oder Bearbeiten - Bearbeiten." +msgstr "Klicken Sie in einem Datenbank-Dateifenster auf das Symbol Tabellen. Wählen Sie Einfügen - Tabellenentwurf oder Bearbeiten - Bearbeiten." #: 00000450.xhp msgctxt "" @@ -9022,7 +9022,7 @@ "par_id3150355\n" "help.text" msgid "Choose Format - Title - Character tab (Chart documents)" -msgstr "Wählen Sie Format - Titel - (einen Menüeintrag) - Register: Zeichen (Diagramme)" +msgstr "Wählen Sie Format - Titel - (einen Menüeintrag) - Register: Zeichen (Diagrammdokumente)" #: 00040500.xhp msgctxt "" @@ -9030,7 +9030,7 @@ "par_id3149812\n" "help.text" msgid "Choose Format - Legend - Character tab (Chart documents)" -msgstr "Wählen Sie Format - Legende... - Register: Zeichen (Diagramme)" +msgstr "Wählen Sie Format - Legende... - Register: Zeichen (Diagrammdokumente)" #: 00040500.xhp msgctxt "" @@ -9038,7 +9038,7 @@ "par_id3153717\n" "help.text" msgid "Choose Format - Axis - Character tab (Chart documents)" -msgstr "Wählen Sie Format - Achse - (einen Menüeintrag) - Register: Zeichen (Diagramme)" +msgstr "Wählen Sie Format - Achse - (einen Menüeintrag) - Register: Zeichen (Diagrammdokumente)" #: 00040500.xhp msgctxt "" @@ -9126,7 +9126,7 @@ "par_id3153524\n" "help.text" msgid "Choose Format - Paragraph - Asian Typography tab (not in HTML)" -msgstr "Wählen Sie Format - Absatz... - Register: Asiatische Schreibweise (nicht in HTML)" +msgstr "Wählen Sie Format - Absatz... - Register: Asiatische Typografie (nicht in HTML)" #: 00040500.xhp msgctxt "" @@ -9134,7 +9134,7 @@ "par_id3154366\n" "help.text" msgid "Choose Format - Cell - Asian Typography tab" -msgstr "Wählen Sie Format - Zellen... - Register: Asiatische Typographie" +msgstr "Wählen Sie Format - Zellen... - Register: Asiatische Typografie" #: 00040500.xhp msgctxt "" @@ -9142,7 +9142,7 @@ "par_id3148742\n" "help.text" msgid "Choose View - Styles and Formatting - open context menu of an entry and click Modify/New - Asian Typography tab" -msgstr "Wählen Sie Ansicht - Formatvorlagen und aus dem Kontextmenü eines Eintrags Ändern.../Neu... - Register: Asiatische Typographie" +msgstr "Wählen Sie Ansicht - Formatvorlagen und aus dem Kontextmenü eines Eintrags Ändern.../Neu... - Register: Asiatische Typografie" #: 00040500.xhp msgctxt "" @@ -9150,7 +9150,7 @@ "par_id3148922\n" "help.text" msgid "Choose Format - Character - Hyperlink tab" -msgstr "Wählen Sie Format - Zeichen... - Register: Verknüpfung" +msgstr "Wählen Sie Format - Zeichen... - Register: Hyperlink" #: 00040500.xhp msgctxt "" @@ -9206,7 +9206,7 @@ "par_id3154640\n" "help.text" msgid "Choose Format - Paragraph - Indents & Spacing tab" -msgstr "Wählen Sie Format - Absatz... - Register: Einzüge & Abstände" +msgstr "Wählen Sie Format - Absatz... - Register: Einzüge und Abstände" #: 00040500.xhp msgctxt "" @@ -9214,7 +9214,7 @@ "par_id3152463\n" "help.text" msgid "Choose View - Styles and Formatting - open context menu of an entry and choose Modify/New - Indents & Spacing tab" -msgstr "Wählen Sie Ansicht - Formatvorlagen und aus dem Kontextmenü eines Eintrags Ändern.../Neu... - Register: Einzüge & Abstände" +msgstr "Wählen Sie Ansicht - Formatvorlagen und aus dem Kontextmenü eines Eintrags Ändern.../Neu... - Register: Einzüge und Abstände" #: 00040500.xhp msgctxt "" @@ -10398,7 +10398,7 @@ "par_id3148595\n" "help.text" msgid "Choose Modify - Arrange - Send to Back ($[officename] Draw)" -msgstr "Wäheln Sie Ändern - Anordnung - Ganz nach hinten ($[officename] Draw)" +msgstr "Wählen Sie Ändern - Anordnung - Ganz nach hinten ($[officename] Draw)" #: 00040501.xhp msgctxt "" @@ -11054,7 +11054,7 @@ "par_id3152922\n" "help.text" msgid "Choose Format - Title - Area tab (chart documents)" -msgstr "Wählen Sie Format - Titel - (einen Menüeintrag) - Register: Fläche (Diagramme)" +msgstr "Wählen Sie Format - Titel - (einen Menüeintrag) - Register: Fläche (Diagrammdokumente)" #: 00040502.xhp msgctxt "" @@ -11062,7 +11062,7 @@ "par_id3157894\n" "help.text" msgid "Choose Format - Legend - Area tab (chart documents)" -msgstr "Wählen Sie Format - Legende... - Register: Fläche (Diagramme)" +msgstr "Wählen Sie Format - Legende... - Register: Fläche (Diagrammdokumente)" #: 00040502.xhp msgctxt "" @@ -11070,7 +11070,7 @@ "par_id3144444\n" "help.text" msgid "Choose Format - Chart Wall - Area tab (chart documents)" -msgstr "Wählen Sie Format - Diagrammwand... - Register: Fläche (Diagramme)" +msgstr "Wählen Sie Format - Diagrammwand... - Register: Fläche (Diagrammdokumente)" #: 00040502.xhp msgctxt "" @@ -11078,7 +11078,7 @@ "par_id3156543\n" "help.text" msgid "Choose Format - Chart Floor - Area tab (chart documents)" -msgstr "Wählen Sie Format - Diagrammboden... - Register: Fläche (Diagramme)" +msgstr "Wählen Sie Format - Diagrammboden... - Register: Fläche (Diagrammdokumente)" #: 00040502.xhp msgctxt "" @@ -11086,7 +11086,7 @@ "par_id3150685\n" "help.text" msgid "Choose Format - Chart Area - Area tab (chart documents)" -msgstr "Wählen Sie Format - Diagrammfläche... - Register: Fläche (Diagramme)" +msgstr "Wählen Sie Format - Diagrammfläche... - Register: Fläche (Diagrammdokumente)" #: 00040502.xhp msgctxt "" @@ -11102,7 +11102,7 @@ "par_id3154985\n" "help.text" msgid "Choose Format - Area - Transparency tab (drawing documents)" -msgstr "Wählen Sie Format - Fläche... - Register: Transparenz (Zeichnungsdokument)" +msgstr "Wählen Sie Format - Fläche... - Register: Transparenz (Zeichnungsdokumente)" #: 00040502.xhp msgctxt "" @@ -11110,7 +11110,7 @@ "par_id3145365\n" "help.text" msgid "Choose Format - Area - Transparency tab (presentation documents)" -msgstr "Wählen Sie Format - Fläche... - Register: Transparenz (Präsentationsdokument)" +msgstr "Wählen Sie Format - Fläche... - Register: Transparenz (Präsentationsdokumente)" #: 00040502.xhp msgctxt "" @@ -11118,7 +11118,7 @@ "par_id3151117\n" "help.text" msgid "Choose Format - Chart Wall - Transparency tab (chart documents)" -msgstr "Wählen Sie Format - Diagrammwand... - Register: Transparenz (Diagrammdokument)" +msgstr "Wählen Sie Format - Diagrammwand... - Register: Transparenz (Diagrammdokumente)" #: 00040502.xhp msgctxt "" @@ -11126,7 +11126,7 @@ "par_id3147326\n" "help.text" msgid "Choose Format - Chart Area - Transparency tab (chart documents)" -msgstr "Wählen Sie Format - Diagrammfläche... - Register: Transparenz (Diagrammdokument)" +msgstr "Wählen Sie Format - Diagrammfläche... - Register: Transparenz (Diagrammdokumente)" #: 00040502.xhp msgctxt "" @@ -11134,7 +11134,7 @@ "par_id3154920\n" "help.text" msgid "Choose Format - Chart Floor - Transparency tab (chart documents)" -msgstr "Wählen Sie Format - Diagrammboden... - Register: Transparenz (Diagrammdokument)" +msgstr "Wählen Sie Format - Diagrammboden... - Register: Transparenz (Diagrammdokumente)" #: 00040502.xhp msgctxt "" @@ -11142,7 +11142,7 @@ "par_id3145591\n" "help.text" msgid "Choose Format - Title - All Titles - Transparency tab (chart documents)" -msgstr "Wählen Sie Format - Titel - Alle Titel... - Register: Transparenz (Diagrammdokument)" +msgstr "Wählen Sie Format - Titel - Alle Titel... - Register: Transparenz (Diagrammdokumente)" #: 00040502.xhp msgctxt "" @@ -11150,7 +11150,7 @@ "par_id3145750\n" "help.text" msgid "Choose Format - Title - Main Title - Transparency tab (chart documents)" -msgstr "Wählen Sie Format - Titel - Haupttitel... - Register: Transparenz (Diagrammdokument)" +msgstr "Wählen Sie Format - Titel - Haupttitel... - Register: Transparenz (Diagrammdokumente)" #: 00040502.xhp msgctxt "" @@ -11158,7 +11158,7 @@ "par_id3148556\n" "help.text" msgid "Choose Format - Title - Subtitle - Transparency tab (chart documents)" -msgstr "Wählen Sie Format - Titel - Untertitel... - Register: Transparenz (Diagrammdokument)" +msgstr "Wählen Sie Format - Titel - Untertitel... - Register: Transparenz (Diagrammdokumente)" #: 00040502.xhp msgctxt "" @@ -11166,7 +11166,7 @@ "par_id3163710\n" "help.text" msgid "Choose Format - Title - Title (X Axis) - Transparency tab (chart documents)" -msgstr "Wählen Sie Format - Titel - X-Achsentitel... - Register: Transparenz (Diagrammdokument)" +msgstr "Wählen Sie Format - Titel - X-Achsentitel... - Register: Transparenz (Diagrammdokumente)" #: 00040502.xhp msgctxt "" @@ -11174,7 +11174,7 @@ "par_id3150487\n" "help.text" msgid "Choose Format - Title - Title (Y Axis) - Transparency tab (chart documents)" -msgstr "Wählen Sie Format - Titel - Y-Achsentitel... - Register: Transparenz (Diagrammdokument)" +msgstr "Wählen Sie Format - Titel - Y-Achsentitel... - Register: Transparenz (Diagrammdokumente)" #: 00040502.xhp msgctxt "" @@ -11182,7 +11182,7 @@ "par_id3154320\n" "help.text" msgid "Choose Format - Title - Title (Z Axis) - Transparency tab (chart documents)" -msgstr "Wählen Sie Format - Titel - Z-Achsentitel... - Register: Transparenz (Diagrammdokument)" +msgstr "Wählen Sie Format - Titel - Z-Achsentitel... - Register: Transparenz (Diagrammdokumente)" #: 00040502.xhp msgctxt "" @@ -11190,7 +11190,7 @@ "par_id3151113\n" "help.text" msgid "Choose Format - Object Properties - Data Point - Transparency - tab (chart documents)" -msgstr "Wählen Sie Format - Auswahl formatieren... (Datenpunkt) - Register: Transparenz (Diagrammdokument)" +msgstr "Wählen Sie Format - Auswahl formatieren... (Datenpunkt) - Register: Transparenz (Diagrammdokumente)" #: 00040502.xhp msgctxt "" @@ -11198,7 +11198,7 @@ "par_id3149266\n" "help.text" msgid "Choose Format - Object Properties - Data Series - Transparency tab (chart documents)" -msgstr "Wählen Sie Format - Auswahl formatieren... (Datenreihe) - Register: Transparenz (Diagrammdokument)" +msgstr "Wählen Sie Format - Auswahl formatieren... (Datenreihe) - Register: Transparenz (Diagrammdokumente)" #: 00040502.xhp msgctxt "" @@ -11734,7 +11734,7 @@ "par_id3157980\n" "help.text" msgid "Choose Modify - Group (drawing documents)" -msgstr "Wählen Sie Ändern - Gruppieren (Zeichnungsdokument)" +msgstr "Wählen Sie Ändern - Gruppieren (Zeichnungsdokumente)" #: 00040502.xhp msgctxt "" @@ -11766,7 +11766,7 @@ "par_id3153023\n" "help.text" msgid "Choose Format - Group - Ungroup (text documents, spreadsheets)" -msgstr "Wählen Sie Format - Gruppe - Gruppierung aufheben (Textdokument, Tabellendokument)" +msgstr "Wählen Sie Format - Gruppe - Gruppierung aufheben (Textdokumente, Tabellendokumente)" #: 00040502.xhp msgctxt "" @@ -11774,7 +11774,7 @@ "par_id3163378\n" "help.text" msgid "Choose Modify - Ungroup (drawing documents)" -msgstr "Wählen Sie Ändern - Aufheben (Zeichnungsdokument)" +msgstr "Wählen Sie Ändern - Aufheben (Zeichnungsdokumente)" #: 00040502.xhp msgctxt "" @@ -11814,7 +11814,7 @@ "par_id3145678\n" "help.text" msgid "Choose Modify - Exit Group (drawing documents)" -msgstr "Wählen Sie Ändern - Gruppierung verlassen (Zeichnungsdokument)" +msgstr "Wählen Sie Ändern - Gruppierung verlassen (Zeichnungsdokumente)" #: 00040502.xhp msgctxt "" @@ -11854,7 +11854,7 @@ "par_id3145354\n" "help.text" msgid "Choose Modify - Enter Group (drawing documents)" -msgstr "Wählen Sie Ändern - Gruppierung betreten (Zeichnungsdokument)" +msgstr "Wählen Sie Ändern - Gruppierung betreten (Zeichnungsdokumente)" #: 00040502.xhp msgctxt "" @@ -11958,7 +11958,7 @@ "par_id3147531\n" "help.text" msgid "Choose Format - Axis - Y Axis - Numbers tab (Chart Documents)" -msgstr "Wählen Sie Format - Achse - Y-Achse... - Register: Zahlen (Diagramme)" +msgstr "Wählen Sie Format - Achse - Y-Achse... - Register: Zahlen (Diagrammdokumente)" #: 00040503.xhp msgctxt "" @@ -11966,7 +11966,7 @@ "par_id3150823\n" "help.text" msgid "Also as Number Format dialog for tables and fields in text documents: Choose Format - Number Format, or choose Insert - Field - More Fields - Variables tab and select \"Additional formats\" in the Format list." -msgstr "Oder als Dialog Zahl formatieren für Tabellen und Felder in Textdokumenten: Wählen Sie Format - Zahlformet... oder Einfügen - Feldbefehl - Weitere Feldbefehle... - Register: Variablen und den Eintrag \"Weitere Formate...\" in der Liste Format." +msgstr "Oder als Dialog Zahl formatieren für Tabellen und Felder in Textdokumenten: Wählen Sie Format - Zahlenformat... oder Einfügen - Feldbefehl - Weitere Feldbefehle... - Register: Variablen und den Eintrag \"Weitere Formate...\" in der Liste Format." #: 00040503.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/shared/01.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/shared/01.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/shared/01.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/shared/01.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-20 14:17+0200\n" -"PO-Revision-Date: 2017-10-31 11:57+0000\n" +"PO-Revision-Date: 2017-12-10 18:55+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1509451036.000000\n" +"X-POOTLE-MTIME: 1512932146.000000\n" #: 01010000.xhp msgctxt "" @@ -406,7 +406,7 @@ "par_idN10A15\n" "help.text" msgid "Creates a new presentation document ($[officename] Impress)." -msgstr "Erstellt ein neues >Präsentationsdokument ($[officename] Impress)." +msgstr "Erstellt ein neues Präsentationsdokument ($[officename] Impress)." #: 01010000.xhp msgctxt "" @@ -2758,7 +2758,7 @@ "par_id3147571\n" "help.text" msgid "Enter a subject for the document. You can use a subject to group documents with similar contents." -msgstr "Geben Sie das Thema des Dokuments ein. Ein solches Thema kann zur thematischen Gruppierung von Dokumenten genutzt werden." +msgstr "Geben Sie das Thema des Dokumentes ein. Ein solches Thema kann zur thematischen Gruppierung von Dokumenten genutzt werden." #: 01100100.xhp msgctxt "" @@ -3118,7 +3118,7 @@ "bm_id1472518\n" "help.text" msgid "number of pagesdocuments;number of pages/tables/sheetsnumber of tablesnumber of sheetscells;number ofpictures;number ofOLE objects;number of" -msgstr "Anzahl; an SeitenDokumente; Anzahl der Seiten/Tabellen/TabellendokumenteAnzahl an TabellenAnzahl an TabellendokumentenZellen; AnzahlBilder; AnzahlOLE-Objekte; Anzahl" +msgstr "Anzahl an SeitenDokumente; Anzahl der Seiten/Tabellen/TabellendokumenteAnzahl an TabellenAnzahl an TabellendokumentenZellen; Anzahl vonBilder; Anzahl vonOLE-Objekte; Anzahl von" #: 01100400.xhp msgctxt "" @@ -3142,7 +3142,7 @@ "par_id3156324\n" "help.text" msgid "Some statistic values can be used as variables in formulas. " -msgstr " Einige statistische Werte können als Variablen in Formeln verwendet werden. " +msgstr "Einige statistische Werte können als Variablen in Formeln verwendet werden." #: 01100400.xhp msgctxt "" @@ -3222,7 +3222,7 @@ "par_id3149820\n" "help.text" msgid "Number of OLE objects in the file, including tables and graphics that were inserted as OLE objects. " -msgstr " Anzahl der OLE-Objekte in der Datei. Hierzu gehören als OLE-Objekte eingefügte Tabellen und Grafiken. " +msgstr "Anzahl der OLE-Objekte in der Datei. Hierzu gehören als OLE-Objekte eingefügte Tabellen und Grafiken." #: 01100400.xhp msgctxt "" @@ -3238,7 +3238,7 @@ "par_id3156156\n" "help.text" msgid "Number of paragraphs (including blank paragraphs) in the file. " -msgstr " Anzahl der Absätze (einschließlich leerer Absätze) in der Datei. " +msgstr "Anzahl der Absätze (einschließlich leerer Absätze) in der Datei." #: 01100400.xhp msgctxt "" @@ -3254,7 +3254,7 @@ "par_id3147402\n" "help.text" msgid "Number of words (including words consisting of a single character) in the file. " -msgstr " Anzahl der Wörter (einschließlich solcher, die aus nur einem Zeichen bestehen) in der Datei. " +msgstr "Anzahl der Wörter (einschließlich solcher, die aus nur einem Zeichen bestehen) in der Datei." #: 01100400.xhp msgctxt "" @@ -3270,7 +3270,7 @@ "par_id3149294\n" "help.text" msgid "Number of characters (including spaces) in the file. Non-printable characters are not included. " -msgstr " Anzahl der Zeichen (einschließlich Leerzeichen) in der Datei. Hierzu gehören keine Steuerzeichen. " +msgstr "Anzahl der Zeichen (einschließlich Leerzeichen) in der Datei. Hierzu gehören keine Steuerzeichen." #: 01100400.xhp msgctxt "" @@ -3286,7 +3286,7 @@ "par_id3149650\n" "help.text" msgid "Number of lines in the file. " -msgstr " Anzahl der Zeilen in der Datei. " +msgstr "Anzahl der Zeilen in der Datei." #: 01100400.xhp msgctxt "" @@ -3294,7 +3294,7 @@ "hd_id3153525\n" "help.text" msgid "Update " -msgstr " Aktualisieren " +msgstr "Aktualisieren" #: 01100400.xhp msgctxt "" @@ -4446,7 +4446,7 @@ "par_id3150465\n" "help.text" msgid "Describes the current status of the selected printer." -msgstr "Zeigt den Status des des ausgewählten Druckers an." +msgstr "Zeigt den Status des ausgewählten Druckers an." #: 01140000.xhp msgctxt "" @@ -4702,7 +4702,7 @@ "hd_id3153345\n" "help.text" msgid "Create HTML Document" -msgstr "HTML Dokument erzeugen" +msgstr "HTML-Dokument erzeugen" #: 01160000.xhp msgctxt "" @@ -5558,7 +5558,7 @@ "hd_id3151054\n" "help.text" msgid "Date & Time " -msgstr "Datum & Zeit " +msgstr "Datum und Zeit " #: 02070000.xhp msgctxt "" @@ -6774,7 +6774,7 @@ "par_id2366100\n" "help.text" msgid "\\n in the Replace text box stands for a paragraph break that can be entered with the Enter or Return key." -msgstr "\\n steht im Textfeld Ersetzen für einen Absatzumbruch, der mit der Taste Eingabe eingegebenen würde." +msgstr "\\n steht im Textfeld Ersetzen für einen mit der Eingabetaste eingegebenen Absatzumbruch." #: 02100001.xhp msgctxt "" @@ -8662,7 +8662,7 @@ "par_id3149456\n" "help.text" msgid "The Automatic option is only available for DDE links. You can insert a DDE link by copying the contents from one file and pasting by choosing Edit - Paste Special, and then selecting the Link box. As DDE is a text based linking system, only the displayed decimals are copied into the target sheet." -msgstr "Die Option Automatisch ist nur für DDE-Links verfügbar. Zum Einfügen einer DDE-Verknüpfung kopieren Sie den gewünschten Inhalt in der einen Datei und fügen ihn mit dem Befehl Bearbeiten - Inhalte einfügen und der Option Verknüpfung in die andere Datei ein. Da es sich bei DDE um ein textorientiertes Verknüpfungssystem handelt, werden nur die angezeigten Dezimalstellen in die Zieltabelle kopiert." +msgstr "Die Option Automatisch ist nur für DDE-Verknüpfungen verfügbar. Zum Einfügen einer DDE-Verknüpfung kopieren Sie den gewünschten Inhalt in der einen Datei und fügen ihn mit dem Befehl Bearbeiten - Inhalte einfügen und der Option Verknüpfung in die andere Datei ein. Da es sich bei DDE um ein textorientiertes Verknüpfungssystem handelt, werden nur die angezeigten Dezimalstellen in die Zieltabelle kopiert." #: 02180000.xhp msgctxt "" @@ -9398,7 +9398,7 @@ "par_id3150870\n" "help.text" msgid "Draws a rectangular hotspot where you drag in the graphic. After, you can enter the Address and the Text for the hotspot, and then select the Frame where you want the URL to open." -msgstr "Zeichnet dort, wo Sie in der Grafik ziehen, einen rechteckigen Hotspot ein. Anschließend können Sie eine Adresse und Text für den Hotspot eingeben und den Frame wählen, in dem die URL geöffnet werden soll." +msgstr "Zeichnet dort, wo Sie in der Grafik ziehen, einen rechteckigen Hotspot ein. Anschließend können Sie eine Adresse und den Text für den Hotspot eingeben und den Frame wählen, in dem die URL geöffnet werden soll." #: 02220000.xhp msgctxt "" @@ -9430,7 +9430,7 @@ "par_id3145591\n" "help.text" msgid "Draws an elliptical hotspot where you drag in the graphic. After, you can enter the Address and the Text for the hotspot, and then select the Frame where you want the URL to open." -msgstr "Zeichnet dort, wo Sie in der Grafik ziehen, einen kreisförmigen Hotspot ein. Anschließend können Sie eine Adresse und Text für den Hotspot eingeben und den Frame wählen, in dem die URL geöffnet werden soll." +msgstr "Zeichnet dort, wo Sie in der Grafik ziehen, einen kreisförmigen Hotspot ein. Anschließend können Sie eine Adresse und den Text für den Hotspot eingeben und den Frame wählen, in dem die URL geöffnet werden soll." #: 02220000.xhp msgctxt "" @@ -9462,7 +9462,7 @@ "par_id3153190\n" "help.text" msgid "Draws a polygonal hotspot in the graphic. Click this icon, drag in the graphic, and then click to define one side of the polygon. Move to where you want to place the end of the next side, and then click. Repeat until you have drawn all of the sides of the polygon. When you are finished, double-click to close the polygon. After, you can enter the Address and the Text for the hotspot, and then select the Frame where you want the URL to open." -msgstr "Zeichnet einen vieleckigen Hotspot in die Grafik ein. Klicken Sie auf dieses Symbol und ziehen Sie es in die Grafik. Klicken Sie dann, um die erste Seite des Polygons festzulegen. Setzen Sie den Mauszeiger auf die Stelle, wo sich das Ende der nächsten Seite befinden soll, und klicken Sie. Wiederholen Sie dies, bis Sie alle Seiten des Polygons gezeichnet haben. Wenn Sie fertig sind, doppelklicken Sie, um das Polygon zu schließen. Anschließend können Sie eine Adresse und Text für den Hotspot eingeben und den Frame wählen, in dem die URL geöffnet werden soll." +msgstr "Zeichnet einen vieleckigen Hotspot in die Grafik ein. Klicken Sie auf dieses Symbol und ziehen Sie es in die Grafik. Klicken Sie dann, um die erste Seite des Polygons festzulegen. Setzen Sie den Mauszeiger auf die Stelle, wo sich das Ende der nächsten Seite befinden soll, und klicken Sie. Wiederholen Sie dies, bis Sie alle Seiten des Polygons gezeichnet haben. Wenn Sie fertig sind, doppelklicken Sie, um das Polygon zu schließen. Anschließend können Sie eine Adresse und den Text für den Hotspot eingeben und den Frame wählen, in dem die URL geöffnet werden soll." #: 02220000.xhp msgctxt "" @@ -9494,7 +9494,7 @@ "par_id3147046\n" "help.text" msgid "Draws a hotspot that is based on a freeform polygon. Click this icon and move to where you want to draw the hotspot. Drag a freeform line and release to close the shape. After, you can enter the Address and the Text for the hotspot, and then select the Frame where you want the URL to open." -msgstr "Zeichnet einen Hotspot auf Grundlage eines Freihandpolygons. Klicken Sie auf dieses Symbol und setzen Sie es an die für den Hotspot vorgesehene Position. Ziehen Sie eine Freihandlinie und lassen Sie die Maustaste los, um die Form zu schließen. Anschließend können Sie eine Adresse und Text für den Hotspot eingeben und den Frame wählen, in dem die URL geöffnet werden soll." +msgstr "Zeichnet einen Hotspot auf Grundlage eines Freihandpolygons. Klicken Sie auf dieses Symbol und setzen Sie es an die für den Hotspot vorgesehene Position. Ziehen Sie eine Freihandlinie und lassen Sie die Maustaste los, um die Form zu schließen. Anschließend können Sie eine Adresse und den Text für den Hotspot eingeben und den Frame wählen, in dem die URL geöffnet werden soll." #: 02220000.xhp msgctxt "" @@ -9854,7 +9854,7 @@ "hd_id3150976\n" "help.text" msgid "Hyperlink" -msgstr "Link" +msgstr "Hyperlink" #: 02220100.xhp msgctxt "" @@ -10318,7 +10318,7 @@ "par_id3155391\n" "help.text" msgid "You can attach a comment when the cursor is in a changed text passage the changed cell is selected, or in the Manage Changes dialog." -msgstr "Wenn sich der Cursor in einer geänderten Textpassage befindeteine geänderte Zelle ausgewählt ist oder Sie den Dialog Änderungen verwalten aufrufen, haben Sie die Möglichkeit, Kommentare hinzuzufügen." +msgstr "Wenn sich der Cursor in einer geänderten Textpassage befindeteine geänderte Zelle ausgewählt ist oder Sie den Dialog Änderungen verwalten aufrufen, haben Sie die Möglichkeit, Kommentare hinzuzufügen." #: 02230300.xhp msgctxt "" @@ -11230,7 +11230,7 @@ "hd_id3155511\n" "help.text" msgid "AutoFilter" -msgstr "Filter anwenden" +msgstr "AutoFilter" #: 02250000.xhp msgctxt "" @@ -11390,7 +11390,7 @@ "par_id3149655\n" "help.text" msgid "Zooming is handled differently on Unix, Linux, and Windows platforms. A document saved with a 100% zoom factor in Windows is displayed at a larger zoom factor on Unix/Linux platforms. To change the zoom factor, double-click or right-click the percentage value on the Status bar, and select the zoom factor that you want." -msgstr "Unter Unix, Linux und Windows funktioniert das Zoomen auf unterschiedliche Weise. Unter Windows mit einem Zoomfaktor von 100% gespeicherte Dokumente werden auf Unix- und Linux-Systemen mit einem größeren Zoomfaktor dargestellt. Wenn Sie den Zoomfaktor ändern möchten, doppelklicken Sie auf den Prozentwert in der Statusleiste beziehungsweise klicken Sie mit der rechten Maustaste darauf und wählen Sie den gewünschten Zoomfaktor aus." +msgstr "Unter Unix, Linux und Windows funktioniert das Zoomen auf unterschiedliche Weise. Unter Windows mit einem Zoomfaktor von 100 % gespeicherte Dokumente werden auf Unix- und Linux-Systemen mit einem größeren Zoomfaktor dargestellt. Wenn Sie den Zoomfaktor ändern möchten, doppelklicken Sie auf den Prozentwert in der Statusleiste beziehungsweise klicken Sie mit der rechten Maustaste darauf und wählen Sie den gewünschten Zoomfaktor aus." #: 03010000.xhp msgctxt "" @@ -12254,7 +12254,7 @@ "par_id3153124\n" "help.text" msgid "To insert a scanned image, the driver for your scanner must be installed. Under UNIX systems, install the SANE package found at http://www.mostang.com/sane/. The SANE package must use the same libc as $[officename]." -msgstr "Zum Einfügen gescannter Bilder muss der Treiber für Ihren Scanner auf dem System installiert sein. Unter UNIX installieren Sie bitte das SANE-Paket, das Sie unter http://www.mostang.com/sane/ finden. Das SANE-Paket muss die gleiche libc verwenden wie $[officename]. " +msgstr "Zum Einfügen gescannter Bilder muss der Treiber für Ihren Scanner auf dem System installiert sein. Unter UNIX installieren Sie bitte das SANE-Paket, das Sie unter http://www.sane-project.org/ finden. Das SANE-Paket muss die gleiche libc verwenden wie $[officename]." #: 04060000.xhp msgctxt "" @@ -12982,7 +12982,7 @@ "hd_id3147588\n" "help.text" msgid "Hyperlink" -msgstr " Hyperlink " +msgstr "Hyperlink" #: 05020100.xhp msgctxt "" @@ -13126,7 +13126,7 @@ "par_id3148797\n" "help.text" msgid "If you are creating a Style that is based on another Style, you can enter a percentage value or a point value (for example, -2pt or +5pt)." -msgstr "Wenn Sie eine Formatvorlage auf Grundlage einer anderen Formatvorlage erstellen, haben Sie die Möglichkeit, die Änderung in Prozent oder als Point-Wert (beispielsweise -2pt oder +5pt) anzugeben." +msgstr "Wenn Sie eine Formatvorlage auf Grundlage einer anderen Formatvorlage erstellen, haben Sie die Möglichkeit, die Änderung in Prozent oder als Point-Wert (beispielsweise -2 pt oder +5 pt) anzugeben." #: 05020100.xhp msgctxt "" @@ -13622,7 +13622,7 @@ "bm_id3152942\n" "help.text" msgid "formats; number and currency formatsnumber formats; formatscurrencies;format codesdefaults; number formats" -msgstr "Formate; Zahlen- und WährungsformateZahlenformate; FormateWährungen; FormatcodesStandardeinstellungen; Zahlenformate" +msgstr "Formate; Zahlen- und WährungsformateZahlenformate; FormateWährungen; FormatcodesVoreinstellungen; Zahlenformate" #: 05020300.xhp msgctxt "" @@ -13902,7 +13902,7 @@ "par_id3154150\n" "help.text" msgid "Deletes the selected number format. The changes are effective after you restart $[officename]." -msgstr "Löscht das ausgewählte Zahlenformat. Die Änderungen werden nach einem Neustart von $[officename] wirksam." +msgstr "Löscht das ausgewählte Zahlenformat. Die Änderungen werden erst nach einem Neustart von $[officename] wirksam." #: 05020300.xhp msgctxt "" @@ -14230,7 +14230,7 @@ "par_id3154224\n" "help.text" msgid "To include text in a number format that is applied to a cell containing numbers, place a double quotation mark (\") in front of and behind the text, or a backslash (\\) before a single character. For example, enter #.# \"meters\" to display \"3.5 meters\" or #.# \\m to display \"3.5 m\". If you use space as thousands separator, you need to insert spaces between quotes in the previous examples: #.#\" meters\" or #.#\\ \\m to get the correct result." -msgstr "Um Text in ein Zahlformat einzuschließen, das auf eine Zelle angewendet wird, die Zahlen enthält, schließen Sie den Text in doppelte Anführungszeichen (\") ein oder fügen einen Rückstrich (\\) vor jedem einzelnen Zeichen ein. Geben Sie beispielsweise #,# \"Meter\" ein, um \"3,5 Meter\" angezeigt zu bekommen, oder #,# \\m für \"3,5 m\". Wenn Sie Leerzeichen als Tausendertrennzeichen verwenden, müssen Sie die Leerzeichen in den vorherigen Beispielen in die Formatierung mit einschließen: #,#\" Meter\" beziehungsweise #,#\\ \\m, um das richtige Ergebnis zu erzielen." +msgstr "Um Text in ein Zahlenformat einzuschließen, das auf eine Zelle angewendet wird, die Zahlen enthält, schließen Sie den Text in doppelte Anführungszeichen (\") ein oder fügen einen Rückstrich (\\) vor jedem einzelnen Zeichen ein. Geben Sie beispielsweise #,# \"Meter\" ein, um \"3,5 Meter\" angezeigt zu bekommen, oder #,# \\m für \"3,5 m\". Wenn Sie Leerzeichen als Tausendertrennzeichen verwenden, müssen Sie die Leerzeichen in den vorherigen Beispielen in die Formatierung mit einschließen: #,#\" Meter\" beziehungsweise #,#\\ \\m, um das richtige Ergebnis zu erzielen." #: 05020301.xhp msgctxt "" @@ -14294,7 +14294,7 @@ "par_id3156423\n" "help.text" msgid "To set the color of a section of a number format code, insert one of the following color names in square brackets [ ]:" -msgstr "Die Farbe für einen Abschnitt des Formats stellen Sie ein, indem Sie einen der folgenden Farbnamen in eckigen Klammern [ ] einfügen:" +msgstr "Die Farbe für einen Abschnitt eines Zahlenformatcodes stellen Sie ein, indem Sie einen der folgenden Farbnamen in eckigen Klammern [ ] einfügen:" #: 05020301.xhp msgctxt "" @@ -15190,7 +15190,7 @@ "par_id3150108\n" "help.text" msgid "To display hours, minutes and seconds use the following number format codes." -msgstr "Stellen Sie Stunden, Minuten und Sekunden mithilfe der folgenden Zahlenformat-Codes dar." +msgstr "Stellen Sie Stunden, Minuten und Sekunden mithilfe der folgenden Zahlenformatcodes dar." #: 05020301.xhp msgctxt "" @@ -15334,7 +15334,7 @@ "par_id3154600\n" "help.text" msgid "The [NatNum1] modifier always uses a one to one character mapping to convert numbers to a string that matches the native number format code of the corresponding locale. The other modifiers produce different results if they are used with different locales. A locale can be the language and the territory for which the format code is defined, or a modifier such as [$-yyy] that follows the native number modifier. In this case, yyy is the hexadecimal MS-LCID that is also used in currency format codes. For example, to display a number using Japanese short Kanji characters in an English US locale, use the following number format code:" -msgstr "Der Modifikator [NatNum1] konvertiert eine Zahl stets nach einer 1:1-Zuordnung in eine Zeichenkette, die dem länderspezifischen Zahlenformat des entsprechenden Gebietsschemas entspricht. Die übrigen Modifizierer liefern je nach Gebietsschema unterschiedliche Ergebnisse. Das Gebietsschema ergibt sich entweder aus der Kombination aus Sprache und Land, für die der Formatcode definiert ist, oder es wird mit einem Modifizierer wie [$-yyy] hinter dem Modifizierer für die landesspezifische Zahl angegeben. yyy steht hier für die Hexadezimalzahl MS-LCID, die auch in Währungsformat-Codes zum Einsatz kommt. Mit dem folgenden Zahlenformat-Code lassen sich beispielsweise japanische Kanji-Kurzzeichen im englischen US-Gebietsschema darstellen:" +msgstr "Der Modifikator [NatNum1] konvertiert eine Zahl stets nach einer 1:1-Zuordnung in eine Zeichenkette, die dem länderspezifischen Zahlenformat des entsprechenden Gebietsschemas entspricht. Die übrigen Modifizierer liefern je nach Gebietsschema unterschiedliche Ergebnisse. Das Gebietsschema ergibt sich entweder aus der Kombination aus Sprache und Land, für die der Formatcode definiert ist, oder es wird mit einem Modifizierer wie [$-yyy] hinter dem Modifizierer für die landesspezifische Zahl angegeben. yyy steht hier für die Hexadezimalzahl MS-LCID, die auch in Währungsformat-Codes zum Einsatz kommt. Mit dem folgenden Zahlenformatcode lassen sich beispielsweise japanische Kanji-Kurzzeichen im englischen US-Gebietsschema darstellen:" #: 05020301.xhp msgctxt "" @@ -16774,7 +16774,7 @@ "par_id231020161510021223\n" "help.text" msgid "Two next digits CC are for calendar code. Each calendar is only valid for some LCID." -msgstr "Die zwei folgendne Zeichen CC für den Kalender-Code. Jeder Kalender ist nur für einige LCIDs gültig." +msgstr "Die zwei folgenden Zeichen CC sind für den Kalender-Code. Jeder Kalender ist nur für einige LCIDs gültig." #: 05020301.xhp msgctxt "" @@ -16998,7 +16998,7 @@ "tit\n" "help.text" msgid "Hyperlink" -msgstr "Link" +msgstr "Hyperlink" #: 05020400.xhp msgctxt "" @@ -17006,7 +17006,7 @@ "bm_id3152895\n" "help.text" msgid "formatting; hyperlinkscharacters; hyperlinkshyperlinks; character formatstext;hyperlinkslinks; character formats" -msgstr "Formatierung; HyperlinksZeichen; HyperlinksHyperlinks; ZeichenformateText; HyperlinksLinks; Zeichenformate" +msgstr "Formatierung; HyperlinksZeichen; HyperlinksHyperlinks; ZeichenformateText; HyperlinksVerknüpfungen; Zeichenformate" #: 05020400.xhp msgctxt "" @@ -17038,7 +17038,7 @@ "hd_id3147243\n" "help.text" msgid "Hyperlink" -msgstr "Link" +msgstr "Hyperlink" #: 05020400.xhp msgctxt "" @@ -17094,7 +17094,7 @@ "par_id3155450\n" "help.text" msgid "Enter the text that you want to display for the hyperlink." -msgstr "Geben Sie den Text ein, den Sie für den Querverweis angezeigt bekommen wollen." +msgstr "Geben Sie den Text ein, den Sie für den Hyperlink angezeigt bekommen wollen." #: 05020400.xhp msgctxt "" @@ -17110,7 +17110,7 @@ "par_id3153257\n" "help.text" msgid "Specify an event that triggers when you click the hyperlink." -msgstr "Geben Sie ein Ereignis an, dass ausgelöst, wenn Sie auf den Querverweis klicken." +msgstr "Geben Sie ein Ereignis an, das ausgelöst wird, wenn Sie auf den Hyperlink klicken." #: 05020400.xhp msgctxt "" @@ -17302,7 +17302,7 @@ "par_id3143231\n" "help.text" msgid "Hyperlink dialog" -msgstr "Hyperlink (Dialog)" +msgstr "Hyperlink-Dialog" #: 05020400.xhp msgctxt "" @@ -17422,7 +17422,7 @@ "par_id3150275\n" "help.text" msgid "Enter the amount by which you want to raise or to lower the selected text in relation to the baseline. One hundred percent is equal to the height of the font." -msgstr "Geben Sie an, um wie viel Prozent der ausgewählte Text in Bezug auf die Grundlinie höher oder tiefer gestellt werden soll. 100% entspricht dabei der Schrifthöhe." +msgstr "Geben Sie an, um wie viel Prozent der ausgewählte Text in Bezug auf die Grundlinie höher oder tiefer gestellt werden soll. 100 % entspricht dabei der Schrifthöhe." #: 05020500.xhp msgctxt "" @@ -17734,7 +17734,7 @@ "tit\n" "help.text" msgid "Asian Typography" -msgstr "Asiatische Typographie" +msgstr "Asiatische Typografie" #: 05020700.xhp msgctxt "" @@ -17742,7 +17742,7 @@ "bm_id3155620\n" "help.text" msgid "Asian typographyformatting; Asian typographyparagraphs; Asian typographytypography; Asian" -msgstr "Asiatische Typographie Formate;asiatische Typographie Absätze;asiatische Typographie Typographie;asiatische" +msgstr "Asiatische TypografieFormate; asiatische TypografieAbsätze; asiatische TypografieTypografie; asiatische" #: 05020700.xhp msgctxt "" @@ -17750,7 +17750,7 @@ "hd_id3155620\n" "help.text" msgid "Asian Typography" -msgstr "Asiatische Typographie" +msgstr "Asiatische Typografie" #: 05020700.xhp msgctxt "" @@ -17758,7 +17758,7 @@ "par_id3153124\n" "help.text" msgid "Set the typographic options for cells or paragraphs in Asian language files. To enable Asian language support, choose Language Settings - Languages in the Options dialog box, and then select the Enabled box in the Asian language support area. The Asian typography options are ignored in HTML documents." -msgstr "Hier legen Sie die typographischen Optionen für Zellen oder Absätze für Dateien in asiatischen Sprachen fest. Zum Aktivieren der Unterstützung für asiatische Sprachen wählen Sie im Optionsdialog Spracheinstellungen - Sprachen und dann das Feld Aktiviert unter Unterstützung asiatischer Sprachen aus. In HTML-Dokumenten werden die Optionen für die asiatische Typographie ignoriert." +msgstr "Hier legen Sie die typografischen Optionen für Zellen oder Absätze für Dateien in asiatischen Sprachen fest. Zum Aktivieren der Unterstützung für asiatische Sprachen wählen Sie im Optionsdialog Spracheinstellungen - Sprachen und dann das Feld Aktiviert unter Unterstützung asiatischer Sprachen aus. In HTML-Dokumenten werden die Optionen für die asiatische Typografie ignoriert." #: 05020700.xhp msgctxt "" @@ -19638,7 +19638,7 @@ "hd_id3153750\n" "help.text" msgid "AutoUpdate " -msgstr " Automatisch aktualisieren " +msgstr "Automatisch aktualisieren" #: 05040100.xhp msgctxt "" @@ -22518,7 +22518,7 @@ "par_id3155364\n" "help.text" msgid "The name is also displayed in the Status Bar when you select the object." -msgstr "Dieser Name wird bei Auswahl des Objekts auch in der Statusleiste angezeigt." +msgstr "Dieser Name wird bei Auswahl des Objektes auch in der Statusleiste angezeigt." #: 05190000.xhp msgctxt "" @@ -22718,7 +22718,7 @@ "par_id3156346\n" "help.text" msgid "Enter the transparency of the line, where 100% corresponds to completely transparent and 0% to completely opaque. " -msgstr "Geben Sie die gewünschte Transparenz für die Linie ein. Bei 100% ist die Linie vollständig durchsichtig, bei 0% vollständig undurchsichtig." +msgstr "Geben Sie die gewünschte Transparenz für die Linie ein. Bei 100 % ist die Linie vollständig durchsichtig, bei 0 % vollständig undurchsichtig." #: 05200100.xhp msgctxt "" @@ -23574,7 +23574,7 @@ "par_id3149398\n" "help.text" msgid "Enter the intensity for the color in the From box, where 0% corresponds to black, and 100 % to the selected color." -msgstr "Geben Sie die Intensität für die Farbe im Feld Von an. Dabei steht 0 % für Schwarz, und der Wert 100 % entspricht der ausgewählten Farbe." +msgstr "Geben Sie die Intensität für die Farbe im Feld Bis an. Dabei steht 0 % für Schwarz, der Wert 100 % entspricht der ausgewählten Farbe." #: 05210300.xhp msgctxt "" @@ -23598,7 +23598,7 @@ "par_id3154142\n" "help.text" msgid "Enter the intensity for the color in the To box, where 0% corresponds to black, and 100 % to the selected color." -msgstr "Geben Sie die Intensität für die Farbe im Feld Bis an. Dabei steht 0 % für Schwarz, und der Wert 100 % entspricht der ausgewählten Farbe." +msgstr "Geben Sie die Intensität für die Farbe im Feld Bis an. Dabei steht 0 % für Schwarz, der Wert 100 % entspricht der ausgewählten Farbe." #: 05210300.xhp msgctxt "" @@ -24110,7 +24110,7 @@ "par_id3150693\n" "help.text" msgid "Turns on color transparency. Select this option, and then enter a number in the box, where 0% is fully opaque and 100% is fully transparent." -msgstr "Schaltet die Farbtransparenz ein. Wählen Sie diese Option aus und geben Sie einen Wert in das Feld ein. Der Wert 0% entspricht vollständiger Undurchsichtigkeit, 100% vollständiger Transparenz." +msgstr "Schaltet die Farbtransparenz ein. Wählen Sie diese Option aus und geben Sie einen Wert in das Feld ein. Der Wert 0 % entspricht vollständiger Undurchsichtigkeit, 100 % vollständiger Transparenz." #: 05210700.xhp msgctxt "" @@ -24126,7 +24126,7 @@ "par_id3155892\n" "help.text" msgid "Adjusts the transparency of the current fill color. Enter a number between 0% (opaque) and 100% (transparent)." -msgstr "Regelt die Transparenz der aktuellen Füllungsfarbe. Geben Sie einen Wert von 0% (undurchsichtig) bis 100% (transparent) ein." +msgstr "Regelt die Transparenz der aktuellen Füllungsfarbe. Geben Sie einen Wert von 0 % (undurchsichtig) bis 100 % (transparent) ein." #: 05210700.xhp msgctxt "" @@ -24222,7 +24222,7 @@ "par_id3149784\n" "help.text" msgid "Enter the amount by which you want to adjust the transparent area of the gradient. The default value is 0%." -msgstr "Geben Sie an, um welchen Anteil die transparente Fläche im Verlauf geändert werden soll. Der Standardwert ist 0%." +msgstr "Geben Sie an, um welchen Anteil die transparente Fläche im Verlauf geändert werden soll. Der Standardwert ist 0 %." #: 05210700.xhp msgctxt "" @@ -24238,7 +24238,7 @@ "par_id3150117\n" "help.text" msgid "Enter a transparency value for the beginning point of the gradient, where 0% is fully opaque and 100% is fully transparent." -msgstr "Geben Sie einen Startwert für den Transparenzverlauf ein. Dabei entspricht der Wert 0% vollständiger Undurchsichtigkeit und 100% entspricht vollständiger Transparenz." +msgstr "Geben Sie einen Startwert für den Transparenzverlauf ein. Dabei entspricht der Wert 0 % vollständiger Undurchsichtigkeit und 100 % entspricht vollständiger Transparenz." #: 05210700.xhp msgctxt "" @@ -24254,7 +24254,7 @@ "par_id3148924\n" "help.text" msgid "Enter a transparency value for the endpoint of the gradient, where 0% is fully opaque and 100% is fully transparent." -msgstr "Geben Sie einen Endwert für den Transparenzverlauf ein. Dabei entspricht der Wert 0% vollständiger Undurchsichtigkeit und 100% entspricht vollständiger Transparenz." +msgstr "Geben Sie einen Endwert für den Transparenzverlauf ein. Dabei entspricht der Wert 0 % vollständiger Undurchsichtigkeit und 100 % entspricht vollständiger Transparenz." #: 05210700.xhp msgctxt "" @@ -26430,7 +26430,7 @@ "hd_id3152474\n" "help.text" msgid "Ungroup" -msgstr "Aufheben" +msgstr "Gruppierung aufheben" #: 05290000.xhp msgctxt "" @@ -26630,7 +26630,7 @@ "hd_id3152821\n" "help.text" msgid "Text animation effects" -msgstr "Lauftexteffekte" +msgstr "Effekte für Lauftexte" #: 05320000.xhp msgctxt "" @@ -27062,7 +27062,7 @@ "par_id3152821\n" "help.text" msgid "You can also change the width of a column by dragging the divider beside the column header. To fit the column width to the cell contents, double-click the divider. " -msgstr "Die Spaltenbreite lässt sich auch durch Ziehen des Trenners neben dem Spaltenkopf ändern. Um die Spaltenbreite an den Zellinhalt anzupassen, doppelklicken Sie auf den Trenner. " +msgstr "Die Spaltenbreite lässt sich auch durch Ziehen des Trenners neben dem Spaltenkopf ändern. Um die Spaltenbreite an den Zellinhalt anzupassen, doppelklicken Sie auf den Trenner." #: 05340200.xhp msgctxt "" @@ -30990,7 +30990,7 @@ "par_id3158430\n" "help.text" msgid "Automatically creates a hyperlink when you type a URL." -msgstr "Bei Eingabe einer URL wird automatisch ein Hyperlink erzeugt." +msgstr "Bei der Eingabe einer URL wird automatisch ein Hyperlink erzeugt." #: 06040100.xhp msgctxt "" @@ -31262,7 +31262,7 @@ "par_id3154690\n" "help.text" msgid "0.5pt single underline" -msgstr "0,5pt Einzelstrich unten" +msgstr "0,5 pt Einzelstrich unten" #: 06040100.xhp msgctxt "" @@ -31278,7 +31278,7 @@ "par_id3149266\n" "help.text" msgid "1.0pt single underline" -msgstr "1,0pt Einzelstrich unten" +msgstr "1,0 pt Einzelstrich unten" #: 06040100.xhp msgctxt "" @@ -31294,7 +31294,7 @@ "par_id3145364\n" "help.text" msgid "1.1pt double underline" -msgstr "1,1pt Doppelstrich unten" +msgstr "1,1 pt Doppelstrich unten" #: 06040100.xhp msgctxt "" @@ -31310,7 +31310,7 @@ "par_id3152791\n" "help.text" msgid "4.5pt double underline" -msgstr "4,5pt Doppelstrich unten" +msgstr "4,5 pt Doppelstrich unten" #: 06040100.xhp msgctxt "" @@ -31326,7 +31326,7 @@ "par_id3152885\n" "help.text" msgid "6.0pt double underline" -msgstr "6,0pt Doppelstrich unten" +msgstr "6,0 pt Doppelstrich unten" #: 06040100.xhp msgctxt "" @@ -31342,7 +31342,7 @@ "par_id3153188\n" "help.text" msgid "9.0pt double underline" -msgstr "9,0pt Doppelstrich unten" +msgstr "9,0 pt Doppelstrich unten" #: 06040100.xhp msgctxt "" @@ -31558,7 +31558,7 @@ "par_id3147560\n" "help.text" msgid "Enter the word, abbreviation or word part that you want to replace while you type. Wildcard character sequence .* in the end of word results the replacement of the word before arbitrary suffixes, too. Wildcard character sequence .* before the word results the replacement after arbitrary prefixes, too. For example, the pattern \"i18n.*\" with the replacement text \"internationalization\" finds and replaces \"i18ns\" with \"internationalizations\", or the pattern \".*...\" with the replacement text \"…\" finds and replaces three dots in \"word...\" with the typographically correct precomposed Unicode horizontal ellipsis (\"word…\")." -msgstr "Geben Sie das Wort, die Abkürzung oder den Wortteil ein, welche(s/n) Sie während der Eingabe ersetzen wollen. Die Platzhalter-Sequenz .* am Wortende führt auch zu der Ersetzung vor beliebigen Wortenden. Die Platzhalter-Sequenz .* am Wortanfang führt auch zu der Ersetzung nach beliebigen Wortanfängen. Das Muster \"i18n.*\" mit dem Ersetzungstext \"Internationalisierung\" findet zum Beispiel alle \"i18n\"s und ersetzt sie mit \"Internationalisierung\" oder das Muster \".*...\" mit dem Ersetzungstext \"…\" findet drei Punkte in \"Wort...\" und ersetzt sie mit dem typographisch korrekten vorgefertigten Unicodezeichen Auslassungspunkte (\"Wort…\")." +msgstr "Geben Sie das Wort, die Abkürzung oder den Wortteil ein, welche(s/n) Sie während der Eingabe ersetzen wollen. Die Platzhalter-Sequenz .* am Wortende führt auch zu der Ersetzung vor beliebigen Wortenden. Die Platzhalter-Sequenz .* am Wortanfang führt auch zu der Ersetzung nach beliebigen Wortanfängen. Das Muster \"i18n.*\" mit dem Ersetzungstext \"Internationalisierung\" findet zum Beispiel alle \"i18n\"s und ersetzt sie mit \"Internationalisierung\" oder das Muster \".*...\" mit dem Ersetzungstext \"…\" findet drei Punkte in \"Wort...\" und ersetzt sie mit dem typografisch korrekten vorgefertigten Unicodezeichen Auslassungspunkte (\"Wort…\")." #: 06040200.xhp msgctxt "" @@ -31950,7 +31950,7 @@ "par_id3147000\n" "help.text" msgid "Click the word to replace the highlighted word. Use the AutoCorrect submenu for permanent replacement." -msgstr "Klicken Sie auf das Wort, durch das das hervorgehobene Wort ersetzt werden soll. Eine permanente Ersetzung nehmen Sie über das Untermenü \"AutoKorrektur\" vor." +msgstr "Klicken Sie auf das Wort, durch das das hervorgehobene Wort ersetzt werden soll. Eine permanente Ersetzung nehmen Sie über das Untermenü AutoKorrektur vor." #: 06040500.xhp msgctxt "" @@ -32254,7 +32254,7 @@ "tit\n" "help.text" msgid "Smart Tags" -msgstr "Smart Tags" +msgstr "SmartTags" #: 06040700.xhp msgctxt "" @@ -32262,7 +32262,7 @@ "bm_id9057588\n" "help.text" msgid "smart tag configuration" -msgstr "Smart Tag Konfiguration" +msgstr "SmartTags-Konfiguration" #: 06040700.xhp msgctxt "" @@ -32270,7 +32270,7 @@ "hd_id3563951\n" "help.text" msgid "Smart Tags" -msgstr "Smart Tags" +msgstr "SmartTags" #: 06040700.xhp msgctxt "" @@ -32278,7 +32278,7 @@ "par_id1827448\n" "help.text" msgid "When you have installed at least one Smart Tag extension, you see the Smart Tags page." -msgstr "Wenn Sie mindestens eine Smart Tag Extension installiert haben, wird das Register Smart Tags angezeigt." +msgstr "Wenn Sie mindestens eine SmartTags-Extension installiert haben, wird das Register SmartTags angezeigt." #: 06040700.xhp msgctxt "" @@ -32286,7 +32286,7 @@ "hd_id686666\n" "help.text" msgid "Label text with smart tags" -msgstr "Text mit Smart Tags versehen" +msgstr "Text mit SmartTags versehen" #: 06040700.xhp msgctxt "" @@ -32294,7 +32294,7 @@ "par_id3259376\n" "help.text" msgid "Enables Smart Tags to be evaluated and shown in your text document." -msgstr "Hier legen Sie fest, dass Smart Tags in Ihrem Textdokument ausgewertet und angezeigt werden." +msgstr "Hier legen Sie fest, dass SmartTags in Ihrem Textdokument ausgewertet und angezeigt werden." #: 06040700.xhp msgctxt "" @@ -32302,7 +32302,7 @@ "hd_id4024170\n" "help.text" msgid "Currently installed smart tags" -msgstr "Aktuell installierte Smart Tags" +msgstr "Aktuell installierte SmartTags" #: 06040700.xhp msgctxt "" @@ -32310,7 +32310,7 @@ "par_id2847071\n" "help.text" msgid "Displays all installed Smart Tags. To configure a Smart Tag, select the name of the Smart Tag, then click Properties. Not all Smart Tags can be configured." -msgstr "Zeigt alle installierten Smart Tags an. Wählen Sie den Namen eines Smart Tags und klicken dann auf Eigenschaften, um die Eigenschaften des Smart Tags zu ändern. Nicht alle Smart Tags haben erweiterte Eigenschaften." +msgstr "Zeigt alle installierten SmartTags an. Wählen Sie den Namen eines SmartTags und klicken dann auf Eigenschaften, um die Eigenschaften des SmartTags zu ändern. Nicht alle SmartTags haben erweiterte Eigenschaften." #: 06040700.xhp msgctxt "" @@ -32326,7 +32326,7 @@ "par_id3912167\n" "help.text" msgid "To configure a Smart Tag, select the name of the Smart Tag, then click Properties. Not all Smart Tags can be configured." -msgstr "Wählen Sie den Namen eines Smart Tags und klicken dann auf Eigenschaften, um die Eigenschaften des Smart Tags zu ändern. Nicht alle Smart Tags haben erweiterte Eigenschaften" +msgstr "Wählen Sie den Namen eines SmartTags und klicken dann auf Eigenschaften, um die Eigenschaften des SmartTags zu ändern. Nicht alle SmartTags haben erweiterte Eigenschaften" #: 06050000.xhp msgctxt "" @@ -32366,7 +32366,7 @@ "hd_id3154984\n" "help.text" msgid "Remove " -msgstr " Entfernen " +msgstr "Entfernen" #: 06050000.xhp msgctxt "" @@ -33366,7 +33366,7 @@ "par_id3147574\n" "help.text" msgid "Enter the minimum amount of space to leave between the right edge of the numbering symbol and the left edge of the text." -msgstr " Geben Sie den gewünschten Mindestabstand zwischen Nummerierungszeichen und erster Zeile im Absatz ein. " +msgstr "Geben Sie den gewünschten Mindestabstand zwischen Nummerierungszeichen und erster Zeile im Absatz ein." #: 06050600.xhp msgctxt "" @@ -36310,7 +36310,7 @@ "par_id3156330\n" "help.text" msgid "The path to the directory that contains the template must be included in %PRODUCTNAME - PreferencesTools - Options - $[officename] - Paths. When you open an XML file whose filter uses the template, the template opens first. In the template, you can map $[officename] styles to display XML tags in the XML document." -msgstr "Der Pfad zum Verzeichnis der Vorlage, muss in %PRODUCTNAME - EinstellungenExtras - Optionen... - $[officename] - Pfade enthalten sein. Wenn Sie eine XML-Datei öffnen, deren Filter die Vorlage benutzt, öffnet sich zuerst die Dokumentvorlage. In der Vorlage können Sie $[officename]-Formatvorlagen zur Anzeige der XML-Tags im XML-Dokument zuweisen." +msgstr "Der Pfad zum Verzeichnis der Vorlage muss in %PRODUCTNAME - EinstellungenExtras - Optionen... - $[officename] - Pfade enthalten sein. Wenn Sie eine XML-Datei öffnen, deren Filter die Vorlage benutzt, öffnet sich zuerst die Dokumentvorlage. In der Vorlage können Sie $[officename]-Formatvorlagen zur Anzeige der XML-Tags im XML-Dokument zuweisen." #: 06150200.xhp msgctxt "" @@ -38686,7 +38686,7 @@ "bm_id1907712\n" "help.text" msgid "inserting;movies/sounds sound files playing movies and sound files videos movies audio music" -msgstr "Einfügen; Filme/KlängeAudiodateienFilme- und Audiodateien abspielenVideosFilmeAudioMusik" +msgstr "Einfügen; Filme/KlängeAudiodateienFilm- und Audiodateien abspielenVideosFilmeAudioMusik" #: moviesound.xhp msgctxt "" @@ -39078,7 +39078,7 @@ "par_id702230\n" "help.text" msgid "You can disable or enable the automatic check in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Online Update." -msgstr "Sie können die automatische Prüfung in %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME - Online Update aktivieren oder deaktivieren." +msgstr "Sie können die automatische Prüfung in %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME - Online-Update aktivieren oder deaktivieren." #: online_update.xhp msgctxt "" @@ -39222,7 +39222,7 @@ "par_id1502121\n" "help.text" msgid "By default, downloads will be stored to your desktop. You can change the folder where the downloaded file will be stored in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Online Update." -msgstr "Standardmäßig werden heruntergeladene Dateien auf Ihrer Arbeitsfläche gespeichert. Sie können das Verzeichnis, in dem heruntergeladene Dateien gespeichert werden sollen, unter %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME - Online Update ändern." +msgstr "Standardmäßig werden Downloads auf Ihre Arbeitsfläche gespeichert. Sie können das Verzeichnis, in das die heruntergeladene Datei gespeichert wird, unter %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME - Online-Update ändern." #: online_update_dialog.xhp msgctxt "" @@ -39254,7 +39254,7 @@ "par_id4238715\n" "help.text" msgid "Downloads and saves the update files to the desktop or a folder of your choice. Select the folder in %PRODUCTNAME - Online Update in the Options dialog box." -msgstr "Lädt die zu aktualisierenden Dateien herunter und speichert sie auf dem Desktop oder in einem Verzeichnis Ihrer Wahl. Wählen Sie das Verzeichnis im Optionsdialog unter %PRODUCTNAME - Online Update." +msgstr "Lädt die zu aktualisierenden Dateien herunter und speichert sie auf dem Desktop oder in einem Verzeichnis Ihrer Wahl. Wählen Sie das Verzeichnis im Optionsdialog unter %PRODUCTNAME - Online-Update." #: online_update_dialog.xhp msgctxt "" @@ -39942,7 +39942,7 @@ "par_id281120160939285779\n" "help.text" msgid "Safe mode is a mode where %PRODUCTNAME temporarily starts with a fresh user profile and disables hardware acceleration. It helps to restore a non-working %PRODUCTNAME instance. " -msgstr "Der sichere Modus ist ein Modus, in dem %PRODUCTNAME temporär mit einem frischen Benutzerprofil startet und die Hardwarebeschleunigung deaktiviert. Das hilft, eine nicht funktionierende %PRODUCTNAME Instanz wiederherzustellen." +msgstr "Der abgesicherte Modus ist ein Modus, in welchem %PRODUCTNAME temporär mit einem frischen Benutzerprofil startet und die Hardwarebeschleunigung deaktiviert wird. Dies hilft, eine nicht mehr funktionierende %PRODUCTNAME-Instanz wiederherzustellen." #: profile_safe_mode.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/shared/02.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/shared/02.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/shared/02.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/shared/02.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-05-12 14:35+0200\n" -"PO-Revision-Date: 2017-11-01 16:31+0000\n" -"Last-Translator: Sophia Schröder \n" +"PO-Revision-Date: 2017-12-10 06:12+0000\n" +"Last-Translator: Gilward_Kukel \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1509553900.000000\n" +"X-POOTLE-MTIME: 1512886358.000000\n" #: 01110000.xhp msgctxt "" @@ -206,7 +206,7 @@ "par_id3147230\n" "help.text" msgid "Draws a rectangle where you drag in the current document. To draw a square, hold down Shift while you drag. Click where you want to place a corner of the rectangle, and drag to the size you want." -msgstr "Zeichnet ein Rechteck, wenn Sie im Dokument ziehen. Um ein Quadrat zu zeichnen, halten Sie beim Ziehen die Umschalttaste gedrückt. Klicken Sie dort, wo eine Ecke des Rechtecks erscheinen soll und ziehen Sie auf die gewünschte Größe." +msgstr "Zeichnet ein Rechteck, wenn Sie im Dokument ziehen. Um ein Quadrat zu zeichnen, halten Sie beim Ziehen die Umschalttaste gedrückt. Klicken Sie dort, wo eine Ecke des Rechtecks erscheinen soll und ziehen Sie es auf die gewünschte Größe auf." #: 01140000.xhp msgctxt "" @@ -230,7 +230,7 @@ "par_id3159197\n" "help.text" msgid "Draws an oval where you drag in the current document. Click where you want to draw the oval, and drag to the size you want. To draw a circle, hold down Shift while you drag." -msgstr "Zeichnet eine Ellipse, wenn Sie im Dokument ziehen. Um einen Kreis zu zeichnen, halten Sie beim Ziehen die Umschalttaste gedrückt. Klicken Sie dort, wo die Ellipse erscheinen soll, und ziehen Sie diese auf die gewünschte Größe." +msgstr "Zeichnet eine Ellipse, wenn Sie im Dokument ziehen. Klicken Sie dorthin, wo die Ellipse erscheinen soll, und ziehen Sie sie auf die gewünschte Größe auf. Um einen Kreis zu zeichnen, halten Sie beim Ziehen die Umschalttaste gedrückt." #: 01140000.xhp msgctxt "" @@ -2030,7 +2030,7 @@ "par_id3154230\n" "help.text" msgid "When you enter a year using two digits, the corresponding four digit value is determined by a setting in %PRODUCTNAME - PreferencesTools - Options - $[officename] - General. For example, if 1935 is set as the lower limiting value and you enter 34 as a date value, then the result is 2034 instead of 1934." -msgstr "Welcher vierstelligen Jahreszahl eine mit zwei Stellen eingegebene Jahreszahl entspricht, ist durch eine die entsprechende Einstellung unter %PRODUCTNAME - EinstellungenExtras - Optionen... - $[officename] - Allgemein festgelegt. Wenn beispielsweise 1935 als unterer Grenzwert festgelegt ist und Sie 34 als Datumswert eingeben, lautet das Ergebnis nicht 1934, sondern 2034." +msgstr "Welcher vierstelligen Jahreszahl eine mit zwei Stellen eingegebene Jahreszahl entspricht, ist durch eine entsprechende Einstellung unter %PRODUCTNAME - EinstellungenExtras - Optionen... - $[officename] - Allgemein festgelegt. Wenn beispielsweise 1935 als unterer Grenzwert festgelegt ist und Sie 34 als Datumswert eingeben, lautet das Ergebnis nicht 1934, sondern 2034." #: 01170003.xhp msgctxt "" @@ -2646,7 +2646,7 @@ "par_id3155101\n" "help.text" msgid "Resets the settings in other control fields to the predefined defaults (Default Status, Default Selection, Default Value)." -msgstr "Setzt die Einstellungen in den anderen Kontrollfeldern auf die vordefinierten Standardwerte (Standardstatus, Standardselektion und Standardwert) zurück." +msgstr "Setzt die Einstellungen in den anderen Kontrollfeldern auf die vordefinierten Standardwerte (Standardstatus, Standardauswahl und Standardwert) zurück." #: 01170101.xhp msgctxt "" @@ -3382,7 +3382,7 @@ "par_id3154991\n" "help.text" msgid "Specifies the target frame to display the document that is opened by the \"Open document / web page\" action. You can also specify the target frame to display a URL that you open when you click a button that has been assigned the Open document or web page action)." -msgstr "Bestimmen Sie den Zielrahmen, um das Dokument, das mit der Aktion \"Dokument öffnen/Webseite\" angezeigt wird aufgerufene Dokument angezeigt wird. Sie können auch den Zielrahmen zur Anzeige einer URL bestimmen, die geöffnet wird, wenn Sie eine Schaltfläche anklicken, die der Aktion Dokument / Webseite öffnen zugewiesen ist." +msgstr "Bestimmen Sie den Zielrahmen, um das Dokument, das mit der Aktion \"Dokument/Webseite öffnen\" angezeigt wird aufgerufene Dokument angezeigt wird. Sie können auch den Zielrahmen zur Anzeige einer URL bestimmen, die geöffnet wird, wenn Sie eine Schaltfläche anklicken, die der Aktion Dokument / Webseite öffnen zugewiesen ist." #: 01170101.xhp msgctxt "" @@ -7686,7 +7686,7 @@ "par_id3145171\n" "help.text" msgid "Specifies whether the SQL statement is to be analyzed by %PRODUCTNAME. If set to Yes, you can click the ... button next to the Content list box. This will open a window where you can graphically create a database query. When you close that window, the SQL statement for the created query will be inserted in the Content list box." -msgstr "Geben Sie an, ob die SQL-Anweisung von %PRODUCTNAME analysiert werden soll. Wenn die Einstellung auf 'Ja' gesetzt ist, können Sie auf die Schaltfläche ... neben dem Listenfeld Inhalt klicken. Es wird ein Fenster aufgerufen, in dem Sie grafisch eine Datenbankabfrage erstellen können. Wenn Sie das Fenster schließen, wird die SQL-Anweisung für die erstellte Abfrage in das Listenfeld Inhalt eingefügt." +msgstr "Geben Sie an, ob die SQL-Anweisung von %PRODUCTNAME analysiert werden soll. Wenn die Einstellung auf \"Ja\" gesetzt ist, können Sie auf die Schaltfläche ... neben dem Listenfeld Inhalt klicken. Es wird ein Fenster aufgerufen, in dem Sie grafisch eine Datenbankabfrage erstellen können. Wenn Sie das Fenster schließen, wird die SQL-Anweisung für die erstellte Abfrage in das Listenfeld Inhalt eingefügt." #: 01170203.xhp msgctxt "" @@ -8358,7 +8358,7 @@ "par_id3146957\n" "help.text" msgid "You can change how the different controls are arranged by dragging and dropping them in the Form Navigator. Select one or more controls and drag them into another form. Alternatively use CommandCtrl+X or the context menu command Cut to move a control to the clipboard and CommandCtrl+V or the command Insert to insert the control into another position." -msgstr "Sie können die Anordnung der verschiedenen Kontrollfelder durch Ziehen-und-Ablegen im Formular Navigator ändern. Wählen sie ein oder mehrere Kontrollfelder aus und ziehen Sie sie in ein anderes Formular. Alternativ können Sie BefehlStrg+X oder das Kommando Ausschneiden im Kontextmenü benutzen, um das Kontrollfeld in die Zwischenablage zu kopieren. Mit BefehlStrg+V oder dem Kommando Einfügen im Kontextmenü fügen Sie das Kontrollfeld an anderer Stelle wieder ein." +msgstr "Sie können die Anordnung der verschiedenen Kontrollfelder durch Ziehen-und-Ablegen im Formular Navigator ändern. Wählen Sie ein oder mehrere Kontrollfelder aus und ziehen Sie diese in ein anderes Formular. Alternativ können Sie BefehlStrg+X oder das Kommando Ausschneiden im Kontextmenü benutzen, um das Kontrollfeld in die Zwischenablage zu kopieren. Mit BefehlStrg+V oder dem Kommando Einfügen im Kontextmenü fügen Sie das Kontrollfeld an anderer Stelle wieder ein." #: 01170600.xhp msgctxt "" @@ -10182,7 +10182,7 @@ "par_id3155391\n" "help.text" msgid "You can make additional adjustments to the spacing by selecting Format - Paragraph - Indents & Spacing" -msgstr "Unter Format - Absatz... - Einzüge & Abstände können Sie die Abstände weiter anpassen." +msgstr "Unter Format - Absatz... - Einzüge und Abstände können Sie die Abstände weiter anpassen" #: 03120000.xhp msgctxt "" @@ -10230,7 +10230,7 @@ "par_id3156410\n" "help.text" msgid "You can make additional adjustments to the spacing by selecting Format - Paragraph - Indents & Spacing" -msgstr "Unter Format - Absatz... - Einzüge & Abstände können Sie die Abstände weiter anpassen." +msgstr "Unter Format - Absatz... - Einzüge und Abstände können Sie die Abstände weiter anpassen" #: 03130000.xhp msgctxt "" @@ -10582,7 +10582,7 @@ "par_id3149716\n" "help.text" msgid "Select an object and click the Rotate icon on the Drawing toolbar. Select an object and click the Rotate icon on the Drawing toolbar. Select an object and click the Rotate icon on the Drawing Object Properties toolbar. Drag a corner handle of the object in the direction you want to rotate it." -msgstr "Wählen Sie ein Objekt aus klicken Sue auf das Symbol Drehen in der Symbolleiste Zeichnung.Wählen Sie ein Objekt aus und klicken Sie auf das Symbol Drehen in der Symbolleiste Zeichnung.Wählen Sie ein Objekt aus und klicken Sie auf das Symbol Drehen in der Symbolleiste Zeichnungsobjekt-Eigenschaften Drehen Sie das Objekt durch Ziehen an einem Eckgriff in die gewünschte Richtung." +msgstr "Wählen Sie ein Objekt aus und klicken Sie auf das Symbol Drehen in der Symbolleiste Zeichnung.Wählen Sie ein Objekt aus und klicken Sie auf das Symbol Drehen in der Symbolleiste Zeichnung.Wählen Sie ein Objekt aus und klicken Sie auf das Symbol Drehen in der Symbolleiste Zeichnungsobjekt-Eigenschaften Drehen Sie das Objekt durch Ziehen an einem Eckgriff in die gewünschte Richtung." #: 05090000.xhp msgctxt "" @@ -11318,7 +11318,7 @@ "par_id0122200902231573\n" "help.text" msgid "Opens the Hyperlink dialog." -msgstr "Öffnet den Dialog Hyperlink." +msgstr "Öffnet den Hyperlink-Dialog." #: 09070000.xhp msgctxt "" @@ -11334,7 +11334,7 @@ "par_id0122200902231630\n" "help.text" msgid "Removes the hyperlink, leaving plain text." -msgstr "Löscht den Hyperlink, der Text bleibt erhalten." +msgstr "Entfernt den Hyperlink, der Text bleibt erhalten." #: 09070000.xhp msgctxt "" @@ -11422,7 +11422,7 @@ "par_id3154230\n" "help.text" msgid "Use the Internet page of the Hyperlink dialog to edit hyperlinks with WWW or FTP addresses." -msgstr "Im Register Internet des Dialogs Hyperlink bearbeiten Sie Hyperlinks mit www- oder FTP-Adressen." +msgstr "Im Register Internet des Hyperlink-Dialogs bearbeiten Sie Hyperlinks mit WWW- oder FTP-Adressen." #: 09070100.xhp msgctxt "" @@ -11598,7 +11598,7 @@ "par_id3149167\n" "help.text" msgid "Specifies whether the hyperlink is inserted as text or as a button." -msgstr "Hier geben Sie an, ob der Hyperlink als Text oder Schaltfläche eingefügt werden soll." +msgstr "Hier legen Sie fest, ob der Hyperlink als Text oder Schaltfläche eingefügt werden soll." #: 09070100.xhp msgctxt "" @@ -11646,7 +11646,7 @@ "par_id2801599\n" "help.text" msgid "Enter a name for the hyperlink. $[officename] inserts a NAME tag in the hyperlink." -msgstr "Geben Sie einen Namen für den Hyperlink ein. $[officename] fügt ein NAME-Tag in den Hyperlink ein." +msgstr "Geben Sie einen Namen für den Hyperlink ein. $[officename] fügt einen NAME-Tag in den Hyperlink ein." #: 09070200.xhp msgctxt "" @@ -11710,7 +11710,7 @@ "par_id3149514\n" "help.text" msgid "Hides or shows the data source browser. Drag the receiver's E-mail data field from the data source browser into the Recipient text field." -msgstr "Blendent den Datenquellen-Browser ein oder aus. Ziehen Sie das Datenfeld E-Mail des Empfänger aus dem Datenquellen-Browser in das Textfeld Empfänger." +msgstr "Blendet den Datenquellen-Browser ein oder aus. Ziehen Sie das Datenfeld E-Mail des Empfänger aus dem Datenquellen-Browser in das Textfeld Empfänger." #: 09070200.xhp msgctxt "" @@ -11750,7 +11750,7 @@ "par_id3154682\n" "help.text" msgid "Hyperlinks to any document or targets in documents can be edited using the Document tab from the Hyperlink dialog." -msgstr "Im Register Dokument des Dialogs Hyperlink lassen sich Hyperlinks zu beliebigen Dokumenten oder Zielen in Dokumenten bearbeiten." +msgstr "Im Register Dokument des Hyperlink-Dialogs lassen sich Hyperlinks zu beliebigen Dokumenten oder Zielen in Dokumenten bearbeiten." #: 09070300.xhp msgctxt "" @@ -11814,7 +11814,7 @@ "par_id3146957\n" "help.text" msgid "Specifies a target for the hyperlink into the document specified under Path." -msgstr "Legt das Ziel des Hyperlinks in dem Dokument fest, das unter Pfad angegebenen wurde." +msgstr "Legt das Ziel für den Hyperlink in dem Dokument fest, das unter Pfad angegeben wurde." #: 09070300.xhp msgctxt "" @@ -12358,7 +12358,7 @@ "tit\n" "help.text" msgid "AutoFilter" -msgstr "Automatischer Filter" +msgstr "AutoFilter" #: 12030000.xhp msgctxt "" @@ -12390,7 +12390,7 @@ "par_id3147043\n" "help.text" msgid "AutoFilter" -msgstr "Automatischer Filter" +msgstr "AutoFilter" #: 12030000.xhp msgctxt "" @@ -12582,7 +12582,7 @@ "par_id3145345\n" "help.text" msgid "In the data source browser, select the records that you want to insert into the document and then click the Data to Text icon, or drag-and-drop data from the data source browser into the document. This opens the Insert Database Columns dialog. Select whether the data should be inserted as a table, as fields or as text." -msgstr " Wählen Sie im Datenquellen-Browser die Datensätze, die in das Dokument eingefügt werden sollen, und klicken Sie auf das Symbol Daten in Text, oder ziehen Sie die Daten aus dem Datenquellen-Browser und legen Sie sie im Dokument ab. Dadurch öffnet sich der Dialog Datenbankspalten einfügen. Geben Sie an, ob die Daten als Tabelle, Felder oder Text eingefügt werden sollen. " +msgstr "Wählen Sie im Datenquellen-Browser die Datensätze, die in das Dokument eingefügt werden sollen, und klicken Sie auf das Symbol Daten in Text, oder ziehen Sie die Daten aus dem Datenquellen-Browser und legen Sie sie im Dokument ab. Dadurch öffnet sich der Dialog Datenbankspalten einfügen. Geben Sie an, ob die Daten als Tabelle, Felder oder Text eingefügt werden sollen." #: 12070000.xhp msgctxt "" @@ -12590,7 +12590,7 @@ "par_id3153031\n" "help.text" msgid "The preferences you set in the Insert Database Columns dialog are saved and will be active the next time the dialog is called. This save process is independent of the database and can record the preferences for a maximum of 5 databases." -msgstr "Die Einstellungen, die Sie im Dialog Datenbankspalten einfügen zum Einfügen der Daten vornehmen, werden gespeichert und sind beim nächsten Aufruf des Dialogs aktiv. Diese Speicherung ist abhängig von der Datenbank und kann die Einstellungen für maximal fünf Datenbanktabellen aufnehmen. " +msgstr "Die Einstellungen, die Sie im Dialog Datenbankspalten einfügen zum Einfügen der Daten vornehmen, werden gespeichert und sind beim nächsten Aufruf des Dialogs aktiv. Diese Speicherung ist abhängig von der Datenbank und kann die Einstellungen für maximal 5 Datenbanktabellen aufnehmen." #: 12070000.xhp msgctxt "" @@ -12598,7 +12598,7 @@ "par_id3156326\n" "help.text" msgid "If data is inserted into the document as a table, the table properties are not saved along with the data in the document. If you select the AutoFormat function for formatting the table, $[officename] will note the name of the format template. This template will then be used automatically if you insert data as a table again, unless the preferences have been changed." -msgstr " Die Tabelleneigenschaften von Daten, die Sie als Tabellen einfügen, werden nicht zusammen mit den Daten im Dokument gespeichert. Wenn Sie die Funktion AutoFormat zum Formatieren der Tabelle aufrufen, wird jedoch der Name der Formatvorlage in $[officename] vermerkt. Sofern Sie nicht vorher die Einstellungen ändern, wird diese Formatvorlage beim nächsten Einfügen von Daten als Tabelle automatisch wieder angewendet. " +msgstr "Die Tabelleneigenschaften von Daten, die Sie als Tabellen einfügen, werden nicht zusammen mit den Daten im Dokument gespeichert. Wenn Sie die Funktion AutoFormat zum Formatieren der Tabelle aufrufen, wird jedoch der Name der Formatvorlage in $[officename] vermerkt. Sofern Sie nicht vorher die Einstellungen ändern, wird diese Formatvorlage beim nächsten Einfügen von Daten als Tabelle automatisch wieder angewendet." #: 12070100.xhp msgctxt "" @@ -14206,7 +14206,7 @@ "par_id3155518\n" "help.text" msgid "The view shown does not match what is stored internally. For example, if value 45.789 is stored in the database as a field of type Number/Double and the shown formatting is set to display only two decimals, \"45.79\" is only returned in searches with field formatting." -msgstr "Die sichtbare Darstellung entspricht nicht der internen Speicherung. Ist in der Datenbank der Wert 45,789 z. B in einem Feld vom Typ Zahl/Double abgelegt und ist die sichtbare Formatierung so eingestellt, dass nur zwei Nachkommastellen angezeigt werden, dann wird \"45,79\" nur durch eine Suche mit Feldformatierung gefunden." +msgstr "Die sichtbare Darstellung entspricht nicht der internen Speicherung. Ist in der Datenbank der Wert 45,789 zum Beispiel in einem Feld vom Typ Zahl/Double abgelegt und ist die sichtbare Formatierung so eingestellt, dass nur zwei Dezimalstellen angezeigt werden, dann wird \"45,79\" nur durch eine Suche mit Feldformatierung gefunden." #: 12100200.xhp msgctxt "" @@ -15702,7 +15702,7 @@ "par_id3154422\n" "help.text" msgid "Click in the field to toggle the modes (except in the $[officename] Basic IDE, where only the Insert mode is active). If the cursor is positioned in a text document, you may also use the Insert key (if available on your keyboard) to toggle the modes." -msgstr "Klicken Sie in das Feld, um zwischen den Modi hin- und herzuschalten (außer in $[officename] Basic IDE; hier ist nur die Taste Einfg aktiv). Befindet sich der Cursor in einem Dokument, kann zum Umschalten zwischen diesen Modi auch die Taste Einfg (falls auf Ihrer Tastatur verfügbar) verwendet werden." +msgstr "Klicken Sie in das Feld, um zwischen den Modi hin- und herzuschalten (außer in der $[officename] Basic-IDE; hier ist nur die Taste Einfg aktiv). Befindet sich der Cursor in einem Dokument, kann zum Umschalten zwischen diesen Modi auch die Taste Einfg (falls auf Ihrer Tastatur verfügbar) verwendet werden." #: 20040000.xhp msgctxt "" @@ -15846,7 +15846,7 @@ "par_id3147620\n" "help.text" msgid "Adding selection (Shift+F8)" -msgstr "Auswahl ergänzen (Umschalt+F8)" +msgstr "Auswahl hinzufügen (Umschalt+F8)" #: 20050000.xhp msgctxt "" @@ -16246,7 +16246,7 @@ "par_id3155411\n" "help.text" msgid "Defines the intensity of aging, in percent. At 0% you see the gray values of all pixels. At 100% only the red color channel remains." -msgstr "Hier geben Sie die Intensität des Alterungseffekts in Prozent an. Bei 0% werden die Grauwerte aller Pixel angezeigt. Bei 100% wird nur der Rotkanal angezeigt." +msgstr "Hier geben Sie die Intensität des Alterungseffekts in Prozent an. Bei 0 % werden die Grauwerte aller Pixel angezeigt. Bei 100 % wird nur der Rotkanal angezeigt." #: 24010000.xhp msgctxt "" @@ -16590,7 +16590,7 @@ "par_id3153062\n" "help.text" msgid "The graphic object is shown in black and white. All brightness values below 50% will appear black, all over 50% will appear white." -msgstr "Das Grafikobjekt wird in Schwarzweiß angezeigt. Alle Helligkeitswerte unter 50% erscheinen als Schwarz, alle über 50% als Weiß." +msgstr "Das Grafikobjekt wird in Schwarzweiß angezeigt. Alle Helligkeitswerte unter 50 % erscheinen als Schwarz, alle über 50 % als Weiß." #: 24020000.xhp msgctxt "" @@ -16790,7 +16790,7 @@ "par_id3149495\n" "help.text" msgid "Specifies the contrast for viewing the selected graphic image. Values from -100% (no contrast at all) to +100% (full contrast) are possible." -msgstr "Hier bestimmen Sie den Kontrast für die Anzeige der ausgewählten Grafik. Zulässig sind Werte von -100% (kein Kontrast) bis +100% (stärkster Kontrast)." +msgstr "Hier bestimmen Sie den Kontrast für die Anzeige der ausgewählten Grafik. Zulässig sind Werte von -100 % (kein Kontrast) bis +100 % (stärkster Kontrast)." #: 24070000.xhp msgctxt "" @@ -17174,7 +17174,7 @@ "par_idN10595\n" "help.text" msgid "The Fontwork Gallery displays previews of Fontwork objects. To insert an object into your document, select the object, and then click OK." -msgstr "Die Fontwork Gallery zeigt Vorschauen von Fontwork-Objekten an. Zum Einfügen eines Objekts in Ihr Dokument wählen Sie das gewünschte Objekt und klicken auf \"OK\"." +msgstr "Die Fontwork Gallery zeigt Vorschauen von Fontwork-Objekten an. Zum Einfügen eines Objekts in Ihr Dokument wählen Sie das gewünschte Objekt und klicken Sie auf OK." #: fontwork.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/shared/04.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/shared/04.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/shared/04.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/shared/04.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-17 15:41+0200\n" -"PO-Revision-Date: 2017-10-24 14:55+0000\n" +"PO-Revision-Date: 2017-12-04 08:27+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1508856920.000000\n" +"X-POOTLE-MTIME: 1512376078.000000\n" #: 01010000.xhp msgctxt "" @@ -102,7 +102,7 @@ "par_id3149177\n" "help.text" msgid "Pressing ESC closes the dialog without saving changes. If you place the focus on a button, not only will you see the dotted line framing the name of the button, but also a thicker shadow under the button selected. This indicates that if you exit the dialog by pressing the Enter key, it is the equivalent of pressing that button itself." -msgstr "Sie schließen den Dialog, ohne eine Änderung vorzunehmen, indem Sie (Esc) drücken. Wenn Sie den Fokus auf eine Schaltfläche setzen, so sehen Sie dort nicht nur das Rechteck mit unterbrochenem Rand, sondern meist wird auch die so markierte Schaltfläche einen etwas stärkeren Schatten als die anderen Schaltflächen erhalten. Dieser stärkere Schatten bedeutet folgendes: Wenn Sie den Dialog durch Drücken der Eingabetaste beenden, so ist dieser Druck gleichbedeutend mit dem Anklicken derjenigen Schaltfläche, die in diesem Moment den stärkeren Schatten aufweist." +msgstr "Sie schließen den Dialog, ohne eine Änderung vorzunehmen, indem Sie die Esc-Taste drücken. Wenn Sie den Fokus auf eine Schaltfläche setzen, so sehen Sie dort nicht nur das Rechteck mit unterbrochenem Rand, sondern meist wird auch die so markierte Schaltfläche einen etwas stärkeren Schatten als die anderen Schaltflächen erhalten. Dieser stärkere Schatten bedeutet folgendes: Wenn Sie den Dialog durch Drücken der Eingabetaste beenden, so ist dieser Druck gleichbedeutend mit dem Anklicken derjenigen Schaltfläche, die in diesem Moment den stärkeren Schatten aufweist." #: 01010000.xhp msgctxt "" @@ -1494,7 +1494,7 @@ "par_id3153294\n" "help.text" msgid "Switches back to main overview." -msgstr "Sprung zurück in die Gesamtübersicht" +msgstr "Sprung zurück in die Gesamtübersicht." #: 01010000.xhp msgctxt "" @@ -1990,7 +1990,7 @@ "par_id526444\n" "help.text" msgid "Shift key while creating or scaling a graphic object" -msgstr "Umschalt-Taste beim Erstellen oder Skalieren eines Grafikobjekts" +msgstr "Umschalttaste beim Erstellen oder Skalieren eines Grafikobjekts" #: 01010000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/shared/05.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/shared/05.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/shared/05.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/shared/05.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-30 09:54+0200\n" -"PO-Revision-Date: 2017-10-24 12:17+0000\n" +"PO-Revision-Date: 2017-12-08 18:22+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1508847431.000000\n" +"X-POOTLE-MTIME: 1512757343.000000\n" #: 00000001.xhp msgctxt "" @@ -70,7 +70,7 @@ "par_id1318380\n" "help.text" msgid "The %PRODUCTNAME localization projects offer support pages in local languages. Find an overview of the native language projects at http://www.libreoffice.org/international-sites/. You can find help and support in English language on the %PRODUCTNAME website at www.libreoffice.org." -msgstr "Die Lokalisierungsprojekte von %PRODUCTNAME bieten Unterstützungsseiten in der jeweiligen Sprachen an. Sie finden eine Übersicht der muttersprachlichen Projekte auf http://de.libreoffice.org/community/nlc/. Sie können Hilfe und Unterstützung in englischer Sprache auf der %PRODUCTNAME-Website unter https://www.libreoffice.org/get-help/community-support/ finden." +msgstr "Die Lokalisierungsprojekte von %PRODUCTNAME bieten Unterstützungsseiten in den jeweiligen Sprachen an. Sie finden eine Übersicht der muttersprachlichen Projekte auf http://de.libreoffice.org/community/nlc/. Sie können Hilfe und Unterstützung in englischer Sprache auf der %PRODUCTNAME-Website unter https://www.libreoffice.org/get-help/community-support/ finden." #: 00000001.xhp msgctxt "" @@ -150,7 +150,7 @@ "par_id3497211\n" "help.text" msgid "You can download documentation as PDF files, how-tos, and guides from the %PRODUCTNAME documentation website at documentation.libreoffice.org. You can also access the documentation website choosing the menu Help – User Guides… ." -msgstr "Sie können Dokumentationen oder Kurzanleitungen in Form von Handbüchern als odt- oder PDF-Dokument von der %PRODUCTNAME-Webseite unter documentation.libreoffice.org/de/deutschsprachige-dokumentation/ herunterladen. Sie können die Dokumentationsseite auch über Hilfe - Benutzerhanfbücher… öffnen." +msgstr "Sie können Dokumentationen oder Kurzanleitungen in Form von Handbüchern als odt- oder PDF-Dokument von der %PRODUCTNAME-Webseite unter documentation.libreoffice.org/de/deutschsprachige-dokumentation/ herunterladen. Sie können die Dokumentationsseite auch über Hilfe - Benutzerhandbücher… öffnen." #: 00000001.xhp msgctxt "" @@ -654,7 +654,7 @@ "bm_id3150672\n" "help.text" msgid "Help; Help tips tooltips; help" -msgstr "Hilfe; TippsDirekthilfe; Hilfe" +msgstr "Hilfe; HilfetippsDirekthilfe; Hilfe" #: 00000120.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/shared/autokorr.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/shared/autokorr.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/shared/autokorr.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/shared/autokorr.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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" -"PO-Revision-Date: 2017-06-09 04:32+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-12-10 06:13+0000\n" +"Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1496982724.000000\n" +"X-POOTLE-MTIME: 1512886381.000000\n" #: 01000000.xhp msgctxt "" @@ -206,7 +206,7 @@ "par_id3146060\n" "help.text" msgid "Your text was corrected by Autocorrect so that double quotation marks were replaced by typographical quotation marks." -msgstr "AutoKorrektur hat doppelte Anführungszeichen in Ihrem Text durch typographische Anführungszeichen ersetzt." +msgstr "AutoKorrektur hat doppelte Anführungszeichen in Ihrem Text durch typografische Anführungszeichen ersetzt." #: 07000000.xhp msgctxt "" @@ -238,7 +238,7 @@ "par_id3154688\n" "help.text" msgid "Your text was corrected by Autocorrect so that single quotation marks were replaced by typographical quotation marks." -msgstr "AutoKorrektur hat einfache Anführungszeichen in Ihrem Text durch typographische Anführungszeichen ersetzt." +msgstr "AutoKorrektur hat einfache Anführungszeichen in Ihrem Text durch typografische Anführungszeichen ersetzt." #: 08000000.xhp msgctxt "" @@ -262,7 +262,7 @@ "hd_id3152823\n" "help.text" msgid "An URL has been detected and a hyperlink attribute has been set" -msgstr "Es wurde eine URL erkannt und das Hyperlink-Attribut gesetzt." +msgstr "Es wurde eine URL erkannt und das Hyperlink-Attribut gesetzt" #: 08000000.xhp msgctxt "" @@ -270,7 +270,7 @@ "par_id3150278\n" "help.text" msgid "AutoCorrect has modified your text. A string has been detected as an URL and is now shown as a hyperlink." -msgstr "Ihr Text wurde durch die AutoKorrektur so korrigiert, dass eine Zeichenkette als URL erkannt und als Hyperlink dargestellt wurde." +msgstr "Die AutoKorrektur hat Ihren Text verändert. Eine Zeichenkette wurde als URL erkannt und wird nun als Hyperlink dargestellt." #: 09000000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/shared/autopi.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/shared/autopi.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/shared/autopi.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/shared/autopi.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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" -"PO-Revision-Date: 2017-10-22 10:06+0000\n" +"PO-Revision-Date: 2017-11-27 17:23+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1508666774.000000\n" +"X-POOTLE-MTIME: 1511803433.000000\n" #: 01000000.xhp msgctxt "" @@ -30,7 +30,7 @@ "bm_id3152551\n" "help.text" msgid "wizards; overviewAutoPilots, see wizards" -msgstr "Assistenten; ÜberblickAutoPilot; siehe Assistenten" +msgstr "Assistenten; ÜbersichtAutoPiloten; siehe Assistenten" #: 01000000.xhp msgctxt "" @@ -3734,7 +3734,7 @@ "par_id3149811\n" "help.text" msgid "Click to move the selected field to the box that the arrow is pointing to." -msgstr " Klicken Sie, um Felder aus der rechten in die linke Liste zu übertragen, oder doppelklicken Sie auf das zu verschiebende Feld." +msgstr "Klicken Sie, um Felder aus der rechten in die linke Liste zu übertragen, oder doppelklicken Sie auf das zu verschiebende Feld." #: 01100200.xhp msgctxt "" @@ -4670,7 +4670,7 @@ "par_id3152375\n" "help.text" msgid "Let's assume that you installed the Microsoft Internet Information Server on your computer. You entered the \"c:\\Inet\\wwwroot\\presentation\" directory as an HTML output directory during the IIS setup. The URL of your computer is assumed as follows: \"http://myserver.com\"." -msgstr "Sie haben auf Ihrem Rechner den Microsoft Internet Information Server installiert. Als Ausgabebaum für ihre HTML Dokumente haben Sie beim Installieren das Verzeichnis C:\\Inet\\wwwroot\\vortrag angegeben. Die URL ihres Rechners soll http://meinserver.com lauten." +msgstr "Sie haben auf Ihrem Rechner den Microsoft Internet Information Server installiert. Als Ausgabebaum für Ihre HTML-Dokumente haben Sie beim Installieren das Verzeichnis C:\\Inet\\wwwroot\\vortrag angegeben. Die URL ihres Rechners soll http://meinserver.com lauten." #: 01110200.xhp msgctxt "" @@ -4814,7 +4814,7 @@ "par_id3147313\n" "help.text" msgid "In this example, you have a Linux computer with an HTTP server. The URL of your HTTP server is http://myserver.com and the output directory of your HTML documents is the //user/local/http/ directory. Your Perl scripts are contained in the //user/local/http/cgi-bin/ directory. Enter secret.htm as an export file name and presentation.htm as URL for listeners. In the URL for presentation text box enter http://myserver.com/presentation/ and for the URL for Perl scripts enter http://myserver.com/cgi-bin/." -msgstr "Sie haben einen Linux Rechner mit einem installierten HTTP-Server. Dir URL Ihres HTTP-Servers lautet http://meinserver.com. Der Ausgabebaum Ihrer HTML-Dokumente befindet sich im Verzeichnis //user/local/http/, Ihre Perl-Skripte sind im Verzeichnis //user/local/http/cgi-bin/. Sie wählen als Dateiname beim Export geheim.htm. Als URL für die Zuhörer tragen sie vortrag.htm ein. Für die URL zur Präsentation wählen Sie http://meinserver.com/vortrag/ und als URL für Perl-Skripte wählen Sie http://meinserver.com/cgi-bin/." +msgstr "Sie haben einen Linux Rechner mit einem installierten HTTP-Server. Die URL Ihres HTTP-Servers lautet http://meinserver.com. Der Ausgabebaum Ihrer HTML-Dokumente befindet sich im Verzeichnis //user/local/http/, Ihre Perl-Skripte sind im Verzeichnis //user/local/http/cgi-bin/. Sie wählen als Dateiname beim Export geheim.htm. Als URL für die Zuhörer tragen sie vortrag.htm ein. Für die URL zur Präsentation wählen Sie http://meinserver.com/vortrag/ und als URL für Perl-Skripte wählen Sie http://meinserver.com/cgi-bin/." #: 01110200.xhp msgctxt "" @@ -4942,7 +4942,7 @@ "par_id3151384\n" "help.text" msgid "Specifies the compression factor of the JPEG graphic. A 100% value offers the best quality for a large data range. The 25% factor indicates small files with inferior image quality." -msgstr "Hier legen Sie den Komprimierungsfaktor für die JPEG-Grafik fest. Der Wert 100% bietet ein Maximum an Qualität bei großem Dateiumfang. Mit einem Wert von 25% erzielen Sie kleine Dateien von geringerer Bildqualität." +msgstr "Hier legen Sie den Komprimierungsfaktor für die JPEG-Grafik fest. Der Wert 100 % bietet ein Maximum an Qualität bei großem Dateiumfang. Mit einem Wert von 25 % erzielen Sie kleine Dateien von geringerer Bildqualität." #: 01110300.xhp msgctxt "" @@ -5950,7 +5950,7 @@ "par_id3150771\n" "help.text" msgid "Converts Microsoft Office documents into the OpenDocument format." -msgstr "Konvertiert Microsoft Office-Dokumente in das OpenDokument-Format." +msgstr "Konvertiert Microsoft Office-Dokumente in das OpenDocument-Format." #: 01130100.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/shared/explorer/database.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/shared/explorer/database.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/shared/explorer/database.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-24 12:32+0000\n" -"Last-Translator: Sophia Schröder \n" +"PO-Revision-Date: 2017-12-12 12:16+0000\n" +"Last-Translator: Christian Lohmaier \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1508848334.000000\n" +"X-POOTLE-MTIME: 1513080974.000000\n" #: 02000000.xhp msgctxt "" @@ -238,7 +238,7 @@ "par_id3150247\n" "help.text" msgid "If a query in which tables or fields no longer exist is opened, the Missing Element dialog appears. This dialog names the missing table or the field which cannot be interpreted and allows you to decide how to continue with the procedure." -msgstr "Bei dem Versuch, eine Abfrage zu öffnen, in der die relevanten Tabellen oder Felder nicht mehr enthalten sind, erscheint der Dialog Fehlenden Elemente. In diesem Dialog sind die fehlenden Tabellen oder Felder aufgeführt, die nicht interpretiert werden können. Sie haben dann die Gelegenheit, über das weitere Vorgehen zu entscheiden." +msgstr "Bei dem Versuch, eine Abfrage zu öffnen, in der die relevanten Tabellen oder Felder nicht mehr enthalten sind, erscheint der Dialog Fehlende Elemente. In diesem Dialog sind die fehlenden Tabellen oder Felder aufgeführt, die nicht interpretiert werden können. Sie haben dann die Gelegenheit, über das weitere Vorgehen zu entscheiden." #: 02000002.xhp msgctxt "" @@ -5390,7 +5390,7 @@ "par_id0904200811094971\n" "help.text" msgid "Select the code conversion that you want to use to view the database in $[officename]. This does not affect the database." -msgstr "Wählt die Zeichenkodierung aus. mit welcher Sie die die Datenbank in $[officename] sehen wollen. Dies berührt nicht die Datenbank.." +msgstr "Wählt die Zeichenkodierung aus, mit der Sie die Datenbank in $[officename] sehen wollen. Dies beeinflusst nicht die Datenbank selber." #: 11030000.xhp msgctxt "" @@ -11326,7 +11326,7 @@ "par_id7657399\n" "help.text" msgid "Select two or more objects and click this icon to align the objects at the left margin of the area." -msgstr "Wählen sie zwei oder mehrere Objekte aus und klicken auf dieses Symbol, um die Objekte am linken Rand des Bereichs auszurichten." +msgstr "Wählen Sie zwei oder mehrere Objekte aus und klicken auf dieses Symbol, um die Objekte am linken Rand des Bereiches auszurichten." #: rep_main.xhp msgctxt "" @@ -11342,7 +11342,7 @@ "par_id5461897\n" "help.text" msgid "Select two or more objects and click this icon to align the objects at the top margin of the area." -msgstr "Wählen sie zwei oder mehrere Objekte aus und klicken Sie dieses Symbol, um die Objekte am oberen Rand des Bereichs auszurichten." +msgstr "Wählen Sie zwei oder mehrere Objekte aus und klicken Sie dieses Symbol, um die Objekte am oberen Rand des Bereiches auszurichten." #: rep_main.xhp msgctxt "" @@ -11358,7 +11358,7 @@ "par_id4634235\n" "help.text" msgid "Select two or more objects and click this icon to resize the objects to the smallest width." -msgstr "Wählen sie zwei oder mehrere Objekte aus und klicken Sie dieses Symbol, um die Objekte auf die kleinste Breite zu ändern." +msgstr "Wählen Sie zwei oder mehrere Objekte aus und klicken Sie dieses Symbol, um die Objekte auf die kleinste Breite zu ändern." #: rep_main.xhp msgctxt "" @@ -11382,7 +11382,7 @@ "par_id5376140\n" "help.text" msgid "Select two or more objects and click this icon to resize the objects to the greatest height." -msgstr "Wählen sie zwei oder mehrere Objekte aus und klicken Sie dieses Symbol, um die Objekte auf die größte Höhe zu ändern." +msgstr "Wählen Sie zwei oder mehrere Objekte aus und klicken Sie dieses Symbol, um die Objekte auf die größte Höhe zu ändern." #: rep_main.xhp msgctxt "" @@ -11814,7 +11814,7 @@ "par_id4601886\n" "help.text" msgid "If there are blank fields in the cost column, use the following formula to replace the blank fields' content with zero:" -msgstr "Falls es leere Felder in der Cost Spalte gibt, nutzen Sie die folgende Formel, um den Inhalt der leeren Felder mit Null zu ersetzen:" +msgstr "Falls es leere Felder in der Cost-Spalte gibt, nutzen Sie die folgende Formel, um den Inhalt der leeren Felder mit Null zu ersetzen:" #: rep_navigator.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/shared/guide.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/shared/guide.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/shared/guide.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-06 20:00+0200\n" -"PO-Revision-Date: 2017-10-31 13:24+0000\n" +"PO-Revision-Date: 2017-12-10 18:55+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1509456289.000000\n" +"X-POOTLE-MTIME: 1512932156.000000\n" #: aaa_start.xhp msgctxt "" @@ -30,7 +30,7 @@ "bm_id3156324\n" "help.text" msgid "samples and templatestemplates; new documents from templatesbusiness cards; using templates" -msgstr "Beispiele und VorlagenVorlage; neues Dokument aus VorlageVisitenkarte; neu" +msgstr "Beispiele und VorlagenVorlagen; neue Dokumente aus VorlagenVisitenkarten; Vorlagen benutzen" #: aaa_start.xhp msgctxt "" @@ -94,7 +94,7 @@ "par_id3149095\n" "help.text" msgid "Working with Text Documents" -msgstr " Umgang mit Textdokumenten " +msgstr "Umgang mit Textdokumenten" #: aaa_start.xhp msgctxt "" @@ -110,7 +110,7 @@ "par_id3147243\n" "help.text" msgid "Working with Presentations" -msgstr " Umgang mit Präsentationen " +msgstr "Umgang mit Präsentationen" #: aaa_start.xhp msgctxt "" @@ -118,7 +118,7 @@ "par_id3154047\n" "help.text" msgid "Working with Drawings" -msgstr " Umgang mit Zeichnungen " +msgstr "Umgang mit Zeichnungen" #: aaa_start.xhp msgctxt "" @@ -126,7 +126,7 @@ "par_id3153824\n" "help.text" msgid "Working with Formulas" -msgstr " Umgang mit Formeln " +msgstr "Umgang mit Formeln" #: accessibility.xhp msgctxt "" @@ -198,7 +198,7 @@ "par_id3145071\n" "help.text" msgid "The user interface is scalable through your Window Manageroperating system settings. The default font size for dialogs is 12pt, corresponding to a scale of 100%. You can also change the font size for dialogs in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - View. The zoom factor of a document can be changed in View - Zoom, or by double-clicking the zoom factor displayed in the Status Bar." -msgstr "Die Benutzeroberfläche ist durch die Einstellungen des FenstermanagersBetriebssystems skalierbar. Die Standardschriftgröße für Dialoge ist dabei 12pt, die einem Maßstab von 100 % entspricht. Sie können die Schriftgröße für Dialoge auch unter %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME - Ansicht ändern. Der Maßstab eines Dokuments kann unter Ansicht - Maßstab oder durch Doppelklick in den Bereich Maßstab der Statusleiste geändert werden." +msgstr "Die Benutzeroberfläche ist durch die Einstellungen des FenstermanagersBetriebssystems skalierbar. Die Standardschriftgröße für Dialoge ist dabei 12 pt, die einem Maßstab von 100 % entspricht. Sie können die Schriftgröße für Dialoge auch unter %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME - Ansicht ändern. Der Maßstab eines Dokuments kann unter Ansicht - Maßstab oder durch Doppelklick in den Bereich Maßstab der Statusleiste geändert werden." #: accessibility.xhp msgctxt "" @@ -606,7 +606,7 @@ "par_id3166410\n" "help.text" msgid "When you enter text, $[officename] automatically recognizes a word that may be a URL and replaces the word with a hyperlink. $[officename] formats the hyperlink with direct font attributes (color and underline) the properties of which are obtained from certain Character Styles." -msgstr "Wenn Sie Text eingeben, erkennt $[officename] automatisch, ob das Wort ein URL sein kann und ersetzt dieses Wort durch einen Hyperlink. $[officename] formatiert den Hyperlink mit direkten Zeichenattributen (Farbe und Unterstreichung), deren Eigenschaften es bestimmten Zeichenvorlagen entnimmt." +msgstr "Wenn Sie Text eingeben, erkennt $[officename] automatisch, ob das Wort eine URL sein kann und ersetzt dieses Wort durch einen Hyperlink. $[officename] formatiert den Hyperlink mit direkten Zeichenattributen (Farbe und Unterstreichung), deren Eigenschaften es bestimmten Zeichenvorlagen entnimmt." #: autocorr_url.xhp msgctxt "" @@ -614,7 +614,7 @@ "par_id3153561\n" "help.text" msgid "If you do not want $[officename] to automatically recognize URLs as you are typing, there are several ways of turning off this feature." -msgstr "Wenn Sie nicht wünschen, dass $[officename] beim Tippen automatisch URLs erkennt, haben Sie mehrere Möglichkeiten, diese Funkion abzustellen:" +msgstr "Wenn Sie nicht wünschen, dass $[officename] beim Tippen automatisch URLs erkennt, haben Sie mehrere Möglichkeiten, diese Funkion abzustellen." #: autocorr_url.xhp msgctxt "" @@ -630,7 +630,7 @@ "par_id3149233\n" "help.text" msgid "When you are typing and notice that a text has just been automatically converted into a hyperlink, press CommandCtrl+Z to undo this formatting." -msgstr "Wenn während des Schreibens Text automatisch in einen Hyperlink umgewandelt wurde, drücken Sie die Tastenkombination Befehl Strg +Z, um diese Formatierung rückgängig zu machen." +msgstr "Wenn während des Schreibens Text automatisch in einen Hyperlink umgewandelt wurde, drücken Sie die Tastenkombination Befehl Strg+Z, um diese Formatierung rückgängig zu machen." #: autocorr_url.xhp msgctxt "" @@ -1270,7 +1270,7 @@ "bm_id3156324\n" "help.text" msgid "titles; changingchanging;document titlesdocuments; changing titles" -msgstr "Titel; ändernÜberschrift; Dokumenttitel ändernDokument; Titel ändern" +msgstr "Titel; ändernÄndern; DokumenttitelDokumente; Titel ändern" #: change_title.xhp msgctxt "" @@ -1790,7 +1790,7 @@ "par_id3153527\n" "help.text" msgid "To edit a chart title that you have inserted into a $[officename] document:" -msgstr "Titel eines Diagramms bearbeiten, welches Sie in ein $[officename] Dokument eingefügt haben:" +msgstr "Titel eines Diagramms bearbeiten, welches Sie in ein $[officename]-Dokument eingefügt haben:" #: chart_title.xhp msgctxt "" @@ -1894,7 +1894,7 @@ "par_id150820161816033788\n" "help.text" msgid "To access remote servers, you must use %PRODUCTNAME’s own Open and Save dialogs. If you currently use your operating system dialogs for saving and opening files, go to Tools - Options - %PRODUCTNAME - General and check the option Use %PRODUCTNAME dialogs." -msgstr "Um auf entfernte Server zuzugreifen, müssen Sie %PRODUCTNAMEs eigene Dialoge zum Öffnen und Speichern verwenden. Wenn Sie derzeit die Dialoge Ihres Betriebssystems zum Speichern und Öffnen der Dateien verwenden, wählen Sie Extras - Optionen... - %PRODUCTNAME - Allgemein und aktivieren Sie die Option %PRODUCTNAME-Dialoge verwenden." +msgstr "Um auf entfernte Server zuzugreifen, müssen Sie die eigenen Dialoge von %PRODUCTNAME zum Öffnen und Speichern verwenden. Wenn Sie derzeit die Dialoge Ihres Betriebssystems zum Speichern und Öffnen der Dateien verwenden, wählen Sie Extras - Optionen... - %PRODUCTNAME - Allgemein und aktivieren Sie die Option %PRODUCTNAME-Dialoge verwenden." #: cmis-remote-files-setup.xhp msgctxt "" @@ -2166,7 +2166,7 @@ "bm_id170820161254261587\n" "help.text" msgid "remote file service setup;other file services remote file service setup;Lotus remote file service setup;SharePoint remote file service setup;IBM remote file service setup;Nuxeo remote file service setup;Alfresco remote file service setup;CMIS server" -msgstr "Service für Dateien auf Servern konfigurieren; andere DateiservicesService für Dateien auf Servern konfigurieren; LotusService für Dateien auf Servern konfigurieren; SharePointService für Dateien auf Servern konfigurieren; IBMService für Dateien auf Servern konfigurieren; NuxeoService für Dateien auf Servern konfigurieren; AlfrescoService für Dateien auf Servern konfigurieren; CMIS Server" +msgstr "Service für Dateien auf Servern konfigurieren; andere DateiservicesService für Dateien auf Servern konfigurieren; LotusService für Dateien auf Servern konfigurieren; SharePointService für Dateien auf Servern konfigurieren; IBMService für Dateien auf Servern konfigurieren; NuxeoService für Dateien auf Servern konfigurieren; AlfrescoService für Dateien auf Servern konfigurieren; CMIS-Server" #: cmis-remote-files-setup.xhp msgctxt "" @@ -2278,7 +2278,7 @@ "bm_id190820161715167576\n" "help.text" msgid "opening;CMIS remote file opening;remote file remote file service;opening file opening remote file" -msgstr "Öffnen; CMIS Datei auf ServerÖffnen; Datei auf ServerService für Dateien auf Servern; Datei öffnenDatei auf Server öffnen" +msgstr "Öffnen; CMIS-Datei auf ServerÖffnen; Datei auf ServerService für Dateien auf Servern; Datei öffnenDatei auf Server öffnen" #: cmis-remote-files.xhp msgctxt "" @@ -2414,7 +2414,7 @@ "par_id19082016170715785\n" "help.text" msgid "Remember to check-in the file when finishing using it. Not doing so will lock the file and no other user will be allowed to modify it." -msgstr "Denken Sie daran, die Arbeitsversion mit der Datei zusammenzuführen, wenn die die Bearbeitung abschließen. Wenn Sie dies nicht tun, bleibt die Datei gesperrt und ein anderer Benutzer erhält keine Erlaubnis, diese zu bearbeiten." +msgstr "Denken Sie daran, die Arbeitsversion mit der Datei zusammenzuführen, wenn Sie die Bearbeitung abschließen. Wenn Sie dies nicht tun, bleibt die Datei gesperrt und ein anderer Benutzer erhält keine Erlaubnis, diese zu bearbeiten." #: cmis-remote-files.xhp msgctxt "" @@ -3654,7 +3654,7 @@ "par_id3150986\n" "help.text" msgid "Once the data is in a $[officename] Calc spreadsheet, you can edit it as needed. Save the data as a $[officename] data source:" -msgstr "Sobald Sie die Daten in einem $[officename] Calc Tabellendokument vorliegen haben, können Sie sie bearbeiten. Speichern Sie die Daten als $[officename] Datenquelle:" +msgstr "Sobald Sie die Daten in einem $[officename] Calc-Tabellendokument vorliegen haben, können Sie sie bearbeiten. Speichern Sie die Daten als $[officename] Datenquelle:" #: data_dbase2office.xhp msgctxt "" @@ -4950,7 +4950,7 @@ "bm_id3155448\n" "help.text" msgid "tables in databases; creating in design view (manually) designing; database tables properties;fields in databases fields;database tables AutoValue (Base) primary keys;design view" -msgstr "Tabellen in einer Datenbank; Erstellen in der Entwurfsansicht (manuell)Entwerfen; DatenbanktabellenEigenschaften; DatenbankfelderFelder; DatenbanktabellenAuto-Wert (Base)Primärschlüssel; Entwurfsansicht" +msgstr "Tabellen in Datenbanken; in der Entwurfsansicht erstellen (manuell)Entwerfen; DatenbanktabellenEigenschaften; DatenbankfelderFelder; DatenbanktabellenAuto-Wert (Base)Primärschlüssel; Entwurfsansicht" #: data_tabledefine.xhp msgctxt "" @@ -5486,7 +5486,7 @@ "bm_id7430951\n" "help.text" msgid "certificates digital signatures;overview security;digital signatures" -msgstr "ZertifikateDigitale Signaturen; ÜberblickSicherheit; digitale Signaturen" +msgstr "ZertifikateDigitale Signaturen; ÜbersichtSicherheit; digitale Signaturen" #: digital_signatures.xhp msgctxt "" @@ -6462,7 +6462,7 @@ "par_id6594744\n" "help.text" msgid "One exception appears when the author of a Writer text document saves and reopens a document: The cursor will be at the same position where it has been when the document was saved. This only works when the name of the author was entered in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - User Data." -msgstr "Eine Ausnahme ist der Fall, dass der Autor selbst das Dokument speichert und wieder öffnet: Der Cursor befindet sich an der gleichen Stelle, wie beim Speichern. Dies funktioniert nur, wenn der Name des Autors unter %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME - Nutzerdaten eingetragen wurde." +msgstr "Eine Ausnahme ist der Fall, dass der Autor selbst das Dokument speichert und wieder öffnet: Der Cursor befindet sich an der gleichen Stelle wie beim Speichern. Dies funktioniert nur, wenn der Name des Autors unter %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME - Nutzerdaten eingetragen wurde." #: doc_open.xhp msgctxt "" @@ -6694,7 +6694,7 @@ "par_id9496749\n" "help.text" msgid "ODF Text" -msgstr "ODF Text" +msgstr "ODF-Text" #: doc_save.xhp msgctxt "" @@ -6718,7 +6718,7 @@ "par_id7523728\n" "help.text" msgid "ODF Text" -msgstr "ODF Text" +msgstr "ODF-Text" #: doc_save.xhp msgctxt "" @@ -6742,7 +6742,7 @@ "par_id3031098\n" "help.text" msgid "ODF Text" -msgstr "ODF Text" +msgstr "ODF-Text" #: doc_save.xhp msgctxt "" @@ -7110,7 +7110,7 @@ "par_id3149762\n" "help.text" msgid "If you release the graphic directly on a draw object, please note the following:" -msgstr "Wenn Sie die Grafik direkt auf einem Zeichenobjekt loslassen, gilt Folgendes:" +msgstr "Wenn Sie die Grafik direkt auf einem Zeichenobjekt loslassen, beachten Sie bitte Folgendes:" #: dragdrop_fromgallery.xhp msgctxt "" @@ -7134,7 +7134,7 @@ "par_id3154514\n" "help.text" msgid "If you create a hyperlink (drag while holding down Shift and CommandCtrl, in which case a linking arrow appears next to the mouse pointer), the drawing object is replaced by the graphic from the Gallery, but the position and size of the replaced draw object are retained." -msgstr "Erzeugen Sie einen Hyperlink durch Ziehen bei gedrückter Umschalt+BefehlStrgtaste - Sie erkennen dies an dem Pfeil neben dem Mauszeiger - wird das Zeichenobjekt durch die Grafik aus der Gallery ersetzt, wobei Position und Größe des ersetzten Zeichnungsobjekts beibehalten werden." +msgstr "Erzeugen Sie einen Hyperlink durch Ziehen bei gedrückter Umschalt+BefehlStrg-Taste - Sie erkennen dies an dem Pfeil neben dem Mauszeiger - wird das Zeichenobjekt durch die Grafik aus der Gallery ersetzt, wobei Position und Größe des ersetzten Zeichnungsobjekts beibehalten werden." #: dragdrop_gallery.xhp msgctxt "" @@ -7910,7 +7910,7 @@ "bm_id3150322\n" "help.text" msgid "filters; Navigatorfilter conditions;connecting" -msgstr "Filter;NavigatorFilterbedingungen; verbinden" +msgstr "Filter; NavigatorFilterbedingungen; verbinden" #: filternavigator.xhp msgctxt "" @@ -8086,7 +8086,7 @@ "par_idN106FE\n" "help.text" msgid "To reset the Find & Replace mode" -msgstr "So setzen Sie den Such- und Ersetzungsmodus zurück" +msgstr "So setzen Sie den Modus Suchen und Ersetzen zurück" #: find_attributes.xhp msgctxt "" @@ -8374,7 +8374,7 @@ "bm_id3696707\n" "help.text" msgid "graphical text art designing; fonts TextArt, see Fontwork WordArt, see Fontwork Fontwork text effects effects; Fontwork icons text; Fontwork icons 3D text creation rotating;3D text editing;Fontwork objects inserting;Fontwork objects" -msgstr "Grafische TextgestaltungDesign; SchriftartenTextArt, siehe FontworkWordArt, siehe FontworkFontworkTexteffekteEffekte; Fontwork SymboleText; Fontwork Symbole3D-Text-KreationRotieren; 3D-TextÄndern; Fontwork ObjekteEinfügen; Fontwork Objekte" +msgstr "Grafische TextgestaltungDesign; SchriftartenTextArt, siehe FontworkWordArt, siehe FontworkFontworkTexteffekteEffekte; Fontwork SymboleText; Fontwork Symbole3D-Text-KreationDrehen; 3D-TextÄndern; Fontwork ObjekteEinfügen; Fontwork Objekte" #: fontwork.xhp msgctxt "" @@ -8830,7 +8830,7 @@ "par_id3154140\n" "help.text" msgid "Drag the object into the document while pressing the Shift and CommandCtrl keys, or right-click to open the context menu and select Insert and Link." -msgstr "Ziehen Sie das Objekt in das Dokument, während Sie die Umschalt+BefehlStrg gedrückt halten, oder klicken Sie mit der rechten Maustaste auf das Objekt, um das Kontextmenü zu öffnen, und wählen Sie Einfügen - Querverweis." +msgstr "Ziehen Sie das Objekt in das Dokument, während Sie die Umschalt+BefehlStrg-Tasten gedrückt halten, oder klicken Sie mit der rechten Maustaste auf das Objekt, um das Kontextmenü zu öffnen, und wählen Sie Einfügen - Querverweis." #: gallery_insert.xhp msgctxt "" @@ -8982,7 +8982,7 @@ "par_id607013\n" "help.text" msgid "Select the objects together that you want to group. Hold down Shift while you click the individual objects." -msgstr "Wählen Sie die Objekte gleichzeitig aus, die Sie gruppieren möchten. Halten Sie die Umschalt-Taste gedrückt, während Sie die einzelnen Objekte anklicken." +msgstr "Wählen Sie die Objekte gleichzeitig aus, die Sie gruppieren möchten. Halten Sie die Umschalttaste gedrückt, während Sie die einzelnen Objekte anklicken." #: groups.xhp msgctxt "" @@ -8990,7 +8990,7 @@ "par_id1399578\n" "help.text" msgid "Right-click any of the selected objects to open the context menu. In Calc or Writer, commands are in a submenu Group, while in Impress or Draw, they are at the toplevel of the context menu." -msgstr "Klicken Sie mit rechts auf eines der ausgewählten Objekte, um das Kontextmenü zu öffnen. Die Befehle befinden sich in Calc oder Writer im Untermenü Gruppieren, während sie in Impress oder Draw direkt im Kontextmenü stehen." +msgstr "Rechtsklicken Sie auf eines der ausgewählten Objekte, um das Kontextmenü zu öffnen. Die Befehle befinden sich in Calc oder Writer im Untermenü Gruppieren, während sie in Impress oder Draw direkt im Kontextmenü stehen." #: groups.xhp msgctxt "" @@ -9038,7 +9038,7 @@ "par_id1388592\n" "help.text" msgid "Right-click any object of the group. In Calc or Writer, commands are in a submenu Group, while in Impress or Draw, they are at the toplevel of the context menu." -msgstr "Klicken Sie mit rechts auf ein Objekt der Gruppe. Die Befehle befinden sich in Calc oder Writer im Untermenü Gruppieren, während sie in Impress oder Draw direkt im Kontextmenü stehen." +msgstr "Rechtsklicken Sie auf ein Objekt der Gruppe. Die Befehle befinden sich in Calc oder Writer im Untermenü Gruppieren, während sie in Impress oder Draw direkt im Kontextmenü stehen." #: groups.xhp msgctxt "" @@ -9086,7 +9086,7 @@ "par_id6354869\n" "help.text" msgid "Right-click any object of the group. In Calc or Writer, commands are in a submenu Group, while in Impress or Draw, they are at the toplevel of the context menu." -msgstr "Klicken Sie mit rechts auf ein Objekt der Gruppe. Die Befehle befinden sich in Calc oder Writer im Untermenü Gruppieren, während sie in Impress oder Draw direkt im Kontextmenü stehen." +msgstr "Rechtsklicken Sie auf ein Objekt der Gruppe. Die Befehle befinden sich in Calc oder Writer im Untermenü Gruppieren, während sie in Impress oder Draw direkt im Kontextmenü stehen." #: groups.xhp msgctxt "" @@ -9118,7 +9118,7 @@ "par_id3236182\n" "help.text" msgid "Right-click any object of the group. In Calc or Writer, commands are in a submenu Group, while in Impress or Draw, they are at the toplevel of the context menu." -msgstr "Klicken Sie mit rechts auf ein Objekt der Gruppe. Die Befehle befinden sich in Calc oder Writer im Untermenü Gruppieren, während sie in Impress oder Draw direkt im Kontextmenü stehen." +msgstr "Rechtsklicken Sie auf ein Objekt der Gruppe. Die Befehle befinden sich in Calc oder Writer im Untermenü Gruppieren, während sie in Impress oder Draw direkt im Kontextmenü stehen." #: groups.xhp msgctxt "" @@ -9142,7 +9142,7 @@ "tit\n" "help.text" msgid "Editing Hyperlinks" -msgstr "Bearbeiten von Hyperlinks" +msgstr "Hyperlinks bearbeiten" #: hyperlink_edit.xhp msgctxt "" @@ -9150,7 +9150,7 @@ "bm_id3153910\n" "help.text" msgid "hyperlinks; editinglinks; editing hyperlinksediting; hyperlinkstext attributes; hyperlinksbuttons;editing hyperlink buttonsURL;changing hyperlink URLs" -msgstr "Hyperlinks; bearbeitenLinks; Hyperlinks bearbeitenBearbeiten; HyperlinksTextattribute; HyperlinksSchaltflächen; Hyperlinkschaltflächen bearbeitenURL; Hyperlink-URLs ändern" +msgstr "Hyperlinks; bearbeitenVerknüpfungen; Hyperlinks bearbeitenBearbeiten; HyperlinksTextattribute; HyperlinksSchaltflächen; Hyperlinkschaltflächen bearbeitenURL; Hyperlink-URLs ändern" #: hyperlink_edit.xhp msgctxt "" @@ -9158,7 +9158,7 @@ "hd_id3153910\n" "help.text" msgid "Editing Hyperlinks" -msgstr "Bearbeiten von Hyperlinks" +msgstr "Hyperlinks bearbeiten" #: hyperlink_edit.xhp msgctxt "" @@ -9278,7 +9278,7 @@ "par_id3152361\n" "help.text" msgid "If the hyperlink is a button, click on the border to select it, or press the OptionAlt key while clicking. Open the Properties dialog through the context menu. You can edit the label text under \"Caption,\" and modify the address in the \"URL\" field." -msgstr "Liegt der Hyperlink als Schaltfläche vor, so klicken Sie seinen Rand an oder halten Sie beim Anklicken die Taste OptionAlt gedrückt. Die Schaltfläche ist ausgewählt und Sie können über ihr Kontextmenü den Dialog Kontrollfeld-Eigenschaften aufrufen. Dort lässt sich unter \"Titel\" der sichtbare Text und unter \"URL\" die Adresse bearbeiten." +msgstr "Liegt der Hyperlink als Schaltfläche vor, so klicken Sie seinen Rand an oder halten Sie die OptionAlt-Taste beim Anklicken gedrückt. Die Schaltfläche ist ausgewählt und Sie können über ihr Kontextmenü den Dialog Kontrollfeld-Eigenschaften aufrufen. Dort lässt sich unter \"Titel\" der sichtbare Text und unter \"URL\" die Adresse bearbeiten." #: hyperlink_insert.xhp msgctxt "" @@ -9294,7 +9294,7 @@ "bm_id3150789\n" "help.text" msgid "hyperlinks; insertinglinks; insertinginserting; hyperlinks" -msgstr "Hyperlinks; einfügenLink; einfügenEinfügen; Hyperlinks" +msgstr "Hyperlinks; einfügenVerknüpfungen; einfügenEinfügen; Hyperlinks" #: hyperlink_insert.xhp msgctxt "" @@ -9318,7 +9318,7 @@ "par_id3149811\n" "help.text" msgid "Place the text cursor in the document at the point where you want to insert the hyperlink or select the text that you want to put the hyperlink on. Select Hyperlink command from the Insert menu. Alternatively click on the Icon Hyperlink icon on the Standard toolbar. The Hyperlink dialog appears." -msgstr "Setzen Sie den Textcursor im Dokument an die Stelle, an der Sie die Verknüpfung einfügen möchten, oder wählen Sie den gewünschten Text aus, für den Sie die Verknüpfung setzen möchten. Wählen Sie Einfügen - Verknüpfung.... Alternativ klicken Sie auf das Symbol Verknüpfung einfügen Symbol in der Symbolleiste Standard. Der Dialog Verknüpfung öffnet sich." +msgstr "Setzen Sie den Textcursor im Dokument an die Stelle, an der Sie den Hyperlink einfügen möchten, oder wählen Sie den gewünschten Text aus, für den Sie den Hyperlink setzen möchten. Wählen Sie Einfügen - Hyperlink.... Alternativ klicken Sie auf das Symbol Hyperlink einfügen Symbol in der Symbolleiste Standard. Der Dialog Hyperlink öffnet sich." #: hyperlink_insert.xhp msgctxt "" @@ -9374,7 +9374,7 @@ "hd_id3147399\n" "help.text" msgid "Relative and Absolute Links" -msgstr "Relative und absolute Links" +msgstr "Relative und absolute Verknüpfungen" #: hyperlink_rel_abs.xhp msgctxt "" @@ -9390,7 +9390,7 @@ "par_id3147008\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - General and specify in the Save URLs relative to field if $[officename] creates relative or absolute hyperlinks. Relative linking is only possible when the document you are working on and the link destination are on the same drive." -msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - Laden/Speichern - Allgemein und legen Sie im Feld URLs relativ zum ... speichern fest, ob $[officename] relative oder absolute Hyperlinks erstellt. Relative Verknüpfungen sind nur möglich, wenn sich das Dokument und das Verknüpfungsziel auf demselben Laufwerk befinden." +msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - Laden/Speichern - Allgemein und legen Sie im Feld URLs relativ zum ... speichern fest, ob $[officename] relative oder absolute Hyperlinks erstellt. Relative Verknüpfungen sind nur möglich, wenn sich das Dokument und das Verknüpfungsziel auf demselben Laufwerk befinden." #: hyperlink_rel_abs.xhp msgctxt "" @@ -9590,7 +9590,7 @@ "bm_id3153988\n" "help.text" msgid "Microsoft Office;opening Microsoft documents documents; importing importing; documents in other formats opening; documents from other formats loading; documents from other formats converting;Microsoft documents saving; default file formats defaults;document formats in file dialogs file formats; saving always in other formats Microsoft Office; as default file format files;importing XML converters converters; XML Document Converter Wizard wizards; document converter converters; document converter files, see also documents" -msgstr "Microsoft Office; Microsoft Dokumente öffnenDokumente; importierenImportieren; Dokumente in anderen FormatenÖffnen; Dokumente in anderen FormatenLaden; Dokumente aus anderen FormatenKonvertieren; Microsoft DokumenteSpeichern; voreingestelltes DateiformatVoreingestellt; Dokumentenformat im DateidialogDateiformat; immer in anderen Formaten speichernMicrosoft Office; als voreingestelltes DateiformatDateien; importierenXML KonverterKonvertieren; XMLDokumentenkonverter WizardAssistenten; DokumentenkonverterKonverter; DokumentenkonverterDateien, siehe auch Dokumente" +msgstr "Microsoft Office; Microsoft Dokumente öffnenDokumente; importierenImportieren; Dokumente in anderen FormatenÖffnen; Dokumente in anderen FormatenLaden; Dokumente aus anderen FormatenKonvertieren; Microsoft DokumenteSpeichern; voreingestelltes DateiformatVoreinstellungen; Dokumentenformate im DateidialogDateiformat; immer in anderen Formaten speichernMicrosoft Office; als voreingestelltes DateiformatDateien; importierenXML-KonverterKonvertieren; XMLDokumentenkonverter-AssistentAssistenten; DokumentenkonverterKonverter; DokumentenkonverterDateien, siehe auch Dokumente" #: import_ms.xhp msgctxt "" @@ -9734,7 +9734,7 @@ "bm_id3154136\n" "help.text" msgid "graphics, see also picturesimages, see also picturesimages; inserting and editing bitmapsillustrations, see picturesbitmaps; inserting and editingpixel graphics; inserting and editingexporting; bitmapsimporting; bitmapspictures; editingediting; picturesinvert filtersmoothing filtersharpening filterremove noise filtersolarization filteraging filterposterizing filterpop-art filtercharcoal sketches filtermosaic filterpictures;filtersfilters;pictures" -msgstr "Grafiken, siehe auch BilderBilder, siehe auch GrafikenBilder; Bitmaps einfügen und bearbeitenAbbildungen, siehe BilderBitmaps; einfügen und bearbeitenPixelgrafiken; einfügen und bearbeitenExportieren; BitmapsImportieren; BitmapsBilder; bearbeitenBearbeiten; BilderInvertieren (Filter)Glätten (Filter)Schärfen (Filter)Rauschen entfernen (Filter)Solarisation (Filter)Alterung (Filter)Poster (Filter)Pop-Art (Filter)Kohlezeichnung (Filter)Mosaik (Filter)Bilder; FilterFilter; Bilder" +msgstr "Grafiken, siehe auch BilderAbbildungen, siehe auch BilderAbbildungen; Bitmaps einfügen und bearbeitenIllustrationen, siehe BilderBitmaps; einfügen und bearbeitenPixelgrafiken; einfügen und bearbeitenExportieren; BitmapsImportieren; BitmapsBilder; bearbeitenBearbeiten; BilderInvertieren (Filter)Glätten (Filter)Schärfen (Filter)Rauschen entfernen (Filter)Solarisation (Filter)Alterung (Filter)Poster (Filter)Pop-Art (Filter)Kohlezeichnung (Filter)Mosaik (Filter)Bilder; FilterFilter; Bilder" #: insert_bitmap.xhp msgctxt "" @@ -10174,7 +10174,7 @@ "par_id3147275\n" "help.text" msgid "In the large selection field click the desired character or several characters in succession. The characters are displayed at the bottom of the dialog. When you close the dialog with OK, all displayed characters in the selected font are inserted in the current document." -msgstr "Klicken Sie im großen Auswahlfeld auf das gewünschte Zeichen oder auf mehrere Zeichen nacheinander. Die Zeichen werden am unteren Rand des Dialogs angezeigt. Schließen Sie den Dialog mit OK, so werden alle angezeigten Zeichen in der ausgewählten Schriftart in das aktuelle Dokument eingefügt." +msgstr "Klicken Sie im großen Auswahlfeld auf das gewünschte Zeichen oder auf mehrere Zeichen nacheinander. Die Zeichen werden am unteren Rand des Dialogs angezeigt. Wenn Sie den Dialog mit OK schließen, werden alle angezeigten Zeichen in der ausgewählten Schriftart in das aktuelle Dokument eingefügt." #: insert_specialchar.xhp msgctxt "" @@ -10302,7 +10302,7 @@ "par_id3151110\n" "help.text" msgid "The Add-Ons can extend the functionality of $[officename]. They are not related to the Add-InsAdd-Ins that provide new functions for $[officename] Calc." -msgstr "Mit Add-ons lässt sich der Funktionsumfang von $[officename] erweitern. Sie sind nicht mit den Add-ins Add-ins zu verwechseln, die zusätzliche Funktionen für $[officename] Calc bereitstellen." +msgstr "Mit Add-ons lässt sich der Funktionsumfang von $[officename] erweitern. Sie sind nicht mit den Add-insAdd-ins zu verwechseln, die zusätzliche Funktionen für $[officename] Calc bereitstellen." #: keyboard.xhp msgctxt "" @@ -11206,7 +11206,7 @@ "par_id3151300\n" "help.text" msgid "In the main help pages, use Tab to jump to the next hyperlink or Shift+Tab to jump to the previous link." -msgstr "Auf den Hilfeseiten wählen Sie mit (Tab) den nächsten Hyperlink; mit (Umschalt)(Tab) den vorigen." +msgstr "Auf den Hilfeseiten wählen Sie mit der Tabulatortaste den nächsten Hyperlink; mit der Umschalt+Tabulatortaste den vorigen." #: keyboard.xhp msgctxt "" @@ -11214,7 +11214,7 @@ "par_id3155537\n" "help.text" msgid "Press Enter to execute the selected hyperlink." -msgstr "Mit (Eingabetaste) rufen Sie einen ausgewählten Hyperlink auf." +msgstr "Mit der Eingabetaste rufen Sie einen ausgewählten Hyperlink auf." #: keyboard.xhp msgctxt "" @@ -12494,7 +12494,7 @@ "par_id3151176\n" "help.text" msgid "Click OK to close the dialog." -msgstr "Klicken Sie auf OK um den Dialog zu schließen." +msgstr "Klicken Sie auf OK, um den Dialog zu schließen." #: linestyle_define.xhp msgctxt "" @@ -12630,7 +12630,7 @@ "par_idN106D6\n" "help.text" msgid "Click the Arrow Styles icon Icon to select an arrow style for the right and left ends of a line." -msgstr "Wenn Sie eine Linienspitze für das linke beziehungsweise rechte Ende auswählen möchten, klicken Sie auf das Symbol LinienspitzeSymbol." +msgstr "Wenn Sie eine Linienspitze für das linke beziehungsweise rechte Ende auswählen möchten, klicken Sie auf das Symbol LinienspitzenSymbol." #: linestyles.xhp msgctxt "" @@ -13022,7 +13022,7 @@ "bm_id3159201\n" "help.text" msgid "documents;measurement units inmeasurement units;selectingunits;measurement unitscentimetersinchesdistancesselecting;measurement units" -msgstr "Dokumente; Maßeinheiten inMaßeinheiten; AuswählenEinheiten; MaßeinheitenZentimeterZollAbständeAuswählen; Maßeinheiten" +msgstr "Dokumente; Maßeinheiten inMaßeinheiten; auswählenEinheiten; MaßeinheitenZentimeterZollAbständeAuswählen; Maßeinheiten" #: measurement_units.xhp msgctxt "" @@ -13542,7 +13542,7 @@ "bm_id3149760\n" "help.text" msgid "Microsoft Office;document import restrictions import restrictions for Microsoft Office Microsoft Office;importing password protected files" -msgstr "Microsoft Office; Dokumentenimport EinschränkungenImporteinschränkungen für Microsoft OfficeMicrosoft Office; Importieren kennwortgeschützter Dateien" +msgstr "Microsoft Office; Einschränkungen beim DokumentenimportImporteinschränkungen für Microsoft OfficeMicrosoft Office; importieren von kennwortgeschützten Dateien" #: ms_import_export_limitations.xhp msgctxt "" @@ -14174,7 +14174,7 @@ "par_id3152577\n" "help.text" msgid "If you use macros in one of the applications and want to use the same functionality in the other application, you must edit the macros. $[officename] can load the macros that are contained within Microsoft Office files and you can then view and edit the macro code in the $[officename] Basic IDE editor." -msgstr "Wenn Sie in der einen Anwendung Makros verwenden, deren Funktion Sie auch in der anderen Anwendung nutzen möchten, so müssen Sie die Makros bearbeiten. Makros aus Microsoft Office-Dateien lassen sich in $[officename] laden, und Sie haben dann die Möglichkeit, den Makrocode im $[officename] Basic IDE-Editor einzusehen und zu bearbeiten." +msgstr "Wenn Sie in der einen Anwendung Makros verwenden, deren Funktion Sie auch in der anderen Anwendung nutzen möchten, so müssen Sie die Makros bearbeiten. Makros aus Microsoft Office-Dateien lassen sich in $[officename] laden, und Sie haben dann die Möglichkeit, den Makrocode im $[officename] Basic-IDE-Editor einzusehen und zu bearbeiten." #: ms_user.xhp msgctxt "" @@ -14342,7 +14342,7 @@ "bm_id3155364\n" "help.text" msgid "Help; navigation pane showing/hidinghiding;navigation pane in Help windowindexes;showing/hiding Help index tab" -msgstr "Hilfe; Navigationsbereich einblenden/ausblendenAusblenden; Navigationsbereich im HilfefensterIndexe; auf dem Register \"Hilfe-Index\" anzeigen/ausblenden" +msgstr "Hilfe; Navigationsbereich einblenden/ausblendenAusblenden; Navigationsbereich im HilfefensterIndizes; auf dem Register \"Hilfe-Index\" anzeigen/ausblenden" #: navpane_on.xhp msgctxt "" @@ -14454,7 +14454,7 @@ "par_id3148946\n" "help.text" msgid "To remove numbering from a paragraph using the keyboard: " -msgstr " So entfernen Sie die Nummerierung eines Absatzes mithilfe der Tastatur: " +msgstr "So entfernen Sie die Nummerierung eines Absatzes mithilfe der Tastatur:" #: numbering_stop.xhp msgctxt "" @@ -14462,7 +14462,7 @@ "par_id3148663\n" "help.text" msgid "Place the cursor at the beginning of a numbered paragraph and press the Backspace key. " -msgstr " Setzen Sie den Cursor an den Anfang eines nummerierten Absatzes und drücken Sie die Löschtaste. " +msgstr "Setzen Sie den Cursor an den Anfang eines nummerierten Absatzes und drücken Sie die Löschtaste." #: numbering_stop.xhp msgctxt "" @@ -14470,7 +14470,7 @@ "par_id3150543\n" "help.text" msgid "The numbering of the paragraph disappears and is removed from the numbering sequence. Numbering resumes in the following paragraph. " -msgstr " Jetzt verschwindet die Nummerierung vor dem Absatz und wird aus der Zählung herausgenommen; im folgenden Absatz wird die Nummerierung fortgesetzt. " +msgstr "Jetzt verschwindet die Nummerierung vor dem Absatz und wird aus der Zählung herausgenommen; im folgenden Absatz wird die Nummerierung fortgesetzt." #: numbering_stop.xhp msgctxt "" @@ -14478,7 +14478,7 @@ "par_id3154123\n" "help.text" msgid "If you press the Enter key in an empty numbered paragraph, the numbering stops. " -msgstr " Wenn Sie in einem leeren nummerierten Absatz die Eingabetaste drücken, wird die aktuelle Nummerierung beendet. " +msgstr "Wenn Sie in einem leeren nummerierten Absatz die Eingabetaste drücken, wird die aktuelle Nummerierung beendet." #: numbering_stop.xhp msgctxt "" @@ -14566,7 +14566,7 @@ "par_id3145120\n" "help.text" msgid "Click OK to close the dialog." -msgstr "Klicken Sie auf OK um den Dialog zu schließen." +msgstr "Klicken Sie auf OK, um den Dialog zu schließen." #: pageformat_max.xhp msgctxt "" @@ -14742,7 +14742,7 @@ "par_idN106BE\n" "help.text" msgid "Copies the frame attributes that are defined in Format - Frame and Object - Properties dialog. The contents, size, position, linking, hyperlinks, and macros in the frame are not copied." -msgstr "Kopiert die im Dialog unter Format - Rahmen und OLE-Pbjekte - Eigenschaften... festgelegten Attribute. Inhalt, Größe, Position, Verknüpfung, Hyperlinks und Makros des Rahmens werden nicht kopiert." +msgstr "Kopiert die im Dialog unter Format - Rahmen und OLE-Objekte - Eigenschaften... festgelegten Attribute. Inhalt, Größe, Position, Verknüpfung, Hyperlinks und Makros des Rahmens werden nicht kopiert." #: paintbrush.xhp msgctxt "" @@ -15542,7 +15542,7 @@ "par_id3154991\n" "help.text" msgid "Choose Format - Object - Position and Size - Position and Size tab. Unmark the Position or Size check box." -msgstr "Wählen Sie Format - Objekt - Position und Größe... und das Register Position und Größe. Deaktivieren Sie das Markierfeld Position besziehungsweise Größe." +msgstr "Wählen Sie Format - Objekt - Position und Größe... und das Register Position und Größe. Deaktivieren Sie das Markierfeld Position beziehungsweise Größe." #: protection.xhp msgctxt "" @@ -15574,7 +15574,7 @@ "bm_id3150499\n" "help.text" msgid "marking changes highlighting changes changes; review function review function; recording changes example Track Changes, see review function" -msgstr "Änderungen; markierenÄnderungen; hervorhebenÄnderungen; ÜberarbeitungsfunktionÜberarbeitungsfunktion; Beispiel für Änderungen auszeichnenÄnderungen aufzeichnen, siehe auch Überarbeitungsfunktion" +msgstr "Änderungen; markierenÄnderungen; hervorhebenÄnderungen; ÜberarbeitungsfunktionÜberarbeitungsfunktion; Beispiel für Änderungen aufzeichnenÄnderungen aufzeichnen, siehe auch Überarbeitungsfunktion" #: redlining.xhp msgctxt "" @@ -16262,7 +16262,7 @@ "bm_id5277565\n" "help.text" msgid "assigning scripts programming;scripting form controls;assigning macros pictures;assigning macros hyperlinks;assigning macros shortcut keys;assigning macros controls;assigning macros (Basic) menus;assigning macros events;assigning scripts" -msgstr "Skript zuweisenProgrammierung; SkripteFormularkontrollelemente; Makros zuweisenBilder; Makros zuweisenHyperlinks; Makros zuweisenTastenkombinationen; Makros zuweisenKontrollelemente; Makros zuweisen (Basic)Menüs; Makros zuweisenEreignisse; Skripte zuweisen" +msgstr "Skripte zuweisenProgrammierung; SkripteFormularkontrollelemente; Makros zuweisenBilder; Makros zuweisenHyperlinks; Makros zuweisenTastenkombinationen; Makros zuweisenKontrollelemente; Makros zuweisen (Basic)Menüs; Makros zuweisenEreignisse; Skripte zuweisen" #: scripting.xhp msgctxt "" @@ -16574,7 +16574,7 @@ "par_idN10ADF\n" "help.text" msgid "In the Macros list box, open the %PRODUCTNAME Scripts entry." -msgstr "Öffnen Sie im Listenfeld Makros den Eintrag \"%PRODUCTNAME-Makros\" auf." +msgstr "Öffnen Sie im Listenfeld Makros den Eintrag %PRODUCTNAME-Makros." #: scripting.xhp msgctxt "" @@ -16942,7 +16942,7 @@ "hd_id3147346\n" "help.text" msgid "Selecting a Default Printer " -msgstr " Wahl des Standarddruckers " +msgstr "Wahl des Standarddruckers" #: spadmin.xhp msgctxt "" @@ -17006,7 +17006,7 @@ "bm_id3154285\n" "help.text" msgid "modifying, see changingchanging, see also editing and replacingdefault templates; changingdefaults;documentscustom templatesupdating; templatesediting;templatestemplates;editing and savingsaving;templatesresetting;templates" -msgstr "Modifizieren, siehe ÄndernÄndern, siehe auch Bearbeiten und ErsetzenStandardvorlagen; ändernStandards;DokumenteBenutzerdefinierte DokumentvorlagenAktualisieren; DokumentvorlagenBearbeiten; DokumentvorlagenDokumentvorlagen; bearbeiten und speichernSpeichern; DokumentvorlagenZurücksetzen; Dokumentvorlagen" +msgstr "Modifizieren, siehe ÄndernÄndern, siehe auch Bearbeiten und ErsetzenStandardvorlagen; ändernVoreinstellungen; DokumenteBenutzerdefinierte DokumentvorlagenAktualisieren; DokumentvorlagenBearbeiten; DokumentvorlagenDokumentvorlagen; bearbeiten und speichernSpeichern; DokumentvorlagenZurücksetzen; Dokumentvorlagen" #: standard_template.xhp msgctxt "" @@ -17662,7 +17662,7 @@ "par_id3148836\n" "help.text" msgid "Starts with an empty HTML document." -msgstr "Startet mit einem leeren HTML Dokument." +msgstr "Startet mit einem leeren HTML-Dokument." #: start_parameters.xhp msgctxt "" @@ -18006,7 +18006,7 @@ "bm_id3144436\n" "help.text" msgid "tab stops; inserting and editingparagraphs; tab stopsdefaults;tab stops in textediting; tab stopsinserting;tab stopsdecimal tab stopsdeleting;tab stopsmoving;tab stops on rulerrulers; default settingsrulers; measurement unitsmeasurement units; changing on rulers" -msgstr "Tabulatoren; einfügen und bearbeitenAbsätze; TabulatorenStandards; Tabulatoren in TextBearbeiten; TabulatorenEinfügen; TabulatorenDezimaltabulatorenLöschen; TabulatorenVerschieben; Tabulatoren im LinealLineale; StandardeinstellungenLineale; MaßeinheitenMaßeinheiten; in Linealen ändern" +msgstr "Tabulatoren; einfügen und bearbeitenAbsätze; TabulatorenVorgaben; Tabulatoren in TextBearbeiten; TabulatorenEinfügen; TabulatorenDezimaltabulatorenLöschen; TabulatorenVerschieben; Tabulatoren im LinealLineale; StandardeinstellungenLineale; MaßeinheitenMaßeinheiten; in Linealen ändern" #: tabs.xhp msgctxt "" @@ -18198,7 +18198,7 @@ "par_id3159156\n" "help.text" msgid "To move several tab stops on the ruler, press the Shift key before you click a tab. Drag one tab while continuing to press Shift to move that tab as well as all the tabs to the right of it. The spacing between those tabs remains the same." -msgstr "Möchten Sie mehrere Tabulatoren im Lineal verschieben, drücken Sie die Umschalt-Taste und halten sie gedrückt. Ziehen Sie einen Tabulator mit gedrückt gehaltener Umschalt-Taste, wird der Tabulator und alle rechts von ihm liegenden Tabulatoren verschoben. Der Abstand dieser Tabulatoren untereinander bleibt unverändert." +msgstr "Um mehrere Tabulatoren im Lineal zu verschieben, drücken Sie die Umschalttaste, bevor sie einen Tabulator anklicken. Ziehen Sie den Tabulator dann mit gedrückt gehaltener Umschalttaste, wird dieser Tabulator und alle rechts von ihm liegenden Tabulatoren mit verschoben. Der Abstand zwischen diesen Tabulatoren untereinander bleibt unverändert." #: tabs.xhp msgctxt "" @@ -18206,7 +18206,7 @@ "par_id3147349\n" "help.text" msgid "Press Command Ctrl when you drag a tab on the ruler to move that tab and all the tabs to the right of it. This results in the spacing between those tabs changing proportionally to their distance from the margin." -msgstr "Wenn Sie statt der Umschalt-Taste die (Befehl)(Strg)-Taste gedrückt halten, während Sie einen Tabulator im Lineal ziehen, werden dieser Tabulator und alle rechts von ihm stehenden Tabulatoren bewegt. Dabei ändern sich die Abstände der bewegten Tabulatoren untereinander proportional zu ihrem Abstand vom Seitenrand." +msgstr "Wenn Sie statt der Umschalttaste die (Befehl)(Strg)-Taste gedrückt halten, während Sie einen Tabulator im Lineal ziehen, werden dieser Tabulator und alle rechts von ihm stehenden Tabulatoren bewegt. Dabei ändern sich die Abstände der bewegten Tabulatoren untereinander proportional zu ihrem Abstand vom Seitenrand." #: tabs.xhp msgctxt "" @@ -18286,7 +18286,7 @@ "bm_id041620170817452766\n" "help.text" msgid "template manager;filter template manager;category template manager;set as default template manager;import template manager;export template manager;settings templates;template manager" -msgstr "Vorlagen-Manager;filtern Vorlagen-Manager;Kategorien Vorlagen-Manager;Als Standard setzen Vorlagen-Manager;importieren Vorlagen-Manager;exportieren Vorlagen-Manager;Einstellungen Vorlagen;Vorlagen-Manager" +msgstr "Vorlagen-Manager; FilterVorlagen-Manager; KategorieVorlagen-Manager; Als Standard setzenVorlagen-Manager; importierenVorlagen-Manager; exportierenVorlagen-Manager; EinstellungenVorlagen; Vorlagen-Manager" #: template_manager.xhp msgctxt "" @@ -18446,7 +18446,7 @@ "par_id3155306\n" "help.text" msgid "To add the templates in another folder to the My Templates category, choose %PRODUCTNAME - PreferencesTools - Options - $[officename] - Paths, and then enter the path." -msgstr "Um Dokumentvorlagen eines anderen Verzeichnisses der Kategorie Meine Vorlagen hinzuzufügen, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - $[officename] - Pfade und geben dort den Pfad ein." +msgstr "Um Dokumentvorlagen eines anderen Verzeichnisses der Kategorie Meine Vorlagen hinzuzufügen, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - $[officename] - Pfade und geben Sie dort den Pfad ein." #: template_manager.xhp msgctxt "" @@ -18494,7 +18494,7 @@ "par_id041620170723503583\n" "help.text" msgid "Select a template in the main window and right-click and then choose Open, press Enter or double click to open a new document using that template." -msgstr "Um ein neues Dokument auf Grundlage einer Dokumentvorlage zu öffnen, doppelklicken Sie im Hauptfenster auf diese oder wählen Sie diese aus, klicken Sie mit rechts auf die Vorlage und wählen dann im Kontextmenü Öffnen." +msgstr "Um ein neues Dokument auf Grundlage einer Dokumentvorlage zu öffnen, doppelklicken Sie im Hauptfenster auf diese oder wählen Sie diese aus, rechtsklicken Sie auf die Vorlage und wählen dann im Kontextmenü Öffnen." #: template_manager.xhp msgctxt "" @@ -18966,7 +18966,7 @@ "par_id3153031\n" "help.text" msgid "Press Insert to toggle between overwrite mode and insert mode. The current mode is displayed on the Status Bar. The text cursor must be enabled in the cell or in the input line. " -msgstr "Drücken Sie die Taste (Einfg) zum Umschalten zwischen Überschreibmodus und Einfügemodus. Der aktuelle Modus wird in der Statuszeile angezeigt. Der Textcursor muss in der Zelle oder in der Eingabezeile sichtbar sein. " +msgstr "Drücken Sie die Taste Einfg zum Umschalten zwischen Überschreibmodus und Einfügemodus. Der aktuelle Modus wird in der Statuszeile angezeigt. Der Textcursor muss in der Zelle oder in der Eingabezeile sichtbar sein." #: textmode_change.xhp msgctxt "" @@ -18998,7 +18998,7 @@ "par_id3154307\n" "help.text" msgid "Insert mode is enabled. The text cursor is a blinking vertical line. Click on the area to enable the overwrite mode." -msgstr "Der Einfügemodus ist aktiviert. Der Textcursor wird als blinkender, senkrechter Strich angezeigt. Durch Klicken auf das Feld aktivieren Sie den Überschreibmodus." +msgstr "Der Einfügemodus ist aktiviert. Der Textcursor wird als blinkender, senkrechter Strich angezeigt. Durch Klicken auf das Feld aktivieren Sie den Überschreibmodus." #: textmode_change.xhp msgctxt "" @@ -19014,7 +19014,7 @@ "par_id3148491\n" "help.text" msgid "The overwrite mode is enabled. The text cursor is a blinking block. Click on the area to enable insert mode." -msgstr "Der Überschreibmodus ist aktiviert. Der Textcursor ist ein blinkender Block. Klicken Sie mit der Maus in das Feld zum Aktivieren des Einfügemodus." +msgstr "Der Überschreibmodus ist aktiviert. Der Textcursor ist ein blinkender Block. Klicken Sie mit der Maus in das Feld zum Aktivieren des Einfügemodus." #: textmode_change.xhp msgctxt "" @@ -19294,7 +19294,7 @@ "bm_id3150789\n" "help.text" msgid "working directory change My Documents folder;changing work directory paths; changing work directory pictures; changing paths changing;work directory" -msgstr "Arbeitsverzeichnis ändernEigene Dokumente (Ordner); Arbeitsverzeichnis ändernPfade; Arbeitsverzeichnis ändern Bilder;Pfade ändernÄndern; Arbeitsverzeichnis" +msgstr "Arbeitsverzeichnis ändernEigene Dokumente (Ordner); Arbeitsverzeichnis ändernPfade; Arbeitsverzeichnis ändernBilder; Pfade ändernÄndern; Arbeitsverzeichnis" #: workfolder.xhp msgctxt "" @@ -19758,7 +19758,7 @@ "par_idN10A09\n" "help.text" msgid "In the Application box, select the %PRODUCTNAME application that the filter is for." -msgstr "Wählen Sie im Feld Anwednung die %PRODUCTNAME-Anwendung, für die der Filter bestimmt ist." +msgstr "Wählen Sie im Feld Anwendung die %PRODUCTNAME-Anwendung, für die der Filter bestimmt ist." #: xsltfilter_create.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/shared/optionen.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/shared/optionen.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:53+0200\n" -"PO-Revision-Date: 2017-10-31 12:01+0000\n" +"PO-Revision-Date: 2017-12-10 18:58+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1509451315.000000\n" +"X-POOTLE-MTIME: 1512932284.000000\n" #: 01000000.xhp msgctxt "" @@ -30,7 +30,7 @@ "bm_id3153665\n" "help.text" msgid "options; tools defaults; program configuration settings; program configuration" -msgstr "Optionen; ExtrasStandardeinstellungen; ProgrammeinstellungenEinstellungen; Programmeinstellungen" +msgstr "Optionen; ExtrasVoreinstellungen; ProgrammeinstellungenEinstellungen; Programmeinstellungen" #: 01000000.xhp msgctxt "" @@ -670,7 +670,7 @@ "par_id3153192\n" "help.text" msgid "To change the location of the backup copy, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Paths, and then enter a new path for the backup file." -msgstr "Um den Speicherort für die Sicherungskopien zu ändern, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME - Pfade und geben dort einen neuen Pfad für die Sicherungskopien an." +msgstr "Um den Speicherort für die Sicherungskopien zu ändern, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME - Pfade und geben Sie dort einen neuen Pfad für die Sicherungskopien an." #: 01010200.xhp msgctxt "" @@ -2102,7 +2102,7 @@ "par_id3149560\n" "help.text" msgid "Contains a list of available colors. Click on the desired one in the list to select it." -msgstr "Enthält eine Liste verfügbarer Farben. Klicken sie auf die gewünschte Farbe in der Liste, um sie auszuwählen." +msgstr "Enthält eine Liste verfügbarer Farben. Klicken Sie auf die gewünschte Farbe in der Liste, um sie auszuwählen." #: 01010500.xhp msgctxt "" @@ -3166,7 +3166,7 @@ "bm_id3155341\n" "help.text" msgid "views; defaults defaults; views settings; views icons; sizes icons; styles WYSIWYG in fonts lists previews; fonts lists font lists font name box mouse; positioning clipboard; selection clipboard selection clipboard OpenGL;settings OpenGL;blacklist OpenGL;whitelist OpenGL;graphics output notebook bar;icon size" -msgstr "Ansichten; StandardsStandards; AnsichtenEinstellungen; AnsichtenSymbole; GrößeSymbole; StileWYSIWYG in SchriftartenlisteVorschau; SchriftartenlisteSchriftartenlisteSchriftart-AuswahlfeldMaus; PositionierungZwischenablage; Zwischenablagen-AuswahlZwischenablagen-AuswahlOpenGL; EinstellungenOpenGL; NegativlisteOpenGL; PositivlisteOpenGL; GrafikausgabeSymbolband; Symbolgröße" +msgstr "Ansichten; VoreinstellungenVoreinstellungen; AnsichtenEinstellungen; AnsichtenSymbole; GrößenSymbole; StileWYSIWYG in SchriftartenlistenVorschauen; SchriftartenlistenSchriftartenlistenSchriftart-AuswahlfeldMaus; PositionierungZwischenablage; Zwischenablagen-AuswahlZwischenablagen-AuswahlOpenGL; EinstellungenOpenGL; NegativlisteOpenGL; PositivlisteOpenGL; GrafikausgabeSymbolband; Symbolgröße" #: 01010800.xhp msgctxt "" @@ -4182,7 +4182,7 @@ "par_id3145365\n" "help.text" msgid "In order to enhance cursor visibility, if the user sets the application background color between 40% and 60% gray, it is automatically changed to 40% gray." -msgstr "Wenn Sie den Anwendungshintergrund auf einen Wert zwischen 40% und 60% Grau einstellen, erfolgt zugunsten der Sichtbarkeit des Cursors automatisch eine Umstellung auf 40% Grau." +msgstr "Wenn Sie den Anwendungshintergrund auf einen Wert zwischen 40 % und 60 % Grau einstellen, erfolgt zugunsten der Sichtbarkeit des Cursors automatisch eine Umstellung auf 40 % Grau." #: 01012000.xhp msgctxt "" @@ -4214,7 +4214,7 @@ "bm_id3159411\n" "help.text" msgid "disabled personstext colors for better accessibilityanimations; accessibility optionsHelp tips; hidinghigh contrast modeaccessibility; optionsoptions; accessibility" -msgstr "Personen mit BehinderungTextfarben zur besseren LesbarkeitAnimationen; Optionen der BarrierefreiheitTipps; ausblendenKontrastdarstellungsmodusBarrierefreiheit; OptionenOptionen; Barrierefreiheit" +msgstr "Personen mit BehinderungTextfarben zur besseren LesbarkeitAnimationen; Optionen der BarrierefreiheitHilfetipps; ausblendenKontrastdarstellungsmodusBarrierefreiheit; OptionenOptionen; Barrierefreiheit" #: 01013000.xhp msgctxt "" @@ -4382,7 +4382,7 @@ "par_id3146923\n" "help.text" msgid "Applies the high contrast settings of the operating system to page previews." -msgstr "Die Systemeinstellungen für die Kontrastdarstellung werden auch auf die Druckvorschau angewendet." +msgstr "Die Systemeinstellungen für die Kontrastdarstellung werden auch auf die Druckvorschauen angewendet." #: 01020000.xhp msgctxt "" @@ -5094,7 +5094,7 @@ "par_id3150872\n" "help.text" msgid "You must activate this option before you create the $[officename] Basic Script, since otherwise it will not be inserted. $[officename] Basic Scripts must be located in the header of the HTML document. Once you have created the macro in the $[officename] Basic IDE, it appears in the source text of the HTML document in the header." -msgstr "Sie müssen diese Option einschalten, bevor Sie das $[officename] Basic Skript erstellen, da es sonst nicht eingefügt wird. $[officename] Basic Skripts müssen im Header des HTML Dokuments stehen. Nachdem Sie in der $[officename] Basic IDE das Makro erstellt haben, erscheint es im Quelltext des HTML Dokuments im Header." +msgstr "Sie müssen diese Option einschalten, bevor Sie das $[officename] Basic-Skript erstellen, da es sonst nicht eingefügt wird. $[officename] Basic-Skripts müssen im Header des HTML-Dokuments stehen. Nachdem Sie in der $[officename] Basic-IDE das Makro erstellt haben, erscheint es im Quelltext des HTML-Dokuments im Header." #: 01030500.xhp msgctxt "" @@ -7262,7 +7262,7 @@ "bm_id3577990\n" "help.text" msgid "Word documents;compatibility importing;compatibility settings for text import options;compatibility (Writer) compatibility settings for MS Word import Microsoft Office;importing Word documents layout;importing Word documents formatting;printer metrics (Writer) metrics;document formatting (Writer) printer metrics for document formatting (Writer)" -msgstr "Word-Dokumente; KompatibilitätImportieren; Kompatibilitätseinstellung für den TextimportOptionen; Kompatibilität (Writer)Kompatibilitätseinstellungen für den Import aus MS WordMicrosoft Office; Word-Dokumente importierenLayout; Word-Dokumente importierenFormatierung; Druckermaße (Writer)Maße; Dokumentformatierung (Writer)Druckermaße für Textformatierung verwenden (Writer)" +msgstr "Word-Dokumente; KompatibilitätImportieren; Kompatibilitätseinstellungen für den TextimportOptionen; Kompatibilität (Writer)Kompatibilitätseinstellungen für den Import aus MS WordMicrosoft Office; Word-Dokumente importierenLayout; Word-Dokumente importierenFormatierung; Druckermaße (Writer)Maße; Dokumentformatierung (Writer)Druckermaße für Textformatierung verwenden (Writer)" #: 01041000.xhp msgctxt "" @@ -7598,7 +7598,7 @@ "par_idN10977\n" "help.text" msgid "The factory defaults are set as follows. Enabled are the following options, while all other options are disabled:" -msgstr "Die werksseitigen Standardeinstellungen sind wie folgt. Folgende Optionen sind aktiviert, während alle anderen Optionen deaktiviert sind:" +msgstr "Die werksseitigen Voreinstellungen sind wie folgt gesetzt. Die folgenden Optionen sind aktiviert, während alle anderen Optionen deaktiviert sind:" #: 01041000.xhp msgctxt "" @@ -8622,7 +8622,7 @@ "bm_id3151110\n" "help.text" msgid "metrics;in sheetstab stops; setting in sheetscells; cursor positions after input (Calc)edit mode; through Enter key (Calc)formatting; expanding (Calc)expanding formatting (Calc)references; expanding (Calc)column headers; highlighting (Calc)row headers; highlighting (Calc)" -msgstr "Maße;in Tabellen Tabulatoren;in Tabellen einstellen Zellen;Cursorpositionen nach Eingabe (Calc) Bearbeitungsmodus;über die Eingabetaste aufrufen (Calc) Formatierung;ausweiten (Calc) Formatierung ausweiten (Calc) Verweise;ausweiten (Calc) Spaltenköpfe;hervorheben (Calc) Zeilenköpfe;hervorheben (Calc)" +msgstr "Maße; in TabellenTabulatoren; in Tabellen einstellenZellen; Cursorpositionen nach Eingabe (Calc)Bearbeitungsmodus; über die Eingabetaste aufrufen (Calc)Formatierung;ausweiten (Calc)Formatierung ausweiten (Calc)Verweise; ausweiten (Calc)Spaltenköpfe; hervorheben (Calc)Zeilenköpfe; hervorheben (Calc)" #: 01060300.xhp msgctxt "" @@ -9598,7 +9598,7 @@ "hd_id315634199\n" "help.text" msgid "Limit decimals for general number format" -msgstr "Stellen für Standardformat begrenzen" +msgstr "Dezimalstellen für Standardzahlenformat begrenzen" #: 01060500.xhp msgctxt "" @@ -9606,7 +9606,7 @@ "par_id315343818\n" "help.text" msgid "You can specify the maximum number of decimal places that are shown by default for cells with General number format. If not enabled, cells with General number format show as many decimal places as the column width allows." -msgstr "Hier können Sie die Anzahl der angezeigten Dezimalstellen für Zellen, die mit dem Standardzahlenformat formatierten sind, begrenzen. Ist diese Option nicht aktiv, so werden bei Zellen mit dem Standardzahlenformat soviele Dezimalzellen angezeigt, wie es die Spaltenbreite erlaubt." +msgstr "Hier können Sie die Anzahl der angezeigten Dezimalstellen für Zellen, die mit dem Standardzahlenformat formatiert sind, begrenzen. Ist diese Option nicht aktiv, so werden bei Zellen mit dem Standardzahlenformat so viele Dezimalzellen angezeigt, wie es die Spaltenbreite erlaubt." #: 01060500.xhp msgctxt "" @@ -10046,7 +10046,7 @@ "bm_id4249399\n" "help.text" msgid "formula options;formula syntax formula options;separators formula options;reference syntax in string parameters formula options;recalculating spreadsheets formula options;large spreadsheet files formula options;loading spreadsheet files separators;function separators;array column separators;array row recalculating;formula options recalculating;large spreadsheet files loading;large spreadsheet files" -msgstr "Formel-Einstellungen; Formel-SyntaxFormel-Einstellungen; TrennzeichenFormel-Einstellungen; Bezüge-Syntax für Zeichenfolge-BezügeFormel-Einstellungen; Neuberechnung von TabellenFormel-Einstellungen; große TabellendokumenteFormel-Einstellungen; Tabellendokumente ladenTrennzeichen; FunktionenTrennzeichen; Matrix SpalteTrennzeichen; Matrix ZeileNeuberechnung; Formel-EinstellungenNeuberechnung; große TabellendokumenteLaden; große Tabellendokumente" +msgstr "Formel-Einstellungen; Formel-SyntaxFormel-Einstellungen; TrennzeichenFormel-Einstellungen; Bezüge-Syntax für Zeichenfolge-BezügeFormel-Einstellungen; Neuberechnung von TabellenFormel-Einstellungen; große TabellendokumenteFormel-Einstellungen; Tabellendokumente ladenTrennzeichen; FunktionenTrennzeichen; MatrixspalteTrennzeichen; MatrixzeileNeuberechnung; Formel-EinstellungenNeuberechnung; große TabellendokumenteLaden; große Tabellendokumente" #: 01060900.xhp msgctxt "" @@ -10238,7 +10238,7 @@ "par_id2215549\n" "help.text" msgid "ODF Spreadsheet (not saved by %PRODUCTNAME):" -msgstr "ODF Tabellendokument (nicht mit %PRODUCTNAME gespeichert):" +msgstr "ODF-Tabellendokument (nicht mit %PRODUCTNAME gespeichert):" #: 01060900.xhp msgctxt "" @@ -10246,7 +10246,7 @@ "par_id2016549\n" "help.text" msgid "Recent versions of %PRODUCTNAME caches spreadsheet formula results into its ODF file.This feature helps %PRODUCTNAME to recalculate a large ODF spreadsheet saved by %PRODUCTNAME faster." -msgstr "Aktuelle Versionen von %PRODUCTNAME speichern Formelergebnisse in ihrer ODF-Datei zwischen. Diese Funktion beschleunigt %PRODUCTNAME beim Neuberechnen eines großen ODF Tabellendokuments, die von %PRODUCTNAME gespeichert wurde." +msgstr "Aktuelle Versionen von %PRODUCTNAME speichern Formelergebnisse in ihrer ODF-Datei zwischen. Diese Funktion beschleunigt %PRODUCTNAME beim Neuberechnen eines großen ODF-Tabellendokuments, welches von %PRODUCTNAME gespeichert wurde." #: 01060900.xhp msgctxt "" @@ -10254,7 +10254,7 @@ "par_id2017549\n" "help.text" msgid "For ODF spreadsheets saved by other programs, where such cached formula results may not exist, recalculation can be deferred to speedup file loading as with Excel 2007 files." -msgstr "Für von anderen Programmen gespeicherte ODF Tabellendokumente, für die zwischengespeicherte Formelergebnisse möglicherweise nicht existieren, kann die Neuberechnung aufgeschoben werden, um die Ladezeit von beispielsweise Excel 2007 Dateien zu beschleunigen." +msgstr "Für von anderen Programmen gespeicherte ODF-Tabellendokumente, für die zwischengespeicherte Formelergebnisse möglicherweise nicht existieren, kann die Neuberechnung aufgeschoben werden, um die Ladezeit von beispielsweise Excel 2007-Dateien zu beschleunigen." #: 01060900.xhp msgctxt "" @@ -10294,7 +10294,7 @@ "par_id2010549\n" "help.text" msgid "%PRODUCTNAME saved ODF spreadsheets will honor Never recalculate and Always recalculate options." -msgstr "Die in %PRODUCTNAME gespeicherten ODF Tabellendokumente werden die Optionen Nie neuberechnen und Immer neuberechnen respektieren." +msgstr "Die in %PRODUCTNAME gespeicherten ODF-Tabellendokumente werden die Optionen Nie neuberechnen und Immer neuberechnen respektieren." #: 01061000.xhp msgctxt "" @@ -10302,7 +10302,7 @@ "tit\n" "help.text" msgid "Defaults" -msgstr "Standards" +msgstr "Vorgaben" #: 01061000.xhp msgctxt "" @@ -10310,7 +10310,7 @@ "bm_id4249399\n" "help.text" msgid "defaults;number of worksheets in new documents defaults;prefix name for new worksheet number of worksheets in new documents prefix name for new worksheet" -msgstr "Standards; Tabellen in neuem DokumentStandards; Name neuer TabellenTabellen in neuem DokumentName neuer Tabellen" +msgstr "Vorgaben; Anzahl der Tabellen in neuen DokumentenVorgaben; Bezeichnung für neue TabelleAnzahl der Tabellen in neuen DokumentenBezeichnung für neue Tabelle" #: 01061000.xhp msgctxt "" @@ -10318,7 +10318,7 @@ "hd_id3145071\n" "help.text" msgid "Defaults" -msgstr "Standards" +msgstr "Vorgaben" #: 01061000.xhp msgctxt "" @@ -10366,7 +10366,7 @@ "par_id3146957\n" "help.text" msgid "Defines various settings for newly created presentation documents, such as the contents to be displayed, the measurement unit used, if and how grid alignment is carried out." -msgstr "Legt verschiedene Einstellungen für neu erstellte Präsentations-Dokumente fest, beispielsweise die Inhalte, die angezeigt werden, die verwendeten Maßeinheiten, ob und wie das Gitter ausgerichtet wird." +msgstr "Legt verschiedene Einstellungen für neu erstellte Präsentationsdokumente fest, beispielsweise die Inhalte, die angezeigt werden, die verwendeten Maßeinheiten, ob und wie das Gitter ausgerichtet wird." #: 01070100.xhp msgctxt "" @@ -10726,7 +10726,7 @@ "par_id3150717\n" "help.text" msgid "Specifies that graphic objects can only be rotated within the rotation angle that you selected in the When rotating control. If you want to rotate an object outside the defined angle, press the Shift key when rotating. Release the key when the desired rotation angle is reached." -msgstr "Legt fest, dass Grafikobjekte nur schrittweise um den im Drehfeld Beim Drehen angegebenen Winkel gedreht werden können. Um ein Objekt frei drehen zu können, drücken Sie beim Drehen die Umschalt-Taste. Lassen Sie die Maustaste los, sobald der gewünschte Winkel erreicht ist." +msgstr "Legt fest, dass Grafikobjekte nur schrittweise um den im Drehfeld Beim Drehen angegebenen Winkel gedreht werden können. Um ein Objekt frei drehen zu können, drücken Sie beim Drehen die Umschalttaste. Lassen Sie die Maustaste los, sobald der gewünschte Winkel erreicht ist." #: 01070300.xhp msgctxt "" @@ -10758,7 +10758,7 @@ "bm_id3155450\n" "help.text" msgid "printing; drawings defaultsdrawings; printing defaultspages;printing page names in presentationsprinting; dates in presentationsdates; printing in presentationstimes; inserting when printing presentationsprinting; hidden pages of presentationshidden pages; printing in presentationsprinting; without scaling in presentationsscaling; when printing presentationsprinting; fitting to pages in presentationsfitting to pages; print settings in presentationsprinting; tiling pages in presentations" -msgstr "Drucken; Standardeinstellungen für ZeichnungenZeichnungen; StandarddruckeinstellungenSeiten; Seitennamen in Präsentationen druckenDrucken; Datumsangaben in PräsentationenDatumsangaben; in Präsentationen druckenUhrzeiten; beim Drucken einer Präsentation einfügenDrucken; ausgeblendete Seiten in PräsentationenAusgeblendeten Seiten; in Präsentationen druckenDrucken; ohne Skalierung in PräsentationenSkalierung; beim Drucken von PräsentationenDrucken; an Seitengröße anpassenAn Seitengröße anpassen; Druckeinstellungen in PräsentationenDrucken; Seiten kacheln in Präsentationen" +msgstr "Drucken; Standardeinstellungen für ZeichnungenZeichnungen; StandarddruckeinstellungenSeiten; Seitennamen in Präsentationen druckenDrucken; Datumsangaben in PräsentationenDatumsangaben; in Präsentationen druckenUhrzeiten; beim Drucken einer Präsentation einfügenDrucken; ausgeblendete Seiten in PräsentationenAusgeblendeten Seiten; in Präsentationen druckenDrucken; ohne Skalierung in PräsentationenSkalierung; beim Drucken von PräsentationenDrucken; an Seiten anpassenAn Seiten anpassen; Druckeinstellungen in PräsentationenDrucken; Seiten kacheln in Präsentationen" #: 01070400.xhp msgctxt "" @@ -11206,7 +11206,7 @@ "par_id3154730\n" "help.text" msgid "If enabled, a copy is created when you move an object while holding down the CommandCtrl key. The same will apply for rotating and resizing the object. The original object will remain in its current position and size." -msgstr "Falls die Option aktiviert ist, wird eine Kopie erstellt, wenn Sie ein Objekt bei gedrückter Taste BefehlStrg verschieben. Dasselbe gilt für das Rotieren und die Größenänderung des Objekts. Das Originalobjekt wird an seiner gegenwärtigen Position und Größe bleiben." +msgstr "Falls die Option aktiviert ist, wird eine Kopie erstellt, wenn Sie ein Objekt bei gedrückter Taste BefehlStrg verschieben. Dasselbe gilt für das Drehen und Größenänderungen des Objekts. Das Originalobjekt wird an seiner gegenwärtigen Position in seiner ursprünglichen Größe bleiben." #: 01070500.xhp msgctxt "" @@ -11822,7 +11822,7 @@ "par_id3151246\n" "help.text" msgid "The Save original Basic code checkbox takes precedence over the Load Basic code check box. If both boxes are marked and you edit the disabled Basic Code in the $[officename] Basic IDE, the original Microsoft Basic code will be saved when saving in the Microsoft format. A message appears to inform you of this." -msgstr "Das Markierfeld Original Basic wieder speichern hat Vorrang vor der Wirkung des Felds Basic Code laden: Sind beide Felder markiert und Sie bearbeiten den auskommentierten Basic Code in der $[officename] Basic IDE, wird beim Speichern im Microsoft Format der originale Microsoft Basic Code mit gespeichert. Ein Hinweis informiert Sie darüber." +msgstr "Das Markierfeld Original Basic wieder speichern hat Vorrang vor der Wirkung des Felds Basic Code laden: Sind beide Felder markiert und Sie bearbeiten den auskommentierten Basic-Code in der $[officename] Basic-IDE, wird beim Speichern im Microsoft-Format der originale Microsoft Basic-Code mit gespeichert. Ein Hinweis informiert Sie darüber." #: 01130100.xhp msgctxt "" @@ -12422,7 +12422,7 @@ "par_id3145136\n" "help.text" msgid "Defines the typographic default settings for Asian text." -msgstr "Hier legen Sie die typographischen Standardeinstellungen für asiatischen Text fest." +msgstr "Hier legen Sie die typografischen Standardeinstellungen für asiatischen Text fest." #: 01150100.xhp msgctxt "" @@ -12558,7 +12558,7 @@ "par_id3149295\n" "help.text" msgid "Defines the default settings for 'first' and 'last' characters. In the dialog that appears when you choose Format -Asian Typography, you can specify whether the list of forbidden characters applies to those at the beginning or end of a line in a paragraph." -msgstr "Hier legen Sie die Standardeinstellungen für Anfangs- und Endzeichen fest. In diesem Dialog, den Sie über Format -Asiatische Typographie aufrufen können, legen Sie fest, ob die Listen für verbotene Zeichen am Zeilenanfang oder am Zeilenende auf den jeweiligen Absatz angewendet werden sollen." +msgstr "Hier legen Sie die Standardeinstellungen für Anfangs- und Endzeichen fest. In diesem Dialog, den Sie über Format -Asiatische Typografie aufrufen können, legen Sie fest, ob die Listen für verbotene Zeichen am Zeilenanfang oder am Zeilenende auf den jeweiligen Absatz angewendet werden sollen." #: 01150100.xhp msgctxt "" @@ -13182,7 +13182,7 @@ "tit_BasicIDE\n" "help.text" msgid "Basic IDE Options" -msgstr "Basic-IDE" +msgstr "Basic-IDE-Optionen" #: BasicIDE.xhp msgctxt "" @@ -13198,7 +13198,7 @@ "par_idN10558\n" "help.text" msgid "Basic IDE Options" -msgstr "Basic-IDE" +msgstr "Basic-IDE-Optionen" #: BasicIDE.xhp msgctxt "" @@ -13302,7 +13302,7 @@ "par_id2507201509570353\n" "help.text" msgid "Correct cases of Basic variables and keywords while typing. %PRODUCTNAME Basic IDE will modify the typing of Basic statements and Basic variables of your code to improve coding style and readability. Modifications of the code are based on the program's variables declarations and on the %PRODUCTNAME Basic commands parsed." -msgstr "Korrigiert in einigen Fällen Basic-Variablen und -Schlagwörter während der Eingabe. Die %PRODUCTNAME Basic-IDE korrigiert die Schreibweise von Basic-Anweisungen und Basic-Variablen Ihres Codes, um den Programmierstil und die Lesbarkeit zu verbessern. Die Verbesserungen des Codes basieren auf den vorgegebenen Programmvariablen und der Analyse von %PRODUCTNAME Basic Befehlen." +msgstr "Korrigiert in einigen Fällen Basic-Variablen und -Schlagwörter während der Eingabe. Die %PRODUCTNAME Basic-IDE korrigiert die Schreibweise von Basic-Anweisungen und Basic-Variablen Ihres Codes, um den Programmierstil und die Lesbarkeit zu verbessern. Die Verbesserungen des Codes basieren auf den vorgegebenen Programmvariablen und der Analyse von %PRODUCTNAME Basic-Befehlen." #: BasicIDE.xhp msgctxt "" @@ -14158,7 +14158,7 @@ "bm_id1203039\n" "help.text" msgid "security;security levels for macrosmacros;security levelslevels;macro security" -msgstr "Sicherheit; Sicherheitsstufen für MakrosMakros; SicherheitsstufenStufen; Makro Sicherheit" +msgstr "Sicherheit; Sicherheitsstufen für MakrosMakros; SicherheitsstufenStufen; Makrosicherheit" #: macrosecurity_sl.xhp msgctxt "" @@ -14598,7 +14598,7 @@ "tit\n" "help.text" msgid "Online Update" -msgstr "Online Update" +msgstr "Online-Update" #: online_update.xhp msgctxt "" @@ -14606,7 +14606,7 @@ "bm_id7657094\n" "help.text" msgid "update options online update options options;online update online updates; checking automatically updates; checking automatically Internet; checking for updates" -msgstr "Update OptionenOnline Update OptionenOptionen; Online UpdateOnline Updates; automatisch suchenUpdates; automatisch suchenInternet; Nach Updates suchen" +msgstr "Update-OptionenOnline-Update-OptionenOptionen; Online-UpdateOnline-Updates; automatisch suchenUpdates; automatisch suchenInternet; Nach Updates suchen" #: online_update.xhp msgctxt "" @@ -14614,7 +14614,7 @@ "hd_id29297\n" "help.text" msgid "Online Update" -msgstr "Online Update" +msgstr "Online-Update" #: online_update.xhp msgctxt "" @@ -15150,7 +15150,7 @@ "par_id79042\n" "help.text" msgid "If enabled, you must hold down the Ctrl key while clicking a hyperlink to follow that link. If not enabled, a click opens the hyperlink." -msgstr "Wenn aktiviert, muss die Taste Strg gedrückt werden, während ein Hyperlink angeklickt wird, um ihm zu folgen. Wenn nicht, öffnet ein Klick den Hyperlink." +msgstr "Falls aktiviert, muss die Strg-Taste gedrückt werden, während ein Hyperlink angeklickt wird, um ihm zu folgen. Falls nicht aktiviert, öffnet ein einfacher Klick den Hyperlink." #: securityoptionsdialog.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/shared.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/shared.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/shared.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/shared.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-06 20:00+0200\n" -"PO-Revision-Date: 2017-10-22 08:47+0000\n" +"PO-Revision-Date: 2017-12-10 19:13+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1508662029.000000\n" +"X-POOTLE-MTIME: 1512933216.000000\n" #: 3dsettings_toolbar.xhp msgctxt "" @@ -542,7 +542,7 @@ "par_id281120160939285779\n" "help.text" msgid "Safe mode is a mode where %PRODUCTNAME temporarily starts with a fresh user profile and disables hardware acceleration. It helps to restore a non-working %PRODUCTNAME instance. " -msgstr "Der abgesicherte Modus ist ein Modus, wo %PRODUCTNAME temporär mit einem frischen Benutzerprofil startet und die Hardware-Beschleunigung deaktiviert. Dies hilft, um eine nicht funktionierende %PRODUCTNAME-Instanz wiederherzustellen. " +msgstr "Der abgesicherte Modus ist ein Modus, in welchem %PRODUCTNAME temporär mit einem frischen Benutzerprofil startet und die Hardwarebeschleunigung deaktiviert wird. Dies hilft, eine nicht mehr funktionierende %PRODUCTNAME-Instanz wiederherzustellen." #: main0108.xhp msgctxt "" @@ -782,7 +782,7 @@ "par_idN1081E\n" "help.text" msgid "Enables extended help tips under the mouse pointer till the next click." -msgstr "Aktiviert die Anzeige von Hilfetipps unterhalb des Mauszeigers bis zum nächsten Klicken." +msgstr "Aktiviert die Anzeige von erweiterten Hilfetipps unterhalb des Mauszeigers bis zum nächsten Klicken." #: main0201.xhp msgctxt "" @@ -1982,7 +1982,7 @@ "par_id3156346\n" "help.text" msgid "For more information about $[officename] API reference, please visit http://api.libreoffice.org/" -msgstr "Für weitere Informationen zur $[officename] API-Referenz besuchen Sie bitte http://api.openoffice.org/." +msgstr "Für weitere Informationen zur $[officename] API-Referenz besuchen Sie bitte http://api.openoffice.org/" #: main0600.xhp msgctxt "" @@ -2054,7 +2054,7 @@ "par_id9116183\n" "help.text" msgid "Before you can use a JDBC driver, you need to add its class path. Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Advanced, and click the Class Path button. After you add the path information, restart %PRODUCTNAME." -msgstr "Bevor Sie einen JDBC Treiber nutzen können, müssen Sie dessen Class-Pfad hinzufügen. Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME - Erweitert und klicken Sie auf die Schaltfläche Class-Pfad. Nachdem Sie die Pfadinformation eingetragen haben, starten Sie %PRODUCTNAME neu." +msgstr "Bevor Sie einen JDBC-Treiber nutzen können, müssen Sie seinen Klassenpfad hinzufügen. Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME - Erweitert und klicken Sie auf die Schaltfläche Class-Pfad. Nachdem Sie die Pfadinformation eingetragen haben, starten Sie %PRODUCTNAME neu." #: main0650.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/simpress/01.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/simpress/01.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/simpress/01.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/simpress/01.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-05-12 14:35+0200\n" -"PO-Revision-Date: 2017-10-24 15:01+0000\n" +"PO-Revision-Date: 2017-11-16 12:28+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1508857261.000000\n" +"X-POOTLE-MTIME: 1510835324.000000\n" #: 01170000.xhp msgctxt "" @@ -1206,7 +1206,7 @@ "bm_id3145251\n" "help.text" msgid "fields; editing editing; fields fields; formatting formatting; fields" -msgstr "Feldbefehle; bearbeitenBearbeiten; FeldbefehleFeldbefehle; formatierenFormatieren; Felbefehle" +msgstr "Feldbefehle; bearbeitenBearbeiten; FeldbefehleFeldbefehle; formatierenFormatieren; Feldbefehle" #: 02160000.xhp msgctxt "" @@ -1726,7 +1726,7 @@ "bm_id3154013\n" "help.text" msgid "normal view; backgrounds backgrounds; normal view views;slide master view slide master view" -msgstr "Normalansicht; HintegründeHintergründe; NormalansichtAnsicht; FolienmasterFolienmaster" +msgstr "Normalansicht; HintergründeHintergründe; NormalansichtAnsicht; FolienmasterFolienmaster" #: 03150100.xhp msgctxt "" @@ -1790,7 +1790,7 @@ "bm_id3153144\n" "help.text" msgid "notes;default formatting backgrounds;notes speaker notes;defaults" -msgstr "Notizen; StandardformatierungHintergründe; NotizenSprechernotizen; Standardeinstellungen" +msgstr "Notizen; StandardformatierungHintergründe; NotizenSprechernotizen; Voreinstellungen" #: 03150300.xhp msgctxt "" @@ -1974,7 +1974,7 @@ "bm_id1374858\n" "help.text" msgid "slides;page numbersslides;headers and footersfooters;slidesheaders and footers;slides" -msgstr "Folien; SeitenzahlFolien; Kopf- und FußzeileFußzeile; FolienKopfzeile; Folien" +msgstr "Folien; SeitenzahlenFolien; Kopf- und FußzeilenFußzeilen; FolienKopf- und Fußzeilen; Folien" #: 03152000.xhp msgctxt "" @@ -2862,7 +2862,7 @@ "bm_id3146976\n" "help.text" msgid "inserting; objects from filesobjects; inserting from filesslides; inserting as linksinserting; slides as linksbackgrounds; deleting unused" -msgstr "Einfügen; Objekte aus DateienObjekte; aus Dateien einfügenFolien; Einfügen als VerknüpfungEinfügen als Verknüpfungen; FolienHintergründe; nicht verwendete löschen" +msgstr "Einfügen; Objekte aus DateienObjekte; aus Dateien einfügenFolien; einfügen als VerknüpfungenEinfügen als Verknüpfungen; FolienHintergründe; nicht verwendete löschen" #: 04110100.xhp msgctxt "" @@ -5478,7 +5478,7 @@ "bm_id3148837\n" "help.text" msgid "sounds; for effectseffects; soundssounds; formatspresentations; ordering of effectslists;animationsanimations;list of" -msgstr "Klang; in EffektenEffekt; KlangKlang; FormatePräsentationen; Reihenfolge von EffektenListen; AnimationenAnimationen; Liste der" +msgstr "Klänge; für EffekteEffekte; KlängeKlänge; FormatePräsentationen; Reihenfolge von EffektenListen; AnimationenAnimationen; Liste der" #: 06060000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/simpress/02.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/simpress/02.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/simpress/02.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/simpress/02.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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" -"PO-Revision-Date: 2017-10-31 13:47+0000\n" +"PO-Revision-Date: 2017-12-09 17:56+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1509457623.000000\n" +"X-POOTLE-MTIME: 1512842195.000000\n" #: 04010000.xhp msgctxt "" @@ -390,7 +390,7 @@ "hd_id3156060\n" "help.text" msgid "Zoom 100%" -msgstr "Zoom 100%" +msgstr "Zoom 100 %" #: 10020000.xhp msgctxt "" @@ -414,7 +414,7 @@ "par_id3083450\n" "help.text" msgid "Zoom 100%" -msgstr "Zoom 100%" +msgstr "Zoom 100 %" #: 10020000.xhp msgctxt "" @@ -686,7 +686,7 @@ "par_id3154018\n" "help.text" msgid "Effects (%PRODUCTNAME Draw only)" -msgstr "Modus (nur %PRODUCTNAME-Draw)" +msgstr "Modus (nur %PRODUCTNAME Draw)" #: 10030000.xhp msgctxt "" @@ -790,7 +790,7 @@ "par_id3145169\n" "help.text" msgid "Converts the selected 2D object(s) to a 3D object, by rotating the object(s) around a symmetry line." -msgstr "Wandelt das oder die gewählten 2D-Objekte in einen 3D-Rotationskörper um, indem die Objekte um eine Symmetrieachse gedreht werden." +msgstr "Wandelt das oder die gewählten 2D-Objekte in einen 3D-Rotationskörper um, indem das oder die Objekte um eine Symmetrieachse gedreht werden." #: 10030000.xhp msgctxt "" @@ -926,7 +926,7 @@ "par_id3154258\n" "help.text" msgid "Applies a transparency gradient to the selected object. The transparency line represents a grayscale, with the black handle corresponding to 0% transparency and the white handle to 100% transparency." -msgstr "Legt interaktiv einen Transparenzverlauf für das gewählte Objekt fest. Die Transparenzlinie entspricht einer Graustufenskala, wobei Schwarz einem Wert von 0% Transparenz entspricht und Weiß einem Wert von 100% Transparenz." +msgstr "Legt interaktiv einen Transparenzverlauf für das gewählte Objekt fest. Die Transparenzlinie entspricht einer Graustufenskala, wobei Schwarz einem Wert von 0 % Transparenz entspricht und Weiß einem Wert von 100 % Transparenz." #: 10030000.xhp msgctxt "" @@ -1918,7 +1918,7 @@ "par_id3146963\n" "help.text" msgid "Draws a filled oval where you drag in the current document. Click where you want to draw the oval, and drag to the size you want. To draw a circle, hold down Shift while you drag." -msgstr "Zeichnet an der Stelle, an der Sie im aktuellen Dokument ziehen, eine gefüllte Ellipse. Klicken Sie dort, wo die Ellipse gezeichnet werden soll, und ziehen Sie sie bei gedrückter linker Maustaste auf die gewünschte Größe. Um einen Kreis zu zeichnen, halten Sie beim Ziehen die Umschalttaste gedrückt." +msgstr "Zeichnet an der Stelle, an der Sie im aktuellen Dokument ziehen, eine gefüllte Ellipse. Klicken Sie dort, wo die Ellipse gezeichnet werden soll, und ziehen Sie sie bei gedrückter linker Maustaste auf die gewünschte Größe auf. Um einen Kreis zu zeichnen, halten Sie beim Ziehen die Umschalttaste gedrückt." #: 10070000.xhp msgctxt "" @@ -1950,7 +1950,7 @@ "par_id3148725\n" "help.text" msgid "Draws a filled circle where you drag in the current document. Click where you want to draw the circle, and drag to the size you want. To draw an ellipse, hold down Shift while you drag." -msgstr "Ziehen Sie im Dokument, um einen gefüllten Kreis zu zeichnen. Klicken Sie, dann ziehen Sie bis zur gewünschten Größe. Um eine gefüllte Ellipse zu zeichnen, halten Sie beim Ziehen die Umschalttaste gedrückt." +msgstr "Ziehen Sie im Dokument, um einen gefüllten Kreis zu zeichnen. Klicken Sie, dann ziehen Sie ihn bis zur gewünschten Größe auf. Um eine gefüllte Ellipse zu zeichnen, halten Sie beim Ziehen die Umschalttaste gedrückt." #: 10070000.xhp msgctxt "" @@ -1982,7 +1982,7 @@ "par_id3149879\n" "help.text" msgid "Draws a filled shape that is defined by the arc of an oval and two radius lines in the current document. To draw an ellipse pie, drag an oval to the size you want, and then click to define the first radius line. Move your pointer to where you want to place the second radius line and click. You do not need to click on the oval. To draw a circle pie, hold down Shift while you drag." -msgstr "Ziehen Sie im Dokument, um einen gefüllten Ellipsensektor zu zeichnen. Klicken Sie, dann ziehen Sie bis zur gewünschten Größe. Klicken Sie zum Definieren der ersten Radiuslinie. Bewegen Sie den Mauszeiger dorthin, wo die zweite Radiuslinie sein soll und klicken Sie. Um einen Kreissektor zu zeichnen, halten Sie beim Ziehen die Umschalttaste gedrückt." +msgstr "Ziehen Sie im Dokument, um einen gefüllten Ellipsensektor zu zeichnen. Klicken Sie, dann ziehen Sie ihn bis zur gewünschten Größe auf. Klicken Sie zum Definieren der ersten Radiuslinie. Bewegen Sie den Mauszeiger dorthin, wo die zweite Radiuslinie sein soll und klicken Sie. Um einen Kreissektor zu zeichnen, halten Sie beim Ziehen die Umschalttaste gedrückt." #: 10070000.xhp msgctxt "" @@ -2014,7 +2014,7 @@ "par_id3155369\n" "help.text" msgid "Draws a filled shape that is defined by the arc of a circle and two radius lines in the current document. To draw a circle pie, drag a circle to the size you want, and then click to define the first radius line. Move your pointer to where you want to place the second radius line and click. You do not need to click on the circle. To draw an ellipse pie, hold down Shift while you drag." -msgstr "Ziehen Sie im Dokument, um einen gefüllten Kreissektor zu zeichnen. Klicken Sie, dann ziehen Sie bis zur gewünschten Größe. Klicken Sie zum Definieren der ersten Radiuslinie. Bewegen Sie den Mauszeiger dorthin, wo die zweite Radiuslinie sein soll und klicken Sie. Um einen Ellipsensektor zu zeichnen, halten Sie beim Ziehen die Umschalttaste gedrückt." +msgstr "Ziehen Sie im Dokument, um einen gefüllten Kreissektor zu zeichnen. Klicken Sie, dann ziehen Sie ihn bis zur gewünschten Größe auf. Klicken Sie zum Definieren der ersten Radiuslinie. Bewegen Sie den Mauszeiger dorthin, wo die zweite Radiuslinie sein soll und klicken Sie. Um einen Ellipsensektor zu zeichnen, halten Sie beim Ziehen die Umschalttaste gedrückt." #: 10070000.xhp msgctxt "" @@ -2078,7 +2078,7 @@ "par_id3159180\n" "help.text" msgid "Draws a filled shape that is defined by the arc of a circle and a diameter line in the current document. To draw a circle segment, drag a circle to the size you want, and then click to define the starting point of the diameter line. Move your pointer to where you want to place the endpoint of the diameter line and click. You do not need to click on the circle. To draw an ellipse segment, hold down Shift while you drag." -msgstr "Zeichnet eine gefüllte Form mit einem Bogen auf Basis einer Kreises und einer Schnittlinie. Ziehen Sie einen Kreis der gewünschten Größe auf, dann klicken Sie, um den Anfang der Schnittlinie festzulegen. Zeigen Sie auf den Endpunkt der Schnittlinie und klicken Sie. Bewegen Sie den Mauszeiger dorthin, wo die zweite Radiuslinie sein soll und klicken Sie. Um eine gefüllte Form mit einem Bogen auf Basis einer Ellipse zu zeichnen, halten Sie beim Ziehen die Umschalttaste gedrückt." +msgstr "Zeichnet eine gefüllte Form mit einem Bogen auf Basis eines Kreises und einer Schnittlinie. Ziehen Sie einen Kreis der gewünschten Größe auf, dann klicken Sie, um den Anfang der Schnittlinie festzulegen. Zeigen Sie auf den Endpunkt der Schnittlinie und klicken Sie. Bewegen Sie den Mauszeiger dorthin, wo die zweite Radiuslinie sein soll und klicken Sie. Um eine gefüllte Form mit einem Bogen auf Basis einer Ellipse zu zeichnen, halten Sie beim Ziehen die Umschalttaste gedrückt." #: 10070000.xhp msgctxt "" @@ -2270,7 +2270,7 @@ "par_id3154836\n" "help.text" msgid "Draws an empty shape that is defined by the arc of a circle and a diameter line in the current document. To draw a circle segment, drag a circle to the size you want, and then click to define the starting point of the diameter line. Move your pointer to where you want to place the endpoint of the diameter line and click. You do not need to click on the circle. To draw a segment that is based on an ellipse, hold down Shift while you drag." -msgstr "Zeichnet eine ungefüllte Form mit einem Bogen auf Basis einer Kreises und einer Schnittlinie. Klicken Sie, dann ziehen Sie sie bis zur gewünschten Größe auf. Klicken Sie zum Definieren des Startpunktes der Durchmesserlinie. Bewegen Sie den Mauszeiger dorthin, wo der Endpunkt der Durchmesserlinie sein soll und klicken Sie erneut. Um ein Ellipsensegment zu zeichnen, halten Sie beim Ziehen die Umschalttaste gedrückt." +msgstr "Zeichnet eine ungefüllte Form mit einem Bogen auf Basis eines Kreises und einer Schnittlinie. Klicken Sie, dann ziehen Sie sie bis zur gewünschten Größe auf. Klicken Sie zum Definieren des Startpunktes der Durchmesserlinie. Bewegen Sie den Mauszeiger dorthin, wo der Endpunkt der Durchmesserlinie sein soll und klicken Sie erneut. Um ein Ellipsensegment zu zeichnen, halten Sie beim Ziehen die Umschalttaste gedrückt." #: 10070000.xhp msgctxt "" @@ -4366,7 +4366,7 @@ "par_id3148986\n" "help.text" msgid "In %PRODUCTNAME Draw, a dimension line is always inserted on the layer called Dimension Lines. If you set that layer to invisible, you will not see any dimension line in your drawing." -msgstr "In %PRODUCTNAME-Draw wird eine Maßlinie immer in der Ebene Maßlinien eingefügt. Wenn Sie die Sichtbarkeit dieser Ebene aufheben, wird in der Zeichnung keine Maßlinie angezeigt." +msgstr "In %PRODUCTNAME Draw wird eine Maßlinie immer in der Ebene Maßlinien eingefügt. Wenn Sie die Sichtbarkeit dieser Ebene aufheben, wird in der Zeichnung keine Maßlinie angezeigt." #: 10120000.xhp msgctxt "" @@ -4934,7 +4934,7 @@ "bm_id3152596\n" "help.text" msgid "guides; show snap lines iconshowing; guides" -msgstr "Hilfslinien; anzeigenAnzeigen; Hilfslinien" +msgstr "Hilfslinien; Fangliniensymbol anzeigenAnzeigen; Hilfslinien" #: 13050000.xhp msgctxt "" @@ -5046,7 +5046,7 @@ "par_id3151074\n" "help.text" msgid "If this icon on the Options bar is activated, objects are shown with their attributes, but with 50% transparency, while you move or draw them. If this icon is not activated, only a contour is shown while drawing, and the object is shown with all attributes when you release the mouse button." -msgstr "Wenn dieses Symbol auf der Symbolleiste Optionen aktiviert ist, werden Objekte beim Aufziehen mit ihren Attributen aber 50% transparent angezeigt. Wenn dieses Symbol nicht aktiviert ist, wird während des Zeichnens nur eine Kontur angezeigt und das Objekt wird erst dann mit allen Attributen angezeigt, wenn Sie die Maustaste loslassen." +msgstr "Wenn dieses Symbol auf der Symbolleiste Optionen aktiviert ist, werden Objekte beim Aufziehen mit ihren Attributen, aber mit 50 % Transparenz angezeigt. Wenn dieses Symbol nicht aktiviert ist, wird während des Zeichnens nur eine Kontur angezeigt und das Objekt wird erst dann mit allen Attributen angezeigt, wenn Sie die Maustaste loslassen." #: 13090000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/simpress/guide.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/simpress/guide.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/simpress/guide.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/simpress/guide.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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" -"PO-Revision-Date: 2017-10-31 13:47+0000\n" +"PO-Revision-Date: 2017-12-07 11:22+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1509457659.000000\n" +"X-POOTLE-MTIME: 1512645776.000000\n" #: 3d_create.xhp msgctxt "" @@ -222,7 +222,7 @@ "par_id3154260\n" "help.text" msgid "A 3D rotation object is created by rotating the selected object around its vertical axis." -msgstr "Ein 3D-Rotationskörper entsteht durch Rotation des gewählten Objekts um seine vertikale Achse." +msgstr "Ein 3D-Rotationskörper entsteht durch Drehung des gewählten Objekts um seine vertikale Achse." #: 3d_create.xhp msgctxt "" @@ -646,7 +646,7 @@ "bm_id3153820\n" "help.text" msgid "cross-fading; slidesslide transitions; applying effectsanimated slide transitionstransition effectsdeleting; slide transition effectseffects;animated slide transitions" -msgstr "Übergänge; FolienFolienübergänge; Effekte zuweisenanimierte FolienübergängeÜbergangseffektelöschen; FolienübergangseffekteEffekte; animierte Folienübergänge" +msgstr "Überblenden; FolienFolienübergänge; Effekte zuweisenanimierte FolienübergängeÜbergangseffekteLöschen; FolienübergangseffekteEffekte; animierte Folienübergänge" #: animated_slidechange.xhp msgctxt "" @@ -830,7 +830,7 @@ "par_id3143233\n" "help.text" msgid "Choose View - Slide Sorter, select one or more slides, and then drag the slides to another location. To select multiple slides, hold down shift and click on the slides. To create a copy of a selected slide, hold down Ctrl while you drag. The mouse pointer changes to a plus sign. You can also drag a copy of a slide into another open $[officename] Impress document." -msgstr "Wählen Sie Ansicht- Foliensortierung, wählen Sie eine oder mehrere Folien aus, dann ziehen Sie sie an eine andere Position. Um mehrere Folien auszuwählen, klicken Sie sie mit gedrückter Umschalttaste an. Um eine Kopie der ausgewählten Folien zu erzeugen, halten Sie beim Ziehen die Strg-Taste gedrückt. Der Mauszeiger wechselt zu einem Pluszeichen. Sie können auch eine Kopie einer Folie in ein anderes geöffnetes $[officename] Impress-Dokument ziehen." +msgstr "Wählen Sie Ansicht - Foliensortierung, wählen Sie eine oder mehrere Folien aus, dann ziehen Sie sie an eine andere Position. Um mehrere Folien auszuwählen, klicken Sie sie mit gedrückter Umschalttaste an. Um eine Kopie der ausgewählten Folien zu erzeugen, halten Sie beim Ziehen die Strg-Taste gedrückt. Der Mauszeiger wechselt zu einem Pluszeichen. Sie können auch eine Kopie einer Folie in ein anderes geöffnetes $[officename] Impress-Dokument ziehen." #: arrange_slides.xhp msgctxt "" @@ -2102,7 +2102,7 @@ "par_id3155930\n" "help.text" msgid "Use the arrow keys to navigate to the slide that you want to select, and then press the Spacebar. To add to the selection, use the arrow keys to navigate to the slide(s) that you want to add, and press Spacebar again. To deselect a slide, navigate to the slide, and then press Spacebar." -msgstr "Mit den Pfeiltasten wählen Sie eine Folie aus. Dann drücken Sie die Leertaste. Um eine weitere Folie in die Auswahl aufzunehmen, nutzen Sie die Pfeiltasten, um sie zu wählen, dann drücken Sie die Leertaste. Um eine Folie aus der Auswahl zu entfernen, wählen Sie sie mit den Pfeiltasten, dann drücken Sie die Leertaste." +msgstr "Mit den Pfeiltasten wählen Sie eine Folie aus. Dann drücken Sie die Leertaste. Um eine oder mehrere weitere Folien in die Auswahl aufzunehmen, nutzen Sie die Pfeiltasten, um sie zu wählen, dann drücken Sie die Leertaste. Um eine Folie aus der Auswahl zu entfernen, wählen Sie sie mit den Pfeiltasten, dann drücken Sie die Leertaste." #: keyboard.xhp msgctxt "" @@ -2174,7 +2174,7 @@ "bm_id3150752\n" "help.text" msgid "objects; moving in layerslayers; moving objectsmoving; between layers" -msgstr "Objekt; in Ebene verschiebenEbene; Objekt verschiebenVerschieben; zwischen Ebenen" +msgstr "Objekte; in Ebenen verschiebenEbenen; Objekte verschiebenVerschieben; zwischen Ebenen" #: layer_move.xhp msgctxt "" @@ -3310,7 +3310,7 @@ "bm_id3152596\n" "help.text" msgid "slide designsslide masters; designingbackgrounds; slidesslides; backgroundsmaster pages, see slide masters" -msgstr "FolienvorlagenFolienmasterHintergründe; FolienMasterseiten, siehe FolienmasterFolien; Hintergründe" +msgstr "FolienvorlagenFolienmaster, entwerfenHintergründe; FolienFolien; HintergründeMasterseiten, siehe Folienmaster" #: masterpage.xhp msgctxt "" @@ -4206,7 +4206,7 @@ "bm_id3155067\n" "help.text" msgid "fitting to pages; individual slidespages; fitting to printed pagesprinting; fitting to paper" -msgstr "An Seitengröße anpassen; einzelne FolienSeite; an Druckseite anpassenDrucken; an Papierseite anpassen" +msgstr "An Seiten anpassen; einzelne FolienSeiten; an gedruckte Seiten anpassenDrucken; an Papierformat anpassen" #: print_tofit.xhp msgctxt "" @@ -4630,7 +4630,7 @@ "bm_id3154492\n" "help.text" msgid "objects; selectingselecting; hidden objectscovered objectsunderlying objects" -msgstr "Objekt; auswählenAuswählen; verdecktes ObjektVerdeckte ObjekteDarunter liegende Objekte" +msgstr "Objekte; auswählenAuswählen; verdeckte ObjekteVerdeckte ObjekteDarunter liegende Objekte" #: select_object.xhp msgctxt "" @@ -5030,7 +5030,7 @@ "par_id0916200804163046\n" "help.text" msgid "If currently no cell is selected, all columns will be selected. If currently cells are selected, all columns containing the selected cells will be selected." -msgstr "Falls aktuell keine Zelle ausgewählt, werden alle Spalten ausgewählt. Sofern aktuell Zellen ausgewählt sind, werden alle Spalten ausgewählt, die die ausgewählten Zellen enthalten." +msgstr "Falls aktuell keine Zelle ausgewählt ist, werden alle Spalten ausgewählt. Sofern aktuell Zellen ausgewählt sind, werden alle Spalten ausgewählt, die die ausgewählten Zellen enthalten." #: table_insert.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/simpress.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/simpress.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/simpress.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/simpress.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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" -"PO-Revision-Date: 2017-10-31 13:26+0000\n" +"PO-Revision-Date: 2017-12-09 17:56+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1509456389.000000\n" +"X-POOTLE-MTIME: 1512842172.000000\n" #: main0000.xhp msgctxt "" @@ -1174,7 +1174,7 @@ "par_idN106C0\n" "help.text" msgid "Draws a filled rectangle where you drag in the current document. Click where you want to place a corner of the rectangle, and drag to the size you want. To draw a square, hold down Shift while you drag." -msgstr "Zeichnet an der Stelle, an der Sie im aktuellen Dokument ziehen, ein gefülltes Rechteck. Klicken Sie dorthin, wo eine Ecke des Rechtecks platziert werden soll, und ziehen Sie es auf die gewünschte Größe. Um ein Quadrat zu zeichnen, halten Sie beim Ziehen die Umschalttaste gedrückt." +msgstr "Zeichnet an der Stelle, an der Sie im aktuellen Dokument ziehen, ein gefülltes Rechteck. Klicken Sie dorthin, wo eine Ecke des Rechtecks platziert werden soll, und ziehen Sie es auf die gewünschte Größe auf. Um ein Quadrat zu zeichnen, halten Sie beim Ziehen die Umschalttaste gedrückt." #: main0210.xhp msgctxt "" @@ -1190,7 +1190,7 @@ "par_idN106DD\n" "help.text" msgid "Draws a filled oval where you drag in the current document. Click where you want to draw the oval, and drag to the size you want. To draw a circle, hold down Shift while you drag." -msgstr "Zeichnet an der Stelle, an der Sie im aktuellen Dokument ziehen, eine gefüllte Ellipse. Klicken Sie dort, wo die Ellipse gezeichnet werden soll, und ziehen Sie sie bei gedrückter linker Maustaste auf die gewünschte Größe. Um einen Kreis zu zeichnen, halten Sie beim Ziehen die Umschalttaste gedrückt." +msgstr "Zeichnet an der Stelle, an der Sie im aktuellen Dokument ziehen, eine gefüllte Ellipse. Klicken Sie dort, wo die Ellipse gezeichnet werden soll, und ziehen Sie sie bei gedrückter linker Maustaste auf die gewünschte Größe auf. Um einen Kreis zu zeichnen, halten Sie beim Ziehen die Umschalttaste gedrückt." #: main0210.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/smath/00.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/smath/00.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/smath/00.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/smath/00.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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" -"PO-Revision-Date: 2017-10-15 08:39+0000\n" +"PO-Revision-Date: 2017-11-16 17:13+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1508056787.000000\n" +"X-POOTLE-MTIME: 1510852429.000000\n" #: 00000004.xhp msgctxt "" @@ -118,7 +118,7 @@ "par_id3147298\n" "help.text" msgid "Zoom 100%" -msgstr "Zoom 100%" +msgstr "Zoom 100 %" #: 00000004.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/smath/01.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/smath/01.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/smath/01.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/smath/01.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-05-12 14:35+0200\n" -"PO-Revision-Date: 2017-10-31 13:48+0000\n" +"PO-Revision-Date: 2017-12-09 17:56+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1509457693.000000\n" +"X-POOTLE-MTIME: 1512842198.000000\n" #: 02080000.xhp msgctxt "" @@ -190,7 +190,7 @@ "par_id3154490\n" "help.text" msgid "Increases the display scale of the formula by 25%. The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the context menu. The context menu in the work area also contains zoom commands." -msgstr "Der Maßstab wird um 25% vergrößert. Der Maßstab wird in der Statusleiste angezeigt. Im dortigen Kontextmenü können Sie den Maßstab ebenfalls ändern. Auch das Kontextmenü im Arbeitsbereich stellt Ihnen eine Auswahl zur Verfügung." +msgstr "Der Maßstab wird um 25 % vergrößert. Der Maßstab wird in der Statusleiste angezeigt. Im dortigen Kontextmenü können Sie den Maßstab ebenfalls ändern. Auch das Kontextmenü im Arbeitsbereich stellt Ihnen eine Auswahl zur Verfügung." #: 03050000.xhp msgctxt "" @@ -222,7 +222,7 @@ "par_id3150249\n" "help.text" msgid "Decreases the display scale of formulas by 25%. The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the context menu. The context menu in the work area also contains zoom commands." -msgstr "Der Maßstab wird um 25% verkleinert. Der Maßstab wird in der Statusleiste angezeigt. Im dortigen Kontextmenü können Sie den Maßstab ebenfalls ändern. Auch das Kontextmenü im Arbeitsbereich stellt Ihnen eine Auswahl zur Verfügung." +msgstr "Der Maßstab wird um 25 % verkleinert. Der Maßstab wird in der Statusleiste angezeigt. Im dortigen Kontextmenü können Sie den Maßstab ebenfalls ändern. Auch das Kontextmenü im Arbeitsbereich stellt Ihnen eine Auswahl zur Verfügung." #: 03060000.xhp msgctxt "" @@ -398,7 +398,7 @@ "bm_id3150342\n" "help.text" msgid "unary operatorsbinary operatorsoperators; unary and binaryplus signsplus/minus signsminus/plus signsmultiplication signsNOT operatorAND operatorlogical operatorsBoolean operatorsOR operatorconcatenating math symbolsaddition signssubtraction signsminus signsslash division signbackslash division signindexes; adding to formulaspowersdivision signsuser-defined operators;unary and binary" -msgstr "Unärer OperatorBinärer OperatorOperator; unär und binärPluszeichenPlus/Minus-ZeichenMinus/Plus-ZeichenMultiplikationszeichenNOT (Operator)AND (Operator)Logische OperatorenBoolesche OperatorenOR (Operator)Verketten von mathematischen SymbolenAdditionszeichenSubtraktionszeichenMinuszeichenSchrägstrich diagonal von links unten nach rechts obenSchrägstrich diagonal von rechts unten nach links obenIndexe; Formeln anfügenPotenzierenDivisionszeichenBenutzerdefinierte Operatoren; unär und binär" +msgstr "Unäre OperatorenBinäre OperatorenOperatoren; unäre und binärePluszeichenPlus-/Minus-ZeichenMinus-/Plus-ZeichenMultiplikationszeichenNOT (Operator)AND (Operator)Logische OperatorenBoolesche OperatorenOR (Operator)Verketten von mathematischen SymbolenAdditionszeichenSubtraktionszeichenMinuszeichenSchrägstrich diagonal von links unten nach rechts obenSchrägstrich diagonal von rechts unten nach links obenIndexe; Formeln anfügenPotenzierenDivisionszeichenBenutzerdefinierte Operatoren; unäre und binäre" #: 03090100.xhp msgctxt "" @@ -1710,7 +1710,7 @@ "bm_id3153150\n" "help.text" msgid "operators; generalupper limitslimits; in %PRODUCTNAME Mathproductcoproductlower limitscurve integralsuser-defined operators; generalintegrals; signssummation" -msgstr "Operator; allgemeinObere GrenzenGrenzen; in %PRODUCTNAME MathProduktKoproduktUntere GrenzenKurvenintegraleBenutzerdefinierte Operatoren; allgemeinIntegrale; VorzeichenSummierung" +msgstr "Operatoren; allgemeinObere GrenzenGrenzen; in %PRODUCTNAME MathProduktKoproduktUntere GrenzenKurvenintegraleBenutzerdefinierte Operatoren; allgemeinIntegrale; VorzeichenSummierung" #: 03090300.xhp msgctxt "" @@ -3414,7 +3414,7 @@ "bm_id3154011\n" "help.text" msgid "attributes; in %PRODUCTNAME Math formulas; attributes in accents; in %PRODUCTNAME Math attributes; accents vector arrows as attributes tilde as attribute circumflex attribute bold attribute italic attribute in %PRODUCTNAME Math resizing;fonts scaling;fonts attributes; changing fonts changing; fonts attributes; colored characters colored characters attributes; changing defaults circle attribute double dot attribute dot attribute line through attribute line above attribute reversed circumflex attribute overline attribute wide vector arrow attribute wide tilde attribute wide circumflex attribute underline attribute triple dot attribute transparent character as attribute" -msgstr "Attribute; in %PRODUCTNAME MathFormeln; Attribute inAkzente; in %PRODUCTNAME MathAttribute; AkzenteVektorpfeile als AttributeTilde als AttributAttribut; ZirkumflexAttribut; FettAttribut; Kursiv in %PRODUCTNAME Mathverändern; Schriftgrößeskalieren; SchriftartenAttribute; Schriftart ändernverändern; SchriftartAttribute; farbige Zeichenfarbige ZeichenAttribute; Vorgaben ändernAttribut; KreisAttribut; Doppelter PunktAttribut; PunktAttribut; DurchstreichenAttribut; ÜberstrichAttribut; Umgekehrter ZirkumflexAttribut; ÜberstrichAttribut; Breiter VektorpfeilAttribut; Breite TildeAttribut; Breiter ZirkumflexAttribut; ÜberstrichAttribut; Dreifacher PunktTransparente Zeichen als Attribut" +msgstr "Attribute; in %PRODUCTNAME MathFormeln; Attribute inAkzente; in %PRODUCTNAME MathAttribute; AkzenteVektorpfeile als AttributeTilde als AttributAttribut; ZirkumflexAttribut; FettAttribut; Kursiv in %PRODUCTNAME MathÄndern; SchriftgrößeSkalieren; SchriftartenAttribute; Schriftart ändernÄndern; SchriftartAttribute; farbige ZeichenFarbige ZeichenAttribute; Vorgaben ändernAttribut; KreisAttribut; Doppelter PunktAttribut; PunktAttribut; DurchstreichenAttribut; ÜberstrichAttribut; Umgekehrter ZirkumflexAttribut; ÜberstrichAttribut; Breiter VektorpfeilAttribut; Breite TildeAttribut; Breiter ZirkumflexAttribut; ÜberstrichAttribut; Dreifacher PunktTransparente Zeichen als Attribut" #: 03090600.xhp msgctxt "" @@ -3430,7 +3430,7 @@ "par_id3145802\n" "help.text" msgid "You can choose from various attributes for %PRODUCTNAME Math formulas. Some attributes are displayed in the lower part of the Elements pane. These attributes are also listed in the context menu of the Commands window. All attributes not contained in the Elements pane or in the context menu must be typed manually in the Commands window." -msgstr "Sie können Ihrer %PRODUCTNAME Math-Formel verschiedene Attribute zuweisen. Einige Attribute werden im unteren Bereich der Seitenleiste angezeigt. Diese Attribute werden auch im Kontextmenü des Fensters Kommandos angezeigt. Attributierungen, die nicht in der Seitenleiste oder dem Kontextmenü entahlten sind, müssen direkt in das Fenster Kommandos eingegeben werden." +msgstr "Sie können Ihrer %PRODUCTNAME Math-Formel verschiedene Attribute zuweisen. Einige Attribute werden im unteren Bereich der Seitenleiste angezeigt. Diese Attribute werden auch im Kontextmenü des Fensters Kommandos angezeigt. Attributierungen, die nicht in der Seitenleiste oder dem Kontextmenü enthalten sind, müssen direkt in das Fenster Kommandos eingegeben werden." #: 03090600.xhp msgctxt "" @@ -4862,7 +4862,7 @@ "par_id3145263\n" "help.text" msgid "Use this icon to insert a cardinal number. You can achieve the same result by entering aleph in the Commands window." -msgstr "Sie das Symbol für Karinalzahl ein. Sie können auch aleph direkt in das Fenster Kommandos eingeben." +msgstr "Fügen Sie mit diesem Symbol eine Karinalzahl ein. Sie können auch aleph direkt in das Fenster Kommandos eingeben." #: 03090800.xhp msgctxt "" @@ -5270,7 +5270,7 @@ "par_id3150300\n" "help.text" msgid "Here is another example of creating symbols with indexes in $[officename] Math. You can copy this example to the Commands window using the clipboard and use it in your own formula." -msgstr "Hier finden Sie ein zweites Beispiel dafür, wie Sie mit $[officename] Math Symbole mit Indizes erstellen. Falls Sie die Beispielsyntax für Ihre Arbeit übernehmen wollen, können Sie sie über die Zwischenablage in das Fenster Kommandos kopieren." +msgstr "Hier finden Sie ein zweites Beispiel dafür, wie Sie mit $[officename] Math Symbole mit Indizes erstellen. Falls Sie die Beispielsyntax für Ihre Arbeit übernehmen wollen, können Sie sie über die Zwischenablage in das Fenster Kommandos kopieren." #: 03090902.xhp msgctxt "" @@ -5390,7 +5390,7 @@ "par_id3150344\n" "help.text" msgid "Here is an example of how to create a matrix with $[officename] Math. If you want to use the example in your own formula, you can copy it to the Commands window using the clipboard." -msgstr "Hier finden Sie ein Beispiel dafür, wie Sie mit $[officename] Math eine Matrix erstellen. Falls Sie die Beispielsyntax für Ihre Arbeit übernehmen wollen, können Sie sie über die Zwischenablage in das Fenster Kommandos kopieren." +msgstr "Hier finden Sie ein Beispiel dafür, wie Sie mit $[officename] Math eine Matrix erstellen. Falls Sie die Beispielsyntax für Ihre Arbeit übernehmen wollen, können Sie sie über die Zwischenablage in das Fenster Kommandos kopieren." #: 03090905.xhp msgctxt "" @@ -5422,7 +5422,7 @@ "par_id3150342\n" "help.text" msgid "Here is an example of how to create a bold font matrix in $[officename] Math. You can copy this example to the Commands window using the clipboard and use it in your own formula." -msgstr "Hier finden Sie ein Beispiel dafür, wie Sie mit $[officename] Math eine Matrix in Fettschrift erstellen. Falls Sie die Beispielsyntax für Ihre Arbeit übernehmen wollen, können Sie sie über die Zwischenablage in das Fenster Kommandos kopieren." +msgstr "Hier finden Sie ein Beispiel dafür, wie Sie mit $[officename] Math eine Matrix in Fettschrift erstellen. Falls Sie die Beispielsyntax für Ihre Arbeit übernehmen wollen, können Sie sie über die Zwischenablage in das Fenster Kommandos kopieren." #: 03090906.xhp msgctxt "" @@ -5462,7 +5462,7 @@ "par_id3148489\n" "help.text" msgid "Here is an example of how to create functions with $[officename] Math. If you want to use the example in your own formula, copy it to the Commands window using the clipboard." -msgstr "Hier finden Sie ein Beispiel dafür, wie Sie mit $[officename] Math Funktionen erstellen. Falls Sie die Beispielsyntax für Ihre Arbeit übernehmen wollen, können Sie sie über die Zwischenablage in das Fenster Kommandos kopieren." +msgstr "Hier finden Sie ein Beispiel dafür, wie Sie mit $[officename] Math Funktionen erstellen. Falls Sie die Beispielsyntax für Ihre Arbeit übernehmen wollen, können Sie sie über die Zwischenablage in das Fenster Kommandos kopieren." #: 03090907.xhp msgctxt "" @@ -5574,7 +5574,7 @@ "par_id3150301\n" "help.text" msgid "This section contains an example of how you can use different attributes in a formula in $[officename] Math." -msgstr "Hier finden Sie ein Beispiel dafür, wie Sie mit $[officename] Math unterschiedliche Attribute in einer Formel verwenden." +msgstr "Hier finden Sie ein Beispiel dafür, wie Sie mit $[officename] Math unterschiedliche Attribute in einer Formel verwenden." #: 03090910.xhp msgctxt "" @@ -5702,7 +5702,7 @@ "par_id3153002\n" "help.text" msgid "Since \"left\" and \"right\" ensure unique assignment of the brackets, every single bracket can be used as an argument for these two commands, even placing right brackets on the left side, or left brackets on the right. Instead of a bracket you can use the \"none\" qualifier, which means that there is no bracket shown and that there is no space reserved for a bracket. Using this, you can create the following expressions:" -msgstr "Da \"left\" und \"right\" eine eindeutige Zuordnung der Klammern zueinander gewährleisten, kann als Argument für diese beiden jede einzelne Klammer verwendet werden, auch die rechten Klammern auf der linken Seite und umgekehrt. Statt einer Klammer darf dort auch \"none\" stehen, was bedeutet, dass an der Stelle keine Klammer dargestellt wird und auch kein Raum für eine freigehalten wird. Damit lassen sich dann z.B folgende Ausdrücke bilden:" +msgstr "Da \"left\" und \"right\" eine eindeutige Zuordnung der Klammern zueinander gewährleisten, kann als Argument für diese beiden jede einzelne Klammer verwendet werden, auch die rechten Klammern auf der linken Seite und umgekehrt. Statt einer Klammer darf dort auch \"none\" stehen, was bedeutet, dass an der Stelle keine Klammer dargestellt wird und auch kein Raum für eine freigehalten wird. Damit lassen sich dann beispielsweise folgende Ausdrücke bilden:" #: 03091100.xhp msgctxt "" @@ -5846,7 +5846,7 @@ "par_id3147514\n" "help.text" msgid "In this way, intervals like the one above can be built in $[officename] Math without any problems: \\[2\", \"3\\) or \"\\]2\", \"3\\[ (Attention: These quotation marks are part of the entry.)" -msgstr "Damit lassen sich Intervalle wie das obige in $[officename] Math problemlos aufbauen: \\[2\", \"3\\) oder \"\\]2\", \"3\\[ (Achtung: Diese Anführungszeichen gehören zur Eingabe.)" +msgstr "Damit lassen sich Intervalle wie das obige in $[officename] Math problemlos aufbauen: \\[2\", \"3\\) oder \"\\]2\", \"3\\[ (Achtung: Diese Anführungszeichen gehören zur Eingabe.)" #: 03091100.xhp msgctxt "" @@ -5854,7 +5854,7 @@ "par_id3153532\n" "help.text" msgid "Please note that the quotation marks must be entered and can be obtained with Shift+2 and not with typographical quotation marks. Generally, punctuation marks (like the comma in this case) are set as text. Although it is also possible to type \"\\[2,~3\\)\" the above option is preferable. In the previous example, \"fixed size\" always describes a bracket size dependent on the font size used." -msgstr "Achten Sie darauf, dass Sie die Anführungsstriche verwenden, die Sie mit (Umschalt)(2) erreichen und nicht die typographischen. Grundsätzlich sollten Interpunktionszeichen (wie hier das Komma) immer als Text gesetzt werden, auch Leerzeichen machen sich dort oft ganz gut. Es ist zwar auch möglich \"\\[2,~3\\)\" zu verwenden, aber die obige Möglichkeit ist vorzuziehen. Unter \"feste Größe\" ist oben immer eine nur von der verwendeten Schriftgröße abhängige Größe der Klammern zu verstehen." +msgstr "Achten Sie darauf, dass Sie die Anführungsstriche verwenden, die Sie mit Umschalt+2 erreichen und nicht die typografischen. Grundsätzlich sollten Interpunktionszeichen (wie hier das Komma) immer als Text gesetzt werden, auch Leerzeichen machen sich dort oft ganz gut. Es ist zwar auch möglich \"\\[2,~3\\)\" zu verwenden, aber die obige Möglichkeit ist vorzuziehen. Unter \"feste Größe\" ist oben immer eine nur von der verwendeten Schriftgröße abhängige Größe der Klammern zu verstehen." #: 03091100.xhp msgctxt "" @@ -5950,7 +5950,7 @@ "par_id3147587\n" "help.text" msgid "Examples (with a base size of 12 and 50% for indexes):" -msgstr "Beispiele (mit Basisgröße 12 und 50% für Indizes):" +msgstr "Beispiele (mit Basisgröße 12 und 50 % für Indizes):" #: 03091100.xhp msgctxt "" @@ -6038,7 +6038,7 @@ "par_id3153354\n" "help.text" msgid "Note that all n here have different sizes. The size 1.333 results from 8/6, the desired size divided by the default index size 6. (Index size 50% with a base size of 12)" -msgstr "Beachten Sie, dass alle n hier unterschiedliche Größe haben. Die Größe 1,333 ergibt sich aus 8/6, der gewünschten Größe durch die Standard-Indexgröße 6. (Indexgröße 50% bei einer Basisgröße 12)" +msgstr "Beachten Sie, dass alle n hier unterschiedliche Größe haben. Die Größe 1,333 ergibt sich aus 8/6, der gewünschten Größe durch die Standard-Indexgröße 6. (Indexgröße 50 % bei einer Basisgröße 12)" #: 03091200.xhp msgctxt "" @@ -9902,7 +9902,7 @@ "bm_id3184255\n" "help.text" msgid "formatting; reference list (Math)" -msgstr "Formatierungen; Liste mit (Math)" +msgstr "Formatierung; Referenzliste (Math)" #: 03091509.xhp msgctxt "" @@ -10310,7 +10310,7 @@ "par_id3149735\n" "help.text" msgid "Inserts the symbol for a Nabla vector operator. Command for the Commands window: nabla" -msgstr "Fügt das Symbol Nabla ein. Sie können auch nabla direkt in das Fenster Kommandos eingeben." +msgstr "Fügt das Symbol für einen Nabla-Vektoroperator ein. Sie können auch nabla direkt in das Fenster Kommandos eingeben." #: 03091600.xhp msgctxt "" @@ -10334,7 +10334,7 @@ "par_id3156346\n" "help.text" msgid "Inserts the symbol for an Existence quantor. Command for the Commands window: exists" -msgstr "Fügt das Symbol Existenzquantor ein. Sie können auch exists direkt in das Fenster Kommandos eingeben." +msgstr "Fügt das Symbol für einen Existenzquantor ein. Sie können auch exists direkt in das Fenster Kommandos eingeben." #: 03091600.xhp msgctxt "" @@ -10382,7 +10382,7 @@ "par_id3150478\n" "help.text" msgid "Inserts the symbol for a universal quantifier \"for all\". Command for the Commands window: forall" -msgstr "Fügt das Symbol Allquantor ein. Sie können auch direkt forall in das Fenster Kommandos eingeben." +msgstr "Fügt das Symbol für einen Allquantor \"für alle\" ein. Sie können auch direkt forall in das Fenster Kommandos eingeben." #: 03091600.xhp msgctxt "" @@ -10406,7 +10406,7 @@ "par_id3159264\n" "help.text" msgid "Inserts the symbol for the h-bar constant. Command for the Commands window: hbar" -msgstr "Fügt das Symbol h quer ein. Sie können auch hbar direkt in das Fenster Kommandos eingeben." +msgstr "Fügt das Symbol für die Planck'sche Konstante h quer ein. Sie können auch hbar direkt in das Fenster Kommandos eingeben." #: 03091600.xhp msgctxt "" @@ -10478,7 +10478,7 @@ "par_id3147036\n" "help.text" msgid "Inserts the symbol for the imaginary part of a complex number. Command for the Commands window: im" -msgstr "Fügt das Symbol für den Imaginärteil einer komplexen Zahl ein. Die können auch im direkt in das Fenster Kommandos eingeben." +msgstr "Fügt das Symbol für den Imaginärteil einer komplexen Zahl ein. Sie können auch im direkt in das Fenster Kommandos eingeben." #: 03091600.xhp msgctxt "" @@ -10502,7 +10502,7 @@ "par_id3155435\n" "help.text" msgid "This icon inserts a Weierstrass p-function symbol. Command for the Commands window: wp" -msgstr "Fügt das Weierstraß p ein. Sie können auch wp direkt in das Fenster Kommandos eingeben." +msgstr "Fügt das Symbol für die Weierstraß p-Funktion ein. Sie können auch wp direkt in das Fenster Kommandos eingeben." #: 03091600.xhp msgctxt "" @@ -10918,7 +10918,7 @@ "par_id3155900\n" "help.text" msgid "You can specify the font to be used for sans font formatting." -msgstr "Wählen Sie hier die Schriftart für die serifelose Formatierung sans." +msgstr "Wählen Sie hier die Schriftart für die serifenlose Formatierung sans." #: 05010000.xhp msgctxt "" @@ -11126,7 +11126,7 @@ "par_id3153005\n" "help.text" msgid "To permanently change the default size (12 pt) used in $[officename] Math, you must first set the size (for example, 11 pt) and then click the Default button." -msgstr "Um die in $[officename] Math verwendete Standardgröße (12 pt) dauerhaft zu verändern, müssen Sie die neue Größe erst im Feld Basisgröße eingeben und anschließend auf die Schaltfläche Standard klicken." +msgstr "Um die in $[officename] Math verwendete Standardgröße (12 pt) dauerhaft zu ändern, müssen Sie die neue Größe erst im Feld Basisgröße eingeben und anschließend auf die Schaltfläche Standard klicken." #: 05020000.xhp msgctxt "" @@ -12038,7 +12038,7 @@ "bm_id3145799\n" "help.text" msgid "symbols; entering in %PRODUCTNAME Math %PRODUCTNAME Math; entering symbols in catalog for mathematical symbols mathematical symbols;catalog Greek symbols in formulas formulas; entering symbols in" -msgstr "Symbole; in %PRODUCTNAME Math eingeben%PRODUCTNAME Math; Symbole eingeben inKatalog für mathematische SymboleMathematische Symbole; KatalogGriechische Symbole in FormelnFormel; Symbole eingeben" +msgstr "Symbole; in %PRODUCTNAME Math eingeben%PRODUCTNAME Math; Symbole eingeben inKatalog für mathematische SymboleMathematische Symbole; KatalogGriechische Symbole in FormelnFormeln; Symbole eingeben in" #: 06010000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/smath/guide.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/smath/guide.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/smath/guide.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/smath/guide.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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" -"PO-Revision-Date: 2017-10-22 11:58+0000\n" +"PO-Revision-Date: 2017-11-27 19:00+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1508673523.000000\n" +"X-POOTLE-MTIME: 1511809254.000000\n" #: align.xhp msgctxt "" @@ -78,7 +78,7 @@ "par_id3143229\n" "help.text" msgid "Empty character strings are a simple way to ensure that texts and formulas are left-aligned. They are defined using double inverted commas \"\" . Make sure you do not use any typographic inverted commas. Example:" -msgstr "Leere Zeichenketten sind ein einfaches Mittel, Texte und Formeln linksbündig beginnen zu lassen. Sie werden durch doppelte Anführungszeichen \"\" festgelegt. Verwenden Sie keine typographischen Anführungszeichen. Beispiel:" +msgstr "Leere Zeichenketten sind ein einfaches Mittel, Texte und Formeln linksbündig beginnen zu lassen. Sie werden durch doppelte Anführungszeichen \"\" festgelegt. Verwenden Sie keine typografischen Anführungszeichen. Beispiel:" #: align.xhp msgctxt "" @@ -758,7 +758,7 @@ "bm_id3155962\n" "help.text" msgid "text strings; entering in $[officename] Mathdirect text; entering in $[officename] Mathinserting;text in $[officename] Math" -msgstr "Zeichenketten; eingeben in $[officename] Mathdirekter Text; eingeben in $[officename] Matheinfügen; Text in $[officename] Math" +msgstr "Zeichenketten; eingeben in $[officename] MathDirekter Text; eingeben in $[officename] MathEinfügen; Text in $[officename] Math" #: text.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/swriter/00.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/swriter/00.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/swriter/00.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/swriter/00.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-06-20 14:31+0200\n" -"PO-Revision-Date: 2017-07-26 04:35+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-12-10 06:14+0000\n" +"Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1501043711.000000\n" +"X-POOTLE-MTIME: 1512886492.000000\n" #: 00000004.xhp msgctxt "" @@ -174,7 +174,7 @@ "par_id3147404\n" "help.text" msgid "Choose File - Send - Create HTML Document" -msgstr "Wählen Sie Datei - Senden - HTML Dokument erzeugen" +msgstr "Wählen Sie Datei - Senden - HTML-Dokument erzeugen" #: 00000401.xhp msgctxt "" @@ -654,7 +654,7 @@ "par_id3147515\n" "help.text" msgid "Choose Insert - Field - More Fields - Functions tab" -msgstr "Wählen Sie Einfügen - Feldbefehl - Weitere Feldbefehle... -Register: Funktionen" +msgstr "Wählen Sie Einfügen - Feldbefehl - Weitere Feldbefehle... -Register: Funktionen" #: 00000404.xhp msgctxt "" @@ -806,7 +806,7 @@ "par_id3156269\n" "help.text" msgid "Choose Insert - Caption - Options" -msgstr "Wählen Sie Einfügen - Beschriftung... - Schaltfäche: Optionen..." +msgstr "Wählen Sie Einfügen - Beschriftung... - Schaltfläche: Optionen..." #: 00000404.xhp msgctxt "" @@ -1342,7 +1342,7 @@ "par_id3154470\n" "help.text" msgid "Choose Format - Paragraph - Outline & Numbering tab" -msgstr "Wählen Sie Format - Absatz... - Register: Gliederung & Nummerierung" +msgstr "Wählen Sie Format - Absatz... - Register: Gliederung und Nummerierung" #: 00000405.xhp msgctxt "" @@ -1350,7 +1350,7 @@ "par_id3147525\n" "help.text" msgid "Choose View - Styles and Formatting - open context menu Modify/New - Outline & Numbering tab (Paragraph Styles)" -msgstr "Wählen Sie Ansicht - Formatvorlagen und aus dem Kontextmenü eines Eintrags Ändern.../Neu... - Register: Gliederung & Nummerierung (bei Absatzvorlagen)" +msgstr "Wählen Sie Ansicht - Formatvorlagen und aus dem Kontextmenü eines Eintrags Ändern.../Neu... - Register: Gliederung und Nummerierung (bei Absatzvorlagen)" #: 00000405.xhp msgctxt "" @@ -1630,7 +1630,7 @@ "par_id3153984\n" "help.text" msgid "Choose Format - Image - Hyperlink tab" -msgstr "Wählen Sie Format - Bild - Eigenschaften... - Register: Verknüpfung" +msgstr "Wählen Sie Format - Bild - Eigenschaften... - Register: Hyperlink" #: 00000405.xhp msgctxt "" @@ -1638,7 +1638,7 @@ "par_id3156130\n" "help.text" msgid "Choose Format - Frame and Object - Properties - Hyperlink tab" -msgstr "Wählen Sie Format - Rahmen und OLE-Objekt - Eigenschaften... - Register: Verknüpfung" +msgstr "Wählen Sie Format - Rahmen und OLE-Objekt - Eigenschaften... - Register: Hyperlink" #: 00000405.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/swriter/01.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/swriter/01.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/swriter/01.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/swriter/01.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-20 14:37+0200\n" -"PO-Revision-Date: 2017-10-31 10:19+0000\n" +"PO-Revision-Date: 2017-12-10 06:15+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1509445195.000000\n" +"X-POOTLE-MTIME: 1512886549.000000\n" #: 01120000.xhp msgctxt "" @@ -1158,7 +1158,7 @@ "par_id3145587\n" "help.text" msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon." -msgstr "Verschiebt die ausgewählte Überschrift sowie den darunter stehenden Text im Navigator wie auch im Dokument um eine Überschriftenposition nach oben. Um nur die ausgewählte Überschrift, nicht jedoch den damit verbundenen Text zu verschieben, halten Sie die Taste Strg gedrückt und klicken dann auf dieses Symbol." +msgstr "Verschiebt die ausgewählte Überschrift sowie den darunter stehenden Text im Navigator wie auch im Dokument um eine Überschriftenposition nach oben. Um nur die ausgewählte Überschrift, nicht jedoch den damit verbundenen Text zu verschieben, halten Sie die Strg-Taste gedrückt und klicken dann auf dieses Symbol." #: 02110000.xhp msgctxt "" @@ -1190,7 +1190,7 @@ "par_id3154440\n" "help.text" msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon." -msgstr "Verschiebt die ausgewählte Überschrift sowie den darunter stehenden Text im Navigator wie auch im Dokument um eine Überschriftenposition nach unten. Um nur die ausgewählte Überschrift, nicht jedoch den damit verbundenen Text zu verschieben, halten Sie die Taste Strg gedrückt und klicken dann auf dieses Symbol." +msgstr "Verschiebt die ausgewählte Überschrift sowie den darunter stehenden Text im Navigator wie auch im Dokument um eine Überschriftenposition nach unten. Um nur die ausgewählte Überschrift, nicht jedoch den damit verbundenen Text zu verschieben, halten Sie die Strg-Taste gedrückt und klicken dann auf dieses Symbol." #: 02110000.xhp msgctxt "" @@ -1390,7 +1390,7 @@ "par_id3149968\n" "help.text" msgid "You can configure $[officename] according to your specific preferences for navigating within a document. To do this, choose Tools - Customize. The various tables for adapting menus, keyboard input or toolbars contain various functions for navigation within the document under the \"Navigate\" area. In this way you can jump to the index tags in the document with the \"To Next/Previous Index Tag\" functions." -msgstr "Zur Navigation innerhalb eines Dokuments können Sie $[officename] Ihren Wünschen entsprechend konfigurieren. Wählen Sie dazu Extras - Anpassen.... Auf den verschiedenen Registern zur Anpassung von Menüs, Tastatur oder Symbolleisten finden Sie im Bereich Navigieren verschiedene Funktionen, um sich innerhalb des Dokuments zu bewegen. So können Sie beispielsweise mit den Funktionen 'Zur nächsten/vorherigen Indexmarkierung' die Verzeichnismarkierungen im Dokument anspringen." +msgstr "Zur Navigation innerhalb eines Dokuments können Sie $[officename] Ihren Wünschen entsprechend konfigurieren. Wählen Sie dazu Extras - Anpassen.... Auf den verschiedenen Registern zur Anpassung von Menüs, Tastatur oder Symbolleisten finden Sie im Bereich \"Navigieren\" verschiedene Funktionen, um sich innerhalb des Dokuments zu bewegen. So können Sie beispielsweise mit den Funktionen \"Zur nächsten/vorherigen Indexmarkierung\" die Verzeichnismarkierungen im Dokument anspringen." #: 02110100.xhp msgctxt "" @@ -8206,7 +8206,7 @@ "par_id3147487\n" "help.text" msgid "For DocInformation fields, the TYPE parameter equals DOCINFO. The SUBTYPE parameter displays the specific field type, for example, for the \"Created\" DocInformation field, SUBTYPE=CREATE. For date and time DocInformation fields, the FORMAT parameter equals DATE or TIME, and the SDNUM parameter indicates the number format that is used. The SDFIXED parameter indicates if the content of the DocInformation field is fixed or not." -msgstr "Für Felder des Typs \"Dokumentinfo\" hat der Parameter TYPE den Wert DOCINFO. Der Parameter SUBTYPE zeigt den genauen Feldtyp an, beispielsweise SUBTYPE=CREATE für das Dokumentinfo-Feld \"Erzeugung\". Für Dokumentinfo-Felder mit Datums- und Zeitangabe hat der Parameter FORMAT den Wert DATE oder TIME und der Parameter SDNUM gibt das verwendete Zahlenformat an. Der Parameter SDFIXED gibt an, ob der Inhalt des Dokumentinfo-Felds fix ist oder nicht." +msgstr "Für Felder des Typs Dokumentinfo hat der Parameter TYPE den Wert DOCINFO. Der Parameter SUBTYPE zeigt den genauen Feldtyp an, beispielsweise SUBTYPE=CREATE für das Dokumentinfo-Feld \"Erzeugung\". Für Dokumentinfo-Felder mit Datums- und Zeitangabe hat der Parameter FORMAT den Wert DATE oder TIME und der Parameter SDNUM gibt das verwendete Zahlenformat an. Der Parameter SDFIXED gibt an, ob der Inhalt des Dokumentinfo-Felds fix ist oder nicht." #: 04090007.xhp msgctxt "" @@ -13758,7 +13758,7 @@ "tit\n" "help.text" msgid "Outline & Numbering" -msgstr "Gliederung & Nummerierung" +msgstr "Gliederung und Nummerierung" #: 05030800.xhp msgctxt "" @@ -13766,7 +13766,7 @@ "hd_id3151173\n" "help.text" msgid "Outline & Numbering" -msgstr "Gliederung & Nummerierung" +msgstr "Gliederung und Nummerierung" #: 05030800.xhp msgctxt "" @@ -13782,7 +13782,7 @@ "par_id3153536\n" "help.text" msgid "To change the numbering options for paragraphs that use the same paragraph style, choose View - Styles and Formatting, and then click the Paragraph Styles icon. Right-click the style in the list, choose Modify, and then click the Outline & Numbering tab." -msgstr "Um die Nummerierungsoptionen für Absätze zu ändern, die dieselbe Absatzvorlage verwenden, wählen Sie Ansicht - Formatvorlagen und klicken dann auf das Symbol Absatzvorlagen. Klicken Sie mit rechts in der Liste auf die Vorlage, wählen Sie Ändern... und das Register Gliederung & Nummerierung." +msgstr "Um die Nummerierungsoptionen für Absätze zu ändern, die dieselbe Absatzvorlage verwenden, wählen Sie Ansicht - Formatvorlagen und klicken dann auf das Symbol Absatzvorlagen. Rechtsklicken Sie in der Liste auf die Vorlage, wählen Sie Ändern... und das Register Gliederung und Nummerierung." #: 05030800.xhp msgctxt "" @@ -13790,7 +13790,7 @@ "par_id3154470\n" "help.text" msgid "To change the numbering options for selected paragraphs, choose Format - Paragraph, and then click the Outline & Numbering tab." -msgstr "Um die Nummerierungsoptionen für markierte Absätze zu ändern, wählen Sie Format - Absatz... und das Register Gliederung & Nummerierung." +msgstr "Um die Nummerierungsoptionen für markierte Absätze zu ändern, wählen Sie Format - Absatz... und das Register Gliederung und Nummerierung." #: 05030800.xhp msgctxt "" @@ -14294,7 +14294,7 @@ "par_id3149485\n" "help.text" msgid "Select the vertical alignment of the separator line. This option is only available if Height value of the line is less than 100%." -msgstr "Wählen Sie die vertikale Ausrichtung der Trennlinie aus. Diese Option ist nur verfügbar, wenn der Wert Höhe der Linie weniger als 100% beträgt." +msgstr "Wählen Sie die vertikale Ausrichtung der Trennlinie aus. Diese Option ist nur verfügbar, wenn der Wert Höhe der Linie weniger als 100 % beträgt." #: 05040500.xhp msgctxt "" @@ -14574,7 +14574,7 @@ "par_id3155145\n" "help.text" msgid "To specify the spacing between two footnotes, choose Format - Paragraph, and then click the Indents & Spacing tab." -msgstr "Um den Abstand zwischen den einzelnen Fußnoten einzustellen, wählen Sie Format - Absatz... und das Register Einzüge & Abstände." +msgstr "Um den Abstand zwischen den einzelnen Fußnoten einzustellen, wählen Sie Format - Absatz... und das Register Einzüge und Abstände." #: 05040700.xhp msgctxt "" @@ -15126,7 +15126,7 @@ "par_id3145414\n" "help.text" msgid "Decides what 100% width means: either text area (excluding margins) or the entire page (including margins)." -msgstr "Legt fest, was 100% Breite bedeutet: entweder Textbereich (ohne Ränder) oder die ganze Seite (einschließlich Ränder)." +msgstr "Legt fest, was 100 % Breite bedeutet: entweder Textbereich (ohne Ränder) oder die ganze Seite (einschließlich Ränder)." #: 05060100.xhp msgctxt "" @@ -15174,7 +15174,7 @@ "par_id3145415\n" "help.text" msgid "Decides what 100% height means: either text area (excluding margins) or the entire page (including margins)." -msgstr "Legt fest, was 100% Höhe bedeutet: entweder Textbereich (ohne Ränder) oder die ganze Seite (einschließlich Ränder)." +msgstr "Legt fest, was 100 % Höhe bedeutet: entweder Textbereich (ohne Ränder) oder die ganze Seite (einschließlich Ränder)." #: 05060100.xhp msgctxt "" @@ -18854,7 +18854,7 @@ "par_id3149050\n" "help.text" msgid "Deletes the selected row(s) from the table." -msgstr "Löscht die ausgewählte(n) Zeile(n) aus der Tabelle." +msgstr "Entfernt die ausgewählte(n) Zeile(n) aus der Tabelle." #: 05120000.xhp msgctxt "" @@ -19830,7 +19830,7 @@ "bm_id3907589\n" "help.text" msgid "Styles and Formatting window;applying styles styles;previews previews;styles" -msgstr "Formatvorlagen; Vorlagen anwendenVorlagen; VorschauVorschau; Vorlagen" +msgstr "Formatvorlagen; Vorlagen anwendenVorlagen; VorschauenVorschauen; Vorlagen" #: 05140000.xhp msgctxt "" @@ -19870,7 +19870,7 @@ "par_id270120161717298895\n" "help.text" msgid "By default, the Styles and Formatting deck displays a preview of the available styles. The previews can be disabled in the Expert configuration by setting the property /org.openoffice.Office.Common/StylesAndFormatting Preview to false." -msgstr "Standardmäßig zeigt der Bereich Formatvorlagen der Seitenleiste eine Vorschau der verfügbaren Vorlagen an. Die Vorschau kann in den Experteneinstellungen durch das Ändern der Eigenschaft /org.openoffice.Office.Common/StylesAndFormatting Preview auf false deaktiviert werden." +msgstr "Standardmäßig zeigt der Bereich Formatvorlagen der Seitenleiste eine Vorschau der verfügbaren Vorlagen an. Die Vorschauen können in den Experteneinstellungen durch das Ändern der Eigenschaft /org.openoffice.Office.Common/StylesAndFormatting Preview auf false deaktiviert werden." #: 05140000.xhp msgctxt "" @@ -20726,7 +20726,7 @@ "par_id3152999\n" "help.text" msgid "Automatically formats the file according to the options that you set under Tools - AutoCorrect Options. In a dialog, you are asked to accept or reject the changes." -msgstr "Formatiert die Datei automatisch gemäß den unter Extras - AutoKorrektur - AutoKorrektur-Optionen... festgelegten Einstellungen. Sie werden vor der Übernahme der Formatierung gefragt, ob Sie die Änderungen annehmen oder verwerfen möchten." +msgstr "Formatiert die Datei automatisch entsprechend der von Ihnen unter Extras - AutoKorrektur - AutoKorrektur-Optionen... eingestellten Vorgaben. Sie werden vor der Übernahme der Formatierung gefragt, ob Sie die Änderungen annehmen oder verwerfen möchten." #: 05150300.xhp msgctxt "" @@ -21478,7 +21478,7 @@ "par_id3155620\n" "help.text" msgid "Specifies the number format and the hierarchy for chapter numbering in the current document." -msgstr "Auf diesem Register wird die Kapitelnummerierung definiert." +msgstr "Auf diesem Register wird das Zahlenformat und die Hierarchie für die Kapitelnummerierung im aktuellen Dokument definiert." #: 06060100.xhp msgctxt "" @@ -22110,7 +22110,7 @@ "par_id334242345\n" "help.text" msgid "Footnote numbers are left aligned by default in the footnote area. For right aligned footnote numbers first edit the paragraph style Footnote. Press F11 to open Styles and Formatting dialog and select Footnote from the list of paragraph styles. Open the local menu with right click and choose Modify. Go to the Indents & Spacing tab page and set indent to 0 before and after the paragraph, including the first line. On Tabs tab page create a tab of right type at 12pt and a tab of left type at 14pt. Then in Footnotes/Endnotes Settings dialog enter \\t into the Before and After edit boxes." -msgstr "Die Fußnoten-Zahlen sind standardmäßig im Fußnotenbereich links angeordnet. Für eine Rechtsausrichtung muss die Absatzvorlage Fußnote bearbeitet werden. Drücken Sie die Taste F11, um den Dialog Formatvorlagen zu öffnen, und wählen Sie Fußnote aus der Liste der Absatzvorlagen aus. Öffnen Sie das Kontextmenü mit einem Rechtsklick und wählen Sie Ändern... aus. Wählen Sie das Register Einzüge & Abstände und setzen Sie die Einzüge Vor Text, Hinter Text und Erste Zeile auf 0. Im Register Tabulatoren erstellen Sie einen Tabulator Rechts bei 12 pt und einen Tabulator Links bei 14 pt. Dann geben Sie im Dialog Fuß-/Endnoteneinstellungen \\t für Vor und Hinter ein." +msgstr "Die Fußnoten-Zahlen sind standardmäßig im Fußnotenbereich links angeordnet. Für eine Rechtsausrichtung muss die Absatzvorlage Fußnote bearbeitet werden. Drücken Sie die Taste F11, um den Dialog Formatvorlagen zu öffnen, und wählen Sie Fußnote aus der Liste der Absatzvorlagen aus. Öffnen Sie das Kontextmenü mit einem Rechtsklick und wählen Sie Ändern... aus. Wählen Sie das Register Einzüge und Abstände und setzen Sie die Einzüge Vor Text, Hinter Text und Erste Zeile auf 0. Im Register Tabulatoren erstellen Sie einen Tabulator Rechts bei 12 pt und einen Tabulator Links bei 14 pt. Dann geben Sie im Dialog Fuß-/Endnoteneinstellungen \\t für Vor und Hinter ein." #: 06080100.xhp msgctxt "" @@ -23166,7 +23166,7 @@ "par_id3150249\n" "help.text" msgid "Adds or removes and formats line numbers in the current document. To exclude a paragraph from line numbering, click in the paragraph, choose Format - Paragraph, click the Numbering tab, and then clear the Include this paragraph in line numbering check box. You can also exclude a paragraph style from line numbering." -msgstr "Schaltet Zeilennummern für das aktuelle Dokument ein oder aus und legt ihr Format fest. Um Absätze von der Zeilennummerierung auszunehmen, klicken Sie in den betreffenden Absatz, wählen Format - Absatz..., klicken auf das Register Gliederung & Nummerierung und deaktivieren dann das Markierfeld Die Zeilen dieses Absatzes mitzählen. Sie können auch Absatzvorlagen von der Zeilennummerierung ausschließen." +msgstr "Schaltet Zeilennummern für das aktuelle Dokument ein oder aus und legt ihr Format fest. Um Absätze von der Zeilennummerierung auszunehmen, klicken Sie in den betreffenden Absatz, wählen Format - Absatz..., klicken auf das Register Gliederung und Nummerierung und deaktivieren dann das Markierfeld Die Zeilen dieses Absatzes mitzählen. Sie können auch Absatzvorlagen von der Zeilennummerierung ausschließen." #: 06180000.xhp msgctxt "" @@ -23798,7 +23798,7 @@ "par_idN10567\n" "help.text" msgid "Mail Merge Wizard overview" -msgstr "Serienbrief-Assistent Übersicht" +msgstr "Serienbrief-Assistent - Übersicht" #: mailmerge02.xhp msgctxt "" @@ -23870,7 +23870,7 @@ "par_idN10568\n" "help.text" msgid "Mail Merge Wizard overview" -msgstr "Serienbrief-Assistent Übersicht" +msgstr "Serienbrief-Assistent - Übersicht" #: mailmerge03.xhp msgctxt "" @@ -23942,7 +23942,7 @@ "par_idN1057D\n" "help.text" msgid "This document shall contain an address block" -msgstr "Dieses Dokument soll einen Adressblock enthalten" +msgstr "Dieses Dokument muss einen Adressblock enthalten" #: mailmerge03.xhp msgctxt "" @@ -24054,7 +24054,7 @@ "par_idN10569\n" "help.text" msgid "Mail Merge Wizard overview" -msgstr "Serienbrief-Assistent Übersicht" +msgstr "Serienbrief-Assistent - Übersicht" #: mailmerge04.xhp msgctxt "" @@ -24294,7 +24294,7 @@ "par_idN10570\n" "help.text" msgid "Mail Merge Wizard overview" -msgstr "Serienbrief-Assistent Übersicht" +msgstr "Serienbrief-Assistent - Übersicht" #: mailmerge05.xhp msgctxt "" @@ -24470,7 +24470,7 @@ "par_idN10571\n" "help.text" msgid "Mail Merge Wizard overview" -msgstr "Serienbrief-Assistent Übersicht" +msgstr "Serienbrief-Assistent - Übersicht" #: mm_copyto.xhp msgctxt "" @@ -24918,7 +24918,7 @@ "par_idN105AC\n" "help.text" msgid "Select the default greeting to use if a personalized salutation cannot be created." -msgstr "Wählen sie die Standardbegrüßung, die verwendet werden soll, wenn keine personalisierte Briefanrede erstellt werden kann." +msgstr "Wählen Sie die Standardbegrüßung, die verwendet werden soll, wenn keine personalisierte Briefanrede erstellt werden kann." #: mm_emabod.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/swriter/02.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/swriter/02.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/swriter/02.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/swriter/02.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-05-12 14:35+0200\n" -"PO-Revision-Date: 2017-10-22 12:26+0000\n" +"PO-Revision-Date: 2017-11-16 12:33+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1508675184.000000\n" +"X-POOTLE-MTIME: 1510835592.000000\n" #: 02110000.xhp msgctxt "" @@ -1046,7 +1046,7 @@ "bm_id9658192\n" "help.text" msgid "previews;book previewbook previews" -msgstr "Vorschau; BuchansichtBuchansicht" +msgstr "Vorschauen; BuchansichtBuchansicht" #: 10080000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/swriter/04.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/swriter/04.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/swriter/04.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/swriter/04.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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" -"PO-Revision-Date: 2017-10-26 09:42+0000\n" +"PO-Revision-Date: 2017-12-10 18:58+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1509010928.000000\n" +"X-POOTLE-MTIME: 1512932316.000000\n" #: 01020000.xhp msgctxt "" @@ -1694,7 +1694,7 @@ "bm_id3155395\n" "help.text" msgid "tab stops; before headings headings; starting with tab stops" -msgstr "Tabulator; vor ÜberschriftÜberschriften; mit Tabulator beginnen" +msgstr "Tabulatoren; vor ÜberschriftenÜberschriften; mit Tabulatoren beginnen" #: 01020000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/swriter/guide.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/swriter/guide.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/swriter/guide.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/swriter/guide.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-31 12:03+0000\n" +"PO-Revision-Date: 2017-12-10 18:58+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1509451419.000000\n" +"X-POOTLE-MTIME: 1512932325.000000\n" #: anchor_object.xhp msgctxt "" @@ -1046,7 +1046,7 @@ "bm_id3149346\n" "help.text" msgid "backgrounds;text objectswords;backgroundsparagraphs; backgroundstext;backgroundstables; backgroundscells; backgroundsbackgrounds;selecting" -msgstr "Hintergrund; Textobjekte Wörter; HintergrundAbsätze; HintergrundText; HintergrundTabellen; HintergrundZellen; HintergrundHintergrund; Auswahl" +msgstr "Hintergründe; TextobjekteWörter; HintergründeAbsätze; HintergründeText; HintergründeTabellen; HintergründeZellen; HintergründeHintergründe; Auswahl" #: background.xhp msgctxt "" @@ -3686,7 +3686,7 @@ "bm_id3145576\n" "help.text" msgid "fields;updating/viewing updating;fields Help tips;fields properties;fields disabling;field highlighting changing;field shadings viewing;fields" -msgstr "Felder; aktualisieren/anzeigenAktualisieren; FelderHilfe-Tipps; FelderEigenschaften; FelderDeaktivieren; FeldhervorhebungenÄndern; FeldhervorhebungenAnzeigen; Felder" +msgstr "Felder; aktualisieren/anzeigenAktualisieren; FelderHilfetipps; FelderEigenschaften; FelderDeaktivieren; FeldhervorhebungenÄndern; FeldhervorhebungenAnzeigen; Felder" #: fields.xhp msgctxt "" @@ -5150,7 +5150,7 @@ "bm_id3147683\n" "help.text" msgid "spacing; endnotes/footnotes endnotes; spacing footnotes; spacing borders;for footnotes/endnotes lines;footnotes/endnotes" -msgstr "Abstände; Fuß-/EndnoteEndnoten; AbstandFußnoten; AbstandUmrandungen; für Fuß-/EndnotenLinien; Fuß-/Endnoten" +msgstr "Abstände; Fußnoten/EndnotenEndnoten; AbstandFußnoten; AbstandUmrandungen; für Fußnoten/EndnotenLinien; Fußnoten/Endnoten" #: footnote_with_line.xhp msgctxt "" @@ -6942,7 +6942,7 @@ "par_id4013794\n" "help.text" msgid "Choose Format - Paragraph - Indents & Spacing to change the indents for the current paragraph or for all selected paragraphs. You can also set indents using the ruler." -msgstr "Wählen Sie Format - Absatz - Einzüge & Abstände, um die Einzüge für den aktuellen Absatz oder alle ausgewählten Absätze zu ändern. Der Einzug lässt sich auch auf dem Lineal einstellen." +msgstr "Wählen Sie Format - Absatz - Einzüge und Abstände, um die Einzüge für den aktuellen Absatz oder alle ausgewählten Absätze zu ändern. Der Einzug lässt sich auch auf dem Lineal einstellen." #: indenting.xhp msgctxt "" @@ -6950,7 +6950,7 @@ "par_id1631824\n" "help.text" msgid "Right-click a paragraph and choose Edit Paragraph Style - Indents & Spacing to change the indents for all paragraphs that have the same Paragraph Style." -msgstr "Klicken Sie mit der rechten Maustaste auf einen Absatz und wählen Sie Absatzvorlage bearbeiten... - Einzüge & Abstände, um die Einzüge für alle Absätze zu ändern, die dieselbe Absatzvorlage aufweisen." +msgstr "Klicken Sie mit der rechten Maustaste auf einen Absatz und wählen Sie Absatzvorlage bearbeiten... - Einzüge und Abstände, um die Einzüge für alle Absätze zu ändern, die dieselbe Absatzvorlage aufweisen." #: indenting.xhp msgctxt "" @@ -6982,7 +6982,7 @@ "par_id1491134\n" "help.text" msgid "Format - Paragraph - Indents & Spacing" -msgstr "Format - Absatz... - Einzüge & Abstände" +msgstr "Format - Absatz... - Einzüge und Abstände" #: indices_delete.xhp msgctxt "" @@ -7334,7 +7334,7 @@ "hd_id3146878\n" "help.text" msgid "To Assign Hyperlinks to Entries in a Table of Contents" -msgstr "So weisen Sie Inhaltsverzeichniseinträgen Hyperlinks zu:" +msgstr "So weisen Sie Inhaltsverzeichniseinträgen Hyperlinks zu" #: indices_form.xhp msgctxt "" @@ -8014,7 +8014,7 @@ "par_id3150720\n" "help.text" msgid "If you want to use a different paragraph style as a table of contents entry, select Additional styles, and then click the Assign styles button next to the box. Click the style in the list, and then click the >> or the << button to define the chapter level for the paragraph style." -msgstr "Wenn Sie abweichende Absatzvorlagen für das Inhaltsverzeichnis verwenden möchten, wählen Sie Weitere Vorlagen und klicken Sie auf die Schaltfläche Vorlage zuweisen... neben dem Eingabefeld. Klicken sie auf die Vorlage in der Liste und dann auf die Schaltfläche >> oder <<, um die Kapitelebene für die Absatzvorlage festzulegen." +msgstr "Wenn Sie abweichende Absatzvorlagen für das Inhaltsverzeichnis verwenden möchten, wählen Sie Weitere Vorlagen und klicken Sie auf die Schaltfläche Vorlage zuweisen... neben dem Eingabefeld. Klicken Sie auf die Vorlage in der Liste und dann auf die Schaltfläche >> oder <<, um die Kapitelebene für die Absatzvorlage festzulegen." #: insert_beforetable.xhp msgctxt "" @@ -8158,7 +8158,7 @@ "bm_id3152999\n" "help.text" msgid "charts;copying from Calc into Writer copying; charts from $[officename] Calc text documents;inserting Calc charts" -msgstr "Diagramme; von Calc zu Writer kopierenKopieren; Diagramme aus $[officename]CalcTextdokumente; Calc-Diagramme einfügen" +msgstr "Diagramme; von Calc zu Writer kopierenKopieren; Diagramme aus $[officename] CalcTextdokumente; Calc-Diagramme einfügen" #: insert_graphic_fromchart.xhp msgctxt "" @@ -8350,7 +8350,7 @@ "par_id3155182\n" "help.text" msgid "The scanner must support the TWAIN standard. The scanner must support the SANE standard." -msgstr " Der Scanner muss den TWAIN-Standard unterstützen. Der Scanner muss den SANE-Standard unterstützen. " +msgstr "Der Scanner muss den TWAIN-Standard unterstützen.Der Scanner muss den SANE-Standard unterstützen." #: insert_graphic_scan.xhp msgctxt "" @@ -8390,7 +8390,7 @@ "bm_id3145078\n" "help.text" msgid "tab stops; inserting in listsnumbering; changing the level oflists;changing levelslevels;changing outline levelsbullet lists;changing levelslowering outline levelsrising outline levelschanging;outline levels" -msgstr "Tabulatoren; in Listen einfügenNummerierung; Ebene wechselnListen; Ebene wechselnEbenen; Gliederungsebene wechselnAufzählungen; Ebene wechselnGliederungsebenen verringernGliederungsebene erhöhenWechseln; Gliederungsebene" +msgstr "Tabulatoren; in Listen einfügenNummerierung; Ebene wechselnListen; Ebenen wechselnEbenen; Gliederungsebenen wechselnAufzählungen; Ebenen wechselnGliederungsebenen verringernGliederungsebenen erhöhenWechseln; Gliederungsebenen" #: insert_tab_innumbering.xhp msgctxt "" @@ -8926,7 +8926,7 @@ "bm_id3154897\n" "help.text" msgid "Navigator; overview in texts hyperlinks;jumping to objects;quickly moving to, within text frames;jumping to tables;jumping to headings;jumping to pages;jumping to jumping;to text elements overviews;Navigator in text documents" -msgstr "Navigator; Überblick in TextenHyperlinks; springen zuObjekte; schnell zu Objekten im Text bewegenRahmen; springen zuTabellen; springen zuÜberschriften; springen zuSeiten; springen zuSpringen; zu TextelementenÜberblicke; Navigator in Textdokumenten" +msgstr "Navigator; Übersicht in TextenHyperlinks; springen zuObjekte; schnell zu Objekten im Text bewegenRahmen; springen zuTabellen; springen zuÜberschriften; springen zuSeiten; springen zuSpringen; zu TextelementenÜbersichten; Navigator in Textdokumenten" #: navigator.xhp msgctxt "" @@ -9126,7 +9126,7 @@ "bm_id3149695\n" "help.text" msgid "numbering;quotations/similar items" -msgstr "Nummerierung; Zitate u.Ä." +msgstr "Nummerierung; Zitate/gleiche Elemente" #: number_sequence.xhp msgctxt "" @@ -9334,7 +9334,7 @@ "par_id3150931\n" "help.text" msgid "Click the Outline & Numbering tab." -msgstr "Klicken Sie auf das Register Gliederung & Nummerierung." +msgstr "Klicken Sie auf das Register Gliederung und Nummerierung." #: numbering_lines.xhp msgctxt "" @@ -9366,7 +9366,7 @@ "par_id3151096\n" "help.text" msgid "Choose Format - Paragraph, and then click the Outline & Numbering tab." -msgstr "Wählen Sie Format - Absatz... und das Register Gliederung & Nummerierung." +msgstr "Wählen Sie Format - Absatz... und das Register Gliederung und Nummerierung." #: numbering_lines.xhp msgctxt "" @@ -9414,7 +9414,7 @@ "par_id3150721\n" "help.text" msgid "Choose Format - Paragraph, and then click the Outline & Numbering tab." -msgstr "Wählen Sie Format - Absatz... und das Register Gliederung & Nummerierung." +msgstr "Wählen Sie Format - Absatz... und das Register Gliederung und Nummerierung." #: numbering_lines.xhp msgctxt "" @@ -9614,7 +9614,7 @@ "bm_id3155183\n" "help.text" msgid "page breaks; inserting and deleting inserting; page breaks deleting;page breaks pages; inserting/deleting page breaks manual page breaks tables;deleting page breaks before" -msgstr "Seitenumbruch; einfügen und löschenEinfügen; SeitenumbruchLöschen; SeitenumbrücheSeiten; Umbrüche einfügen/löschenManuelle SeitenumbrücheTabellen; Seitenumbrüche davor löschen" +msgstr "Seitenumbrüche; einfügen und löschenEinfügen; SeitenumbrücheLöschen; SeitenumbrücheSeiten; Seitenumbrüche einfügen/löschenManuelle SeitenumbrücheTabellen; Seitenumbrüche davor löschen" #: page_break.xhp msgctxt "" @@ -10102,7 +10102,7 @@ "par_id9139378\n" "help.text" msgid "Select a number format and click OK." -msgstr "Wählen Sie ein anderes Format aus, und bestätigen Sie mit OK." +msgstr "Wählen Sie ein Zahlenformat aus und bestätigen Sie mit OK." #: pagenumbers.xhp msgctxt "" @@ -10606,7 +10606,7 @@ "bm_id7071138\n" "help.text" msgid "page styles;creating and applying defining;page styles styles;for pages" -msgstr "Seitenvorlagen; Erstellen und AnwendenErstellen; SeitenvorlagenVorlagen; für Seiten" +msgstr "Seitenvorlagen; erstellen und anwendenErstellen; SeitenvorlagenVorlagen; für Seiten" #: pagestyles.xhp msgctxt "" @@ -10910,7 +10910,7 @@ "bm_id3155179\n" "help.text" msgid "printing; previews previews; print layouts print layout checks book view pages;previews" -msgstr "Drucken; VorschauVorschau; DruckbildDruckbild prüfenBuchansichtSeiten; Vorschau" +msgstr "Drucken; VorschauenVorschauen; DruckbildDruckbild prüfenBuchansichtSeiten; Vorschauen" #: print_preview.xhp msgctxt "" @@ -10974,7 +10974,7 @@ "bm_id3149694\n" "help.text" msgid "multi-page view of documents pages;printing multiple on one sheet overviews;printing multi-page view printing;multiple pages per sheet reduced printing of multiple pages" -msgstr "Mehrseitenansicht für DokumenteSeiten; mehrere auf ein Blatt druckenÜbersichten; drucken MehrseitenansichtDrucken; mehrere Seiten pro BlattVerkleinertes Drucken mehrerer Seiten" +msgstr "Mehrseitenansicht für DokumenteSeiten; mehrere auf ein Blatt druckenÜbersichten; Mehrseitenansicht druckenDrucken; mehrere Seiten pro BlattVerkleinertes Drucken mehrerer Seiten" #: print_small.xhp msgctxt "" @@ -11286,7 +11286,7 @@ "par_id181120164739204\n" "help.text" msgid "If the section already exists: Choose menu Format - Sections... and select the section in the list Section, or right-click on the section in the Navigator and choose Edit...." -msgstr "Falls der Bereich schon existiert: Wählen Sie Format - Bereiche... und dann den Bereich in der Liste Bereich oder klicken Sie mit rechts auf den Bereich im Navigator und wählen Sie Bearbeiten...." +msgstr "Falls der Bereich schon existiert: Wählen Sie Format - Bereiche... und dann den Bereich in der Liste Bereich oder rechtsklicken Sie auf den Bereich im Navigator und wählen Sie Bearbeiten...." #: protection.xhp msgctxt "" @@ -11446,7 +11446,7 @@ "par_id3159088\n" "help.text" msgid "Right-click in the index or table of contents. Choose Edit Index... in the context menu. Choose Protected against manual changes on the Type tab." -msgstr "Klicken Sie mit rechts in das Verzeichnis. Wählen Sie aus dem Kontextmenü Verzeichnis bearbeiten.... Wählen Sie Geschützt vor manuellen Änderungen im Register Typ." +msgstr "Rechtsklicken Sie in das Verzeichnis. Wählen Sie aus dem Kontextmenü Verzeichnis bearbeiten.... Wählen Sie Geschützt vor manuellen Änderungen im Register Typ." #: protection.xhp msgctxt "" @@ -11462,7 +11462,7 @@ "par_id3152968\n" "help.text" msgid "Right-click in the index or table of contents. Choose Edit Index... in the context menu. Uncheck Protected against manual changes on the Type tab." -msgstr "Klicken Sie mit rechts in das Verzeichnis. Wählen Sie aus dem Kontextmenü Verzeichnis bearbeiten.... Deaktivieren Sie Geschützt vor manuellen Änderungen im Register Typ." +msgstr "Rechtsklicken Sie in das Verzeichnis. Wählen Sie aus dem Kontextmenü Verzeichnis bearbeiten.... Deaktivieren Sie Geschützt vor manuellen Änderungen im Register Typ." #: protection.xhp msgctxt "" @@ -11470,7 +11470,7 @@ "par_id3152774\n" "help.text" msgid "Right-click in the index or table of contents in the Navigator and uncheck Index - Read-only." -msgstr "Klicken Sie mit rechts auf das Verzeichnis im Navigator und deaktivieren Sie Verzeichnis - Schreibgeschützt." +msgstr "Rechtsklicken Sie auf das Verzeichnis im Navigator und deaktivieren Sie Verzeichnis - Schreibgeschützt." #: protection.xhp msgctxt "" @@ -11926,7 +11926,7 @@ "par_idN10685\n" "help.text" msgid "Select all the paragraphs you want to exempt, then choose Format - Paragraph - Indents & Spacing." -msgstr "Markieren Sie alle Absätze, die Sie ausschließen wollen. Wählen Sie dann Format - Absatz... - Einzüge & Abstände." +msgstr "Markieren Sie alle Absätze, die Sie ausschließen wollen. Wählen Sie dann Format - Absatz - Einzüge und Abstände." #: registertrue.xhp msgctxt "" @@ -11934,7 +11934,7 @@ "par_idN1068C\n" "help.text" msgid "Open the Styles and Formatting window, click the Paragraph Style you want to exempt, right-click that style, choose Modify. In the dialog, click the Indents & Spacing tab." -msgstr "Öffnen Sie das Fenster Formatvorlagen. Rechtsklicken Sie dann auf die auszuschließende Absatzvorlage und wählen Sie Ändern.... Klicken Sie im Dialog auf das Register Einzüge & Abstände." +msgstr "Öffnen Sie das Fenster Formatvorlagen. Rechtsklicken Sie dann auf die auszuschließende Absatzvorlage und wählen Sie Ändern.... Klicken Sie im Dialog auf das Register Einzüge und Abstände." #: registertrue.xhp msgctxt "" @@ -12006,7 +12006,7 @@ "par_id3149645\n" "help.text" msgid "On the Options tab, ensure that Combine single line paragraphs if length greater than 50% is selected. To change the minimum percentage for the line length, double-click the option in the list, and then enter a new percentage." -msgstr "Stellen Sie sicher, dass im Register Optionen das Markierfeld Zusammenfassen von einzeiligen Absätzen ab 50% aktiviert ist. Um den Mindest-Prozentwert für die Zeilenlänge zu ändern, doppelklicken Sie in der Liste auf die Option und geben einen neuen Prozentwert ein." +msgstr "Stellen Sie sicher, dass im Register Optionen das Markierfeld Zusammenfassen von einzeiligen Absätzen ab 50 % aktiviert ist. Um den Mindest-Prozentwert für die Zeilenlänge zu ändern, doppelklicken Sie in der Liste auf die Option und geben einen neuen Prozentwert ein." #: removing_line_breaks.xhp msgctxt "" @@ -12230,7 +12230,7 @@ "bm_id3150099\n" "help.text" msgid "wildcards, see regular expressions searching; with wildcards regular expressions;searching examples for regular expressions characters;finding all invisible characters;finding paragraph marks;searching" -msgstr "Platzhalter, siehe reguläre AusdrückeSuchen; mit PlatzhalterReguläre Ausdrücke; SuchenBeispiele für reguläre AusdrückeZeichen; alle findenUnsichtbare Zeichen; FindenAbsatzmarkierungen; Suchen" +msgstr "Platzhalter, siehe reguläre AusdrückeSuchen; mit PlatzhalterReguläre Ausdrücke; suchenBeispiele für reguläre AusdrückeZeichen; alle findenUnsichtbare Zeichen; findenAbsatzmarkierungen; suchen" #: search_regexp.xhp msgctxt "" @@ -12782,7 +12782,7 @@ "par_id3149825\n" "help.text" msgid "You can save a $[officename] Writer document in HTML format, so that you can view it in a web browser. If you want, you can associate a page break with a specific heading paragraph style to generate a separate HTML page each time the style appears in the document. $[officename] Writer automatically creates a page containing hyperlinks to each of these pages." -msgstr "Sie können $[officename] Writer-Dokumente im HTML-Format speichern, sodass Sie sie in einem Webbrowser anzeigen können. Je nach Wunsch können Sie mit bestimmten Überschriften-Absatzvorlagen einen Seitenumbruch verbinden, sodass bei jedem Auftreten dieser Vorlagen im Dokument eine neue HTML-Seite erzeugt wird. $[officename] Writer erstellt automatisch eine Seite mit Hyperlinks zu all diesen Seiten." +msgstr "Sie können $[officename] Writer-Dokumente im HTML-Format speichern, so das Sie diese in einem Webbrowser anzeigen können. Je nach Wunsch können Sie mit bestimmten Überschriften-Absatzvorlagen einen Seitenumbruch verbinden, sodass bei jedem Auftreten dieser Vorlagen im Dokument eine neue HTML-Seite erzeugt wird. $[officename] Writer erstellt automatisch eine Seite mit Hyperlinks zu all diesen Seiten." #: send2html.xhp msgctxt "" @@ -12966,7 +12966,7 @@ "tit\n" "help.text" msgid "Using Smart Tags" -msgstr "Smart Tags verwenden" +msgstr "SmartTags verwenden" #: smarttags.xhp msgctxt "" @@ -12974,7 +12974,7 @@ "bm_id3155622\n" "help.text" msgid "smart tagsAutoCorrect function; smart tagsoptions;smart tagsdisabling;smart tagsinstalling;smart tags" -msgstr "Smart TagsAutoKorrektur-Funktion; Smart TagsOptionen; Smart TagsAbschalten; Smart TagsInstallieren; Smart Tags" +msgstr "SmartTagsAutoKorrektur-Funktion; SmartTagsOptionen; SmartTagsAbschalten; SmartTagsInstallieren; SmartTags" #: smarttags.xhp msgctxt "" @@ -12982,7 +12982,7 @@ "hd_id3563951\n" "help.text" msgid "Using Smart Tags" -msgstr "Smart Tags verwenden" +msgstr "SmartTags verwenden" #: smarttags.xhp msgctxt "" @@ -12990,7 +12990,7 @@ "par_id368358\n" "help.text" msgid "Smart Tags provide additional information and functionality to specified words in a Writer document. The available features can be different for different Smart Tags extensions." -msgstr "Smart Tags stellen erweiterte Informationen und Funktionalität für bestimmte Wörter in Writer bereit. Die verfügbaren Funktionen unterscheiden sich je nach Art der installierten Smart Tag Extension." +msgstr "SmartTags stellen erweiterte Informationen und Funktionalität für bestimmte Wörter in Writer bereit. Die verfügbaren Funktionen unterscheiden sich je nach Art der installierten SmartTags-Extension." #: smarttags.xhp msgctxt "" @@ -12998,7 +12998,7 @@ "hd_id9298379\n" "help.text" msgid "Installing Smart Tags" -msgstr "Smart Tags installieren" +msgstr "SmartTags installieren" #: smarttags.xhp msgctxt "" @@ -13006,7 +13006,7 @@ "par_id1827448\n" "help.text" msgid "Smart Tags can be supplied as extensions to %PRODUCTNAME Writer." -msgstr "Smart Tags können als Extension für %PRODUCTNAME Writer angeboten werden." +msgstr "SmartTags können als Extension für %PRODUCTNAME Writer angeboten werden." #: smarttags.xhp msgctxt "" @@ -13014,7 +13014,7 @@ "par_id2508621\n" "help.text" msgid "To install a Smart Tag, do one of the following:" -msgstr "So installieren Sie Smart Tags:" +msgstr "So installieren Sie SmartTags:" #: smarttags.xhp msgctxt "" @@ -13030,7 +13030,7 @@ "par_id7814264\n" "help.text" msgid "Click a Smart Tag *.oxt file link on a web page and open the link with the default application. This requires a properly configured Web browser." -msgstr "Klicken Sie auf den Link zu einer Smart Tag *.oxt-Datei auf einer Webseite und öffnen Sie den Link mit der Standard-Anwendung. Ihr Web-Browser muss dazu korrekt konfiguriert sein." +msgstr "Klicken Sie auf den Link zu einer *.oxt-Datei für SmartTags auf einer Webseite und öffnen Sie den Link mit der Standard-Anwendung. Ihr Web-Browser muss dazu korrekt konfiguriert sein." #: smarttags.xhp msgctxt "" @@ -13038,7 +13038,7 @@ "hd_id8142338\n" "help.text" msgid "Smart Tags Menu" -msgstr "Smart Tags Menü" +msgstr "Menü SmartTags" #: smarttags.xhp msgctxt "" @@ -13046,7 +13046,7 @@ "par_id1917477\n" "help.text" msgid "Any text in a Writer document can be marked with a Smart Tag, by default a magenta colored underline. You can change the color in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Application Colors." -msgstr "Jeder beliebiger Text in einem Writer-Dokument kann mit einem Smart-Tag versehen werden, welcher standardmäßig eine magentafarbene Unterstreichung hervorruft. Sie können die Farbe unter %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME - Anwendungsfarben ändern." +msgstr "Jeder beliebige Text in einem Writer-Dokument kann mit SmartTags versehen werden, welche standardmäßig eine magentafarbene Unterstreichung hervorruft. Sie können die Farbe unter %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME - Anwendungsfarben ändern." #: smarttags.xhp msgctxt "" @@ -13054,7 +13054,7 @@ "par_id192266\n" "help.text" msgid "When you point to a Smart Tag, a tip help informs you to Ctrl-click to open the Smart Tags menu. If you don't use a mouse, position the cursor inside the marked text and open the context menu by Shift+F10." -msgstr "Sobald Sie auf ein Smart Tag zeigen, erscheint ein Hinweis, dass Sie das Smart Tag Menü per Strg-Klick öffnen können. Wenn Sie keine Maus verwenden, bewegen Sie den Textcursor in den markierten Text hinein und drücken dann Umschalt+F10." +msgstr "Sobald Sie auf SmartTags zeigen, erscheint ein Hinweis, dass Sie das Menü SmartTags per Strg+Klick öffnen können. Wenn Sie keine Maus verwenden, bewegen Sie den Textcursor in den markierten Text hinein und drücken dann Umschalt+F10." #: smarttags.xhp msgctxt "" @@ -13062,7 +13062,7 @@ "par_id1998962\n" "help.text" msgid "In the Smart Tags menu you see the available actions that are defined for this Smart Tag. Choose an option from the menu. The Smart Tags Options command opens the Smart Tags page of Tools - Autocorrect Options." -msgstr "Im Smart Tag Menü sehen Sie die Aktionen, welche für das aktuelle Smart Tag verfügbar sind. Wählen Sie eine der angezeigten Optionen. Der Eintrag Smart Tag Optionen öffnet das Register Smart Tags im Dialog Extras - AutoKorrektur - AutoKorrektur-Optionen..." +msgstr "Im Menü SmartTags sehen Sie die Aktionen, welche für das aktuelle SmartTag verfügbar sind. Wählen Sie eine der angezeigten Optionen. Der Eintrag SmartTag-Optionen öffnet das Register SmartTags im Dialog Extras - AutoKorrektur - AutoKorrektur-Optionen... ." #: smarttags.xhp msgctxt "" @@ -13070,7 +13070,7 @@ "hd_id2376476\n" "help.text" msgid "To Enable and Disable Smart Tags" -msgstr "So aktivieren oder deaktivieren Sie Smart Tags:" +msgstr "So aktivieren oder deaktivieren Sie SmartTags" #: smarttags.xhp msgctxt "" @@ -13078,7 +13078,7 @@ "par_id349131\n" "help.text" msgid "When you have installed at least one Smart Tags extension, you see the Smart Tags page in Tools - Autocorrect Options. Use this dialog to enable or disable Smart Tags and to manage the installed tags." -msgstr "Wenn Sie mindestens eine Smart Tag Extension installiert haben, sehen Sie das Register Smart Tags im Dialog Extras - AutoKorrektur-Optionen.... Verwenden Sie diesen Dialog, um Smart Tags zu aktivieren, zu deaktivieren und die installierten Smart Tags zu verwalten." +msgstr "Wenn Sie mindestens eine SmartTag-Extension installiert haben, sehen Sie das Register SmartTags im Dialog Extras - AutoKorrektur-Optionen.... Verwenden Sie diesen Dialog, um SmartTags zu aktivieren, zu deaktivieren und die installierten SmartTags zu verwalten." #: smarttags.xhp msgctxt "" @@ -13086,7 +13086,7 @@ "par_id1216467\n" "help.text" msgid "Text that is recognized as a Smart Tag is not checked by the automatic spellcheck." -msgstr "Text, der als Smart Tag erkannt wird, wird nicht durch die automatische Rechtschreibprüfung geprüft." +msgstr "Text, der als SmartTag erkannt wird, wird nicht durch die automatische Rechtschreibprüfung geprüft." #: spellcheck_dialog.xhp msgctxt "" @@ -13438,7 +13438,7 @@ "bm_id3155915\n" "help.text" msgid "Stylist, see Styles and Formatting window styles; updating from selections templates; updating from selections Styles and Formatting window; updating from selections updating; styles, from selections" -msgstr "Formatvorlagen, (Fenster)Formatvorlagen; aktualisieren aus SelektionVorlagen; aktualisieren aus SelektionFormatvorlagen (Fenster); aktualisieren aus SelektionAktualisieren; Formatvorlagen; aus Selektion" +msgstr "Formatvorlagen (Fenster)Formatvorlagen; aktualisieren aus SelektionVorlagen; aktualisieren aus SelektionFormatvorlagen (Fenster); aktualisieren aus SelektionAktualisieren; Formatvorlagen; aus Selektion" #: stylist_update.xhp msgctxt "" @@ -14078,7 +14078,7 @@ "par_id3150965\n" "help.text" msgid "DDE link (only under Windows) " -msgstr " DDE-Verknüpfung (nur unter Windows) " +msgstr "DDE-Verknüpfung (nur unter Windows)" #: table_insert.xhp msgctxt "" @@ -14086,7 +14086,7 @@ "par_id3154377\n" "help.text" msgid "Table structure and contents, without formatting. With updating " -msgstr " Tabellenstruktur und Inhalt, ohne Formatierung. Mit Aktualisierung " +msgstr "Tabellenstruktur und Inhalt, ohne Formatierung. Mit Aktualisierung" #: table_insert.xhp msgctxt "" @@ -14622,7 +14622,7 @@ "bm_id3155913\n" "help.text" msgid "default templates;defining/resetting defaults; templates templates; default templates text documents;default templates" -msgstr "Standardvorlagen; definieren/zurücksetzenStandards; VorlagenVorlagen; StandardvorlagenTextdokumente; Standardvorlagen" +msgstr "Standardvorlagen; definieren/zurücksetzenVorgaben; VorlagenVorlagen; StandardvorlagenTextdokumente; Standardvorlagen" #: template_default.xhp msgctxt "" @@ -14814,7 +14814,7 @@ "par_id3149819\n" "help.text" msgid "In the Effect box, select the animation that you want." -msgstr "Wählen sie im Auswahlfeld Effekt die gewünschte Animation aus." +msgstr "Wählen Sie im Auswahlfeld Effekt die gewünschte Animation aus." #: text_animation.xhp msgctxt "" @@ -14894,7 +14894,7 @@ "par_id1120200910485778\n" "help.text" msgid "Choose Format - Text - Uppercase." -msgstr "Wäheln Sie Format - Textauszeichnung - GROSSBUCHSTABEN." +msgstr "Wählen Sie Format - Textauszeichnung - GROSSBUCHSTABEN." #: text_capital.xhp msgctxt "" @@ -15046,7 +15046,7 @@ "bm_id3155178\n" "help.text" msgid "text; cursorentering text with direct cursordirect cursor; settingswriting with direct cursorcursor;direct cursorsettings;direct cursor" -msgstr "Text; CursorTexteingabe mir dem Direkt-CursorDirekt-Cursor; EinstellungenTexteingabe mit dem Direkt-CursorCursor; Direkt-CursorEinstellungen; Direkt-Cursor" +msgstr "Text; CursorTexteingabe mit dem Direkt-CursorDirekt-Cursor; EinstellungenTexteingabe mit dem Direkt-CursorCursor; Direkt-CursorEinstellungen; Direkt-Cursor" #: text_direct_cursor.xhp msgctxt "" @@ -15470,7 +15470,7 @@ "par_id1031200810571929\n" "help.text" msgid "To select the characters under the moving cursor, additionally hold down the Shift key when you move the cursor." -msgstr "Um Zeichen zu markieren, während Sie den Cursor bewegen, halten Sie zusätzlich die Umschalt-Taste gedrückt." +msgstr "Um Zeichen zu markieren, während Sie den Cursor bewegen, halten Sie zusätzlich die Umschalttaste gedrückt." #: text_nav_keyb.xhp msgctxt "" @@ -16238,7 +16238,7 @@ "par_id3153390\n" "help.text" msgid "For example, to change the bulleting symbol, click the Options tab, click the Select button next to Character, and then select a special character. You can also click the Image tab, and then click a symbol style in the Selection area." -msgstr "Wenn Sie beispielsweise die Symbole für die Aufzählungszeichen ändern wollen, klicken Sie auf das Register Optionen, klicken Sie neben Zeichen auf die Schaltfläche Durchsuchen... und wählen Sie ein Sonderzeichen aus. Sie können auch auf das Register Bild und dann auf auf eine Symbolvorlage im Bereich Auswahl klicken." +msgstr "Wenn Sie beispielsweise die Symbole für die Aufzählungszeichen ändern wollen, klicken Sie auf das Register Optionen, dann neben Zeichen auf die Schaltfläche Durchsuchen... und wählen Sie ein Sonderzeichen aus. Sie können auch auf das Register Bild und dann auf eine Symbolvorlage im Bereich Auswahl klicken." #: using_numbered_lists2.xhp msgctxt "" @@ -16462,7 +16462,7 @@ "par_id3149850\n" "help.text" msgid "Click the Outline & Numbering tab." -msgstr "Klicken Sie auf das Register Gliederung & Nummerierung." +msgstr "Klicken Sie auf das Register Gliederung und Nummerierung." #: using_numbering.xhp msgctxt "" @@ -16918,7 +16918,7 @@ "bm_id3149686\n" "help.text" msgid "words; counting in text number of words documents; number of words/characters text; number of words/characters characters; counting number of characters counting words word counts" -msgstr "Wörter; im Text zählenAnzahl; WörterDokument; Wörter-/ZeichenanzahlText; Wörter-/ZeichenanzahlZeichen; zählenZeichenanzahlWörter; zählenWortanzahl" +msgstr "Wörter; im Text zählenAnzahl an WörternDokument; Wörter-/ZeichenanzahlText; Wörter-/ZeichenanzahlZeichen; zählenZeichenanzahlWörter zählenWortanzahl" #: words_count.xhp msgctxt "" @@ -16982,7 +16982,7 @@ "par_id111620090113399\n" "help.text" msgid "The words can be a mix of letters, numbers, and special characters. So the following text counts as four words: abc123 1.23 \"$\" http://www.example.com." -msgstr "Die Wörter können eine Mischung von Buchstaben, Zahlen oder Sonderzeichen sein. Daher besteht der folgende Text aus vier Wörtern: abc123 1.23 \"$\" http://www.beispiel.com." +msgstr "Die Wörter können eine Mischung von Buchstaben, Zahlen oder Sonderzeichen sein. Daher zählt der folgende Text als bestehend aus vier Wörtern: abc123 1.23 \"$\" http://www.beispiel.com." #: words_count.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/swriter/librelogo.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/swriter/librelogo.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/swriter/librelogo.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/swriter/librelogo.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-07 21:39+0200\n" -"PO-Revision-Date: 2017-10-31 12:23+0000\n" +"PO-Revision-Date: 2017-12-10 06:16+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1509452586.000000\n" +"X-POOTLE-MTIME: 1512886600.000000\n" #: LibreLogo.xhp msgctxt "" @@ -558,7 +558,7 @@ "par_850\n" "help.text" msgid "FORWARD 10 ; move forward 10pt (1pt = 1/72 inch)
FORWARD 10pt ; see above
FORWARD 0.5in ; move forward 0.5 inch (1 inch = 2.54 cm)
FORWARD 1\" ; see above
FD 1mm
FD 1cm
" -msgstr "VOR 10 ; Bewegung vorwärts um 10pt (1pt ≈ 0,373mm)
VOR 10pt ; wie zuvor
VOR 0,5in ; Bewegung vorwärts um 0,5 inch (1 inch = 2,54 cm)
VOR 1\" ; wie zuvor
VR 1mm
VR 1cm
" +msgstr "VOR 10 ; Bewegung vorwärts um 10 pt (1 pt ≈ 0,373 mm)
VOR 10pt ; wie zuvor
VOR 0,5in ; Bewegung vorwärts um 0,5 inch (1 inch = 2,54 cm)
VOR 1\" ; wie zuvor
VR 1mm
VR 1cm
" #: LibreLogo.xhp msgctxt "" @@ -574,7 +574,7 @@ "par_870\n" "help.text" msgid "BACK 10 ; move back 10pt
" -msgstr "ZURÜCK 10 ; Bewegung rückwärts um 10pt
" +msgstr "ZURÜCK 10 ; Bewegung rückwärts um 10 pt
" #: LibreLogo.xhp msgctxt "" @@ -742,7 +742,7 @@ "par_1080\n" "help.text" msgid "CLEARSCREEN ; remove drawing objects of the document
" -msgstr "SÄUBERN ; entfernt alle Zeichnungen aus dem Dokument
" +msgstr "SÄUBERN ; entfernt alle Zeichnungsobjekte aus dem Dokument
" #: LibreLogo.xhp msgctxt "" @@ -814,7 +814,7 @@ "par_1130\n" "help.text" msgid "PENSIZE 100 ; line width is 100 points
PENSIZE ANY ; equivalent of PENSIZE RANDOM 10
" -msgstr "STIFTBREITE 100 ; Linie mit 100pt Breite
STIFTBREITE BELIEBIG ; Genauso wie SB ZUFÄLLIG 10
" +msgstr "STIFTBREITE 100 ; Linie mit 100 pt Breite
STIFTBREITE BELIEBIG ; Genauso wie SB ZUFÄLLIG 10
" #: LibreLogo.xhp msgctxt "" @@ -846,7 +846,7 @@ "par_1152\n" "help.text" msgid "PENTRANSPARENCY 80 ; set the transparency of the actual pen color to 80%
" -msgstr "STIFTTRANSPARENZ 80 ; Setzt die Transparenz der aktuellen Stiftfarbe auf 80%
" +msgstr "STIFTTRANSPARENZ 80 ; Setzt die Transparenz der aktuellen Stiftfarbe auf 80 %
" #: LibreLogo.xhp msgctxt "" @@ -918,7 +918,7 @@ "par_1220\n" "help.text" msgid "FILLCOLOR “blue” ; fill with blue color, see also PENCOLOR
FILLCOLOR “invisible” CIRCLE 10 ; unfilled circle
FILLCOLOR [“blue”, “red”] ; gradient between red and blue
FILLCOLOR [[255, 255, 255], [255, 128, 0]] ; between white and orange
FILLCOLOR [“blue”, “red”, 1, 0, 0] ; set axial gradient (with the required rotation and border settings), possible values: 0-5 = linear, axial, radial, elliptical, square and rectangle gradients
FILLCOLOR [“red”, “blue”, 0, 90, 20] ; linear with 20% border, rotated with 90 degrees from the actual heading of the turtle
FILLCOLOR [“red”, “blue”, 0, 90, 20, 0, 0, 200, 50] ; from 200% to 50% intensity
FILLCOLOR [ANY, ANY, 2, 0, 0, 50, 50] ; radial gradient with random colors and 50-50% horizontal and vertical positions of the center
" -msgstr "FÜLLFARBE „blau“ ; Mit blauer Farbe gefüllt, vergleichen Sie STIFTFARBE
FÜLLFARBE „ohne“ KREIS 10 ; Nicht gefüllter Kreis
FÜLLFARBE [„blau“, „rot“] ; Farbverlauf von rot nach blau
FÜLLFARBE [[255, 255, 255], [255, 128, 0]] ; Farbverlauf von weiß nach orange
FÜLLFARBE [„blau“, „rot“, 1, 0, 0] ; Axialer Farbverlauf (zuzüglich der erforderlichen Einstellungen für Drehung und Umrandung), mögliche Werte sind: 0-5 = linear, axial, radial, elliptisch, quadratisch und rechteckig
FÜLLFARBE [„rot“, „blau“, 0, 90, 20] ; Linearer Farbverlauf, um 90° gedreht zur derzeitigen Turtleausrichtung und 20% Rahmen
FÜLLFARBE [„rot“, „blau“, 0, 90, 20, 0, 0, 200, 50] ; Farverlauf mit von 200% zu 50% abnehmender Farbintensität
FF [BEL, BEL, 2, 0, 0, 50, 50] ; Radialer Farbverlauf mit zufälligen Farben, 50% horizontaler sowie 50% vertiakler Ausrichtung des Zentrums
" +msgstr "FÜLLFARBE „blau“ ; Mit blauer Farbe gefüllt, vergleichen Sie STIFTFARBE
FÜLLFARBE „ohne“ KREIS 10 ; Nicht gefüllter Kreis
FÜLLFARBE [„blau“, „rot“] ; Farbverlauf von rot nach blau
FÜLLFARBE [[255, 255, 255], [255, 128, 0]] ; Farbverlauf von weiß nach orange
FÜLLFARBE [„blau“, „rot“, 1, 0, 0] ; Axialer Farbverlauf (zuzüglich der erforderlichen Einstellungen für Drehung und Umrandung), mögliche Werte sind: 0-5 = linear, axial, radial, elliptisch, quadratisch und rechteckig
FÜLLFARBE [„rot“, „blau“, 0, 90, 20] ; Linearer Farbverlauf, um 90° gedreht zur derzeitigen Turtleausrichtung und 20 % Rahmen
FÜLLFARBE [„rot“, „blau“, 0, 90, 20, 0, 0, 200, 50] ; Farbverlauf mit von 200 % zu 50 % abnehmender Farbintensität
FF [BEL, BEL, 2, 0, 0, 50, 50] ; Radialer Farbverlauf mit zufälligen Farben, 50 % horizontaler und 50 % vertikaler Ausrichtung des Zentrums
" #: LibreLogo.xhp msgctxt "" @@ -934,7 +934,7 @@ "par_1226\n" "help.text" msgid "FILLTRANSPARENCY 80 ; set the transparency of the actual fill color to 80%
FILLTRANSPARENCY [80] ; set linear transparency gradient from 80% to 0%
FILLTRANSPARENCY [80, 20] ; set linear transparency gradient from 80% to 20%
FILLTRANSPARENCY [80, 20, 1, 90] ; set axial transparency gradient rotated with 90 degrees from the actual heading of the turtle
FILLTRANSPARENCY [80, 20, 2, 0, 20, 50, 50] ; set radial transparency gradient from outer 80% to inner 20% transparency with 20% border and with 50-50% horizontal and vertical positions of the center
" -msgstr "FÜLLTRANSPARENZ 80 ; Legt die Transparenz der aktuellen Füllfarbe auf 80% fest
FÜLLTRANSPARENZ [80] ; Ergibt einen Transparenzverlauf von 80% auf 0% abnehmend
FÜLLTRANSPARENZ [80, 20] ; Ergibt einen Transparenzverlauf von 80% auf 20% abnehmend
FÜLLTRANSPARENZ [80, 20, 1, 90] ; Ergibt einen axialen Transparenzverlauf, um 90° gedreht zur derzeitigen Turtleausrichtung
FT [80, 20, 2, 0, 20, 50, 50] ; Ergibt einen radialen Transparenzverlauf von außen 80% auf innen 20% Transparenz, mit 20% Rahmen und 50% horizontaler sowie 50% vertikaler Ausrichtung des Zentrums
" +msgstr "FÜLLTRANSPARENZ 80 ; Legt die Transparenz der aktuellen Füllfarbe auf 80 % fest
FÜLLTRANSPARENZ [80] ; Ergibt einen Transparenzverlauf von 80 % auf 0 % abnehmend
FÜLLTRANSPARENZ [80, 20] ; Ergibt einen Transparenzverlauf von 80 % auf 20 % abnehmend
FÜLLTRANSPARENZ [80, 20, 1, 90] ; Ergibt einen axialen Transparenzverlauf, um 90° gedreht zur derzeitigen Turtleausrichtung
FT [80, 20, 2, 0, 20, 50, 50] ; Ergibt einen radialen Transparenzverlauf von außen 80 % auf innen 20 % Transparenz, mit 20 % Rahmen und 50 % horizontaler und 50% vertikaler Ausrichtung des Zentrums
" #: LibreLogo.xhp msgctxt "" @@ -950,7 +950,7 @@ "par_1240\n" "help.text" msgid "FILLSTYLE 0 ; fill without hatches (default)
FILLSTYLE 1 ; black single hatches (horizontal)
FILLSTYLE 2 ; black single hatches (45 degrees)
FILLSTYLE 3 ; black single hatches (-45 degrees)
FILLSTYLE 4 ; black single hatches (vertical)
FILLSTYLE 5 ; red crossed hatches (45 degrees)
FILLSTYLE 6 ; red crossed hatches (0 degrees)
FILLSTYLE 7 ; blue crossed hatches (45 degrees)
FILLSTYLE 8 ; blue crossed hatches (0 degrees)
FILLSTYLE 9 ; blue triple crossed
FILLSTYLE 10 ; black wide single hatches (45 degrees)

; custom hatches specified by a list with the following arguments:
; – style (1 = single, 2 = double, 3 = triple hatching)
; – color
; – distance
; – degree

FILLSTYLE [2, “green”, 3pt, 15°] ; green crossed hatches (15 degrees)
" -msgstr "FÜLLSTIL 0 ; Ohne Schraffuren (Standard)
FÜLLSTIL 1 ; Einfache schwarze Schraffur (horizontal)
FÜLLSTIL 2 ; Einfache schwarze Schraffur (45° nach rechts geneigt)
FÜLLSTIL 3 ; Einfache schwarze Schraffur (45° nach links geneigt)
FÜLLSTIL 4 ; Einfache schwarze Schraffur (vertikal)
FÜLLSTIL 5 ; Gekreuzte rote Schraffur (45° geneigt)
FÜLLSTIL 6 ; Gekreuzte rote Schraffur (horizontal/vertikal)
FÜLLSTIL 7 ; Gekreuzte blaue Schraffur (45° geneigt)
FÜLLSTIL 8 ; Gekreuzte blaue Schraffur (horizontal/vertikal)
FÜLLSTIL 9 ; Dreifach gekreuzte blaue Schraffur
FÜLLSTIL 10 ; Einfache schwarze Schraffur mit großen Abständen (45° nach rechts geneigt)

; Benutzerdefinierte Schraffuren sind mit der Liste folgender Argumente möglich:
; – Stil (1: einfache, 2: doppelte, 3: dreifache Schraffur)
; – Farbe
; – Abstand
; – Neigung

FS [2, „grün“, 3pt, 15°] ; Gekreuzte gründe Schraffur (15° Neigung nach rechts)
" +msgstr "FÜLLSTIL 0 ; Ohne Schraffuren (Standard)
FÜLLSTIL 1 ; Einfache schwarze Schraffur (horizontal)
FÜLLSTIL 2 ; Einfache schwarze Schraffur (45° nach rechts geneigt)
FÜLLSTIL 3 ; Einfache schwarze Schraffur (45° nach links geneigt)
FÜLLSTIL 4 ; Einfache schwarze Schraffur (vertikal)
FÜLLSTIL 5 ; Gekreuzte rote Schraffur (45° geneigt)
FÜLLSTIL 6 ; Gekreuzte rote Schraffur (horizontal/vertikal)
FÜLLSTIL 7 ; Gekreuzte blaue Schraffur (45° geneigt)
FÜLLSTIL 8 ; Gekreuzte blaue Schraffur (horizontal/vertikal)
FÜLLSTIL 9 ; Dreifach gekreuzte blaue Schraffur
FÜLLSTIL 10 ; Einfache schwarze Schraffur mit großen Abständen (45° nach rechts geneigt)

; Benutzerdefinierte Schraffuren sind mit der Liste folgender Argumente möglich:
; – Stil (1: einfache, 2: doppelte, 3: dreifache Schraffur)
; – Farbe
; – Abstand
; – Neigung

FS [2, „grün“, 3 pt, 15°] ; Gekreuzte grüne Schraffur (15° Neigung nach rechts)
" #: LibreLogo.xhp msgctxt "" @@ -974,7 +974,7 @@ "par_1270\n" "help.text" msgid "CIRCLE 100 ; draw a circle shape (diameter = 100pt)
" -msgstr "KREIS 100 ; Zeichnet den Umriss eines Kreises (Durchmesser: 100pt)
" +msgstr "KREIS 100 ; Zeichnet den Umriss eines Kreises (Durchmesser: 100 pt)
" #: LibreLogo.xhp msgctxt "" @@ -990,7 +990,7 @@ "par_1290\n" "help.text" msgid "ELLIPSE [50, 100] ; draw an ellipse with 50 and 100 diameters
ELLIPSE [50, 100, 2h, 12h] ; draw an elliptical sector (from 2h clock position to 12h)
ELLIPSE [50, 100, 2h, 12h, 2] ; draw an elliptical segment
ELLIPSE [50, 100, 2h, 12h, 3] ; draw an elliptical arc
" -msgstr "ELLIPSE [50, 100] ; Zeichnet eine Ellipse mit 50pt und 100pt in den Durchmessern
ELLIPSE [50, 100, 2h, 12h] ; Zeichnet einen Ellipsensektor (Ausschnitt) (von Position 2 Uhr bis Position 12 Uhr im Uhrzeigersinn)
ELLIPSE [50, 100, 2h, 12h, 2] ; Zeichnet eine Ellipsensegment (Abschnitt)
ELLIPSE [50, 100, 2h, 12h, 3] ; Zeichnet einen Ellipsenbogen
" +msgstr "ELLIPSE [50, 100] ; Zeichnet eine Ellipse mit 50 pt und 100 pt in den Durchmessern
ELLIPSE [50, 100, 2h, 12h] ; Zeichnet einen Ellipsensektor (Ausschnitt) (von Position 2 Uhr bis Position 12 Uhr im Uhrzeigersinn)
ELLIPSE [50, 100, 2h, 12h, 2] ; Zeichnet eine Ellipsensegment (Abschnitt)
ELLIPSE [50, 100, 2h, 12h, 3] ; Zeichnet einen Ellipsenbogen
" #: LibreLogo.xhp msgctxt "" @@ -1006,7 +1006,7 @@ "par_1310\n" "help.text" msgid "SQUARE 100 ; draw a square shape (size = 100pt)
" -msgstr "QUADRAT 100 ; Zeichnet den Umriss eines Quadrats (Kantenlänge 100pt)
" +msgstr "QUADRAT 100 ; Zeichnet den Umriss eines Quadrates (Kantenlänge 100 pt)
" #: LibreLogo.xhp msgctxt "" @@ -1022,7 +1022,7 @@ "par_1330\n" "help.text" msgid "RECTANGLE [50, 100] ; draw a rectangle shape (50×100pt)
RECTANGLE [50, 100, 10] ; draw a rectangle with rounded corners
" -msgstr "RECHTECK [50, 100] ; Zeichnet den Umriss eines Rechtecks (Kantenlängen 50pt und 100pt)
RECHTECK [50, 100, 10] ; Zeichnet ein Rechteck mit abgerundeten Ecken
" +msgstr "RECHTECK [50, 100] ; Zeichnet den Umriss eines Rechtecks (Kantenlängen 50 pt und 100 pt)
RECHTECK [50, 100, 10] ; Zeichnet ein Rechteck mit abgerundeten Ecken
" #: LibreLogo.xhp msgctxt "" @@ -1142,7 +1142,7 @@ "par_1460\n" "help.text" msgid "FONTSIZE 12 ; set 12pt
" -msgstr "SCHRIFTGRÖSSE 12 ; Ändert die Schriftgröße auf 12pt
" +msgstr "SCHRIFTGRÖSSE 12 ; Ändert die Schriftgröße auf 12 pt
" #: LibreLogo.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/swriter.po libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/swriter.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/helpcontent2/source/text/swriter.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/helpcontent2/source/text/swriter.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-20 14:17+0200\n" -"PO-Revision-Date: 2017-10-22 12:00+0000\n" +"PO-Revision-Date: 2017-12-09 14:20+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1508673628.000000\n" +"X-POOTLE-MTIME: 1512829225.000000\n" #: classificationbar.xhp msgctxt "" @@ -838,7 +838,7 @@ "par_id3155358\n" "help.text" msgid "The Insert menu contains commands for inserting new elements in your document. This includes images, media, charts, objects from other applications, hyperlink, comments, symbols, footnotes, and sections." -msgstr "Das Menü Einfügen enthält Befehle zum Einfügen neuer Elemente in Ihr Dokument. Dies umfasst Bilder, Medien, Diagramme, Objekte aus anderen Anwendungen, Querverweise, Kommentare, Symbole, Fußnoten und Abschnitte." +msgstr "Das Menü Einfügen enthält Befehle zum Einfügen neuer Elemente in Ihr Dokument. Dies umfasst Bilder, Medien, Diagramme, Objekte aus anderen Anwendungen, Hyperlinks, Kommentare, Symbole, Fußnoten und Abschnitte." #: main0104.xhp msgctxt "" @@ -1974,7 +1974,7 @@ "par_id8193914\n" "help.text" msgid "Displays the language for the selected text.
Click to open a menu where you can choose another language for the selected text or for the current paragraph.
Choose None to exclude the text from spellchecking and hyphenation.
Choose Reset to Default Language to re-apply the default language for the selection or the paragraph.
Choose More to open a dialog with more options.
" -msgstr "Zeigt die Spracheinstellung für den markierten Text.
Klicken Sie hier, um ein Menü zur Auswahl einer anderen Sprache für den markierten Text oder den gesamten Absatz zu öffnen.
Wählen Sie 'Keine (Rechtschreibung nicht prüfen)', um den Text von der Rechtschreibprüfung und der Silbentrennung auszuschließen.
Wählen Sie 'Auf die Standardsprache zurücksetzen', um die Standardsprache wieder für den markierten Text oder den Absatz anzuwenden.
Wählen Sie 'Mehr...', um einen Dialog mit weiteren Optionen zu öffnen.
" +msgstr "Zeigt die Spracheinstellung für den markierten Text.
Klicken Sie hier, um ein Menü zur Auswahl einer anderen Sprache für den markierten Text oder den gesamten Absatz zu öffnen.
Wählen Sie \"Keine (Rechtschreibung nicht prüfen)\", um den Text von der Rechtschreibprüfung und der Silbentrennung auszuschließen.
Wählen Sie \"Auf die Standardsprache zurücksetzen\", um die Standardsprache wieder für den markierten Text oder den Absatz anzuwenden.
Wählen Sie \"Mehr...\", um einen Dialog mit weiteren Optionen zu öffnen.
" #: main0208.xhp msgctxt "" @@ -2414,7 +2414,7 @@ "par_id3147272\n" "help.text" msgid "You can also create various indexes and tables in text documents. You can define the structure and appearance of the indexes and tables according to your individual needs. Live hyperlinks and bookmarks let you jump directly to the corresponding items in the text." -msgstr "Ebenso können Sie in Textdokumenten verschiedene Verzeichnisse erzeugen. Struktur und Erscheinungsbild der Verzeichnisse lassen sich an Ihre individuellen Bedürfnisse anpassen. Über Live-Hyperlinks und Lesezeichen können Sie direkt zu den betreffenden Textstellen springen." +msgstr "Ebenso können Sie in Textdokumenten verschiedene Verzeichnisse erzeugen. Struktur und Erscheinungsbild der Verzeichnisse lassen sich an Ihre individuellen Bedürfnisse anpassen. Über aktive Hyperlinks und Lesezeichen können Sie direkt zu den betreffenden Textstellen springen." #: main0503.xhp msgctxt "" @@ -2494,7 +2494,7 @@ "par_id3155098\n" "help.text" msgid "The program interface is designed so that you can configure it according to your preferences, including customizing icons and menus. You can position various program windows, such as the Styles and Formatting window or the Navigator as floating windows anywhere on the screen. You can also dock some windows to the edge of the workspace." -msgstr "Die Benutzeroberfläche ist so konzipiert, dass Sie sie ganz nach Ihren Bedürfnissen konfigurieren können. Auch Symbole und Menüs lassen sich nach Belieben anpassen. Bestimmte Programmfenster wie die Formatvorlagen oder der Navigator sind als schwebende Fenster frei auf dem Bildschirm platzierbar. Einige Fenster können außerdem am Rand des Arbeitsbereichs angedockt werden." +msgstr "Die Programmoberfläche ist so konzipiert, dass Sie sie ganz nach Ihren Bedürfnissen konfigurieren können. Auch Symbole und Menüs lassen sich nach Belieben anpassen. Bestimmte Programmfenster wie die Formatvorlagen oder der Navigator sind als schwebende Fenster frei auf dem Bildschirm platzierbar. Einige Fenster können außerdem am Rand des Arbeitsbereiches angedockt werden." #: main0503.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.4.4~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-06-20 13:56+0200\n" -"PO-Revision-Date: 2017-10-15 05:55+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-11-28 18:19+0000\n" +"Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1508046937.000000\n" +"X-POOTLE-MTIME: 1511893157.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -3299,7 +3299,7 @@ "Label\n" "value.text" msgid "Number Format" -msgstr "Zahlforma~t" +msgstr "Zahlenforma~t" #: CalcCommands.xcu msgctxt "" @@ -16259,7 +16259,7 @@ "Label\n" "value.text" msgid "200%" -msgstr "~200%" +msgstr "~200 %" #: GenericCommands.xcu msgctxt "" @@ -16268,7 +16268,7 @@ "Label\n" "value.text" msgid "150%" -msgstr "15~0%" +msgstr "15~0 %" #: GenericCommands.xcu msgctxt "" @@ -16277,7 +16277,7 @@ "Label\n" "value.text" msgid "100%" -msgstr "~100%" +msgstr "~100 %" #: GenericCommands.xcu msgctxt "" @@ -16286,7 +16286,7 @@ "Label\n" "value.text" msgid "75%" -msgstr "~75%" +msgstr "~75 %" #: GenericCommands.xcu msgctxt "" @@ -16295,7 +16295,7 @@ "Label\n" "value.text" msgid "50%" -msgstr "~50%" +msgstr "~50 %" #: GenericCommands.xcu msgctxt "" @@ -17989,7 +17989,7 @@ "Label\n" "value.text" msgid "Smart Tags" -msgstr "Geeignete Schlagwörter" +msgstr "SmartTags" #: GenericCommands.xcu msgctxt "" @@ -18574,7 +18574,7 @@ "TooltipLabel\n" "value.text" msgid "Show Draw Functions" -msgstr "Zeichenfunktionen anzeigen" +msgstr "Zeichnungsfunktionen anzeigen" #: GenericCommands.xcu msgctxt "" @@ -19546,7 +19546,7 @@ "Label\n" "value.text" msgid "Circle Pie" -msgstr "Ellipsensektor" +msgstr "Kreissektor" #: GenericCommands.xcu msgctxt "" @@ -26683,7 +26683,7 @@ "Label\n" "value.text" msgid "Number Format..." -msgstr "Zahlfor~mat..." +msgstr "Zahlenfor~mat..." #: WriterCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/readlicense_oo/docs.po libreoffice-l10n-5.4.4~rc2/translations/source/de/readlicense_oo/docs.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/readlicense_oo/docs.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/readlicense_oo/docs.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-03-09 20:48+0100\n" -"PO-Revision-Date: 2017-10-02 14:51+0000\n" +"PO-Revision-Date: 2017-11-20 10:06+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1506955907.000000\n" +"X-POOTLE-MTIME: 1511172379.000000\n" #: readme.xrm msgctxt "" @@ -174,7 +174,7 @@ "s2we11\n" "readmeitem.text" msgid "This \"stand-alone\" ${PRODUCTNAME} installer is provided for users in need of previews, having special needs, and for out-of-the-ordinary cases." -msgstr "Dieses \"stand-alone\"-${PRODUCTNAME}-Installationsprogramm wird für Anwender angeboten, die Previews benötigen oder spezielle Bedürfnisse haben." +msgstr "Dieses \"stand-alone\"-${PRODUCTNAME}-Installationsprogramm wird für Anwender angeboten, die Vorschauen benötigen oder spezielle Bedürfnisse haben." #: readme.xrm msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/reportdesign/source/ui/dlg.po libreoffice-l10n-5.4.4~rc2/translations/source/de/reportdesign/source/ui/dlg.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/reportdesign/source/ui/dlg.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/reportdesign/source/ui/dlg.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n" -"PO-Revision-Date: 2017-07-22 13:20+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-11-09 19:02+0000\n" +"Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500729607.000000\n" +"X-POOTLE-MTIME: 1510254122.000000\n" #: CondFormat.src msgctxt "" @@ -158,7 +158,7 @@ "STR_RPT_HELP_SORT\n" "string.text" msgid "Select ascending or descending sort order. Ascending means from A to Z or 0 to 9" -msgstr "Wählen Sie aufsteigende oder absteigende Sortierung aus. Aufsteigend bedeuted A bis Z beziehungsweise 0 bis 9." +msgstr "Wählen Sie aufsteigende oder absteigende Sortierung aus. Aufsteigend bedeutet A bis Z beziehungsweise 0 bis 9" #: Navigator.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/sc/source/ui/src.po libreoffice-l10n-5.4.4~rc2/translations/source/de/sc/source/ui/src.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/sc/source/ui/src.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/sc/source/ui/src.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-20 13:55+0200\n" -"PO-Revision-Date: 2017-10-14 05:24+0000\n" +"PO-Revision-Date: 2017-12-10 06:03+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1507958643.000000\n" +"X-POOTLE-MTIME: 1512885789.000000\n" #: globstr.src msgctxt "" @@ -778,7 +778,7 @@ "STR_MSSG_REMOVEOUTLINE_0+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Ungrouping not possible" -msgstr "Aufheben nicht möglich" +msgstr "Aufheben der Gruppierung nicht möglich" #: globstr.src msgctxt "" @@ -2132,7 +2132,7 @@ "STR_VOBJ_DRAWINGS+RID_GLOBSTR_OFFSET\n" "string.text" msgid "Drawing Objects" -msgstr "Zeichenobjekte" +msgstr "Zeichnungsobjekte" #: globstr.src msgctxt "" @@ -2952,7 +2952,7 @@ msgstr "" "Das Tabellendokument ist freigegeben. Dadurch können mehrere Benutzer auf das Tabellendokument zugreifen und Änderungen vornehmen.\n" "\n" -"Änderungen von Formatierungen wie Schriftarten, Farben und Zahlenformate werden im freigegebenen Modus nicht gespeichert; außerdem stehen einige Funktionen, wie das Bearbeiten von Diagrammen und Zeichnungsobjekten nicht zur Verfügung. Heben Sie die Freigabe auf, um Exklusivzugriff zu erhalten, wenn Sie entsprechende Änderungen vornehmen möchten." +"Änderungen von Formatierungen, wie Schriftarten, Farben und Zahlenformate werden im freigegebenen Modus nicht gespeichert und einige Funktionen, wie das Bearbeiten von Diagrammen und Zeichnungsobjekten, stehen nicht zur Verfügung. Heben Sie die Freigabe auf, um Exklusivzugriff zu erhalten, wenn Sie entsprechende Änderungen vornehmen möchten." #: globstr.src msgctxt "" @@ -3762,7 +3762,7 @@ "STR_CTRLCLICKHYPERLINK+RID_GLOBSTR_OFFSET\n" "string.text" msgid "%s-click to follow hyperlink:" -msgstr "%s-Klick, um der Verknüpfung zu folgen" +msgstr "%s+Klick, um dem Hyperlink zu folgen:" #: globstr.src msgctxt "" @@ -8146,7 +8146,7 @@ "Returns value if not a #N/A error, else alternative.\n" "itemlist.text" msgid "Returns value if not a #N/A error, else alternative." -msgstr "Liefert einen Wert zurück, wenn kein #NV-Fehler vorliegt, ansonsten den Alternativwert." +msgstr "Liefert einen Wert zurück, wenn kein #NV-Fehler vorliegt, ansonsten den alternativen Wert." #: scfuncs.src msgctxt "" @@ -8182,7 +8182,7 @@ "The alternative to be returned, should value be a #N/A error.\n" "itemlist.text" msgid "The alternative to be returned, should value be a #N/A error." -msgstr "Der Alternativwert, der zurückgeliefert wird, wenn ein #NV-Fehler vorliegt." +msgstr "Der alternative Wert, der zurückgeliefert wird, wenn ein #NV-Fehler vorliegt." #: scfuncs.src msgctxt "" @@ -11621,7 +11621,7 @@ "Calculates the variance based on a sample.\n" "itemlist.text" msgid "Calculates the variance based on a sample." -msgstr "Berechnet die Varianz, ausgehend von einer Stichprobe." +msgstr "Berechnet die Varianz, basierend auf einer Stichprobe." #: scfuncs.src msgctxt "" @@ -11648,7 +11648,7 @@ "Calculates the variance based on a sample.\n" "itemlist.text" msgid "Calculates the variance based on a sample." -msgstr "Berechnet die Varianz, ausgehend von einer Stichprobe." +msgstr "Berechnet die Varianz, basierend auf einer Stichprobe." #: scfuncs.src msgctxt "" @@ -11675,7 +11675,7 @@ "Returns the variance based on a sample. Text is evaluated as zero.\n" "itemlist.text" msgid "Returns the variance based on a sample. Text is evaluated as zero." -msgstr "Berechnet die Varianz, ausgehend von einer Stichprobe. Text wird als Null gewertet." +msgstr "Berechnet die Varianz, basierend auf einer Stichprobe. Text wird als Null gewertet." #: scfuncs.src msgctxt "" @@ -11783,7 +11783,7 @@ "Calculates the standard deviation based on a sample.\n" "itemlist.text" msgid "Calculates the standard deviation based on a sample." -msgstr "Berechnet die Standardabweichung, ausgehend von einer Stichprobe." +msgstr "Berechnet die Standardabweichung, basierend auf einer Stichprobe." #: scfuncs.src msgctxt "" @@ -11810,7 +11810,7 @@ "Calculates the standard deviation based on a sample.\n" "itemlist.text" msgid "Calculates the standard deviation based on a sample." -msgstr "Berechnet die Standardabweichung, ausgehend von einer Stichprobe." +msgstr "Berechnet die Standardabweichung, basierend auf einer Stichprobe." #: scfuncs.src msgctxt "" @@ -11837,7 +11837,7 @@ "Returns the standard deviation based on a sample. Text is evaluated as zero.\n" "itemlist.text" msgid "Returns the standard deviation based on a sample. Text is evaluated as zero." -msgstr "Berechnet die Standardabweichung, ausgehend von einer Stichprobe. Text wird als Null gewertet." +msgstr "Berechnet die Standardabweichung, basierend auf einer Stichprobe. Text wird als Null gewertet." #: scfuncs.src msgctxt "" @@ -12467,7 +12467,7 @@ "The type of the quartile (0 = MIN, 1 = 25%, 2 = 50%, 3 = 75%, 4 = MAX).\n" "itemlist.text" msgid "The type of the quartile (0 = MIN, 1 = 25%, 2 = 50%, 3 = 75%, 4 = MAX)." -msgstr "Die Art des Quartils (0 = MIN, 1 = 25%, 2 = 50%, 3 = 75%, 4 = MAX)." +msgstr "Die Art des Quartils (0 = MIN, 1 = 25 %, 2 = 50 %, 3 = 75 %, 4 = MAX)." #: scfuncs.src msgctxt "" @@ -12512,7 +12512,7 @@ "The type of the quartile (1 = 25%, 2 = 50%, 3 = 75%).\n" "itemlist.text" msgid "The type of the quartile (1 = 25%, 2 = 50%, 3 = 75%)." -msgstr "Die Art des Quartils (1 = 25%, 2 = 50%, 3 = 75%)." +msgstr "Die Art des Quartils (1 = 25 %, 2 = 50 %, 3 = 75 %)." #: scfuncs.src msgctxt "" @@ -12557,7 +12557,7 @@ "The type of the quartile (0 = MIN, 1 = 25%, 2 = 50%, 3 = 75%, 4 = MAX).\n" "itemlist.text" msgid "The type of the quartile (0 = MIN, 1 = 25%, 2 = 50%, 3 = 75%, 4 = MAX)." -msgstr "Die Art des Quartils (0 = MIN, 1 = 25%, 2 = 50%, 3 = 75%, 4 = MAX)." +msgstr "Die Art des Quartils (0 = MIN, 1 = 25 %, 2 = 50 %, 3 = 75 %, 4 = MAX)." #: scfuncs.src msgctxt "" @@ -17381,7 +17381,7 @@ "Calculates the probability of observing a z-statistic greater than the one computed based on a sample.\n" "itemlist.text" msgid "Calculates the probability of observing a z-statistic greater than the one computed based on a sample." -msgstr "Berechnet die Wahrscheinlichkeit einer z-Statistik, die größer als die auf Basis der Stichprobe errechneten ist." +msgstr "Berechnet die Wahrscheinlichkeit des Beobachtens einer z-Statistik, die größer ist als die basierend auf einer Stichprobe berechnete." #: scfuncs.src msgctxt "" @@ -17444,7 +17444,7 @@ "Calculates the probability of observing a z-statistic greater than the one computed based on a sample.\n" "itemlist.text" msgid "Calculates the probability of observing a z-statistic greater than the one computed based on a sample." -msgstr "Berechnet die Wahrscheinlichkeit des Beobachtens einer Z-Statistik, die größer ist als die auf einem Beispiel berechnete." +msgstr "Berechnet die Wahrscheinlichkeit des Beobachtens einer z-Statistik, die größer ist als die basierend auf einer Stichprobe berechnete." #: scfuncs.src msgctxt "" @@ -18623,7 +18623,7 @@ "Confidence level (default 0.95); value 0 to 1 (exclusive) for 0 to 100% calculated prediction interval.\n" "itemlist.text" msgid "Confidence level (default 0.95); value 0 to 1 (exclusive) for 0 to 100% calculated prediction interval." -msgstr "Konfidenzintervall (Standardwert: 0,95); Wert zwischen 0 und 1 (exklusiv) für 0% bis 100% zur Berechnung des Vorhersageintervalls." +msgstr "Konfidenzintervall (Standardwert: 0,95); Wert zwischen 0 und 1 (exklusiv) für 0 % bis 100 % zur Berechnung des Vorhersageintervalls." #: scfuncs.src msgctxt "" @@ -18758,7 +18758,7 @@ "Confidence level (default 0.95); value 0 to 1 (exclusive) for 0 to 100% calculated prediction interval.\n" "itemlist.text" msgid "Confidence level (default 0.95); value 0 to 1 (exclusive) for 0 to 100% calculated prediction interval." -msgstr "Konfidenzintervall (Standardwert: 0,95); Wert zwischen 0 und 1 (exklusiv) für 0% bis 100% zur Berechnung des Vorhersageintervalls." +msgstr "Konfidenzintervall (Standardwert: 0,95); Wert zwischen 0 und 1 (exklusiv) für 0 % bis 100 % zur Berechnung des Vorhersageintervalls." #: scfuncs.src msgctxt "" @@ -18956,7 +18956,7 @@ "Value (1-9) or array of values, indicating which statistic will be returned for the calculated forecast\n" "itemlist.text" msgid "Value (1-9) or array of values, indicating which statistic will be returned for the calculated forecast" -msgstr "Wert (1-9) beziehungsweise Matrix mit Werten, der angibt, wecher Statistikwert für die zu berechnende Prognose zurückgegeben werden soll" +msgstr "Wert (1-9) beziehungsweise Matrix mit Werten, der angibt, welcher Statistikwert für die zu berechnende Prognose zurückgegeben werden soll" #: scfuncs.src msgctxt "" @@ -19073,7 +19073,7 @@ "Value (1-9) or array of values, indicating which statistic will be returned for the calculated forecast\n" "itemlist.text" msgid "Value (1-9) or array of values, indicating which statistic will be returned for the calculated forecast" -msgstr "Wert (1-9) beziehungsweise Matrix mit Werten, der angibt, wecher Statistikwert für die zu berechnende Prognose zurückgegeben werden soll" +msgstr "Wert (1-9) beziehungsweise Matrix mit Werten, der angibt, welcher Statistikwert für die zu berechnende Prognose zurückgegeben werden soll" #: scfuncs.src msgctxt "" @@ -20072,7 +20072,7 @@ "Returns a number corresponding to one of the error values or #N/A if no error exists\n" "itemlist.text" msgid "Returns a number corresponding to one of the error values or #N/A if no error exists" -msgstr "Gibt eine Zahl zurück, die einem der Fehlerwerte entspricht, oder #NV, falls kein Fehler existiert." +msgstr "Gibt eine Zahl zurück, die einem der Fehlerwerte entspricht, oder #NV, falls kein Fehler existiert" #: scfuncs.src msgctxt "" @@ -22124,7 +22124,7 @@ "If omitted or 0 or FALSE, the result is rounded to the decimals of to_currency. Else the result is not rounded.\n" "itemlist.text" msgid "If omitted or 0 or FALSE, the result is rounded to the decimals of to_currency. Else the result is not rounded." -msgstr "Falls nicht angegeben oder 0 oder FALSCH, wird das Ergebnis auf die Anzahl Dezimalstellen der Zielwährung gerundet. Anderenfalls erfolgt keine Rundung." +msgstr "Falls nicht angegeben oder 0 oder FALSCH, wird das Ergebnis auf die Anzahl Dezimalstellen der Zielwährung gerundet. Ansonsten erfolgt keine Rundung." #: scfuncs.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/sc/uiconfig/scalc/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/de/sc/uiconfig/scalc/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/sc/uiconfig/scalc/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/sc/uiconfig/scalc/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "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: 2017-05-17 15:41+0200\n" -"PO-Revision-Date: 2017-10-26 15:35+0000\n" +"PO-Revision-Date: 2017-11-28 18:11+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: none\n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1509032131.000000\n" +"X-POOTLE-MTIME: 1511892703.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -338,7 +338,7 @@ "label\n" "string.text" msgid "_Number format" -msgstr "_Zahlen" +msgstr "_Zahlenformat" #: autoformattable.ui msgctxt "" @@ -3341,7 +3341,7 @@ "label\n" "string.text" msgid "_Date & time" -msgstr "_Datum & Zeit" +msgstr "_Datum und Zeit" #: deletecontents.ui msgctxt "" @@ -4169,7 +4169,7 @@ "label\n" "string.text" msgid "Conversion from text to number:" -msgstr "Konvertiertierung von Text in eine Zahl:" +msgstr "Konvertierung von Text in eine Zahl:" #: formulacalculationoptions.ui msgctxt "" @@ -6581,7 +6581,7 @@ "label\n" "string.text" msgid "_Limit decimals for general number format" -msgstr "_Stellen für Standardformat begrenzen" +msgstr "Dezimal_stellen für Standardzahlenformat begrenzen" #: optcalculatepage.ui msgctxt "" @@ -6896,7 +6896,7 @@ "label\n" "string.text" msgid "ODF spreadsheet (not saved by %PRODUCTNAME):" -msgstr "ODF Tabellendokumente (nicht mit %PRODUCTNAME gespeichert):" +msgstr "ODF-Tabellendokumente (nicht mit %PRODUCTNAME gespeichert):" #: optformula.ui msgctxt "" @@ -7013,7 +7013,7 @@ "label\n" "string.text" msgid "Array co_lumn:" -msgstr "_Matrix Spalte:" +msgstr "_Matrixspalte:" #: optformula.ui msgctxt "" @@ -7022,7 +7022,7 @@ "label\n" "string.text" msgid "Array _row:" -msgstr "Matrix _Zeile:" +msgstr "Matrix_zeile:" #: optformula.ui msgctxt "" @@ -7265,7 +7265,7 @@ "label\n" "string.text" msgid "Indents & Spacing" -msgstr "Einzüge & Abstände" +msgstr "Einzüge und Abstände" #: paradialog.ui msgctxt "" @@ -7463,7 +7463,7 @@ "label\n" "string.text" msgid "_Date & time" -msgstr "_Datum & Zeit" +msgstr "_Datum und Zeit" #: pastespecial.ui msgctxt "" @@ -9425,7 +9425,7 @@ "label\n" "string.text" msgid "Note: Changes to formatting attributes like fonts, colors, and number formats will not be saved and some functionalities like editing charts and drawing objects are not available in shared mode. Turn off shared mode to get exclusive access needed for those changes and functionalities." -msgstr "Hinweis: Änderungen von Formatierungen, wie Schriftart, Farbe, Zahlenformat werden im freigegebenen Modus nicht gespeichert und einige Funktionen, wie das Bearbeiten von Diagrammen und Zeichnungsobjekten, stehen nicht zur Verfügung. Heben Sie die Freigabe auf, um Exklusivzugriff zu erhalten, wenn Sie entsprechende Änderungen vornehmen möchten." +msgstr "Hinweis: Änderungen von Formatierungen, wie Schriftarten, Farben und Zahlenformate werden im freigegebenen Modus nicht gespeichert und einige Funktionen, wie das Bearbeiten von Diagrammen und Zeichnungsobjekten, stehen nicht zur Verfügung. Heben Sie die Freigabe auf, um Exklusivzugriff zu erhalten, wenn Sie entsprechende Änderungen vornehmen möchten." #: sharedocumentdlg.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/scaddins/source/analysis.po libreoffice-l10n-5.4.4~rc2/translations/source/de/scaddins/source/analysis.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/scaddins/source/analysis.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/scaddins/source/analysis.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-10-02 14:52+0000\n" +"PO-Revision-Date: 2017-11-27 17:42+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1506955925.000000\n" +"X-POOTLE-MTIME: 1511804542.000000\n" #: analysis.src msgctxt "" @@ -357,7 +357,7 @@ "Returns the value 'true' if the number is even\n" "itemlist.text" msgid "Returns the value 'true' if the number is even" -msgstr "Gibt den Wert 'WAHR' zurück, wenn die Zahl gerade ist." +msgstr "Gibt den Wert 'WAHR' zurück, wenn die Zahl gerade ist" #: analysis.src msgctxt "" @@ -384,7 +384,7 @@ "Returns the value 'true' if the number is odd\n" "itemlist.text" msgid "Returns the value 'true' if the number is odd" -msgstr "Gibt den Wert 'WAHR' zurück, wenn die Zahl ungerade ist." +msgstr "Gibt den Wert 'WAHR' zurück, wenn die Zahl ungerade ist" #: analysis.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/scp2/source/onlineupdate.po libreoffice-l10n-5.4.4~rc2/translations/source/de/scp2/source/onlineupdate.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/scp2/source/onlineupdate.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/scp2/source/onlineupdate.po 2017-12-12 17:45:07.000000000 +0000 @@ -2,18 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:05+0200\n" -"PO-Revision-Date: 2011-04-05 19:29+0200\n" -"Last-Translator: Jochen \n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2017-12-08 19:30+0000\n" +"Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\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-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1512761435.000000\n" #: module_onlineupdate.ulf msgctxt "" @@ -21,7 +22,7 @@ "STR_NAME_MODULE_OPT_ONLINEUPDATE\n" "LngText.text" msgid "Online Update" -msgstr "Online Update" +msgstr "Online-Update" #: module_onlineupdate.ulf msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/scp2/source/winexplorerext.po libreoffice-l10n-5.4.4~rc2/translations/source/de/scp2/source/winexplorerext.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/scp2/source/winexplorerext.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/scp2/source/winexplorerext.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2017-05-10 03:41+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-11-16 11:50+0000\n" +"Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1494387699.000000\n" +"X-POOTLE-MTIME: 1510833034.000000\n" #: module_winexplorerext.ulf msgctxt "" @@ -30,4 +30,4 @@ "STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n" "LngText.text" msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews." -msgstr "Ermöglicht dem Microsoft Windows Explorer, Informationen über %PRODUCTNAME Dokumente anzuzeigen, wie beispielsweise Miniaturansichten." +msgstr "Ermöglicht dem Microsoft Windows Explorer, Informationen über %PRODUCTNAME-Dokumente anzuzeigen, wie beispielsweise Miniaturansichten." diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/sd/source/core.po libreoffice-l10n-5.4.4~rc2/translations/source/de/sd/source/core.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/sd/source/core.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/sd/source/core.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n" -"PO-Revision-Date: 2017-04-15 03:49+0000\n" +"PO-Revision-Date: 2017-11-14 09:40+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1492228183.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510652453.000000\n" #: glob.src msgctxt "" @@ -382,7 +382,7 @@ "STR_POOLSHEET_TITLE1\n" "string.text" msgid "Title1" -msgstr "Titel1" +msgstr "Titel 1" #: glob.src msgctxt "" @@ -390,7 +390,7 @@ "STR_POOLSHEET_TITLE2\n" "string.text" msgid "Title2" -msgstr "Titel2" +msgstr "Titel 2" #: glob.src msgctxt "" @@ -406,7 +406,7 @@ "STR_POOLSHEET_HEADLINE1\n" "string.text" msgid "Heading1" -msgstr "Überschrift1" +msgstr "Überschrift 1" #: glob.src msgctxt "" @@ -414,7 +414,7 @@ "STR_POOLSHEET_HEADLINE2\n" "string.text" msgid "Heading2" -msgstr "Überschrift2" +msgstr "Überschrift 2" #: glob.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/sd/source/ui/app.po libreoffice-l10n-5.4.4~rc2/translations/source/de/sd/source/ui/app.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/sd/source/ui/app.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/sd/source/ui/app.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-29 18:40+0200\n" -"PO-Revision-Date: 2017-06-26 09:55+0000\n" +"PO-Revision-Date: 2017-11-14 09:39+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1498470905.000000\n" +"X-POOTLE-MTIME: 1510652362.000000\n" #: res_bmp.src msgctxt "" @@ -1570,7 +1570,7 @@ "STR_BREAK_FAIL\n" "string.text" msgid "It was not possible to ungroup all drawing objects." -msgstr "Es konnten nicht alle Zeichnungsobjekte aufgebrochen werden." +msgstr "Es konnten nicht alle Zeichnungsobjekte aus der Gruppierung gelöst werden." #: strings.src msgctxt "" @@ -2058,7 +2058,7 @@ "STR_GRAPHICS_STYLE_FAMILY\n" "string.text" msgid "Drawing Styles" -msgstr "Zeichenvorlagen" +msgstr "Zeichnungsvorlagen" #: strings.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/sd/uiconfig/sdraw/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/de/sd/uiconfig/sdraw/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/sd/uiconfig/sdraw/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/sd/uiconfig/sdraw/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "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: 2017-04-12 14:14+0200\n" -"PO-Revision-Date: 2017-06-18 04:08+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-11-28 18:12+0000\n" +"Last-Translator: Sophia Schröder \n" "Language-Team: none\n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1497758897.000000\n" +"X-POOTLE-MTIME: 1511892775.000000\n" #: breakdialog.ui msgctxt "" @@ -464,7 +464,7 @@ "label\n" "string.text" msgid "Indents & Spacing" -msgstr "Einzüge & Abstände" +msgstr "Einzüge und Abstände" #: drawparadialog.ui msgctxt "" @@ -473,7 +473,7 @@ "label\n" "string.text" msgid "Asian Typography" -msgstr "Asiatische Schreibweise" +msgstr "Asiatische Typografie" #: drawparadialog.ui msgctxt "" @@ -572,7 +572,7 @@ "label\n" "string.text" msgid "Indents & Spacing" -msgstr "Einzüge & Abstände" +msgstr "Einzüge und Abstände" #: drawprtldialog.ui msgctxt "" @@ -635,7 +635,7 @@ "label\n" "string.text" msgid "Asian Typography" -msgstr "Asiatische Schreibweise" +msgstr "Asiatische Typografie" #: drawprtldialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/sd/uiconfig/simpress/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/de/sd/uiconfig/simpress/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/sd/uiconfig/simpress/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/sd/uiconfig/simpress/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "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: 2017-05-29 18:40+0200\n" -"PO-Revision-Date: 2017-06-26 09:55+0000\n" +"PO-Revision-Date: 2017-11-28 18:12+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: none\n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1498470919.000000\n" +"X-POOTLE-MTIME: 1511892779.000000\n" #: annotationmenu.ui msgctxt "" @@ -4937,7 +4937,7 @@ "label\n" "string.text" msgid "Indents & Spacing" -msgstr "Einzüge & Abstände" +msgstr "Einzüge und Abstände" #: templatedialog.ui msgctxt "" @@ -4991,7 +4991,7 @@ "label\n" "string.text" msgid "Asian Typography" -msgstr "Asiatische Schreibweise" +msgstr "Asiatische Typografie" #: templatedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/svx/source/stbctrls.po libreoffice-l10n-5.4.4~rc2/translations/source/de/svx/source/stbctrls.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/svx/source/stbctrls.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/svx/source/stbctrls.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n" -"PO-Revision-Date: 2017-04-17 08:34+0000\n" -"Last-Translator: Thomas Hackert \n" +"PO-Revision-Date: 2017-11-11 05:59+0000\n" +"Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1492418090.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510379963.000000\n" #: stbctrls.src msgctxt "" @@ -151,7 +151,7 @@ "RID_SVXSTR_ZOOM_25\n" "string.text" msgid "25%" -msgstr "25%" +msgstr "25 %" #: stbctrls.src msgctxt "" @@ -159,7 +159,7 @@ "RID_SVXSTR_ZOOM_50\n" "string.text" msgid "50%" -msgstr "50%" +msgstr "50 %" #: stbctrls.src msgctxt "" @@ -167,7 +167,7 @@ "RID_SVXSTR_ZOOM_75\n" "string.text" msgid "75%" -msgstr "75%" +msgstr "75 %" #: stbctrls.src msgctxt "" @@ -175,7 +175,7 @@ "RID_SVXSTR_ZOOM_100\n" "string.text" msgid "100%" -msgstr "100%" +msgstr "100 %" #: stbctrls.src msgctxt "" @@ -183,7 +183,7 @@ "RID_SVXSTR_ZOOM_150\n" "string.text" msgid "150%" -msgstr "150%" +msgstr "150 %" #: stbctrls.src msgctxt "" @@ -191,7 +191,7 @@ "RID_SVXSTR_ZOOM_200\n" "string.text" msgid "200%" -msgstr "200%" +msgstr "200 %" #: stbctrls.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/svx/source/svdraw.po libreoffice-l10n-5.4.4~rc2/translations/source/de/svx/source/svdraw.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/svx/source/svdraw.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/svx/source/svdraw.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-30 11:52+0200\n" -"PO-Revision-Date: 2017-04-18 04:22+0000\n" +"PO-Revision-Date: 2017-11-15 10:31+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1492489359.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510741878.000000\n" #: svdstr.src msgctxt "" @@ -318,7 +318,7 @@ "STR_ObjNameSingulSECTE\n" "string.text" msgid "Ellipse Pie" -msgstr "Ellipsenausschnitt" +msgstr "Ellipsensektor" #: svdstr.src msgctxt "" @@ -326,7 +326,7 @@ "STR_ObjNamePluralSECTE\n" "string.text" msgid "Ellipse Pies" -msgstr "Ellipsenausschnitte" +msgstr "Ellipsensektoren" #: svdstr.src msgctxt "" @@ -350,7 +350,7 @@ "STR_ObjNameSingulCCUTE\n" "string.text" msgid "Ellipse Segment" -msgstr "Ellipsenabschnitt" +msgstr "Ellipsensegment" #: svdstr.src msgctxt "" @@ -358,7 +358,7 @@ "STR_ObjNamePluralCCUTE\n" "string.text" msgid "Ellipse Segments" -msgstr "Ellipsenabschnitte" +msgstr "Ellipsensegmente" #: svdstr.src msgctxt "" @@ -1214,7 +1214,7 @@ "STR_EditUngroup\n" "string.text" msgid "Ungroup %1" -msgstr "%1 auflösen" +msgstr "%1 aufheben" #: svdstr.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/svx/uiconfig/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/de/svx/uiconfig/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/svx/uiconfig/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/svx/uiconfig/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-17 15:41+0200\n" -"PO-Revision-Date: 2017-10-02 14:55+0000\n" +"PO-Revision-Date: 2017-11-25 02:50+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1506956100.000000\n" +"X-POOTLE-MTIME: 1511578253.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -2678,7 +2678,7 @@ "0\n" "stringlist.text" msgid "User-defined" -msgstr "Benutzerdefinert" +msgstr "Benutzerdefiniert" #: docking3deffects.ui msgctxt "" @@ -3863,7 +3863,7 @@ "tooltip_text\n" "string.text" msgid "Enter a transparency value for the beginning point of the gradient, where 0% is fully opaque and 100% is fully transparent." -msgstr "Transparenzwert für den Startpunkt des Farbverlaufs eingeben, wobei 0% keiner Transparenz entspricht und 100% voller Transparenz." +msgstr "Transparenzwert für den Startpunkt des Farbverlaufs eingeben, wobei 0 % keiner Transparenz entspricht und 100 % voller Transparenz." #: floatingareastyle.ui msgctxt "" @@ -3872,7 +3872,7 @@ "tooltip_text\n" "string.text" msgid "Enter a transparency value for the endpoint of the gradient, where 0% is fully opaque and 100% is fully transparent." -msgstr "Transparenzwert für den Endpunkt des Farbverlaufs eingeben, wobei 0% keiner Transparenz entspricht und 100% voller Transparenz." +msgstr "Transparenzwert für den Endpunkt des Farbverlaufs eingeben, wobei 0 % keiner Transparenz entspricht und 100 % voller Transparenz." #: floatingareastyle.ui msgctxt "" @@ -3917,7 +3917,7 @@ "tooltip_text\n" "string.text" msgid "Specify the horizontal offset percentage from the center for the gradient shading style. 50% is the horizontal center." -msgstr "Wählen Sie den relativen Abstand des Farbverlauf-Schattens waagerecht zum Zentrum. 50% entspricht der Mitte." +msgstr "Wählen Sie den relativen Abstand des Farbverlauf-Schattens waagerecht zum Zentrum. 50 % entspricht der Mitte." #: floatingareastyle.ui msgctxt "" @@ -3926,7 +3926,7 @@ "tooltip_text\n" "string.text" msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center." -msgstr "Wählen Sie den relativen Abstand des Farbverlauf-Schattens senkrecht zum Zentrum. 50% entspricht der Mitte." +msgstr "Wählen Sie den relativen Abstand des Farbverlauf-Schattens senkrecht zum Zentrum. 50 % entspricht der Mitte." #: floatingcontour.ui msgctxt "" @@ -5363,7 +5363,7 @@ "6\n" "stringlist.text" msgid "Leading" -msgstr "Führend" +msgstr "Durchschuss" #: paralinespacingcontrol.ui msgctxt "" @@ -6727,7 +6727,7 @@ "tooltip_text\n" "string.text" msgid "Specify 0% for fully opaque through 100% for fully transparent." -msgstr "Wählen Sie einen Wert zwischen 0% für vollständig undurchsichtig und 100% für vollständig transparent." +msgstr "Wählen Sie einen Wert zwischen 0 % für vollständig undurchsichtig und 100 % für vollständig transparent." #: sidebararea.ui msgctxt "" @@ -6736,7 +6736,7 @@ "tooltip_text\n" "string.text" msgid "Specify 0% for fully opaque through 100% for fully transparent." -msgstr "Wählen Sie einen Wert zwischen 0% für vollständig undurchsichtig und 100% für vollständig transparent." +msgstr "Wählen Sie einen Wert zwischen 0 % für vollständig undurchsichtig und 100 % für vollständig transparent." #: sidebararea.ui msgctxt "" @@ -6835,7 +6835,7 @@ "tooltip_text\n" "string.text" msgid "Specify the percentage of transparency; 0% is fully opaque and 100% is fully transparent." -msgstr "Wählen Sie den Grad der Transparenz (0% entspricht vollständig undurchsichtig und 100% entspricht vollständig durchsichtig)." +msgstr "Wählen Sie den Grad der Transparenz (0 % entspricht vollständig undurchsichtig und 100 % entspricht vollständig durchsichtig)." #: sidebargraphic.ui msgctxt "" @@ -6943,7 +6943,7 @@ "tooltip_text\n" "string.text" msgid "Select the style of the line." -msgstr "Wäheln Sie den Linienstil aus." +msgstr "Wählen Sie den Linienstil aus." #: sidebarline.ui msgctxt "" @@ -7726,7 +7726,7 @@ "label\n" "string.text" msgid "Indents & Spacing" -msgstr "Einzüge & Abstände" +msgstr "Einzüge und Abstände" #: textcontrolparadialog.ui msgctxt "" @@ -7951,7 +7951,7 @@ "label\n" "string.text" msgid "50%" -msgstr "50%" +msgstr "50 %" #: zoommenu.ui msgctxt "" @@ -7960,7 +7960,7 @@ "label\n" "string.text" msgid "75%" -msgstr "75%" +msgstr "75 %" #: zoommenu.ui msgctxt "" @@ -7969,7 +7969,7 @@ "label\n" "string.text" msgid "100%" -msgstr "100%" +msgstr "100 %" #: zoommenu.ui msgctxt "" @@ -7978,7 +7978,7 @@ "label\n" "string.text" msgid "150%" -msgstr "150%" +msgstr "150 %" #: zoommenu.ui msgctxt "" @@ -7987,4 +7987,4 @@ "label\n" "string.text" msgid "200%" -msgstr "200%" +msgstr "200 %" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/sw/source/core/undo.po libreoffice-l10n-5.4.4~rc2/translations/source/de/sw/source/core/undo.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/sw/source/core/undo.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/sw/source/core/undo.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-20 13:56+0200\n" -"PO-Revision-Date: 2017-10-14 05:23+0000\n" +"PO-Revision-Date: 2017-11-15 10:32+0000\n" "Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1507958608.000000\n" +"X-POOTLE-MTIME: 1510741949.000000\n" #: undo.src msgctxt "" @@ -534,7 +534,7 @@ "STR_DRAWUNGROUP\n" "string.text" msgid "Ungroup drawing objects" -msgstr "Gruppenobjekt auflösen" +msgstr "Gruppierung der Zeichnungsobjekte aufheben" #: undo.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/sw/source/ui/app.po libreoffice-l10n-5.4.4~rc2/translations/source/de/sw/source/ui/app.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/sw/source/ui/app.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/sw/source/ui/app.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-17 15:41+0200\n" -"PO-Revision-Date: 2017-05-20 12:45+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-11-25 11:26+0000\n" +"Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1495284322.000000\n" +"X-POOTLE-MTIME: 1511609185.000000\n" #: app.src msgctxt "" @@ -422,7 +422,7 @@ "STR_LOAD_HTML_DOC\n" "string.text" msgid "Name and Path of the HTML Document" -msgstr "Name und Pfad des HTML Dokuments" +msgstr "Name und Pfad des HTML-Dokuments" #: app.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/sw/source/uibase/docvw.po libreoffice-l10n-5.4.4~rc2/translations/source/de/sw/source/uibase/docvw.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/sw/source/uibase/docvw.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/sw/source/uibase/docvw.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-06-20 13:56+0200\n" -"PO-Revision-Date: 2017-06-22 04:20+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-11-28 18:19+0000\n" +"Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1498105240.000000\n" +"X-POOTLE-MTIME: 1511893181.000000\n" #: docvw.src msgctxt "" @@ -158,7 +158,7 @@ "STR_SMARTTAG_CLICK\n" "string.text" msgid "%s-click to open Smart Tag menu" -msgstr "%s-Klick, um das Smart Tag Menü zu öffnen" +msgstr "%s-Klick, um das Menü SmartTags zu öffnen" #: docvw.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/sw/uiconfig/swriter/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/de/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/sw/uiconfig/swriter/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/sw/uiconfig/swriter/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "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: 2017-06-06 20:00+0200\n" -"PO-Revision-Date: 2017-10-02 14:56+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-12-10 06:03+0000\n" +"Last-Translator: Sophia Schröder \n" "Language-Team: none\n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1506956167.000000\n" +"X-POOTLE-MTIME: 1512885833.000000\n" #: abstractdialog.ui msgctxt "" @@ -6102,7 +6102,7 @@ "label\n" "string.text" msgid "Sum" -msgstr "Übersicht" +msgstr "Summe" #: inputwinmenu.ui msgctxt "" @@ -10620,7 +10620,7 @@ "label\n" "string.text" msgid "-20% Brightness & Contrast" -msgstr "-20% Helligkeit & Kontrast" +msgstr "-20 % Helligkeit und Kontrast" #: notebookbar_groups.ui msgctxt "" @@ -10629,7 +10629,7 @@ "label\n" "string.text" msgid "-20% Brightness" -msgstr "-20% Helligkeit" +msgstr "-20 % Helligkeit" #: notebookbar_groups.ui msgctxt "" @@ -10638,7 +10638,7 @@ "label\n" "string.text" msgid "-20% Contrast" -msgstr "-20% Kontrast" +msgstr "-20 % Kontrast" #: notebookbar_groups.ui msgctxt "" @@ -10647,7 +10647,7 @@ "label\n" "string.text" msgid "0% Brightness & Contrast" -msgstr "0% Helligkeit & Kontrast" +msgstr "0 % Helligkeit und Kontrast" #: notebookbar_groups.ui msgctxt "" @@ -10656,7 +10656,7 @@ "label\n" "string.text" msgid "+20% Brightness" -msgstr "+20% Helligkeit" +msgstr "+20 % Helligkeit" #: notebookbar_groups.ui msgctxt "" @@ -10665,7 +10665,7 @@ "label\n" "string.text" msgid "+20% Contrast" -msgstr "+20% Kontrast" +msgstr "+20 % Kontrast" #: notebookbar_groups.ui msgctxt "" @@ -10674,7 +10674,7 @@ "label\n" "string.text" msgid "+20% Brightness & Contrast" -msgstr "+20% Helligkeit & Kontrast" +msgstr "+20 % Helligkeit und Kontrast" #: notebookbar_groups.ui msgctxt "" @@ -13994,7 +13994,7 @@ "label\n" "string.text" msgid "Indents & Spacing" -msgstr "Einzüge & Abstände" +msgstr "Einzüge und Abstände" #: paradialog.ui msgctxt "" @@ -14021,7 +14021,7 @@ "label\n" "string.text" msgid "Asian Typography" -msgstr "Asiatische Schreibweise" +msgstr "Asiatische Typografie" #: paradialog.ui msgctxt "" @@ -14030,7 +14030,7 @@ "label\n" "string.text" msgid "Outline & Numbering" -msgstr "Gliederung & Nummerierung" +msgstr "Gliederung und Nummerierung" #: paradialog.ui msgctxt "" @@ -17072,7 +17072,7 @@ "label\n" "string.text" msgid "Indents & Spacing" -msgstr "Einzüge & Abstände" +msgstr "Einzüge und Abstände" #: templatedialog2.ui msgctxt "" @@ -17099,7 +17099,7 @@ "label\n" "string.text" msgid "Asian Typography" -msgstr "Asiatische Schreibweise" +msgstr "Asiatische Typografie" #: templatedialog2.ui msgctxt "" @@ -17153,7 +17153,7 @@ "label\n" "string.text" msgid "Outline & Numbering" -msgstr "Gliederung & Nummerierung" +msgstr "Gliederung und Nummerierung" #: templatedialog2.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/swext/mediawiki/src.po libreoffice-l10n-5.4.4~rc2/translations/source/de/swext/mediawiki/src.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/swext/mediawiki/src.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/swext/mediawiki/src.po 2017-12-12 17:45:07.000000000 +0000 @@ -2,18 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:05+0200\n" -"PO-Revision-Date: 2011-12-04 14:37+0200\n" -"Last-Translator: Jochen \n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2015-04-22 23:39+0200\n" +"PO-Revision-Date: 2017-11-05 13:24+0000\n" +"Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\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-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1509888275.000000\n" #: description.xml msgctxt "" @@ -29,4 +30,4 @@ "extdesc\n" "description.text" msgid "The Wiki Publisher enables you to create Wiki articles on MediaWiki servers without having to know the syntax of the MediaWiki markup language. Publish your new and existing documents transparently with the Writer to a wiki page.\n" -msgstr "Der WikiPublisher ermöglicht es Ihnen, Wiki-Artikel auf MediaWiki-Servern zu erstellen, ohne die Syntax der MediaWiki Markup-Sprache zu kennen. Veröffentlichen Sie Ihre neuen und bestehenden Dokumente transparent aus dem Writer heraus auf einer Wiki-Seite.\n" +msgstr "Der Wiki Publisher ermöglicht es Ihnen, Wiki-Artikel auf MediaWiki-Servern zu erstellen, ohne die Syntax der MediaWiki-Markup-Sprache zu kennen. Veröffentlichen Sie Ihre neuen und bestehenden Dokumente transparent aus dem Writer heraus auf einer Wiki-Seite.\n" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/vcl/source/src.po libreoffice-l10n-5.4.4~rc2/translations/source/de/vcl/source/src.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/vcl/source/src.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/vcl/source/src.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n" -"PO-Revision-Date: 2017-04-15 04:46+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-11-05 11:18+0000\n" +"Last-Translator: Ettore Atalan \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1492231578.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1509880734.000000\n" #: app.src msgctxt "" @@ -30,7 +30,7 @@ "SV_APP_OSVERSION\n" "string.text" msgid "OS: " -msgstr "Betriebssystem:" +msgstr "BS: " #: app.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/vcl/uiconfig/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/de/vcl/uiconfig/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/vcl/uiconfig/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/vcl/uiconfig/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "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: 2017-04-12 14:14+0200\n" -"PO-Revision-Date: 2017-04-15 04:53+0000\n" +"PO-Revision-Date: 2017-11-25 03:00+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: none\n" "Language: de\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1492231980.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511578836.000000\n" #: cupspassworddialog.ui msgctxt "" @@ -563,7 +563,7 @@ "label\n" "string.text" msgid "Page Sides" -msgstr "Seitenränder" +msgstr "Seiten" #: printdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/de/wizards/source/formwizard.po libreoffice-l10n-5.4.4~rc2/translations/source/de/wizards/source/formwizard.po --- libreoffice-l10n-5.4.3~rc2/translations/source/de/wizards/source/formwizard.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/de/wizards/source/formwizard.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-29 18:39+0200\n" -"PO-Revision-Date: 2017-06-26 10:01+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2017-12-07 12:38+0000\n" +"Last-Translator: Sophia Schröder \n" "Language-Team: LANGUAGE \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1498471277.000000\n" +"X-POOTLE-MTIME: 1512650314.000000\n" #: dbwizres.src msgctxt "" @@ -1548,7 +1548,7 @@ "RID_DB_QUERY_WIZARD_START + 89\n" "string.text" msgid "The condition ' ' was chosen twice. Each condition can only be chosen once" -msgstr "Die Bedingung ' ' wurde zweimal ausgewählt. Jede Bedingung kann nur einmal ausgewählt werden." +msgstr "Die Bedingung ' ' wurde zweimal ausgewählt. Jede Bedingung kann nur einmal ausgewählt werden" #: dbwizres.src msgctxt "" @@ -2044,7 +2044,7 @@ "RID_DB_REPORT_WIZARD_START + 72\n" "string.text" msgid "An error occurred in the wizard.
The template '%PATH' could be erroneous.
Either the required sections or tables do not exist or exist under the wrong name.
See the Help for more detailed information.
Please select another template." -msgstr "Es ist ein Fehler im Assistenten aufgetreten.
Möglicherweise ist die Vorlage '%PATH' fehlerhaft.
Entweder die benötigten Bereiche beziehungsweise Tabellen sind nicht vorhanden oder sie existiern unter einem falschen Namen.
Bitte schauen Sie in der Hilfe nach genaueren Hinweisen.
Bitte wählen Sie eine andere Dokumentvorlage aus." +msgstr "Es ist ein Fehler im Assistenten aufgetreten.
Möglicherweise ist die Vorlage '%PATH' fehlerhaft.
Entweder die benötigten Bereiche beziehungsweise Tabellen sind nicht vorhanden oder sie existieren unter einem falschen Namen.
Bitte schauen Sie in der Hilfe nach genaueren Hinweisen.
Bitte wählen Sie eine andere Dokumentvorlage aus." #: dbwizres.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/eo/svtools/source/dialogs.po libreoffice-l10n-5.4.4~rc2/translations/source/eo/svtools/source/dialogs.po --- libreoffice-l10n-5.4.3~rc2/translations/source/eo/svtools/source/dialogs.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/eo/svtools/source/dialogs.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-04-25 13:52+0200\n" -"PO-Revision-Date: 2017-05-13 04:16+0000\n" -"Last-Translator: Donald Rogers \n" +"PO-Revision-Date: 2017-11-28 01:22+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LibreOffice Esperanto\n" "Language: eo\n" "MIME-Version: 1.0\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1494649006.000000\n" +"X-POOTLE-MTIME: 1511832155.000000\n" #: addresstemplate.src msgctxt "" @@ -303,7 +303,7 @@ "STR_SVT_DEFAULT_SERVICE_LABEL\n" "string.text" msgid "$user$'s $service$" -msgstr "$servo$ de $uzanto$" +msgstr "$service$ de $user$" #: formats.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/eo/svx/source/dialog.po libreoffice-l10n-5.4.4~rc2/translations/source/eo/svx/source/dialog.po --- libreoffice-l10n-5.4.3~rc2/translations/source/eo/svx/source/dialog.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/eo/svx/source/dialog.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LibreOffice 3.5.x\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-17 15:41+0200\n" -"PO-Revision-Date: 2017-05-18 02:21+0000\n" -"Last-Translator: Donald Rogers \n" +"PO-Revision-Date: 2017-11-28 01:22+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LibreOffice Esperanto\n" "Language: eo\n" "MIME-Version: 1.0\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1495074094.000000\n" +"X-POOTLE-MTIME: 1511832167.000000\n" #: SafeMode.src msgctxt "" @@ -7088,7 +7088,7 @@ "CJK Unified Ideographs Extension E\n" "itemlist.text" msgid "CJK Unified Ideographs Extension E" -msgstr "ĈJK unuigitaj ideografiaĵoj, etendo-A" +msgstr "ĈJK unuigitaj ideografiaĵoj, etendo-E" #: ucsubset.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/chart2/source/controller/dialogs.po libreoffice-l10n-5.4.4~rc2/translations/source/es/chart2/source/controller/dialogs.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/chart2/source/controller/dialogs.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/chart2/source/controller/dialogs.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-10-19 16:07+0000\n" +"PO-Revision-Date: 2017-11-23 01:22+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1508429250.000000\n" +"X-POOTLE-MTIME: 1511400167.000000\n" #: Strings.src msgctxt "" @@ -814,7 +814,7 @@ "STR_DATA_ROLE_Y\n" "string.text" msgid "Y-Values" -msgstr "Valores-Y" +msgstr "Valores Y" #: Strings.src msgctxt "" @@ -830,7 +830,7 @@ "STR_DATA_ROLE_X_ERROR\n" "string.text" msgid "X-Error-Bars" -msgstr "Barras-Error-X" +msgstr "Barras de error X" #: Strings.src msgctxt "" @@ -838,7 +838,7 @@ "STR_DATA_ROLE_X_ERROR_POSITIVE\n" "string.text" msgid "Positive X-Error-Bars" -msgstr "Barras-Error-X Positivas" +msgstr "Barras de error X positivas" #: Strings.src msgctxt "" @@ -846,7 +846,7 @@ "STR_DATA_ROLE_X_ERROR_NEGATIVE\n" "string.text" msgid "Negative X-Error-Bars" -msgstr "Barras-Error-X Negativas" +msgstr "Barras de error X negativas" #: Strings.src msgctxt "" @@ -854,7 +854,7 @@ "STR_DATA_ROLE_Y_ERROR\n" "string.text" msgid "Y-Error-Bars" -msgstr "Barras-Error-Y" +msgstr "Barras de error Y" #: Strings.src msgctxt "" @@ -862,7 +862,7 @@ "STR_DATA_ROLE_Y_ERROR_POSITIVE\n" "string.text" msgid "Positive Y-Error-Bars" -msgstr "Barras-Error-Y Positivas" +msgstr "Barras de error Y positivas" #: Strings.src msgctxt "" @@ -870,7 +870,7 @@ "STR_DATA_ROLE_Y_ERROR_NEGATIVE\n" "string.text" msgid "Negative Y-Error-Bars" -msgstr "Barras-Error-Y Negativas" +msgstr "Barras de error Y negativas" #: Strings.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/cui/uiconfig/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/es/cui/uiconfig/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/cui/uiconfig/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/cui/uiconfig/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "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: 2017-05-17 15:41+0200\n" -"PO-Revision-Date: 2017-10-27 22:03+0000\n" +"PO-Revision-Date: 2017-11-20 15:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: none\n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1509141785.000000\n" +"X-POOTLE-MTIME: 1511192233.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -13261,7 +13261,7 @@ "label\n" "string.text" msgid "_First line:" -msgstr "_Primera línea:" +msgstr "_Primer renglón:" #: paraindentspacing.ui msgctxt "" @@ -14647,7 +14647,7 @@ "label\n" "string.text" msgid "Pivot Point" -msgstr "Punto pivote" +msgstr "Punto de giro" #: rotationtabpage.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/dbaccess/source/core/resource.po libreoffice-l10n-5.4.4~rc2/translations/source/es/dbaccess/source/core/resource.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/dbaccess/source/core/resource.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/dbaccess/source/core/resource.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2015-05-12 09:02+0000\n" +"PO-Revision-Date: 2017-11-23 00:56+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1431421379.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511398614.000000\n" #: strings.src msgctxt "" @@ -106,7 +106,7 @@ "RID_STR_NO_XROWUPDATE\n" "string.text" msgid "Values could not be inserted. The XRowUpdate interface is not supported by ResultSet." -msgstr "No se han podido insertar valores. ResultSet no admite la interfaz de XRowUpdate." +msgstr "No se pudieron insertar los valores. ResultSet no admite la interfaz XRowUpdate." #: strings.src msgctxt "" @@ -114,7 +114,7 @@ "RID_STR_NO_XRESULTSETUPDATE\n" "string.text" msgid "Values could not be inserted. The XResultSetUpdate interface is not supported by ResultSet." -msgstr "No se han podido insertar valores. ResultSet no admite la interfaz de XResultSetUpdate." +msgstr "No se pudieron insertar los valores. ResultSet no admite la interfaz XResultSetUpdate." #: strings.src msgctxt "" @@ -122,7 +122,7 @@ "RID_STR_NO_UPDATE_MISSING_CONDITION\n" "string.text" msgid "Values could not be modified, due to a missing condition statement." -msgstr "No se han podido modificar los valores debido a que falta una instrucción de condición." +msgstr "No se pudieron modificar los valores debido a que falta una instrucción de condición." #: strings.src msgctxt "" @@ -130,7 +130,7 @@ "RID_STR_NO_COLUMN_ADD\n" "string.text" msgid "The adding of columns is not supported." -msgstr "No se permite agregar columnas." +msgstr "No está disponible la adición de columnas." #: strings.src msgctxt "" @@ -138,7 +138,7 @@ "RID_STR_NO_COLUMN_DROP\n" "string.text" msgid "The dropping of columns is not supported." -msgstr "No se permite colocar columnas." +msgstr "No está disponible la eliminación de columnas." #: strings.src msgctxt "" @@ -146,7 +146,7 @@ "RID_STR_NO_CONDITION_FOR_PK\n" "string.text" msgid "The WHERE condition could not be created for the primary key." -msgstr "No se ha podido crear la condición WHERE para la clave principal." +msgstr "No se pudo crear la condición WHERE de la clave primaria." #: strings.src msgctxt "" @@ -210,7 +210,7 @@ "RID_STR_NO_RELATIVE\n" "string.text" msgid "Relative positioning is not allowed in this state." -msgstr "No se admite la posición relativa en este estado." +msgstr "No se permite el posicionamiento relativo en este estado." #: strings.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/dbaccess/source/ui/app.po libreoffice-l10n-5.4.4~rc2/translations/source/es/dbaccess/source/ui/app.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/dbaccess/source/ui/app.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/dbaccess/source/ui/app.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2016-11-24 03:27+0000\n" +"PO-Revision-Date: 2017-11-23 01:05+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1479958020.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511399145.000000\n" #: app.src msgctxt "" @@ -30,7 +30,7 @@ "RID_STR_NEW_FORM_AUTO\n" "string.text" msgid "Use Wizard to Create Form..." -msgstr "Usar el asistente para crear un formulario..." +msgstr "Crear un formulario mediante el asistente…" #: app.src msgctxt "" @@ -38,7 +38,7 @@ "RID_STR_NEW_REPORT_AUTO\n" "string.text" msgid "Use Wizard to Create Report..." -msgstr "Usar el asistente para crear un informe..." +msgstr "Crear un informe mediante el asistente…" #: app.src msgctxt "" @@ -62,7 +62,7 @@ "RID_STR_NEW_QUERY_SQL\n" "string.text" msgid "Create Query in SQL View..." -msgstr "Crear una consulta en modo SQL..." +msgstr "Crear consulta en modo SQL…" #: app.src msgctxt "" @@ -86,7 +86,7 @@ "RID_STR_NEW_TABLE_AUTO\n" "string.text" msgid "Use Wizard to Create Table..." -msgstr "Usar el asistente para crear una tabla..." +msgstr "Crear una tabla mediante el asistente…" #: app.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/dbaccess/source/ui/browser.po libreoffice-l10n-5.4.4~rc2/translations/source/es/dbaccess/source/ui/browser.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/dbaccess/source/ui/browser.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/dbaccess/source/ui/browser.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-04-13 19:53+0000\n" +"PO-Revision-Date: 2017-11-23 01:07+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1492113182.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511399225.000000\n" #: sbabrw.src msgctxt "" @@ -94,7 +94,7 @@ "STR_OPENTABLES_WARNINGS\n" "string.text" msgid "Warnings encountered" -msgstr "Se han encontrado avisos" +msgstr "Se encontraron alertas" #: sbabrw.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/dbaccess/source/ui/control.po libreoffice-l10n-5.4.4~rc2/translations/source/es/dbaccess/source/ui/control.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/dbaccess/source/ui/control.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/dbaccess/source/ui/control.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2013-12-20 06:34+0000\n" +"PO-Revision-Date: 2017-11-23 01:10+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1387521298.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511399451.000000\n" #: TableGrantCtrl.src msgctxt "" @@ -86,7 +86,7 @@ "STR_COULDNOTCREATE_DRIVERMANAGER\n" "string.text" msgid "Cannot connect to the SDBC driver manager (#servicename#)." -msgstr "No se pudo establecer una conexión al administrador de controladores SDBC (#servicename#)." +msgstr "No se pudo establecer una conexión con el gestor de controladores SDBC (#servicename#)." #: tabletree.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/dbaccess/source/ui/dlg.po libreoffice-l10n-5.4.4~rc2/translations/source/es/dbaccess/source/ui/dlg.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/dbaccess/source/ui/dlg.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/dbaccess/source/ui/dlg.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-08-25 12:34+0200\n" -"PO-Revision-Date: 2016-09-13 20:41+0000\n" +"PO-Revision-Date: 2017-11-23 01:12+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" -"X-POOTLE-MTIME: 1473799277.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511399573.000000\n" #: AutoControls.src msgctxt "" @@ -142,7 +142,7 @@ "STR_CONNECTION_SUCCESS\n" "string.text" msgid "The connection was established successfully." -msgstr "La conexión se ha establecido correctamente." +msgstr "Se estableció la conexión correctamente." #: ConnectionPage.src msgctxt "" @@ -150,7 +150,7 @@ "STR_CONNECTION_NO_SUCCESS\n" "string.text" msgid "The connection could not be established." -msgstr "No se ha podido establecer la conexión." +msgstr "No se pudo establecer la conexión." #: ConnectionPage.src msgctxt "" @@ -166,7 +166,7 @@ "STR_JDBCDRIVER_NO_SUCCESS\n" "string.text" msgid "The JDBC driver could not be loaded." -msgstr "No se ha podido cargar el controlador JDBC." +msgstr "No se pudo cargar el controlador JDBC." #: ConnectionPage.src msgctxt "" @@ -214,7 +214,7 @@ "STR_ERROR_PASSWORDS_NOT_IDENTICAL\n" "string.text" msgid "The passwords do not match. Please enter the password again." -msgstr "Las contraseñas no coinciden. Introdúzcalas otra vez." +msgstr "Las contraseñas no coinciden. Escríbalas otra vez." #: dbadmin.src msgctxt "" @@ -713,7 +713,7 @@ "STR_DIRECTSQL_CONNECTIONLOST\n" "string.text" msgid "The connection to the database has been lost. This dialog will be closed." -msgstr "Se perdió la conexión a la base de datos. Este diálogo se cerrará." +msgstr "Se perdió la conexión con la base de datos. Esta ventana se cerrará." #: indexdialog.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/dbaccess/source/ui/querydesign.po libreoffice-l10n-5.4.4~rc2/translations/source/es/dbaccess/source/ui/querydesign.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/dbaccess/source/ui/querydesign.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/dbaccess/source/ui/querydesign.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n" -"PO-Revision-Date: 2016-11-24 03:34+0000\n" +"PO-Revision-Date: 2017-11-23 00:58+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1479958458.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511398704.000000\n" #: query.src msgctxt "" @@ -310,7 +310,7 @@ "STR_QRY_CHECK_CASESENSITIVE\n" "string.text" msgid "The column could not be found. Please note that the database is case-sensitive." -msgstr "No se encontró la columna. Tenga en cuenta que la base de datos distingue entre mayúsculas y minúsculas." +msgstr "No se encontró la columna. Observe que la base de datos distingue entre mayúsculas y minúsculas." #. For $object$, one of the values of the RSC_QUERY_OBJECT_TYPE resource will be inserted. #: query.src diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/dbaccess/source/ui/relationdesign.po libreoffice-l10n-5.4.4~rc2/translations/source/es/dbaccess/source/ui/relationdesign.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/dbaccess/source/ui/relationdesign.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/dbaccess/source/ui/relationdesign.po 2017-12-12 17:45:07.000000000 +0000 @@ -3,18 +3,18 @@ msgstr "" "Project-Id-Version: PACKAGE 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-09-12 06:18+0000\n" -"Last-Translator: Adolfo \n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2017-11-23 01:13+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \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: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1410502707.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511399631.000000\n" #: relation.src msgctxt "" @@ -46,7 +46,7 @@ "STR_RELATIONDESIGN\n" "string.text" msgid " - %PRODUCTNAME Base: Relation design" -msgstr " - %PRODUCTNAME Base: Diseño de relación" +msgstr " - %PRODUCTNAME Base: Diseño de relaciones" #: relation.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/dbaccess/uiconfig/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/es/dbaccess/uiconfig/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/dbaccess/uiconfig/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/dbaccess/uiconfig/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n" -"PO-Revision-Date: 2017-08-18 23:04+0000\n" +"PO-Revision-Date: 2017-12-02 23:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1503097458.000000\n" +"X-POOTLE-MTIME: 1512257571.000000\n" #: admindialog.ui msgctxt "" @@ -1023,7 +1023,7 @@ "label\n" "string.text" msgid "_Recently used:" -msgstr "Usados _recientemente:" +msgstr "Utilizadas _recientemente:" #: generalpagewizard.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared.po libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-20 10:38+0000\n" +"PO-Revision-Date: 2017-12-03 19:52+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1508495887.000000\n" +"X-POOTLE-MTIME: 1512330771.000000\n" #: 00000002.xhp msgctxt "" @@ -2742,7 +2742,7 @@ "par_id3156441\n" "help.text" msgid "A module contains SUBS and FUNCTIONS along with variable declarations. The length of the program that can be saved in a module is limited to 64 KB. If more space is required you can divide a $[officename] Basic project among several modules, and then save them in a single library." -msgstr "Un módulo contiene SUBS y FUNCIONES junto con declaraciones de variables. La longitud del programa que puede guardarse en un módulo está limitada a 64 KB. Si se requiere más espacio, se puede dividir un proyecto de $[officename] en varios módulos y después guardarlos en una única biblioteca." +msgstr "Un módulo contiene SUBS y FUNCTIONS, así como declaraciones de variables. La longitud del programa que puede guardarse en un módulo está limitada a 64 kB. Si se necesita más espacio, se puede dividir un proyecto de $[officename] Basic en varios módulos y después guardarlos en una única biblioteca." #: 01020500.xhp msgctxt "" @@ -33206,7 +33206,7 @@ "par_id061420170730144688\n" "help.text" msgid "PV is the present cash value in sequence of payments." -msgstr "" +msgstr "VA es el valor actual en efectivo en una secuencia de pagos." #: 03140002.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/scalc/00.po libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/scalc/00.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/scalc/00.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/scalc/00.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-30 09:54+0200\n" -"PO-Revision-Date: 2017-08-09 01:07+0000\n" +"PO-Revision-Date: 2017-11-20 17:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1502240851.000000\n" +"X-POOTLE-MTIME: 1511199182.000000\n" #: 00000004.xhp msgctxt "" @@ -1286,7 +1286,7 @@ "par_id3145133\n" "help.text" msgid "Choose Data - Validity" -msgstr "Menú Datos - Validez" +msgstr "Vaya a Datos ▸ Validez" #: 00000412.xhp msgctxt "" @@ -1294,7 +1294,7 @@ "par_id3152992\n" "help.text" msgid "Menu Data - Validity - Criteria tab" -msgstr "Menú Datos ▸ Validez ▸ pestaña Criterios" +msgstr "Vaya a Datos ▸ Validez ▸ pestaña Criterios" #: 00000412.xhp msgctxt "" @@ -1302,7 +1302,7 @@ "par_id3150367\n" "help.text" msgid "Choose Data - Validity - Input Help tab" -msgstr "Elija Datos ▸ Validez ▸ pestaña Ayuda sobre la entrada" +msgstr "Vaya a Datos ▸ Validez ▸ pestaña Ayuda de entrada" #: 00000412.xhp msgctxt "" @@ -1310,7 +1310,7 @@ "par_id3154486\n" "help.text" msgid "Choose Data - Validity - Error Alert tab" -msgstr "Seleccione la pestaña Datos - Validez - Alerta de error" +msgstr "Vaya a Datos ▸ Validez ▸ pestaña Alerta de error" #: 00000412.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/scalc/01.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/scalc/01.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-30 22:17+0000\n" +"PO-Revision-Date: 2017-12-02 22:17+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1509401831.000000\n" +"X-POOTLE-MTIME: 1512253030.000000\n" #: 01120000.xhp msgctxt "" @@ -1734,7 +1734,7 @@ "par_id2308201415431979367\n" "help.text" msgid "Binomial" -msgstr "Binomial" +msgstr "Binómica" #: 02140700.xhp msgctxt "" @@ -1790,7 +1790,7 @@ "par_id230820141543197085\n" "help.text" msgid "Negative Binomial" -msgstr "Binomial negativa" +msgstr "Binómica negativa" #: 02140700.xhp msgctxt "" @@ -3622,7 +3622,7 @@ "par_id3152869\n" "help.text" msgid "Moves the focus back through the formula components, marking them as it does so." -msgstr "" +msgstr "Desplaza el foco hacia atrás por los componentes de la fórmula, marcándolos a medida que lo hace." #: 04060000.xhp msgctxt "" @@ -31982,7 +31982,7 @@ "par_id3156211\n" "help.text" msgid "PV is the present cash value in sequence of payments." -msgstr "VA define el valor efectivo actual de la serie de pagos." +msgstr "VA es el valor actual en efectivo en una secuencia de pagos." #: 04060118.xhp msgctxt "" @@ -32270,7 +32270,7 @@ "par_id3153134\n" "help.text" msgid "PV is the present value (cash value) in a sequence of payments." -msgstr "VA es el valor actual (valor en efectivo) en una secuencia de pagos." +msgstr "VA es el valor actual (en efectivo) en una secuencia de pagos." #: 04060118.xhp msgctxt "" @@ -34438,7 +34438,7 @@ "par_id3156360\n" "help.text" msgid "PV is the present value (cash value) in a sequence of payments." -msgstr "VA es el valor actual (valor en efectivo) en una secuencia de pagos." +msgstr "VA es el valor actual (en efectivo) en una secuencia de pagos." #: 04060119.xhp msgctxt "" @@ -35566,7 +35566,7 @@ "bm_id3150267\n" "help.text" msgid "B function probabilities of samples with binomial distribution" -msgstr "B probabilidades de muestras con distribución binomial" +msgstr "función Bprobabilidades de muestras con distribución binómica" #: 04060181.xhp msgctxt "" @@ -35582,7 +35582,7 @@ "par_id3156061\n" "help.text" msgid "Returns the probability of a sample with binomial distribution." -msgstr "Devuelve la probabilidad de una muestra con distribución binomial." +msgstr "Devuelve la probabilidad de una muestra con distribución binómica." #: 04060181.xhp msgctxt "" @@ -36158,7 +36158,7 @@ "par_id3146897\n" "help.text" msgid "Returns the individual term binomial distribution probability." -msgstr "Devuelve la probabilidad de distribución binomial de un término individual." +msgstr "Devuelve la probabilidad de distribución binómica de un término individual." #: 04060181.xhp msgctxt "" @@ -36254,7 +36254,7 @@ "par_id2946897\n" "help.text" msgid "Returns the individual term binomial distribution probability." -msgstr "Devuelve la probabilidad de distribución binomial de un término individual." +msgstr "Devuelve la probabilidad de distribución binómica de un término individual." #: 04060181.xhp msgctxt "" @@ -36350,7 +36350,7 @@ "par_id2846897\n" "help.text" msgid "Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value." -msgstr "Devuelve el valor más pequeño para el cual la distribución binomial acumulada es mayor o igual que un valor de criterio." +msgstr "Devuelve el valor más pequeño para el cual la distribución binómica acumulada es mayor o igual que un valor de criterio." #: 04060181.xhp msgctxt "" @@ -36406,7 +36406,7 @@ "par_id285666\n" "help.text" msgid "=BINOM.INV(8;0.6;0.9) returns 7, the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value." -msgstr "=INV.BINOM(8;0,6;0,9) devuelve 7, el número más pequeño cuya distribución binomial acumulada es mayor o igual que el valor del criterio indicado." +msgstr "=INV.BINOM(8;0,6;0,9) devuelve 7, el número más pequeño cuya distribución binómica acumulada es mayor o igual que el valor del criterio indicado." #: 04060181.xhp msgctxt "" @@ -40374,7 +40374,7 @@ "par_id3149254\n" "help.text" msgid "Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value." -msgstr "Devuelve el valor más pequeño para el cual la distribución binomial acumulativa es mayor que o igual a un valor dado." +msgstr "Devuelve el valor más pequeño para el cual la distribución binómica acumulada es mayor o igual que un valor dado." #: 04060183.xhp msgctxt "" @@ -41646,7 +41646,7 @@ "bm_id3149879\n" "help.text" msgid "NEGBINOMDIST functionnegative binomial distribution" -msgstr "NEGBINOMDISTdistribución binomial negativa" +msgstr "función NEGBINOMDISTdistribución binómica negativa" #: 04060184.xhp msgctxt "" @@ -41662,7 +41662,7 @@ "par_id3155437\n" "help.text" msgid "Returns the negative binomial distribution." -msgstr "Devuelve la distribución binomial negativa." +msgstr "Devuelve la distribución binómica negativa." #: 04060184.xhp msgctxt "" @@ -41726,7 +41726,7 @@ "bm_id2949879\n" "help.text" msgid "NEGBINOM.DIST functionnegative binomial distribution" -msgstr "NEGBINOM.DISTdistribución binomial negativa" +msgstr "función NEGBINOM.DISTdistribución binómica negativa" #: 04060184.xhp msgctxt "" @@ -41742,7 +41742,7 @@ "par_id2955437\n" "help.text" msgid "Returns the negative binomial density or distribution function." -msgstr "Devuelve la función de distribución o de densidad binomial negativa." +msgstr "Devuelve la función de distribución o de densidad binómica negativa." #: 04060184.xhp msgctxt "" @@ -49038,7 +49038,7 @@ "par_id3145174\n" "help.text" msgid "Select -none- to remove a print range definition for the current spreadsheet. Select -entire sheet- to set the current sheet as a print range. Select -selection- to define the selected area of a spreadsheet as the print range. By selecting -user-defined-, you can define a print range that you have already defined using the Format - Print Ranges - Define command. If you have given a name to a range using the Sheet - Named Ranges and Expressions - Define command, this name will be displayed and can be selected from the list box." -msgstr "" +msgstr "Seleccione -ninguno- para quitar un intervalo de impresión de la hoja de cálculo actual. Seleccione -hoja completa- para configurar la hoja actual como intervalo de impresión. Elija -selección- para definir el área seleccionada de la hoja de cálculo como intervalo de impresión. Si selecciona -definido por el usuario-, puede establecer un intervalo de impresión ya definido mediante la orden Formato ▸ Intervalos de impresión ▸ Definir. Si ha asignado un nombre a un intervalo con la opción Hoja ▸ Intervalos y expresiones con nombre ▸ Definir, dicho nombre se mostrará y se podrá seleccionar en el cuadro de lista." #: 05080300.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/scalc/05.po libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/scalc/05.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/scalc/05.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/scalc/05.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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" -"PO-Revision-Date: 2017-07-20 20:12+0000\n" +"PO-Revision-Date: 2017-12-03 19:53+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500581549.000000\n" +"X-POOTLE-MTIME: 1512330793.000000\n" #: 02140000.xhp msgctxt "" @@ -358,7 +358,7 @@ "par_id3145635\n" "help.text" msgid "Compiler: an identifier in the formula exceeds 64 KB in size. Interpreter: a result of a string operation exceeds 64 KB in size." -msgstr "Compilador: el tamaño de uno de los identificadores de la fórmula excede los 64KB. Intérprete: el tamaño del resultado de una operación sobre cadenas de caracteres excede los 64 KB." +msgstr "Compilador: el tamaño de uno de los identificadores de la fórmula excede los 64 kB. Intérprete: el tamaño del resultado de una operación sobre cadenas de caracteres excede los 64 kB." #: 02140000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/scalc/guide.po libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/scalc/guide.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/scalc/guide.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/scalc/guide.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-18 19:10+0000\n" +"PO-Revision-Date: 2017-11-04 21:40+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1508353800.000000\n" +"X-POOTLE-MTIME: 1509831632.000000\n" #: address_auto.xhp msgctxt "" @@ -7470,7 +7470,7 @@ "par_id6478774\n" "help.text" msgid "what-if sheet area" -msgstr "área de la hoja «y si»" +msgstr "área de la hoja de hipótesis" #: multioperation.xhp msgctxt "" @@ -9414,7 +9414,7 @@ "bm_id3149664\n" "help.text" msgid "scenarios; creating/editing/deletingopening;scenariosselecting;scenarios in Navigator" -msgstr "escenarios; creando/editando/borrandoabriendo;escenariosseleccionando;escenarios en el Navegador" +msgstr "escenarios; crear/editar/eliminarabrir;escenariosseleccionar;escenarios en el Navegador" #: scenario.xhp msgctxt "" @@ -9430,7 +9430,7 @@ "par_id3150869\n" "help.text" msgid "A $[officename] Calc scenario is a set of cell values that can be used within your calculations. You assign a name to every scenario on your sheet. Define several scenarios on the same sheet, each with some different values in the cells. Then you can easily switch the sets of cell values by their name and immediately observe the results. Scenarios are a tool to test out \"what-if\" questions." -msgstr "Un escenario de $[officename] Calc es un conjunto de valores en celdas que pueden ser usadas para calculos. Usted asigna a un nombre cada escenario en tu hoja. Define diferentes escenarios en la misma hoja, cada uno tendra diferentes valores en la celdas. Entonces puedes facilmente cambiar el conjunto de valores en la celda por el nombre e inmediatamente observar el resultado. Los escenarios son herramientas para contestar preguntas de \"que pasaría\"." +msgstr "Un escenario de $[officename] Calc es un conjunto de valores en celdas que pueden utilizarse en sus cálculos. Asigne un nombre a cada uno de los escenarios de la hoja. Defina diferentes escenarios en la misma hoja, cada uno de los cuales con valores distintos en las celdas. Así será capaz de cambiar con facilidad entre los conjuntos de valores de celdas por sus nombres y observar los cambios en los resultados inmediatamente. Los escenarios son una herramienta para poner a prueba hipótesis." #: scenario.xhp msgctxt "" @@ -9446,7 +9446,7 @@ "par_id3154704\n" "help.text" msgid "To create a scenario, select all the cells that provide the data for the scenario." -msgstr "Para crear un escenario, seleccione todas las celdas que contienen datos que quiere que se incluyan. En nuestro ejemplo vamos a crear un escenario adicional denominado \"Cambio de dólar alto\":" +msgstr "Para crear un escenario, seleccione todas las celdas que proporcionen los datos que se emplearán en este." #: scenario.xhp msgctxt "" @@ -9462,7 +9462,7 @@ "par_id3150364\n" "help.text" msgid "Choose Tools - Scenarios. The Create Scenario dialog appears." -msgstr "Elija Herramientas - Escenarios. Aparece el cuadro de diálogo Crear escenario." +msgstr "Diríjase a Herramientas ▸ Escenarios. Aparecerá el cuadro de diálogo Crear escenario." #: scenario.xhp msgctxt "" @@ -9470,7 +9470,7 @@ "par_id3166426\n" "help.text" msgid "Enter a name for the new scenario and leave the other fields unchanged with their default values. Close the dialog with OK. Your new scenario is automatically activated." -msgstr "Introduzca el nombre del escenario, \"Bajofan\", deje las otras opciones como están y cierre el diálogo. Ahora se activará automáticamente su escenario." +msgstr "Escriba un nombre para el escenario nuevo y deje el resto de los campos sin modificar. Cierre el cuadro de diálogo pulsando el botón Aceptar. Se activará automáticamente el escenario nuevo." #: scenario.xhp msgctxt "" @@ -9486,7 +9486,7 @@ "par_id3153415\n" "help.text" msgid "Scenarios can be selected in the Navigator:" -msgstr "Los escenarios pueden ser seleccionados en el Navegador." +msgstr "Es posible seleccionar los escenarios en el Navegador:" #: scenario.xhp msgctxt "" @@ -9494,7 +9494,7 @@ "par_id3150752\n" "help.text" msgid "Open the Navigator with the Navigator icon Navigator icon on the Standard bar." -msgstr "Abre el Navegador con el ícono Navigador ícono del Navegador en la barra estandar." +msgstr "Abra el Navegador por medio de su icono icono del Navegador en la barra Estándar." #: scenario.xhp msgctxt "" @@ -9526,7 +9526,7 @@ "par_id9044770\n" "help.text" msgid "To delete a scenario, right-click the name in the Navigator and choose Delete." -msgstr "Para eliminar un escenario, haga clic derecho en su nombre en el Navegador y elija Eliminar." +msgstr "Para eliminar un escenario, pulse con el botón secundario del ratón en su nombre en el Navegador y seleccione Eliminar." #: scenario.xhp msgctxt "" @@ -9534,7 +9534,7 @@ "par_id3674123\n" "help.text" msgid "To edit a scenario, right-click the name in the Navigator and choose Properties." -msgstr "Para editar un escenario, haga clic derecho en su nombre en el Navegador y elija Propiedades." +msgstr "Para editar un escenario, pulse con el botón secundario del ratón en su nombre en el Navegador y seleccione Propiedades." #: scenario.xhp msgctxt "" @@ -10590,7 +10590,7 @@ "par_id3153768\n" "help.text" msgid "You can program functions as add-ins. This method requires an advanced knowledge of programming." -msgstr "Las funciones se pueden programar como add-ins. Este método exige conocimientos avanzados de programación." +msgstr "Las funciones se pueden programar como complementos. Este método exige conocimientos avanzados de programación." #: userdefined_function.xhp msgctxt "" @@ -10614,7 +10614,7 @@ "par_id3154510\n" "help.text" msgid "Click the Edit button. You will now see the Basic IDE." -msgstr "Pulse sobre el botón Editar. Verá el Basic-IDE." +msgstr "Pulse sobre el botón Editar. Verá el EID de Basic." #: userdefined_function.xhp msgctxt "" @@ -10654,7 +10654,7 @@ "par_id3145232\n" "help.text" msgid "In stage 2 of \"Defining A Function Using %PRODUCTNAME Basic\", in the Macro dialog you clicked on Edit . As the default, in the Macro from field the My Macros - Standard - Module1 module is selected. The Standard library resides locally in your user directory." -msgstr "En el paso 2 de \"Definir una función con %PRODUCTNAME Basic\", en el diálogo Macro , hizo clic en Editar. De manera predeterminada, en el campo Macro desde se encuentra seleccionado el módulo Mis macros - Estándar - Módulo1. La biblioteca Estándar se encuentra en el directorio del usuario de manera local." +msgstr "En la etapa 2 de «Definir una función con %PRODUCTNAME Basic», pulsó en el botón Editar del cuadro de diálogo Macro. De manera predeterminada, en el campo Macro desde se encuentra seleccionado el módulo Mis macros ▸ Estándar ▸ Módulo1. La biblioteca Estándar se encuentra en el directorio del usuario de manera local." #: userdefined_function.xhp msgctxt "" @@ -10678,7 +10678,7 @@ "par_id3150086\n" "help.text" msgid "In the Macro from field select My Macros - Standard - Module1 and click Edit." -msgstr "En el campo Macro desde, seleccione Mis macros - Estándar - Módulo1 y haga clic en Editar." +msgstr "En el campo Macro desde, seleccione Mis macros ▸ Estándar ▸ Módulo1 y pulse en Editar." #: userdefined_function.xhp msgctxt "" @@ -10718,7 +10718,7 @@ "par_id3148699\n" "help.text" msgid "Paste the clipboard contents in the Basic-IDE of the document." -msgstr "Pege el contenido del portapapeles en el Basic-IDE del documento." +msgstr "Pegue el contenido del portapapeles en la ventana del EID de Basic del documento." #: userdefined_function.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/scalc.po libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/scalc.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/scalc.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/scalc.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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" -"PO-Revision-Date: 2017-05-08 19:30+0000\n" +"PO-Revision-Date: 2017-11-04 21:28+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1494271829.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1509830938.000000\n" #: main0000.xhp msgctxt "" @@ -1438,7 +1438,7 @@ "hd_id3152596\n" "help.text" msgid "What-If Calculations" -msgstr "Cálculos qué-pasaría-si" +msgstr "Cálculos de hipótesis" #: main0503.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/schart/01.po libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/schart/01.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/schart/01.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/schart/01.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-20 03:18+0000\n" +"PO-Revision-Date: 2017-11-23 01:19+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1508469519.000000\n" +"X-POOTLE-MTIME: 1511399979.000000\n" #: 03010000.xhp msgctxt "" @@ -5342,7 +5342,7 @@ "par_id5091708\n" "help.text" msgid "The range for a data role, like Y-Values, must not include a label cell." -msgstr "El rango de una función de datos, como valores-Y, no deben incluir una celda de etiqueta." +msgstr "El intervalo de una función de datos, como los valores de Y, no debe incluir ninguna celda de etiqueta." #: type_column_line.xhp msgctxt "" @@ -7542,7 +7542,7 @@ "par_id953703\n" "help.text" msgid "Data series get their data from consecutive rows in the selected range. For scatter charts, the first data series will contain x-values for all series. All other data series are used as y-values, one for each series." -msgstr "Las series de Datos obtienen sus datos desde filas consecutivas en el rango seleccionado. Para gráficos de dispersión, la primera serie de datos contendrá los valores-x para todas las series. Todas las demás series de datos son utilizadas como valores-y, uno por cada serie." +msgstr "Las series de datos obtienen sus datos de las filas consecutivas en el intervalo seleccionado. Para diagramas de dispersión, la primera serie de datos contendrá los valores X de todas las series. El resto de las series de datos se utiliza como valores Y, uno por cada serie." #: wiz_data_range.xhp msgctxt "" @@ -7550,7 +7550,7 @@ "par_id4496597\n" "help.text" msgid "Data series get their data from consecutive columns in the selected range. For scatter charts, the first data column will contain x-values for all series. All other data columns are used as y-values, one for each series." -msgstr "Las series de Datos obtienen sus datos de columnas consecutivas en el rango seleccionado. Para los gráficos de dispersión, la primera columna de datos contendrá valores -x para todas las series. Todas las demás columnas de datos se utilizan como valores-y, uno por cada serie." +msgstr "Las series de datos obtienen sus datos de las columnas consecutivas en el intervalo seleccionado. Para diagramas de dispersión, la primera columna de datos contendrá los valores X de todas las series. El resto de las columnas de datos se utiliza como valores Y, uno por cada serie." #: wiz_data_range.xhp msgctxt "" @@ -7726,7 +7726,7 @@ "par_id5971556\n" "help.text" msgid "The range for a data role, like Y-Values, must not include a label cell." -msgstr "El rango de una función de datos, como valores-Y, no deben incluir una celda de etiqueta." +msgstr "El intervalo de una función de datos, como los valores de Y, no debe incluir ninguna celda de etiqueta." #: wiz_data_series.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/sdraw/guide.po libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/sdraw/guide.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/sdraw/guide.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/sdraw/guide.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-05-12 14:35+0200\n" -"PO-Revision-Date: 2017-10-13 23:40+0000\n" +"PO-Revision-Date: 2017-11-20 16:18+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1507938002.000000\n" +"X-POOTLE-MTIME: 1511194730.000000\n" #: align_arrange.xhp msgctxt "" @@ -1046,7 +1046,7 @@ "par_id3154656\n" "help.text" msgid "Ensure that the image you are using is a bitmap (for example, BMP, GIF, JPG, or PNG) or a metafile (for example, WMF)." -msgstr "Asegúrese de que la imagen en uso es un mapa de bits —por ejemplo, BMP, GIF, JPG o PNG— o un metarchivo —por ejemplo, WMF—." +msgstr "Cerciórese de que la imagen que utilice sea un mapa de bits (por ejemplo, BMP, GIF, JPG o PNG) o un metarchivo (por ejemplo, WMF)." #: eyedropper.xhp msgctxt "" @@ -1878,7 +1878,7 @@ "bm_id3154684\n" "help.text" msgid "rotating; draw objectsdraw objects; rotatingpivot points of draw objectsskewing draw objects" -msgstr "girar;objetos de dibujoobjetos de dibujo;girarpuntos de rotación de objetos de dibujodesviar objetos de dibujo" +msgstr "girar;objetos de dibujoobjetos de dibujo;girarpuntos de giro de objetos de dibujodesviar objetos de dibujo" #: rotate_object.xhp msgctxt "" @@ -1894,7 +1894,7 @@ "par_id3149262\n" "help.text" msgid "You can rotate an object around its default pivot point (center point) or a pivot point that you designate." -msgstr "Al pulsar sobre un objeto por primera vez, aparecerán ocho agarraderas con las que podrá modificar el tamaño. Si sitúa el cursor en el centro del objeto y tira de la cruz que aparece también podrá modificar su posición en la página." +msgstr "Es posible girar un objeto alrededor de su punto de giro predeterminado (el punto central) o del punto de giro que designe." #: rotate_object.xhp msgctxt "" @@ -1950,7 +1950,7 @@ "par_id3166424\n" "help.text" msgid "To change the pivot point, drag the small circle in the center of the object to a new location." -msgstr "Pulse otra vez sobre el objeto y verá de nuevo las ocho agarraderas normales. Si pulsa dos veces dentro de él las agarraderas se modifican y aparece un cursor de texto en el centro del objeto. Ahora podrá introducir un texto unido automáticamente al objeto." +msgstr "Para modificar el punto de giro, arrastre el círculo pequeño en el centro del objeto a una posición distinta." #: rotate_object.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/shared/00.po libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/shared/00.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/shared/00.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/shared/00.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-20 14:17+0200\n" -"PO-Revision-Date: 2017-10-20 03:07+0000\n" +"PO-Revision-Date: 2017-11-23 01:02+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1508468827.000000\n" +"X-POOTLE-MTIME: 1511398950.000000\n" #: 00000001.xhp msgctxt "" @@ -3830,7 +3830,7 @@ "par_id3143206\n" "help.text" msgid "Tools Menu - Scenarios" -msgstr "Menú Herramientas ▸ Escenarios" +msgstr "Menú Herramientas ▸ Escenarios" #: 00000099.xhp msgctxt "" @@ -5622,7 +5622,7 @@ "par_idN10C46\n" "help.text" msgid "Click Use Wizard to Create Form in a database file window." -msgstr "Pulse en Usar el asistente para crear un formulario en la ventana de un archivo de base de datos." +msgstr "Pulse en Crear un formulario mediante el asistente en la ventana de un archivo de base de datos." #: 00000401.xhp msgctxt "" @@ -5630,7 +5630,7 @@ "par_idN10C5F\n" "help.text" msgid "Click Use Wizard to Create Report in a database file window." -msgstr "Pulse en Usar el asistente para crear un informe en la ventana de un archivo de base de datos." +msgstr "Pulse en Crear un informe mediante el asistente en la ventana de un archivo de base de datos." #: 00000401.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/shared/01.po libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/shared/01.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/shared/01.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/shared/01.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-20 14:17+0200\n" -"PO-Revision-Date: 2017-10-27 22:07+0000\n" +"PO-Revision-Date: 2017-12-03 19:58+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1509142042.000000\n" +"X-POOTLE-MTIME: 1512331130.000000\n" #: 01010000.xhp msgctxt "" @@ -13446,7 +13446,7 @@ "par_idN10B85\n" "help.text" msgid "Hides the selected characters. To display the hidden text, ensure that Non-printing Characters is selected in the View menu. You can also choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Formatting Aids and select Hidden text." -msgstr "Oculta los caracteres seleccionados. Para mostrar el texto oculto, asegúrese de que esté seleccionado Caracteres no imprimibles en el menú Ver. También puede elegirse %PRODUCTNAME - PreferenciasHerramientas - Opciones - %PRODUCTNAME Writer - Asistencia al formateo y seleccionar Texto oculto." +msgstr "Oculta los caracteres seleccionados. Para mostrar el texto oculto, asegúrese de que esté seleccionada la opción Caracteres no imprimibles en el menú Ver. También puede elegirse %PRODUCTNAME ▸ PreferenciasHerramientas ▸ Opciones ▸ %PRODUCTNAME Writer ▸ Ayudas de formato y seleccionar Texto oculto allí." #: 05020200.xhp msgctxt "" @@ -18158,7 +18158,7 @@ "par_id3150744\n" "help.text" msgid "If you use different font sizes within a paragraph, the line spacing is automatically adjusted to the largest font size. If you prefer to have identical spacing for all lines, specify a value in At least that corresponds to the largest font size." -msgstr "Si desea utilizar distintos tamaños de fuente dentro de un párrafo, $[officename] ajusta automáticamente el interlineado al tamaño de fuente más grande que se use. En caso de que prefiera fijar el mismo interlineado para todas las filas, defina en Mínimo un valor que sea bastante alto también para el tamaño de fuente más grande utilizado." +msgstr "Si utiliza diferentes tamaños de letra en un mismo párrafo, el interlineado se ajusta automáticamente para dar cabida al tamaño de letra más grande utilizado. Si prefiere que el espaciado sea idéntico en todos los renglones, especifique un valor en Como mínimo que corresponda con el tamaño de letra más grande." #: 05030100.xhp msgctxt "" @@ -24870,7 +24870,7 @@ "hd_id3148983\n" "help.text" msgid "Pivot point" -msgstr "Punto de rotación" +msgstr "Punto de giro" #: 05230300.xhp msgctxt "" @@ -24878,7 +24878,7 @@ "par_id3150902\n" "help.text" msgid "The selected object is rotated around a pivot point that you specify. The default pivot point is at the center of the object." -msgstr "El objeto seleccionado gira alrededor del punto de rotación especificado. El punto de rotación predeterminado es el centro del objeto." +msgstr "El objeto seleccionado puede hacerse girar alrededor del punto de giro especificado. El punto de giro predeterminado es el centro del objeto." #: 05230300.xhp msgctxt "" @@ -24886,7 +24886,7 @@ "par_id3153528\n" "help.text" msgid "If you set a pivot point too far outside of the object boundaries, the object could be rotated off of the page." -msgstr "Si sitúa un punto de rotación demasiado lejos de los límites del objeto, es posible que éste se salga de la página al rotar." +msgstr "Si sitúa un punto de giro demasiado lejos de los límites del objeto, es posible que este se salga de la página al girarlo." #: 05230300.xhp msgctxt "" @@ -24902,7 +24902,7 @@ "par_id3166410\n" "help.text" msgid "Enter the horizontal distance from the left edge of the page to the pivot point." -msgstr "Escriba la distancia horizontal desde el borde izquierdo de la página hasta el punto de giro." +msgstr "Digite la distancia horizontal desde el borde izquierdo de la página hasta el punto de giro." #: 05230300.xhp msgctxt "" @@ -24918,7 +24918,7 @@ "par_id3150669\n" "help.text" msgid "Enter the vertical distance from the top edge of the page to the pivot point." -msgstr "Escriba la distancia vertical desde el borde superior de la página al punto de rotación." +msgstr "Digite la distancia vertical desde el borde superior de la página hasta el punto de giro." #: 05230300.xhp msgctxt "" @@ -24934,7 +24934,7 @@ "par_id3143270\n" "help.text" msgid "Click where you want to place the pivot point." -msgstr "Haga clic en el lugar en el que desee situar el punto de rotación." +msgstr "Pulse en el lugar en el que desee situar el punto de giro." #: 05230300.xhp msgctxt "" @@ -36814,7 +36814,7 @@ "par_id3154142\n" "help.text" msgid "Check to convert only Hangul. Do not convert Hanja." -msgstr "Marque para convertir sólo hangul. No convierta hanja." +msgstr "Active esta casilla para convertir el texto en hangul solamente. El texto en hanja no se convertirá." #: 06200000.xhp msgctxt "" @@ -36830,7 +36830,7 @@ "par_id3156023\n" "help.text" msgid "Check to convert only Hanja. Do not convert Hangul." -msgstr "Marque para convertir sólo hanja. No convierta hangul." +msgstr "Active esta casilla para convertir el texto en hanja solamente. El texto en hangul no se convertirá." #: 06200000.xhp msgctxt "" @@ -36910,7 +36910,7 @@ "par_id3145154\n" "help.text" msgid "Check to move character-by-character through the selected text. If not checked, full words are replaced." -msgstr "Márquela para desplazarse por el texto carácter a carácter. Si no está marcada, se reemplazan palabras enteras." +msgstr "Márquela para desplazarse por el texto carácter por carácter. Si no está marcada, se reemplazan palabras enteras." #: 06200000.xhp msgctxt "" @@ -42566,7 +42566,7 @@ "bm_id8286080\n" "help.text" msgid "deleting;namespaces in XFormsorganizing;namespaces in XFormsnamespace organization in XFormsXForms;adding/editing/deleting/organizing namespaces" -msgstr "eliminar;namespaces en XFormsorganizar;namespaces en XFormsorganización de namespace en XFormsXForms;agregar/editar/eliminar/organizar namespaces" +msgstr "eliminar;espacios de nombres en XFormsorganizar;espacios de nombres en XFormsorganización de espacios de nombres en XFormsXForms;añadir/editar/eliminar/organizar espacios de nombres" #: xformsdataname.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/shared/02.po libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/shared/02.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/shared/02.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/shared/02.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-05-12 14:35+0200\n" -"PO-Revision-Date: 2017-10-20 08:02+0000\n" +"PO-Revision-Date: 2017-12-05 22:39+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1508486546.000000\n" +"X-POOTLE-MTIME: 1512513597.000000\n" #: 01110000.xhp msgctxt "" @@ -3974,7 +3974,7 @@ "par_id3153025\n" "help.text" msgid "If you work with macros, make sure that the names of the controls are unique." -msgstr "Si trabaja con macros, asegúrese de que los nombres de los controles sean inequívocos." +msgstr "Si trabaja con macros, asegúrese de que los nombres de los controles sean unívocos." #: 01170101.xhp msgctxt "" @@ -15774,7 +15774,7 @@ "hd_id3148668\n" "help.text" msgid "Selection Mode" -msgstr "Modo Selección" +msgstr "Modo de selección" #: 20050000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/shared/autopi.po libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/shared/autopi.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/shared/autopi.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/shared/autopi.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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" -"PO-Revision-Date: 2017-10-30 22:36+0000\n" +"PO-Revision-Date: 2017-12-03 19:59+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1509403008.000000\n" +"X-POOTLE-MTIME: 1512331169.000000\n" #: 01000000.xhp msgctxt "" @@ -318,7 +318,7 @@ "par_idN106AB\n" "help.text" msgid "Specifies whether paper is used that already contains an imprinted logo, address, or footer line. The Wizard shows the Letterhead layout page next." -msgstr "Especifica si se utiliza papel que ya contiene un logotipo, una dirección o una línea de pie de página impresos. El asistente muestra a continuación la página con membrete." +msgstr "Especifica si se utiliza papel que ya contiene un logotipo, una dirección o un renglón de pie de página impresos. El asistente muestra a continuación la página con membrete." #: 01010100.xhp msgctxt "" @@ -574,7 +574,7 @@ "par_idN10630\n" "help.text" msgid "Letter signs" -msgstr "Signos de letras" +msgstr "Referencias de carta" #: 01010300.xhp msgctxt "" @@ -814,7 +814,7 @@ "par_idN10682\n" "help.text" msgid "Use placeholders for recipient's address" -msgstr "Usar los marcadores de posición para la dirección del destinatario" +msgstr "Utilizar marcadores de posición para la dirección del destinatario" #: 01010400.xhp msgctxt "" @@ -830,7 +830,7 @@ "par_idN1069C\n" "help.text" msgid "Use address database for mail merge" -msgstr "Use la base de datos de direcciones para combinar correspondencia" +msgstr "Utilizar base de datos de direcciones para combinar correspondencia" #: 01010400.xhp msgctxt "" @@ -1454,7 +1454,7 @@ "par_idN10600\n" "help.text" msgid "Use address database for mail merge" -msgstr "Use la base de datos de direcciones para combinar correspondencia" +msgstr "Utilizar base de datos de direcciones para combinar correspondencia" #: 01020300.xhp msgctxt "" @@ -5878,7 +5878,7 @@ "par_id3149346\n" "help.text" msgid "Copies and converts documents into the OpenDocument XML format used by $[officename]." -msgstr "Copia y convierte documentos al formato OpenDocument XML que utiliza $[officename]." +msgstr "Copia y convierte documentos en el formato OpenDocument XML que utiliza $[officename]." #: 01130000.xhp msgctxt "" @@ -5950,7 +5950,7 @@ "par_id3150771\n" "help.text" msgid "Converts Microsoft Office documents into the OpenDocument format." -msgstr "Convierte documentos de Microsoft Office al formato OpenDocument." +msgstr "Convierte documentos de Microsoft Office en el formato OpenDocument." #: 01130100.xhp msgctxt "" @@ -7054,7 +7054,7 @@ "par_idN105C9\n" "help.text" msgid "Registers the newly created database file in %PRODUCTNAME. The database will then be listed in the data source window (F4). If this check box is cleared, the database will be available only by opening the database file." -msgstr "Registra el archivo de base de datos que se acaba de crear en %PRODUCTNAME. La base de datos se incluirá en la lista de la ventana de origen de datos (F4). Si se desmarca esta casilla de verificación, la base de datos sólo estará disponible abriendo el archivo de base de datos." +msgstr "Registra el archivo de base de datos que se acaba de crear en %PRODUCTNAME. La base de datos se incluirá en la lista de la ventana de origen de datos (F4). Si se desmarca esta casilla de verificación, la base de datos solo estará disponible cuando abra el archivo de base de datos." #: 01170400.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/shared/guide.po libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/shared/guide.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/shared/guide.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-06 20:00+0200\n" -"PO-Revision-Date: 2017-10-18 21:45+0000\n" +"PO-Revision-Date: 2017-11-23 01:05+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1508363103.000000\n" +"X-POOTLE-MTIME: 1511399133.000000\n" #: aaa_start.xhp msgctxt "" @@ -1270,7 +1270,7 @@ "bm_id3156324\n" "help.text" msgid "titles; changingchanging;document titlesdocuments; changing titles" -msgstr "títulos;cambiarencabezados;cambiar títulos de documentosdocumentos;cambiar títulos" +msgstr "títulos; cambiarcambiar;títulos de documentosdocumentos; cambiar títulos" #: change_title.xhp msgctxt "" @@ -3886,7 +3886,7 @@ "par_idN1063E\n" "help.text" msgid "Click Use Wizard to Create Form." -msgstr "Pulse en Usar el asistente para crear un formulario." +msgstr "Pulse en Crear un formulario mediante el asistente." #: data_forms.xhp msgctxt "" @@ -4606,7 +4606,7 @@ "par_id1886959\n" "help.text" msgid "Started by \"Use Wizard to Create Report\" command." -msgstr "Iniciado por la orden «Usar el asistente para crear un informe»." +msgstr "Iniciado por la orden «Crear un informe mediante el asistente»." #: data_reports.xhp msgctxt "" @@ -4774,7 +4774,7 @@ "par_idN105E8\n" "help.text" msgid "Click Use Wizard to Create Report." -msgstr "Pulse en Usar el asistente para crear un informe." +msgstr "Pulse en Crear un informe mediante el asistente." #: data_reports.xhp msgctxt "" @@ -5134,7 +5134,7 @@ "par_idN1063E\n" "help.text" msgid "Click Use Wizard to Create Table." -msgstr "Pulse en Usar el asistente para crear una tabla." +msgstr "Pulse en Crear una tabla mediante el asistente." #: data_tables.xhp msgctxt "" @@ -14126,7 +14126,7 @@ "hd_id3153092\n" "help.text" msgid "Converting Many Microsoft Office Files into OpenDocument Format" -msgstr "Convertir muchos archivos de Microsoft Office al formato OpenDocument" +msgstr "Convertir varios archivos de Microsoft Office en el formato OpenDocument" #: ms_user.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/simpress/02.po libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/simpress/02.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/simpress/02.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/simpress/02.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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" -"PO-Revision-Date: 2016-04-18 10:52+0000\n" +"PO-Revision-Date: 2017-11-20 16:31+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1460976771.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511195494.000000\n" #: 04010000.xhp msgctxt "" @@ -710,7 +710,7 @@ "par_id3148489\n" "help.text" msgid "Rotates or skews the selected 2D object(s) around a pivot point. Drag a corner handle of the object in the direction you want to rotate it. To skew an object, drag a center handle in the direction you want to skew it." -msgstr "Gira o desplaza los objetos 2D seleccionados alrededor de un punto de rotación. Arrastre una agarradera de la esquina del objeto en la dirección en la que desea hacerlo rodar. Para desplazar un objeto arrastre una de las agarraderas centrales en la dirección en la que desea desplazarlo." +msgstr "Gira o desplaza los objetos 2D seleccionados alrededor de un punto de giro. Arrastre una agarradera de la esquina del objeto en la dirección en la que desee hacerlo girar. Para desplazar un objeto, arrastre una de las agarraderas centrales en la dirección en la que desee desplazarlo." #: 10030000.xhp msgctxt "" @@ -718,7 +718,7 @@ "par_id3154022\n" "help.text" msgid "Each slide has only one pivot point. Double-click an object to move the pivot point to the center of the object. You can also drag the pivot point to a new location on the screen, and then rotate the object." -msgstr "Cada diapositiva tiene un único punto de rotación. Haga doble clic sobre un objeto para desplazar el punto de rotación al centro del objeto. También se puede arrastrar dicho punto a una nueva posición de la pantalla y, a continuación, hacer rodar el objeto." +msgstr "Cada diapositiva tiene un único punto de giro. Pulse dos veces sobre un objeto para desplazar el punto de giro al centro del objeto. También se puede arrastrar dicho punto a una posición nueva de la pantalla y, acto seguido, hacer girar el objeto." #: 10030000.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/simpress/guide.po libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/simpress/guide.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/simpress/guide.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/simpress/guide.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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" -"PO-Revision-Date: 2017-10-13 22:20+0000\n" +"PO-Revision-Date: 2017-11-12 20:10+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1507933218.000000\n" +"X-POOTLE-MTIME: 1510517451.000000\n" #: 3d_create.xhp msgctxt "" @@ -4414,7 +4414,7 @@ "par_id4984282\n" "help.text" msgid "Enter text for header, footer, and date. Check the Page number box, if you want to number the handout pages. Ensure the Header check box is enabled if you want your header text to be printed." -msgstr "Introduzca texto para encabezados, pies de página y fechas. Compruebe el cuadro Numeración de página si quiere numerar los documentos. Asegúrese de que la casilla de verificación del Encabezado esté activa si quiere que el encabezado salga en la impresión." +msgstr "Escriba los textos de la cabecera, el pie y la fecha. Marque la casilla Número de página si quiere numerar las páginas del folleto. Cerciórese de que esté activada la casilla Cabecera si quiere que la cabecera se imprima." #: printing.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/smath/01.po libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/smath/01.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/smath/01.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/smath/01.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-05-12 14:35+0200\n" -"PO-Revision-Date: 2017-10-13 22:49+0000\n" +"PO-Revision-Date: 2017-11-25 01:49+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1507934973.000000\n" +"X-POOTLE-MTIME: 1511574588.000000\n" #: 02080000.xhp msgctxt "" @@ -4078,7 +4078,7 @@ "bm_id3153150\n" "help.text" msgid "formatting;in $[officename] Math$[officename] Math; formattingsuperscriptsbinomialsvertical elementslines; inserting in formulassubscriptsstacksvertical arrangement of elementssmall gapsalignment; left (Math)left-justified alignment (Math)alignment; horizontally centered (Math)centered horizontally; alignment (Math)alignment; right (Math)right-justified alignment in %PRODUCTNAME Mathmatrices; arrangingspaces in formulasgaps in formulasinserting; gapsarranging;matricesformulas;aligningaligning formulas" -msgstr "formato;en $[officename] Math$[officename] Math; formatosuperíndicesbinomialeselementos verticalesrenglones; inserción en fórmulassubíndicespilasdisposiciones verticales de elementosseparaciones pequeñasalineación; izquierda (Math)alineación justificada a la izquierda (Math)alineación; centrada horizontalmente (Math)centrada horizontalmente; alineación (Math)alineación; derecha (Math)alineación justificada a la derecha en %PRODUCTNAME Mathmatrices; disposiciónespacios en fórmulasseparaciones en fórmulasinserción; separacionesdisposición;matricesfórmulas;alineaciónalineación de fórmulas" +msgstr "formato;en $[officename] Math$[officename] Math; formatosuperíndicesbinómicaselementos verticalesrenglones; inserción en fórmulassubíndicespilasdisposiciones verticales de elementosseparaciones pequeñasalineación; izquierda (Math)alineación justificada a la izquierda (Math)alineación; centrada horizontalmente (Math)centrada horizontalmente; alineación (Math)alineación; derecha (Math)alineación justificada a la derecha en %PRODUCTNAME Mathmatrices; disposiciónespacios en fórmulasseparaciones en fórmulasinserción; separacionesdisposición;matricesfórmulas;alineaciónalineación de fórmulas" #: 03090700.xhp msgctxt "" @@ -4214,7 +4214,7 @@ "par_id3147326\n" "help.text" msgid "Inserts a vertical stack (binomial) with two placeholders. You can also type binom directly in the Commands window." -msgstr "Inserta un posicionamiento vertical (binomial) con dos comodines. También puede escribir binom en el cuadro Órdenes." +msgstr "Inserta una pila vertical (binómica) con dos comodines. También puede escribir binom en el cuadro Órdenes." #: 03090700.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/swriter/01.po libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/swriter/01.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/swriter/01.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/swriter/01.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-20 14:37+0200\n" -"PO-Revision-Date: 2017-10-20 10:38+0000\n" +"PO-Revision-Date: 2017-12-05 23:46+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1508495892.000000\n" +"X-POOTLE-MTIME: 1512517578.000000\n" #: 01120000.xhp msgctxt "" @@ -26118,7 +26118,7 @@ "hd_id4177678\n" "help.text" msgid "Selection Mode" -msgstr "Modo de Selección" +msgstr "Modo de selección" #: selection_mode.xhp msgctxt "" @@ -26126,7 +26126,7 @@ "par_id2962126\n" "help.text" msgid "Choose the selection mode from the submenu: normal selection mode, or block selection mode." -msgstr "Elegir el modo de selección del submenú: modo Normal o el modo de seleccione en Bloque." +msgstr "Seleccione la modalidad de selección del menú: estándar o de bloque." #: selection_mode.xhp msgctxt "" @@ -26134,7 +26134,7 @@ "par_id9816278\n" "help.text" msgid "In normal selection mode, you can select multi-line text including the line ends." -msgstr "En el modo de selección normal es posible seleccionar varios renglones de texto, las terminaciones de líneas incluidas." +msgstr "En el modo de selección normal es posible seleccionar varios renglones de texto, los finales de renglones incluidos." #: selection_mode.xhp msgctxt "" @@ -26142,7 +26142,7 @@ "par_id3097323\n" "help.text" msgid "In block selection mode, you can select a rectangular block of text." -msgstr "En modo de selección en Bloque, puede seleccionar un bloque rectangular de texto." +msgstr "En la modalidad de selección en bloque, puede seleccionar un bloque rectangular de texto." #: title_page.xhp msgctxt "" @@ -26150,7 +26150,7 @@ "tit\n" "help.text" msgid "Using title pages in your document" -msgstr "Utilizar páginas de título en un documento" +msgstr "Utilizar portadas en un documento" #: title_page.xhp msgctxt "" @@ -26158,7 +26158,7 @@ "bm_id300920161717389897\n" "help.text" msgid "page;title page title pages;first page style title pages;modifying title pages;inserting" -msgstr "" +msgstr "página;portadaportadas;estilo Primera páginaportadas;modificarportadas;insertar" #: title_page.xhp msgctxt "" @@ -26166,7 +26166,7 @@ "hd_id300920161429137211\n" "help.text" msgid "Inserting title pages in the document" -msgstr "" +msgstr "Insertar portadas en el documento" #: title_page.xhp msgctxt "" @@ -26174,7 +26174,7 @@ "par_id300920161429345505\n" "help.text" msgid "Insert title pages in your document." -msgstr "" +msgstr "Insertar portadas en el documento." #: title_page.xhp msgctxt "" @@ -26182,7 +26182,7 @@ "par_id300920161429347135\n" "help.text" msgid "Title pages are pages at the beginning of the document that lists the publication information, such as the title of the publication, the name of the author etc. These pages have a different layout than the pages of the document body, because they may not have page numbering, sometimes a different heading and footer and even different margins settings or background." -msgstr "" +msgstr "Las portadas son páginas que suelen situarse al comienzo del documento y cuya función es mostrar datos de la publicación tales como el título, el nombre del autor, etcétera. Estas páginas poseen una disposición distinta de las de las páginas del cuerpo del documento, dado que pueden carecer de número de página, utilizar cabeceras y pies diferentes o incluso emplear fondos y márgenes distintos." #: title_page.xhp msgctxt "" @@ -26190,7 +26190,7 @@ "par_id300920161443292710\n" "help.text" msgid "Choose menu Format - Title Page" -msgstr "" +msgstr "Vaya a Formato ▸ Portada" #: title_page.xhp msgctxt "" @@ -26198,7 +26198,7 @@ "par_id300920161443298079\n" "help.text" msgid "Many documents, such as letters and reports, have a first page that is different from the other pages in the document. For example, the first page of a letterhead typically has a different header or the first page of a report might have no header or footer, while the other pages do. This is simple to achieve with %PRODUCTNAME Writer." -msgstr "" +msgstr "Muchos documentos, tales como las cartas y los informes, utilizan una primera página que difiere del resto de las páginas del documento. Por ejemplo, la primera página de un membrete normalmente tiene una cabecera distinta, o bien, la primera página de un informe podría no incluir cabecera o pie aun cuando las otras páginas cuenten con estos elementos. Con %PRODUCTNAME Writer es muy sencillo lograr estos cambios de formato." #: title_page.xhp msgctxt "" @@ -26206,7 +26206,7 @@ "par_id300920161443298274\n" "help.text" msgid "Page header and footer, numbering, margins and orientation are some of the properties that belongs to page styles. %PRODUCTNAME Writer let your to insert a blank title page at any point of your document, or format an existing page like a title page, by inserting a page break followed by a page style of your choice or by changing the page style at cursor position." -msgstr "" +msgstr "La cabecera y el pie de página, la numeración, los márgenes y la orientación de las páginas son algunas de las propiedades que pertenecen a los estilos de página. %PRODUCTNAME Writer le permite insertar una portada vacía en cualquier sitio del documento o formatear una página existente como portada al insertar un salto de página seguido del estilo de página que prefiera, o bien, al modificar el estilo de página en la posición del cursor." #: title_page.xhp msgctxt "" @@ -26222,7 +26222,7 @@ "hd_id300920161443299618\n" "help.text" msgid "To convert the first page of the document into a title page" -msgstr "" +msgstr "Para convertir la primera página del documento en una portada" #: title_page.xhp msgctxt "" @@ -26238,7 +26238,7 @@ "par_id300920161443301816\n" "help.text" msgid "From the Menu Bar, choose Format - Title page…" -msgstr "" +msgstr "En la barra de menús, diríjase a Formato ▸ Portada" #: title_page.xhp msgctxt "" @@ -26246,7 +26246,7 @@ "par_id300920161443304794\n" "help.text" msgid "Select Converting existing pages to title pages" -msgstr "" +msgstr "Seleccione Convertir páginas existentes en portadas" #: title_page.xhp msgctxt "" @@ -26254,7 +26254,7 @@ "par_id300920161443301533\n" "help.text" msgid "Select the style of the title page in the Edit Page Properties area" -msgstr "" +msgstr "Seleccione el estilo de la portada en el apartado Editar propiedades de la página" #: title_page.xhp msgctxt "" @@ -26270,7 +26270,7 @@ "par_id300920161443315175\n" "help.text" msgid "Set the page numbering reset options." -msgstr "" +msgstr "Defina las opciones de restablecimiento de numeración de páginas." #: title_page.xhp msgctxt "" @@ -26286,7 +26286,7 @@ "par_id300920161443314375\n" "help.text" msgid "This will change the current page style to First page and the following pages will have the Default page style" -msgstr "" +msgstr "Esto cambiará el estilo de la página actual a Primera página y las páginas subsecuentes utilizarán el estilo Página predeterminada" #: title_page.xhp msgctxt "" @@ -26294,7 +26294,7 @@ "hd_id300920161443317859\n" "help.text" msgid "To insert a title page anywhere in the document" -msgstr "" +msgstr "Para insertar una portada en cualquier sitio del documento" #: title_page.xhp msgctxt "" @@ -26302,7 +26302,7 @@ "par_id300920161443317032\n" "help.text" msgid "Place the cursor where you want to insert a new title page." -msgstr "" +msgstr "Coloque el cursor donde quiera insertar la portada nueva." #: title_page.xhp msgctxt "" @@ -26310,7 +26310,7 @@ "par_id300920161443315460\n" "help.text" msgid "From the menu bar select Format - Title page." -msgstr "" +msgstr "En la barra de menús, diríjase a Formato ▸ Portada." #: title_page.xhp msgctxt "" @@ -26318,7 +26318,7 @@ "par_id300920161443318611\n" "help.text" msgid "Select Insert new title pages" -msgstr "" +msgstr "Seleccione Insertar portadas nuevas" #: title_page.xhp msgctxt "" @@ -26326,7 +26326,7 @@ "par_id300920161443311657\n" "help.text" msgid "Set number of title pages to add and" -msgstr "" +msgstr "Defina el número de portadas que añadir y" #: title_page.xhp msgctxt "" @@ -26334,7 +26334,7 @@ "par_id300920161443311852\n" "help.text" msgid "Set the title page location by setting its page number in the spin box." -msgstr "" +msgstr "Establezca la ubicación de la portada a través del número de página en el cuadro correspondiente." #: title_page.xhp msgctxt "" @@ -26342,7 +26342,7 @@ "par_id300920161443329307\n" "help.text" msgid "Set the page numbering reset options." -msgstr "" +msgstr "Defina las opciones de restablecimiento de numeración de páginas." #: title_page.xhp msgctxt "" @@ -26366,7 +26366,7 @@ "hd_id300920161443323335\n" "help.text" msgid "To delete a title page:" -msgstr "" +msgstr "Para eliminar una portada" #: title_page.xhp msgctxt "" @@ -26374,7 +26374,7 @@ "par_id30092016144332559\n" "help.text" msgid "You cannot delete a title page. You must change its page style format from First page to whatever other page style you wish." -msgstr "" +msgstr "No se pueden eliminar las portadas directamente. Es necesario cambiarles el estilo de «Primera página» a cualquier otro estilo que prefiera. " #: title_page.xhp msgctxt "" @@ -26390,7 +26390,7 @@ "par_id30092016144332353\n" "help.text" msgid "From the Sidebar Deck, select Sidebar Settings - Styles and Formatting." -msgstr "" +msgstr "En la barra lateral, seleccione Configuración de barra lateral ▸ Estilos y formato." #: title_page.xhp msgctxt "" @@ -26398,7 +26398,7 @@ "par_id300920161443329078\n" "help.text" msgid "From the Styles and Formatting, select button Page Styles." -msgstr "" +msgstr "En la ventana Estilos y formato, pulse en el botón Estilos de página." #: title_page.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/swriter/guide.po libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/swriter/guide.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/helpcontent2/source/text/swriter/guide.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/helpcontent2/source/text/swriter/guide.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-18 22:32+0000\n" +"PO-Revision-Date: 2017-11-16 09:17+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1508365950.000000\n" +"X-POOTLE-MTIME: 1510823842.000000\n" #: anchor_object.xhp msgctxt "" @@ -3454,7 +3454,7 @@ "bm_id3153407\n" "help.text" msgid "page styles; left and right pages blank pages with alternating page styles empty page with alternating page styles pages; left and right pages formatting; even/odd pages title pages; page styles First Page page style Left Page page style right pages even/odd pages;formatting" -msgstr "estilos de página; páginas izquierda y derechapáginas vacías con estilos de página alternadospágina vacía con estilos de página alternadospáginas; páginas izquierda y derechaformato; páginas pares/imparespáginas de título; estilos de páginaestilo de página Primera páginaestilo de página Página izquierdapáginas derechaspáginas pares/impares;formato" +msgstr "estilos de página; páginas izquierda y derechapáginas vacías con estilos de página alternadospágina vacía con estilos de página alternadospáginas; páginas izquierda y derechaformato; páginas pares/imparesportadas; estilos de páginaestilo de página Primera páginaestilo de página Página izquierdapáginas derechaspáginas pares/impares;formato" #: even_odd_sdw.xhp msgctxt "" @@ -3566,7 +3566,7 @@ "par_id3147254\n" "help.text" msgid "If you do not want to have a header or a footer on the title page of your document, apply the \"First Page\" style to the title page." -msgstr "Si no desea incluir un encabezado o pie de página en la página de título del documento, aplique el estilo \"Primera página\" a la página de título." +msgstr "Si no quiere que la portada del documento incluya una cabecera o un pie, aplique a esta página el estilo «Primera página»." #: even_odd_sdw.xhp msgctxt "" @@ -10182,7 +10182,7 @@ "par_id1911679\n" "help.text" msgid "It depends on your document what is best: to use a manually inserted page break between page styles, or to use an automatic change. If you just need one title page with a different style than the other pages, you can use the automatic method:" -msgstr "La elección dependerá de la opción más adecuada para el documento: usar saltos de página insertados manualmente entre estilos de página o saltos de página automáticos. Si únicamente necesita una página de título con un estilo diferente que el resto de páginas, puede usar el método automático:" +msgstr "La elección dependerá de la opción más adecuada para el documento: usar saltos de página insertados manualmente entre estilos de página o saltos de página automáticos. Si únicamente necesita una portada con un estilo diferente que el resto de las páginas, puede usar el método automático:" #: pagenumbers.xhp msgctxt "" @@ -10230,7 +10230,7 @@ "par_id2318796\n" "help.text" msgid "Now your title page has the style \"First Page\", and the next pages automatically have the \"Default\" style." -msgstr "Ahora la página de título tiene el estilo \"Primera página\", y las páginas siguientes adoptan automáticamente el estilo \"Predeterminado\"." +msgstr "Ahora la portada tiene el estilo «Primera página» y las páginas siguientes adoptarán automáticamente el estilo «Predeterminado»." #: pagenumbers.xhp msgctxt "" @@ -14958,7 +14958,7 @@ "bm_id3155177\n" "help.text" msgid "text frames; centering on pages centering;text frames on pages title pages; centering text on" -msgstr "marcos de texto;centrar en páginas centrar;marcos de texto en páginas páginas de títulos;centrar texto en" +msgstr "marcos de texto;centrar en páginas centrar;marcos de texto en páginas portadas;centrar texto en" #: text_centervert.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-l10n-5.4.4~rc2/translations/source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-09-08 01:55+0000\n" +"PO-Revision-Date: 2017-12-03 20:01+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1504835757.000000\n" +"X-POOTLE-MTIME: 1512331317.000000\n" #: ActionTe.ulf msgctxt "" @@ -3326,7 +3326,7 @@ "OOO_ERROR_63\n" "LngText.text" msgid "Could not increase the available registry space. [2] KB of free registry space is required for the installation of this application." -msgstr "No es posible aumentar el espacio libre en el registro. Se necesitan [2] KB de espacio libre en el registro para instalar la aplicación." +msgstr "No es posible aumentar el espacio libre en el registro. Se necesitan [2] kB de espacio libre en el registro para instalar la aplicación." #: Error.ulf msgctxt "" @@ -3366,7 +3366,7 @@ "OOO_ERROR_68\n" "LngText.text" msgid "Out of disk space -- Volume: '[2]'; required space: [3] KB; available space: [4] KB. Free some disk space and retry." -msgstr "No queda espacio en el volumen «[2]»: se necesitan [3] KB, pero hay [4] KB disponibles. Libere espacio en el disco e inténtelo de nuevo." +msgstr "No queda espacio en el volumen «[2]»: se necesitan [3] kB, pero hay [4] kB disponibles. Libere espacio en el disco e inténtelo de nuevo." #: Error.ulf msgctxt "" @@ -3398,7 +3398,7 @@ "OOO_ERROR_72\n" "LngText.text" msgid "Out of disk space -- Volume: [2]; required space: [3] KB; available space: [4] KB. If rollback is disabled, enough space is available. Click Cancel to quit, Retry to check available disk space again, or Ignore to continue without rollback." -msgstr "No queda espacio en el volumen «[2]»: se necesitan [3] KB, pero hay [4] KB disponibles. Si se desactiva la restauración habrá espacio suficiente. Pulse en Cancelar para salir, en Reintentar para revisar de nuevo el espacio disponible, o en Ignorar para continuar sin la restauración." +msgstr "No queda espacio en el volumen «[2]»: se necesitan [3] kB, pero hay [4] kB disponibles. Si se desactiva la restauración habrá espacio suficiente. Pulse en Cancelar para salir, en Reintentar para revisar de nuevo el espacio disponible, o en Ignorar para continuar sin la restauración." #: Error.ulf msgctxt "" @@ -4102,7 +4102,7 @@ "OOO_UITEXT_3\n" "LngText.text" msgid "KB" -msgstr "KB" +msgstr "kB" #: UIText.ulf msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po libreoffice-l10n-5.4.4~rc2/translations/source/es/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-09-19 13:09+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-25 03:49+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1505826584.000000\n" +"X-POOTLE-MTIME: 1511581791.000000\n" #: Options.xhp msgctxt "" @@ -46,7 +46,7 @@ "par_id0503200917103780\n" "help.text" msgid "Size of Swarm" -msgstr "Tamaño del enjambre" +msgstr "Tamaño del cúmulo" #: Options.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/nlpsolver/src/locale.po libreoffice-l10n-5.4.4~rc2/translations/source/es/nlpsolver/src/locale.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/nlpsolver/src/locale.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/nlpsolver/src/locale.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2016-12-26 22:57+0000\n" +"PO-Revision-Date: 2017-11-25 03:49+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1482793023.000000\n" +"X-POOTLE-MTIME: 1511581797.000000\n" #: NLPSolverCommon_en_US.properties msgctxt "" @@ -30,7 +30,7 @@ "NLPSolverCommon.Properties.SwarmSize\n" "property.text" msgid "Size of Swarm" -msgstr "Tamaño del enjambre" +msgstr "Tamaño del cúmulo" #: NLPSolverCommon_en_US.properties msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.4.4~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-20 13:56+0200\n" -"PO-Revision-Date: 2017-10-07 23:09+0000\n" +"PO-Revision-Date: 2017-11-20 16:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1507417785.000000\n" +"X-POOTLE-MTIME: 1511195562.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -11885,7 +11885,7 @@ "Label\n" "value.text" msgid "Right Triangle" -msgstr "Triángulo derecho" +msgstr "Triángulo rectángulo" #: Effects.xcu msgctxt "" @@ -14315,7 +14315,7 @@ "Label\n" "value.text" msgid "Right Triangle" -msgstr "Triángulo derecho" +msgstr "Triángulo rectángulo" #: GenericCommands.xcu msgctxt "" @@ -19105,7 +19105,7 @@ "Label\n" "value.text" msgid "Rotation Pivot Point X" -msgstr "Coordenada X del eje de rotación" +msgstr "Coordenada X del eje de giro" #: GenericCommands.xcu msgctxt "" @@ -19114,7 +19114,7 @@ "Label\n" "value.text" msgid "Rotation Pivot Point Y" -msgstr "Coordenada Y del eje de rotación" +msgstr "Coordenada Y del eje de giro" #: GenericCommands.xcu msgctxt "" @@ -26773,7 +26773,7 @@ "Label\n" "value.text" msgid "Title Page..." -msgstr "Página de título..." +msgstr "Portada…" #: WriterCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/readlicense_oo/docs.po libreoffice-l10n-5.4.4~rc2/translations/source/es/readlicense_oo/docs.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/readlicense_oo/docs.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/readlicense_oo/docs.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-03-09 20:48+0100\n" -"PO-Revision-Date: 2017-10-06 20:21+0000\n" +"PO-Revision-Date: 2017-11-12 20:07+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1507321269.000000\n" +"X-POOTLE-MTIME: 1510517226.000000\n" #: readme.xrm msgctxt "" @@ -238,7 +238,7 @@ "Precautions\n" "readmeitem.text" msgid "Please make sure you have enough free memory in the temporary directory on your system, and please ensure that read, write and run access rights have been granted. Close all other programs before starting the installation process." -msgstr "Asegúrese de que tiene memoria disponible suficiente en el directorio temporal del sistema y compruebe que tiene privilegios de acceso de lectura, escritura y ejecución. Cierre todos los demás programas antes de comenzar el proceso de instalación." +msgstr "Asegúrese de que tenga memoria disponible suficiente en el directorio temporal del sistema y compruebe que cuente con los privilegios de acceso de lectura, escritura y ejecución. Cierre todos los demás programas antes de comenzar el proceso de instalación." #: readme.xrm msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/reportdesign/source/ui/inspection.po libreoffice-l10n-5.4.4~rc2/translations/source/es/reportdesign/source/ui/inspection.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/reportdesign/source/ui/inspection.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/reportdesign/source/ui/inspection.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-11-09 14:10+0100\n" -"PO-Revision-Date: 2017-10-09 09:43+0000\n" +"PO-Revision-Date: 2017-11-25 07:03+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1507542200.000000\n" +"X-POOTLE-MTIME: 1511593439.000000\n" #: inspection.src msgctxt "" @@ -572,7 +572,7 @@ "RID_STR_PREVIEW_COUNT\n" "string.text" msgid "Preview Row(s)" -msgstr "Previsualizar línea(s)" +msgstr "Previsualizar filas" #: inspection.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/sc/source/ui/src.po libreoffice-l10n-5.4.4~rc2/translations/source/es/sc/source/ui/src.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/sc/source/ui/src.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/sc/source/ui/src.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-20 13:55+0200\n" -"PO-Revision-Date: 2017-10-20 11:05+0000\n" +"PO-Revision-Date: 2017-12-09 03:12+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1508497557.000000\n" +"X-POOTLE-MTIME: 1512789179.000000\n" #: globstr.src msgctxt "" @@ -8298,7 +8298,7 @@ "Returns a^b, base a raised to the power of exponent b.\n" "itemlist.text" msgid "Returns a^b, base a raised to the power of exponent b." -msgstr "Regresa a^b, elevado a la potencia del exponente b." +msgstr "Devuelve a^b, base «a» elevada a la potencia del exponente «b»." #: scfuncs.src msgctxt "" @@ -8316,7 +8316,7 @@ "The base a of the power a^b.\n" "itemlist.text" msgid "The base a of the power a^b." -msgstr "La base a a la potencia de a^b." +msgstr "La base «a» de la potencia a^b." #: scfuncs.src msgctxt "" @@ -8334,7 +8334,7 @@ "The exponent b of the power a^b.\n" "itemlist.text" msgid "The exponent b of the power a^b." -msgstr "El exponente b a la potencia a^b." +msgstr "El exponente «b» de la potencia a^b." #: scfuncs.src msgctxt "" @@ -12592,7 +12592,7 @@ "Rank_c\n" "itemlist.text" msgid "Rank_c" -msgstr "rango_k" +msgstr "Posición c" #: scfuncs.src msgctxt "" @@ -12637,7 +12637,7 @@ "Rank_c\n" "itemlist.text" msgid "Rank_c" -msgstr "rango_k" +msgstr "Posición c" #: scfuncs.src msgctxt "" @@ -13159,7 +13159,7 @@ "Returns the probability of a trial result using binomial distribution.\n" "itemlist.text" msgid "Returns the probability of a trial result using binomial distribution." -msgstr "Devuelve la probabilidad de un resultado de prueba usando la distribución binomial" +msgstr "Devuelve la probabilidad de un resultado de prueba mediante una distribución binómica." #: scfuncs.src msgctxt "" @@ -13348,7 +13348,7 @@ "Values of the binomial distribution.\n" "itemlist.text" msgid "Values of the binomial distribution." -msgstr "Devuelve la probabilidad de una variable aleatoria discreta siguiendo una distribución binomial." +msgstr "Valores de la distribución binómica." #: scfuncs.src msgctxt "" @@ -13429,7 +13429,7 @@ "Values of the binomial distribution.\n" "itemlist.text" msgid "Values of the binomial distribution." -msgstr "Devuelve la probabilidad de una variable aleatoria discreta siguiendo una distribución binomial." +msgstr "Valores de la distribución binómica." #: scfuncs.src msgctxt "" @@ -13510,7 +13510,7 @@ "Values of the negative binomial distribution.\n" "itemlist.text" msgid "Values of the negative binomial distribution." -msgstr "Devuelve la probabilidad de una variable aleatoria discreta siguiendo una distribución binomial negativa." +msgstr "Valores de la distribución binómica negativa." #: scfuncs.src msgctxt "" @@ -13573,7 +13573,7 @@ "Values of the negative binomial distribution.\n" "itemlist.text" msgid "Values of the negative binomial distribution." -msgstr "Devuelve la probabilidad de una variable aleatoria discreta siguiendo una distribución binomial negativa." +msgstr "Valores de la distribución binómica negativa." #: scfuncs.src msgctxt "" @@ -13654,7 +13654,7 @@ "Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value.\n" "itemlist.text" msgid "Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value." -msgstr "Devuelve el valor menor para el cual la distribución binomial acumulativa es mayor o igual que un valor de criterio." +msgstr "Devuelve el valor menor para el cual la distribución binómica acumulada es mayor o igual que un valor de criterio." #: scfuncs.src msgctxt "" @@ -13717,7 +13717,7 @@ "Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value.\n" "itemlist.text" msgid "Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value." -msgstr "Devuelve el menor valor para el que la distribución binomial acumulada es mayor o igual que un valor de criterio." +msgstr "Devuelve el menor valor para el que la distribución binómica acumulada es mayor o igual que un valor de criterio." #: scfuncs.src msgctxt "" @@ -19621,7 +19621,7 @@ "Search criterion\n" "itemlist.text" msgid "Search criterion" -msgstr "Criterio de busqueda" +msgstr "Criterio de búsqueda" #: scfuncs.src msgctxt "" @@ -19828,7 +19828,7 @@ "Search criterion\n" "itemlist.text" msgid "Search criterion" -msgstr "Criterio de busqueda" +msgstr "Criterio de búsqueda" #: scfuncs.src msgctxt "" @@ -19882,7 +19882,7 @@ "Defines a position in a array after comparing values.\n" "itemlist.text" msgid "Defines a position in a array after comparing values." -msgstr "Devuelve la posición relativa de un elemento en una matriz que coincida con un valor especificado." +msgstr "Define una posición en una matriz tras comparar los valores." #: scfuncs.src msgctxt "" @@ -19891,7 +19891,7 @@ "Search criterion\n" "itemlist.text" msgid "Search criterion" -msgstr "Criterio de busqueda" +msgstr "Criterio de búsqueda" #: scfuncs.src msgctxt "" @@ -21304,7 +21304,7 @@ "The text in which some characters are to be replaced.\n" "itemlist.text" msgid "The text in which some characters are to be replaced." -msgstr "es el texto en el que desea reemplazar el número específico de caracteres." +msgstr "El texto del cual se deben reemplazar algunos caracteres." #: scfuncs.src msgctxt "" @@ -21583,7 +21583,7 @@ "The position from which the part word is to be determined.\n" "itemlist.text" msgid "The position from which the part word is to be determined." -msgstr "es la posición del primer carácter que desea extraer del argumento texto." +msgstr "La posición a partir de la cual se deberá determinar la palabra parcial." #: scfuncs.src msgctxt "" @@ -21601,7 +21601,7 @@ "The number of characters for the text.\n" "itemlist.text" msgid "The number of characters for the text." -msgstr "especifica el número de caracteres de texto que se han de devolver." +msgstr "El número de caracteres del texto." #: scfuncs.src msgctxt "" @@ -22546,7 +22546,7 @@ "The text in which partial words are to be determined.\n" "itemlist.text" msgid "The text in which partial words are to be determined." -msgstr "es la cadena de texto que contiene los caracteres que desea extraer." +msgstr "El texto del cual se determinarán las palabras parciales." #: scfuncs.src msgctxt "" @@ -22564,7 +22564,7 @@ "The position from which the part word is to be determined.\n" "itemlist.text" msgid "The position from which the part word is to be determined." -msgstr "es la posición del primer carácter que desea extraer del argumento texto." +msgstr "La posición a partir de la cual se deberá determinar la palabra parcial." #: scfuncs.src msgctxt "" @@ -22582,7 +22582,7 @@ "The number of characters for the text.\n" "itemlist.text" msgid "The number of characters for the text." -msgstr "especifica el número de caracteres de texto que se han de devolver." +msgstr "El número de caracteres del texto." #: scfuncs.src msgctxt "" @@ -23735,7 +23735,7 @@ "STR_NOCOLFORMULA\n" "string.text" msgid "Formulas don't form a column." -msgstr "Las fórmulas no forman un columna." +msgstr "Las fórmulas no forman una columna." #: scstring.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/sc/source/ui/StatisticsDialogs.po libreoffice-l10n-5.4.4~rc2/translations/source/es/sc/source/ui/StatisticsDialogs.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/sc/source/ui/StatisticsDialogs.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/sc/source/ui/StatisticsDialogs.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-07-11 08:54+0000\n" +"PO-Revision-Date: 2017-11-25 01:49+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1499763298.000000\n" +"X-POOTLE-MTIME: 1511574599.000000\n" #: StatisticsDialogs.src msgctxt "" @@ -358,7 +358,7 @@ "STR_DISTRIBUTION_BINOMIAL\n" "string.text" msgid "Binomial" -msgstr "Binomial" +msgstr "Binómica" #: StatisticsDialogs.src msgctxt "" @@ -366,7 +366,7 @@ "STR_DISTRIBUTION_NEGATIVE_BINOMIAL\n" "string.text" msgid "Negative Binomial" -msgstr "Binomial negativa" +msgstr "Binómica negativa" #: StatisticsDialogs.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/sc/uiconfig/scalc/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/es/sc/uiconfig/scalc/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/sc/uiconfig/scalc/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/sc/uiconfig/scalc/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "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: 2017-05-17 15:41+0200\n" -"PO-Revision-Date: 2017-07-20 19:21+0000\n" +"PO-Revision-Date: 2017-11-25 01:50+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: none\n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500578491.000000\n" +"X-POOTLE-MTIME: 1511574649.000000\n" #: advancedfilterdialog.ui msgctxt "" @@ -8444,7 +8444,7 @@ "5\n" "stringlist.text" msgid "Binomial" -msgstr "Binomial" +msgstr "Binómica" #: randomnumbergenerator.ui msgctxt "" @@ -8471,7 +8471,7 @@ "8\n" "stringlist.text" msgid "Negative Binomial" -msgstr "Binomial negativa" +msgstr "Binómica negativa" #: regressiondialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/sd/source/ui/app.po libreoffice-l10n-5.4.4~rc2/translations/source/es/sd/source/ui/app.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/sd/source/ui/app.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/sd/source/ui/app.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-29 18:40+0200\n" -"PO-Revision-Date: 2017-09-20 14:08+0000\n" +"PO-Revision-Date: 2017-11-16 09:13+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1505916511.000000\n" +"X-POOTLE-MTIME: 1510823631.000000\n" #: res_bmp.src msgctxt "" @@ -348,7 +348,7 @@ "STR_AUTOLAYOUT_TITLE\n" "string.text" msgid "Title Slide" -msgstr "Página de título" +msgstr "Diapositiva de título" #: strings.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/sd/uiconfig/simpress/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/es/sd/uiconfig/simpress/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/sd/uiconfig/simpress/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/sd/uiconfig/simpress/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "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: 2017-05-29 18:40+0200\n" -"PO-Revision-Date: 2017-10-30 18:30+0000\n" +"PO-Revision-Date: 2017-11-16 09:14+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: none\n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1509388227.000000\n" +"X-POOTLE-MTIME: 1510823650.000000\n" #: annotationmenu.ui msgctxt "" @@ -3643,7 +3643,7 @@ "label\n" "string.text" msgid "Create title page" -msgstr "Crear página de título" +msgstr "Crear portada" #: publishingdialog.ui msgctxt "" @@ -3877,7 +3877,7 @@ "label\n" "string.text" msgid "Information for the Title Page" -msgstr "Información para la página de título" +msgstr "Información para la portada" #: publishingdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/sfx2/source/appl.po libreoffice-l10n-5.4.4~rc2/translations/source/es/sfx2/source/appl.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/sfx2/source/appl.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/sfx2/source/appl.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n" -"PO-Revision-Date: 2017-04-17 06:18+0000\n" +"PO-Revision-Date: 2017-12-03 20:02+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1492409930.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1512331320.000000\n" #: app.src msgctxt "" @@ -46,7 +46,7 @@ "STR_KB\n" "string.text" msgid "KB" -msgstr "KB" +msgstr "kB" #: app.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/sfx2/source/dialog.po libreoffice-l10n-5.4.4~rc2/translations/source/es/sfx2/source/dialog.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/sfx2/source/dialog.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/sfx2/source/dialog.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n" -"PO-Revision-Date: 2017-04-25 13:07+0000\n" +"PO-Revision-Date: 2017-12-09 23:02+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1493125658.000000\n" +"X-POOTLE-MTIME: 1512860550.000000\n" #: dialog.src msgctxt "" @@ -275,7 +275,7 @@ "Mailstop\n" "itemlist.text" msgid "Mailstop" -msgstr "" +msgstr "Centro de distribución" #: dinfdlg.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/sfx2/source/view.po libreoffice-l10n-5.4.4~rc2/translations/source/es/sfx2/source/view.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/sfx2/source/view.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/sfx2/source/view.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-20 13:55+0200\n" -"PO-Revision-Date: 2017-06-23 09:49+0000\n" +"PO-Revision-Date: 2017-11-06 21:58+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1498211388.000000\n" +"X-POOTLE-MTIME: 1510005509.000000\n" #: view.src msgctxt "" @@ -256,7 +256,7 @@ "STR_SIGNATURE_INVALID\n" "string.text" msgid "The signature was valid, but the document has been modified" -msgstr "La firma es válida, pero se ha modificado el documento" +msgstr "La firma era válida pero se modificó el documento" #: view.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/svtools/source/contnr.po libreoffice-l10n-5.4.4~rc2/translations/source/es/svtools/source/contnr.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/svtools/source/contnr.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/svtools/source/contnr.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n" -"PO-Revision-Date: 2016-07-29 16:08+0000\n" +"PO-Revision-Date: 2017-12-03 20:02+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1469808523.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1512331323.000000\n" #: fileview.src msgctxt "" @@ -62,7 +62,7 @@ "STR_SVT_KB\n" "string.text" msgid "KB" -msgstr "KB" +msgstr "kB" #: fileview.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/svtools/source/misc.po libreoffice-l10n-5.4.4~rc2/translations/source/es/svtools/source/misc.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/svtools/source/misc.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/svtools/source/misc.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-20 13:55+0200\n" -"PO-Revision-Date: 2017-10-20 04:48+0000\n" +"PO-Revision-Date: 2017-12-03 20:02+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1508474884.000000\n" +"X-POOTLE-MTIME: 1512331359.000000\n" #: imagemgr.src msgctxt "" @@ -1014,7 +1014,7 @@ "English, OED spelling (UK)\n" "itemlist.text" msgid "English, OED spelling (UK)" -msgstr "Inglés, ortografía del OED (Reino Unido)" +msgstr "Inglés, ortografía Oxford (Reino Unido)" #: langtab.src msgctxt "" @@ -2859,7 +2859,7 @@ "Turkmen\n" "itemlist.text" msgid "Turkmen" -msgstr "Turkmeno" +msgstr "Turcomano" #: langtab.src msgctxt "" @@ -3976,7 +3976,7 @@ "STR_SVT_ESTIMATED_SIZE_PIX_1\n" "string.text" msgid "The image needs about %1 KB of memory." -msgstr "La imagen necesita aproximadamente %1 KB de memoria." +msgstr "La imagen necesita aproximadamente %1 kB de memoria." #: svtools.src msgctxt "" @@ -3984,7 +3984,7 @@ "STR_SVT_ESTIMATED_SIZE_PIX_2\n" "string.text" msgid "The image needs about %1 KB of memory, the file size is %2 KB." -msgstr "La imagen necesita aproximadamente %1 KB de memoria; el tamaño del archivo es de %2 KB." +msgstr "La imagen necesita aproximadamente %1 kB de memoria; el tamaño del archivo es de %2 kB." #: svtools.src msgctxt "" @@ -3992,7 +3992,7 @@ "STR_SVT_ESTIMATED_SIZE_VEC\n" "string.text" msgid "The file size is %1 KB." -msgstr "El tamaño del archivo es %1 KB." +msgstr "El tamaño del archivo es %1 kB." #: svtools.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/svx/source/dialog.po libreoffice-l10n-5.4.4~rc2/translations/source/es/svx/source/dialog.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/svx/source/dialog.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/svx/source/dialog.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-17 15:41+0200\n" -"PO-Revision-Date: 2017-10-30 18:42+0000\n" +"PO-Revision-Date: 2017-11-23 22:29+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1509388976.000000\n" +"X-POOTLE-MTIME: 1511476146.000000\n" #: SafeMode.src msgctxt "" @@ -6781,7 +6781,7 @@ "Caucasian Albanian\n" "itemlist.text" msgid "Caucasian Albanian" -msgstr "Cáucaso albanés" +msgstr "Cáucaso-albanés" #: ucsubset.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/sw/uiconfig/swriter/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/es/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/sw/uiconfig/swriter/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/sw/uiconfig/swriter/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "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: 2017-06-06 20:00+0200\n" -"PO-Revision-Date: 2017-10-05 07:20+0000\n" +"PO-Revision-Date: 2017-11-16 09:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: none\n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1507188043.000000\n" +"X-POOTLE-MTIME: 1510824818.000000\n" #: abstractdialog.ui msgctxt "" @@ -2750,7 +2750,7 @@ "label\n" "string.text" msgid "_Lines:" -msgstr "_Líneas:" +msgstr "_Renglones:" #: dropcapspage.ui msgctxt "" @@ -17649,7 +17649,7 @@ "title\n" "string.text" msgid "Title Page" -msgstr "Página de título" +msgstr "Portada" #: titlepage.ui msgctxt "" @@ -17658,7 +17658,7 @@ "label\n" "string.text" msgid "Number of title pages:" -msgstr "Número de páginas de título:" +msgstr "Número de portadas:" #: titlepage.ui msgctxt "" @@ -17667,7 +17667,7 @@ "label\n" "string.text" msgid "Place title pages at:" -msgstr "Colocar las páginas de título en:" +msgstr "Colocar las portadas en:" #: titlepage.ui msgctxt "" @@ -17676,7 +17676,7 @@ "label\n" "string.text" msgid "Converting existing pages to title pages" -msgstr "Convertir páginas existentes en páginas de título" +msgstr "Convertir páginas existentes en portadas" #: titlepage.ui msgctxt "" @@ -17685,7 +17685,7 @@ "label\n" "string.text" msgid "Insert new title pages" -msgstr "Insertar nuevas páginas de título" +msgstr "Insertar portadas nuevas" #: titlepage.ui msgctxt "" @@ -17712,7 +17712,7 @@ "label\n" "string.text" msgid "Make Title Pages" -msgstr "Crear páginas de título" +msgstr "Crear portadas" #: titlepage.ui msgctxt "" @@ -17721,7 +17721,7 @@ "label\n" "string.text" msgid "Reset page numbering after title pages" -msgstr "Reiniciar numeración de páginas después de las páginas de título" +msgstr "Restablecer numeración de páginas tras las portadas" #: titlepage.ui msgctxt "" @@ -17739,7 +17739,7 @@ "label\n" "string.text" msgid "Set page number for first title page" -msgstr "Definir número de página de la 1.ª página de título" +msgstr "Definir número de página de la primera portada" #: titlepage.ui msgctxt "" @@ -17784,7 +17784,7 @@ "label\n" "string.text" msgid "Edit Page Properties" -msgstr "Editar las propiedades de la página" +msgstr "Editar propiedades de la página" #: tocdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/wizards/source/formwizard.po libreoffice-l10n-5.4.4~rc2/translations/source/es/wizards/source/formwizard.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/wizards/source/formwizard.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/wizards/source/formwizard.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-29 18:39+0200\n" -"PO-Revision-Date: 2017-10-30 22:36+0000\n" +"PO-Revision-Date: 2017-11-11 22:29+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1509403012.000000\n" +"X-POOTLE-MTIME: 1510439385.000000\n" #: dbwizres.src msgctxt "" @@ -2921,7 +2921,7 @@ "RID_LETTERWIZARDDIALOG_START + 13\n" "string.text" msgid "Letter Signs" -msgstr "Signos de letras" +msgstr "Referencias de carta" #: dbwizres.src msgctxt "" @@ -2985,7 +2985,7 @@ "RID_LETTERWIZARDDIALOG_START + 21\n" "string.text" msgid "Use placeholders for ~recipient's address" -msgstr "Usar los marcadores de posición para la dirección del ~destinatario" +msgstr "Utilizar marcadores de posición para la dirección del ~destinatario" #: dbwizres.src msgctxt "" @@ -2993,7 +2993,7 @@ "RID_LETTERWIZARDDIALOG_START + 22\n" "string.text" msgid "Use address database for ~mail merge" -msgstr "Use la base de datos de direcciones para ~combinar correspondencia" +msgstr "Utilizar base de datos de direcciones para ~combinar correspondencia" #: dbwizres.src msgctxt "" @@ -3737,7 +3737,7 @@ "RID_FAXWIZARDDIALOG_START + 38\n" "string.text" msgid "Use placeholders for ~recipient's address" -msgstr "Usar los marcadores de posición para la dirección del ~destinatario" +msgstr "Utilizar marcadores de posición para la dirección del ~destinatario" #: dbwizres.src msgctxt "" @@ -3745,7 +3745,7 @@ "RID_FAXWIZARDDIALOG_START + 39\n" "string.text" msgid "Use address database for ~mail merge" -msgstr "Use la base de datos de direcciones para ~combinar correspondencia" +msgstr "Utilizar base de datos de direcciones para ~combinar correspondencia" #: dbwizres.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/es/wizards/source/importwizard.po libreoffice-l10n-5.4.4~rc2/translations/source/es/wizards/source/importwizard.po --- libreoffice-l10n-5.4.3~rc2/translations/source/es/wizards/source/importwizard.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/es/wizards/source/importwizard.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2017-10-18 21:27+0000\n" +"PO-Revision-Date: 2017-11-11 22:21+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: LANGUAGE \n" "Language: es\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1508362063.000000\n" +"X-POOTLE-MTIME: 1510438860.000000\n" #: importwi.src msgctxt "" @@ -70,7 +70,7 @@ "sWelcometextLabel1\n" "string.text" msgid "This wizard convert legacy format documents to Open Document Format for Office Applications." -msgstr "Este asistente convierte documentos en formatos antiguos al formato OpenDocument." +msgstr "Este asistente convierte documentos en formatos antiguos en el formato OpenDocument." #: importwi.src msgctxt "" @@ -78,7 +78,7 @@ "sWelcometextLabel3\n" "string.text" msgid "Select the document type for conversion:" -msgstr "Seleccione el tipo de documento a convertir:" +msgstr "Seleccione el tipo de documento que convertir:" #: importwi.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/et/xmlsecurity/source/dialogs.po libreoffice-l10n-5.4.4~rc2/translations/source/et/xmlsecurity/source/dialogs.po --- libreoffice-l10n-5.4.3~rc2/translations/source/et/xmlsecurity/source/dialogs.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/et/xmlsecurity/source/dialogs.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "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-07-20 11:52+0200\n" -"PO-Revision-Date: 2016-10-09 16:37+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-19 10:49+0000\n" +"Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" "Language: et\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1476031024.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1511088566.000000\n" #: certificateviewer.src msgctxt "" @@ -163,3 +163,5 @@ "Document signature cannot be restored, once removed.\n" "Do you really want to remove selected signature?" msgstr "" +"Pärast dokumendi allkirja eemaldamist ei saa seda enam taastada.\n" +"Kas tahad tõesti valitud allkirja eemaldada?" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/et/xmlsecurity/uiconfig/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/et/xmlsecurity/uiconfig/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/et/xmlsecurity/uiconfig/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/et/xmlsecurity/uiconfig/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "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-07-20 11:52+0200\n" -"PO-Revision-Date: 2017-07-08 07:16+0000\n" +"PO-Revision-Date: 2017-11-11 18:21+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" "Language: et\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1499498207.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510424485.000000\n" #: certgeneral.ui msgctxt "" @@ -495,7 +495,7 @@ "label\n" "string.text" msgid "Type" -msgstr "" +msgstr "Tüüp" #: selectcertificatedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/eu/helpcontent2/source/text/shared/guide.po libreoffice-l10n-5.4.4~rc2/translations/source/eu/helpcontent2/source/text/shared/guide.po --- libreoffice-l10n-5.4.3~rc2/translations/source/eu/helpcontent2/source/text/shared/guide.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/eu/helpcontent2/source/text/shared/guide.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-06 20:00+0200\n" -"PO-Revision-Date: 2017-09-05 15:49+0000\n" +"PO-Revision-Date: 2017-11-11 07:04+0000\n" "Last-Translator: Osoitz \n" "Language-Team: LANGUAGE \n" "Language: eu\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1504626587.000000\n" +"X-POOTLE-MTIME: 1510383867.000000\n" #: aaa_start.xhp msgctxt "" @@ -17982,7 +17982,7 @@ "par_id0820200802525413\n" "help.text" msgid "The right pane contains thumbnails of the most recent documents you opened. Hover your mouse over the thumbnail to highlight the document, display a tip about the document location and display an icon on the top right to delete the thumbnail from the pane and from the recent files list. Click on the thumbnail to open the document underneath." -msgstr "Eskuineko panelean irekitako azken dokumentuen miniaturak bistaratzen dira. Pasatu sagua miniaturaren gainetik dokumentua nabarmentzeko, dokumentuaren kokapenari buruzko argibide bat bistaratzeko eta goian eskuinean miniatura paneletik eta azken dokumentuen zerrendatik ezabatzeo balio duen ikono bat bistaratzeko. Sakatu miniaturan, dokumentua irekitzeko." +msgstr "Eskuineko panelean irekitako azken dokumentuen miniaturak bistaratzen dira. Pasatu sagua miniaturaren gainetik dokumentua nabarmentzeko, dokumentuaren kokapenari buruzko argibide bat bistaratzeko eta goian eskuinean miniatura paneletik eta azken dokumentuen zerrendatik ezabatzeko balio duen ikono bat bistaratzeko. Sakatu miniaturan, dokumentua irekitzeko." #: startcenter.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/fr/helpcontent2/source/text/schart/01.po libreoffice-l10n-5.4.4~rc2/translations/source/fr/helpcontent2/source/text/schart/01.po --- libreoffice-l10n-5.4.3~rc2/translations/source/fr/helpcontent2/source/text/schart/01.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/fr/helpcontent2/source/text/schart/01.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-07-22 07:26+0000\n" +"PO-Revision-Date: 2017-11-11 22:11+0000\n" "Last-Translator: Jean-Baptiste Faure \n" "Language-Team: ll.org\n" "Language: fr\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1500708413.000000\n" +"X-POOTLE-MTIME: 1510438306.000000\n" #: 03010000.xhp msgctxt "" @@ -1799,7 +1799,7 @@ "par_id1857661\n" "help.text" msgid "For power regression curves a transformation to a linear model takes place. The power regression follows the equation y=b*x^a , which is transformed to ln(y)=ln(b)+a*ln(x)." -msgstr "Pour les courbes de régression de puissance une transformation sur un modèle linéaire est effectuée. La régression de puissance suit l'équationy=b*x^a, qui est tranformée en ln(y)=ln(b)+a*ln(x)." +msgstr "Pour les courbes de régression de puissance une transformation sur un modèle linéaire est effectuée. La régression de puissance suit l'équationy=b*x^a, qui est transformée en ln(y)=ln(b)+a*ln(x)." #: 04050100.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/fr/helpcontent2/source/text/swriter.po libreoffice-l10n-5.4.4~rc2/translations/source/fr/helpcontent2/source/text/swriter.po --- libreoffice-l10n-5.4.3~rc2/translations/source/fr/helpcontent2/source/text/swriter.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/fr/helpcontent2/source/text/swriter.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-20 14:17+0200\n" -"PO-Revision-Date: 2017-06-22 04:46+0000\n" +"PO-Revision-Date: 2017-11-25 20:45+0000\n" "Last-Translator: Jean-Baptiste Faure \n" "Language-Team: ll.org\n" "Language: fr\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1498106807.000000\n" +"X-POOTLE-MTIME: 1511642716.000000\n" #: classificationbar.xhp msgctxt "" @@ -63,7 +63,7 @@ "par_id030820161744118823\n" "help.text" msgid "%PRODUCTNAME provides standardized means for such sensitivity information to be expressed and may be used between parties if interoperable systems are to be implemented. It provides a set of standard “fields” that can be used to hold sensitivity information. It does not attempt to define what the contents of these “fields” should be. This approach is an improvement upon the only alternative that exists at the moment, which is for the provider to use an arbitrary means to express sensitivity that may not be useful to a recipient." -msgstr "%PRODUCTNAME fournit des moyens standard pour exprimer ces informations sensibles et peut être utilisé entre les parties si des systèmes interopérables sont implémentés. Elle fournit un jeu de “champs” standard qui peuvent être utilisés pour le maniement d'informations sensibles. Elle n'essaie pas de définir ce que le contenu de ces “champs” doit être. Cette approche représente une amélioration par rapport à la seule alternative existant actuellement, qui et pour le fournisseur d'utiliser un moyen arbitraire pour exprimer cette sensibilité et qui peut ne pas être utile à un destinataire." +msgstr "%PRODUCTNAME fournit des moyens standard pour exprimer ces informations sensibles et peut être utilisé entre les parties si des systèmes interopérables sont implémentés. Elle fournit un jeu de “champs” standard qui peuvent être utilisés pour le maniement d'informations sensibles. Elle n'essaie pas de définir ce que le contenu de ces “champs” doit être. Cette approche représente une amélioration par rapport à la seule alternative existant actuellement, qui est pour le fournisseur d'utiliser un moyen arbitraire pour exprimer cette sensibilité et qui peut ne pas être utile à un destinataire." #: classificationbar.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/fr/svtools/uiconfig/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/fr/svtools/uiconfig/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/fr/svtools/uiconfig/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/fr/svtools/uiconfig/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "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: 2017-04-19 21:37+0200\n" -"PO-Revision-Date: 2017-04-23 12:44+0000\n" +"PO-Revision-Date: 2017-11-28 13:49+0000\n" "Last-Translator: sophie \n" "Language-Team: ll.org\n" "Language: fr\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1492951486.000000\n" +"X-POOTLE-MTIME: 1511876976.000000\n" #: GraphicExportOptionsDialog.ui msgctxt "" @@ -564,7 +564,7 @@ "label\n" "string.text" msgid "Share:" -msgstr "Partager :" +msgstr "Partage :" #: placeedit.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ga/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po libreoffice-l10n-5.4.4~rc2/translations/source/ga/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ga/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ga/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po 2017-12-12 17:45:07.000000000 +0000 @@ -1,18 +1,20 @@ #. extracted from connectivity/registry/firebird/org/openoffice/Office/DataAccess msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: LO\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:01+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2017-11-12 01:36+0000\n" +"Last-Translator: Kevin Scannell \n" +"Language-Team: \n" "Language: ga\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510450589.000000\n" #: Drivers.xcu msgctxt "" @@ -21,7 +23,7 @@ "DriverTypeDisplayName\n" "value.text" msgid "Firebird Embedded" -msgstr "" +msgstr "Firebird leabaithe" #: Drivers.xcu msgctxt "" @@ -30,4 +32,4 @@ "DriverTypeDisplayName\n" "value.text" msgid "Firebird File" -msgstr "" +msgstr "Comhad Firebird" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ga/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po libreoffice-l10n-5.4.4~rc2/translations/source/ga/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ga/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ga/connectivity/registry/hsqldb/org/openoffice/Office/DataAccess.po 2017-12-12 17:45:07.000000000 +0000 @@ -3,16 +3,18 @@ msgstr "" "Project-Id-Version: LO\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-11-20 13:01+0100\n" -"PO-Revision-Date: 2012-11-19 16:30-0000\n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2017-11-12 01:36+0000\n" "Last-Translator: Kevin Scannell \n" "Language-Team: \n" "Language: ga\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510450589.000000\n" #: Drivers.xcu msgctxt "" @@ -21,4 +23,4 @@ "DriverTypeDisplayName\n" "value.text" msgid "HSQLDB Embedded" -msgstr "" +msgstr "HSQLDB Leabaithe" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ga/dictionaries/es.po libreoffice-l10n-5.4.4~rc2/translations/source/ga/dictionaries/es.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ga/dictionaries/es.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ga/dictionaries/es.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: LO\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-04-16 21:40+0200\n" -"PO-Revision-Date: 2013-05-24 07:24+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2017-11-12 01:36+0000\n" +"Last-Translator: Kevin Scannell \n" "Language-Team: \n" "Language: ga\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 ? 1 : 2;\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1369380279.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510450587.000000\n" #: description.xml msgctxt "" @@ -22,4 +22,4 @@ "dispname\n" "description.text" msgid "Spanish spelling dictionary, hyphenation rules, and thesaurus for Spain and Latin America" -msgstr "" +msgstr "Foclóir litrithe, rialacha fleiscínithe, agus teasáras don Spáinnis sa Spáinn agus i Meiriceá Laidineach" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ga/dictionaries/is.po libreoffice-l10n-5.4.4~rc2/translations/source/ga/dictionaries/is.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ga/dictionaries/is.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ga/dictionaries/is.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: LO\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-11-10 19:33+0100\n" -"PO-Revision-Date: 2013-07-09 23:10+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2017-11-12 01:36+0000\n" +"Last-Translator: Kevin Scannell \n" "Language-Team: \n" "Language: ga\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 ? 1 : 2;\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1373411421.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510450587.000000\n" #: description.xml msgctxt "" @@ -22,4 +22,4 @@ "dispname\n" "description.text" msgid "Icelandic spelling dictionary, hyphenation rules and thesaurus" -msgstr "" +msgstr "Foclóir litrithe, rialacha fleiscínithe, agus teasáras don Íoslainnis" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ga/extensions/source/update/check/org/openoffice/Office.po libreoffice-l10n-5.4.4~rc2/translations/source/ga/extensions/source/update/check/org/openoffice/Office.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ga/extensions/source/update/check/org/openoffice/Office.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ga/extensions/source/update/check/org/openoffice/Office.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LO\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: 2013-05-24 07:24+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-12 01:36+0000\n" +"Last-Translator: Kevin Scannell \n" "Language-Team: \n" "Language: ga\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1369380298.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510450586.000000\n" #: Addons.xcu msgctxt "" @@ -23,4 +23,4 @@ "Title\n" "value.text" msgid "~Check for Updates..." -msgstr "" +msgstr "~Lorg Nuashonruithe..." diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ga/extras/source/autocorr/emoji.po libreoffice-l10n-5.4.4~rc2/translations/source/ga/extras/source/autocorr/emoji.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ga/extras/source/autocorr/emoji.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ga/extras/source/autocorr/emoji.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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: 2016-10-18 13:37+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-12 01:36+0000\n" +"Last-Translator: Kevin Scannell \n" "Language-Team: LANGUAGE \n" "Language: ga\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.7\n" -"X-POOTLE-MTIME: 1476797829.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510450565.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -23,7 +23,7 @@ "CENT_SIGN\n" "LngText.text" msgid "cent" -msgstr "" +msgstr "cent" #. £ (U+000A3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -32,7 +32,7 @@ "POUND_SIGN\n" "LngText.text" msgid "pound" -msgstr "" +msgstr "punt" #. ¥ (U+000A5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -41,7 +41,7 @@ "YEN_SIGN\n" "LngText.text" msgid "yen" -msgstr "" +msgstr "yen" #. § (U+000A7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -50,7 +50,7 @@ "SECTION_SIGN\n" "LngText.text" msgid "section" -msgstr "" +msgstr "comhartha rannáin" #. © (U+000A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -59,7 +59,7 @@ "COPYRIGHT_SIGN\n" "LngText.text" msgid "copyright" -msgstr "" +msgstr "cóipcheart" #. ¬ (U+000AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -68,7 +68,7 @@ "NOT_SIGN\n" "LngText.text" msgid "not" -msgstr "" +msgstr "comhartha níl" #. ® (U+000AE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -77,7 +77,7 @@ "REGISTERED_SIGN\n" "LngText.text" msgid "registered" -msgstr "" +msgstr "cláraithe" #. ° (U+000B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -86,7 +86,7 @@ "DEGREE_SIGN\n" "LngText.text" msgid "degree" -msgstr "" +msgstr "céim" #. ± (U+000B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -95,7 +95,7 @@ "PLUS-MINUS_SIGN\n" "LngText.text" msgid "+-" -msgstr "" +msgstr "móide lúide" #. · (U+000B7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -104,7 +104,7 @@ "MIDDLE_DOT\n" "LngText.text" msgid "middle dot" -msgstr "" +msgstr "lárphonc" #. × (U+000D7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -113,7 +113,7 @@ "MULTIPLICATION_SIGN\n" "LngText.text" msgid "x" -msgstr "" +msgstr "comhartha iolraithe" #. Α (U+00391), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -122,7 +122,7 @@ "GREEK_CAPITAL_LETTER_ALPHA\n" "LngText.text" msgid "Alpha" -msgstr "" +msgstr "Alfa" #. Β (U+00392), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -131,7 +131,7 @@ "GREEK_CAPITAL_LETTER_BETA\n" "LngText.text" msgid "Beta" -msgstr "" +msgstr "Béite" #. Γ (U+00393), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -140,7 +140,7 @@ "GREEK_CAPITAL_LETTER_GAMMA\n" "LngText.text" msgid "Gamma" -msgstr "" +msgstr "Gáma" #. Δ (U+00394), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -149,7 +149,7 @@ "GREEK_CAPITAL_LETTER_DELTA\n" "LngText.text" msgid "Delta" -msgstr "" +msgstr "Deilte" #. Ε (U+00395), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -158,7 +158,7 @@ "GREEK_CAPITAL_LETTER_EPSILON\n" "LngText.text" msgid "Epsilon" -msgstr "" +msgstr "Eipsealón" #. Ζ (U+00396), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -167,7 +167,7 @@ "GREEK_CAPITAL_LETTER_ZETA\n" "LngText.text" msgid "Zeta" -msgstr "" +msgstr "Zéite" #. Η (U+00397), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -176,7 +176,7 @@ "GREEK_CAPITAL_LETTER_ETA\n" "LngText.text" msgid "Eta" -msgstr "" +msgstr "Éite" #. Θ (U+00398), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -185,7 +185,7 @@ "GREEK_CAPITAL_LETTER_THETA\n" "LngText.text" msgid "Theta" -msgstr "" +msgstr "Téite" #. Ι (U+00399), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -194,7 +194,7 @@ "GREEK_CAPITAL_LETTER_IOTA\n" "LngText.text" msgid "Iota" -msgstr "" +msgstr "Ióta" #. Κ (U+0039A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -203,7 +203,7 @@ "GREEK_CAPITAL_LETTER_KAPPA\n" "LngText.text" msgid "Kappa" -msgstr "" +msgstr "Capa" #. Λ (U+0039B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -212,7 +212,7 @@ "GREEK_CAPITAL_LETTER_LAMDA\n" "LngText.text" msgid "Lambda" -msgstr "" +msgstr "Lambda" #. Μ (U+0039C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -221,7 +221,7 @@ "GREEK_CAPITAL_LETTER_MU\n" "LngText.text" msgid "Mu" -msgstr "" +msgstr "Mú" #. Ν (U+0039D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -230,7 +230,7 @@ "GREEK_CAPITAL_LETTER_NU\n" "LngText.text" msgid "Nu" -msgstr "" +msgstr "Nú" #. Ξ (U+0039E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -239,7 +239,7 @@ "GREEK_CAPITAL_LETTER_XI\n" "LngText.text" msgid "Xi" -msgstr "" +msgstr "Xí" #. Ο (U+0039F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -248,7 +248,7 @@ "GREEK_CAPITAL_LETTER_OMICRON\n" "LngText.text" msgid "Omicron" -msgstr "" +msgstr "Oimeacrón" #. Π (U+003A0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -257,7 +257,7 @@ "GREEK_CAPITAL_LETTER_PI\n" "LngText.text" msgid "Pi" -msgstr "" +msgstr "Pí" #. Ρ (U+003A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -266,7 +266,7 @@ "GREEK_CAPITAL_LETTER_RHO\n" "LngText.text" msgid "Rho" -msgstr "" +msgstr "Ró" #. Σ (U+003A3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -275,7 +275,7 @@ "GREEK_CAPITAL_LETTER_SIGMA\n" "LngText.text" msgid "Sigma" -msgstr "" +msgstr "Sigme" #. Τ (U+003A4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -284,7 +284,7 @@ "GREEK_CAPITAL_LETTER_TAU\n" "LngText.text" msgid "Tau" -msgstr "" +msgstr "Tó" #. Υ (U+003A5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -293,7 +293,7 @@ "GREEK_CAPITAL_LETTER_UPSILON\n" "LngText.text" msgid "Upsilon" -msgstr "" +msgstr "Upsalón" #. Φ (U+003A6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -302,7 +302,7 @@ "GREEK_CAPITAL_LETTER_PHI\n" "LngText.text" msgid "Phi" -msgstr "" +msgstr "Fí" #. Χ (U+003A7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -311,7 +311,7 @@ "GREEK_CAPITAL_LETTER_CHI\n" "LngText.text" msgid "Chi" -msgstr "" +msgstr "Chí" #. Ψ (U+003A8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -320,7 +320,7 @@ "GREEK_CAPITAL_LETTER_PSI\n" "LngText.text" msgid "Psi" -msgstr "" +msgstr "Psi" #. Ω (U+003A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -329,7 +329,7 @@ "GREEK_CAPITAL_LETTER_OMEGA\n" "LngText.text" msgid "Omega" -msgstr "" +msgstr "Óimige" #. α (U+003B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -338,7 +338,7 @@ "GREEK_SMALL_LETTER_ALPHA\n" "LngText.text" msgid "alpha" -msgstr "" +msgstr "alfa" #. β (U+003B2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -347,7 +347,7 @@ "GREEK_SMALL_LETTER_BETA\n" "LngText.text" msgid "beta" -msgstr "" +msgstr "béite" #. γ (U+003B3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -356,7 +356,7 @@ "GREEK_SMALL_LETTER_GAMMA\n" "LngText.text" msgid "gamma" -msgstr "" +msgstr "gáma" #. δ (U+003B4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -365,7 +365,7 @@ "GREEK_SMALL_LETTER_DELTA\n" "LngText.text" msgid "delta" -msgstr "" +msgstr "deilte" #. ε (U+003B5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -374,7 +374,7 @@ "GREEK_SMALL_LETTER_EPSILON\n" "LngText.text" msgid "epsilon" -msgstr "" +msgstr "eipsealón" #. ζ (U+003B6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -383,7 +383,7 @@ "GREEK_SMALL_LETTER_ZETA\n" "LngText.text" msgid "zeta" -msgstr "" +msgstr "zéite" #. η (U+003B7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -392,7 +392,7 @@ "GREEK_SMALL_LETTER_ETA\n" "LngText.text" msgid "eta" -msgstr "" +msgstr "éite" #. θ (U+003B8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -401,7 +401,7 @@ "GREEK_SMALL_LETTER_THETA\n" "LngText.text" msgid "theta" -msgstr "" +msgstr "téite" #. ι (U+003B9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -410,7 +410,7 @@ "GREEK_SMALL_LETTER_IOTA\n" "LngText.text" msgid "iota" -msgstr "" +msgstr "ióta" #. κ (U+003BA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -419,7 +419,7 @@ "GREEK_SMALL_LETTER_KAPPA\n" "LngText.text" msgid "kappa" -msgstr "" +msgstr "capa" #. λ (U+003BB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -428,7 +428,7 @@ "GREEK_SMALL_LETTER_LAMDA\n" "LngText.text" msgid "lambda" -msgstr "" +msgstr "lambda" #. μ (U+003BC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -437,7 +437,7 @@ "GREEK_SMALL_LETTER_MU\n" "LngText.text" msgid "mu" -msgstr "" +msgstr "mú" #. ν (U+003BD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -446,7 +446,7 @@ "GREEK_SMALL_LETTER_NU\n" "LngText.text" msgid "nu" -msgstr "" +msgstr "nú" #. ξ (U+003BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -455,7 +455,7 @@ "GREEK_SMALL_LETTER_XI\n" "LngText.text" msgid "xi" -msgstr "" +msgstr "xí" #. ο (U+003BF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -464,7 +464,7 @@ "GREEK_SMALL_LETTER_OMICRON\n" "LngText.text" msgid "omicron" -msgstr "" +msgstr "oimeacrón" #. π (U+003C0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -473,7 +473,7 @@ "GREEK_SMALL_LETTER_PI\n" "LngText.text" msgid "pi" -msgstr "" +msgstr "pí" #. ρ (U+003C1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -482,7 +482,7 @@ "GREEK_SMALL_LETTER_RHO\n" "LngText.text" msgid "rho" -msgstr "" +msgstr "ró" #. ς (U+003C2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -491,7 +491,7 @@ "GREEK_SMALL_LETTER_FINAL_SIGMA\n" "LngText.text" msgid "sigma2" -msgstr "" +msgstr "sigme deireanach" #. σ (U+003C3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -500,7 +500,7 @@ "GREEK_SMALL_LETTER_SIGMA\n" "LngText.text" msgid "sigma" -msgstr "" +msgstr "sigme" #. τ (U+003C4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -509,7 +509,7 @@ "GREEK_SMALL_LETTER_TAU\n" "LngText.text" msgid "tau" -msgstr "" +msgstr "tó" #. υ (U+003C5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -518,7 +518,7 @@ "GREEK_SMALL_LETTER_UPSILON\n" "LngText.text" msgid "upsilon" -msgstr "" +msgstr "upsalón" #. φ (U+003C6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -527,7 +527,7 @@ "GREEK_SMALL_LETTER_PHI\n" "LngText.text" msgid "phi" -msgstr "" +msgstr "fí" #. χ (U+003C7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -536,7 +536,7 @@ "GREEK_SMALL_LETTER_CHI\n" "LngText.text" msgid "chi" -msgstr "" +msgstr "chí" #. ψ (U+003C8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -545,7 +545,7 @@ "GREEK_SMALL_LETTER_PSI\n" "LngText.text" msgid "psi" -msgstr "" +msgstr "sí" #. ω (U+003C9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -554,7 +554,7 @@ "GREEK_SMALL_LETTER_OMEGA\n" "LngText.text" msgid "omega" -msgstr "" +msgstr "óimige" #. ฿ (U+00E3F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -563,7 +563,7 @@ "THAI_CURRENCY_SYMBOL_BAHT\n" "LngText.text" msgid "baht" -msgstr "" +msgstr "baht" #. – (U+02013), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -602,7 +602,7 @@ "DAGGER\n" "LngText.text" msgid "dagger" -msgstr "" +msgstr "daigéar" #. ‡ (U+02021), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -611,7 +611,7 @@ "DOUBLE_DAGGER\n" "LngText.text" msgid "dagger2" -msgstr "" +msgstr "daigéar2" #. • (U+02022), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -620,7 +620,7 @@ "BULLET\n" "LngText.text" msgid "bullet" -msgstr "" +msgstr "urchar" #. ‣ (U+02023), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -629,7 +629,7 @@ "TRIANGULAR_BULLET\n" "LngText.text" msgid "bullet2" -msgstr "" +msgstr "urchar2" #. … (U+02026), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -648,7 +648,7 @@ "PER_MILLE_SIGN\n" "LngText.text" msgid "per mille" -msgstr "" +msgstr "per mille" #. ‱ (U+02031), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -657,7 +657,7 @@ "PER_TEN_THOUSAND_SIGN\n" "LngText.text" msgid "basis point" -msgstr "" +msgstr "bonnphointe" #. ′ (U+02032), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -666,7 +666,7 @@ "PRIME\n" "LngText.text" msgid "prime" -msgstr "" +msgstr "prime" #. ″ (U+02033), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -675,7 +675,7 @@ "DOUBLE_PRIME\n" "LngText.text" msgid "inch" -msgstr "" +msgstr "orlach" #. ‼ (U+0203C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -704,7 +704,7 @@ "LIRA_SIGN\n" "LngText.text" msgid "lira" -msgstr "" +msgstr "lira" #. ₩ (U+020A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -713,7 +713,7 @@ "WON_SIGN\n" "LngText.text" msgid "won" -msgstr "" +msgstr "won" #. ₪ (U+020AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -722,7 +722,7 @@ "NEW_SHEQEL_SIGN\n" "LngText.text" msgid "shekel" -msgstr "" +msgstr "seiceal" #. € (U+020AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -731,7 +731,7 @@ "EURO_SIGN\n" "LngText.text" msgid "euro" -msgstr "" +msgstr "euro" #. ₱ (U+020B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -740,7 +740,7 @@ "PESO_SIGN\n" "LngText.text" msgid "peso" -msgstr "" +msgstr "peso" #. ₴ (U+020B4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -749,7 +749,7 @@ "HRYVNIA_SIGN\n" "LngText.text" msgid "hryvnia" -msgstr "" +msgstr "hryvnia" #. ₹ (U+020B9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -758,7 +758,7 @@ "INDIAN_RUPEE_SIGN\n" "LngText.text" msgid "rupee" -msgstr "" +msgstr "rúipí" #. ₺ (U+020BA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -767,7 +767,7 @@ "TURKISH_LIRA_SIGN\n" "LngText.text" msgid "Turkish lira" -msgstr "" +msgstr "Lira na Tuirce" #. ™ (U+02122), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -776,7 +776,7 @@ "TRADE_MARK_SIGN\n" "LngText.text" msgid "tm" -msgstr "" +msgstr "tm" #. ℹ (U+02139), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -785,7 +785,7 @@ "INFORMATION_SOURCE\n" "LngText.text" msgid "information" -msgstr "" +msgstr "eolas" #. ← (U+02190), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -794,7 +794,7 @@ "LEFTWARDS_ARROW\n" "LngText.text" msgid "W" -msgstr "" +msgstr "I" #. ↑ (U+02191), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -803,7 +803,7 @@ "UPWARDS_ARROW\n" "LngText.text" msgid "N" -msgstr "" +msgstr "T" #. → (U+02192), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -812,7 +812,7 @@ "RIGHTWARDS_ARROW\n" "LngText.text" msgid "E" -msgstr "" +msgstr "O" #. ↓ (U+02193), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -821,7 +821,7 @@ "DOWNWARDS_ARROW\n" "LngText.text" msgid "S" -msgstr "" +msgstr "D" #. ↔ (U+02194), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -830,7 +830,7 @@ "LEFT_RIGHT_ARROW\n" "LngText.text" msgid "EW" -msgstr "" +msgstr "IO" #. ↕ (U+02195), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -839,7 +839,7 @@ "UP_DOWN_ARROW\n" "LngText.text" msgid "NS" -msgstr "" +msgstr "TD" #. ↖ (U+02196), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -848,7 +848,7 @@ "NORTH_WEST_ARROW\n" "LngText.text" msgid "NW" -msgstr "" +msgstr "IT" #. ↗ (U+02197), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -857,7 +857,7 @@ "NORTH_EAST_ARROW\n" "LngText.text" msgid "NE" -msgstr "" +msgstr "OT" #. ↘ (U+02198), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -866,7 +866,7 @@ "SOUTH_EAST_ARROW\n" "LngText.text" msgid "SE" -msgstr "" +msgstr "OD" #. ↙ (U+02199), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -875,7 +875,7 @@ "SOUTH_WEST_ARROW\n" "LngText.text" msgid "SW" -msgstr "" +msgstr "ID" #. ⇐ (U+021D0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -884,7 +884,7 @@ "LEFTWARDS_DOUBLE_ARROW\n" "LngText.text" msgid "W2" -msgstr "" +msgstr "I2" #. ⇑ (U+021D1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -893,7 +893,7 @@ "UPWARDS_DOUBLE_ARROW\n" "LngText.text" msgid "N2" -msgstr "" +msgstr "T2" #. ⇒ (U+021D2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -902,7 +902,7 @@ "RIGHTWARDS_DOUBLE_ARROW\n" "LngText.text" msgid "E2" -msgstr "" +msgstr "O2" #. ⇓ (U+021D3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -911,7 +911,7 @@ "DOWNWARDS_DOUBLE_ARROW\n" "LngText.text" msgid "S2" -msgstr "" +msgstr "D2" #. ⇔ (U+021D4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -920,7 +920,7 @@ "LEFT_RIGHT_DOUBLE_ARROW\n" "LngText.text" msgid "EW2" -msgstr "" +msgstr "OI2" #. ⇕ (U+021D5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -929,7 +929,7 @@ "UP_DOWN_DOUBLE_ARROW\n" "LngText.text" msgid "NS2" -msgstr "" +msgstr "TD2" #. ⇖ (U+021D6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -938,7 +938,7 @@ "NORTH_WEST_DOUBLE_ARROW\n" "LngText.text" msgid "NW2" -msgstr "" +msgstr "IT2" #. ⇗ (U+021D7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -947,7 +947,7 @@ "NORTH_EAST_DOUBLE_ARROW\n" "LngText.text" msgid "NE2" -msgstr "" +msgstr "OT2" #. ⇘ (U+021D8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -956,7 +956,7 @@ "SOUTH_EAST_DOUBLE_ARROW\n" "LngText.text" msgid "SE2" -msgstr "" +msgstr "OD2" #. ⇙ (U+021D9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -965,7 +965,7 @@ "SOUTH_WEST_DOUBLE_ARROW\n" "LngText.text" msgid "SW2" -msgstr "" +msgstr "ID2" #. ∀ (U+02200), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -974,7 +974,7 @@ "FOR_ALL\n" "LngText.text" msgid "for all" -msgstr "" +msgstr "do gach ceann" #. ∂ (U+02202), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -983,7 +983,7 @@ "PARTIAL_DIFFERENTIAL\n" "LngText.text" msgid "partial" -msgstr "" +msgstr "go páirteach" #. ∃ (U+02203), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -992,7 +992,7 @@ "THERE_EXISTS\n" "LngText.text" msgid "exists" -msgstr "" +msgstr "tá sé ann" #. ∄ (U+02204), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1001,7 +1001,7 @@ "THERE_DOES_NOT_EXIST\n" "LngText.text" msgid "not exists" -msgstr "" +msgstr "níl sé ann" #. ∅ (U+02205), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1010,7 +1010,7 @@ "EMPTY_SET\n" "LngText.text" msgid "empty set" -msgstr "" +msgstr "tacar folamh" #. ∈ (U+02208), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1019,7 +1019,7 @@ "ELEMENT_OF\n" "LngText.text" msgid "in" -msgstr "" +msgstr "is cuid de" #. ∉ (U+02209), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1028,7 +1028,7 @@ "NOT_AN_ELEMENT_OF\n" "LngText.text" msgid "not in" -msgstr "" +msgstr "ní cuid de" #. ∊ (U+0220A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1037,7 +1037,7 @@ "SMALL_ELEMENT_OF\n" "LngText.text" msgid "small in" -msgstr "" +msgstr "cuid beag de" #. ∋ (U+0220B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1046,7 +1046,7 @@ "CONTAINS_AS_MEMBER\n" "LngText.text" msgid "ni" -msgstr "" +msgstr "coinníonn" #. ∌ (U+0220C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1055,7 +1055,7 @@ "DOES_NOT_CONTAIN_AS_MEMBER\n" "LngText.text" msgid "not ni" -msgstr "" +msgstr "ní choinníonn" #. ∍ (U+0220D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1064,7 +1064,7 @@ "SMALL_CONTAINS_AS_MEMBER\n" "LngText.text" msgid "small ni" -msgstr "" +msgstr "coinníonn go beag" #. ∎ (U+0220E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1073,7 +1073,7 @@ "END_OF_PROOF\n" "LngText.text" msgid "end of proof" -msgstr "" +msgstr "deireadh an chruthaithe" #. ∏ (U+0220F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1082,7 +1082,7 @@ "N-ARY_PRODUCT\n" "LngText.text" msgid "product" -msgstr "" +msgstr "iolrach" #. ∑ (U+02211), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1091,7 +1091,7 @@ "N-ARY_SUMMATION\n" "LngText.text" msgid "sum" -msgstr "" +msgstr "suimiú" #. − (U+02212), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1110,7 +1110,7 @@ "MINUS-OR-PLUS_SIGN\n" "LngText.text" msgid "-+" -msgstr "" +msgstr "lúide-móide" #. ∕ (U+02215), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1139,7 +1139,7 @@ "SQUARE_ROOT\n" "LngText.text" msgid "sqrt" -msgstr "" +msgstr "fréamh-chearnach" #. ∛ (U+0221B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1148,7 +1148,7 @@ "CUBE_ROOT\n" "LngText.text" msgid "cube root" -msgstr "" +msgstr "fréamh-chiúbach" #. ∜ (U+0221C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1157,7 +1157,7 @@ "FOURTH_ROOT\n" "LngText.text" msgid "fourth root" -msgstr "" +msgstr "fréamh-cheathrach" #. ∞ (U+0221E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1166,7 +1166,7 @@ "INFINITY\n" "LngText.text" msgid "infinity" -msgstr "" +msgstr "éigríoch" #. ∠ (U+02220), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1175,7 +1175,7 @@ "ANGLE\n" "LngText.text" msgid "angle" -msgstr "" +msgstr "uillinn" #. ∡ (U+02221), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1184,7 +1184,7 @@ "MEASURED_ANGLE\n" "LngText.text" msgid "angle2" -msgstr "" +msgstr "uillinn2" #. ∣ (U+02223), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1193,7 +1193,7 @@ "DIVIDES\n" "LngText.text" msgid "divides" -msgstr "" +msgstr "roinneann" #. ∤ (U+02224), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1202,7 +1202,7 @@ "DOES_NOT_DIVIDE\n" "LngText.text" msgid "not divides" -msgstr "" +msgstr "ní-roinneann" #. ∥ (U+02225), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1211,7 +1211,7 @@ "PARALLEL_TO\n" "LngText.text" msgid "parallel" -msgstr "" +msgstr "comhthreomhar" #. ∦ (U+02226), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1220,7 +1220,7 @@ "NOT_PARALLEL_TO\n" "LngText.text" msgid "nparallel" -msgstr "" +msgstr "n-comhthreomhar" #. ∧ (U+02227), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1229,7 +1229,7 @@ "LOGICAL_AND\n" "LngText.text" msgid "and" -msgstr "" +msgstr "agus" #. ∨ (U+02228), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1238,7 +1238,7 @@ "LOGICAL_OR\n" "LngText.text" msgid "or" -msgstr "" +msgstr "nó" #. ∩ (U+02229), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1247,7 +1247,7 @@ "INTERSECTION\n" "LngText.text" msgid "intersection" -msgstr "" +msgstr "idirmhír" #. ∪ (U+0222A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1256,7 +1256,7 @@ "UNION\n" "LngText.text" msgid "union" -msgstr "" +msgstr "aontas" #. ∫ (U+0222B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1265,7 +1265,7 @@ "INTEGRAL\n" "LngText.text" msgid "integral" -msgstr "" +msgstr "suimeálaí" #. ∬ (U+0222C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1274,7 +1274,7 @@ "DOUBLE_INTEGRAL\n" "LngText.text" msgid "integral2" -msgstr "" +msgstr "suimeálaí2" #. ∭ (U+0222D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1283,7 +1283,7 @@ "TRIPLE_INTEGRAL\n" "LngText.text" msgid "integral3" -msgstr "" +msgstr "suimeálaí3" #. ∮ (U+0222E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1292,7 +1292,7 @@ "CONTOUR_INTEGRAL\n" "LngText.text" msgid "integral4" -msgstr "" +msgstr "suimeálaí4" #. ∰ (U+02230), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1301,7 +1301,7 @@ "VOLUME_INTEGRAL\n" "LngText.text" msgid "integral5" -msgstr "" +msgstr "suimeálaí5" #. ≈ (U+02248), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1310,7 +1310,7 @@ "ALMOST_EQUAL_TO\n" "LngText.text" msgid "~" -msgstr "" +msgstr "beagnach-cothrom" #. ≠ (U+02260), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1319,7 +1319,7 @@ "NOT_EQUAL_TO\n" "LngText.text" msgid "not equal" -msgstr "" +msgstr "neamhionann" #. ≤ (U+02264), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1328,7 +1328,7 @@ "LESS-THAN_OR_EQUAL_TO\n" "LngText.text" msgid "<=" -msgstr "" +msgstr "<=" #. ≥ (U+02265), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1337,7 +1337,7 @@ "GREATER-THAN_OR_EQUAL_TO\n" "LngText.text" msgid ">=" -msgstr "" +msgstr ">=" #. ≪ (U+0226A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1366,7 +1366,7 @@ "SUBSET_OF\n" "LngText.text" msgid "subset" -msgstr "" +msgstr "fo-thacar" #. ⊃ (U+02283), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1375,7 +1375,7 @@ "SUPERSET_OF\n" "LngText.text" msgid "superset" -msgstr "" +msgstr "for-thacar" #. ⊄ (U+02284), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1384,7 +1384,7 @@ "NOT_A_SUBSET_OF\n" "LngText.text" msgid "not subset" -msgstr "" +msgstr "ní-fo-thacar" #. ⊅ (U+02285), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1393,7 +1393,7 @@ "NOT_A_SUPERSET_OF\n" "LngText.text" msgid "not superset" -msgstr "" +msgstr "ní-for-thacar" #. ⊿ (U+022BF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1402,7 +1402,7 @@ "RIGHT_TRIANGLE\n" "LngText.text" msgid "right triangle" -msgstr "" +msgstr "triantán-dronuilleach" #. ⌚ (U+0231A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1411,7 +1411,7 @@ "WATCH\n" "LngText.text" msgid "watch" -msgstr "" +msgstr "uaireadóir" #. ⌛ (U+0231B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1420,7 +1420,7 @@ "HOURGLASS\n" "LngText.text" msgid "hourglass" -msgstr "" +msgstr "orláiste" #. ⌨ (U+02328), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1429,7 +1429,7 @@ "KEYBOARD\n" "LngText.text" msgid "keyboard" -msgstr "" +msgstr "méarchlár" #. ⏢ (U+023E2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1438,7 +1438,7 @@ "WHITE_TRAPEZIUM\n" "LngText.text" msgid "trapezium" -msgstr "" +msgstr "traipéisiam" #. ⏰ (U+023F0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1447,7 +1447,7 @@ "ALARM_CLOCK\n" "LngText.text" msgid "alarm clock" -msgstr "" +msgstr "clog-aláraim" #. ⏱ (U+023F1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1456,7 +1456,7 @@ "STOPWATCH\n" "LngText.text" msgid "stopwatch" -msgstr "" +msgstr "staduaireadóir" #. ⏲ (U+023F2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1465,7 +1465,7 @@ "TIMER_CLOCK\n" "LngText.text" msgid "timer clock" -msgstr "" +msgstr "amadóir" #. ⏳ (U+023F3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1474,7 +1474,7 @@ "HOURGLASS_WITH_FLOWING_SAND\n" "LngText.text" msgid "hourglass2" -msgstr "" +msgstr "orláiste2" #. ■ (U+025A0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1483,7 +1483,7 @@ "BLACK_SQUARE\n" "LngText.text" msgid "square2" -msgstr "" +msgstr "cearnóg2" #. □ (U+025A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1492,7 +1492,7 @@ "WHITE_SQUARE\n" "LngText.text" msgid "square" -msgstr "" +msgstr "cearnóg" #. ▪ (U+025AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1501,7 +1501,7 @@ "BLACK_SMALL_SQUARE\n" "LngText.text" msgid "small square2" -msgstr "" +msgstr "cearnóg-bheag2" #. ▫ (U+025AB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1510,7 +1510,7 @@ "WHITE_SMALL_SQUARE\n" "LngText.text" msgid "small square" -msgstr "" +msgstr "cearnóg-bheag" #. ▬ (U+025AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1519,7 +1519,7 @@ "BLACK_RECTANGLE\n" "LngText.text" msgid "rectangle2" -msgstr "" +msgstr "dronuilleog2" #. ▭ (U+025AD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1528,7 +1528,7 @@ "WHITE_RECTANGLE\n" "LngText.text" msgid "rectangle" -msgstr "" +msgstr "dronuilleog" #. ▰ (U+025B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1537,7 +1537,7 @@ "BLACK_PARALLELOGRAM\n" "LngText.text" msgid "parallelogram2" -msgstr "" +msgstr "comhthreomharán2" #. ▱ (U+025B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1546,7 +1546,7 @@ "WHITE_PARALLELOGRAM\n" "LngText.text" msgid "parallelogram" -msgstr "" +msgstr "comhthreomharán" #. ▲ (U+025B2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1555,7 +1555,7 @@ "BLACK_UP-POINTING_TRIANGLE\n" "LngText.text" msgid "triangle2" -msgstr "" +msgstr "triantán2" #. △ (U+025B3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1564,7 +1564,7 @@ "WHITE_UP-POINTING_TRIANGLE\n" "LngText.text" msgid "triangle" -msgstr "" +msgstr "triantán" #. ◊ (U+025CA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1573,7 +1573,7 @@ "LOZENGE\n" "LngText.text" msgid "lozenge" -msgstr "" +msgstr "muileata" #. ○ (U+025CB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1582,7 +1582,7 @@ "WHITE_CIRCLE\n" "LngText.text" msgid "circle" -msgstr "" +msgstr "ciorcal" #. ● (U+025CF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1591,7 +1591,7 @@ "BLACK_CIRCLE\n" "LngText.text" msgid "circle2" -msgstr "" +msgstr "ciorcal2" #. ◦ (U+025E6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1600,7 +1600,7 @@ "WHITE_BULLET\n" "LngText.text" msgid "bullet3" -msgstr "" +msgstr "urchar3" #. ◯ (U+025EF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1609,7 +1609,7 @@ "LARGE_CIRCLE\n" "LngText.text" msgid "large circle" -msgstr "" +msgstr "ciorcal-mór" #. ◻ (U+025FB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1618,7 +1618,7 @@ "WHITE_MEDIUM_SQUARE\n" "LngText.text" msgid "medium square" -msgstr "" +msgstr "meánchearnóg" #. ◼ (U+025FC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1627,7 +1627,7 @@ "BLACK_MEDIUM_SQUARE\n" "LngText.text" msgid "medium square2" -msgstr "" +msgstr "meánchearnóg2" #. ◽ (U+025FD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1636,7 +1636,7 @@ "WHITE_MEDIUM_SMALL_SQUARE\n" "LngText.text" msgid "smaller square" -msgstr "" +msgstr "cearnóg-níos-lú" #. ◾ (U+025FE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1645,7 +1645,7 @@ "BLACK_MEDIUM_SMALL_SQUARE\n" "LngText.text" msgid "smaller square2" -msgstr "" +msgstr "cearnóg-níos-lú2" #. ☀ (U+02600), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1654,7 +1654,7 @@ "BLACK_SUN_WITH_RAYS\n" "LngText.text" msgid "sunny" -msgstr "" +msgstr "grianmhar" #. ☁ (U+02601), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1663,7 +1663,7 @@ "CLOUD\n" "LngText.text" msgid "cloud" -msgstr "" +msgstr "scamallach" #. ☂ (U+02602), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1672,7 +1672,7 @@ "UMBRELLA\n" "LngText.text" msgid "umbrella" -msgstr "" +msgstr "scáth-fearthainne" #. ☃ (U+02603), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1681,7 +1681,7 @@ "SNOWMAN\n" "LngText.text" msgid "snowman" -msgstr "" +msgstr "fear-sneachta" #. ☄ (U+02604), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1690,7 +1690,7 @@ "COMET\n" "LngText.text" msgid "comet" -msgstr "" +msgstr "cóiméad" #. ★ (U+02605), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1699,7 +1699,7 @@ "BLACK_STAR\n" "LngText.text" msgid "star" -msgstr "" +msgstr "réalta" #. ☆ (U+02606), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1708,7 +1708,7 @@ "WHITE_STAR\n" "LngText.text" msgid "star2" -msgstr "" +msgstr "réalta2" #. ☇ (U+02607), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1717,7 +1717,7 @@ "LIGHTNING\n" "LngText.text" msgid "lighting" -msgstr "" +msgstr "tintreach" #. ☈ (U+02608), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1726,7 +1726,7 @@ "THUNDERSTORM\n" "LngText.text" msgid "storm" -msgstr "" +msgstr "stoirm" #. ☉ (U+02609), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1735,7 +1735,7 @@ "SUN\n" "LngText.text" msgid "Sun" -msgstr "" +msgstr "Grian" #. ☎ (U+0260E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1744,7 +1744,7 @@ "BLACK_TELEPHONE\n" "LngText.text" msgid "phone" -msgstr "" +msgstr "fón" #. ☏ (U+0260F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1753,7 +1753,7 @@ "WHITE_TELEPHONE\n" "LngText.text" msgid "phone2" -msgstr "" +msgstr "fón2" #. ☐ (U+02610), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1762,7 +1762,7 @@ "BALLOT_BOX\n" "LngText.text" msgid "checkbox" -msgstr "" +msgstr "ticbhosca" #. ☑ (U+02611), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1771,7 +1771,7 @@ "BALLOT_BOX_WITH_CHECK\n" "LngText.text" msgid "checkbox2" -msgstr "" +msgstr "ticbhosca2" #. ☒ (U+02612), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1780,7 +1780,7 @@ "BALLOT_BOX_WITH_X\n" "LngText.text" msgid "checkbox3" -msgstr "" +msgstr "ticbhosca3" #. ☓ (U+02613), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1789,7 +1789,7 @@ "SALTIRE\n" "LngText.text" msgid "saltire" -msgstr "" +msgstr "sailtír" #. ☔ (U+02614), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1798,7 +1798,7 @@ "UMBRELLA_WITH_RAIN_DROPS\n" "LngText.text" msgid "rain" -msgstr "" +msgstr "báisteach" #. ☕ (U+02615), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1807,7 +1807,7 @@ "HOT_BEVERAGE\n" "LngText.text" msgid "coffee" -msgstr "" +msgstr "caife" #. ☚ (U+0261A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1816,7 +1816,7 @@ "BLACK_LEFT_POINTING_INDEX\n" "LngText.text" msgid "left3" -msgstr "" +msgstr "ar-chlé3" #. ☛ (U+0261B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1825,7 +1825,7 @@ "BLACK_RIGHT_POINTING_INDEX\n" "LngText.text" msgid "right3" -msgstr "" +msgstr "ar-dheis3" #. ☜ (U+0261C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1834,7 +1834,7 @@ "WHITE_LEFT_POINTING_INDEX\n" "LngText.text" msgid "left" -msgstr "" +msgstr "ar-chlé" #. ☝ (U+0261D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1843,7 +1843,7 @@ "WHITE_UP_POINTING_INDEX\n" "LngText.text" msgid "up" -msgstr "" +msgstr "suas" #. ☞ (U+0261E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1852,7 +1852,7 @@ "WHITE_RIGHT_POINTING_INDEX\n" "LngText.text" msgid "right" -msgstr "" +msgstr "ar-dheis" #. ☟ (U+0261F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1861,7 +1861,7 @@ "WHITE_DOWN_POINTING_INDEX\n" "LngText.text" msgid "down" -msgstr "" +msgstr "síos" #. ☠ (U+02620), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1870,7 +1870,7 @@ "SKULL_AND_CROSSBONES\n" "LngText.text" msgid "poison" -msgstr "" +msgstr "nimh" #. ☡ (U+02621), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1879,7 +1879,7 @@ "CAUTION_SIGN\n" "LngText.text" msgid "caution" -msgstr "" +msgstr "aire" #. ☢ (U+02622), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1888,7 +1888,7 @@ "RADIOACTIVE_SIGN\n" "LngText.text" msgid "radioactive" -msgstr "" +msgstr "radaighníomhach" #. ☣ (U+02623), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1897,7 +1897,7 @@ "BIOHAZARD_SIGN\n" "LngText.text" msgid "biohazard" -msgstr "" +msgstr "bithghuais" #. ☤ (U+02624), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1906,7 +1906,7 @@ "CADUCEUS\n" "LngText.text" msgid "caduceus" -msgstr "" +msgstr "cadúicéas" #. ☥ (U+02625), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1915,7 +1915,7 @@ "ANKH\n" "LngText.text" msgid "ankh" -msgstr "" +msgstr "anc" #. ☦ (U+02626), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1924,7 +1924,7 @@ "ORTHODOX_CROSS\n" "LngText.text" msgid "orthodox cross" -msgstr "" +msgstr "cros ortadocsach" #. ☧ (U+02627), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1933,7 +1933,7 @@ "CHI_RHO\n" "LngText.text" msgid "chi rho" -msgstr "" +msgstr "chí ró" #. ☨ (U+02628), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1942,7 +1942,7 @@ "CROSS_OF_LORRAINE\n" "LngText.text" msgid "cross of Lorraine" -msgstr "" +msgstr "cros Lorraine" #. ☩ (U+02629), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1951,7 +1951,7 @@ "CROSS_OF_JERUSALEM\n" "LngText.text" msgid "cross of Jerusalem" -msgstr "" +msgstr "cros Iarúsailéim" #. ☪ (U+0262A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1960,7 +1960,7 @@ "STAR_AND_CRESCENT\n" "LngText.text" msgid "star and crescent" -msgstr "" +msgstr "réalta agus corrán" #. ☫ (U+0262B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1969,7 +1969,7 @@ "FARSI_SYMBOL\n" "LngText.text" msgid "Farsi" -msgstr "" +msgstr "Fairsis" #. ☬ (U+0262C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1978,7 +1978,7 @@ "ADI_SHAKTI\n" "LngText.text" msgid "Adi Shakti" -msgstr "" +msgstr "Adi Shakti" #. ☭ (U+0262D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1987,7 +1987,7 @@ "HAMMER_AND_SICKLE\n" "LngText.text" msgid "hammer and sickle" -msgstr "" +msgstr "casúr agus corrán" #. ☮ (U+0262E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -1996,7 +1996,7 @@ "PEACE_SYMBOL\n" "LngText.text" msgid "peace" -msgstr "" +msgstr "síocháin" #. ☯ (U+0262F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2005,7 +2005,7 @@ "YIN_YANG\n" "LngText.text" msgid "yin yang" -msgstr "" +msgstr "yin yang" #. ☹ (U+02639), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2014,7 +2014,7 @@ "WHITE_FROWNING_FACE\n" "LngText.text" msgid "frown" -msgstr "" +msgstr "grainc" #. ☺ (U+0263A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2023,7 +2023,7 @@ "WHITE_SMILING_FACE\n" "LngText.text" msgid "smiling" -msgstr "" +msgstr "gáire" #. ☻ (U+0263B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2032,7 +2032,7 @@ "BLACK_SMILING_FACE\n" "LngText.text" msgid "smiling2" -msgstr "" +msgstr "gáire2" #. ☼ (U+0263C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2041,7 +2041,7 @@ "WHITE_SUN_WITH_RAYS\n" "LngText.text" msgid "Sun2" -msgstr "" +msgstr "Grian2" #. ☽ (U+0263D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2050,7 +2050,7 @@ "FIRST_QUARTER_MOON\n" "LngText.text" msgid "Moon" -msgstr "" +msgstr "Gealach" #. ☾ (U+0263E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2059,7 +2059,7 @@ "LAST_QUARTER_MOON\n" "LngText.text" msgid "Moon2" -msgstr "" +msgstr "Gealach2" #. ☿ (U+0263F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2068,7 +2068,7 @@ "MERCURY\n" "LngText.text" msgid "Mercury" -msgstr "" +msgstr "Mearcair" #. ♀ (U+02640), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2077,7 +2077,7 @@ "FEMALE_SIGN\n" "LngText.text" msgid "female" -msgstr "" +msgstr "baineann" #. ♁ (U+02641), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2086,7 +2086,7 @@ "EARTH\n" "LngText.text" msgid "Earth" -msgstr "" +msgstr "Domhan" #. ♂ (U+02642), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2095,7 +2095,7 @@ "MALE_SIGN\n" "LngText.text" msgid "male" -msgstr "" +msgstr "fireann" #. ♃ (U+02643), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2104,7 +2104,7 @@ "JUPITER\n" "LngText.text" msgid "Jupiter" -msgstr "" +msgstr "Iúpatar" #. ♄ (U+02644), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2113,7 +2113,7 @@ "SATURN\n" "LngText.text" msgid "Saturn" -msgstr "" +msgstr "Satarn" #. ♅ (U+02645), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2122,7 +2122,7 @@ "URANUS\n" "LngText.text" msgid "Uranus" -msgstr "" +msgstr "Úránas" #. ♆ (U+02646), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2131,7 +2131,7 @@ "NEPTUNE\n" "LngText.text" msgid "Neptune" -msgstr "" +msgstr "Neiptiún" #. ♇ (U+02647), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2140,7 +2140,7 @@ "PLUTO\n" "LngText.text" msgid "Pluto" -msgstr "" +msgstr "Plútón" #. ♈ (U+02648), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2149,7 +2149,7 @@ "ARIES\n" "LngText.text" msgid "Aries" -msgstr "" +msgstr "Reithe" #. ♉ (U+02649), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2158,7 +2158,7 @@ "TAURUS\n" "LngText.text" msgid "Taurus" -msgstr "" +msgstr "An Tarbh" #. ♊ (U+0264A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2167,7 +2167,7 @@ "GEMINI\n" "LngText.text" msgid "Gemini" -msgstr "" +msgstr "An Cúpla" #. ♋ (U+0264B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2176,7 +2176,7 @@ "CANCER\n" "LngText.text" msgid "Cancer" -msgstr "" +msgstr "An Portán" #. ♌ (U+0264C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2185,7 +2185,7 @@ "LEO\n" "LngText.text" msgid "Leo" -msgstr "" +msgstr "An Leon" #. ♍ (U+0264D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2194,7 +2194,7 @@ "VIRGO\n" "LngText.text" msgid "Virgo" -msgstr "" +msgstr "An Mhaighdean" #. ♎ (U+0264E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2203,7 +2203,7 @@ "LIBRA\n" "LngText.text" msgid "Libra" -msgstr "" +msgstr "An Mheá" #. ♏ (U+0264F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2212,7 +2212,7 @@ "SCORPIUS\n" "LngText.text" msgid "Scorpius" -msgstr "" +msgstr "An Scairp" #. ♐ (U+02650), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2221,7 +2221,7 @@ "SAGITTARIUS\n" "LngText.text" msgid "Sagittarius" -msgstr "" +msgstr "An Saighdeoir" #. ♑ (U+02651), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2230,7 +2230,7 @@ "CAPRICORN\n" "LngText.text" msgid "Capricorn" -msgstr "" +msgstr "An Gabhar" #. ♒ (U+02652), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2239,7 +2239,7 @@ "AQUARIUS\n" "LngText.text" msgid "Aquarius" -msgstr "" +msgstr "An tUisceadóir" #. ♓ (U+02653), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2248,7 +2248,7 @@ "PISCES\n" "LngText.text" msgid "Pisces" -msgstr "" +msgstr "Na hÉisc" #. ♔ (U+02654), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2257,7 +2257,7 @@ "WHITE_CHESS_KING\n" "LngText.text" msgid "white king" -msgstr "" +msgstr "rí bán" #. ♕ (U+02655), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2266,7 +2266,7 @@ "WHITE_CHESS_QUEEN\n" "LngText.text" msgid "white queen" -msgstr "" +msgstr "banríon bhán" #. ♖ (U+02656), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2275,7 +2275,7 @@ "WHITE_CHESS_ROOK\n" "LngText.text" msgid "white rook" -msgstr "" +msgstr "caiseal bán" #. ♗ (U+02657), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2284,7 +2284,7 @@ "WHITE_CHESS_BISHOP\n" "LngText.text" msgid "white bishop" -msgstr "" +msgstr "easpag ban" #. ♘ (U+02658), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2293,7 +2293,7 @@ "WHITE_CHESS_KNIGHT\n" "LngText.text" msgid "white knight" -msgstr "" +msgstr "ridire bán" #. ♙ (U+02659), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2302,7 +2302,7 @@ "WHITE_CHESS_PAWN\n" "LngText.text" msgid "white pawn" -msgstr "" +msgstr "ceithearnach bán" #. ♚ (U+0265A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2311,7 +2311,7 @@ "BLACK_CHESS_KING\n" "LngText.text" msgid "black king" -msgstr "" +msgstr "rí dubh" #. ♛ (U+0265B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2320,7 +2320,7 @@ "BLACK_CHESS_QUEEN\n" "LngText.text" msgid "black queen" -msgstr "" +msgstr "banríon dhubh" #. ♜ (U+0265C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2329,7 +2329,7 @@ "BLACK_CHESS_ROOK\n" "LngText.text" msgid "black rook" -msgstr "" +msgstr "caiseal dubh" #. ♝ (U+0265D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2338,7 +2338,7 @@ "BLACK_CHESS_BISHOP\n" "LngText.text" msgid "black bishop" -msgstr "" +msgstr "easpag dubh" #. ♞ (U+0265E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2347,7 +2347,7 @@ "BLACK_CHESS_KNIGHT\n" "LngText.text" msgid "black knight" -msgstr "" +msgstr "ridire dubh" #. ♟ (U+0265F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2356,7 +2356,7 @@ "BLACK_CHESS_PAWN\n" "LngText.text" msgid "black pawn" -msgstr "" +msgstr "ceithearnach dubh" #. ♠ (U+02660), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2365,7 +2365,7 @@ "BLACK_SPADE_SUIT\n" "LngText.text" msgid "spades" -msgstr "" +msgstr "spéireata" #. ♡ (U+02661), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2374,7 +2374,7 @@ "WHITE_HEART_SUIT\n" "LngText.text" msgid "hearts2" -msgstr "" +msgstr "hart2" #. ♢ (U+02662), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2383,7 +2383,7 @@ "WHITE_DIAMOND_SUIT\n" "LngText.text" msgid "diamonds2" -msgstr "" +msgstr "muileata2" #. ♣ (U+02663), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2392,7 +2392,7 @@ "BLACK_CLUB_SUIT\n" "LngText.text" msgid "clubs" -msgstr "" +msgstr "triuf" #. ♤ (U+02664), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2401,7 +2401,7 @@ "WHITE_SPADE_SUIT\n" "LngText.text" msgid "spades2" -msgstr "" +msgstr "spéireata2" #. ♥ (U+02665), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2410,7 +2410,7 @@ "BLACK_HEART_SUIT\n" "LngText.text" msgid "hearts" -msgstr "" +msgstr "hart" #. ♦ (U+02666), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2419,7 +2419,7 @@ "BLACK_DIAMOND_SUIT\n" "LngText.text" msgid "diamonds" -msgstr "" +msgstr "muileata" #. ♧ (U+02667), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2428,7 +2428,7 @@ "WHITE_CLUB_SUIT\n" "LngText.text" msgid "clubs2" -msgstr "" +msgstr "triuf2" #. ♨ (U+02668), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2437,7 +2437,7 @@ "HOT_SPRINGS\n" "LngText.text" msgid "hot springs" -msgstr "" +msgstr "foinse théarmach" #. ♩ (U+02669), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2446,7 +2446,7 @@ "QUARTER_NOTE\n" "LngText.text" msgid "note" -msgstr "" +msgstr "nóta" #. ♪ (U+0266A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2455,7 +2455,7 @@ "EIGHTH_NOTE\n" "LngText.text" msgid "note2" -msgstr "" +msgstr "nóta2" #. ♫ (U+0266B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2464,7 +2464,7 @@ "BEAMED_EIGHTH_NOTES\n" "LngText.text" msgid "notes" -msgstr "" +msgstr "nótaí" #. ♬ (U+0266C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2473,7 +2473,7 @@ "BEAMED_SIXTEENTH_NOTES\n" "LngText.text" msgid "notes2" -msgstr "" +msgstr "nótaí2" #. ♭ (U+0266D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2482,7 +2482,7 @@ "MUSIC_FLAT_SIGN\n" "LngText.text" msgid "flat" -msgstr "" +msgstr "maol" #. ♮ (U+0266E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2491,7 +2491,7 @@ "MUSIC_NATURAL_SIGN\n" "LngText.text" msgid "natural" -msgstr "" +msgstr "nádúrtha" #. ♯ (U+0266F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2500,7 +2500,7 @@ "MUSIC_SHARP_SIGN\n" "LngText.text" msgid "sharp" -msgstr "" +msgstr "géar" #. ♲ (U+02672), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2509,7 +2509,7 @@ "UNIVERSAL_RECYCLING_SYMBOL\n" "LngText.text" msgid "recycling" -msgstr "" +msgstr "athchúrsáil" #. ♻ (U+0267B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2518,7 +2518,7 @@ "BLACK_UNIVERSAL_RECYCLING_SYMBOL\n" "LngText.text" msgid "recycling2" -msgstr "" +msgstr "athchúrsáil2" #. ♼ (U+0267C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2527,7 +2527,7 @@ "RECYCLED_PAPER\n" "LngText.text" msgid "recycled paper" -msgstr "" +msgstr "páipéar athchúrsáilte" #. ♾ (U+0267E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2536,7 +2536,7 @@ "PERMANENT_PAPER\n" "LngText.text" msgid "permanent paper" -msgstr "" +msgstr "páipéar buan" #. ♿ (U+0267F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2545,7 +2545,7 @@ "WHEELCHAIR_SYMBOL\n" "LngText.text" msgid "wheelchair" -msgstr "" +msgstr "cathaoir rotha" #. ⚀ (U+02680), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2554,7 +2554,7 @@ "DIE_FACE-1\n" "LngText.text" msgid "dice1" -msgstr "" +msgstr "dísle1" #. ⚁ (U+02681), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2563,7 +2563,7 @@ "DIE_FACE-2\n" "LngText.text" msgid "dice2" -msgstr "" +msgstr "dísle2" #. ⚂ (U+02682), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2572,7 +2572,7 @@ "DIE_FACE-3\n" "LngText.text" msgid "dice3" -msgstr "" +msgstr "dísle3" #. ⚃ (U+02683), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2581,7 +2581,7 @@ "DIE_FACE-4\n" "LngText.text" msgid "dice4" -msgstr "" +msgstr "dísle4" #. ⚄ (U+02684), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2590,7 +2590,7 @@ "DIE_FACE-5\n" "LngText.text" msgid "dice5" -msgstr "" +msgstr "dísle5" #. ⚅ (U+02685), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2599,7 +2599,7 @@ "DIE_FACE-6\n" "LngText.text" msgid "dice6" -msgstr "" +msgstr "dísle6" #. ⚐ (U+02690), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2608,7 +2608,7 @@ "WHITE_FLAG\n" "LngText.text" msgid "flag" -msgstr "" +msgstr "bratach" #. ⚑ (U+02691), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2617,7 +2617,7 @@ "BLACK_FLAG\n" "LngText.text" msgid "flag2" -msgstr "" +msgstr "bratach2" #. ⚒ (U+02692), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2626,7 +2626,7 @@ "HAMMER_AND_PICK\n" "LngText.text" msgid "hammer and pick" -msgstr "" +msgstr "casúr agus piocóid" #. ⚓ (U+02693), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2635,7 +2635,7 @@ "ANCHOR\n" "LngText.text" msgid "anchor" -msgstr "" +msgstr "ancaire" #. ⚔ (U+02694), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2644,7 +2644,7 @@ "CROSSED_SWORDS\n" "LngText.text" msgid "swords" -msgstr "" +msgstr "claimhte" #. ⚕ (U+02695), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2653,7 +2653,7 @@ "STAFF_OF_AESCULAPIUS\n" "LngText.text" msgid "medical" -msgstr "" +msgstr "míochaine" #. ⚖ (U+02696), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2662,7 +2662,7 @@ "SCALES\n" "LngText.text" msgid "scales" -msgstr "" +msgstr "meá" #. ⚗ (U+02697), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2671,7 +2671,7 @@ "ALEMBIC\n" "LngText.text" msgid "alembic" -msgstr "" +msgstr "ailimic" #. ⚘ (U+02698), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2680,7 +2680,7 @@ "FLOWER\n" "LngText.text" msgid "flower" -msgstr "" +msgstr "bláth" #. ⚙ (U+02699), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2689,7 +2689,7 @@ "GEAR\n" "LngText.text" msgid "gear" -msgstr "" +msgstr "giar" #. ⚚ (U+0269A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2698,7 +2698,7 @@ "STAFF_OF_HERMES\n" "LngText.text" msgid "staff" -msgstr "" +msgstr "bata Heirméas" #. ⚛ (U+0269B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2707,7 +2707,7 @@ "ATOM_SYMBOL\n" "LngText.text" msgid "atom" -msgstr "" +msgstr "adamh" #. ⚜ (U+0269C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2716,7 +2716,7 @@ "FLEUR-DE-LIS\n" "LngText.text" msgid "fleur de lis" -msgstr "" +msgstr "fleur de lis" #. ⚠ (U+026A0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2725,7 +2725,7 @@ "WARNING_SIGN\n" "LngText.text" msgid "warning" -msgstr "" +msgstr "rabhadh" #. ⚡ (U+026A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2734,7 +2734,7 @@ "HIGH_VOLTAGE_SIGN\n" "LngText.text" msgid "zap" -msgstr "" +msgstr "ardvoltas" #. ⚪ (U+026AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2743,7 +2743,7 @@ "MEDIUM_WHITE_CIRCLE\n" "LngText.text" msgid "white circle" -msgstr "" +msgstr "ciorcal bán" #. ⚫ (U+026AB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2752,7 +2752,7 @@ "MEDIUM_BLACK_CIRCLE\n" "LngText.text" msgid "black circle" -msgstr "" +msgstr "ciorcal dubh" #. ⚭ (U+026AD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2761,7 +2761,7 @@ "MARRIAGE_SYMBOL\n" "LngText.text" msgid "marriage" -msgstr "" +msgstr "pósadh" #. ⚮ (U+026AE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2770,7 +2770,7 @@ "DIVORCE_SYMBOL\n" "LngText.text" msgid "divorce" -msgstr "" +msgstr "colscaradh" #. ⚰ (U+026B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2779,7 +2779,7 @@ "COFFIN\n" "LngText.text" msgid "coffin" -msgstr "" +msgstr "cónra" #. ⚱ (U+026B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2788,7 +2788,7 @@ "FUNERAL_URN\n" "LngText.text" msgid "urn" -msgstr "" +msgstr "próca" #. ⚽ (U+026BD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2797,7 +2797,7 @@ "SOCCER_BALL\n" "LngText.text" msgid "soccer" -msgstr "" +msgstr "sacar" #. ⚾ (U+026BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2806,7 +2806,7 @@ "BASEBALL\n" "LngText.text" msgid "baseball" -msgstr "" +msgstr "liathróid daorchluiche" #. ⛄ (U+026C4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2815,7 +2815,7 @@ "SNOWMAN_WITHOUT_SNOW\n" "LngText.text" msgid "snowman2" -msgstr "" +msgstr "fear sneachta2" #. ⛅ (U+026C5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2824,7 +2824,7 @@ "SUN_BEHIND_CLOUD\n" "LngText.text" msgid "cloud2" -msgstr "" +msgstr "scamall2" #. ⛆ (U+026C6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2833,7 +2833,7 @@ "RAIN\n" "LngText.text" msgid "rain2" -msgstr "" +msgstr "báisteach2" #. ⛈ (U+026C8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2842,7 +2842,7 @@ "THUNDER_CLOUD_AND_RAIN\n" "LngText.text" msgid "cloud3" -msgstr "" +msgstr "scamall3" #. ⛎ (U+026CE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2851,7 +2851,7 @@ "OPHIUCHUS\n" "LngText.text" msgid "ophiuchus" -msgstr "" +msgstr "Fear na bPéisteanna" #. ⛏ (U+026CF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2860,7 +2860,7 @@ "PICK\n" "LngText.text" msgid "pick" -msgstr "" +msgstr "piocóid" #. ⛐ (U+026D0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2869,7 +2869,7 @@ "CAR_SLIDING\n" "LngText.text" msgid "sliding car" -msgstr "" +msgstr "carr ag sleamhnú" #. ⛑ (U+026D1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2878,7 +2878,7 @@ "HELMET_WITH_WHITE_CROSS\n" "LngText.text" msgid "helmet" -msgstr "" +msgstr "clogad" #. ⛓ (U+026D3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2887,7 +2887,7 @@ "CHAINS\n" "LngText.text" msgid "chains" -msgstr "" +msgstr "slabhraí" #. ⛔ (U+026D4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2896,7 +2896,7 @@ "NO_ENTRY\n" "LngText.text" msgid "no entry" -msgstr "" +msgstr "cosc ar iontráil" #. ⛟ (U+026DF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2905,7 +2905,7 @@ "BLACK_TRUCK\n" "LngText.text" msgid "truck" -msgstr "" +msgstr "trucail" #. ⛤ (U+026E4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2914,7 +2914,7 @@ "PENTAGRAM\n" "LngText.text" msgid "pentagram" -msgstr "" +msgstr "peinteagram" #. ⛨ (U+026E8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2923,7 +2923,7 @@ "BLACK_CROSS_ON_SHIELD\n" "LngText.text" msgid "shield" -msgstr "" +msgstr "sciath" #. ⛪ (U+026EA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2932,7 +2932,7 @@ "CHURCH\n" "LngText.text" msgid "church" -msgstr "" +msgstr "eaglais" #. ⛰ (U+026F0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2941,7 +2941,7 @@ "MOUNTAIN\n" "LngText.text" msgid "mountain" -msgstr "" +msgstr "sliabh" #. ⛱ (U+026F1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2950,7 +2950,7 @@ "UMBRELLA_ON_GROUND\n" "LngText.text" msgid "umbrella3" -msgstr "" +msgstr "scáth fearthainne3" #. ⛲ (U+026F2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2959,7 +2959,7 @@ "FOUNTAIN\n" "LngText.text" msgid "fountain" -msgstr "" +msgstr "scairdeán" #. ⛳ (U+026F3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2968,7 +2968,7 @@ "FLAG_IN_HOLE\n" "LngText.text" msgid "golf" -msgstr "" +msgstr "galf" #. ⛴ (U+026F4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2977,7 +2977,7 @@ "FERRY\n" "LngText.text" msgid "ferry" -msgstr "" +msgstr "bád farantóireachta" #. ⛵ (U+026F5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2986,7 +2986,7 @@ "SAILBOAT\n" "LngText.text" msgid "sailboat" -msgstr "" +msgstr "bád seoil" #. ⛺ (U+026FA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -2995,7 +2995,7 @@ "TENT\n" "LngText.text" msgid "tent" -msgstr "" +msgstr "puball" #. ⛷ (U+026F7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3004,7 +3004,7 @@ "SKIER\n" "LngText.text" msgid "skier" -msgstr "" +msgstr "sciálaí" #. ⛸ (U+026F8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3013,7 +3013,7 @@ "ICE_SKATE\n" "LngText.text" msgid "skate" -msgstr "" +msgstr "scáta" #. ⛹ (U+026F9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3022,7 +3022,7 @@ "PERSON_WITH_BALL\n" "LngText.text" msgid "ball" -msgstr "" +msgstr "liathróid" #. ⛽ (U+026FD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3031,7 +3031,7 @@ "FUEL_PUMP\n" "LngText.text" msgid "fuelpump" -msgstr "" +msgstr "pumpa breosla" #. ✁ (U+02701), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3040,7 +3040,7 @@ "UPPER_BLADE_SCISSORS\n" "LngText.text" msgid "scissors3" -msgstr "" +msgstr "siosúr3" #. ✂ (U+02702), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3049,7 +3049,7 @@ "BLACK_SCISSORS\n" "LngText.text" msgid "scissors" -msgstr "" +msgstr "siosúr" #. ✃ (U+02703), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3058,7 +3058,7 @@ "LOWER_BLADE_SCISSORS\n" "LngText.text" msgid "scissors4" -msgstr "" +msgstr "siosúr4" #. ✄ (U+02704), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3067,7 +3067,7 @@ "WHITE_SCISSORS\n" "LngText.text" msgid "scissors2" -msgstr "" +msgstr "siosúr2" #. ✅ (U+02705), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3076,7 +3076,7 @@ "WHITE_HEAVY_CHECK_MARK\n" "LngText.text" msgid "check mark3" -msgstr "" +msgstr "tic3" #. ✆ (U+02706), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3085,7 +3085,7 @@ "TELEPHONE_LOCATION\n" "LngText.text" msgid "telephone" -msgstr "" +msgstr "teileafón" #. ✈ (U+02708), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3094,7 +3094,7 @@ "AIRPLANE\n" "LngText.text" msgid "airplane" -msgstr "" +msgstr "eitleán" #. ✉ (U+02709), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3103,7 +3103,7 @@ "ENVELOPE\n" "LngText.text" msgid "envelope" -msgstr "" +msgstr "clúdach" #. ✊ (U+0270A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3112,7 +3112,7 @@ "RAISED_FIST\n" "LngText.text" msgid "fist" -msgstr "" +msgstr "dorn" #. ✋ (U+0270B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3121,7 +3121,7 @@ "RAISED_HAND\n" "LngText.text" msgid "hand" -msgstr "" +msgstr "lámh" #. ✌ (U+0270C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3130,7 +3130,7 @@ "VICTORY_HAND\n" "LngText.text" msgid "victory" -msgstr "" +msgstr "bua" #. ✍ (U+0270D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3139,7 +3139,7 @@ "WRITING_HAND\n" "LngText.text" msgid "writing" -msgstr "" +msgstr "scríobh" #. ✎ (U+0270E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3148,7 +3148,7 @@ "LOWER_RIGHT_PENCIL\n" "LngText.text" msgid "pencil" -msgstr "" +msgstr "peann luaidhe" #. ✏ (U+0270F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3157,7 +3157,7 @@ "PENCIL\n" "LngText.text" msgid "pencil2" -msgstr "" +msgstr "peann luaidhe2" #. ✐ (U+02710), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3166,7 +3166,7 @@ "UPPER_RIGHT_PENCIL\n" "LngText.text" msgid "pencil3" -msgstr "" +msgstr "peann luaidhe3" #. ✑ (U+02711), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3175,7 +3175,7 @@ "WHITE_NIB\n" "LngText.text" msgid "nib" -msgstr "" +msgstr "gob" #. ✒ (U+02712), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3184,7 +3184,7 @@ "BLACK_NIB\n" "LngText.text" msgid "nib2" -msgstr "" +msgstr "gob2" #. ✓ (U+02713), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3193,7 +3193,7 @@ "CHECK_MARK\n" "LngText.text" msgid "check mark" -msgstr "" +msgstr "tic" #. ✔ (U+02714), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3202,7 +3202,7 @@ "HEAVY_CHECK_MARK\n" "LngText.text" msgid "check mark2" -msgstr "" +msgstr "tic2" #. ✖ (U+02716), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3211,7 +3211,7 @@ "HEAVY_MULTIPLICATION_X\n" "LngText.text" msgid "times2" -msgstr "" +msgstr "comhartha iolraithe2" #. ✙ (U+02719), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3220,7 +3220,7 @@ "OUTLINED_GREEK_CROSS\n" "LngText.text" msgid "Greek cross2" -msgstr "" +msgstr "cros Ghréagach2" #. ✚ (U+0271A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3229,7 +3229,7 @@ "HEAVY_GREEK_CROSS\n" "LngText.text" msgid "Greek cross" -msgstr "" +msgstr "cros Ghréagach" #. ✝ (U+0271D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3238,7 +3238,7 @@ "LATIN_CROSS\n" "LngText.text" msgid "Latin cross" -msgstr "" +msgstr "cros Laidineach" #. ✠ (U+02720), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3247,7 +3247,7 @@ "MALTESE_CROSS\n" "LngText.text" msgid "Maltese cross" -msgstr "" +msgstr "cros Mháltach" #. ✡ (U+02721), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3256,7 +3256,7 @@ "STAR_OF_DAVID\n" "LngText.text" msgid "star of David" -msgstr "" +msgstr "réalta Dháiví" #. ✨ (U+02728), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3265,7 +3265,7 @@ "SPARKLES\n" "LngText.text" msgid "sparkles" -msgstr "" +msgstr "gealáin" #. ❄ (U+02744), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3274,7 +3274,7 @@ "SNOWFLAKE\n" "LngText.text" msgid "snowflake" -msgstr "" +msgstr "calóg" #. ❇ (U+02747), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3283,7 +3283,7 @@ "SPARKLE\n" "LngText.text" msgid "sparkle" -msgstr "" +msgstr "gealán" #. ❌ (U+0274C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3292,7 +3292,7 @@ "CROSS_MARK\n" "LngText.text" msgid "x2" -msgstr "" +msgstr "×2" #. ❎ (U+0274E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3301,7 +3301,7 @@ "NEGATIVE_SQUARED_CROSS_MARK\n" "LngText.text" msgid "x3" -msgstr "" +msgstr "×3" #. ❓ (U+02753), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3320,7 +3320,7 @@ "WHITE_QUESTION_MARK_ORNAMENT\n" "LngText.text" msgid "?2" -msgstr "" +msgstr "?2" #. ❕ (U+02755), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3339,7 +3339,7 @@ "HEAVY_EXCLAMATION_MARK_SYMBOL\n" "LngText.text" msgid "!2" -msgstr "" +msgstr "!2" #. ❤ (U+02764), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3348,7 +3348,7 @@ "HEAVY_BLACK_HEART\n" "LngText.text" msgid "heart" -msgstr "" +msgstr "croí" #. ➰ (U+027B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3357,7 +3357,7 @@ "CURLY_LOOP\n" "LngText.text" msgid "loop" -msgstr "" +msgstr "lúb" #. ➿ (U+027BF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3366,7 +3366,7 @@ "DOUBLE_CURLY_LOOP\n" "LngText.text" msgid "loop2" -msgstr "" +msgstr "lúb2" #. ⬛ (U+02B1B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3375,7 +3375,7 @@ "BLACK_LARGE_SQUARE\n" "LngText.text" msgid "large square2" -msgstr "" +msgstr "cearnóg mhór2" #. ⬜ (U+02B1C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3384,7 +3384,7 @@ "WHITE_LARGE_SQUARE\n" "LngText.text" msgid "large square" -msgstr "" +msgstr "cearnóg mhór" #. ⬟ (U+02B1F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3393,7 +3393,7 @@ "BLACK_PENTAGON\n" "LngText.text" msgid "pentagon2" -msgstr "" +msgstr "peinteagán2" #. ⬠ (U+02B20), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3402,7 +3402,7 @@ "WHITE_PENTAGON\n" "LngText.text" msgid "pentagon" -msgstr "" +msgstr "peinteagán" #. ⬡ (U+02B21), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3411,7 +3411,7 @@ "WHITE_HEXAGON\n" "LngText.text" msgid "hexagon" -msgstr "" +msgstr "heicseagán" #. ⬢ (U+02B22), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3420,7 +3420,7 @@ "BLACK_HEXAGON\n" "LngText.text" msgid "hexagon2" -msgstr "" +msgstr "heicseagán2" #. ⬤ (U+02B24), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3429,7 +3429,7 @@ "BLACK_LARGE_CIRCLE\n" "LngText.text" msgid "large circle2" -msgstr "" +msgstr "ciorcal mór2" #. ⬭ (U+02B2D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3438,7 +3438,7 @@ "WHITE_HORIZONTAL_ELLIPSE\n" "LngText.text" msgid "ellipse" -msgstr "" +msgstr "éilips" #. ⭐ (U+02B50), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3447,7 +3447,7 @@ "WHITE_MEDIUM_STAR\n" "LngText.text" msgid "medium star" -msgstr "" +msgstr "réalta leathmhór" #. ⭑ (U+02B51), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3456,7 +3456,7 @@ "BLACK_SMALL_STAR\n" "LngText.text" msgid "small star2" -msgstr "" +msgstr "réalta bheag2" #. ⭒ (U+02B52), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3465,7 +3465,7 @@ "WHITE_SMALL_STAR\n" "LngText.text" msgid "small star" -msgstr "" +msgstr "réalta bheag" #. ff (U+0FB00), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3474,7 +3474,7 @@ "LATIN_SMALL_LIGATURE_FF\n" "LngText.text" msgid "ff" -msgstr "" +msgstr "ff" #. fi (U+0FB01), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3483,7 +3483,7 @@ "LATIN_SMALL_LIGATURE_FI\n" "LngText.text" msgid "fi" -msgstr "" +msgstr "fi" #. fl (U+0FB02), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3492,7 +3492,7 @@ "LATIN_SMALL_LIGATURE_FL\n" "LngText.text" msgid "fl" -msgstr "" +msgstr "fl" #. ffi (U+0FB03), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3501,7 +3501,7 @@ "LATIN_SMALL_LIGATURE_FFI\n" "LngText.text" msgid "ffi" -msgstr "" +msgstr "ffi" #. ffl (U+0FB04), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3510,7 +3510,7 @@ "LATIN_SMALL_LIGATURE_FFL\n" "LngText.text" msgid "ffl" -msgstr "" +msgstr "ffl" #. 𝄞 (U+1D11E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3519,7 +3519,7 @@ "MUSICAL_SYMBOL_G_CLEF\n" "LngText.text" msgid "clef" -msgstr "" +msgstr "eochair" #. 𝄪 (U+1D12A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3528,7 +3528,7 @@ "MUSICAL_SYMBOL_DOUBLE_SHARP\n" "LngText.text" msgid "double sharp" -msgstr "" +msgstr "géar dúbailte" #. 𝄫 (U+1D12B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3537,7 +3537,7 @@ "MUSICAL_SYMBOL_DOUBLE_FLAT\n" "LngText.text" msgid "double flat" -msgstr "" +msgstr "maol dúbailte" #. 𝄻 (U+1D13B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3546,7 +3546,7 @@ "WHOLE_REST\n" "LngText.text" msgid "whole rest" -msgstr "" +msgstr "soschomhartha iomlán" #. 𝄼 (U+1D13C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3555,7 +3555,7 @@ "HALF_REST\n" "LngText.text" msgid "half rest" -msgstr "" +msgstr "leathshoschomhartha" #. 𝄽 (U+1D13D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3564,7 +3564,7 @@ "QUARTER_REST\n" "LngText.text" msgid "quarter rest" -msgstr "" +msgstr "ceathrú soschomhartha" #. 𝄾 (U+1D13E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3573,7 +3573,7 @@ "EIGHTH_REST\n" "LngText.text" msgid "eighth rest" -msgstr "" +msgstr "ochtú soschomhartha" #. 𝅝 (U+1D15D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3582,7 +3582,7 @@ "MUSICAL_SYMBOL_WHOLE_NOTE\n" "LngText.text" msgid "whole note" -msgstr "" +msgstr "nóta iomlán" #. 𝅗𝅥 (U+1D15E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3591,7 +3591,7 @@ "MUSICAL_SYMBOL_HALF_NOTE\n" "LngText.text" msgid "half note" -msgstr "" +msgstr "leathnóta" #. 𝅘𝅥 (U+1D15F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3600,7 +3600,7 @@ "MUSICAL_SYMBOL_QUARTER_NOTE\n" "LngText.text" msgid "quarter note" -msgstr "" +msgstr "ceathrú nóta" #. 𝅘𝅥𝅮 (U+1D160), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3609,7 +3609,7 @@ "MUSICAL_SYMBOL_EIGHTH_NOTE\n" "LngText.text" msgid "eighth note" -msgstr "" +msgstr "ochtú nóta" #. 𝅘𝅥𝅯 (U+1D161), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3618,7 +3618,7 @@ "MUSICAL_SYMBOL_SIXTEENTH_NOTE\n" "LngText.text" msgid "sixteenth note" -msgstr "" +msgstr "sédéagú nóta" #. 🀄 (U+1F004), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3627,7 +3627,7 @@ "MAHJONG_TILE_RED_DRAGON\n" "LngText.text" msgid "mahjong" -msgstr "" +msgstr "maj-jongg" #. 🁠 (U+1F060), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3636,7 +3636,7 @@ "DOMINO_TILE_HORIZONTAL-06-05\n" "LngText.text" msgid "domino" -msgstr "" +msgstr "dúradán" #. 🂡 (U+1F0A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3645,7 +3645,7 @@ "PLAYING_CARD_ACE_OF_SPADES\n" "LngText.text" msgid "ace" -msgstr "" +msgstr "aon" #. 🂫 (U+1F0AB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3654,7 +3654,7 @@ "PLAYING_CARD_JACK_OF_SPADES\n" "LngText.text" msgid "jack" -msgstr "" +msgstr "cuireata" #. 🂭 (U+1F0AD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3663,7 +3663,7 @@ "PLAYING_CARD_QUEEN_OF_SPADES\n" "LngText.text" msgid "queen" -msgstr "" +msgstr "banríon" #. 🂮 (U+1F0AE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3672,7 +3672,7 @@ "PLAYING_CARD_KING_OF_SPADES\n" "LngText.text" msgid "king" -msgstr "" +msgstr "rí" #. 🃏 (U+1F0CF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3681,7 +3681,7 @@ "PLAYING_CARD_BLACK_JOKER\n" "LngText.text" msgid "joker" -msgstr "" +msgstr "fear na gcrúb" #. 🌀 (U+1F300), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3690,7 +3690,7 @@ "CYCLONE\n" "LngText.text" msgid "cyclone" -msgstr "" +msgstr "cioclón" #. 🌁 (U+1F301), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3699,7 +3699,7 @@ "FOGGY\n" "LngText.text" msgid "fog" -msgstr "" +msgstr "ceo" #. 🌂 (U+1F302), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3708,7 +3708,7 @@ "CLOSED_UMBRELLA\n" "LngText.text" msgid "umbrella2" -msgstr "" +msgstr "scáth fearthainne2" #. 🌃 (U+1F303), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3717,7 +3717,7 @@ "NIGHT_WITH_STARS\n" "LngText.text" msgid "night" -msgstr "" +msgstr "oíche" #. 🌄 (U+1F304), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3726,7 +3726,7 @@ "SUNRISE_OVER_MOUNTAINS\n" "LngText.text" msgid "sunrise2" -msgstr "" +msgstr "éirí na gréine2" #. 🌅 (U+1F305), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3735,7 +3735,7 @@ "SUNRISE\n" "LngText.text" msgid "sunrise" -msgstr "" +msgstr "éirí na gréine" #. 🌆 (U+1F306), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3744,7 +3744,7 @@ "CITYSCAPE_AT_DUSK\n" "LngText.text" msgid "sunset" -msgstr "" +msgstr "dul faoi na gréine" #. 🌇 (U+1F307), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3753,7 +3753,7 @@ "SUNSET_OVER_BUILDINGS\n" "LngText.text" msgid "sunrise3" -msgstr "" +msgstr "éirí na gréine3" #. 🌈 (U+1F308), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3762,7 +3762,7 @@ "RAINBOW\n" "LngText.text" msgid "rainbow" -msgstr "" +msgstr "tuar ceatha" #. 🌉 (U+1F309), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3771,7 +3771,7 @@ "BRIDGE_AT_NIGHT\n" "LngText.text" msgid "bridge" -msgstr "" +msgstr "droichead" #. 🌊 (U+1F30A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3780,7 +3780,7 @@ "WATER_WAVE\n" "LngText.text" msgid "ocean" -msgstr "" +msgstr "aigéan" #. 🌋 (U+1F30B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3789,7 +3789,7 @@ "VOLCANO\n" "LngText.text" msgid "volcano" -msgstr "" +msgstr "bolcán" #. 🌌 (U+1F30C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3798,7 +3798,7 @@ "MILKY_WAY\n" "LngText.text" msgid "Milky way" -msgstr "" +msgstr "Bealach na Bó Finne" #. 🌍 (U+1F30D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3807,7 +3807,7 @@ "EARTH_GLOBE_EUROPE-AFRICA\n" "LngText.text" msgid "globe" -msgstr "" +msgstr "cruinneog" #. 🌎 (U+1F30E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3816,7 +3816,7 @@ "EARTH_GLOBE_AMERICAS\n" "LngText.text" msgid "globe2" -msgstr "" +msgstr "cruinneog2" #. 🌏 (U+1F30F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3825,7 +3825,7 @@ "EARTH_GLOBE_ASIA-AUSTRALIA\n" "LngText.text" msgid "globe3" -msgstr "" +msgstr "cruinneog3" #. 🌐 (U+1F310), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3834,7 +3834,7 @@ "GLOBE_WITH_MERIDIANS\n" "LngText.text" msgid "globe4" -msgstr "" +msgstr "cruinneog4" #. 🌑 (U+1F311), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3843,7 +3843,7 @@ "NEW_MOON_SYMBOL\n" "LngText.text" msgid "new moon" -msgstr "" +msgstr "gealach úr" #. 🌒 (U+1F312), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3852,7 +3852,7 @@ "WAXING_CRESCENT_MOON_SYMBOL\n" "LngText.text" msgid "waxing crescent moon" -msgstr "" +msgstr "gealach dheirceach ag líonadh" #. 🌓 (U+1F313), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3861,7 +3861,7 @@ "FIRST_QUARTER_MOON_SYMBOL\n" "LngText.text" msgid "first quarter" -msgstr "" +msgstr "gealach i mbéal ceathrún" #. 🌔 (U+1F314), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3870,7 +3870,7 @@ "WAXING_GIBBOUS_MOON_SYMBOL\n" "LngText.text" msgid "waxing gibbous moon" -msgstr "" +msgstr "gealach scothlán ag líonadh" #. 🌕 (U+1F315), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3879,7 +3879,7 @@ "FULL_MOON_SYMBOL\n" "LngText.text" msgid "full moon" -msgstr "" +msgstr "gealach lán" #. 🌖 (U+1F316), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3888,7 +3888,7 @@ "WANING_GIBBOUS_MOON_SYMBOL\n" "LngText.text" msgid "waning gibbous moon" -msgstr "" +msgstr "seanghealach scothlán" #. 🌗 (U+1F317), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3897,7 +3897,7 @@ "LAST_QUARTER_MOON_SYMBOL\n" "LngText.text" msgid "last quarter" -msgstr "" +msgstr "ceathrú dheireanach" #. 🌘 (U+1F318), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3906,7 +3906,7 @@ "WANING_CRESCENT_MOON_SYMBOL\n" "LngText.text" msgid "waning crescent moon" -msgstr "" +msgstr "seanghealach deirceach" #. 🌙 (U+1F319), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3915,7 +3915,7 @@ "CRESCENT_MOON\n" "LngText.text" msgid "crescent moon" -msgstr "" +msgstr "corrán gealaí" #. 🌚 (U+1F31A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3924,7 +3924,7 @@ "NEW_MOON_WITH_FACE\n" "LngText.text" msgid "new moon2" -msgstr "" +msgstr "gealach úr" #. 🌛 (U+1F31B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3933,7 +3933,7 @@ "FIRST_QUARTER_MOON_WITH_FACE\n" "LngText.text" msgid "moon" -msgstr "" +msgstr "gealach" #. 🌜 (U+1F31C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3942,7 +3942,7 @@ "LAST_QUARTER_MOON_WITH_FACE\n" "LngText.text" msgid "moon2" -msgstr "" +msgstr "gealach2" #. 🌝 (U+1F31D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3951,7 +3951,7 @@ "FULL_MOON_WITH_FACE\n" "LngText.text" msgid "full moon2" -msgstr "" +msgstr "gealach lán" #. 🌞 (U+1F31E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3960,7 +3960,7 @@ "SUN_WITH_FACE\n" "LngText.text" msgid "sun" -msgstr "" +msgstr "grian" #. 🌟 (U+1F31F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3969,7 +3969,7 @@ "GLOWING_STAR\n" "LngText.text" msgid "star3" -msgstr "" +msgstr "réalta3" #. 🌠 (U+1F320), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3978,7 +3978,7 @@ "SHOOTING_STAR\n" "LngText.text" msgid "star4" -msgstr "" +msgstr "réalta4" #. 🌰 (U+1F330), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3987,7 +3987,7 @@ "CHESTNUT\n" "LngText.text" msgid "chestnut" -msgstr "" +msgstr "cnó capaill" #. 🌱 (U+1F331), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -3996,7 +3996,7 @@ "SEEDLING\n" "LngText.text" msgid "seedling" -msgstr "" +msgstr "síológ" #. 🌲 (U+1F332), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4005,7 +4005,7 @@ "EVERGREEN_TREE\n" "LngText.text" msgid "pine" -msgstr "" +msgstr "giúis" #. 🌳 (U+1F333), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4014,7 +4014,7 @@ "DECIDUOUS_TREE\n" "LngText.text" msgid "tree" -msgstr "" +msgstr "crann" #. 🌴 (U+1F334), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4023,7 +4023,7 @@ "PALM_TREE\n" "LngText.text" msgid "palm" -msgstr "" +msgstr "pailm" #. 🌵 (U+1F335), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4032,7 +4032,7 @@ "CACTUS\n" "LngText.text" msgid "cactus" -msgstr "" +msgstr "cachtas" #. 🌷 (U+1F337), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4041,7 +4041,7 @@ "TULIP\n" "LngText.text" msgid "tulip" -msgstr "" +msgstr "tiúilip" #. 🌸 (U+1F338), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4050,7 +4050,7 @@ "CHERRY_BLOSSOM\n" "LngText.text" msgid "cherry blossom" -msgstr "" +msgstr "bláth crainn silíní" #. 🌹 (U+1F339), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4059,7 +4059,7 @@ "ROSE\n" "LngText.text" msgid "rose" -msgstr "" +msgstr "rós" #. 🌺 (U+1F33A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4068,7 +4068,7 @@ "HIBISCUS\n" "LngText.text" msgid "hibiscus" -msgstr "" +msgstr "hibiscus" #. 🌻 (U+1F33B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4077,7 +4077,7 @@ "SUNFLOWER\n" "LngText.text" msgid "sunflower" -msgstr "" +msgstr "lus na gréine" #. 🌼 (U+1F33C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4086,7 +4086,7 @@ "BLOSSOM\n" "LngText.text" msgid "blossom" -msgstr "" +msgstr "bláth" #. 🌽 (U+1F33D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4095,7 +4095,7 @@ "EAR_OF_MAIZE\n" "LngText.text" msgid "corn" -msgstr "" +msgstr "arbhar Indiach" #. 🌾 (U+1F33E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4104,7 +4104,7 @@ "EAR_OF_RICE\n" "LngText.text" msgid "grass" -msgstr "" +msgstr "féar" #. 🌿 (U+1F33F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4113,7 +4113,7 @@ "HERB\n" "LngText.text" msgid "herb" -msgstr "" +msgstr "luibh" #. 🍀 (U+1F340), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4122,7 +4122,7 @@ "FOUR_LEAF_CLOVER\n" "LngText.text" msgid "clover" -msgstr "" +msgstr "seamair" #. 🍁 (U+1F341), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4131,7 +4131,7 @@ "MAPLE_LEAF\n" "LngText.text" msgid "leaf" -msgstr "" +msgstr "duilleog" #. 🍂 (U+1F342), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4140,7 +4140,7 @@ "FALLEN_LEAF\n" "LngText.text" msgid "leaf2" -msgstr "" +msgstr "duilleog2" #. 🍃 (U+1F343), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4149,7 +4149,7 @@ "LEAF_FLUTTERING_IN_WIND\n" "LngText.text" msgid "leaf3" -msgstr "" +msgstr "duilleog3" #. 🍄 (U+1F344), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4158,7 +4158,7 @@ "MUSHROOM\n" "LngText.text" msgid "mushroom" -msgstr "" +msgstr "muisiriún" #. 🍅 (U+1F345), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4167,7 +4167,7 @@ "TOMATO\n" "LngText.text" msgid "tomato" -msgstr "" +msgstr "tráta" #. 🍆 (U+1F346), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4176,7 +4176,7 @@ "AUBERGINE\n" "LngText.text" msgid "eggplant" -msgstr "" +msgstr "ubhthoradh" #. 🍇 (U+1F347), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4185,7 +4185,7 @@ "GRAPES\n" "LngText.text" msgid "grapes" -msgstr "" +msgstr "fíonchaora" #. 🍈 (U+1F348), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4194,7 +4194,7 @@ "MELON\n" "LngText.text" msgid "melon" -msgstr "" +msgstr "mealbhacán" #. 🍉 (U+1F349), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4203,7 +4203,7 @@ "WATERMELON\n" "LngText.text" msgid "watermelon" -msgstr "" +msgstr "mealbhacán uisce" #. 🍊 (U+1F34A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4212,7 +4212,7 @@ "TANGERINE\n" "LngText.text" msgid "tangerine" -msgstr "" +msgstr "táinséirín" #. 🍋 (U+1F34B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4221,7 +4221,7 @@ "LEMON\n" "LngText.text" msgid "lemon" -msgstr "" +msgstr "líomóid" #. 🍌 (U+1F34C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4230,7 +4230,7 @@ "BANANA\n" "LngText.text" msgid "banana" -msgstr "" +msgstr "banana" #. 🍍 (U+1F34D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4239,7 +4239,7 @@ "PINEAPPLE\n" "LngText.text" msgid "pineapple" -msgstr "" +msgstr "anann" #. 🍎 (U+1F34E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4248,7 +4248,7 @@ "RED_APPLE\n" "LngText.text" msgid "apple" -msgstr "" +msgstr "úll" #. 🍏 (U+1F34F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4257,7 +4257,7 @@ "GREEN_APPLE\n" "LngText.text" msgid "green apple" -msgstr "" +msgstr "úll glas" #. 🍐 (U+1F350), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4266,7 +4266,7 @@ "PEAR\n" "LngText.text" msgid "pear" -msgstr "" +msgstr "piorra" #. 🍑 (U+1F351), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4275,7 +4275,7 @@ "PEACH\n" "LngText.text" msgid "peach" -msgstr "" +msgstr "péitseog" #. 🍒 (U+1F352), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4284,7 +4284,7 @@ "CHERRIES\n" "LngText.text" msgid "cherries" -msgstr "" +msgstr "silíní" #. 🍓 (U+1F353), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4293,7 +4293,7 @@ "STRAWBERRY\n" "LngText.text" msgid "strawberry" -msgstr "" +msgstr "sú talún" #. 🍔 (U+1F354), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4302,7 +4302,7 @@ "HAMBURGER\n" "LngText.text" msgid "hamburger" -msgstr "" +msgstr "burgar" #. 🍕 (U+1F355), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4311,7 +4311,7 @@ "SLICE_OF_PIZZA\n" "LngText.text" msgid "pizza" -msgstr "" +msgstr "píotsa" #. 🍖 (U+1F356), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4320,7 +4320,7 @@ "MEAT_ON_BONE\n" "LngText.text" msgid "meat" -msgstr "" +msgstr "feoil" #. 🍗 (U+1F357), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4329,7 +4329,7 @@ "POULTRY_LEG\n" "LngText.text" msgid "poultry leg" -msgstr "" +msgstr "cos éineola" #. 🍘 (U+1F358), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4338,7 +4338,7 @@ "RICE_CRACKER\n" "LngText.text" msgid "rice cracker" -msgstr "" +msgstr "craicear ríse" #. 🍙 (U+1F359), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4347,7 +4347,7 @@ "RICE_BALL\n" "LngText.text" msgid "rice ball" -msgstr "" +msgstr "meallóg ríse" #. 🍚 (U+1F35A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4356,7 +4356,7 @@ "COOKED_RICE\n" "LngText.text" msgid "rice" -msgstr "" +msgstr "rís" #. 🍛 (U+1F35B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4365,7 +4365,7 @@ "CURRY_AND_RICE\n" "LngText.text" msgid "curry" -msgstr "" +msgstr "curaí" #. 🍜 (U+1F35C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4374,7 +4374,7 @@ "STEAMING_BOWL\n" "LngText.text" msgid "ramen" -msgstr "" +msgstr "rāmen" #. 🍝 (U+1F35D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4383,7 +4383,7 @@ "SPAGHETTI\n" "LngText.text" msgid "spaghetti" -msgstr "" +msgstr "spaigití" #. 🍞 (U+1F35E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4392,7 +4392,7 @@ "BREAD\n" "LngText.text" msgid "bread" -msgstr "" +msgstr "arán" #. 🍟 (U+1F35F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4401,7 +4401,7 @@ "FRENCH_FRIES\n" "LngText.text" msgid "fries" -msgstr "" +msgstr "sceallóga" #. 🍠 (U+1F360), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4410,7 +4410,7 @@ "ROASTED_SWEET_POTATO\n" "LngText.text" msgid "sweet potato" -msgstr "" +msgstr "práta milis" #. 🍡 (U+1F361), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4419,7 +4419,7 @@ "DANGO\n" "LngText.text" msgid "dango" -msgstr "" +msgstr "dango" #. 🍢 (U+1F362), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4428,7 +4428,7 @@ "ODEN\n" "LngText.text" msgid "oden" -msgstr "" +msgstr "oden" #. 🍣 (U+1F363), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4437,7 +4437,7 @@ "SUSHI\n" "LngText.text" msgid "sushi" -msgstr "" +msgstr "sushi" #. 🍤 (U+1F364), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4446,7 +4446,7 @@ "FRIED_SHRIMP\n" "LngText.text" msgid "fried shrimp" -msgstr "" +msgstr "cloicheán friochta" #. 🍥 (U+1F365), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4455,7 +4455,7 @@ "FISH_CAKE_WITH_SWIRL_DESIGN\n" "LngText.text" msgid "fish cake" -msgstr "" +msgstr "cáca éisc" #. 🍦 (U+1F366), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4464,7 +4464,7 @@ "SOFT_ICE_CREAM\n" "LngText.text" msgid "icecream" -msgstr "" +msgstr "uachtar reoite" #. 🍧 (U+1F367), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4473,7 +4473,7 @@ "SHAVED_ICE\n" "LngText.text" msgid "shaved ice" -msgstr "" +msgstr "oighear bearrtha" #. 🍨 (U+1F368), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4482,7 +4482,7 @@ "ICE_CREAM\n" "LngText.text" msgid "ice cream" -msgstr "" +msgstr "uachtar reoite" #. 🍩 (U+1F369), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4491,7 +4491,7 @@ "DOUGHNUT\n" "LngText.text" msgid "doughnut" -msgstr "" +msgstr "taoschnó" #. 🍪 (U+1F36A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4500,7 +4500,7 @@ "COOKIE\n" "LngText.text" msgid "cookie" -msgstr "" +msgstr "briosca" #. 🍫 (U+1F36B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4509,7 +4509,7 @@ "CHOCOLATE_BAR\n" "LngText.text" msgid "chocolate" -msgstr "" +msgstr "seacláid" #. 🍬 (U+1F36C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4518,7 +4518,7 @@ "CANDY\n" "LngText.text" msgid "candy" -msgstr "" +msgstr "milseán" #. 🍭 (U+1F36D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4527,7 +4527,7 @@ "LOLLIPOP\n" "LngText.text" msgid "lollipop" -msgstr "" +msgstr "líreacán" #. 🍮 (U+1F36E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4536,7 +4536,7 @@ "CUSTARD\n" "LngText.text" msgid "custard" -msgstr "" +msgstr "custard" #. 🍯 (U+1F36F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4545,7 +4545,7 @@ "HONEY_POT\n" "LngText.text" msgid "honey" -msgstr "" +msgstr "mil" #. 🍰 (U+1F370), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4554,7 +4554,7 @@ "SHORTCAKE\n" "LngText.text" msgid "cake" -msgstr "" +msgstr "cáca" #. 🍱 (U+1F371), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4563,7 +4563,7 @@ "BENTO_BOX\n" "LngText.text" msgid "bento" -msgstr "" +msgstr "bento" #. 🍲 (U+1F372), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4572,7 +4572,7 @@ "POT_OF_FOOD\n" "LngText.text" msgid "stew" -msgstr "" +msgstr "stobhach" #. 🍳 (U+1F373), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4581,7 +4581,7 @@ "COOKING\n" "LngText.text" msgid "egg" -msgstr "" +msgstr "ubh" #. 🍴 (U+1F374), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4590,7 +4590,7 @@ "FORK_AND_KNIFE\n" "LngText.text" msgid "restaurant" -msgstr "" +msgstr "bialann" #. 🍵 (U+1F375), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4599,7 +4599,7 @@ "TEACUP_WITHOUT_HANDLE\n" "LngText.text" msgid "tea" -msgstr "" +msgstr "tae" #. 🍶 (U+1F376), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4608,7 +4608,7 @@ "SAKE_BOTTLE_AND_CUP\n" "LngText.text" msgid "sake" -msgstr "" +msgstr "sáicí" #. 🍷 (U+1F377), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4617,7 +4617,7 @@ "WINE_GLASS\n" "LngText.text" msgid "wine glass" -msgstr "" +msgstr "gloine fíona" #. 🍸 (U+1F378), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4626,7 +4626,7 @@ "COCKTAIL_GLASS\n" "LngText.text" msgid "cocktail" -msgstr "" +msgstr "manglam" #. 🍹 (U+1F379), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4635,7 +4635,7 @@ "TROPICAL_DRINK\n" "LngText.text" msgid "tropical drink" -msgstr "" +msgstr "deoch thrópaiceach" #. 🍺 (U+1F37A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4644,7 +4644,7 @@ "BEER_MUG\n" "LngText.text" msgid "beer" -msgstr "" +msgstr "beoir" #. 🍻 (U+1F37B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4653,7 +4653,7 @@ "CLINKING_BEER_MUGS\n" "LngText.text" msgid "beer2" -msgstr "" +msgstr "beoir2" #. 🍼 (U+1F37C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4662,7 +4662,7 @@ "BABY_BOTTLE\n" "LngText.text" msgid "baby bottle" -msgstr "" +msgstr "buidéal linbh" #. 🎀 (U+1F380), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4671,7 +4671,7 @@ "RIBBON\n" "LngText.text" msgid "ribbon" -msgstr "" +msgstr "ribín" #. 🎁 (U+1F381), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4680,7 +4680,7 @@ "WRAPPED_PRESENT\n" "LngText.text" msgid "gift" -msgstr "" +msgstr "bronntanas" #. 🎂 (U+1F382), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4689,7 +4689,7 @@ "BIRTHDAY_CAKE\n" "LngText.text" msgid "birthday" -msgstr "" +msgstr "lá breithe" #. 🎃 (U+1F383), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4698,7 +4698,7 @@ "JACK-O-LANTERN\n" "LngText.text" msgid "Halloween" -msgstr "" +msgstr "Oíche Shamhna" #. 🎄 (U+1F384), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4707,7 +4707,7 @@ "CHRISTMAS_TREE\n" "LngText.text" msgid "Christmas" -msgstr "" +msgstr "Nollaig" #. 🎅 (U+1F385), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4716,7 +4716,7 @@ "FATHER_CHRISTMAS\n" "LngText.text" msgid "Santa" -msgstr "" +msgstr "Daidí na Nollag" #. 🎆 (U+1F386), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4725,7 +4725,7 @@ "FIREWORKS\n" "LngText.text" msgid "fireworks" -msgstr "" +msgstr "tinte ealaíne" #. 🎇 (U+1F387), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4734,7 +4734,7 @@ "FIREWORK_SPARKLER\n" "LngText.text" msgid "sparkler" -msgstr "" +msgstr "spréachaire" #. 🎈 (U+1F388), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4743,7 +4743,7 @@ "BALLOON\n" "LngText.text" msgid "balloon" -msgstr "" +msgstr "balún" #. 🎉 (U+1F389), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4752,7 +4752,7 @@ "PARTY_POPPER\n" "LngText.text" msgid "party" -msgstr "" +msgstr "cóisir" #. 🎊 (U+1F38A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4761,7 +4761,7 @@ "CONFETTI_BALL\n" "LngText.text" msgid "confetti ball" -msgstr "" +msgstr "coinfití" #. 🎋 (U+1F38B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4770,7 +4770,7 @@ "TANABATA_TREE\n" "LngText.text" msgid "tanabata tree" -msgstr "" +msgstr "crann tanabata" #. 🎌 (U+1F38C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4779,7 +4779,7 @@ "CROSSED_FLAGS\n" "LngText.text" msgid "flags" -msgstr "" +msgstr "brataí" #. 🎍 (U+1F38D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4788,7 +4788,7 @@ "PINE_DECORATION\n" "LngText.text" msgid "bamboo" -msgstr "" +msgstr "bambú" #. 🎎 (U+1F38E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4797,7 +4797,7 @@ "JAPANESE_DOLLS\n" "LngText.text" msgid "dolls" -msgstr "" +msgstr "bábóga" #. 🎏 (U+1F38F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4806,7 +4806,7 @@ "CARP_STREAMER\n" "LngText.text" msgid "flags2" -msgstr "" +msgstr "brataí2" #. 🎐 (U+1F390), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4815,7 +4815,7 @@ "WIND_CHIME\n" "LngText.text" msgid "wind chime" -msgstr "" +msgstr "clogra gaoithe" #. 🎑 (U+1F391), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4824,7 +4824,7 @@ "MOON_VIEWING_CEREMONY\n" "LngText.text" msgid "rice scene" -msgstr "" +msgstr "tsúicímí" #. 🎒 (U+1F392), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4833,7 +4833,7 @@ "SCHOOL_SATCHEL\n" "LngText.text" msgid "school satchel" -msgstr "" +msgstr "mála scoile" #. 🎓 (U+1F393), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4842,7 +4842,7 @@ "GRADUATION_CAP\n" "LngText.text" msgid "graduation" -msgstr "" +msgstr "bronnadh céime" #. 🎠 (U+1F3A0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4851,7 +4851,7 @@ "CAROUSEL_HORSE\n" "LngText.text" msgid "carousel horse" -msgstr "" +msgstr "capall timpealláin spraoi" #. 🎡 (U+1F3A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4860,7 +4860,7 @@ "FERRIS_WHEEL\n" "LngText.text" msgid "ferris wheel" -msgstr "" +msgstr "roth Ferris" #. 🎢 (U+1F3A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4869,7 +4869,7 @@ "ROLLER_COASTER\n" "LngText.text" msgid "roller coaster" -msgstr "" +msgstr "cóstóir roithleáin" #. 🎣 (U+1F3A3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4878,7 +4878,7 @@ "FISHING_POLE_AND_FISH\n" "LngText.text" msgid "fishing" -msgstr "" +msgstr "iascaireacht" #. 🎤 (U+1F3A4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4887,7 +4887,7 @@ "MICROPHONE\n" "LngText.text" msgid "microphone" -msgstr "" +msgstr "micreafón" #. 🎥 (U+1F3A5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4896,7 +4896,7 @@ "MOVIE_CAMERA\n" "LngText.text" msgid "movie camera" -msgstr "" +msgstr "ceamara scannáin" #. 🎦 (U+1F3A6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4905,7 +4905,7 @@ "CINEMA\n" "LngText.text" msgid "cinema" -msgstr "" +msgstr "pictiúrlann" #. 🎧 (U+1F3A7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4914,7 +4914,7 @@ "HEADPHONE\n" "LngText.text" msgid "headphone" -msgstr "" +msgstr "cluasán" #. 🎨 (U+1F3A8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4923,7 +4923,7 @@ "ARTIST_PALETTE\n" "LngText.text" msgid "art" -msgstr "" +msgstr "ealaín" #. 🎩 (U+1F3A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4932,7 +4932,7 @@ "TOP_HAT\n" "LngText.text" msgid "top hat" -msgstr "" +msgstr "hata ard" #. 🎪 (U+1F3AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4941,7 +4941,7 @@ "CIRCUS_TENT\n" "LngText.text" msgid "circus tent" -msgstr "" +msgstr "ollphuball sorcais" #. 🎫 (U+1F3AB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4950,7 +4950,7 @@ "TICKET\n" "LngText.text" msgid "ticket" -msgstr "" +msgstr "ticéad" #. 🎬 (U+1F3AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4959,7 +4959,7 @@ "CLAPPER_BOARD\n" "LngText.text" msgid "clapper" -msgstr "" +msgstr "clabaire" #. 🎭 (U+1F3AD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4968,7 +4968,7 @@ "PERFORMING_ARTS\n" "LngText.text" msgid "theatre" -msgstr "" +msgstr "amharclann" #. 🎮 (U+1F3AE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4977,7 +4977,7 @@ "VIDEO_GAME\n" "LngText.text" msgid "video game" -msgstr "" +msgstr "físchluiche" #. 🎯 (U+1F3AF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4986,7 +4986,7 @@ "DIRECT_HIT\n" "LngText.text" msgid "hit" -msgstr "" +msgstr "buille" #. 🎰 (U+1F3B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -4995,7 +4995,7 @@ "SLOT_MACHINE\n" "LngText.text" msgid "slot machine" -msgstr "" +msgstr "meaisín sliotáin" #. 🎱 (U+1F3B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5004,7 +5004,7 @@ "BILLIARDS\n" "LngText.text" msgid "billiards" -msgstr "" +msgstr "billéardaí" #. 🎲 (U+1F3B2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5013,7 +5013,7 @@ "GAME_DIE\n" "LngText.text" msgid "dice" -msgstr "" +msgstr "dísle" #. 🎳 (U+1F3B3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5022,7 +5022,7 @@ "BOWLING\n" "LngText.text" msgid "bowling" -msgstr "" +msgstr "babhláil" #. 🎴 (U+1F3B4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5031,7 +5031,7 @@ "FLOWER_PLAYING_CARDS\n" "LngText.text" msgid "cards" -msgstr "" +msgstr "cártaí" #. 🎵 (U+1F3B5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5040,7 +5040,7 @@ "MUSICAL_NOTE\n" "LngText.text" msgid "music2" -msgstr "" +msgstr "ceol2" #. 🎶 (U+1F3B6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5049,7 +5049,7 @@ "MULTIPLE_MUSICAL_NOTES\n" "LngText.text" msgid "music" -msgstr "" +msgstr "ceol" #. 🎷 (U+1F3B7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5058,7 +5058,7 @@ "SAXOPHONE\n" "LngText.text" msgid "saxophone" -msgstr "" +msgstr "sacsafón" #. 🎸 (U+1F3B8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5067,7 +5067,7 @@ "GUITAR\n" "LngText.text" msgid "guitar" -msgstr "" +msgstr "giotár" #. 🎹 (U+1F3B9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5076,7 +5076,7 @@ "MUSICAL_KEYBOARD\n" "LngText.text" msgid "piano" -msgstr "" +msgstr "pianó" #. 🎺 (U+1F3BA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5085,7 +5085,7 @@ "TRUMPET\n" "LngText.text" msgid "trumpet" -msgstr "" +msgstr "trumpa" #. 🎻 (U+1F3BB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5094,7 +5094,7 @@ "VIOLIN\n" "LngText.text" msgid "violin" -msgstr "" +msgstr "veidhlín" #. 🎼 (U+1F3BC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5103,7 +5103,7 @@ "MUSICAL_SCORE\n" "LngText.text" msgid "score" -msgstr "" +msgstr "scór ceoil" #. 🎽 (U+1F3BD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5112,7 +5112,7 @@ "RUNNING_SHIRT_WITH_SASH\n" "LngText.text" msgid "shirt2" -msgstr "" +msgstr "léine2" #. 🎾 (U+1F3BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5121,7 +5121,7 @@ "TENNIS_RACQUET_AND_BALL\n" "LngText.text" msgid "tennis" -msgstr "" +msgstr "leadóg" #. 🎿 (U+1F3BF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5130,7 +5130,7 @@ "SKI_AND_SKI_BOOT\n" "LngText.text" msgid "ski" -msgstr "" +msgstr "scí" #. 🏀 (U+1F3C0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5139,7 +5139,7 @@ "BASKETBALL_AND_HOOP\n" "LngText.text" msgid "basketball" -msgstr "" +msgstr "cispheil" #. 🏁 (U+1F3C1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5148,7 +5148,7 @@ "CHEQUERED_FLAG\n" "LngText.text" msgid "flag3" -msgstr "" +msgstr "bratach3" #. 🏂 (U+1F3C2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5157,7 +5157,7 @@ "SNOWBOARDER\n" "LngText.text" msgid "snowboarder" -msgstr "" +msgstr "clársciálaí" #. 🏃 (U+1F3C3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5166,7 +5166,7 @@ "RUNNER\n" "LngText.text" msgid "runner" -msgstr "" +msgstr "reathaí" #. 🏄 (U+1F3C4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5175,7 +5175,7 @@ "SURFER\n" "LngText.text" msgid "surfer" -msgstr "" +msgstr "surfálaí" #. 🏆 (U+1F3C6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5184,7 +5184,7 @@ "TROPHY\n" "LngText.text" msgid "trophy" -msgstr "" +msgstr "trófaí" #. 🏇 (U+1F3C7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5193,7 +5193,7 @@ "HORSE_RACING\n" "LngText.text" msgid "horse racing" -msgstr "" +msgstr "rásaíocht chapall" #. 🏈 (U+1F3C8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5202,7 +5202,7 @@ "AMERICAN_FOOTBALL\n" "LngText.text" msgid "football" -msgstr "" +msgstr "peil Mheiriceánach" #. 🏉 (U+1F3C9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5211,7 +5211,7 @@ "RUGBY_FOOTBALL\n" "LngText.text" msgid "rugby football" -msgstr "" +msgstr "rugbaí" #. 🏊 (U+1F3CA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5220,7 +5220,7 @@ "SWIMMER\n" "LngText.text" msgid "swimmer" -msgstr "" +msgstr "snámhóir" #. 🏠 (U+1F3E0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5229,7 +5229,7 @@ "HOUSE_BUILDING\n" "LngText.text" msgid "house" -msgstr "" +msgstr "teach" #. 🏡 (U+1F3E1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5238,7 +5238,7 @@ "HOUSE_WITH_GARDEN\n" "LngText.text" msgid "house2" -msgstr "" +msgstr "teach2" #. 🏢 (U+1F3E2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5247,7 +5247,7 @@ "OFFICE_BUILDING\n" "LngText.text" msgid "office" -msgstr "" +msgstr "oifig" #. 🏣 (U+1F3E3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5256,7 +5256,7 @@ "JAPANESE_POST_OFFICE\n" "LngText.text" msgid "post office2" -msgstr "" +msgstr "oifig an phoist2" #. 🏤 (U+1F3E4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5265,7 +5265,7 @@ "EUROPEAN_POST_OFFICE\n" "LngText.text" msgid "post office" -msgstr "" +msgstr "oifig an phoist" #. 🏥 (U+1F3E5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5274,7 +5274,7 @@ "HOSPITAL\n" "LngText.text" msgid "hospital" -msgstr "" +msgstr "ospidéal" #. 🏦 (U+1F3E6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5283,7 +5283,7 @@ "BANK\n" "LngText.text" msgid "bank" -msgstr "" +msgstr "banc" #. 🏧 (U+1F3E7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5292,7 +5292,7 @@ "AUTOMATED_TELLER_MACHINE\n" "LngText.text" msgid "atm" -msgstr "" +msgstr "meaisín bainc" #. 🏨 (U+1F3E8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5301,7 +5301,7 @@ "HOTEL\n" "LngText.text" msgid "hotel" -msgstr "" +msgstr "óstán" #. 🏩 (U+1F3E9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5310,7 +5310,7 @@ "LOVE_HOTEL\n" "LngText.text" msgid "hotel2" -msgstr "" +msgstr "óstán2" #. 🏪 (U+1F3EA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5319,7 +5319,7 @@ "CONVENIENCE_STORE\n" "LngText.text" msgid "store" -msgstr "" +msgstr "siopa" #. 🏫 (U+1F3EB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5328,7 +5328,7 @@ "SCHOOL\n" "LngText.text" msgid "school" -msgstr "" +msgstr "scoil" #. 🏬 (U+1F3EC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5337,7 +5337,7 @@ "DEPARTMENT_STORE\n" "LngText.text" msgid "store2" -msgstr "" +msgstr "siopa2" #. 🏭 (U+1F3ED), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5346,7 +5346,7 @@ "FACTORY\n" "LngText.text" msgid "factory" -msgstr "" +msgstr "monarcha" #. 🏮 (U+1F3EE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5355,7 +5355,7 @@ "IZAKAYA_LANTERN\n" "LngText.text" msgid "lantern" -msgstr "" +msgstr "lóchrann" #. 🏯 (U+1F3EF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5364,7 +5364,7 @@ "JAPANESE_CASTLE\n" "LngText.text" msgid "castle2" -msgstr "" +msgstr "caisleán2" #. 🏰 (U+1F3F0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5373,7 +5373,7 @@ "EUROPEAN_CASTLE\n" "LngText.text" msgid "castle" -msgstr "" +msgstr "caisleán" #. 🐀 (U+1F400), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5382,7 +5382,7 @@ "RAT\n" "LngText.text" msgid "rat" -msgstr "" +msgstr "francach" #. 🐁 (U+1F401), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5391,7 +5391,7 @@ "MOUSE\n" "LngText.text" msgid "mouse" -msgstr "" +msgstr "luch" #. 🐂 (U+1F402), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5400,7 +5400,7 @@ "OX\n" "LngText.text" msgid "ox" -msgstr "" +msgstr "damh" #. 🐃 (U+1F403), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5409,7 +5409,7 @@ "WATER_BUFFALO\n" "LngText.text" msgid "water buffalo" -msgstr "" +msgstr "buabhall uisce" #. 🐄 (U+1F404), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5418,7 +5418,7 @@ "COW\n" "LngText.text" msgid "cow" -msgstr "" +msgstr "bó" #. 🐅 (U+1F405), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5427,7 +5427,7 @@ "TIGER\n" "LngText.text" msgid "tiger" -msgstr "" +msgstr "tíogar" #. 🐆 (U+1F406), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5436,7 +5436,7 @@ "LEOPARD\n" "LngText.text" msgid "leopard" -msgstr "" +msgstr "liopard" #. 🐇 (U+1F407), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5445,7 +5445,7 @@ "RABBIT\n" "LngText.text" msgid "rabbit" -msgstr "" +msgstr "coinín" #. 🐈 (U+1F408), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5454,7 +5454,7 @@ "CAT\n" "LngText.text" msgid "cat" -msgstr "" +msgstr "cat" #. 🐉 (U+1F409), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5463,7 +5463,7 @@ "DRAGON\n" "LngText.text" msgid "dragon" -msgstr "" +msgstr "dragan" #. 🐊 (U+1F40A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5472,7 +5472,7 @@ "CROCODILE\n" "LngText.text" msgid "crocodile" -msgstr "" +msgstr "crogall" #. 🐋 (U+1F40B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5481,7 +5481,7 @@ "WHALE\n" "LngText.text" msgid "whale2" -msgstr "" +msgstr "míol mór2" #. 🐌 (U+1F40C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5490,7 +5490,7 @@ "SNAIL\n" "LngText.text" msgid "snail" -msgstr "" +msgstr "seilide" #. 🐍 (U+1F40D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5499,7 +5499,7 @@ "SNAKE\n" "LngText.text" msgid "snake" -msgstr "" +msgstr "nathair" #. 🐎 (U+1F40E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5508,7 +5508,7 @@ "HORSE\n" "LngText.text" msgid "horse" -msgstr "" +msgstr "capall" #. 🐏 (U+1F40F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5517,7 +5517,7 @@ "RAM\n" "LngText.text" msgid "ram" -msgstr "" +msgstr "reithe" #. 🐐 (U+1F410), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5526,7 +5526,7 @@ "GOAT\n" "LngText.text" msgid "goat" -msgstr "" +msgstr "gabhar" #. 🐑 (U+1F411), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5535,7 +5535,7 @@ "SHEEP\n" "LngText.text" msgid "sheep" -msgstr "" +msgstr "caora" #. 🐒 (U+1F412), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5544,7 +5544,7 @@ "MONKEY\n" "LngText.text" msgid "monkey" -msgstr "" +msgstr "moncaí" #. 🐓 (U+1F413), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5553,7 +5553,7 @@ "ROOSTER\n" "LngText.text" msgid "rooster" -msgstr "" +msgstr "coileach" #. 🐔 (U+1F414), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5562,7 +5562,7 @@ "CHICKEN\n" "LngText.text" msgid "chicken" -msgstr "" +msgstr "sicín" #. 🐕 (U+1F415), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5571,7 +5571,7 @@ "DOG\n" "LngText.text" msgid "dog" -msgstr "" +msgstr "madra" #. 🐖 (U+1F416), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5580,7 +5580,7 @@ "PIG\n" "LngText.text" msgid "pig" -msgstr "" +msgstr "muc" #. 🐗 (U+1F417), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5589,7 +5589,7 @@ "BOAR\n" "LngText.text" msgid "boar" -msgstr "" +msgstr "collach" #. 🐘 (U+1F418), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5598,7 +5598,7 @@ "ELEPHANT\n" "LngText.text" msgid "elephant" -msgstr "" +msgstr "eilifint" #. 🐙 (U+1F419), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5607,7 +5607,7 @@ "OCTOPUS\n" "LngText.text" msgid "octopus" -msgstr "" +msgstr "ochtapas" #. 🐚 (U+1F41A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5616,7 +5616,7 @@ "SPIRAL_SHELL\n" "LngText.text" msgid "shell" -msgstr "" +msgstr "blaosc" #. 🐛 (U+1F41B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5625,7 +5625,7 @@ "BUG\n" "LngText.text" msgid "bug" -msgstr "" +msgstr "feithid" #. 🐜 (U+1F41C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5634,7 +5634,7 @@ "ANT\n" "LngText.text" msgid "ant" -msgstr "" +msgstr "seangán" #. 🐝 (U+1F41D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5643,7 +5643,7 @@ "HONEYBEE\n" "LngText.text" msgid "bee" -msgstr "" +msgstr "beach" #. 🐞 (U+1F41E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5652,7 +5652,7 @@ "LADY_BEETLE\n" "LngText.text" msgid "ladybug" -msgstr "" +msgstr "bóín Dé" #. 🐟 (U+1F41F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5661,7 +5661,7 @@ "FISH\n" "LngText.text" msgid "fish" -msgstr "" +msgstr "iasc" #. 🐠 (U+1F420), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5670,7 +5670,7 @@ "TROPICAL_FISH\n" "LngText.text" msgid "fish2" -msgstr "" +msgstr "iasc2" #. 🐡 (U+1F421), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5679,7 +5679,7 @@ "BLOWFISH\n" "LngText.text" msgid "fish3" -msgstr "" +msgstr "iasc3" #. 🐢 (U+1F422), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5688,7 +5688,7 @@ "TURTLE\n" "LngText.text" msgid "turtle" -msgstr "" +msgstr "turtar" #. 🐣 (U+1F423), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5697,7 +5697,7 @@ "HATCHING_CHICK\n" "LngText.text" msgid "chick" -msgstr "" +msgstr "sicín clúmhach" #. 🐤 (U+1F424), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5706,7 +5706,7 @@ "BABY_CHICK\n" "LngText.text" msgid "chick2" -msgstr "" +msgstr "sicín clúmhach2" #. 🐥 (U+1F425), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5715,7 +5715,7 @@ "FRONT-FACING_BABY_CHICK\n" "LngText.text" msgid "chick3" -msgstr "" +msgstr "sicín clúmhach3" #. 🐦 (U+1F426), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5724,7 +5724,7 @@ "BIRD\n" "LngText.text" msgid "bird" -msgstr "" +msgstr "éan" #. 🐧 (U+1F427), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5733,7 +5733,7 @@ "PENGUIN\n" "LngText.text" msgid "penguin" -msgstr "" +msgstr "piongain" #. 🐨 (U+1F428), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5742,7 +5742,7 @@ "KOALA\n" "LngText.text" msgid "koala" -msgstr "" +msgstr "cóála" #. 🐩 (U+1F429), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5751,7 +5751,7 @@ "POODLE\n" "LngText.text" msgid "poodle" -msgstr "" +msgstr "púdal" #. 🐪 (U+1F42A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5760,7 +5760,7 @@ "DROMEDARY_CAMEL\n" "LngText.text" msgid "camel" -msgstr "" +msgstr "camall" #. 🐫 (U+1F42B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5769,7 +5769,7 @@ "BACTRIAN_CAMEL\n" "LngText.text" msgid "camel2" -msgstr "" +msgstr "camall2" #. 🐬 (U+1F42C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5778,7 +5778,7 @@ "DOLPHIN\n" "LngText.text" msgid "dolphin" -msgstr "" +msgstr "deilf" #. 🐭 (U+1F42D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5787,7 +5787,7 @@ "MOUSE_FACE\n" "LngText.text" msgid "mouse2" -msgstr "" +msgstr "luch2" #. 🐮 (U+1F42E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5796,7 +5796,7 @@ "COW_FACE\n" "LngText.text" msgid "cow2" -msgstr "" +msgstr "bó2" #. 🐯 (U+1F42F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5805,7 +5805,7 @@ "TIGER_FACE\n" "LngText.text" msgid "tiger2" -msgstr "" +msgstr "tíogar2" #. 🐰 (U+1F430), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5814,7 +5814,7 @@ "RABBIT_FACE\n" "LngText.text" msgid "rabbit2" -msgstr "" +msgstr "coinín2" #. 🐱 (U+1F431), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5823,7 +5823,7 @@ "CAT_FACE\n" "LngText.text" msgid "cat2" -msgstr "" +msgstr "cat2" #. 🐲 (U+1F432), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5832,7 +5832,7 @@ "DRAGON_FACE\n" "LngText.text" msgid "dragon2" -msgstr "" +msgstr "dragan2" #. 🐳 (U+1F433), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5841,7 +5841,7 @@ "SPOUTING_WHALE\n" "LngText.text" msgid "whale" -msgstr "" +msgstr "míol mór" #. 🐴 (U+1F434), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5850,7 +5850,7 @@ "HORSE_FACE\n" "LngText.text" msgid "horse2" -msgstr "" +msgstr "capall2" #. 🐵 (U+1F435), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5859,7 +5859,7 @@ "MONKEY_FACE\n" "LngText.text" msgid "monkey2" -msgstr "" +msgstr "moncaí2" #. 🐶 (U+1F436), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5868,7 +5868,7 @@ "DOG_FACE\n" "LngText.text" msgid "dog2" -msgstr "" +msgstr "madra2" #. 🐷 (U+1F437), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5877,7 +5877,7 @@ "PIG_FACE\n" "LngText.text" msgid "pig2" -msgstr "" +msgstr "muc2" #. 🐸 (U+1F438), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5886,7 +5886,7 @@ "FROG_FACE\n" "LngText.text" msgid "frog" -msgstr "" +msgstr "frog" #. 🐹 (U+1F439), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5895,7 +5895,7 @@ "HAMSTER_FACE\n" "LngText.text" msgid "hamster" -msgstr "" +msgstr "hamstar" #. 🐺 (U+1F43A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5904,7 +5904,7 @@ "WOLF_FACE\n" "LngText.text" msgid "wolf" -msgstr "" +msgstr "mac tíre" #. 🐻 (U+1F43B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5913,7 +5913,7 @@ "BEAR_FACE\n" "LngText.text" msgid "bear" -msgstr "" +msgstr "béar" #. 🐼 (U+1F43C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5922,7 +5922,7 @@ "PANDA_FACE\n" "LngText.text" msgid "panda" -msgstr "" +msgstr "panda" #. 🐽 (U+1F43D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5931,7 +5931,7 @@ "PIG_NOSE\n" "LngText.text" msgid "pig nose" -msgstr "" +msgstr "srón muice" #. 🐾 (U+1F43E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5940,7 +5940,7 @@ "PAW_PRINTS\n" "LngText.text" msgid "feet" -msgstr "" +msgstr "cosa" #. 👀 (U+1F440), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5949,7 +5949,7 @@ "EYES\n" "LngText.text" msgid "eyes" -msgstr "" +msgstr "súile" #. 👂 (U+1F442), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5958,7 +5958,7 @@ "EAR\n" "LngText.text" msgid "ear" -msgstr "" +msgstr "cluas" #. 👃 (U+1F443), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5967,7 +5967,7 @@ "NOSE\n" "LngText.text" msgid "nose" -msgstr "" +msgstr "srón" #. 👄 (U+1F444), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5976,7 +5976,7 @@ "MOUTH\n" "LngText.text" msgid "mouth" -msgstr "" +msgstr "béal" #. 👅 (U+1F445), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5985,7 +5985,7 @@ "TONGUE\n" "LngText.text" msgid "tongue" -msgstr "" +msgstr "teanga" #. 👆 (U+1F446), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -5994,7 +5994,7 @@ "WHITE_UP_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "up2" -msgstr "" +msgstr "suas2" #. 👇 (U+1F447), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6003,7 +6003,7 @@ "WHITE_DOWN_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "down2" -msgstr "" +msgstr "síos2" #. 👈 (U+1F448), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6012,7 +6012,7 @@ "WHITE_LEFT_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "left2" -msgstr "" +msgstr "ar-chlé2" #. 👉 (U+1F449), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6021,7 +6021,7 @@ "WHITE_RIGHT_POINTING_BACKHAND_INDEX\n" "LngText.text" msgid "right2" -msgstr "" +msgstr "ar-dheis2" #. 👊 (U+1F44A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6030,7 +6030,7 @@ "FISTED_HAND_SIGN\n" "LngText.text" msgid "fist2" -msgstr "" +msgstr "dorn2" #. 👋 (U+1F44B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6039,7 +6039,7 @@ "WAVING_HAND_SIGN\n" "LngText.text" msgid "wave" -msgstr "" +msgstr "tonn" #. 👌 (U+1F44C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6048,7 +6048,7 @@ "OK_HAND_SIGN\n" "LngText.text" msgid "ok" -msgstr "" +msgstr "ceart go leor" #. 👍 (U+1F44D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6057,7 +6057,7 @@ "THUMBS_UP_SIGN\n" "LngText.text" msgid "yes" -msgstr "" +msgstr "tá" #. 👎 (U+1F44E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6066,7 +6066,7 @@ "THUMBS_DOWN_SIGN\n" "LngText.text" msgid "no" -msgstr "" +msgstr "níl" #. 👏 (U+1F44F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6075,7 +6075,7 @@ "CLAPPING_HANDS_SIGN\n" "LngText.text" msgid "clap" -msgstr "" +msgstr "bualadh bos" #. 👐 (U+1F450), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6084,7 +6084,7 @@ "OPEN_HANDS_SIGN\n" "LngText.text" msgid "open hands" -msgstr "" +msgstr "lámha oscailte" #. 👑 (U+1F451), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6093,7 +6093,7 @@ "CROWN\n" "LngText.text" msgid "crown" -msgstr "" +msgstr "coróin" #. 👒 (U+1F452), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6102,7 +6102,7 @@ "WOMANS_HAT\n" "LngText.text" msgid "hat" -msgstr "" +msgstr "hata" #. 👓 (U+1F453), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6111,7 +6111,7 @@ "EYEGLASSES\n" "LngText.text" msgid "eyeglasses" -msgstr "" +msgstr "spéaclaí" #. 👔 (U+1F454), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6120,7 +6120,7 @@ "NECKTIE\n" "LngText.text" msgid "necktie" -msgstr "" +msgstr "carbhat" #. 👕 (U+1F455), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6129,7 +6129,7 @@ "T-SHIRT\n" "LngText.text" msgid "shirt" -msgstr "" +msgstr "léine" #. 👖 (U+1F456), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6138,7 +6138,7 @@ "JEANS\n" "LngText.text" msgid "jeans" -msgstr "" +msgstr "jíons" #. 👗 (U+1F457), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6147,7 +6147,7 @@ "DRESS\n" "LngText.text" msgid "dress" -msgstr "" +msgstr "gúna" #. 👘 (U+1F458), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6156,7 +6156,7 @@ "KIMONO\n" "LngText.text" msgid "kimono" -msgstr "" +msgstr "cimeonó" #. 👙 (U+1F459), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6165,7 +6165,7 @@ "BIKINI\n" "LngText.text" msgid "bikini" -msgstr "" +msgstr "bicíní" #. 👚 (U+1F45A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6174,7 +6174,7 @@ "WOMANS_CLOTHES\n" "LngText.text" msgid "clothes" -msgstr "" +msgstr "éadaí" #. 👛 (U+1F45B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6183,7 +6183,7 @@ "PURSE\n" "LngText.text" msgid "purse" -msgstr "" +msgstr "sparán" #. 👜 (U+1F45C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6192,7 +6192,7 @@ "HANDBAG\n" "LngText.text" msgid "handbag" -msgstr "" +msgstr "mála láimhe" #. 👝 (U+1F45D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6201,7 +6201,7 @@ "POUCH\n" "LngText.text" msgid "pouch" -msgstr "" +msgstr "púitse" #. 👞 (U+1F45E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6210,7 +6210,7 @@ "MANS_SHOE\n" "LngText.text" msgid "shoe" -msgstr "" +msgstr "bróg" #. 👟 (U+1F45F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6219,7 +6219,7 @@ "ATHLETIC_SHOE\n" "LngText.text" msgid "shoe2" -msgstr "" +msgstr "bróg2" #. 👠 (U+1F460), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6228,7 +6228,7 @@ "HIGH-HEELED_SHOE\n" "LngText.text" msgid "shoe3" -msgstr "" +msgstr "bróg3" #. 👡 (U+1F461), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6237,7 +6237,7 @@ "WOMANS_SANDAL\n" "LngText.text" msgid "sandal" -msgstr "" +msgstr "cuarán" #. 👢 (U+1F462), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6246,7 +6246,7 @@ "WOMANS_BOOTS\n" "LngText.text" msgid "boot" -msgstr "" +msgstr "buatais" #. 👣 (U+1F463), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6255,7 +6255,7 @@ "FOOTPRINTS\n" "LngText.text" msgid "footprints" -msgstr "" +msgstr "loirg choise" #. 👤 (U+1F464), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6264,7 +6264,7 @@ "BUST_IN_SILHOUETTE\n" "LngText.text" msgid "bust" -msgstr "" +msgstr "bráid" #. 👥 (U+1F465), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6273,7 +6273,7 @@ "BUSTS_IN_SILHOUETTE\n" "LngText.text" msgid "busts" -msgstr "" +msgstr "bráide" #. 👦 (U+1F466), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6282,7 +6282,7 @@ "BOY\n" "LngText.text" msgid "boy" -msgstr "" +msgstr "buachaill" #. 👧 (U+1F467), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6291,7 +6291,7 @@ "GIRL\n" "LngText.text" msgid "girl" -msgstr "" +msgstr "cailín" #. 👨 (U+1F468), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6300,7 +6300,7 @@ "MAN\n" "LngText.text" msgid "man" -msgstr "" +msgstr "fear" #. 👩 (U+1F469), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6309,7 +6309,7 @@ "WOMAN\n" "LngText.text" msgid "woman" -msgstr "" +msgstr "bean" #. 👪 (U+1F46A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6318,7 +6318,7 @@ "FAMILY\n" "LngText.text" msgid "family" -msgstr "" +msgstr "clann" #. 👫 (U+1F46B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6327,7 +6327,7 @@ "MAN_AND_WOMAN_HOLDING_HANDS\n" "LngText.text" msgid "couple" -msgstr "" +msgstr "cúpla" #. 👬 (U+1F46C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6336,7 +6336,7 @@ "TWO_MEN_HOLDING_HANDS\n" "LngText.text" msgid "couple2" -msgstr "" +msgstr "cúpla2" #. 👭 (U+1F46D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6345,7 +6345,7 @@ "TWO_WOMEN_HOLDING_HANDS\n" "LngText.text" msgid "couple3" -msgstr "" +msgstr "cúpla3" #. 👮 (U+1F46E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6354,7 +6354,7 @@ "POLICE_OFFICER\n" "LngText.text" msgid "cop" -msgstr "" +msgstr "garda" #. 👯 (U+1F46F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6363,7 +6363,7 @@ "WOMAN_WITH_BUNNY_EARS\n" "LngText.text" msgid "bunny ears" -msgstr "" +msgstr "cluasa coinín" #. 👰 (U+1F470), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6372,7 +6372,7 @@ "BRIDE_WITH_VEIL\n" "LngText.text" msgid "bride" -msgstr "" +msgstr "brídeach" #. 👱 (U+1F471), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6381,7 +6381,7 @@ "PERSON_WITH_BLOND_HAIR\n" "LngText.text" msgid "blond hair" -msgstr "" +msgstr "gruaig fhionn" #. 👲 (U+1F472), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6390,7 +6390,7 @@ "MAN_WITH_GUA_PI_MAO\n" "LngText.text" msgid "hat2" -msgstr "" +msgstr "hata2" #. 👳 (U+1F473), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6399,7 +6399,7 @@ "MAN_WITH_TURBAN\n" "LngText.text" msgid "turban" -msgstr "" +msgstr "turban" #. 👴 (U+1F474), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6408,7 +6408,7 @@ "OLDER_MAN\n" "LngText.text" msgid "older man" -msgstr "" +msgstr "fear scothaosta" #. 👵 (U+1F475), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6417,7 +6417,7 @@ "OLDER_WOMAN\n" "LngText.text" msgid "older woman" -msgstr "" +msgstr "bean scothaosta" #. 👶 (U+1F476), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6426,7 +6426,7 @@ "BABY\n" "LngText.text" msgid "baby" -msgstr "" +msgstr "leanbh" #. 👷 (U+1F477), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6435,7 +6435,7 @@ "CONSTRUCTION_WORKER\n" "LngText.text" msgid "worker" -msgstr "" +msgstr "oibrí" #. 👸 (U+1F478), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6444,7 +6444,7 @@ "PRINCESS\n" "LngText.text" msgid "princess" -msgstr "" +msgstr "banphrionsa" #. 👹 (U+1F479), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6453,7 +6453,7 @@ "JAPANESE_OGRE\n" "LngText.text" msgid "ogre" -msgstr "" +msgstr "gruagach" #. 👺 (U+1F47A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6462,7 +6462,7 @@ "JAPANESE_GOBLIN\n" "LngText.text" msgid "goblin" -msgstr "" +msgstr "bocánach" #. 👻 (U+1F47B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6471,7 +6471,7 @@ "GHOST\n" "LngText.text" msgid "ghost" -msgstr "" +msgstr "taibhse" #. 👼 (U+1F47C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6480,7 +6480,7 @@ "BABY_ANGEL\n" "LngText.text" msgid "angel" -msgstr "" +msgstr "aingeal" #. 👽 (U+1F47D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6489,7 +6489,7 @@ "EXTRATERRESTRIAL_ALIEN\n" "LngText.text" msgid "alien" -msgstr "" +msgstr "eachtrán" #. 👾 (U+1F47E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6498,7 +6498,7 @@ "ALIEN_MONSTER\n" "LngText.text" msgid "alien2" -msgstr "" +msgstr "eachtrán2" #. 👿 (U+1F47F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6507,7 +6507,7 @@ "IMP\n" "LngText.text" msgid "imp" -msgstr "" +msgstr "diaibhlín" #. 💀 (U+1F480), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6516,7 +6516,7 @@ "SKULL\n" "LngText.text" msgid "skull" -msgstr "" +msgstr "blaosc" #. 💁 (U+1F481), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6525,7 +6525,7 @@ "INFORMATION_DESK_PERSON\n" "LngText.text" msgid "information2" -msgstr "" +msgstr "eolas2" #. 💂 (U+1F482), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6534,7 +6534,7 @@ "GUARDSMAN\n" "LngText.text" msgid "guard" -msgstr "" +msgstr "garda" #. 💃 (U+1F483), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6543,7 +6543,7 @@ "DANCER\n" "LngText.text" msgid "dancer" -msgstr "" +msgstr "damhsóir" #. 💄 (U+1F484), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6552,7 +6552,7 @@ "LIPSTICK\n" "LngText.text" msgid "lipstick" -msgstr "" +msgstr "béaldath" #. 💅 (U+1F485), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6561,7 +6561,7 @@ "NAIL_POLISH\n" "LngText.text" msgid "nail care" -msgstr "" +msgstr "cúram ingne" #. 💆 (U+1F486), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6570,7 +6570,7 @@ "FACE_MASSAGE\n" "LngText.text" msgid "massage" -msgstr "" +msgstr "suathaireacht" #. 💇 (U+1F487), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6579,7 +6579,7 @@ "HAIRCUT\n" "LngText.text" msgid "haircut" -msgstr "" +msgstr "bearradh gruaige" #. 💈 (U+1F488), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6588,7 +6588,7 @@ "BARBER_POLE\n" "LngText.text" msgid "barber" -msgstr "" +msgstr "bearbóir" #. 💉 (U+1F489), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6597,7 +6597,7 @@ "SYRINGE\n" "LngText.text" msgid "syringe" -msgstr "" +msgstr "steallaire" #. 💊 (U+1F48A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6606,7 +6606,7 @@ "PILL\n" "LngText.text" msgid "pill" -msgstr "" +msgstr "piolla" #. 💋 (U+1F48B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6615,7 +6615,7 @@ "KISS_MARK\n" "LngText.text" msgid "kiss mark" -msgstr "" +msgstr "póg" #. 💌 (U+1F48C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6624,7 +6624,7 @@ "LOVE_LETTER\n" "LngText.text" msgid "love letter" -msgstr "" +msgstr "litir ghrá" #. 💍 (U+1F48D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6633,7 +6633,7 @@ "RING\n" "LngText.text" msgid "ring" -msgstr "" +msgstr "fáinne" #. 💎 (U+1F48E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6642,7 +6642,7 @@ "GEM_STONE\n" "LngText.text" msgid "gem" -msgstr "" +msgstr "seoid" #. 💏 (U+1F48F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6651,7 +6651,7 @@ "KISS\n" "LngText.text" msgid "kiss" -msgstr "" +msgstr "póg" #. 💐 (U+1F490), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6660,7 +6660,7 @@ "BOUQUET\n" "LngText.text" msgid "bouquet" -msgstr "" +msgstr "crobhaing" #. 💑 (U+1F491), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6669,7 +6669,7 @@ "COUPLE_WITH_HEART\n" "LngText.text" msgid "couple4" -msgstr "" +msgstr "cúpla4" #. 💒 (U+1F492), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6678,7 +6678,7 @@ "WEDDING\n" "LngText.text" msgid "wedding" -msgstr "" +msgstr "bainis" #. 💓 (U+1F493), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6687,7 +6687,7 @@ "BEATING_HEART\n" "LngText.text" msgid "heartbeat" -msgstr "" +msgstr "buille an chroí" #. 💔 (U+1F494), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6696,7 +6696,7 @@ "BROKEN_HEART\n" "LngText.text" msgid "broken heart" -msgstr "" +msgstr "croí briste" #. 💕 (U+1F495), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6705,7 +6705,7 @@ "TWO_HEARTS\n" "LngText.text" msgid "two hearts" -msgstr "" +msgstr "dhá chroí" #. 💖 (U+1F496), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6714,7 +6714,7 @@ "SPARKLING_HEART\n" "LngText.text" msgid "sparkling heart" -msgstr "" +msgstr "croí drithleach" #. 💗 (U+1F497), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6723,7 +6723,7 @@ "GROWING_HEART\n" "LngText.text" msgid "heartpulse" -msgstr "" +msgstr "croí ag fás" #. 💘 (U+1F498), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6732,7 +6732,7 @@ "HEART_WITH_ARROW\n" "LngText.text" msgid "love" -msgstr "" +msgstr "grá" #. 💝 (U+1F49D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6741,7 +6741,7 @@ "HEART_WITH_RIBBON\n" "LngText.text" msgid "gift heart" -msgstr "" +msgstr "croí le ribín" #. 💞 (U+1F49E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6750,7 +6750,7 @@ "REVOLVING_HEARTS\n" "LngText.text" msgid "revolving hearts" -msgstr "" +msgstr "croíthe ag rothlú" #. 💟 (U+1F49F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6759,7 +6759,7 @@ "HEART_DECORATION\n" "LngText.text" msgid "heart decoration" -msgstr "" +msgstr "maisiúchán croí" #. 💠 (U+1F4A0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6768,7 +6768,7 @@ "DIAMOND_SHAPE_WITH_A_DOT_INSIDE\n" "LngText.text" msgid "cuteness" -msgstr "" +msgstr "gleoiteacht" #. 💡 (U+1F4A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6777,7 +6777,7 @@ "ELECTRIC_LIGHT_BULB\n" "LngText.text" msgid "bulb" -msgstr "" +msgstr "bolgán" #. 💢 (U+1F4A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6786,7 +6786,7 @@ "ANGER_SYMBOL\n" "LngText.text" msgid "anger" -msgstr "" +msgstr "fearg" #. 💣 (U+1F4A3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6795,7 +6795,7 @@ "BOMB\n" "LngText.text" msgid "bomb" -msgstr "" +msgstr "buama" #. 💤 (U+1F4A4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6804,7 +6804,7 @@ "SLEEPING_SYMBOL\n" "LngText.text" msgid "zzz" -msgstr "" +msgstr "codladh" #. 💥 (U+1F4A5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6813,7 +6813,7 @@ "COLLISION_SYMBOL\n" "LngText.text" msgid "boom" -msgstr "" +msgstr "imbhualadh" #. 💦 (U+1F4A6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6822,7 +6822,7 @@ "SPLASHING_SWEAT_SYMBOL\n" "LngText.text" msgid "sweat drops" -msgstr "" +msgstr "allas" #. 💧 (U+1F4A7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6831,7 +6831,7 @@ "DROPLET\n" "LngText.text" msgid "droplet" -msgstr "" +msgstr "braonán" #. 💨 (U+1F4A8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6840,7 +6840,7 @@ "DASH_SYMBOL\n" "LngText.text" msgid "dash" -msgstr "" +msgstr "dais" #. 💩 (U+1F4A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6849,7 +6849,7 @@ "PILE_OF_POO\n" "LngText.text" msgid "poo" -msgstr "" +msgstr "cac" #. 💪 (U+1F4AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6858,7 +6858,7 @@ "FLEXED_BICEPS\n" "LngText.text" msgid "muscle" -msgstr "" +msgstr "matán" #. 💫 (U+1F4AB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6867,7 +6867,7 @@ "DIZZY_SYMBOL\n" "LngText.text" msgid "dizzy" -msgstr "" +msgstr "meadhránach" #. 💬 (U+1F4AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6876,7 +6876,7 @@ "SPEECH_BALLOON\n" "LngText.text" msgid "speech balloon" -msgstr "" +msgstr "bolgán cainte" #. 💭 (U+1F4AD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6885,7 +6885,7 @@ "THOUGHT_BALLOON\n" "LngText.text" msgid "thought balloon" -msgstr "" +msgstr "bolgán smaoinimh" #. 💮 (U+1F4AE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6894,7 +6894,7 @@ "WHITE_FLOWER\n" "LngText.text" msgid "white flower" -msgstr "" +msgstr "bláth bán" #. 💯 (U+1F4AF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6903,7 +6903,7 @@ "HUNDRED_POINTS_SYMBOL\n" "LngText.text" msgid "100" -msgstr "" +msgstr "100" #. 💰 (U+1F4B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6912,7 +6912,7 @@ "MONEY_BAG\n" "LngText.text" msgid "moneybag" -msgstr "" +msgstr "mála airgid" #. 💱 (U+1F4B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6921,7 +6921,7 @@ "CURRENCY_EXCHANGE\n" "LngText.text" msgid "currency exchange" -msgstr "" +msgstr "tiontú airgeadra" #. 💲 (U+1F4B2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6930,7 +6930,7 @@ "HEAVY_DOLLAR_SIGN\n" "LngText.text" msgid "heavy dollar sign" -msgstr "" +msgstr "comhartha dollair trom" #. 💳 (U+1F4B3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6939,7 +6939,7 @@ "CREDIT_CARD\n" "LngText.text" msgid "credit card" -msgstr "" +msgstr "cárta creidmheasa" #. 💴 (U+1F4B4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6948,7 +6948,7 @@ "BANKNOTE_WITH_YEN_SIGN\n" "LngText.text" msgid "yen2" -msgstr "" +msgstr "yen2" #. 💵 (U+1F4B5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6957,7 +6957,7 @@ "BANKNOTE_WITH_DOLLAR_SIGN\n" "LngText.text" msgid "dollar2" -msgstr "" +msgstr "dollar2" #. 💶 (U+1F4B6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6966,7 +6966,7 @@ "BANKNOTE_WITH_EURO_SIGN\n" "LngText.text" msgid "euro2" -msgstr "" +msgstr "euro2" #. 💷 (U+1F4B7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6975,7 +6975,7 @@ "BANKNOTE_WITH_POUND_SIGN\n" "LngText.text" msgid "pound2" -msgstr "" +msgstr "punt2" #. 💸 (U+1F4B8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6984,7 +6984,7 @@ "MONEY_WITH_WINGS\n" "LngText.text" msgid "money" -msgstr "" +msgstr "airgead" #. 💹 (U+1F4B9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -6993,7 +6993,7 @@ "CHART_WITH_UPWARDS_TREND_AND_YEN_SIGN\n" "LngText.text" msgid "chart" -msgstr "" +msgstr "cairt" #. 💺 (U+1F4BA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7002,7 +7002,7 @@ "SEAT\n" "LngText.text" msgid "seat" -msgstr "" +msgstr "suíochán" #. 💻 (U+1F4BB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7011,7 +7011,7 @@ "PERSONAL_COMPUTER\n" "LngText.text" msgid "computer" -msgstr "" +msgstr "ríomhaire" #. 💼 (U+1F4BC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7020,7 +7020,7 @@ "BRIEFCASE\n" "LngText.text" msgid "briefcase" -msgstr "" +msgstr "mála cáipéisí" #. 💽 (U+1F4BD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7029,7 +7029,7 @@ "MINIDISC\n" "LngText.text" msgid "md" -msgstr "" +msgstr "miondiosca" #. 💾 (U+1F4BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7038,7 +7038,7 @@ "FLOPPY_DISK\n" "LngText.text" msgid "floppy" -msgstr "" +msgstr "diosca flapach" #. 💿 (U+1F4BF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7047,7 +7047,7 @@ "OPTICAL_DISC\n" "LngText.text" msgid "cd" -msgstr "" +msgstr "CD" #. 📀 (U+1F4C0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7056,7 +7056,7 @@ "DVD\n" "LngText.text" msgid "dvd" -msgstr "" +msgstr "DVD" #. 📁 (U+1F4C1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7065,7 +7065,7 @@ "FILE_FOLDER\n" "LngText.text" msgid "folder" -msgstr "" +msgstr "fillteán" #. 📂 (U+1F4C2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7074,7 +7074,7 @@ "OPEN_FILE_FOLDER\n" "LngText.text" msgid "folder2" -msgstr "" +msgstr "fillteán2" #. 📃 (U+1F4C3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7083,7 +7083,7 @@ "PAGE_WITH_CURL\n" "LngText.text" msgid "page with curl" -msgstr "" +msgstr "leathanach cluasach" #. 📄 (U+1F4C4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7092,7 +7092,7 @@ "PAGE_FACING_UP\n" "LngText.text" msgid "page facing up" -msgstr "" +msgstr "leathanach suas" #. 📅 (U+1F4C5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7101,7 +7101,7 @@ "CALENDAR\n" "LngText.text" msgid "calendar" -msgstr "" +msgstr "féilire" #. 📆 (U+1F4C6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7110,7 +7110,7 @@ "TEAR-OFF_CALENDAR\n" "LngText.text" msgid "calendar2" -msgstr "" +msgstr "féilire2" #. 📇 (U+1F4C7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7119,7 +7119,7 @@ "CARD_INDEX\n" "LngText.text" msgid "card index" -msgstr "" +msgstr "innéacs cártaí" #. 📈 (U+1F4C8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7128,7 +7128,7 @@ "CHART_WITH_UPWARDS_TREND\n" "LngText.text" msgid "char" -msgstr "" +msgstr "cairt" #. 📉 (U+1F4C9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7137,7 +7137,7 @@ "CHART_WITH_DOWNWARDS_TREND\n" "LngText.text" msgid "chart2" -msgstr "" +msgstr "cairt2" #. 📊 (U+1F4CA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7146,7 +7146,7 @@ "BAR_CHART\n" "LngText.text" msgid "chart3" -msgstr "" +msgstr "cairt3" #. 📋 (U+1F4CB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7155,7 +7155,7 @@ "CLIPBOARD\n" "LngText.text" msgid "clipboard" -msgstr "" +msgstr "gearrthaisce" #. 📌 (U+1F4CC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7164,7 +7164,7 @@ "PUSHPIN\n" "LngText.text" msgid "pushpin" -msgstr "" +msgstr "biorán sáite" #. 📍 (U+1F4CD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7173,7 +7173,7 @@ "ROUND_PUSHPIN\n" "LngText.text" msgid "round pushpin" -msgstr "" +msgstr "biorán sáite cruinn" #. 📎 (U+1F4CE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7182,7 +7182,7 @@ "PAPERCLIP\n" "LngText.text" msgid "paperclip" -msgstr "" +msgstr "fáiscín páipéir" #. 📏 (U+1F4CF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7191,7 +7191,7 @@ "STRAIGHT_RULER\n" "LngText.text" msgid "ruler" -msgstr "" +msgstr "rialóir" #. 📐 (U+1F4D0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7200,7 +7200,7 @@ "TRIANGULAR_RULER\n" "LngText.text" msgid "ruler2" -msgstr "" +msgstr "rialóir2" #. 📑 (U+1F4D1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7209,7 +7209,7 @@ "BOOKMARK_TABS\n" "LngText.text" msgid "bookmark" -msgstr "" +msgstr "leabharmharc" #. 📒 (U+1F4D2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7218,7 +7218,7 @@ "LEDGER\n" "LngText.text" msgid "ledger" -msgstr "" +msgstr "clárleabhar" #. 📓 (U+1F4D3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7227,7 +7227,7 @@ "NOTEBOOK\n" "LngText.text" msgid "notebook" -msgstr "" +msgstr "leabhar nótaí" #. 📔 (U+1F4D4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7236,7 +7236,7 @@ "NOTEBOOK_WITH_DECORATIVE_COVER\n" "LngText.text" msgid "notebook2" -msgstr "" +msgstr "leabhar nótaí2" #. 📕 (U+1F4D5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7245,7 +7245,7 @@ "CLOSED_BOOK\n" "LngText.text" msgid "book" -msgstr "" +msgstr "leabhar" #. 📖 (U+1F4D6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7254,7 +7254,7 @@ "OPEN_BOOK\n" "LngText.text" msgid "book2" -msgstr "" +msgstr "leabhar2" #. 📚 (U+1F4DA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7263,7 +7263,7 @@ "BOOKS\n" "LngText.text" msgid "books" -msgstr "" +msgstr "leabhair" #. 📛 (U+1F4DB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7272,7 +7272,7 @@ "NAME_BADGE\n" "LngText.text" msgid "name" -msgstr "" +msgstr "ainm" #. 📜 (U+1F4DC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7281,7 +7281,7 @@ "SCROLL\n" "LngText.text" msgid "scroll" -msgstr "" +msgstr "scrolla" #. 📝 (U+1F4DD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7290,7 +7290,7 @@ "MEMO\n" "LngText.text" msgid "memo" -msgstr "" +msgstr "meamram" #. 📞 (U+1F4DE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7299,7 +7299,7 @@ "TELEPHONE_RECEIVER\n" "LngText.text" msgid "receiver" -msgstr "" +msgstr "glacadóir" #. 📟 (U+1F4DF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7308,7 +7308,7 @@ "PAGER\n" "LngText.text" msgid "pager" -msgstr "" +msgstr "glaoire" #. 📠 (U+1F4E0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7317,7 +7317,7 @@ "FAX_MACHINE\n" "LngText.text" msgid "fax" -msgstr "" +msgstr "facs" #. 📡 (U+1F4E1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7326,7 +7326,7 @@ "SATELLITE_ANTENNA\n" "LngText.text" msgid "satellite" -msgstr "" +msgstr "satailít" #. 📢 (U+1F4E2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7335,7 +7335,7 @@ "PUBLIC_ADDRESS_LOUDSPEAKER\n" "LngText.text" msgid "loudspeaker" -msgstr "" +msgstr "callaire" #. 📣 (U+1F4E3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7344,7 +7344,7 @@ "CHEERING_MEGAPHONE\n" "LngText.text" msgid "mega" -msgstr "" +msgstr "meigeafón" #. 📤 (U+1F4E4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7353,7 +7353,7 @@ "OUTBOX_TRAY\n" "LngText.text" msgid "tray" -msgstr "" +msgstr "tráidire" #. 📥 (U+1F4E5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7362,7 +7362,7 @@ "INBOX_TRAY\n" "LngText.text" msgid "tray2" -msgstr "" +msgstr "tráidire2" #. 📦 (U+1F4E6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7371,7 +7371,7 @@ "PACKAGE\n" "LngText.text" msgid "package" -msgstr "" +msgstr "pacáiste" #. 📧 (U+1F4E7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7380,7 +7380,7 @@ "E-MAIL_SYMBOL\n" "LngText.text" msgid "e-mail" -msgstr "" +msgstr "ríomhphost" #. 📨 (U+1F4E8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7389,7 +7389,7 @@ "INCOMING_ENVELOPE\n" "LngText.text" msgid "envelope2" -msgstr "" +msgstr "clúdach2" #. 📩 (U+1F4E9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7398,7 +7398,7 @@ "ENVELOPE_WITH_DOWNWARDS_ARROW_ABOVE\n" "LngText.text" msgid "envelope3" -msgstr "" +msgstr "clúdach3" #. 📪 (U+1F4EA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7407,7 +7407,7 @@ "CLOSED_MAILBOX_WITH_LOWERED_FLAG\n" "LngText.text" msgid "mailbox" -msgstr "" +msgstr "bosca poist" #. 📫 (U+1F4EB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7416,7 +7416,7 @@ "CLOSED_MAILBOX_WITH_RAISED_FLAG\n" "LngText.text" msgid "mailbox2" -msgstr "" +msgstr "bosca poist2" #. 📬 (U+1F4EC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7425,7 +7425,7 @@ "OPEN_MAILBOX_WITH_RAISED_FLAG\n" "LngText.text" msgid "mailbox3" -msgstr "" +msgstr "bosca poist3" #. 📭 (U+1F4ED), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7434,7 +7434,7 @@ "OPEN_MAILBOX_WITH_LOWERED_FLAG\n" "LngText.text" msgid "mailbox4" -msgstr "" +msgstr "bosca poist4" #. 📮 (U+1F4EE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7443,7 +7443,7 @@ "POSTBOX\n" "LngText.text" msgid "postbox" -msgstr "" +msgstr "bosca poist" #. 📯 (U+1F4EF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7452,7 +7452,7 @@ "POSTAL_HORN\n" "LngText.text" msgid "horn" -msgstr "" +msgstr "corn" #. 📰 (U+1F4F0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7461,7 +7461,7 @@ "NEWSPAPER\n" "LngText.text" msgid "newspaper" -msgstr "" +msgstr "nuachtán" #. 📱 (U+1F4F1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7470,7 +7470,7 @@ "MOBILE_PHONE\n" "LngText.text" msgid "mobile" -msgstr "" +msgstr "fón póca" #. 📲 (U+1F4F2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7479,7 +7479,7 @@ "MOBILE_PHONE_WITH_RIGHTWARDS_ARROW_AT_LEFT\n" "LngText.text" msgid "calling" -msgstr "" +msgstr "glaoch" #. 📳 (U+1F4F3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7488,7 +7488,7 @@ "VIBRATION_MODE\n" "LngText.text" msgid "vibration mode" -msgstr "" +msgstr "mód creathaidh" #. 📴 (U+1F4F4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7497,7 +7497,7 @@ "MOBILE_PHONE_OFF\n" "LngText.text" msgid "mobile phone off" -msgstr "" +msgstr "fón póca múchta" #. 📵 (U+1F4F5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7506,7 +7506,7 @@ "NO_MOBILE_PHONES\n" "LngText.text" msgid "no mobile" -msgstr "" +msgstr "cosc ar fhóin phóca" #. 📶 (U+1F4F6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7515,7 +7515,7 @@ "ANTENNA_WITH_BARS\n" "LngText.text" msgid "signal strength" -msgstr "" +msgstr "neart comhartha" #. 📷 (U+1F4F7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7524,7 +7524,7 @@ "CAMERA\n" "LngText.text" msgid "camera" -msgstr "" +msgstr "ceamara" #. 📹 (U+1F4F9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7533,7 +7533,7 @@ "VIDEO_CAMERA\n" "LngText.text" msgid "video camera" -msgstr "" +msgstr "físcheamara" #. 📺 (U+1F4FA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7542,7 +7542,7 @@ "TELEVISION\n" "LngText.text" msgid "tv" -msgstr "" +msgstr "teilifís" #. 📻 (U+1F4FB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7551,7 +7551,7 @@ "RADIO\n" "LngText.text" msgid "radio" -msgstr "" +msgstr "raidió" #. 📼 (U+1F4FC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7560,7 +7560,7 @@ "VIDEOCASSETTE\n" "LngText.text" msgid "vhs" -msgstr "" +msgstr "VHS" #. 🔅 (U+1F505), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7569,7 +7569,7 @@ "LOW_BRIGHTNESS_SYMBOL\n" "LngText.text" msgid "brightness" -msgstr "" +msgstr "gile" #. 🔆 (U+1F506), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7578,7 +7578,7 @@ "HIGH_BRIGHTNESS_SYMBOL\n" "LngText.text" msgid "brightness2" -msgstr "" +msgstr "gile2" #. 🔇 (U+1F507), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7587,7 +7587,7 @@ "SPEAKER_WITH_CANCELLATION_STROKE\n" "LngText.text" msgid "mute" -msgstr "" +msgstr "gan fuaim" #. 🔈 (U+1F508), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7596,7 +7596,7 @@ "SPEAKER\n" "LngText.text" msgid "speaker" -msgstr "" +msgstr "callaire" #. 🔉 (U+1F509), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7605,7 +7605,7 @@ "SPEAKER_WITH_ONE_SOUND_WAVE\n" "LngText.text" msgid "sound" -msgstr "" +msgstr "fuaim" #. 🔊 (U+1F50A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7614,7 +7614,7 @@ "SPEAKER_WITH_THREE_SOUND_WAVES\n" "LngText.text" msgid "loud sound" -msgstr "" +msgstr "fuaim ard" #. 🔋 (U+1F50B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7623,7 +7623,7 @@ "BATTERY\n" "LngText.text" msgid "battery" -msgstr "" +msgstr "cadhnra" #. 🔌 (U+1F50C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7632,7 +7632,7 @@ "ELECTRIC_PLUG\n" "LngText.text" msgid "plug" -msgstr "" +msgstr "pluga" #. 🔍 (U+1F50D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7641,7 +7641,7 @@ "LEFT-POINTING_MAGNIFYING_GLASS\n" "LngText.text" msgid "mag" -msgstr "" +msgstr "gloine formhéadúcháin" #. 🔎 (U+1F50E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7650,7 +7650,7 @@ "RIGHT-POINTING_MAGNIFYING_GLASS\n" "LngText.text" msgid "mag2" -msgstr "" +msgstr "gloine formhéadúcháin2" #. 🔏 (U+1F50F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7659,7 +7659,7 @@ "LOCK_WITH_INK_PEN\n" "LngText.text" msgid "lock2" -msgstr "" +msgstr "glas2" #. 🔐 (U+1F510), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7668,7 +7668,7 @@ "CLOSED_LOCK_WITH_KEY\n" "LngText.text" msgid "lock3" -msgstr "" +msgstr "glas3" #. 🔑 (U+1F511), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7677,7 +7677,7 @@ "KEY\n" "LngText.text" msgid "key" -msgstr "" +msgstr "eochair" #. 🔒 (U+1F512), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7686,7 +7686,7 @@ "LOCK\n" "LngText.text" msgid "lock" -msgstr "" +msgstr "glas" #. 🔓 (U+1F513), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7695,7 +7695,7 @@ "OPEN_LOCK\n" "LngText.text" msgid "unlock" -msgstr "" +msgstr "díghlasáil" #. 🔔 (U+1F514), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7704,7 +7704,7 @@ "BELL\n" "LngText.text" msgid "bell" -msgstr "" +msgstr "clog" #. 🔕 (U+1F515), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7713,7 +7713,7 @@ "BELL_WITH_CANCELLATION_STROKE\n" "LngText.text" msgid "no bell" -msgstr "" +msgstr "gan chlog" #. 🔖 (U+1F516), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7722,7 +7722,7 @@ "BOOKMARK\n" "LngText.text" msgid "bookmark2" -msgstr "" +msgstr "leabharmharc2" #. 🔗 (U+1F517), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7731,7 +7731,7 @@ "LINK_SYMBOL\n" "LngText.text" msgid "link" -msgstr "" +msgstr "nasc" #. 🔘 (U+1F518), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7740,7 +7740,7 @@ "RADIO_BUTTON\n" "LngText.text" msgid "radio button" -msgstr "" +msgstr "cnaipe raidió" #. 🔞 (U+1F51E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7749,7 +7749,7 @@ "NO_ONE_UNDER_EIGHTEEN_SYMBOL\n" "LngText.text" msgid "underage" -msgstr "" +msgstr "faoi aois" #. 🔤 (U+1F524), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7758,7 +7758,7 @@ "INPUT_SYMBOL_FOR_LATIN_LETTERS\n" "LngText.text" msgid "abc" -msgstr "" +msgstr "abc" #. 🔥 (U+1F525), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7767,7 +7767,7 @@ "FIRE\n" "LngText.text" msgid "fire" -msgstr "" +msgstr "tine" #. 🔦 (U+1F526), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7776,7 +7776,7 @@ "ELECTRIC_TORCH\n" "LngText.text" msgid "flashlight" -msgstr "" +msgstr "tóirse" #. 🔧 (U+1F527), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7785,7 +7785,7 @@ "WRENCH\n" "LngText.text" msgid "wrench" -msgstr "" +msgstr "rinse" #. 🔨 (U+1F528), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7794,7 +7794,7 @@ "HAMMER\n" "LngText.text" msgid "hammer" -msgstr "" +msgstr "casúr" #. 🔩 (U+1F529), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7803,7 +7803,7 @@ "NUT_AND_BOLT\n" "LngText.text" msgid "nut and bolt" -msgstr "" +msgstr "cnó agus bolta" #. 🔪 (U+1F52A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7812,7 +7812,7 @@ "HOCHO\n" "LngText.text" msgid "knife" -msgstr "" +msgstr "scian" #. 🔫 (U+1F52B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7821,7 +7821,7 @@ "PISTOL\n" "LngText.text" msgid "pistol" -msgstr "" +msgstr "piostal" #. 🔬 (U+1F52C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7830,7 +7830,7 @@ "MICROSCOPE\n" "LngText.text" msgid "microscope" -msgstr "" +msgstr "micreascóp" #. 🔭 (U+1F52D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7839,7 +7839,7 @@ "TELESCOPE\n" "LngText.text" msgid "telescope" -msgstr "" +msgstr "teileascóp" #. 🔮 (U+1F52E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7848,7 +7848,7 @@ "CRYSTAL_BALL\n" "LngText.text" msgid "crystal ball" -msgstr "" +msgstr "liathróid chriostail" #. 🔰 (U+1F530), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7857,7 +7857,7 @@ "JAPANESE_SYMBOL_FOR_BEGINNER\n" "LngText.text" msgid "beginner" -msgstr "" +msgstr "tosaitheoir" #. 🔱 (U+1F531), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7866,7 +7866,7 @@ "TRIDENT_EMBLEM\n" "LngText.text" msgid "trident" -msgstr "" +msgstr "trírinn" #. 🔲 (U+1F532), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7875,7 +7875,7 @@ "BLACK_SQUARE_BUTTON\n" "LngText.text" msgid "button2" -msgstr "" +msgstr "cnaipe2" #. 🔳 (U+1F533), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7884,7 +7884,7 @@ "WHITE_SQUARE_BUTTON\n" "LngText.text" msgid "button" -msgstr "" +msgstr "cnaipe" #. 🕐 (U+1F550), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7893,7 +7893,7 @@ "CLOCK_FACE_ONE_OCLOCK\n" "LngText.text" msgid "1 h" -msgstr "" +msgstr "1 a chlog" #. 🕑 (U+1F551), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7902,7 +7902,7 @@ "CLOCK_FACE_TWO_OCLOCK\n" "LngText.text" msgid "2 h" -msgstr "" +msgstr "2 a chlog" #. 🕒 (U+1F552), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7911,7 +7911,7 @@ "CLOCK_FACE_THREE_OCLOCK\n" "LngText.text" msgid "3 h" -msgstr "" +msgstr "3 a chlog" #. 🕓 (U+1F553), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7920,7 +7920,7 @@ "CLOCK_FACE_FOUR_OCLOCK\n" "LngText.text" msgid "4 h" -msgstr "" +msgstr "4 a chlog" #. 🕔 (U+1F554), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7929,7 +7929,7 @@ "CLOCK_FACE_FIVE_OCLOCK\n" "LngText.text" msgid "5 h" -msgstr "" +msgstr "5 a chlog" #. 🕕 (U+1F555), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7938,7 +7938,7 @@ "CLOCK_FACE_SIX_OCLOCK\n" "LngText.text" msgid "6 h" -msgstr "" +msgstr "6 a chlog" #. 🕖 (U+1F556), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7947,7 +7947,7 @@ "CLOCK_FACE_SEVEN_OCLOCK\n" "LngText.text" msgid "7 h" -msgstr "" +msgstr "7 a chlog" #. 🕗 (U+1F557), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7956,7 +7956,7 @@ "CLOCK_FACE_EIGHT_OCLOCK\n" "LngText.text" msgid "8 h" -msgstr "" +msgstr "8 a chlog" #. 🕘 (U+1F558), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7965,7 +7965,7 @@ "CLOCK_FACE_NINE_OCLOCK\n" "LngText.text" msgid "9 h" -msgstr "" +msgstr "9 a chlog" #. 🕙 (U+1F559), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7974,7 +7974,7 @@ "CLOCK_FACE_TEN_OCLOCK\n" "LngText.text" msgid "10 h" -msgstr "" +msgstr "10 a chlog" #. 🕚 (U+1F55A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7983,7 +7983,7 @@ "CLOCK_FACE_ELEVEN_OCLOCK\n" "LngText.text" msgid "11 h" -msgstr "" +msgstr "11 a chlog" #. 🕛 (U+1F55B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -7992,7 +7992,7 @@ "CLOCK_FACE_TWELVE_OCLOCK\n" "LngText.text" msgid "12 h" -msgstr "" +msgstr "12 a chlog" #. 🕜 (U+1F55C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8001,7 +8001,7 @@ "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" msgid "1.30" -msgstr "" +msgstr "1:30" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8010,7 +8010,7 @@ "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" msgid "2.30" -msgstr "" +msgstr "2:30" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8019,7 +8019,7 @@ "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" msgid "3.30" -msgstr "" +msgstr "3:30" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8028,7 +8028,7 @@ "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" msgid "4.30" -msgstr "" +msgstr "4:30" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8037,7 +8037,7 @@ "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" msgid "5.30" -msgstr "" +msgstr "5:30" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8046,7 +8046,7 @@ "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" msgid "6.30" -msgstr "" +msgstr "6:30" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8055,7 +8055,7 @@ "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" msgid "7.30" -msgstr "" +msgstr "7:30" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8064,7 +8064,7 @@ "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" msgid "8.30" -msgstr "" +msgstr "8:30" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8073,7 +8073,7 @@ "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" msgid "9.30" -msgstr "" +msgstr "9:30" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8082,7 +8082,7 @@ "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" msgid "10.30" -msgstr "" +msgstr "10:30" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8091,7 +8091,7 @@ "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" msgid "11.30" -msgstr "" +msgstr "11:30" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8100,7 +8100,7 @@ "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" msgid "12.30" -msgstr "" +msgstr "12:30" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8109,7 +8109,7 @@ "MOUNT_FUJI\n" "LngText.text" msgid "Fuji" -msgstr "" +msgstr "Fuji" #. 🗼 (U+1F5FC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8118,7 +8118,7 @@ "TOKYO_TOWER\n" "LngText.text" msgid "tower" -msgstr "" +msgstr "túr" #. 🗽 (U+1F5FD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8127,7 +8127,7 @@ "STATUE_OF_LIBERTY\n" "LngText.text" msgid "liberty" -msgstr "" +msgstr "Dealbh na Saoirse" #. 🗾 (U+1F5FE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8136,7 +8136,7 @@ "SILHOUETTE_OF_JAPAN\n" "LngText.text" msgid "Japan" -msgstr "" +msgstr "An tSeapáin" #. 🗿 (U+1F5FF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8145,7 +8145,7 @@ "MOYAI\n" "LngText.text" msgid "statue" -msgstr "" +msgstr "Mo‘ai" #. 😀 (U+1F600), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8154,7 +8154,7 @@ "GRINNING_FACE\n" "LngText.text" msgid "grinning" -msgstr "" +msgstr "meangadh mór" #. 😁 (U+1F601), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8163,7 +8163,7 @@ "GRINNING_FACE_WITH_SMILING_EYES\n" "LngText.text" msgid "grin" -msgstr "" +msgstr "straois" #. 😂 (U+1F602), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8172,7 +8172,7 @@ "FACE_WITH_TEARS_OF_JOY\n" "LngText.text" msgid "joy" -msgstr "" +msgstr "aoibhneas" #. 😃 (U+1F603), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8181,7 +8181,7 @@ "SMILING_FACE_WITH_OPEN_MOUTH\n" "LngText.text" msgid "smiley" -msgstr "" +msgstr "straoiseog" #. 😄 (U+1F604), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8190,7 +8190,7 @@ "SMILING_FACE_WITH_OPEN_MOUTH_AND_SMILING_EYES\n" "LngText.text" msgid "smile" -msgstr "" +msgstr "meangadh" #. 😅 (U+1F605), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8199,7 +8199,7 @@ "SMILING_FACE_WITH_OPEN_MOUTH_AND_COLD_SWEAT\n" "LngText.text" msgid "sweat smile" -msgstr "" +msgstr "aghaidh le meangadh ag cur allais" #. 😆 (U+1F606), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8208,7 +8208,7 @@ "SMILING_FACE_WITH_OPEN_MOUTH_AND_TIGHTLY-CLOSED_EYES\n" "LngText.text" msgid "laughing" -msgstr "" +msgstr "gáire" #. 😇 (U+1F607), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8217,7 +8217,7 @@ "SMILING_FACE_WITH_HALO\n" "LngText.text" msgid "innocent" -msgstr "" +msgstr "neamhchiontach" #. 😈 (U+1F608), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8226,7 +8226,7 @@ "SMILING_FACE_WITH_HORNS\n" "LngText.text" msgid "smiling imp" -msgstr "" +msgstr "diaibhlín ag gáire" #. 😉 (U+1F609), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8235,7 +8235,7 @@ "WINKING_FACE\n" "LngText.text" msgid "wink" -msgstr "" +msgstr "caochadh súile" #. 😊 (U+1F60A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8244,7 +8244,7 @@ "SMILING_FACE_WITH_SMILING_EYES\n" "LngText.text" msgid "blush" -msgstr "" +msgstr "luisne" #. 😋 (U+1F60B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8253,7 +8253,7 @@ "FACE_SAVOURING_DELICIOUS_FOOD\n" "LngText.text" msgid "yum" -msgstr "" +msgstr "blasta" #. 😌 (U+1F60C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8262,7 +8262,7 @@ "RELIEVED_FACE\n" "LngText.text" msgid "relieved" -msgstr "" +msgstr "faoiseamh" #. 😍 (U+1F60D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8271,7 +8271,7 @@ "SMILING_FACE_WITH_HEART-SHAPED_EYES\n" "LngText.text" msgid "heart eyes" -msgstr "" +msgstr "súile ina gcroíthe" #. 😎 (U+1F60E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8280,7 +8280,7 @@ "SMILING_FACE_WITH_SUNGLASSES\n" "LngText.text" msgid "sunglasses" -msgstr "" +msgstr "spéaclaí gréine" #. 😏 (U+1F60F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8289,7 +8289,7 @@ "SMIRKING_FACE\n" "LngText.text" msgid "smirk" -msgstr "" +msgstr "seitgháire" #. 😐 (U+1F610), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8298,7 +8298,7 @@ "NEUTRAL_FACE\n" "LngText.text" msgid "neutral face" -msgstr "" +msgstr "aghaidh neodrach" #. 😑 (U+1F611), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8307,7 +8307,7 @@ "EXPRESSIONLESS_FACE\n" "LngText.text" msgid "expressionless" -msgstr "" +msgstr "gan mhothú" #. 😒 (U+1F612), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8316,7 +8316,7 @@ "UNAMUSED_FACE\n" "LngText.text" msgid "unamused" -msgstr "" +msgstr "míshásta" #. 😓 (U+1F613), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8325,7 +8325,7 @@ "FACE_WITH_COLD_SWEAT\n" "LngText.text" msgid "sweat" -msgstr "" +msgstr "allas" #. 😔 (U+1F614), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8334,7 +8334,7 @@ "PENSIVE_FACE\n" "LngText.text" msgid "pensive" -msgstr "" +msgstr "machnamhach" #. 😕 (U+1F615), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8343,7 +8343,7 @@ "CONFUSED_FACE\n" "LngText.text" msgid "confused" -msgstr "" +msgstr "ar mearbhall" #. 😖 (U+1F616), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8352,7 +8352,7 @@ "CONFOUNDED_FACE\n" "LngText.text" msgid "confounded" -msgstr "" +msgstr "mearbhall" #. 😗 (U+1F617), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8361,7 +8361,7 @@ "KISSING_FACE\n" "LngText.text" msgid "kissing" -msgstr "" +msgstr "ag pógadh" #. 😘 (U+1F618), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8370,7 +8370,7 @@ "FACE_THROWING_A_KISS\n" "LngText.text" msgid "kiss2" -msgstr "" +msgstr "póg2" #. 😙 (U+1F619), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8379,7 +8379,7 @@ "KISSING_FACE_WITH_SMILING_EYES\n" "LngText.text" msgid "kiss3" -msgstr "" +msgstr "póg3" #. 😚 (U+1F61A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8388,7 +8388,7 @@ "KISSING_FACE_WITH_CLOSED_EYES\n" "LngText.text" msgid "kiss4" -msgstr "" +msgstr "póg4" #. 😛 (U+1F61B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8397,7 +8397,7 @@ "FACE_WITH_STUCK-OUT_TONGUE\n" "LngText.text" msgid "tongue2" -msgstr "" +msgstr "teanga2" #. 😜 (U+1F61C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8406,7 +8406,7 @@ "FACE_WITH_STUCK-OUT_TONGUE_AND_WINKING_EYE\n" "LngText.text" msgid "tongue3" -msgstr "" +msgstr "teanga3" #. 😝 (U+1F61D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8415,7 +8415,7 @@ "FACE_WITH_STUCK-OUT_TONGUE_AND_TIGHTLY-CLOSED_EYES\n" "LngText.text" msgid "tongue4" -msgstr "" +msgstr "teanga4" #. 😞 (U+1F61E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8424,7 +8424,7 @@ "DISAPPOINTED_FACE\n" "LngText.text" msgid "disappointed" -msgstr "" +msgstr "díomách" #. 😟 (U+1F61F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8433,7 +8433,7 @@ "WORRIED_FACE\n" "LngText.text" msgid "worried" -msgstr "" +msgstr "buartha" #. 😠 (U+1F620), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8442,7 +8442,7 @@ "ANGRY_FACE\n" "LngText.text" msgid "angry" -msgstr "" +msgstr "feargach" #. 😡 (U+1F621), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8451,7 +8451,7 @@ "POUTING_FACE\n" "LngText.text" msgid "rage" -msgstr "" +msgstr "ar buile" #. 😢 (U+1F622), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8460,7 +8460,7 @@ "CRYING_FACE\n" "LngText.text" msgid "cry" -msgstr "" +msgstr "caoineadh" #. 😣 (U+1F623), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8469,7 +8469,7 @@ "PERSEVERING_FACE\n" "LngText.text" msgid "persevere" -msgstr "" +msgstr "buanseasmhacht" #. 😤 (U+1F624), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8478,7 +8478,7 @@ "FACE_WITH_LOOK_OF_TRIUMPH\n" "LngText.text" msgid "triumph" -msgstr "" +msgstr "bua" #. 😥 (U+1F625), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8487,7 +8487,7 @@ "DISAPPOINTED_BUT_RELIEVED_FACE\n" "LngText.text" msgid "disappointed relieved" -msgstr "" +msgstr "díomá ach faoiseamh" #. 😦 (U+1F626), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8496,7 +8496,7 @@ "FROWNING_FACE_WITH_OPEN_MOUTH\n" "LngText.text" msgid "frowning" -msgstr "" +msgstr "grainc" #. 😧 (U+1F627), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8505,7 +8505,7 @@ "ANGUISHED_FACE\n" "LngText.text" msgid "anguished" -msgstr "" +msgstr "crá" #. 😨 (U+1F628), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8514,7 +8514,7 @@ "FEARFUL_FACE\n" "LngText.text" msgid "fearful" -msgstr "" +msgstr "eagla" #. 😩 (U+1F629), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8523,7 +8523,7 @@ "WEARY_FACE\n" "LngText.text" msgid "weary" -msgstr "" +msgstr "tuirse" #. 😪 (U+1F62A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8532,7 +8532,7 @@ "SLEEPY_FACE\n" "LngText.text" msgid "sleepy" -msgstr "" +msgstr "codlatach" #. 😫 (U+1F62B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8541,7 +8541,7 @@ "TIRED_FACE\n" "LngText.text" msgid "tired face" -msgstr "" +msgstr "aghaidh thuirseach" #. 😬 (U+1F62C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8550,7 +8550,7 @@ "GRIMACING_FACE\n" "LngText.text" msgid "grimacing" -msgstr "" +msgstr "strainc" #. 😭 (U+1F62D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8559,7 +8559,7 @@ "LOUDLY_CRYING_FACE\n" "LngText.text" msgid "sob" -msgstr "" +msgstr "snagaireacht" #. 😮 (U+1F62E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8568,7 +8568,7 @@ "FACE_WITH_OPEN_MOUTH\n" "LngText.text" msgid "open mouth" -msgstr "" +msgstr "béal oscailte" #. 😯 (U+1F62F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8577,7 +8577,7 @@ "HUSHED_FACE\n" "LngText.text" msgid "hushed" -msgstr "" +msgstr "faoi thost" #. 😰 (U+1F630), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8586,7 +8586,7 @@ "FACE_WITH_OPEN_MOUTH_AND_COLD_SWEAT\n" "LngText.text" msgid "cold sweat" -msgstr "" +msgstr "fuarallas" #. 😱 (U+1F631), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8595,7 +8595,7 @@ "FACE_SCREAMING_IN_FEAR\n" "LngText.text" msgid "scream" -msgstr "" +msgstr "scréach" #. 😲 (U+1F632), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8604,7 +8604,7 @@ "ASTONISHED_FACE\n" "LngText.text" msgid "astonished" -msgstr "" +msgstr "iontas" #. 😳 (U+1F633), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8613,7 +8613,7 @@ "FLUSHED_FACE\n" "LngText.text" msgid "flushed" -msgstr "" +msgstr "luisne" #. 😴 (U+1F634), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8622,7 +8622,7 @@ "SLEEPING_FACE\n" "LngText.text" msgid "sleeping" -msgstr "" +msgstr "codladh" #. 😵 (U+1F635), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8631,7 +8631,7 @@ "DIZZY_FACE\n" "LngText.text" msgid "dizzy face" -msgstr "" +msgstr "meadhrán" #. 😶 (U+1F636), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8640,7 +8640,7 @@ "FACE_WITHOUT_MOUTH\n" "LngText.text" msgid "no mouth" -msgstr "" +msgstr "gan bhéal" #. 😷 (U+1F637), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8649,7 +8649,7 @@ "FACE_WITH_MEDICAL_MASK\n" "LngText.text" msgid "mask" -msgstr "" +msgstr "masc" #. 😸 (U+1F638), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8658,7 +8658,7 @@ "GRINNING_CAT_FACE_WITH_SMILING_EYES\n" "LngText.text" msgid "smile cat" -msgstr "" +msgstr "cat ag gáire" #. 😹 (U+1F639), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8667,7 +8667,7 @@ "CAT_FACE_WITH_TEARS_OF_JOY\n" "LngText.text" msgid "joy cat" -msgstr "" +msgstr "cat áthasach" #. 😺 (U+1F63A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8676,7 +8676,7 @@ "SMILING_CAT_FACE_WITH_OPEN_MOUTH\n" "LngText.text" msgid "smiley cat" -msgstr "" +msgstr "cat miongháire" #. 😻 (U+1F63B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8685,7 +8685,7 @@ "SMILING_CAT_FACE_WITH_HEART-SHAPED_EYES\n" "LngText.text" msgid "heart eyes cat" -msgstr "" +msgstr "cat le súile ina gcroíthe" #. 😼 (U+1F63C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8694,7 +8694,7 @@ "CAT_FACE_WITH_WRY_SMILE\n" "LngText.text" msgid "smirk cat" -msgstr "" +msgstr "cat le gáire dóite" #. 😽 (U+1F63D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8703,7 +8703,7 @@ "KISSING_CAT_FACE_WITH_CLOSED_EYES\n" "LngText.text" msgid "kissing cat" -msgstr "" +msgstr "cat ag pógadh" #. 😾 (U+1F63E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8712,7 +8712,7 @@ "POUTING_CAT_FACE\n" "LngText.text" msgid "pouting cat" -msgstr "" +msgstr "cat le puisín" #. 😿 (U+1F63F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8721,7 +8721,7 @@ "CRYING_CAT_FACE\n" "LngText.text" msgid "crying cat" -msgstr "" +msgstr "cat ag gol" #. 🙀 (U+1F640), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8730,7 +8730,7 @@ "WEARY_CAT_FACE\n" "LngText.text" msgid "scream cat" -msgstr "" +msgstr "cat tuirseach" #. 🙅 (U+1F645), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8739,7 +8739,7 @@ "FACE_WITH_NO_GOOD_GESTURE\n" "LngText.text" msgid "no good" -msgstr "" +msgstr "gan mhaitheas" #. 🙆 (U+1F646), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8748,7 +8748,7 @@ "FACE_WITH_OK_GESTURE\n" "LngText.text" msgid "ok2" -msgstr "" +msgstr "ceart go leor2" #. 🙇 (U+1F647), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8757,7 +8757,7 @@ "PERSON_BOWING_DEEPLY\n" "LngText.text" msgid "bow" -msgstr "" +msgstr "umhlú" #. 🙈 (U+1F648), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8766,7 +8766,7 @@ "SEE-NO-EVIL_MONKEY\n" "LngText.text" msgid "see no evil" -msgstr "" +msgstr "ná feic aon olc" #. 🙉 (U+1F649), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8775,7 +8775,7 @@ "HEAR-NO-EVIL_MONKEY\n" "LngText.text" msgid "hear no evil" -msgstr "" +msgstr "ná clois aon olc" #. 🙊 (U+1F64A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8784,7 +8784,7 @@ "SPEAK-NO-EVIL_MONKEY\n" "LngText.text" msgid "speak no evil" -msgstr "" +msgstr "ná habair aon olc" #. 🙋 (U+1F64B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8793,7 +8793,7 @@ "HAPPY_PERSON_RAISING_ONE_HAND\n" "LngText.text" msgid "happiness" -msgstr "" +msgstr "áthas" #. 🙌 (U+1F64C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8802,7 +8802,7 @@ "PERSON_RAISING_BOTH_HANDS_IN_CELEBRATION\n" "LngText.text" msgid "celebration" -msgstr "" +msgstr "ceiliúradh" #. 🙍 (U+1F64D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8811,7 +8811,7 @@ "PERSON_FROWNING\n" "LngText.text" msgid "person frowning" -msgstr "" +msgstr "gruaim" #. 🙎 (U+1F64E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8820,7 +8820,7 @@ "PERSON_WITH_POUTING_FACE\n" "LngText.text" msgid "person pouting" -msgstr "" +msgstr "puisín" #. 🙏 (U+1F64F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8829,7 +8829,7 @@ "PERSON_WITH_FOLDED_HANDS\n" "LngText.text" msgid "pray" -msgstr "" +msgstr "guí" #. 🚀 (U+1F680), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8838,7 +8838,7 @@ "ROCKET\n" "LngText.text" msgid "rocket" -msgstr "" +msgstr "roicéad" #. 🚁 (U+1F681), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8847,7 +8847,7 @@ "HELICOPTER\n" "LngText.text" msgid "helicopter" -msgstr "" +msgstr "héileacaptar" #. 🚂 (U+1F682), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8856,7 +8856,7 @@ "STEAM_LOCOMOTIVE\n" "LngText.text" msgid "steam locomotive" -msgstr "" +msgstr "traein ghaile" #. 🚃 (U+1F683), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8865,7 +8865,7 @@ "RAILWAY_CAR\n" "LngText.text" msgid "railway car" -msgstr "" +msgstr "carr iarnróid" #. 🚄 (U+1F684), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8874,7 +8874,7 @@ "HIGH-SPEED_TRAIN\n" "LngText.text" msgid "train2" -msgstr "" +msgstr "traein2" #. 🚅 (U+1F685), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8883,7 +8883,7 @@ "HIGH-SPEED_TRAIN_WITH_BULLET_NOSE\n" "LngText.text" msgid "train3" -msgstr "" +msgstr "traein3" #. 🚆 (U+1F686), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8892,7 +8892,7 @@ "TRAIN\n" "LngText.text" msgid "train" -msgstr "" +msgstr "traein" #. 🚇 (U+1F687), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8901,7 +8901,7 @@ "METRO\n" "LngText.text" msgid "metro" -msgstr "" +msgstr "meitreo" #. 🚈 (U+1F688), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8910,7 +8910,7 @@ "LIGHT_RAIL\n" "LngText.text" msgid "light rail" -msgstr "" +msgstr "iarnród éadrom" #. 🚉 (U+1F689), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8919,7 +8919,7 @@ "STATION\n" "LngText.text" msgid "station" -msgstr "" +msgstr "stáisiún" #. 🚊 (U+1F68A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8928,7 +8928,7 @@ "TRAM\n" "LngText.text" msgid "tram" -msgstr "" +msgstr "tram" #. 🚋 (U+1F68B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8937,7 +8937,7 @@ "TRAM_CAR\n" "LngText.text" msgid "tram2" -msgstr "" +msgstr "tram2" #. 🚌 (U+1F68C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8946,7 +8946,7 @@ "BUS\n" "LngText.text" msgid "bus" -msgstr "" +msgstr "bus" #. 🚍 (U+1F68D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8955,7 +8955,7 @@ "ONCOMING_BUS\n" "LngText.text" msgid "bus2" -msgstr "" +msgstr "bus2" #. 🚎 (U+1F68E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8964,7 +8964,7 @@ "TROLLEYBUS\n" "LngText.text" msgid "trolleybus" -msgstr "" +msgstr "bustralaí" #. 🚏 (U+1F68F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8973,7 +8973,7 @@ "BUS_STOP\n" "LngText.text" msgid "busstop" -msgstr "" +msgstr "stad bus" #. 🚐 (U+1F690), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8982,7 +8982,7 @@ "MINIBUS\n" "LngText.text" msgid "minibus" -msgstr "" +msgstr "mionbhus" #. 🚑 (U+1F691), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -8991,7 +8991,7 @@ "AMBULANCE\n" "LngText.text" msgid "ambulance" -msgstr "" +msgstr "otharcharr" #. 🚒 (U+1F692), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9000,7 +9000,7 @@ "FIRE_ENGINE\n" "LngText.text" msgid "fire engine" -msgstr "" +msgstr "inneall dóiteáin" #. 🚓 (U+1F693), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9009,7 +9009,7 @@ "POLICE_CAR\n" "LngText.text" msgid "police car" -msgstr "" +msgstr "carr póilíní" #. 🚔 (U+1F694), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9018,7 +9018,7 @@ "ONCOMING_POLICE_CAR\n" "LngText.text" msgid "police car2" -msgstr "" +msgstr "carr póilíní2" #. 🚕 (U+1F695), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9027,7 +9027,7 @@ "TAXI\n" "LngText.text" msgid "taxi" -msgstr "" +msgstr "tacsaí" #. 🚖 (U+1F696), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9036,7 +9036,7 @@ "ONCOMING_TAXI\n" "LngText.text" msgid "taxi2" -msgstr "" +msgstr "tacsaí2" #. 🚗 (U+1F697), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9045,7 +9045,7 @@ "AUTOMOBILE\n" "LngText.text" msgid "car" -msgstr "" +msgstr "carr" #. 🚘 (U+1F698), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9054,7 +9054,7 @@ "ONCOMING_AUTOMOBILE\n" "LngText.text" msgid "car2" -msgstr "" +msgstr "carr2" #. 🚙 (U+1F699), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9063,7 +9063,7 @@ "RECREATIONAL_VEHICLE\n" "LngText.text" msgid "car3" -msgstr "" +msgstr "carr3" #. 🚚 (U+1F69A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9072,7 +9072,7 @@ "DELIVERY_TRUCK\n" "LngText.text" msgid "truck2" -msgstr "" +msgstr "trucail2" #. 🚛 (U+1F69B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9081,7 +9081,7 @@ "ARTICULATED_LORRY\n" "LngText.text" msgid "lorry" -msgstr "" +msgstr "leoraí" #. 🚜 (U+1F69C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9090,7 +9090,7 @@ "TRACTOR\n" "LngText.text" msgid "tractor" -msgstr "" +msgstr "tarracóir" #. 🚝 (U+1F69D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9099,7 +9099,7 @@ "MONORAIL\n" "LngText.text" msgid "monorail" -msgstr "" +msgstr "aonráille" #. 🚞 (U+1F69E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9108,7 +9108,7 @@ "MOUNTAIN_RAILWAY\n" "LngText.text" msgid "mountain railway" -msgstr "" +msgstr "iarnród sléibhe" #. 🚟 (U+1F69F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9117,7 +9117,7 @@ "SUSPENSION_RAILWAY\n" "LngText.text" msgid "suspension railway" -msgstr "" +msgstr "iarnród crochta" #. 🚠 (U+1F6A0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9126,7 +9126,7 @@ "MOUNTAIN_CABLEWAY\n" "LngText.text" msgid "mountain cableway" -msgstr "" +msgstr "cáblabhealach sléibhe" #. 🚡 (U+1F6A1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9135,7 +9135,7 @@ "AERIAL_TRAMWAY\n" "LngText.text" msgid "aerial tramway" -msgstr "" +msgstr "trambhealach aeir" #. 🚢 (U+1F6A2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9144,7 +9144,7 @@ "SHIP\n" "LngText.text" msgid "ship" -msgstr "" +msgstr "long" #. 🚣 (U+1F6A3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9153,7 +9153,7 @@ "ROWBOAT\n" "LngText.text" msgid "rowboat" -msgstr "" +msgstr "bád iomartha" #. 🚤 (U+1F6A4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9162,7 +9162,7 @@ "SPEEDBOAT\n" "LngText.text" msgid "speedboat" -msgstr "" +msgstr "luasbhád" #. 🚥 (U+1F6A5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9171,7 +9171,7 @@ "HORIZONTAL_TRAFFIC_LIGHT\n" "LngText.text" msgid "traffic light" -msgstr "" +msgstr "solas tráchta" #. 🚦 (U+1F6A6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9180,7 +9180,7 @@ "VERTICAL_TRAFFIC_LIGHT\n" "LngText.text" msgid "traffic light2" -msgstr "" +msgstr "solas tráchta2" #. 🚧 (U+1F6A7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9189,7 +9189,7 @@ "CONSTRUCTION_SIGN\n" "LngText.text" msgid "construction" -msgstr "" +msgstr "tógáil" #. 🚨 (U+1F6A8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9198,7 +9198,7 @@ "POLICE_CARS_REVOLVING_LIGHT\n" "LngText.text" msgid "rotating light" -msgstr "" +msgstr "solas rothlach" #. 🚩 (U+1F6A9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9207,7 +9207,7 @@ "TRIANGULAR_FLAG_ON_POST\n" "LngText.text" msgid "triangular flag" -msgstr "" +msgstr "bratach thriantánach" #. 🚪 (U+1F6AA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9216,7 +9216,7 @@ "DOOR\n" "LngText.text" msgid "door" -msgstr "" +msgstr "doras" #. 🚫 (U+1F6AB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9225,7 +9225,7 @@ "NO_ENTRY_SIGN\n" "LngText.text" msgid "no entry sign" -msgstr "" +msgstr "cosc ar iontráil" #. 🚬 (U+1F6AC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9234,7 +9234,7 @@ "SMOKING_SYMBOL\n" "LngText.text" msgid "smoking" -msgstr "" +msgstr "caitheamh tobac" #. 🚭 (U+1F6AD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9243,7 +9243,7 @@ "NO_SMOKING_SYMBOL\n" "LngText.text" msgid "no smoking" -msgstr "" +msgstr "cosc ar chaitheamh" #. 🚮 (U+1F6AE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9252,7 +9252,7 @@ "PUT_LITTER_IN_ITS_PLACE_SYMBOL\n" "LngText.text" msgid "litter" -msgstr "" +msgstr "bruscar" #. 🚯 (U+1F6AF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9261,7 +9261,7 @@ "DO_NOT_LITTER_SYMBOL\n" "LngText.text" msgid "do not litter" -msgstr "" +msgstr "ná caith bruscar" #. 🚰 (U+1F6B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9270,7 +9270,7 @@ "POTABLE_WATER_SYMBOL\n" "LngText.text" msgid "potable water" -msgstr "" +msgstr "uisce inólta" #. 🚱 (U+1F6B1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9279,7 +9279,7 @@ "NON-POTABLE_WATER_SYMBOL\n" "LngText.text" msgid "non-potable water" -msgstr "" +msgstr "uisce do-ólta" #. 🚲 (U+1F6B2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9288,7 +9288,7 @@ "BICYCLE\n" "LngText.text" msgid "bike" -msgstr "" +msgstr "rothar" #. 🚳 (U+1F6B3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9297,7 +9297,7 @@ "NO_BICYCLES\n" "LngText.text" msgid "no bicycles" -msgstr "" +msgstr "cosc ar rothair" #. 🚴 (U+1F6B4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9306,7 +9306,7 @@ "BICYCLIST\n" "LngText.text" msgid "bicyclist" -msgstr "" +msgstr "rothaí" #. 🚵 (U+1F6B5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9315,7 +9315,7 @@ "MOUNTAIN_BICYCLIST\n" "LngText.text" msgid "bicyclist2" -msgstr "" +msgstr "rothaí2" #. 🚶 (U+1F6B6), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9324,7 +9324,7 @@ "PEDESTRIAN\n" "LngText.text" msgid "walking" -msgstr "" +msgstr "siúl" #. 🚷 (U+1F6B7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9333,7 +9333,7 @@ "NO_PEDESTRIANS\n" "LngText.text" msgid "no pedestrians" -msgstr "" +msgstr "cosc ar choisithe" #. 🚸 (U+1F6B8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9342,7 +9342,7 @@ "CHILDREN_CROSSING\n" "LngText.text" msgid "children crossing" -msgstr "" +msgstr "páistí ag trasnú" #. 🚹 (U+1F6B9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9351,7 +9351,7 @@ "MENS_SYMBOL\n" "LngText.text" msgid "mens" -msgstr "" +msgstr "fir" #. 🚺 (U+1F6BA), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9360,7 +9360,7 @@ "WOMENS_SYMBOL\n" "LngText.text" msgid "womens" -msgstr "" +msgstr "mná" #. 🚻 (U+1F6BB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9369,7 +9369,7 @@ "RESTROOM\n" "LngText.text" msgid "restroom" -msgstr "" +msgstr "leithreas" #. 🚼 (U+1F6BC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9378,7 +9378,7 @@ "BABY_SYMBOL\n" "LngText.text" msgid "baby2" -msgstr "" +msgstr "leanbh2" #. 🚽 (U+1F6BD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9387,7 +9387,7 @@ "TOILET\n" "LngText.text" msgid "toilet" -msgstr "" +msgstr "leithreas" #. 🚾 (U+1F6BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9396,7 +9396,7 @@ "WATER_CLOSET\n" "LngText.text" msgid "toilet2" -msgstr "" +msgstr "leithreas2" #. 🚿 (U+1F6BF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9405,7 +9405,7 @@ "SHOWER\n" "LngText.text" msgid "shower" -msgstr "" +msgstr "cithfholcadán" #. 🛀 (U+1F6C0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9414,7 +9414,7 @@ "BATH\n" "LngText.text" msgid "bath" -msgstr "" +msgstr "folcadh" #. 🛁 (U+1F6C1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9423,7 +9423,7 @@ "BATHTUB\n" "LngText.text" msgid "bathtub" -msgstr "" +msgstr "folcadán" #. 🛂 (U+1F6C2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9432,7 +9432,7 @@ "PASSPORT_CONTROL\n" "LngText.text" msgid "passport" -msgstr "" +msgstr "pas" #. 🛃 (U+1F6C3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9441,7 +9441,7 @@ "CUSTOMS\n" "LngText.text" msgid "customs" -msgstr "" +msgstr "custam" #. 🛄 (U+1F6C4), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9450,7 +9450,7 @@ "BAGGAGE_CLAIM\n" "LngText.text" msgid "baggage" -msgstr "" +msgstr "bagáiste" #. 🛅 (U+1F6C5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9459,7 +9459,7 @@ "LEFT_LUGGAGE\n" "LngText.text" msgid "left luggage" -msgstr "" +msgstr "oifig an bhagáiste" #. ½ (U+000BD), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9468,7 +9468,7 @@ "VULGAR_FRACTION_ONE_HALF\n" "LngText.text" msgid "1/2" -msgstr "" +msgstr "½" #. ⅓ (U+02153), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9477,7 +9477,7 @@ "VULGAR_FRACTION_ONE_THIRD\n" "LngText.text" msgid "1/3" -msgstr "" +msgstr "⅓" #. ¼ (U+000BC), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9486,7 +9486,7 @@ "VULGAR_FRACTION_ONE_QUARTER\n" "LngText.text" msgid "1/4" -msgstr "" +msgstr "¼" #. ⅔ (U+02154), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9495,7 +9495,7 @@ "VULGAR_FRACTION_TWO_THIRDS\n" "LngText.text" msgid "2/3" -msgstr "" +msgstr "⅔" #. ¾ (U+000BE), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9504,7 +9504,7 @@ "VULGAR_FRACTION_THREE_QUARTERS\n" "LngText.text" msgid "3/4" -msgstr "" +msgstr "¾" #. ⅛ (U+0215B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9513,7 +9513,7 @@ "VULGAR_FRACTION_ONE_EIGHTH\n" "LngText.text" msgid "1/8" -msgstr "" +msgstr "⅛" #. ⅜ (U+0215C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9522,7 +9522,7 @@ "VULGAR_FRACTION_THREE_EIGHTHS\n" "LngText.text" msgid "3/8" -msgstr "" +msgstr "⅜" #. ⅝ (U+0215D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9531,7 +9531,7 @@ "VULGAR_FRACTION_FIVE_EIGHTHS\n" "LngText.text" msgid "5/8" -msgstr "" +msgstr "⅝" #. ⅞ (U+0215E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9540,7 +9540,7 @@ "VULGAR_FRACTION_SEVEN_EIGHTHS\n" "LngText.text" msgid "7/8" -msgstr "" +msgstr "⅞" #. ¹ (U+000B9), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9549,7 +9549,7 @@ "SUPERSCRIPT_ONE\n" "LngText.text" msgid "^1" -msgstr "" +msgstr "¹" #. ² (U+000B2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9558,7 +9558,7 @@ "SUPERSCRIPT_TWO\n" "LngText.text" msgid "^2" -msgstr "" +msgstr "²" #. ³ (U+000B3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9567,7 +9567,7 @@ "SUPERSCRIPT_THREE\n" "LngText.text" msgid "^3" -msgstr "" +msgstr "³" #. ⁴ (U+02074), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9576,7 +9576,7 @@ "SUPERSCRIPT_FOUR\n" "LngText.text" msgid "^4" -msgstr "" +msgstr "⁴" #. ⁵ (U+02075), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9585,7 +9585,7 @@ "SUPERSCRIPT_FIVE\n" "LngText.text" msgid "^5" -msgstr "" +msgstr "⁵" #. ⁶ (U+02076), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9594,7 +9594,7 @@ "SUPERSCRIPT_SIX\n" "LngText.text" msgid "^6" -msgstr "" +msgstr "⁶" #. ⁷ (U+02077), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9603,7 +9603,7 @@ "SUPERSCRIPT_SEVEN\n" "LngText.text" msgid "^7" -msgstr "" +msgstr "⁷" #. ⁸ (U+02078), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9612,7 +9612,7 @@ "SUPERSCRIPT_EIGHT\n" "LngText.text" msgid "^8" -msgstr "" +msgstr "⁸" #. ⁹ (U+02079), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9621,7 +9621,7 @@ "SUPERSCRIPT_NINE\n" "LngText.text" msgid "^9" -msgstr "" +msgstr "⁹" #. ⁰ (U+02070), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9630,7 +9630,7 @@ "SUPERSCRIPT_ZERO\n" "LngText.text" msgid "^0" -msgstr "" +msgstr "⁰" #. ⁺ (U+0207A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9639,7 +9639,7 @@ "SUPERSCRIPT_PLUS_SIGN\n" "LngText.text" msgid "^+" -msgstr "" +msgstr "⁺" #. ⁻ (U+0207B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9658,7 +9658,7 @@ "SUPERSCRIPT_EQUALS_SIGN\n" "LngText.text" msgid "^=" -msgstr "" +msgstr "⁼" #. ⁽ (U+0207D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9687,7 +9687,7 @@ "SUBSCRIPT_ONE\n" "LngText.text" msgid "_1" -msgstr "" +msgstr "₁" #. ₂ (U+02082), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9696,7 +9696,7 @@ "SUBSCRIPT_TWO\n" "LngText.text" msgid "_2" -msgstr "" +msgstr "₂" #. ₃ (U+02083), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9705,7 +9705,7 @@ "SUBSCRIPT_THREE\n" "LngText.text" msgid "_3" -msgstr "" +msgstr "₃" #. ₄ (U+02084), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9714,7 +9714,7 @@ "SUBSCRIPT_FOUR\n" "LngText.text" msgid "_4" -msgstr "" +msgstr "₄" #. ₅ (U+02085), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9723,7 +9723,7 @@ "SUBSCRIPT_FIVE\n" "LngText.text" msgid "_5" -msgstr "" +msgstr "₅" #. ₆ (U+02086), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9732,7 +9732,7 @@ "SUBSCRIPT_SIX\n" "LngText.text" msgid "_6" -msgstr "" +msgstr "₆" #. ₇ (U+02087), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9741,7 +9741,7 @@ "SUBSCRIPT_SEVEN\n" "LngText.text" msgid "_7" -msgstr "" +msgstr "₇" #. ₈ (U+02088), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9750,7 +9750,7 @@ "SUBSCRIPT_EIGHT\n" "LngText.text" msgid "_8" -msgstr "" +msgstr "₈" #. ₉ (U+02089), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9759,7 +9759,7 @@ "SUBSCRIPT_NINE\n" "LngText.text" msgid "_9" -msgstr "" +msgstr "₉" #. ₀ (U+02080), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9768,7 +9768,7 @@ "SUBSCRIPT_ZERO\n" "LngText.text" msgid "_0" -msgstr "" +msgstr "₀" #. ₊ (U+0208A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9777,7 +9777,7 @@ "SUBSCRIPT_PLUS_SIGN\n" "LngText.text" msgid "_+" -msgstr "" +msgstr "₊" #. ₋ (U+0208B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9796,7 +9796,7 @@ "SUBSCRIPT_EQUALS_SIGN\n" "LngText.text" msgid "_=" -msgstr "" +msgstr "₌" #. ₍ (U+0208D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9825,7 +9825,7 @@ "MODIFIER_LETTER_SMALL_A\n" "LngText.text" msgid "^a" -msgstr "" +msgstr "ᵃ" #. ᵇ (U+01D47), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9834,7 +9834,7 @@ "MODIFIER_LETTER_SMALL_B\n" "LngText.text" msgid "^b" -msgstr "" +msgstr "ᵇ" #. ᶜ (U+01D9C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9843,7 +9843,7 @@ "MODIFIER_LETTER_SMALL_C\n" "LngText.text" msgid "^c" -msgstr "" +msgstr "ᶜ" #. ᵈ (U+01D48), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9852,7 +9852,7 @@ "MODIFIER_LETTER_SMALL_D\n" "LngText.text" msgid "^d" -msgstr "" +msgstr "ᵈ" #. ᵉ (U+01D49), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9861,7 +9861,7 @@ "MODIFIER_LETTER_SMALL_E\n" "LngText.text" msgid "^e" -msgstr "" +msgstr "ᵉ" #. ᶠ (U+01DA0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9870,7 +9870,7 @@ "MODIFIER_LETTER_SMALL_F\n" "LngText.text" msgid "^f" -msgstr "" +msgstr "ᶠ" #. ᵍ (U+01D4D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9879,7 +9879,7 @@ "MODIFIER_LETTER_SMALL_G\n" "LngText.text" msgid "^g" -msgstr "" +msgstr "ᵍ" #. ʰ (U+002B0), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9888,7 +9888,7 @@ "MODIFIER_LETTER_SMALL_H\n" "LngText.text" msgid "^h" -msgstr "" +msgstr "ʰ" #. ⁱ (U+02071), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9897,7 +9897,7 @@ "SUPERSCRIPT_LATIN_SMALL_LETTER_I\n" "LngText.text" msgid "^i" -msgstr "" +msgstr "ⁱ" #. ʲ (U+002B2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9906,7 +9906,7 @@ "MODIFIER_LETTER_SMALL_J\n" "LngText.text" msgid "^j" -msgstr "" +msgstr "ʲ" #. ᵏ (U+01D4F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9915,7 +9915,7 @@ "MODIFIER_LETTER_SMALL_K\n" "LngText.text" msgid "^k" -msgstr "" +msgstr "ᵏ" #. ˡ (U+002E1), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9924,7 +9924,7 @@ "MODIFIER_LETTER_SMALL_L\n" "LngText.text" msgid "^l" -msgstr "" +msgstr "ˡ" #. ᵐ (U+01D50), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9933,7 +9933,7 @@ "MODIFIER_LETTER_SMALL_M\n" "LngText.text" msgid "^m" -msgstr "" +msgstr "ᵐ" #. ⁿ (U+0207F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9942,7 +9942,7 @@ "SUPERSCRIPT_LATIN_SMALL_LETTER_N\n" "LngText.text" msgid "^n" -msgstr "" +msgstr "ⁿ" #. ᵒ (U+01D52), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9951,7 +9951,7 @@ "MODIFIER_LETTER_SMALL_O\n" "LngText.text" msgid "^o" -msgstr "" +msgstr "ᵒ" #. ᵖ (U+01D56), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9960,7 +9960,7 @@ "MODIFIER_LETTER_SMALL_P\n" "LngText.text" msgid "^p" -msgstr "" +msgstr "ᵖ" #. ʳ (U+002B3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9969,7 +9969,7 @@ "MODIFIER_LETTER_SMALL_R\n" "LngText.text" msgid "^r" -msgstr "" +msgstr "ʳ" #. ˢ (U+002E2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9978,7 +9978,7 @@ "MODIFIER_LETTER_SMALL_S\n" "LngText.text" msgid "^s" -msgstr "" +msgstr "ˢ" #. ᵗ (U+01D57), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9987,7 +9987,7 @@ "MODIFIER_LETTER_SMALL_T\n" "LngText.text" msgid "^t" -msgstr "" +msgstr "ᵗ" #. ᵘ (U+01D58), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -9996,7 +9996,7 @@ "MODIFIER_LETTER_SMALL_U\n" "LngText.text" msgid "^u" -msgstr "" +msgstr "ᵘ" #. ᵛ (U+01D5B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10005,7 +10005,7 @@ "MODIFIER_LETTER_SMALL_V\n" "LngText.text" msgid "^v" -msgstr "" +msgstr "ᵛ" #. ʷ (U+002B7), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10014,7 +10014,7 @@ "MODIFIER_LETTER_SMALL_W\n" "LngText.text" msgid "^w" -msgstr "" +msgstr "ʷ" #. ˣ (U+002E3), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10023,7 +10023,7 @@ "MODIFIER_LETTER_SMALL_X\n" "LngText.text" msgid "^x" -msgstr "" +msgstr "ˣ" #. ʸ (U+002B8), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10032,7 +10032,7 @@ "MODIFIER_LETTER_SMALL_Y\n" "LngText.text" msgid "^y" -msgstr "" +msgstr "ʸ" #. ᶻ (U+01DBB), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10041,7 +10041,7 @@ "MODIFIER_LETTER_SMALL_Z\n" "LngText.text" msgid "^z" -msgstr "" +msgstr "ᶻ" #. ᴬ (U+01D2C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10050,7 +10050,7 @@ "MODIFIER_LETTER_CAPITAL_A\n" "LngText.text" msgid "^A" -msgstr "" +msgstr "ᴬ" #. ᴮ (U+01D2E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10059,7 +10059,7 @@ "MODIFIER_LETTER_CAPITAL_B\n" "LngText.text" msgid "^B" -msgstr "" +msgstr "ᴮ" #. ᴰ (U+01D30), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10068,7 +10068,7 @@ "MODIFIER_LETTER_CAPITAL_D\n" "LngText.text" msgid "^D" -msgstr "" +msgstr "^D" #. ᴱ (U+01D31), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10077,7 +10077,7 @@ "MODIFIER_LETTER_CAPITAL_E\n" "LngText.text" msgid "^E" -msgstr "" +msgstr "ᴱ" #. ᴳ (U+01D33), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10086,7 +10086,7 @@ "MODIFIER_LETTER_CAPITAL_G\n" "LngText.text" msgid "^G" -msgstr "" +msgstr "ᴳ" #. ᴴ (U+01D34), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10095,7 +10095,7 @@ "MODIFIER_LETTER_CAPITAL_H\n" "LngText.text" msgid "^H" -msgstr "" +msgstr "ᴴ" #. ᴵ (U+01D35), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10104,7 +10104,7 @@ "MODIFIER_LETTER_CAPITAL_I\n" "LngText.text" msgid "^I" -msgstr "" +msgstr "ᴵ" #. ᴶ (U+01D36), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10113,7 +10113,7 @@ "MODIFIER_LETTER_CAPITAL_J\n" "LngText.text" msgid "^J" -msgstr "" +msgstr "ᴶ" #. ᴷ (U+01D37), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10122,7 +10122,7 @@ "MODIFIER_LETTER_CAPITAL_K\n" "LngText.text" msgid "^K" -msgstr "" +msgstr "ᴷ" #. ᴸ (U+01D38), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10131,7 +10131,7 @@ "MODIFIER_LETTER_CAPITAL_L\n" "LngText.text" msgid "^L" -msgstr "" +msgstr "ᴸ" #. ᴹ (U+01D39), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10140,7 +10140,7 @@ "MODIFIER_LETTER_CAPITAL_M\n" "LngText.text" msgid "^M" -msgstr "" +msgstr "ᴹ" #. ᴺ (U+01D3A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10149,7 +10149,7 @@ "MODIFIER_LETTER_CAPITAL_N\n" "LngText.text" msgid "^N" -msgstr "" +msgstr "ᴺ" #. ᴼ (U+01D3C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10158,7 +10158,7 @@ "MODIFIER_LETTER_CAPITAL_O\n" "LngText.text" msgid "^O" -msgstr "" +msgstr "ᴼ" #. ᴾ (U+01D3E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10167,7 +10167,7 @@ "MODIFIER_LETTER_CAPITAL_P\n" "LngText.text" msgid "^P" -msgstr "" +msgstr "ᴾ" #. ᴿ (U+01D3F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10176,7 +10176,7 @@ "MODIFIER_LETTER_CAPITAL_R\n" "LngText.text" msgid "^R" -msgstr "" +msgstr "ᴿ" #. ᵀ (U+01D40), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10185,7 +10185,7 @@ "MODIFIER_LETTER_CAPITAL_T\n" "LngText.text" msgid "^T" -msgstr "" +msgstr "ᵀ" #. ᵁ (U+01D41), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10194,7 +10194,7 @@ "MODIFIER_LETTER_CAPITAL_U\n" "LngText.text" msgid "^U" -msgstr "" +msgstr "ᵁ" #. ⱽ (U+02C7D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10203,7 +10203,7 @@ "MODIFIER_LETTER_CAPITAL_V\n" "LngText.text" msgid "^V" -msgstr "" +msgstr "ⱽ" #. ᵂ (U+01D42), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10212,7 +10212,7 @@ "MODIFIER_LETTER_CAPITAL_W\n" "LngText.text" msgid "^W" -msgstr "" +msgstr "ᵂ" #. ₐ (U+02090), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10221,7 +10221,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_A\n" "LngText.text" msgid "_a" -msgstr "" +msgstr "ₐ" #. ₑ (U+02091), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10230,7 +10230,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_E\n" "LngText.text" msgid "_e" -msgstr "" +msgstr "ₑ" #. ₕ (U+02095), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10239,7 +10239,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_H\n" "LngText.text" msgid "_h" -msgstr "" +msgstr "ₕ" #. ᵢ (U+01D62), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10248,7 +10248,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_I\n" "LngText.text" msgid "_i" -msgstr "" +msgstr "ᵢ" #. ⱼ (U+02C7C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10257,7 +10257,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_J\n" "LngText.text" msgid "_j" -msgstr "" +msgstr "ⱼ" #. ₖ (U+02096), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10266,7 +10266,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_K\n" "LngText.text" msgid "_k" -msgstr "" +msgstr "ₖ" #. ₗ (U+02097), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10275,7 +10275,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_L\n" "LngText.text" msgid "_l" -msgstr "" +msgstr "ₗ" #. ₘ (U+02098), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10284,7 +10284,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_M\n" "LngText.text" msgid "_m" -msgstr "" +msgstr "ₘ" #. ₙ (U+02099), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10293,7 +10293,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_N\n" "LngText.text" msgid "_n" -msgstr "" +msgstr "ₙ" #. ₒ (U+02092), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10302,7 +10302,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_O\n" "LngText.text" msgid "_o" -msgstr "" +msgstr "ₒ" #. ₚ (U+0209A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10311,7 +10311,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_P\n" "LngText.text" msgid "_p" -msgstr "" +msgstr "ₚ" #. ᵣ (U+01D63), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10320,7 +10320,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_R\n" "LngText.text" msgid "_r" -msgstr "" +msgstr "ᵣ" #. ₛ (U+0209B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10329,7 +10329,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_S\n" "LngText.text" msgid "_s" -msgstr "" +msgstr "ₛ" #. ₜ (U+0209C), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10338,7 +10338,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_T\n" "LngText.text" msgid "_t" -msgstr "" +msgstr "ₜ" #. ᵤ (U+01D64), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10347,7 +10347,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_U\n" "LngText.text" msgid "_u" -msgstr "" +msgstr "ᵤ" #. ᵥ (U+01D65), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10356,7 +10356,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_V\n" "LngText.text" msgid "_v" -msgstr "" +msgstr "ᵥ" #. ₓ (U+02093), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10365,7 +10365,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_X\n" "LngText.text" msgid "_x" -msgstr "" +msgstr "ₓ" #. ᵅ (U+01D45), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10374,7 +10374,7 @@ "MODIFIER_LETTER_SMALL_ALPHA\n" "LngText.text" msgid "^alpha" -msgstr "" +msgstr "ᵅ" #. ᵝ (U+01D5D), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10383,7 +10383,7 @@ "MODIFIER_LETTER_SMALL_BETA\n" "LngText.text" msgid "^beta" -msgstr "" +msgstr "ᵝ" #. ᵞ (U+01D5E), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10392,7 +10392,7 @@ "MODIFIER_LETTER_SMALL_GREEK_GAMMA\n" "LngText.text" msgid "^gamma" -msgstr "" +msgstr "ᵞ" #. ᵟ (U+01D5F), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10401,7 +10401,7 @@ "MODIFIER_LETTER_SMALL_DELTA\n" "LngText.text" msgid "^delta" -msgstr "" +msgstr "ᵟ" #. ᵋ (U+01D4B), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10410,7 +10410,7 @@ "MODIFIER_LETTER_SMALL_OPEN_E\n" "LngText.text" msgid "^epsilon" -msgstr "" +msgstr "ᵋ" #. ᶿ (U+01DBF), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10419,7 +10419,7 @@ "MODIFIER_LETTER_SMALL_THETA\n" "LngText.text" msgid "^theta" -msgstr "" +msgstr "ᶿ" #. ᶥ (U+01DA5), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10428,7 +10428,7 @@ "MODIFIER_LETTER_SMALL_IOTA\n" "LngText.text" msgid "^iota" -msgstr "" +msgstr "ᶥ" #. ᶲ (U+01DB2), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10437,7 +10437,7 @@ "MODIFIER_LETTER_SMALL_PHI\n" "LngText.text" msgid "^Phi" -msgstr "" +msgstr "ᶲ" #. ᵠ (U+01D60), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10446,7 +10446,7 @@ "MODIFIER_LETTER_SMALL_GREEK_PHI\n" "LngText.text" msgid "^phi" -msgstr "" +msgstr "ᵠ" #. ᵡ (U+01D61), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10455,7 +10455,7 @@ "MODIFIER_LETTER_SMALL_CHI\n" "LngText.text" msgid "^chi" -msgstr "" +msgstr "ᵡ" #. ᵦ (U+01D66), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10464,7 +10464,7 @@ "GREEK_SUBSCRIPT_SMALL_LETTER_BETA\n" "LngText.text" msgid "_beta" -msgstr "" +msgstr "ᵦ" #. ᵧ (U+01D67), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10473,7 +10473,7 @@ "GREEK_SUBSCRIPT_SMALL_LETTER_GAMMA\n" "LngText.text" msgid "_gamma" -msgstr "" +msgstr "ᵧ" #. ᵨ (U+01D68), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10482,7 +10482,7 @@ "GREEK_SUBSCRIPT_SMALL_LETTER_RHO\n" "LngText.text" msgid "_rho" -msgstr "" +msgstr "ᵨ" #. ᵩ (U+01D69), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10491,7 +10491,7 @@ "GREEK_SUBSCRIPT_SMALL_LETTER_PHI\n" "LngText.text" msgid "_phi" -msgstr "" +msgstr "ᵩ" #. ᵪ (U+01D6A), see http://wiki.documentfoundation.org/Emoji #: emoji.ulf @@ -10500,4 +10500,4 @@ "GREEK_SUBSCRIPT_SMALL_LETTER_CHI\n" "LngText.text" msgid "_chi" -msgstr "" +msgstr "ᵪ" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ga/filter/source/config/fragments/filters.po libreoffice-l10n-5.4.4~rc2/translations/source/ga/filter/source/config/fragments/filters.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ga/filter/source/config/fragments/filters.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ga/filter/source/config/fragments/filters.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LO\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-06-06 20:00+0200\n" -"PO-Revision-Date: 2016-12-01 16:25+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-12 01:36+0000\n" +"Last-Translator: Kevin Scannell \n" "Language-Team: \n" "Language: ga\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1480609516.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510450569.000000\n" #: ADO_rowset_XML.xcu msgctxt "" @@ -23,7 +23,7 @@ "UIName\n" "value.text" msgid "ADO Rowset XML" -msgstr "" +msgstr "Bloc XML ADO" #: AbiWord.xcu msgctxt "" @@ -50,7 +50,7 @@ "UIName\n" "value.text" msgid "Apple Numbers 2" -msgstr "" +msgstr "Apple Numbers 2" #: ApplePages.xcu msgctxt "" @@ -59,7 +59,7 @@ "UIName\n" "value.text" msgid "Apple Pages 4" -msgstr "" +msgstr "Apple Pages 4" #: BMP___MS_Windows.xcu msgctxt "" @@ -77,7 +77,7 @@ "UIName\n" "value.text" msgid "BroadBand eBook" -msgstr "" +msgstr "rLeabhar BroadBand" #: CGM___Computer_Graphics_Metafile.xcu msgctxt "" @@ -86,7 +86,7 @@ "UIName\n" "value.text" msgid "CGM - Computer Graphics Metafile" -msgstr "" +msgstr "CGM - Computer Graphics Metafile" #: ClarisWorks.xcu msgctxt "" @@ -95,7 +95,7 @@ "UIName\n" "value.text" msgid "ClarisWorks/AppleWorks Text Document" -msgstr "" +msgstr "Cáipéis Téacs ClarisWorks/AppleWorks" #: ClarisWorks_Calc.xcu msgctxt "" @@ -104,7 +104,7 @@ "UIName\n" "value.text" msgid "ClarisWorks/AppleWorks Spreadsheet" -msgstr "" +msgstr "Scarbhileog ClarisWorks/AppleWorks" #: ClarisWorks_Draw.xcu msgctxt "" @@ -113,7 +113,7 @@ "UIName\n" "value.text" msgid "ClarisWorks/AppleWorks Drawing" -msgstr "" +msgstr "Líníocht ClarisWorks/AppleWorks" #: ClarisWorks_Impress.xcu msgctxt "" @@ -122,7 +122,7 @@ "UIName\n" "value.text" msgid "ClarisWorks/AppleWorks Presentation" -msgstr "" +msgstr "Láithreoireacht ClarisWorks/AppleWorks" #: Claris_Resolve_Calc.xcu msgctxt "" @@ -149,7 +149,7 @@ "UIName\n" "value.text" msgid "Corel Presentation Exchange" -msgstr "" +msgstr "Corel Presentation Exchange" #: DIF.xcu msgctxt "" @@ -176,7 +176,7 @@ "UIName\n" "value.text" msgid "Microsoft Word for DOS" -msgstr "" +msgstr "Microsoft Word ar DOS" #: EMF___MS_Windows_Metafile.xcu msgctxt "" @@ -365,7 +365,7 @@ "UIName\n" "value.text" msgid "Microsoft Excel 97-2003" -msgstr "" +msgstr "Microsoft Excel 97-2003" #: MS_Excel_97_Vorlage_Template.xcu #, fuzzy @@ -461,7 +461,7 @@ "UIName\n" "value.text" msgid "Microsoft Word 2007-2013 XML VBA" -msgstr "" +msgstr "Microsoft Word 2007-2013 XML VBA" #: MS_Word_95.xcu msgctxt "" @@ -488,7 +488,7 @@ "UIName\n" "value.text" msgid "Microsoft Word 97-2003" -msgstr "" +msgstr "Microsoft Word 97-2003" #: MS_Word_97_Vorlage.xcu #, fuzzy @@ -525,7 +525,7 @@ "UIName\n" "value.text" msgid "Microsoft Write" -msgstr "" +msgstr "Microsoft Write" #: MWAW_Bitmap.xcu msgctxt "" @@ -534,7 +534,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Bitmap" -msgstr "" +msgstr "Seanmhapa giotán Mac" #: MWAW_Database.xcu msgctxt "" @@ -543,7 +543,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Database" -msgstr "" +msgstr "Seanbhunachar Sonraí Mac" #: MWAW_Drawing.xcu msgctxt "" @@ -552,7 +552,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Drawing" -msgstr "" +msgstr "Seanlíníocht Mac" #: MWAW_Presentation.xcu msgctxt "" @@ -561,7 +561,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Presentation" -msgstr "" +msgstr "Seanláithreoireacht Mac" #: MWAW_Spreadsheet.xcu msgctxt "" @@ -570,7 +570,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Spreadsheet" -msgstr "" +msgstr "Seanscarbhileog Mac" #: MWAW_Text_Document.xcu msgctxt "" @@ -579,7 +579,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Text Document" -msgstr "" +msgstr "Seancháipéis Téacs Mac" #: MacWrite.xcu msgctxt "" @@ -624,7 +624,7 @@ "UIName\n" "value.text" msgid "Mariner Write Mac Classic v1.6 - v3.5" -msgstr "" +msgstr "Mariner Write Mac Clasaiceach v1.6 - v3.5" #: MathML_XML__Math_.xcu #, fuzzy @@ -770,7 +770,7 @@ "UIName\n" "value.text" msgid "Microsoft PowerPoint 1-4 and 95's" -msgstr "" +msgstr "Microsoft PowerPoint 1-4 agus 95's" #: PublisherDocument.xcu msgctxt "" @@ -888,7 +888,7 @@ "UIName\n" "value.text" msgid "Legacy StarOffice Drawing" -msgstr "" +msgstr "Seanlíníocht StarOffice" #: StarOffice_Presentation.xcu msgctxt "" @@ -897,7 +897,7 @@ "UIName\n" "value.text" msgid "Legacy StarOffice Presentation" -msgstr "" +msgstr "Seanláithreoireacht StarOffice" #: StarOffice_Spreadsheet.xcu msgctxt "" @@ -906,7 +906,7 @@ "UIName\n" "value.text" msgid "Legacy StarOffice Spreadsheet" -msgstr "" +msgstr "Seanscarbhileog StarOffice" #: StarOffice_Writer.xcu msgctxt "" @@ -915,7 +915,7 @@ "UIName\n" "value.text" msgid "Legacy StarOffice Text Document" -msgstr "" +msgstr "Seancháipéis Téacs StarOffice" #: StarOffice_XML__Base_.xcu msgctxt "" @@ -1113,7 +1113,7 @@ "UIName\n" "value.text" msgid "Lotus Document" -msgstr "" +msgstr "Cáipéis Lotus" #: WPS_QPro_Calc.xcu msgctxt "" @@ -1122,7 +1122,7 @@ "UIName\n" "value.text" msgid "QuattroPro Document" -msgstr "" +msgstr "Cáipéis QuattroPro" #: WordPerfect.xcu msgctxt "" @@ -1176,7 +1176,7 @@ "UIName\n" "value.text" msgid "Zoner Callisto/Draw" -msgstr "" +msgstr "Líníocht Zoner Callisto" #: calc8.xcu msgctxt "" @@ -1203,7 +1203,7 @@ "UIName\n" "value.text" msgid "Gnumeric Spreadsheet" -msgstr "" +msgstr "Scarbhileog Gnumeric" #: calc_HTML_WebQuery.xcu msgctxt "" @@ -1230,7 +1230,7 @@ "UIName\n" "value.text" msgid "Microsoft Excel 2007-2016 XML (macro enabled)" -msgstr "" +msgstr "Microsoft Excel 2007-2016 XML (macraí cumasaithe)" #: calc_MS_Excel_2007_XML.xcu #, fuzzy @@ -1286,7 +1286,7 @@ "UIName\n" "value.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF - Portable Document Format" #: calc_png_Export.xcu #, fuzzy @@ -1440,7 +1440,7 @@ "UIName\n" "value.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF - Portable Document Format" #: draw_png_Export.xcu msgctxt "" @@ -1651,7 +1651,7 @@ "UIName\n" "value.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF - Portable Document Format" #: impress_png_Export.xcu msgctxt "" @@ -1705,7 +1705,7 @@ "UIName\n" "value.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF - Portable Document Format" #: mov__MOV.xcu msgctxt "" @@ -1714,7 +1714,7 @@ "UIName\n" "value.text" msgid "MOV - QuickTime File Format" -msgstr "" +msgstr "MOV - Comhad QuickTime" #: writer8.xcu msgctxt "" @@ -1778,7 +1778,7 @@ "UIName\n" "value.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF - Portable Document Format" #: writer_jpg_Export.xcu msgctxt "" @@ -1796,7 +1796,7 @@ "UIName\n" "value.text" msgid "Writer Layout XML" -msgstr "" +msgstr "Leagan Amach XML Writer" #: writer_pdf_Export.xcu msgctxt "" @@ -1805,7 +1805,7 @@ "UIName\n" "value.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF - Portable Document Format" #: writer_png_Export.xcu msgctxt "" @@ -1823,7 +1823,7 @@ "UIName\n" "value.text" msgid "Help content" -msgstr "" +msgstr "Ábhar cabhrach" #: writer_web_StarOffice_XML_Writer.xcu msgctxt "" @@ -1860,7 +1860,7 @@ "UIName\n" "value.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF - Portable Document Format" #: writer_web_png_Export.xcu #, fuzzy diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ga/filter/source/config/fragments/internalgraphicfilters.po libreoffice-l10n-5.4.4~rc2/translations/source/ga/filter/source/config/fragments/internalgraphicfilters.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ga/filter/source/config/fragments/internalgraphicfilters.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ga/filter/source/config/fragments/internalgraphicfilters.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LO\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-03-10 22:14+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-12 01:36+0000\n" +"Last-Translator: Kevin Scannell \n" "Language-Team: \n" "Language: ga\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1457648098.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510450569.000000\n" #: bmp_Export.xcu msgctxt "" @@ -131,7 +131,7 @@ "UIName\n" "value.text" msgid "MOV - QuickTime File Format" -msgstr "" +msgstr "MOV - Comhad QuickTime" #: pbm_Import.xcu msgctxt "" @@ -194,7 +194,7 @@ "UIName\n" "value.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF - Portable Document Format" #: pdf_Import.xcu msgctxt "" @@ -203,7 +203,7 @@ "UIName\n" "value.text" msgid "PDF - Portable Document Format" -msgstr "" +msgstr "PDF - Portable Document Format" #: pgm_Import.xcu msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ga/filter/source/config/fragments/types.po libreoffice-l10n-5.4.4~rc2/translations/source/ga/filter/source/config/fragments/types.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ga/filter/source/config/fragments/types.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ga/filter/source/config/fragments/types.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LO\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-06-06 20:00+0200\n" -"PO-Revision-Date: 2015-11-11 02:56+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-12 01:36+0000\n" +"Last-Translator: Kevin Scannell \n" "Language-Team: \n" "Language: ga\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1447210598.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510450569.000000\n" #: MS_Excel_2007_Binary.xcu msgctxt "" @@ -137,7 +137,7 @@ "UIName\n" "value.text" msgid "ADO Rowset XML" -msgstr "" +msgstr "Bloc XML ADO" #: calc_Gnumeric.xcu msgctxt "" @@ -146,7 +146,7 @@ "UIName\n" "value.text" msgid "Gnumeric Spreadsheet" -msgstr "" +msgstr "Scarbhileog Gnumeric" #: calc_MS_Excel_2003_XML.xcu msgctxt "" @@ -254,7 +254,7 @@ "UIName\n" "value.text" msgid "Office Open XML Presentation AutoPlay" -msgstr "" +msgstr "Láithreoireacht AutoPlay Office Open XML" #: math8.xcu msgctxt "" @@ -319,7 +319,7 @@ "UIName\n" "value.text" msgid "Microsoft Word 2007-2013 XML VBA" -msgstr "" +msgstr "Microsoft Word 2007-2013 XML VBA" #: writer_ODT_FlatXML.xcu msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ga/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-l10n-5.4.4~rc2/translations/source/ga/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ga/instsetoo_native/inc_openoffice/windows/msi_languages.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ga/instsetoo_native/inc_openoffice/windows/msi_languages.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LO\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2016-07-04 21:00+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-12 01:35+0000\n" +"Last-Translator: Kevin Scannell \n" "Language-Team: \n" "Language: ga\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1467666039.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510450543.000000\n" #: ActionTe.ulf msgctxt "" @@ -598,7 +598,7 @@ "OOO_ACTIONTEXT_73\n" "LngText.text" msgid "Removing files from previous installation" -msgstr "" +msgstr "Comhaid ó sheansuiteáil a bhaint" #: ActionTe.ulf msgctxt "" @@ -2766,7 +2766,7 @@ "OOO_CONTROL_322\n" "LngText.text" msgid "Some files that need to be updated are currently in use." -msgstr "" +msgstr "Tá roinnt comhad is gá a nuashonrú in úsáid faoi láthair." #: Control.ulf msgctxt "" @@ -2774,7 +2774,7 @@ "OOO_CONTROL_323\n" "LngText.text" msgid "The following applications are using files that need to be updated by this setup. You can let Installation Wizard close them and attempt to restart them or reboot the machine later." -msgstr "" +msgstr "Tá comhaid a chaithfear nuashonrú in úsáid ag na feidhmchláir seo a leanas. Is féidir leat ligean don Treoraí Suiteála na feidhmchláir seo a dhúnadh agus a atosú, nó an ríomhaire a atosú ar ball." #: Control.ulf msgctxt "" @@ -2782,7 +2782,7 @@ "OOO_CONTROL_324\n" "LngText.text" msgid "{&MSSansBold8}Files in Use" -msgstr "" +msgstr "{&MSSansBold8}Comhaid in Úsáid" #: Control.ulf msgctxt "" @@ -2790,7 +2790,7 @@ "OOO_CONTROL_325\n" "LngText.text" msgid "Cancel" -msgstr "" +msgstr "Cealaigh" #: Control.ulf msgctxt "" @@ -2798,7 +2798,7 @@ "OOO_CONTROL_326\n" "LngText.text" msgid "OK" -msgstr "" +msgstr "OK" #: CustomAc.ulf msgctxt "" @@ -2822,7 +2822,7 @@ "OOO_CUSTOMACTION_5\n" "LngText.text" msgid "[ProductName] cannot be installed on this Windows version. [WindowsMinVersionText] or newer is required." -msgstr "" +msgstr "Ní féidir [ProductName] a shuiteáil ar an leagan seo de Windows. Tá [WindowsMinVersionText] nó leagan níos déanaí de dhíth." #: Error.ulf msgctxt "" @@ -4070,7 +4070,7 @@ "OOO_RADIOBUTTON_10\n" "LngText.text" msgid "&Close the applications and attempt to restart them." -msgstr "" +msgstr "&Dún na feidhmchláir agus déan iarracht iad a atosú." #: RadioBut.ulf msgctxt "" @@ -4078,7 +4078,7 @@ "OOO_RADIOBUTTON_11\n" "LngText.text" msgid "&Do not close applications. A reboot will be required." -msgstr "" +msgstr "&Ná dún na feidhmchláir (beidh ortsa an ríomhaire a atosú)." #: UIText.ulf msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ga/librelogo/source/pythonpath.po libreoffice-l10n-5.4.4~rc2/translations/source/ga/librelogo/source/pythonpath.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ga/librelogo/source/pythonpath.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ga/librelogo/source/pythonpath.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LO\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: 2015-01-28 02:47+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-12 01:36+0000\n" +"Last-Translator: Kevin Scannell \n" "Language-Team: \n" "Language: ga\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1422413237.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510450584.000000\n" #: LibreLogo_en_US.properties msgctxt "" @@ -166,7 +166,7 @@ "PENCAP\n" "property.text" msgid "pencap|linecap" -msgstr "" +msgstr "pencap|linecap" #: LibreLogo_en_US.properties msgctxt "" @@ -638,7 +638,7 @@ "LOG10\n" "property.text" msgid "log10" -msgstr "" +msgstr "log10" #: LibreLogo_en_US.properties msgctxt "" @@ -1054,7 +1054,7 @@ "ERR_NAME\n" "property.text" msgid "Unknown name: “%s”." -msgstr "" +msgstr "Ainm anaithnid: “%s”." #: LibreLogo_en_US.properties msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ga/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po libreoffice-l10n-5.4.4~rc2/translations/source/ga/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ga/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ga/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LO\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2015-01-28 02:43+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-12 01:35+0000\n" +"Last-Translator: Kevin Scannell \n" "Language-Team: \n" "Language: ga\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1422413026.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510450546.000000\n" #: Options.xhp msgctxt "" @@ -46,7 +46,7 @@ "par_id0503200917103780\n" "help.text" msgid "Size of Swarm" -msgstr "" +msgstr "Méid na Saithe" #: Options.xhp msgctxt "" @@ -54,7 +54,7 @@ "par_id0503200917103723\n" "help.text" msgid "… defines the number of individuals to participate in the learning process. Each individual finds its own solutions and contributes to the overall knowledge." -msgstr "" +msgstr "... sainíonn uimhir na ndaoine a bhéas ag glacadh páirte sa phróiseas foghlama. Aimsíonn gach duine a réitigh féin agus dá réir sin cuireann leis an eolas i gcoitinne." #: Options.xhp msgctxt "" @@ -70,7 +70,7 @@ "par_id0503200917103720\n" "help.text" msgid "… defines the number of iterations, the algorithm should take. In each iteration, all individuals make a guess on the best solution and share their knowledge." -msgstr "" +msgstr "... sainíonn uimhir na dtimthriall ar cheart don algartam a dhéanamh. I ngach timthriall, tomhaiseann gach duine an réiteach is fearr agus roinneann a n-eolas dá réir." #: Options.xhp msgctxt "" @@ -78,7 +78,7 @@ "par_id0503200917103732\n" "help.text" msgid "Variable Bounds Guessing" -msgstr "" +msgstr "Tomhas i leith teorainn na n-athróg" #: Options.xhp msgctxt "" @@ -86,7 +86,7 @@ "par_id050320091710378\n" "help.text" msgid "If enabled (default), the algorithm tries to find variable bounds by looking at the starting values." -msgstr "" +msgstr "Más cumasaithe (an réamhshocrú), déanann an algartam iarracht teorainneacha na n-athróg a aimsiú trí bhreathnú ar na luachanna tosaigh." #: Options.xhp msgctxt "" @@ -94,7 +94,7 @@ "par_id0503200917103794\n" "help.text" msgid "Variable Bounds Threshold" -msgstr "" +msgstr "Tairseach Teorainneacha na n-Athróg" #: Options.xhp msgctxt "" @@ -110,7 +110,7 @@ "par_id0503200917103740\n" "help.text" msgid "Use ACR Comparator" -msgstr "" +msgstr "Úsáid Comparadóir ACR" #: Options.xhp msgctxt "" @@ -158,7 +158,7 @@ "par_id0504200917103794\n" "help.text" msgid "Stagnation Limit" -msgstr "" +msgstr "Teorainn Marbhántachta" #: Options.xhp msgctxt "" @@ -174,7 +174,7 @@ "par_id0503200917103762\n" "help.text" msgid "Stagnation Tolerance" -msgstr "" +msgstr "Lamháltas Marbhántachta" #: Options.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ga/nlpsolver/src/locale.po libreoffice-l10n-5.4.4~rc2/translations/source/ga/nlpsolver/src/locale.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ga/nlpsolver/src/locale.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ga/nlpsolver/src/locale.po 2017-12-12 17:45:07.000000000 +0000 @@ -2,17 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: LO\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:06+0200\n" -"PO-Revision-Date: 2012-11-19 16:30-0000\n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2015-04-22 23:40+0200\n" +"PO-Revision-Date: 2017-11-12 01:35+0000\n" "Last-Translator: Kevin Scannell \n" "Language-Team: \n" "Language: ga\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510450546.000000\n" #: NLPSolverCommon_en_US.properties msgctxt "" @@ -44,7 +46,7 @@ "NLPSolverCommon.Properties.LearningCycles\n" "property.text" msgid "Learning Cycles" -msgstr "" +msgstr "Timthriallta Foghlama" #: NLPSolverCommon_en_US.properties msgctxt "" @@ -68,7 +70,7 @@ "NLPSolverCommon.Properties.UseACRComparator\n" "property.text" msgid "Use ACR Comparator (instead of BCH)" -msgstr "" +msgstr "Úsáid Comparadóir ACR (in áit BCH)" #: NLPSolverCommon_en_US.properties msgctxt "" @@ -100,7 +102,7 @@ "NLPSolverCommon.Properties.EnhancedSolverStatus\n" "property.text" msgid "Show enhanced solver status" -msgstr "" +msgstr "Taispeáin stádas an réiteora bhreisithe" #: NLPSolverCommon_en_US.properties msgctxt "" @@ -156,7 +158,7 @@ "NLPSolverCommon.Properties.PSCL\n" "property.text" msgid "PS: Mutation Probability (0-0.005)" -msgstr "" +msgstr "PS: Dóchúlacht Shócháin (0-0.005)" #: NLPSolverStatusDialog_en_US.properties msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ga/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.4.4~rc2/translations/source/ga/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ga/officecfg/registry/data/org/openoffice/Office/UI.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ga/officecfg/registry/data/org/openoffice/Office/UI.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LO\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-06-20 13:56+0200\n" -"PO-Revision-Date: 2016-12-01 20:26+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-12 01:36+0000\n" +"Last-Translator: Kevin Scannell \n" "Language-Team: \n" "Language: ga\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1480623990.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510450582.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -23,7 +23,7 @@ "UIName\n" "value.text" msgid "Database Object" -msgstr "" +msgstr "Réad Bunachair Sonraí" #: BaseWindowState.xcu msgctxt "" @@ -77,7 +77,7 @@ "Label\n" "value.text" msgid "Go to Line..." -msgstr "" +msgstr "Léim go Líne..." #: BasicIDECommands.xcu msgctxt "" @@ -158,7 +158,7 @@ "Label\n" "value.text" msgid "BASIC Module" -msgstr "" +msgstr "Modúl BASIC" #: BasicIDECommands.xcu msgctxt "" @@ -167,7 +167,7 @@ "Label\n" "value.text" msgid "BASIC Dialog" -msgstr "" +msgstr "Dialóg BASIC" #: BasicIDECommands.xcu msgctxt "" @@ -176,7 +176,7 @@ "Label\n" "value.text" msgid "Delete" -msgstr "" +msgstr "Scrios" #: BasicIDECommands.xcu msgctxt "" @@ -185,7 +185,7 @@ "Label\n" "value.text" msgid "Rename" -msgstr "" +msgstr "Athainmigh" #: BasicIDECommands.xcu msgctxt "" @@ -194,7 +194,7 @@ "Label\n" "value.text" msgid "Hide" -msgstr "" +msgstr "Folaigh" #: BasicIDEWindowState.xcu #, fuzzy @@ -213,7 +213,7 @@ "UIName\n" "value.text" msgid "Tab Bar" -msgstr "" +msgstr "Barra Cluaisíní" #: BasicIDEWindowState.xcu msgctxt "" @@ -465,7 +465,7 @@ "Label\n" "value.text" msgid "Freeze ~Cells" -msgstr "" +msgstr "Reoigh ~Cealla" #: CalcCommands.xcu msgctxt "" @@ -474,7 +474,7 @@ "Label\n" "value.text" msgid "Freeze ~Rows and Columns" -msgstr "" +msgstr "Reoigh ~Rónna agus Colúin" #: CalcCommands.xcu msgctxt "" @@ -483,7 +483,7 @@ "Label\n" "value.text" msgid "Freeze First Column" -msgstr "" +msgstr "Reoigh an Chéad Cholún" #: CalcCommands.xcu msgctxt "" @@ -492,7 +492,7 @@ "Label\n" "value.text" msgid "Freeze First Row" -msgstr "" +msgstr "Reoigh an Chéad Ró" #: CalcCommands.xcu msgctxt "" @@ -559,7 +559,7 @@ "Label\n" "value.text" msgid "Exit Fill Mode" -msgstr "" +msgstr "Scoir den Mód Líonta" #: CalcCommands.xcu msgctxt "" @@ -622,7 +622,7 @@ "Label\n" "value.text" msgid "Spreadsheet Theme" -msgstr "" +msgstr "Téama Scarbhileoige" #: CalcCommands.xcu msgctxt "" @@ -957,7 +957,7 @@ "Label\n" "value.text" msgid "Pivot Table" -msgstr "" +msgstr "Tábla Maighdeogach" #: CalcCommands.xcu msgctxt "" @@ -966,7 +966,7 @@ "ContextLabel\n" "value.text" msgid "Pi~vot Table..." -msgstr "" +msgstr "Tábla ~Maighdeogach..." #: CalcCommands.xcu msgctxt "" @@ -975,7 +975,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Pivot Table" -msgstr "" +msgstr "Ionsáigh Tábla Maighdeogach" #: CalcCommands.xcu msgctxt "" @@ -984,7 +984,7 @@ "PopupLabel\n" "value.text" msgid "~Edit Layout..." -msgstr "" +msgstr "Cuir an ~Leagan Amach in Eagar..." #: CalcCommands.xcu msgctxt "" @@ -993,7 +993,7 @@ "Label\n" "value.text" msgid "~Create..." -msgstr "" +msgstr "~Cruthaigh..." #: CalcCommands.xcu msgctxt "" @@ -1263,7 +1263,7 @@ "Label\n" "value.text" msgid "Cell Edit Mode" -msgstr "" +msgstr "Mód Eagair na gCeall" #: CalcCommands.xcu msgctxt "" @@ -1335,7 +1335,7 @@ "Label\n" "value.text" msgid "Cell Protection" -msgstr "" +msgstr "Cosaint Chille" #: CalcCommands.xcu msgctxt "" @@ -1344,7 +1344,7 @@ "Label\n" "value.text" msgid "Print Area" -msgstr "" +msgstr "Limistéar Priontála" #: CalcCommands.xcu msgctxt "" @@ -1362,7 +1362,7 @@ "TooltipLabel\n" "value.text" msgid "Define Print Area" -msgstr "" +msgstr "Socraigh an Limistéar Priontála" #: CalcCommands.xcu msgctxt "" @@ -1371,7 +1371,7 @@ "Label\n" "value.text" msgid "Clear" -msgstr "" +msgstr "Bánaigh" #: CalcCommands.xcu msgctxt "" @@ -1389,7 +1389,7 @@ "TooltipLabel\n" "value.text" msgid "Clear Print Ranges" -msgstr "" +msgstr "Bánaigh na Raonta Priontála" #: CalcCommands.xcu msgctxt "" @@ -1398,7 +1398,7 @@ "Label\n" "value.text" msgid "Edit" -msgstr "" +msgstr "Eagar" #: CalcCommands.xcu msgctxt "" @@ -1416,7 +1416,7 @@ "TooltipLabel\n" "value.text" msgid "Edit Print Ranges" -msgstr "" +msgstr "Cuir na Raonta Priontála in Eagar" #: CalcCommands.xcu msgctxt "" @@ -1425,7 +1425,7 @@ "Label\n" "value.text" msgid "Add" -msgstr "" +msgstr "Cuir Leis" #: CalcCommands.xcu msgctxt "" @@ -1443,7 +1443,7 @@ "TooltipLabel\n" "value.text" msgid "Add Print Range" -msgstr "" +msgstr "Cuir Raon Priontála Leis" #: CalcCommands.xcu msgctxt "" @@ -1452,7 +1452,7 @@ "Label\n" "value.text" msgid "Cycle Cell Reference Types" -msgstr "" +msgstr "Téigh trí Chineálacha Tagartha do Chealla" #: CalcCommands.xcu msgctxt "" @@ -1589,7 +1589,7 @@ "Label\n" "value.text" msgid "Fill Single ~Edit" -msgstr "" +msgstr "Líon ~Athrú Amháin" #: CalcCommands.xcu msgctxt "" @@ -1598,7 +1598,7 @@ "ContextLabel\n" "value.text" msgid "Single ~Edit" -msgstr "" +msgstr "~Athrú Amháin" #: CalcCommands.xcu msgctxt "" @@ -1681,7 +1681,7 @@ "Label\n" "value.text" msgid "~Descriptive Statistics..." -msgstr "" +msgstr "Staitisticí ~Tuairisciúla..." #: CalcCommands.xcu msgctxt "" @@ -1690,7 +1690,7 @@ "Label\n" "value.text" msgid "~Analysis of Variance (ANOVA)..." -msgstr "" +msgstr "~Anailís ar Athraitheas (ANOVA)..." #: CalcCommands.xcu msgctxt "" @@ -1699,7 +1699,7 @@ "Label\n" "value.text" msgid "~Correlation..." -msgstr "" +msgstr "~Comhghaolú..." #: CalcCommands.xcu msgctxt "" @@ -1726,7 +1726,7 @@ "Label\n" "value.text" msgid "~Moving Average..." -msgstr "" +msgstr "~Meán Gluaisteach..." #: CalcCommands.xcu msgctxt "" @@ -1735,7 +1735,7 @@ "Label\n" "value.text" msgid "~Regression..." -msgstr "" +msgstr "~Cúlú..." #: CalcCommands.xcu msgctxt "" @@ -1744,7 +1744,7 @@ "Label\n" "value.text" msgid "~t-test..." -msgstr "" +msgstr "~t-thástáil..." #: CalcCommands.xcu msgctxt "" @@ -1753,7 +1753,7 @@ "Label\n" "value.text" msgid "~F-test..." -msgstr "" +msgstr "~F-thástáil..." #: CalcCommands.xcu msgctxt "" @@ -1762,7 +1762,7 @@ "Label\n" "value.text" msgid "~z-test..." -msgstr "" +msgstr "~z-thástáil..." #: CalcCommands.xcu msgctxt "" @@ -1771,7 +1771,7 @@ "Label\n" "value.text" msgid "~Chi-square Test..." -msgstr "" +msgstr "~Tástáil χ²..." #: CalcCommands.xcu #, fuzzy @@ -1898,7 +1898,7 @@ "Label\n" "value.text" msgid "Show All Comments" -msgstr "" +msgstr "Taispeáin na Nótaí go léir" #: CalcCommands.xcu msgctxt "" @@ -1907,7 +1907,7 @@ "Label\n" "value.text" msgid "Hide All Comments" -msgstr "" +msgstr "Folaigh na Nótaí go léir" #: CalcCommands.xcu msgctxt "" @@ -1916,7 +1916,7 @@ "Label\n" "value.text" msgid "Delete All Comments" -msgstr "" +msgstr "Scrios na Nótaí go léir" #: CalcCommands.xcu msgctxt "" @@ -2089,7 +2089,7 @@ "Label\n" "value.text" msgid "~Comment on Change..." -msgstr "" +msgstr "Fág ~Nóta ar Athrú..." #: CalcCommands.xcu msgctxt "" @@ -2107,7 +2107,7 @@ "Label\n" "value.text" msgid "Cle~ar Cells..." -msgstr "" +msgstr "Gl~an Cealla..." #: CalcCommands.xcu #, fuzzy @@ -2273,7 +2273,7 @@ "Label\n" "value.text" msgid "Insert ~Rows Above" -msgstr "" +msgstr "Ionsáigh ~rónna os cionn an ró seo" #: CalcCommands.xcu msgctxt "" @@ -2282,7 +2282,7 @@ "ContextLabel\n" "value.text" msgid "Rows ~Above" -msgstr "" +msgstr "Os cionn ~an ró seo" #: CalcCommands.xcu msgctxt "" @@ -2291,7 +2291,7 @@ "Label\n" "value.text" msgid "Insert ~Rows Above" -msgstr "" +msgstr "Ionsáigh ~rónna os cionn an ró seo" #: CalcCommands.xcu msgctxt "" @@ -2300,7 +2300,7 @@ "ContextLabel\n" "value.text" msgid "Rows ~Above" -msgstr "" +msgstr "Os cionn ~an ró seo" #: CalcCommands.xcu msgctxt "" @@ -2309,7 +2309,7 @@ "PopupLabel\n" "value.text" msgid "Insert Rows ~Above" -msgstr "" +msgstr "Ionsáigh rónna os cionn ~an ró seo" #: CalcCommands.xcu #, fuzzy @@ -2328,7 +2328,7 @@ "ContextLabel\n" "value.text" msgid "Columns ~Left" -msgstr "" +msgstr "Co~lúin Ar Chlé" #: CalcCommands.xcu #, fuzzy @@ -2347,7 +2347,7 @@ "ContextLabel\n" "value.text" msgid "Columns ~Left" -msgstr "" +msgstr "Co~lúin Ar Chlé" #: CalcCommands.xcu #, fuzzy @@ -2366,7 +2366,7 @@ "Label\n" "value.text" msgid "Insert ~Rows Below" -msgstr "" +msgstr "Ionsáigh ~rónna faoin ró seo" #: CalcCommands.xcu msgctxt "" @@ -2375,7 +2375,7 @@ "ContextLabel\n" "value.text" msgid "Rows ~Below" -msgstr "" +msgstr "~Faoin ró seo" #: CalcCommands.xcu msgctxt "" @@ -2384,7 +2384,7 @@ "PopupLabel\n" "value.text" msgid "Insert Rows ~Below" -msgstr "" +msgstr "Ionsáigh rónna ~faoin ró seo" #: CalcCommands.xcu #, fuzzy @@ -2403,7 +2403,7 @@ "ContextLabel\n" "value.text" msgid "Columns ~Right" -msgstr "" +msgstr "Colúin Ar ~Dheis" #: CalcCommands.xcu #, fuzzy @@ -2431,7 +2431,7 @@ "Label\n" "value.text" msgid "Insert Shee~t from File..." -msgstr "" +msgstr "Ionsáigh ~Bileog ó Chomhad..." #: CalcCommands.xcu msgctxt "" @@ -2476,7 +2476,7 @@ "Label\n" "value.text" msgid "~Insert Named Range or Expression..." -msgstr "" +msgstr "~Ionsáigh Raon Ainmnithe nó Slonn..." #: CalcCommands.xcu msgctxt "" @@ -2485,7 +2485,7 @@ "ContextLabel\n" "value.text" msgid "~Named Range or Expression..." -msgstr "" +msgstr "Rao~n Ainmnithe nó Slonn..." #: CalcCommands.xcu msgctxt "" @@ -2910,7 +2910,7 @@ "Label\n" "value.text" msgid "Protect ~Spreadsheet..." -msgstr "" +msgstr "Cosain an ~Scarbhileog..." #: CalcCommands.xcu msgctxt "" @@ -3027,7 +3027,7 @@ "Label\n" "value.text" msgid "Resume streaming" -msgstr "" +msgstr "Atosaigh ag sruthú" #: CalcCommands.xcu msgctxt "" @@ -3036,7 +3036,7 @@ "Label\n" "value.text" msgid "Stop streaming" -msgstr "" +msgstr "Stop den sruthú" #: CalcCommands.xcu msgctxt "" @@ -3180,7 +3180,7 @@ "Label\n" "value.text" msgid "Sheet ~Tab Color..." -msgstr "" +msgstr "Dath ~Chluaisín na Bileoige..." #: CalcCommands.xcu #, fuzzy @@ -3236,7 +3236,7 @@ "Label\n" "value.text" msgid "Insert Sheet at End..." -msgstr "" +msgstr "Ionsáigh Bileog ag an Deireadh..." #: CalcCommands.xcu msgctxt "" @@ -3344,7 +3344,7 @@ "Label\n" "value.text" msgid "Currency" -msgstr "" +msgstr "Airgeadra" #: CalcCommands.xcu msgctxt "" @@ -3353,7 +3353,7 @@ "TooltipLabel\n" "value.text" msgid "Format as Currency" -msgstr "" +msgstr "Formáidigh mar Airgeadra" #: CalcCommands.xcu msgctxt "" @@ -3362,7 +3362,7 @@ "Label\n" "value.text" msgid "Currency" -msgstr "" +msgstr "Airgeadra" #: CalcCommands.xcu msgctxt "" @@ -3371,7 +3371,7 @@ "TooltipLabel\n" "value.text" msgid "Format as Currency" -msgstr "" +msgstr "Formáidigh mar Airgeadra" #: CalcCommands.xcu msgctxt "" @@ -3380,7 +3380,7 @@ "Label\n" "value.text" msgid "Percent" -msgstr "" +msgstr "Céatadán" #: CalcCommands.xcu msgctxt "" @@ -3389,7 +3389,7 @@ "TooltipLabel\n" "value.text" msgid "Format as Percent" -msgstr "" +msgstr "Formáidigh mar Chéatadán" #: CalcCommands.xcu msgctxt "" @@ -3398,7 +3398,7 @@ "Label\n" "value.text" msgid "General" -msgstr "" +msgstr "Ginearálta" #: CalcCommands.xcu msgctxt "" @@ -3407,7 +3407,7 @@ "TooltipLabel\n" "value.text" msgid "Format as General" -msgstr "" +msgstr "Formáid Ghinearálta" #: CalcCommands.xcu msgctxt "" @@ -3416,7 +3416,7 @@ "Label\n" "value.text" msgid "Date" -msgstr "" +msgstr "Dáta" #: CalcCommands.xcu msgctxt "" @@ -3425,7 +3425,7 @@ "TooltipLabel\n" "value.text" msgid "Format as Date" -msgstr "" +msgstr "Formáidigh mar Dháta" #: CalcCommands.xcu msgctxt "" @@ -3434,7 +3434,7 @@ "Label\n" "value.text" msgid "Number" -msgstr "" +msgstr "Uimhir" #: CalcCommands.xcu msgctxt "" @@ -3443,7 +3443,7 @@ "TooltipLabel\n" "value.text" msgid "Format as Number" -msgstr "" +msgstr "Formáidigh mar Uimhir" #: CalcCommands.xcu msgctxt "" @@ -3452,7 +3452,7 @@ "Label\n" "value.text" msgid "Scientific" -msgstr "" +msgstr "Eolaíoch" #: CalcCommands.xcu msgctxt "" @@ -3461,7 +3461,7 @@ "TooltipLabel\n" "value.text" msgid "Format as Scientific" -msgstr "" +msgstr "Formáid Eolaíoch" #: CalcCommands.xcu msgctxt "" @@ -3470,7 +3470,7 @@ "Label\n" "value.text" msgid "Time" -msgstr "" +msgstr "Am" #: CalcCommands.xcu msgctxt "" @@ -3479,7 +3479,7 @@ "TooltipLabel\n" "value.text" msgid "Format as Time" -msgstr "" +msgstr "Formáidigh mar Am" #: CalcCommands.xcu msgctxt "" @@ -3606,7 +3606,7 @@ "Label\n" "value.text" msgid "S~hare Spreadsheet..." -msgstr "" +msgstr "Com~hroinn an Bhileog..." #: CalcCommands.xcu msgctxt "" @@ -3624,7 +3624,7 @@ "ContextLabel\n" "value.text" msgid "Grid Lines for Sheet" -msgstr "" +msgstr "Línte Greille don Bhileog" #: CalcCommands.xcu msgctxt "" @@ -3633,7 +3633,7 @@ "Label\n" "value.text" msgid "Sheet Name" -msgstr "" +msgstr "Ainm na Bileoige" #: CalcCommands.xcu msgctxt "" @@ -3642,7 +3642,7 @@ "Label\n" "value.text" msgid "Document Title" -msgstr "" +msgstr "Teideal na Cáipéise" #: CalcCommands.xcu #, fuzzy @@ -3670,7 +3670,7 @@ "Label\n" "value.text" msgid "Formula to Value" -msgstr "" +msgstr "Foirmle go Luach" #: CalcCommands.xcu #, fuzzy @@ -3726,7 +3726,7 @@ "Label\n" "value.text" msgid "F~ill Cells" -msgstr "" +msgstr "Lí~on Cealla" #: CalcCommands.xcu #, fuzzy @@ -3745,7 +3745,7 @@ "Label\n" "value.text" msgid "~Named Ranges and Expressions" -msgstr "" +msgstr "Rao~nta Ainmnithe agus Sloinn" #: CalcCommands.xcu #, fuzzy @@ -3782,7 +3782,7 @@ "Label\n" "value.text" msgid "More ~Filters" -msgstr "" +msgstr "Tuilleadh ~Scagairí" #: CalcCommands.xcu msgctxt "" @@ -3827,7 +3827,7 @@ "Label\n" "value.text" msgid "Ro~ws" -msgstr "" +msgstr "Ró~nna" #: CalcCommands.xcu msgctxt "" @@ -3836,7 +3836,7 @@ "Label\n" "value.text" msgid "Colu~mns" -msgstr "" +msgstr "C~olúin" #: CalcCommands.xcu msgctxt "" @@ -3854,7 +3854,7 @@ "Label\n" "value.text" msgid "Cell ~Comments" -msgstr "" +msgstr "Nótaí ar ~Chealla" #: CalcCommands.xcu msgctxt "" @@ -3927,7 +3927,7 @@ "ContextLabel\n" "value.text" msgid "~Date" -msgstr "" +msgstr "~Dáta" #: CalcCommands.xcu msgctxt "" @@ -3945,7 +3945,7 @@ "ContextLabel\n" "value.text" msgid "~Time" -msgstr "" +msgstr "~Am" #: CalcCommands.xcu msgctxt "" @@ -3954,7 +3954,7 @@ "Label\n" "value.text" msgid "Export as Image" -msgstr "" +msgstr "Easpórtáil mar Íomhá" #: CalcCommands.xcu msgctxt "" @@ -4028,7 +4028,7 @@ "Label\n" "value.text" msgid "Paste Only Numbers" -msgstr "" +msgstr "Greamaigh Uimhreacha Amháin" #: CalcCommands.xcu #, fuzzy @@ -4047,7 +4047,7 @@ "Label\n" "value.text" msgid "Column" -msgstr "" +msgstr "Colún" #: CalcCommands.xcu msgctxt "" @@ -4056,7 +4056,7 @@ "Label\n" "value.text" msgid "Row" -msgstr "" +msgstr "Ró" #: CalcCommands.xcu msgctxt "" @@ -4065,7 +4065,7 @@ "Label\n" "value.text" msgid "~Insert..." -msgstr "" +msgstr "~Ionsáigh..." #: CalcCommands.xcu msgctxt "" @@ -4074,7 +4074,7 @@ "Label\n" "value.text" msgid "Default" -msgstr "" +msgstr "Réamhshocrú" #: CalcCommands.xcu msgctxt "" @@ -4083,7 +4083,7 @@ "Label\n" "value.text" msgid "Accent 1" -msgstr "" +msgstr "Béim 1" #: CalcCommands.xcu msgctxt "" @@ -4092,7 +4092,7 @@ "Label\n" "value.text" msgid "Accent 2" -msgstr "" +msgstr "Béim 2" #: CalcCommands.xcu msgctxt "" @@ -4101,7 +4101,7 @@ "Label\n" "value.text" msgid "Accent 3" -msgstr "" +msgstr "Béim 3" #: CalcCommands.xcu msgctxt "" @@ -4110,7 +4110,7 @@ "Label\n" "value.text" msgid "Heading 1" -msgstr "" +msgstr "Ceannteideal 1" #: CalcCommands.xcu msgctxt "" @@ -4119,7 +4119,7 @@ "Label\n" "value.text" msgid "Heading 2" -msgstr "" +msgstr "Ceannteideal 2" #: CalcCommands.xcu msgctxt "" @@ -4128,7 +4128,7 @@ "Label\n" "value.text" msgid "Bad" -msgstr "" +msgstr "Go Dona" #: CalcCommands.xcu msgctxt "" @@ -4137,7 +4137,7 @@ "Label\n" "value.text" msgid "Error" -msgstr "" +msgstr "Earráid" #: CalcCommands.xcu msgctxt "" @@ -4146,7 +4146,7 @@ "Label\n" "value.text" msgid "Good" -msgstr "" +msgstr "Go Maith" #: CalcCommands.xcu msgctxt "" @@ -4155,7 +4155,7 @@ "Label\n" "value.text" msgid "Neutral" -msgstr "" +msgstr "Neodrach" #: CalcCommands.xcu msgctxt "" @@ -4164,7 +4164,7 @@ "Label\n" "value.text" msgid "Warning" -msgstr "" +msgstr "Rabhadh" #: CalcCommands.xcu msgctxt "" @@ -4173,7 +4173,7 @@ "Label\n" "value.text" msgid "Footnote" -msgstr "" +msgstr "Fonóta" #: CalcCommands.xcu msgctxt "" @@ -4182,7 +4182,7 @@ "Label\n" "value.text" msgid "Note" -msgstr "" +msgstr "Nóta" #: CalcWindowState.xcu #, fuzzy @@ -4211,7 +4211,7 @@ "UIName\n" "value.text" msgid "Cell Edit" -msgstr "" +msgstr "Cuir Cill in Eagar" #: CalcWindowState.xcu #, fuzzy @@ -4230,7 +4230,7 @@ "UIName\n" "value.text" msgid "Column Header" -msgstr "" +msgstr "Ceanntásc an Cholúin" #: CalcWindowState.xcu #, fuzzy @@ -4299,7 +4299,7 @@ "UIName\n" "value.text" msgid "Notebookbar" -msgstr "" +msgstr "Ribínbharra" #: CalcWindowState.xcu #, fuzzy @@ -4358,7 +4358,7 @@ "UIName\n" "value.text" msgid "Sheet Tabs Bar" -msgstr "" +msgstr "Barra Chluaisíní na mBileog" #: CalcWindowState.xcu #, fuzzy @@ -4387,7 +4387,7 @@ "UIName\n" "value.text" msgid "TSCP Classification" -msgstr "" +msgstr "Aicmiú TSCP" #: CalcWindowState.xcu msgctxt "" @@ -4684,7 +4684,7 @@ "UIName\n" "value.text" msgid "Standard (Single Mode)" -msgstr "" +msgstr "Caighdeánach (Mód Aonair)" #: CalcWindowState.xcu msgctxt "" @@ -4693,7 +4693,7 @@ "UIName\n" "value.text" msgid "Arrows" -msgstr "" +msgstr "Saigheada" #: CalcWindowState.xcu msgctxt "" @@ -4702,7 +4702,7 @@ "UIName\n" "value.text" msgid "Notebookbar shortcuts" -msgstr "" +msgstr "Aicearraí ribínbharra" #: ChartCommands.xcu msgctxt "" @@ -4765,7 +4765,7 @@ "Label\n" "value.text" msgid "Tre~nd Line..." -msgstr "" +msgstr "Lí~ne Treochta..." #: ChartCommands.xcu msgctxt "" @@ -5605,7 +5605,7 @@ "Label\n" "value.text" msgid "Vertical Grids" -msgstr "" +msgstr "Greillí Ingearacha" #: ChartCommands.xcu msgctxt "" @@ -5868,7 +5868,7 @@ "UIName\n" "value.text" msgid "Explorer" -msgstr "" +msgstr "Taiscéalaí" #: DbBrowserWindowState.xcu msgctxt "" @@ -5922,7 +5922,7 @@ "UIName\n" "value.text" msgid "Report" -msgstr "" +msgstr "Tuairisc" #: DbReportWindowState.xcu msgctxt "" @@ -6174,7 +6174,7 @@ "PopupLabel\n" "value.text" msgid "Open..." -msgstr "" +msgstr "Oscail..." #: DbuCommands.xcu msgctxt "" @@ -6372,7 +6372,7 @@ "Label\n" "value.text" msgid "Report..." -msgstr "" +msgstr "Tuairisc..." #: DbuCommands.xcu msgctxt "" @@ -6534,7 +6534,7 @@ "PopupLabel\n" "value.text" msgid "New ~Query (Design View)" -msgstr "" +msgstr "Iarratas ~Nua (Amharc ar Dhearadh)" #: DbuCommands.xcu msgctxt "" @@ -6552,7 +6552,7 @@ "PopupLabel\n" "value.text" msgid "New Query (~SQL View)" -msgstr "" +msgstr "Iarratas Nua (Amharc ~SQL)" #: DbuCommands.xcu msgctxt "" @@ -6570,7 +6570,7 @@ "PopupLabel\n" "value.text" msgid "New ~Table Design" -msgstr "" +msgstr "Dearadh Nua ~Tábla" #: DbuCommands.xcu msgctxt "" @@ -6588,7 +6588,7 @@ "PopupLabel\n" "value.text" msgid "New ~View Design" -msgstr "" +msgstr "Dearadh Nua ~Amhairc" #: DbuCommands.xcu msgctxt "" @@ -6759,7 +6759,7 @@ "Label\n" "value.text" msgid "Rebuild" -msgstr "" +msgstr "Atóg" #: DbuCommands.xcu msgctxt "" @@ -6777,7 +6777,7 @@ "Label\n" "value.text" msgid "Edit ~Database File..." -msgstr "" +msgstr "Cuir an Comhad ~Bunachair Sonraí in Eagar..." #: DbuCommands.xcu msgctxt "" @@ -6786,7 +6786,7 @@ "Label\n" "value.text" msgid "Disco~nnect" -msgstr "" +msgstr "Dí~cheangail" #: DbuCommands.xcu msgctxt "" @@ -6795,7 +6795,7 @@ "Label\n" "value.text" msgid "Registered databases ..." -msgstr "" +msgstr "Bunachair shonraí chláraithe ..." #: DbuCommands.xcu msgctxt "" @@ -6840,7 +6840,7 @@ "Label\n" "value.text" msgid "Close ~Object" -msgstr "" +msgstr "Dún an ~Réad" #: DrawImpressCommands.xcu msgctxt "" @@ -6888,7 +6888,7 @@ "Label\n" "value.text" msgid "Rename Page" -msgstr "" +msgstr "Athainmnigh an Leathanach" #: DrawImpressCommands.xcu #, fuzzy @@ -6907,7 +6907,7 @@ "Label\n" "value.text" msgid "~Rename Layer" -msgstr "" +msgstr "~Athainmnigh an tSraith" #: DrawImpressCommands.xcu msgctxt "" @@ -6916,7 +6916,7 @@ "Label\n" "value.text" msgid "Start from ~First Slide" -msgstr "" +msgstr "Tosaigh ag an ~chéad Sleamhnán" #: DrawImpressCommands.xcu msgctxt "" @@ -6925,7 +6925,7 @@ "Label\n" "value.text" msgid "Start from C~urrent Slide" -msgstr "" +msgstr "Tosaigh ón Sleamhnán ~Reatha" #: DrawImpressCommands.xcu msgctxt "" @@ -6934,7 +6934,7 @@ "Label\n" "value.text" msgid "Jump to Last Edited Slide" -msgstr "" +msgstr "Léim go dtí an Sleamhnán athraithe is déanaí" #: DrawImpressCommands.xcu msgctxt "" @@ -7006,7 +7006,7 @@ "Label\n" "value.text" msgid "Slides per Row" -msgstr "" +msgstr "Sleamhnáin sa Ró" #: DrawImpressCommands.xcu msgctxt "" @@ -7015,7 +7015,7 @@ "Label\n" "value.text" msgid "Fit Text in Textbox Size" -msgstr "" +msgstr "Oiriúnaigh an Téacs don Bhosca Téacs" #: DrawImpressCommands.xcu msgctxt "" @@ -7096,7 +7096,7 @@ "TooltipLabel\n" "value.text" msgid "Show Glue Points Functions" -msgstr "" +msgstr "Taispeáin Feidhmeanna do Ghliúphointí" #: DrawImpressCommands.xcu msgctxt "" @@ -7312,7 +7312,7 @@ "Label\n" "value.text" msgid "Animation" -msgstr "" +msgstr "Beochan" #: DrawImpressCommands.xcu #, fuzzy @@ -7367,7 +7367,7 @@ "Label\n" "value.text" msgid "Duplicate Page" -msgstr "" +msgstr "Cóipeáil an Leathanach" #: DrawImpressCommands.xcu #, fuzzy @@ -7648,7 +7648,7 @@ "Label\n" "value.text" msgid "~Hide Last Level" -msgstr "" +msgstr "~Folaigh an Leibhéal Deireanach" #: DrawImpressCommands.xcu msgctxt "" @@ -7657,7 +7657,7 @@ "Label\n" "value.text" msgid "~Show Next Level" -msgstr "" +msgstr "Tai~speáin an Chéad Leibhéal Eile" #: DrawImpressCommands.xcu msgctxt "" @@ -7666,7 +7666,7 @@ "Label\n" "value.text" msgid "Format Page" -msgstr "" +msgstr "Formáidigh an Leathanach" #: DrawImpressCommands.xcu #, fuzzy @@ -7685,7 +7685,7 @@ "Label\n" "value.text" msgid "Format Slide" -msgstr "" +msgstr "Formáidigh an Sleamhnán" #: DrawImpressCommands.xcu #, fuzzy @@ -7795,7 +7795,7 @@ "Label\n" "value.text" msgid "~New Slide" -msgstr "" +msgstr "Sleamhnán ~Nua" #: DrawImpressCommands.xcu msgctxt "" @@ -7980,7 +7980,7 @@ "Label\n" "value.text" msgid "Modify Layer" -msgstr "" +msgstr "Athraigh an tSraith" #: DrawImpressCommands.xcu #, fuzzy @@ -7999,7 +7999,7 @@ "PopupLabel\n" "value.text" msgid "~Modify Layer..." -msgstr "" +msgstr "~Athraigh an tSraith..." #: DrawImpressCommands.xcu msgctxt "" @@ -8116,7 +8116,7 @@ "Label\n" "value.text" msgid "Not~es" -msgstr "" +msgstr "Nó~taí" #: DrawImpressCommands.xcu msgctxt "" @@ -8125,7 +8125,7 @@ "Label\n" "value.text" msgid "Display Views" -msgstr "" +msgstr "Taispeáin na hAmhairc" #: DrawImpressCommands.xcu msgctxt "" @@ -8134,7 +8134,7 @@ "Label\n" "value.text" msgid "Views Tab ~Bar" -msgstr "" +msgstr "Barra Chluaisíní na nAmharc" #: DrawImpressCommands.xcu msgctxt "" @@ -8143,7 +8143,7 @@ "TooltipLabel\n" "value.text" msgid "Toggle Views Tab Bar Visibility" -msgstr "" +msgstr "Scoránaigh Barra Chluaisíní na nAmharc" #: DrawImpressCommands.xcu msgctxt "" @@ -8161,7 +8161,7 @@ "Label\n" "value.text" msgid "D~elete Page" -msgstr "" +msgstr "Scrios an L~eathanach" #: DrawImpressCommands.xcu msgctxt "" @@ -8170,7 +8170,7 @@ "Label\n" "value.text" msgid "~Delete Slide" -msgstr "" +msgstr "~Scrios an Sleamhnán" #: DrawImpressCommands.xcu #, fuzzy @@ -8704,7 +8704,7 @@ "Label\n" "value.text" msgid "~Replace..." -msgstr "" +msgstr "~Cuir ina áit..." #: DrawImpressCommands.xcu msgctxt "" @@ -8713,7 +8713,7 @@ "Label\n" "value.text" msgid "Co~mpress..." -msgstr "" +msgstr "Co~mhbhrúigh..." #: DrawImpressCommands.xcu msgctxt "" @@ -8722,7 +8722,7 @@ "Label\n" "value.text" msgid "Set Background Image..." -msgstr "" +msgstr "Socraigh an Íomhá Chúlra..." #: DrawImpressCommands.xcu msgctxt "" @@ -8731,7 +8731,7 @@ "Label\n" "value.text" msgid "Save Background Image..." -msgstr "" +msgstr "Sábháil an Íomhá Chúlra..." #: DrawImpressCommands.xcu msgctxt "" @@ -8758,7 +8758,7 @@ "Label\n" "value.text" msgid "E~dit Style..." -msgstr "" +msgstr "Cuir an Stíl in ~Eagar..." #: DrawImpressCommands.xcu msgctxt "" @@ -8839,7 +8839,7 @@ "Label\n" "value.text" msgid "Zoom & Pan (CTRL to Zoom Out, SHIFT to Pan)" -msgstr "" +msgstr "Zúmáil ⁊ Peanáil (CTRL le Zúmáil Amach, SHIFT le Peanáil)" #: DrawImpressCommands.xcu msgctxt "" @@ -8983,7 +8983,7 @@ "Label\n" "value.text" msgid "~Master Elements..." -msgstr "" +msgstr "~Máistireilimintí..." #: DrawImpressCommands.xcu msgctxt "" @@ -9055,7 +9055,7 @@ "Label\n" "value.text" msgid "Slide ~Pane" -msgstr "" +msgstr "~Pána Sleamhnáin" #: DrawImpressCommands.xcu msgctxt "" @@ -9136,7 +9136,7 @@ "Label\n" "value.text" msgid "Insert Row Below" -msgstr "" +msgstr "Ionsáigh ró faoin ró seo" #: DrawImpressCommands.xcu msgctxt "" @@ -9145,7 +9145,7 @@ "Label\n" "value.text" msgid "Insert Row Above" -msgstr "" +msgstr "Ionsáigh ró os cionn an ró seo" #: DrawImpressCommands.xcu #, fuzzy @@ -9193,7 +9193,7 @@ "Label\n" "value.text" msgid "Insert Column Right" -msgstr "" +msgstr "Ionsáigh Colún Ar Dheis" #: DrawImpressCommands.xcu msgctxt "" @@ -9202,7 +9202,7 @@ "Label\n" "value.text" msgid "Insert Column Left" -msgstr "" +msgstr "Ionsáigh Colún Ar Chlé" #: DrawImpressCommands.xcu #, fuzzy @@ -9648,7 +9648,7 @@ "Label\n" "value.text" msgid "Move Page to Start" -msgstr "" +msgstr "Cuir an Leathanach ag an Tosach" #: DrawImpressCommands.xcu msgctxt "" @@ -9657,7 +9657,7 @@ "ContextLabel\n" "value.text" msgid "Page to Start" -msgstr "" +msgstr "Leathanach go dtí an Tosach" #: DrawImpressCommands.xcu msgctxt "" @@ -9666,7 +9666,7 @@ "Label\n" "value.text" msgid "Move Slide to Start" -msgstr "" +msgstr "Cuir an Sleamhnán ag an Tosach" #: DrawImpressCommands.xcu msgctxt "" @@ -9675,7 +9675,7 @@ "ContextLabel\n" "value.text" msgid "Slide to Start" -msgstr "" +msgstr "Sleamhnán go dtí an Tosach" #: DrawImpressCommands.xcu msgctxt "" @@ -9684,7 +9684,7 @@ "Label\n" "value.text" msgid "Move Page Up" -msgstr "" +msgstr "Bog an Leathanach Suas" #: DrawImpressCommands.xcu #, fuzzy @@ -9703,7 +9703,7 @@ "Label\n" "value.text" msgid "Move Slide Up" -msgstr "" +msgstr "Bog an Sleamhnán Suas" #: DrawImpressCommands.xcu msgctxt "" @@ -9712,7 +9712,7 @@ "ContextLabel\n" "value.text" msgid "Slide Up" -msgstr "" +msgstr "Sleamhnán Suas" #: DrawImpressCommands.xcu msgctxt "" @@ -9721,7 +9721,7 @@ "Label\n" "value.text" msgid "Move Page Down" -msgstr "" +msgstr "Bog an Leathanach Síos" #: DrawImpressCommands.xcu #, fuzzy @@ -9740,7 +9740,7 @@ "Label\n" "value.text" msgid "Move Slide Down" -msgstr "" +msgstr "Bog an Sleamhnán Síos" #: DrawImpressCommands.xcu msgctxt "" @@ -9749,7 +9749,7 @@ "ContextLabel\n" "value.text" msgid "Slide Down" -msgstr "" +msgstr "Sleamhnán Síos" #: DrawImpressCommands.xcu msgctxt "" @@ -9758,7 +9758,7 @@ "Label\n" "value.text" msgid "Move Page to End" -msgstr "" +msgstr "Cuir an Leathanach ag an Deireadh" #: DrawImpressCommands.xcu msgctxt "" @@ -9767,7 +9767,7 @@ "ContextLabel\n" "value.text" msgid "Page to End" -msgstr "" +msgstr "Leathanach go dtí an Deireadh" #: DrawImpressCommands.xcu msgctxt "" @@ -9776,7 +9776,7 @@ "Label\n" "value.text" msgid "Move Slide to End" -msgstr "" +msgstr "Cuir an Sleamhnán ag an Deireadh" #: DrawImpressCommands.xcu msgctxt "" @@ -9785,7 +9785,7 @@ "ContextLabel\n" "value.text" msgid "Slide to End" -msgstr "" +msgstr "Sleamhnán go dtí an Deireadh" #: DrawImpressCommands.xcu msgctxt "" @@ -9794,7 +9794,7 @@ "Label\n" "value.text" msgid "Blank Slide" -msgstr "" +msgstr "Sleamhnán Bán" #: DrawImpressCommands.xcu msgctxt "" @@ -9803,7 +9803,7 @@ "Label\n" "value.text" msgid "Title Only" -msgstr "" +msgstr "Teideal Amháin" #: DrawImpressCommands.xcu msgctxt "" @@ -9812,7 +9812,7 @@ "Label\n" "value.text" msgid "Title Slide" -msgstr "" +msgstr "Sleamhnán Teidil" #: DrawImpressCommands.xcu msgctxt "" @@ -9821,7 +9821,7 @@ "Label\n" "value.text" msgid "Title, Content" -msgstr "" +msgstr "Teideal, Ábhar" #: DrawImpressCommands.xcu msgctxt "" @@ -9830,7 +9830,7 @@ "Label\n" "value.text" msgid "Centered Text" -msgstr "" +msgstr "Téacs Láraithe" #: DrawImpressCommands.xcu msgctxt "" @@ -9839,7 +9839,7 @@ "Label\n" "value.text" msgid "Title and 2 Content" -msgstr "" +msgstr "Teideal agus 2 Ábhar" #: DrawImpressCommands.xcu msgctxt "" @@ -9848,7 +9848,7 @@ "Label\n" "value.text" msgid "Title, Content and 2 Content" -msgstr "" +msgstr "Teideal, Ábhar agus 2 Ábhar" #: DrawImpressCommands.xcu msgctxt "" @@ -9857,7 +9857,7 @@ "Label\n" "value.text" msgid "Title, 2 Content and Content" -msgstr "" +msgstr "Teideal, 2 Ábhar agus Ábhar" #: DrawImpressCommands.xcu msgctxt "" @@ -9866,7 +9866,7 @@ "Label\n" "value.text" msgid "Title, Content over Content" -msgstr "" +msgstr "Teideal, Ábhar os cionn Ábhair" #: DrawImpressCommands.xcu msgctxt "" @@ -9875,7 +9875,7 @@ "Label\n" "value.text" msgid "Title, 2 Content over Content" -msgstr "" +msgstr "Teideal, 2 Ábhar os cionn Ábhair" #: DrawImpressCommands.xcu msgctxt "" @@ -9884,7 +9884,7 @@ "Label\n" "value.text" msgid "Title, 4 Content" -msgstr "" +msgstr "Teideal, 4 Ábhar" #: DrawImpressCommands.xcu msgctxt "" @@ -9893,7 +9893,7 @@ "Label\n" "value.text" msgid "Title, 6 Content" -msgstr "" +msgstr "Teideal, 6 Ábhar" #: DrawImpressCommands.xcu msgctxt "" @@ -9902,7 +9902,7 @@ "Label\n" "value.text" msgid "Vertical Title, Vertical Text" -msgstr "" +msgstr "Teideal Ingearach, Téacs Ingearach" #: DrawImpressCommands.xcu msgctxt "" @@ -9911,7 +9911,7 @@ "Label\n" "value.text" msgid "Vertical Title, Text, Chart" -msgstr "" +msgstr "Teideal Ingearach, Téacs, Cairt" #: DrawImpressCommands.xcu msgctxt "" @@ -9920,7 +9920,7 @@ "Label\n" "value.text" msgid "Title, Vertical Text" -msgstr "" +msgstr "Teideal, Téacs Ingearach" #: DrawImpressCommands.xcu msgctxt "" @@ -9929,7 +9929,7 @@ "Label\n" "value.text" msgid "Title, 2 Vertical Text, Clipart" -msgstr "" +msgstr "Teideal, 2 Théacs Ingearach, Fáiscealaín" #: DrawImpressCommands.xcu #, fuzzy @@ -9958,7 +9958,7 @@ "Label\n" "value.text" msgid "Slid~e Features" -msgstr "" +msgstr "Gnéith~e an tSleamhnáin" #: DrawImpressCommands.xcu #, fuzzy @@ -9997,7 +9997,7 @@ "Label\n" "value.text" msgid "Presentation ~Object..." -msgstr "" +msgstr "Réad Láithre~oireachta..." #: DrawImpressCommands.xcu msgctxt "" @@ -10006,7 +10006,7 @@ "Label\n" "value.text" msgid "Hanging Indent" -msgstr "" +msgstr "Eangú Crochta" #: DrawWindowState.xcu #, fuzzy @@ -10025,7 +10025,7 @@ "UIName\n" "value.text" msgid "3D Scene" -msgstr "" +msgstr "Radharc 3T" #: DrawWindowState.xcu msgctxt "" @@ -10034,7 +10034,7 @@ "UIName\n" "value.text" msgid "3D Scene (group)" -msgstr "" +msgstr "Radharc 3T (grúpa)" #: DrawWindowState.xcu msgctxt "" @@ -10043,7 +10043,7 @@ "UIName\n" "value.text" msgid "Connector/Freeform Line" -msgstr "" +msgstr "Nascóir/Líne Saorfhoirme" #: DrawWindowState.xcu #, fuzzy @@ -10132,7 +10132,7 @@ "UIName\n" "value.text" msgid "Layer Tabs bar" -msgstr "" +msgstr "Barra Chluaisíní na Sraitheanna" #: DrawWindowState.xcu msgctxt "" @@ -10141,7 +10141,7 @@ "UIName\n" "value.text" msgid "Line/Arrow" -msgstr "" +msgstr "Líne/Saighead" #: DrawWindowState.xcu #, fuzzy @@ -10170,7 +10170,7 @@ "UIName\n" "value.text" msgid "Multiple Selection" -msgstr "" +msgstr "Ilroghnú" #: DrawWindowState.xcu #, fuzzy @@ -10209,7 +10209,7 @@ "UIName\n" "value.text" msgid "Page Pane (no selection)" -msgstr "" +msgstr "Pána Leathanaigh (gan roghnúchán)" #: DrawWindowState.xcu msgctxt "" @@ -10218,7 +10218,7 @@ "UIName\n" "value.text" msgid "Page Master Pane" -msgstr "" +msgstr "Pána na Máistirleathanach" #: DrawWindowState.xcu msgctxt "" @@ -10227,7 +10227,7 @@ "UIName\n" "value.text" msgid "Page Master Pane (no selection)" -msgstr "" +msgstr "Pána na Máistirleathanach (gan roghnúchán)" #: DrawWindowState.xcu #, fuzzy @@ -10246,7 +10246,7 @@ "UIName\n" "value.text" msgid "Table Text" -msgstr "" +msgstr "Téacs an Tábla" #: DrawWindowState.xcu msgctxt "" @@ -10255,7 +10255,7 @@ "UIName\n" "value.text" msgid "Text Box (drawing)" -msgstr "" +msgstr "Bosca Téacs (líníocht)" #: DrawWindowState.xcu msgctxt "" @@ -10381,7 +10381,7 @@ "UIName\n" "value.text" msgid "Legacy Circles and Ovals" -msgstr "" +msgstr "Seanchiorcail agus Ubhchruthanna" #: DrawWindowState.xcu msgctxt "" @@ -10509,7 +10509,7 @@ "UIName\n" "value.text" msgid "Legacy Rectangles" -msgstr "" +msgstr "Sean-dronuilleoga" #: DrawWindowState.xcu msgctxt "" @@ -10725,7 +10725,7 @@ "Label\n" "value.text" msgid "Oval Vertical" -msgstr "" +msgstr "Ubhchruth Ingearach" #: Effects.xcu msgctxt "" @@ -13022,7 +13022,7 @@ "Label\n" "value.text" msgid "Venetian" -msgstr "" +msgstr "Veinéiseach" #: Effects.xcu msgctxt "" @@ -13031,7 +13031,7 @@ "Label\n" "value.text" msgid "3D Venetian" -msgstr "" +msgstr "Veinéiseach 3T" #: Effects.xcu #, fuzzy @@ -13050,7 +13050,7 @@ "Label\n" "value.text" msgid "Checkers" -msgstr "" +msgstr "Seicear" #: Effects.xcu msgctxt "" @@ -13059,7 +13059,7 @@ "Label\n" "value.text" msgid "Comb" -msgstr "" +msgstr "Cíor" #: Effects.xcu #, fuzzy @@ -13078,7 +13078,7 @@ "Label\n" "value.text" msgid "Uncover" -msgstr "" +msgstr "Nocht" #: Effects.xcu #, fuzzy @@ -13117,7 +13117,7 @@ "Label\n" "value.text" msgid "Push" -msgstr "" +msgstr "Brúigh" #: Effects.xcu #, fuzzy @@ -13136,7 +13136,7 @@ "Label\n" "value.text" msgid "Fade" -msgstr "" +msgstr "Éag" #: Effects.xcu msgctxt "" @@ -13145,7 +13145,7 @@ "Label\n" "value.text" msgid "Bars" -msgstr "" +msgstr "Barraí" #: Effects.xcu #, fuzzy @@ -13174,7 +13174,7 @@ "Label\n" "value.text" msgid "Diagonal" -msgstr "" +msgstr "Trasnánach" #: Effects.xcu msgctxt "" @@ -13183,7 +13183,7 @@ "Label\n" "value.text" msgid "Random" -msgstr "" +msgstr "Randamach" #: Effects.xcu #, fuzzy @@ -13222,7 +13222,7 @@ "Label\n" "value.text" msgid "Tiles" -msgstr "" +msgstr "Tíleanna" #: Effects.xcu #, fuzzy @@ -13251,7 +13251,7 @@ "Label\n" "value.text" msgid "Helix" -msgstr "" +msgstr "Héilics" #: Effects.xcu #, fuzzy @@ -13320,7 +13320,7 @@ "Label\n" "value.text" msgid "Vortex" -msgstr "" +msgstr "Guairneán" #: Effects.xcu msgctxt "" @@ -13329,7 +13329,7 @@ "Label\n" "value.text" msgid "Ripple" -msgstr "" +msgstr "Tonnán" #: Effects.xcu msgctxt "" @@ -13338,7 +13338,7 @@ "Label\n" "value.text" msgid "Glitter" -msgstr "" +msgstr "Glioscarnach" #: Effects.xcu msgctxt "" @@ -13347,7 +13347,7 @@ "Label\n" "value.text" msgid "Honeycomb" -msgstr "" +msgstr "Cíor mheala" #: Effects.xcu msgctxt "" @@ -13356,7 +13356,7 @@ "Label\n" "value.text" msgid "Plain" -msgstr "" +msgstr "Simplí" #: Effects.xcu #, fuzzy @@ -13395,7 +13395,7 @@ "Label\n" "value.text" msgid "Top Left to Bottom Right" -msgstr "" +msgstr "Ó Bharr ar Chlé go Bun ar Dheis" #: Effects.xcu msgctxt "" @@ -13404,7 +13404,7 @@ "Label\n" "value.text" msgid "Top to Bottom" -msgstr "" +msgstr "Ó Bharr go Bun" #: Effects.xcu msgctxt "" @@ -13413,7 +13413,7 @@ "Label\n" "value.text" msgid "Top Right to Bottom Left" -msgstr "" +msgstr "Ó Bharr ar Dheis go Bun ar Chlé" #: Effects.xcu #, fuzzy @@ -13432,7 +13432,7 @@ "Label\n" "value.text" msgid "Bottom Right to Top Left" -msgstr "" +msgstr "Ó Bhun ar Dheis go Barr ar Chlé" #: Effects.xcu msgctxt "" @@ -13441,7 +13441,7 @@ "Label\n" "value.text" msgid "Bottom to Top" -msgstr "" +msgstr "Ó Bhun go Barr" #: Effects.xcu msgctxt "" @@ -13450,7 +13450,7 @@ "Label\n" "value.text" msgid "Bottom Left to Top Right" -msgstr "" +msgstr "Ó Bhun ar Chlé go Barr ar Dheis" #: Effects.xcu #, fuzzy @@ -13559,7 +13559,7 @@ "Label\n" "value.text" msgid "Oval Horizontal" -msgstr "" +msgstr "Ubhchruth Cothrománach" #: Effects.xcu msgctxt "" @@ -13568,7 +13568,7 @@ "Label\n" "value.text" msgid "Oval Vertical" -msgstr "" +msgstr "Ubhchruth Ingearach" #: Effects.xcu #, fuzzy @@ -13637,7 +13637,7 @@ "Label\n" "value.text" msgid "Clockwise 1 Spoke" -msgstr "" +msgstr "Deisealach, Spóca Amháin" #: Effects.xcu msgctxt "" @@ -13646,7 +13646,7 @@ "Label\n" "value.text" msgid "Clockwise 2 Spokes" -msgstr "" +msgstr "Deisealach, 2 Spóca" #: Effects.xcu msgctxt "" @@ -13655,7 +13655,7 @@ "Label\n" "value.text" msgid "Clockwise 3 Spokes" -msgstr "" +msgstr "Deisealach, 3 Spóca" #: Effects.xcu msgctxt "" @@ -13664,7 +13664,7 @@ "Label\n" "value.text" msgid "Clockwise 4 Spokes" -msgstr "" +msgstr "Deisealach, 4 Spóca" #: Effects.xcu msgctxt "" @@ -13673,7 +13673,7 @@ "Label\n" "value.text" msgid "Clockwise 8 Spokes" -msgstr "" +msgstr "Deisealach, 8 Spóca" #: Effects.xcu msgctxt "" @@ -13682,7 +13682,7 @@ "Label\n" "value.text" msgid "Counterclockwise 1 Spoke" -msgstr "" +msgstr "Tuathalach, 1 Spóca" #: Effects.xcu msgctxt "" @@ -13691,7 +13691,7 @@ "Label\n" "value.text" msgid "Counterclockwise 2 Spokes" -msgstr "" +msgstr "Tuathalach, 2 Spóca" #: Effects.xcu msgctxt "" @@ -13700,7 +13700,7 @@ "Label\n" "value.text" msgid "Counterclockwise 3 Spokes" -msgstr "" +msgstr "Tuathalach, 3 Spóca" #: Effects.xcu msgctxt "" @@ -13709,7 +13709,7 @@ "Label\n" "value.text" msgid "Counterclockwise 4 Spokes" -msgstr "" +msgstr "Tuathalach, 4 Spóca" #: Effects.xcu msgctxt "" @@ -13718,7 +13718,7 @@ "Label\n" "value.text" msgid "Counterclockwise 8 Spokes" -msgstr "" +msgstr "Tuathalach, 8 Spóca" #: Effects.xcu msgctxt "" @@ -13727,7 +13727,7 @@ "Label\n" "value.text" msgid "Inside" -msgstr "" +msgstr "Istigh" #: Effects.xcu msgctxt "" @@ -13736,7 +13736,7 @@ "Label\n" "value.text" msgid "Outside" -msgstr "" +msgstr "Amuigh" #: Effects.xcu msgctxt "" @@ -14124,7 +14124,7 @@ "Label\n" "value.text" msgid "Polygon, Filled" -msgstr "" +msgstr "Polagán, Líonta" #: GenericCommands.xcu msgctxt "" @@ -14133,7 +14133,7 @@ "Label\n" "value.text" msgid "Show Comme~nts" -msgstr "" +msgstr "Taispeáin ~Nótaí" #: GenericCommands.xcu msgctxt "" @@ -14142,7 +14142,7 @@ "ContextLabel\n" "value.text" msgid "Comments" -msgstr "" +msgstr "Nótaí" #: GenericCommands.xcu msgctxt "" @@ -14151,7 +14151,7 @@ "Label\n" "value.text" msgid "~Replace with" -msgstr "" +msgstr "~Ionadaigh le" #: GenericCommands.xcu #, fuzzy @@ -14188,7 +14188,7 @@ "Label\n" "value.text" msgid "Toggle Unicode Notation" -msgstr "" +msgstr "Scoránaigh Nodaireacht Unicode" #: GenericCommands.xcu #, fuzzy @@ -14207,7 +14207,7 @@ "ContextLabel\n" "value.text" msgid "Fontwork..." -msgstr "" +msgstr "Fontwork..." #: GenericCommands.xcu msgctxt "" @@ -14271,7 +14271,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Basic Shapes" -msgstr "" +msgstr "Ionsáigh Bunchruthanna" #: GenericCommands.xcu msgctxt "" @@ -14299,7 +14299,7 @@ "Label\n" "value.text" msgid "Increase" -msgstr "" +msgstr "Méadaigh" #: GenericCommands.xcu msgctxt "" @@ -14308,7 +14308,7 @@ "ContextLabel\n" "value.text" msgid "Increase Paragraph Spacing" -msgstr "" +msgstr "Méadaigh an Spásáil idir Ailt" #: GenericCommands.xcu msgctxt "" @@ -14317,7 +14317,7 @@ "TooltipLabel\n" "value.text" msgid "Increase Paragraph Spacing" -msgstr "" +msgstr "Méadaigh an Spásáil idir Ailt" #: GenericCommands.xcu msgctxt "" @@ -14326,7 +14326,7 @@ "Label\n" "value.text" msgid "Decrease" -msgstr "" +msgstr "Laghdaigh" #: GenericCommands.xcu msgctxt "" @@ -14335,7 +14335,7 @@ "ContextLabel\n" "value.text" msgid "Decrease Paragraph Spacing" -msgstr "" +msgstr "Laghdaigh an Spásáil idir Ailt" #: GenericCommands.xcu msgctxt "" @@ -14344,7 +14344,7 @@ "TooltipLabel\n" "value.text" msgid "Decrease Paragraph Spacing" -msgstr "" +msgstr "Laghdaigh an Spásáil idir Ailt" #: GenericCommands.xcu msgctxt "" @@ -14353,7 +14353,7 @@ "Label\n" "value.text" msgid "Arrow Shapes" -msgstr "" +msgstr "Cruthanna Saighead" #: GenericCommands.xcu msgctxt "" @@ -14362,7 +14362,7 @@ "ContextLabel\n" "value.text" msgid "~Arrow" -msgstr "" +msgstr "S~aighead" #: GenericCommands.xcu msgctxt "" @@ -14371,7 +14371,7 @@ "Label\n" "value.text" msgid "Flowchart Shapes" -msgstr "" +msgstr "Cruthanna Sreabhchairte" #: GenericCommands.xcu msgctxt "" @@ -14380,7 +14380,7 @@ "ContextLabel\n" "value.text" msgid "~Flowchart" -msgstr "" +msgstr "~Sreabhchairt" #: GenericCommands.xcu msgctxt "" @@ -14389,7 +14389,7 @@ "Label\n" "value.text" msgid "Callout Shapes" -msgstr "" +msgstr "Cruthanna Tagrán" #: GenericCommands.xcu msgctxt "" @@ -14398,7 +14398,7 @@ "ContextLabel\n" "value.text" msgid "~Callout" -msgstr "" +msgstr "~Tagrán" #: GenericCommands.xcu msgctxt "" @@ -14407,7 +14407,7 @@ "Label\n" "value.text" msgid "Star Shapes" -msgstr "" +msgstr "Cruthanna Réiltíní" #: GenericCommands.xcu msgctxt "" @@ -14416,7 +14416,7 @@ "ContextLabel\n" "value.text" msgid "S~tar" -msgstr "" +msgstr "Réil~tín" #: GenericCommands.xcu msgctxt "" @@ -14686,7 +14686,7 @@ "Label\n" "value.text" msgid "Prohibited" -msgstr "" +msgstr "Toirmiscthe" #: GenericCommands.xcu msgctxt "" @@ -15397,7 +15397,7 @@ "Label\n" "value.text" msgid "6-Point Star, Concave" -msgstr "" +msgstr "Réalta le 6 Phointe, Cuasach" #: GenericCommands.xcu msgctxt "" @@ -15811,7 +15811,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Text Box" -msgstr "" +msgstr "Ionsáigh Bosca Téacs" #: GenericCommands.xcu msgctxt "" @@ -15883,7 +15883,7 @@ "Label\n" "value.text" msgid "Increase" -msgstr "" +msgstr "Méadaigh" #: GenericCommands.xcu msgctxt "" @@ -15892,7 +15892,7 @@ "ContextLabel\n" "value.text" msgid "Increase Size" -msgstr "" +msgstr "Méadaigh" #: GenericCommands.xcu msgctxt "" @@ -15901,7 +15901,7 @@ "TooltipLabel\n" "value.text" msgid "Increase Font Size" -msgstr "" +msgstr "Cló Níos Mó" #: GenericCommands.xcu msgctxt "" @@ -15910,7 +15910,7 @@ "Label\n" "value.text" msgid "Decrease" -msgstr "" +msgstr "Laghdaigh" #: GenericCommands.xcu msgctxt "" @@ -15919,7 +15919,7 @@ "ContextLabel\n" "value.text" msgid "Decrease Size" -msgstr "" +msgstr "Laghdaigh" #: GenericCommands.xcu msgctxt "" @@ -15928,7 +15928,7 @@ "TooltipLabel\n" "value.text" msgid "Decrease Font Size" -msgstr "" +msgstr "Cló Níos Lú" #: GenericCommands.xcu msgctxt "" @@ -15946,7 +15946,7 @@ "PopupLabel\n" "value.text" msgid "Modules..." -msgstr "" +msgstr "Modúil..." #: GenericCommands.xcu msgctxt "" @@ -15964,7 +15964,7 @@ "TooltipLabel\n" "value.text" msgid "Toggle Shadow" -msgstr "" +msgstr "Scoránaigh Scáth" #: GenericCommands.xcu msgctxt "" @@ -16009,7 +16009,7 @@ "Label\n" "value.text" msgid "Underline" -msgstr "" +msgstr "Líne Faoi" #: GenericCommands.xcu msgctxt "" @@ -16081,7 +16081,7 @@ "Label\n" "value.text" msgid "Search Formatted Display String" -msgstr "" +msgstr "Cuardaigh an Teaghrán Taispeána Formáidithe" #: GenericCommands.xcu msgctxt "" @@ -16108,7 +16108,7 @@ "Label\n" "value.text" msgid "[placeholder for message]" -msgstr "" +msgstr "[ionadchoinneálaí]" #: GenericCommands.xcu msgctxt "" @@ -16126,7 +16126,7 @@ "Label\n" "value.text" msgid "~What's This?" -msgstr "" +msgstr "~Cad é Seo?" #: GenericCommands.xcu msgctxt "" @@ -16189,7 +16189,7 @@ "Label\n" "value.text" msgid "Left" -msgstr "" +msgstr "Ar Chlé" #: GenericCommands.xcu msgctxt "" @@ -16198,7 +16198,7 @@ "TooltipLabel\n" "value.text" msgid "Align Left" -msgstr "" +msgstr "Ailínigh Ar Chlé" #: GenericCommands.xcu msgctxt "" @@ -16207,7 +16207,7 @@ "Label\n" "value.text" msgid "Right" -msgstr "" +msgstr "Ar Dheis" #: GenericCommands.xcu msgctxt "" @@ -16216,7 +16216,7 @@ "TooltipLabel\n" "value.text" msgid "Align Right" -msgstr "" +msgstr "Ailínigh Ar Dheis" #: GenericCommands.xcu msgctxt "" @@ -16225,7 +16225,7 @@ "Label\n" "value.text" msgid "Center" -msgstr "" +msgstr "Sa Lár" #: GenericCommands.xcu msgctxt "" @@ -16234,7 +16234,7 @@ "TooltipLabel\n" "value.text" msgid "Center Horizontally" -msgstr "" +msgstr "Láraigh go Cothrománach" #: GenericCommands.xcu msgctxt "" @@ -16270,7 +16270,7 @@ "TooltipLabel\n" "value.text" msgid "Set Line Spacing" -msgstr "" +msgstr "Socraigh Spásáil na Línte" #: GenericCommands.xcu msgctxt "" @@ -16513,7 +16513,7 @@ "Label\n" "value.text" msgid "Optimal" -msgstr "" +msgstr "Optamach" #: GenericCommands.xcu msgctxt "" @@ -16522,7 +16522,7 @@ "ContextLabel\n" "value.text" msgid "Optimal View" -msgstr "" +msgstr "Amharc Optamach" #: GenericCommands.xcu msgctxt "" @@ -16549,7 +16549,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Line" -msgstr "" +msgstr "Ionsáigh Líne" #: GenericCommands.xcu msgctxt "" @@ -16558,7 +16558,7 @@ "Label\n" "value.text" msgid "Lines and Arrows" -msgstr "" +msgstr "Línte agus Saigheada" #: GenericCommands.xcu msgctxt "" @@ -16567,7 +16567,7 @@ "Label\n" "value.text" msgid "Line Starts with Arrow" -msgstr "" +msgstr "Tosaíonn an Líne le Saighead" #: GenericCommands.xcu msgctxt "" @@ -16576,7 +16576,7 @@ "Label\n" "value.text" msgid "Line Ends with Arrow" -msgstr "" +msgstr "Críochnaíonn an Líne le Saighead" #: GenericCommands.xcu msgctxt "" @@ -16585,7 +16585,7 @@ "Label\n" "value.text" msgid "Line with Arrows" -msgstr "" +msgstr "Líne le Saigheada" #: GenericCommands.xcu msgctxt "" @@ -16594,7 +16594,7 @@ "Label\n" "value.text" msgid "Line with Arrow/Circle" -msgstr "" +msgstr "Líne le Saighead/Ciorcal" #: GenericCommands.xcu msgctxt "" @@ -16603,7 +16603,7 @@ "Label\n" "value.text" msgid "Line with Circle/Arrow" -msgstr "" +msgstr "Líne le Ciorcal/Saighead" #: GenericCommands.xcu msgctxt "" @@ -16612,7 +16612,7 @@ "Label\n" "value.text" msgid "Line with Arrow/Square" -msgstr "" +msgstr "Líne le Saighead/Cearnóg" #: GenericCommands.xcu msgctxt "" @@ -16621,7 +16621,7 @@ "Label\n" "value.text" msgid "Line with Square/Arrow" -msgstr "" +msgstr "Líne le Cearnóg/Saighead" #: GenericCommands.xcu msgctxt "" @@ -16630,7 +16630,7 @@ "Label\n" "value.text" msgid "Dimension Line" -msgstr "" +msgstr "Toislíne" #: GenericCommands.xcu msgctxt "" @@ -16639,7 +16639,7 @@ "Label\n" "value.text" msgid "Image Mode" -msgstr "" +msgstr "Mód Íomhá" #: GenericCommands.xcu msgctxt "" @@ -16666,7 +16666,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Rectangle" -msgstr "" +msgstr "Ionsáigh Dronuilleog" #: GenericCommands.xcu msgctxt "" @@ -16693,7 +16693,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Ellipse" -msgstr "" +msgstr "Ionsáigh Éilips" #: GenericCommands.xcu msgctxt "" @@ -16738,7 +16738,7 @@ "Label\n" "value.text" msgid "Crop Image Dialog..." -msgstr "" +msgstr "Dialóg: Bearr Íomhá..." #: GenericCommands.xcu msgctxt "" @@ -16747,7 +16747,7 @@ "ContextLabel\n" "value.text" msgid "Crop Dialog..." -msgstr "" +msgstr "Dialóg: Bearr..." #: GenericCommands.xcu msgctxt "" @@ -16756,7 +16756,7 @@ "Label\n" "value.text" msgid "Crop" -msgstr "" +msgstr "Bearr" #: GenericCommands.xcu msgctxt "" @@ -16765,7 +16765,7 @@ "TooltipLabel\n" "value.text" msgid "Crop Image" -msgstr "" +msgstr "Bearr an Íomhá" #: GenericCommands.xcu msgctxt "" @@ -16774,7 +16774,7 @@ "Label\n" "value.text" msgid "Replace Image" -msgstr "" +msgstr "Cuir íomhá eile ina áit" #: GenericCommands.xcu msgctxt "" @@ -16783,7 +16783,7 @@ "ContextLabel\n" "value.text" msgid "~Replace..." -msgstr "" +msgstr "~Ionadaigh..." #: GenericCommands.xcu msgctxt "" @@ -16792,7 +16792,7 @@ "Label\n" "value.text" msgid "Compress Image" -msgstr "" +msgstr "Comhbhrúigh an Íomhá" #: GenericCommands.xcu msgctxt "" @@ -16801,7 +16801,7 @@ "ContextLabel\n" "value.text" msgid "Co~mpress..." -msgstr "" +msgstr "Co~mhbhrúigh..." #: GenericCommands.xcu #, fuzzy @@ -16830,7 +16830,7 @@ "Label\n" "value.text" msgid "~Original Size" -msgstr "" +msgstr "~Bunmhéid" #: GenericCommands.xcu msgctxt "" @@ -16839,7 +16839,7 @@ "Label\n" "value.text" msgid "Gr~id and Helplines" -msgstr "" +msgstr "Gre~ille agus Línte Cabhracha" #: GenericCommands.xcu #, fuzzy @@ -16858,7 +16858,7 @@ "Label\n" "value.text" msgid "Templates" -msgstr "" +msgstr "Teimpléid" #: GenericCommands.xcu msgctxt "" @@ -16867,7 +16867,7 @@ "ContextLabel\n" "value.text" msgid "Manage Templates" -msgstr "" +msgstr "Bainistigh Teimpléid" #: GenericCommands.xcu msgctxt "" @@ -16876,7 +16876,7 @@ "TooltipLabel\n" "value.text" msgid "Show Templates Manager" -msgstr "" +msgstr "Taispeáin Bainisteoir na dTeimpléad" #: GenericCommands.xcu msgctxt "" @@ -16903,7 +16903,7 @@ "Label\n" "value.text" msgid "Open Remote" -msgstr "" +msgstr "Oscail Comhad i gCéin" #: GenericCommands.xcu msgctxt "" @@ -16912,7 +16912,7 @@ "ContextLabel\n" "value.text" msgid "Open Remote ~File..." -msgstr "" +msgstr "Oscail ~Comhad i gCéin..." #: GenericCommands.xcu msgctxt "" @@ -16921,7 +16921,7 @@ "TooltipLabel\n" "value.text" msgid "Open Remote File" -msgstr "" +msgstr "Oscail Comhad i gCéin" #: GenericCommands.xcu msgctxt "" @@ -16930,7 +16930,7 @@ "Label\n" "value.text" msgid "Save Remote" -msgstr "" +msgstr "Sábháil Comhad i gCéin" #: GenericCommands.xcu msgctxt "" @@ -16939,7 +16939,7 @@ "ContextLabel\n" "value.text" msgid "Sa~ve Remote File..." -msgstr "" +msgstr "Sá~bháil Comhad i gCéin..." #: GenericCommands.xcu msgctxt "" @@ -16948,7 +16948,7 @@ "TooltipLabel\n" "value.text" msgid "Save Remote File" -msgstr "" +msgstr "Sábháil Comhad i gCéin" #: GenericCommands.xcu msgctxt "" @@ -16957,7 +16957,7 @@ "PopupLabel\n" "value.text" msgid "Save Remote File..." -msgstr "" +msgstr "Sábháil Comhad i gCéin..." #: GenericCommands.xcu msgctxt "" @@ -16994,7 +16994,7 @@ "Label\n" "value.text" msgid "Check Out" -msgstr "" +msgstr "Seiceáil Amach" #: GenericCommands.xcu msgctxt "" @@ -17003,7 +17003,7 @@ "Label\n" "value.text" msgid "Cancel Checkout..." -msgstr "" +msgstr "Cealaigh an tSeiceáil Amach..." #. This is the action to merge a private working copy of the document on a server. It shows a dialog to input some information on the new version to create on the server. #: GenericCommands.xcu @@ -17013,7 +17013,7 @@ "Label\n" "value.text" msgid "Check In..." -msgstr "" +msgstr "Seiceáil Isteach..." #: GenericCommands.xcu msgctxt "" @@ -17114,7 +17114,7 @@ "Label\n" "value.text" msgid "Print Directly" -msgstr "" +msgstr "Priontáil Go Díreach" #: GenericCommands.xcu msgctxt "" @@ -17161,7 +17161,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Comment" -msgstr "" +msgstr "Ionsáigh Nóta" #: GenericCommands.xcu msgctxt "" @@ -17260,7 +17260,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Vertical Text" -msgstr "" +msgstr "Ionsáigh Téacs Ingearach" #: GenericCommands.xcu msgctxt "" @@ -17305,7 +17305,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Chart" -msgstr "" +msgstr "Ionsáigh Cairt" #: GenericCommands.xcu msgctxt "" @@ -17314,7 +17314,7 @@ "Label\n" "value.text" msgid "Chart from File..." -msgstr "" +msgstr "Cairt ó Chomhad..." #: GenericCommands.xcu msgctxt "" @@ -17323,7 +17323,7 @@ "Label\n" "value.text" msgid "Bullets" -msgstr "" +msgstr "Urchair" #: GenericCommands.xcu msgctxt "" @@ -17332,7 +17332,7 @@ "ContextLabel\n" "value.text" msgid "~Bulleted List" -msgstr "" +msgstr "Liosta le h~Urchair" #: GenericCommands.xcu msgctxt "" @@ -17341,7 +17341,7 @@ "TooltipLabel\n" "value.text" msgid "Toggle Bulleted List" -msgstr "" +msgstr "Scoránaigh Liosta le hUrchair" #: GenericCommands.xcu msgctxt "" @@ -17350,7 +17350,7 @@ "Label\n" "value.text" msgid "Numbering" -msgstr "" +msgstr "Uimhriú" #: GenericCommands.xcu msgctxt "" @@ -17359,7 +17359,7 @@ "ContextLabel\n" "value.text" msgid "~Numbered List" -msgstr "" +msgstr "~Liosta Uimhrithe" #: GenericCommands.xcu msgctxt "" @@ -17368,7 +17368,7 @@ "TooltipLabel\n" "value.text" msgid "Toggle Numbered List" -msgstr "" +msgstr "Scoránaigh Liosta Uimhrithe" #: GenericCommands.xcu msgctxt "" @@ -17377,7 +17377,7 @@ "Label\n" "value.text" msgid "Outline" -msgstr "" +msgstr "Imlíne" #: GenericCommands.xcu msgctxt "" @@ -17386,7 +17386,7 @@ "ContextLabel\n" "value.text" msgid "~Outline List" -msgstr "" +msgstr "~Liosta Imlíne" #: GenericCommands.xcu msgctxt "" @@ -17395,7 +17395,7 @@ "TooltipLabel\n" "value.text" msgid "Set Outline List Style" -msgstr "" +msgstr "Socraigh Stíl Liosta don Imlíne" #: GenericCommands.xcu msgctxt "" @@ -17495,7 +17495,7 @@ "ContextLabel\n" "value.text" msgid "Cycle Case" -msgstr "" +msgstr "Athraigh an Cás" #: GenericCommands.xcu msgctxt "" @@ -17668,7 +17668,7 @@ "Label\n" "value.text" msgid "Styles" -msgstr "" +msgstr "Stíleanna" #: GenericCommands.xcu msgctxt "" @@ -17714,7 +17714,7 @@ "Label\n" "value.text" msgid "Show Only First Level" -msgstr "" +msgstr "Ná taispeáin ach an chéad leibhéal" #: GenericCommands.xcu msgctxt "" @@ -17742,7 +17742,7 @@ "TooltipLabel\n" "value.text" msgid "Toggle Edit Mode" -msgstr "" +msgstr "Scoránaigh an Mód Eagarthóireachta" #: GenericCommands.xcu msgctxt "" @@ -17760,7 +17760,7 @@ "Label\n" "value.text" msgid "~Web View" -msgstr "" +msgstr "~Amharc Gréasáin" #: GenericCommands.xcu msgctxt "" @@ -17769,7 +17769,7 @@ "ContextLabel\n" "value.text" msgid "~Web" -msgstr "" +msgstr "~Gréasán" #: GenericCommands.xcu msgctxt "" @@ -17868,7 +17868,7 @@ "ContextLabel\n" "value.text" msgid "~Edit Style..." -msgstr "" +msgstr "Cuir an Stíl in ~Eagar..." #: GenericCommands.xcu msgctxt "" @@ -17877,7 +17877,7 @@ "Label\n" "value.text" msgid "Edit" -msgstr "" +msgstr "Eagar" #: GenericCommands.xcu msgctxt "" @@ -17886,7 +17886,7 @@ "ContextLabel\n" "value.text" msgid "~New Style..." -msgstr "" +msgstr "Stíl ~Nua..." #: GenericCommands.xcu msgctxt "" @@ -17895,7 +17895,7 @@ "Label\n" "value.text" msgid "New" -msgstr "" +msgstr "Nua" #: GenericCommands.xcu msgctxt "" @@ -17922,7 +17922,7 @@ "ContextLabel\n" "value.text" msgid "~Update Style" -msgstr "" +msgstr "N~uashonraigh an Stíl" #: GenericCommands.xcu msgctxt "" @@ -17931,7 +17931,7 @@ "Label\n" "value.text" msgid "Update" -msgstr "" +msgstr "Nuashonraigh" #: GenericCommands.xcu msgctxt "" @@ -18066,7 +18066,7 @@ "Label\n" "value.text" msgid "E~xit Group" -msgstr "" +msgstr "~Fág an Grúpa" #: GenericCommands.xcu msgctxt "" @@ -18184,7 +18184,7 @@ "Label\n" "value.text" msgid "Smart Tags" -msgstr "" +msgstr "Clibeanna Cliste" #: GenericCommands.xcu msgctxt "" @@ -18193,7 +18193,7 @@ "Label\n" "value.text" msgid "Borders (Shift to overwrite)" -msgstr "" +msgstr "Imlínte (Shift le forscríobh)" #: GenericCommands.xcu msgctxt "" @@ -18346,7 +18346,7 @@ "Label\n" "value.text" msgid "Preview Dialog" -msgstr "" +msgstr "Dialóg Réamhamhairc" #: GenericCommands.xcu msgctxt "" @@ -18364,7 +18364,7 @@ "Label\n" "value.text" msgid "Border Style" -msgstr "" +msgstr "Stíl na hImlíne" #: GenericCommands.xcu msgctxt "" @@ -18373,7 +18373,7 @@ "Label\n" "value.text" msgid "Border Color" -msgstr "" +msgstr "Dath na hImlíne" #: GenericCommands.xcu msgctxt "" @@ -18382,7 +18382,7 @@ "Label\n" "value.text" msgid "~Open Template..." -msgstr "" +msgstr "~Oscail Teimpléad..." #: GenericCommands.xcu msgctxt "" @@ -18454,7 +18454,7 @@ "Label\n" "value.text" msgid "Show All Levels" -msgstr "" +msgstr "Taispeáin Gach Leibhéal" #: GenericCommands.xcu msgctxt "" @@ -18481,7 +18481,7 @@ "Label\n" "value.text" msgid "~Remove Outline" -msgstr "" +msgstr "~Bain an Imlíne" #: GenericCommands.xcu msgctxt "" @@ -18565,7 +18565,7 @@ "Label\n" "value.text" msgid "~Object and Shape" -msgstr "" +msgstr "~Réad agus Cruth" #: GenericCommands.xcu #, fuzzy @@ -18594,7 +18594,7 @@ "Label\n" "value.text" msgid "~Spacing" -msgstr "" +msgstr "~Spásáil" #: GenericCommands.xcu msgctxt "" @@ -18603,7 +18603,7 @@ "Label\n" "value.text" msgid "Lis~ts" -msgstr "" +msgstr "Lios~taí" #: GenericCommands.xcu #, fuzzy @@ -18622,7 +18622,7 @@ "Label\n" "value.text" msgid "Frame and Ob~ject" -msgstr "" +msgstr "Fráma agus ~Réad" #: GenericCommands.xcu #, fuzzy @@ -18650,7 +18650,7 @@ "PopupLabel\n" "value.text" msgid "Insert Image..." -msgstr "" +msgstr "Ionsáigh Íomhá..." #: GenericCommands.xcu msgctxt "" @@ -18659,7 +18659,7 @@ "Label\n" "value.text" msgid "AutoFormat Table Styles" -msgstr "" +msgstr "Stíleanna Uathfhormáidithe Tábla" #: GenericCommands.xcu msgctxt "" @@ -18668,7 +18668,7 @@ "ContextLabel\n" "value.text" msgid "Auto~Format Styles..." -msgstr "" +msgstr "Stíleanna Uath~fhormáidithe..." #: GenericCommands.xcu msgctxt "" @@ -18695,7 +18695,7 @@ "TooltipLabel\n" "value.text" msgid "Check Spelling" -msgstr "" +msgstr "Seiceáil Litriú" #: GenericCommands.xcu msgctxt "" @@ -18713,7 +18713,7 @@ "Label\n" "value.text" msgid "Spelling" -msgstr "" +msgstr "Litriú" #: GenericCommands.xcu msgctxt "" @@ -18749,7 +18749,7 @@ "TooltipLabel\n" "value.text" msgid "Set Character Spacing" -msgstr "" +msgstr "Socraigh Spásáil Carachtar" #: GenericCommands.xcu msgctxt "" @@ -18767,7 +18767,7 @@ "Label\n" "value.text" msgid "Draw Functions" -msgstr "" +msgstr "Feidhmeanna Líníochta" #: GenericCommands.xcu msgctxt "" @@ -18776,7 +18776,7 @@ "TooltipLabel\n" "value.text" msgid "Show Draw Functions" -msgstr "" +msgstr "Taispeáin Feidhmeanna Líníochta" #: GenericCommands.xcu #, fuzzy @@ -18862,7 +18862,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Text Box" -msgstr "" +msgstr "Ionsáigh Bosca Téacs" #: GenericCommands.xcu msgctxt "" @@ -18889,7 +18889,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Fontwork Text" -msgstr "" +msgstr "Ionsáigh Téacs Fontwork" #: GenericCommands.xcu msgctxt "" @@ -18898,7 +18898,7 @@ "Label\n" "value.text" msgid "Save Document as URL" -msgstr "" +msgstr "Sábháil an Cháipéis mar URL" #: GenericCommands.xcu msgctxt "" @@ -19015,7 +19015,7 @@ "Label\n" "value.text" msgid "Insert Business Cards" -msgstr "" +msgstr "Ionsáigh Cártaí Gnó" #: GenericCommands.xcu msgctxt "" @@ -19061,7 +19061,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Hyperlink" -msgstr "" +msgstr "Ionsáigh Hipearnasc" #: GenericCommands.xcu msgctxt "" @@ -19088,7 +19088,7 @@ "Label\n" "value.text" msgid "Equalize ~Width" -msgstr "" +msgstr "Cothromaigh an ~Leithead" #: GenericCommands.xcu msgctxt "" @@ -19097,7 +19097,7 @@ "Label\n" "value.text" msgid "Equalize ~Height" -msgstr "" +msgstr "Cothromaigh an ~Airde" #: GenericCommands.xcu msgctxt "" @@ -19133,7 +19133,7 @@ "Label\n" "value.text" msgid "Small capitals" -msgstr "" +msgstr "Ceannlitreacha beaga" #: GenericCommands.xcu msgctxt "" @@ -19198,7 +19198,7 @@ "Label\n" "value.text" msgid "Clone" -msgstr "" +msgstr "Clón" #: GenericCommands.xcu msgctxt "" @@ -19207,7 +19207,7 @@ "ContextLabel\n" "value.text" msgid "Clone Formatting" -msgstr "" +msgstr "Cóipeáil Formáidiú" #: GenericCommands.xcu #, fuzzy @@ -19226,7 +19226,7 @@ "Label\n" "value.text" msgid "Repea~t" -msgstr "" +msgstr "Ath~dhéan" #: GenericCommands.xcu msgctxt "" @@ -19254,7 +19254,7 @@ "Label\n" "value.text" msgid "Cop~y" -msgstr "" +msgstr "Cói~peáil" #: GenericCommands.xcu msgctxt "" @@ -19281,7 +19281,7 @@ "PopupLabel\n" "value.text" msgid "~Unformatted Text" -msgstr "" +msgstr "Téacs ~Neamhfhormáidithe" #: GenericCommands.xcu msgctxt "" @@ -19299,7 +19299,7 @@ "Label\n" "value.text" msgid "Emoji" -msgstr "" +msgstr "Emoji" #: GenericCommands.xcu msgctxt "" @@ -19308,7 +19308,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Emoji" -msgstr "" +msgstr "Ionsáigh Emoji" #: GenericCommands.xcu msgctxt "" @@ -19506,7 +19506,7 @@ "TooltipLabel\n" "value.text" msgid "Show Navigator Window" -msgstr "" +msgstr "Taispeáin an Fhuinneog Nascleanúna" #: GenericCommands.xcu msgctxt "" @@ -19515,7 +19515,7 @@ "Label\n" "value.text" msgid "Notebookbar" -msgstr "" +msgstr "Ribínbharra" #: GenericCommands.xcu msgctxt "" @@ -19867,7 +19867,7 @@ "Label\n" "value.text" msgid "Grid" -msgstr "" +msgstr "Greille" #: GenericCommands.xcu msgctxt "" @@ -19876,7 +19876,7 @@ "ContextLabel\n" "value.text" msgid "~Display Grid" -msgstr "" +msgstr "~Taispeáin Greille" #: GenericCommands.xcu msgctxt "" @@ -19885,7 +19885,7 @@ "TooltipLabel\n" "value.text" msgid "Display Grid" -msgstr "" +msgstr "Taispeáin Greille" #: GenericCommands.xcu msgctxt "" @@ -19984,7 +19984,7 @@ "Label\n" "value.text" msgid "Compare" -msgstr "" +msgstr "Cuir i gComparáid" #: GenericCommands.xcu msgctxt "" @@ -19993,7 +19993,7 @@ "ContextLabel\n" "value.text" msgid "Co~mpare Document..." -msgstr "" +msgstr "Cuir Cáipéis i gCo~mparáid..." #: GenericCommands.xcu msgctxt "" @@ -20002,7 +20002,7 @@ "TooltipLabel\n" "value.text" msgid "Compare Non-Track Changed Document" -msgstr "" +msgstr "Cuir i gcomparáid le cáipéis nach bhfuil athruithe rianaithe inti" #: GenericCommands.xcu msgctxt "" @@ -20011,7 +20011,7 @@ "Label\n" "value.text" msgid "Merge" -msgstr "" +msgstr "Cumaisc" #: GenericCommands.xcu msgctxt "" @@ -20020,7 +20020,7 @@ "ContextLabel\n" "value.text" msgid "Merge Documen~t..." -msgstr "" +msgstr "Cu~maisc Cáipéis..." #: GenericCommands.xcu msgctxt "" @@ -20029,7 +20029,7 @@ "TooltipLabel\n" "value.text" msgid "Merge Track Changed Document" -msgstr "" +msgstr "Cumaisc cáipéis a bhfuil athruithe rianaithe inti" #: GenericCommands.xcu msgctxt "" @@ -20183,7 +20183,7 @@ "Label\n" "value.text" msgid "Decrease" -msgstr "" +msgstr "Laghdaigh" #: GenericCommands.xcu msgctxt "" @@ -20192,7 +20192,7 @@ "ContextLabel\n" "value.text" msgid "Decrease Indent" -msgstr "" +msgstr "Laghdaigh an tEangú" #: GenericCommands.xcu msgctxt "" @@ -20201,7 +20201,7 @@ "TooltipLabel\n" "value.text" msgid "Decrease Indent" -msgstr "" +msgstr "Laghdaigh an tEangú" #: GenericCommands.xcu msgctxt "" @@ -20210,7 +20210,7 @@ "Label\n" "value.text" msgid "Increase" -msgstr "" +msgstr "Méadaigh" #: GenericCommands.xcu msgctxt "" @@ -20219,7 +20219,7 @@ "ContextLabel\n" "value.text" msgid "Increase Indent" -msgstr "" +msgstr "Méadaigh an tEangú" #: GenericCommands.xcu msgctxt "" @@ -20228,7 +20228,7 @@ "TooltipLabel\n" "value.text" msgid "Increase Indent" -msgstr "" +msgstr "Méadaigh an tEangú" #: GenericCommands.xcu #, fuzzy @@ -20382,7 +20382,7 @@ "Label\n" "value.text" msgid "Auto Spellcheck" -msgstr "" +msgstr "Uathlitreoir" #: GenericCommands.xcu msgctxt "" @@ -20391,7 +20391,7 @@ "ContextLabel\n" "value.text" msgid "~Automatic Spell Checking" -msgstr "" +msgstr "U~athsheiceáil Litrithe" #: GenericCommands.xcu msgctxt "" @@ -20400,7 +20400,7 @@ "TooltipLabel\n" "value.text" msgid "Toggle Automatic Spell Checking" -msgstr "" +msgstr "Scoránaigh Uathsheiceáil Litrithe" #: GenericCommands.xcu msgctxt "" @@ -20427,7 +20427,7 @@ "Label\n" "value.text" msgid "Asian Phonetic G~uide..." -msgstr "" +msgstr "Treoir Fo~ghraíochta Áisí..." #: GenericCommands.xcu msgctxt "" @@ -20436,7 +20436,7 @@ "Label\n" "value.text" msgid "Symbol" -msgstr "" +msgstr "Siombail" #: GenericCommands.xcu msgctxt "" @@ -20445,7 +20445,7 @@ "ContextLabel\n" "value.text" msgid "S~pecial Character..." -msgstr "" +msgstr "Carachtar S~peisialta..." #: GenericCommands.xcu msgctxt "" @@ -20454,7 +20454,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Special Character" -msgstr "" +msgstr "Ionsáigh Carachtar Speisialta" #: GenericCommands.xcu msgctxt "" @@ -20499,7 +20499,7 @@ "Label\n" "value.text" msgid "Send via ~Bluetooth..." -msgstr "" +msgstr "Seol trí ~Bluetooth..." #: GenericCommands.xcu msgctxt "" @@ -20508,7 +20508,7 @@ "Label\n" "value.text" msgid "PDF" -msgstr "" +msgstr "PDF" #: GenericCommands.xcu msgctxt "" @@ -20517,7 +20517,7 @@ "ContextLabel\n" "value.text" msgid "~Export as PDF..." -msgstr "" +msgstr "~Easpórtáil mar PDF..." #: GenericCommands.xcu msgctxt "" @@ -20526,7 +20526,7 @@ "TooltipLabel\n" "value.text" msgid "Export as PDF" -msgstr "" +msgstr "Easpórtáil mar PDF" #: GenericCommands.xcu msgctxt "" @@ -20535,7 +20535,7 @@ "Label\n" "value.text" msgid "PDF" -msgstr "" +msgstr "PDF" #: GenericCommands.xcu #, fuzzy @@ -20554,7 +20554,7 @@ "TooltipLabel\n" "value.text" msgid "Export as PDF" -msgstr "" +msgstr "Easpórtáil mar PDF" #: GenericCommands.xcu msgctxt "" @@ -20635,7 +20635,7 @@ "Label\n" "value.text" msgid "~Get Help Online..." -msgstr "" +msgstr "~Faigh Cabhair Ar Líne..." #: GenericCommands.xcu msgctxt "" @@ -20644,7 +20644,7 @@ "Label\n" "value.text" msgid "~User Guides..." -msgstr "" +msgstr "~Treoirleabhair Úsáideora..." #: GenericCommands.xcu msgctxt "" @@ -20815,7 +20815,7 @@ "Label\n" "value.text" msgid "Gallery" -msgstr "" +msgstr "Gailearaí" #: GenericCommands.xcu #, fuzzy @@ -20834,7 +20834,7 @@ "TooltipLabel\n" "value.text" msgid "Open Clip Art and Media Gallery" -msgstr "" +msgstr "Oscail Gailearaí na Fáiscealaíne agus na Meán" #: GenericCommands.xcu msgctxt "" @@ -20987,7 +20987,7 @@ "Label\n" "value.text" msgid "Con~trol Properties..." -msgstr "" +msgstr "Airíonna an Rial~táin..." #: GenericCommands.xcu #, fuzzy @@ -21006,7 +21006,7 @@ "Label\n" "value.text" msgid "For~m Properties..." -msgstr "" +msgstr "Airíonna na Foir~me..." #: GenericCommands.xcu #, fuzzy @@ -21142,7 +21142,7 @@ "Label\n" "value.text" msgid "Toggle Design Mode" -msgstr "" +msgstr "Scoránaigh an Mód Deartha" #: GenericCommands.xcu msgctxt "" @@ -21151,7 +21151,7 @@ "ContextLabel\n" "value.text" msgid "Design Mode" -msgstr "" +msgstr "An Mód Deartha" #: GenericCommands.xcu msgctxt "" @@ -21223,7 +21223,7 @@ "Label\n" "value.text" msgid "~About %PRODUCTNAME" -msgstr "" +msgstr "~Maidir le %PRODUCTNAME" #: GenericCommands.xcu msgctxt "" @@ -21349,7 +21349,7 @@ "TooltipLabel\n" "value.text" msgid "Toggle Print Preview" -msgstr "" +msgstr "Scoránaigh Réamhamharc Priontála" #: GenericCommands.xcu #, fuzzy @@ -21422,7 +21422,7 @@ "Label\n" "value.text" msgid "E-mail" -msgstr "" +msgstr "R-phost" #: GenericCommands.xcu msgctxt "" @@ -21431,7 +21431,7 @@ "ContextLabel\n" "value.text" msgid "~E-mail Document..." -msgstr "" +msgstr "S~eol an Cháipéis mar R-phost..." #: GenericCommands.xcu msgctxt "" @@ -21440,7 +21440,7 @@ "TooltipLabel\n" "value.text" msgid "Attach to E-mail" -msgstr "" +msgstr "Ceangail le R-phost" #: GenericCommands.xcu msgctxt "" @@ -21791,7 +21791,7 @@ "Label\n" "value.text" msgid "Toggle Extrusion" -msgstr "" +msgstr "Scoránaigh 3T" #: GenericCommands.xcu msgctxt "" @@ -21908,7 +21908,7 @@ "Label\n" "value.text" msgid "Toolbar ~Layout" -msgstr "" +msgstr "~Leagan Amach an Bharra Uirlisí" #: GenericCommands.xcu msgctxt "" @@ -21962,7 +21962,7 @@ "Label\n" "value.text" msgid "Sign Existing PDF..." -msgstr "" +msgstr "Sínigh PDF atá ann..." #: GenericCommands.xcu msgctxt "" @@ -22079,7 +22079,7 @@ "Label\n" "value.text" msgid "Format All Comments" -msgstr "" +msgstr "Formáidigh Gach Nóta" #: GenericCommands.xcu msgctxt "" @@ -22115,7 +22115,7 @@ "Label\n" "value.text" msgid "Top" -msgstr "" +msgstr "Barr" #: GenericCommands.xcu msgctxt "" @@ -22124,7 +22124,7 @@ "TooltipLabel\n" "value.text" msgid "Align Top" -msgstr "" +msgstr "Ailínigh leis an mBarr" #: GenericCommands.xcu msgctxt "" @@ -22133,7 +22133,7 @@ "Label\n" "value.text" msgid "Center" -msgstr "" +msgstr "Sa Lár" #: GenericCommands.xcu msgctxt "" @@ -22142,7 +22142,7 @@ "TooltipLabel\n" "value.text" msgid "Center Vertically" -msgstr "" +msgstr "Láraigh go hIngearach" #: GenericCommands.xcu msgctxt "" @@ -22151,7 +22151,7 @@ "Label\n" "value.text" msgid "Bottom" -msgstr "" +msgstr "Bun" #: GenericCommands.xcu msgctxt "" @@ -22160,7 +22160,7 @@ "TooltipLabel\n" "value.text" msgid "Align Bottom" -msgstr "" +msgstr "Ailínigh leis an mBun" #: GenericCommands.xcu msgctxt "" @@ -22169,7 +22169,7 @@ "Label\n" "value.text" msgid "Synony~ms" -msgstr "" +msgstr "Focail cho~mhchiallacha" #: GenericCommands.xcu msgctxt "" @@ -22178,7 +22178,7 @@ "Label\n" "value.text" msgid "St~yle" -msgstr "" +msgstr "Stí~l" #: GenericCommands.xcu msgctxt "" @@ -22243,7 +22243,7 @@ "Label\n" "value.text" msgid "C~haracter..." -msgstr "" +msgstr "~Carachtar..." #: GenericCommands.xcu msgctxt "" @@ -22279,7 +22279,7 @@ "Label\n" "value.text" msgid "~Chart" -msgstr "" +msgstr "C~airt" #: GenericCommands.xcu msgctxt "" @@ -22315,7 +22315,7 @@ "Label\n" "value.text" msgid "Digital Signatures" -msgstr "" +msgstr "Sínithe Digiteacha" #: GenericCommands.xcu msgctxt "" @@ -22351,7 +22351,7 @@ "Label\n" "value.text" msgid "Track Chan~ges" -msgstr "" +msgstr "Lor~g Athruithe" #: GenericCommands.xcu msgctxt "" @@ -22360,7 +22360,7 @@ "Label\n" "value.text" msgid "R~eference" -msgstr "" +msgstr "T~agairt" #: GenericCommands.xcu #, fuzzy @@ -22490,7 +22490,7 @@ "Label\n" "value.text" msgid "Rot~ate" -msgstr "" +msgstr "Ro~thlaigh" #: GenericCommands.xcu msgctxt "" @@ -22499,7 +22499,7 @@ "Label\n" "value.text" msgid "Rot~ate or Flip" -msgstr "" +msgstr "Rothl~aigh nó Smeach" #: GenericCommands.xcu #, fuzzy @@ -22518,7 +22518,7 @@ "ContextLabel\n" "value.text" msgid "Anc~hor" -msgstr "" +msgstr "An~caire" #: GenericCommands.xcu #, fuzzy @@ -22537,7 +22537,7 @@ "Label\n" "value.text" msgid "Media" -msgstr "" +msgstr "Meáin" #: GenericCommands.xcu msgctxt "" @@ -22546,7 +22546,7 @@ "ContextLabel\n" "value.text" msgid "Audio or ~Video..." -msgstr "" +msgstr "Fuaim nó ~Físeán..." #: GenericCommands.xcu msgctxt "" @@ -22555,7 +22555,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Audio or Video" -msgstr "" +msgstr "Ionsáigh Fuaim nó Físeán" #: GenericCommands.xcu msgctxt "" @@ -22681,7 +22681,7 @@ "Label\n" "value.text" msgid "For All Text" -msgstr "" +msgstr "Don Téacs go Léir" #: GenericCommands.xcu msgctxt "" @@ -22764,7 +22764,7 @@ "Label\n" "value.text" msgid "3D Model..." -msgstr "" +msgstr "Samhail 3T..." #: GenericCommands.xcu msgctxt "" @@ -22773,7 +22773,7 @@ "Label\n" "value.text" msgid "Apply Document Classification" -msgstr "" +msgstr "Cuir Aicmiú na Cáipéise i bhfeidhm" #: GenericCommands.xcu msgctxt "" @@ -22782,7 +22782,7 @@ "Label\n" "value.text" msgid "Select" -msgstr "" +msgstr "Roghnaigh" #: GenericCommands.xcu msgctxt "" @@ -22791,7 +22791,7 @@ "Label\n" "value.text" msgid "Paste Special" -msgstr "" +msgstr "Greamú Speisialta" #: GenericCommands.xcu msgctxt "" @@ -22800,7 +22800,7 @@ "Label\n" "value.text" msgid "Menubar" -msgstr "" +msgstr "Barra Roghchláir" #: GenericCommands.xcu msgctxt "" @@ -22809,7 +22809,7 @@ "Label\n" "value.text" msgid "Name..." -msgstr "" +msgstr "Ainm..." #: GenericCommands.xcu msgctxt "" @@ -22818,7 +22818,7 @@ "Label\n" "value.text" msgid "Description..." -msgstr "" +msgstr "Cur Síos..." #: GenericCommands.xcu msgctxt "" @@ -22827,7 +22827,7 @@ "Label\n" "value.text" msgid "~Restart in Safe Mode..." -msgstr "" +msgstr "~Atosaigh sa Mhód Slán..." #: ImpressWindowState.xcu #, fuzzy @@ -22846,7 +22846,7 @@ "UIName\n" "value.text" msgid "3D Scene" -msgstr "" +msgstr "Radharc 3T" #: ImpressWindowState.xcu msgctxt "" @@ -22855,7 +22855,7 @@ "UIName\n" "value.text" msgid "3D Scene (group)" -msgstr "" +msgstr "Radharc 3T (grúpa)" #: ImpressWindowState.xcu msgctxt "" @@ -22864,7 +22864,7 @@ "UIName\n" "value.text" msgid "Connector/Freeform Line" -msgstr "" +msgstr "Nascóir/Líne Saorfhoirme" #: ImpressWindowState.xcu #, fuzzy @@ -22953,7 +22953,7 @@ "UIName\n" "value.text" msgid "Line/Arrow" -msgstr "" +msgstr "Líne/Saighead" #: ImpressWindowState.xcu #, fuzzy @@ -22982,7 +22982,7 @@ "UIName\n" "value.text" msgid "Multiple Selection" -msgstr "" +msgstr "Ilroghnúcháin" #: ImpressWindowState.xcu msgctxt "" @@ -22991,7 +22991,7 @@ "UIName\n" "value.text" msgid "Notebookbar" -msgstr "" +msgstr "Ribínbharra" #: ImpressWindowState.xcu #, fuzzy @@ -23030,7 +23030,7 @@ "UIName\n" "value.text" msgid "Slide Sorter/Pane" -msgstr "" +msgstr "Sórtálaí Sleamhnán/Pána" #: ImpressWindowState.xcu msgctxt "" @@ -23039,7 +23039,7 @@ "UIName\n" "value.text" msgid "Slide Sorter/Pane (no selection)" -msgstr "" +msgstr "Sórtálaí Sleamhnán/Pána (gan roghnúchán)" #: ImpressWindowState.xcu msgctxt "" @@ -23076,7 +23076,7 @@ "UIName\n" "value.text" msgid "Table Text" -msgstr "" +msgstr "Téacs an Tábla" #: ImpressWindowState.xcu msgctxt "" @@ -23085,7 +23085,7 @@ "UIName\n" "value.text" msgid "Text Box (drawing)" -msgstr "" +msgstr "Bosca Téacs (líníocht)" #: ImpressWindowState.xcu msgctxt "" @@ -23175,7 +23175,7 @@ "UIName\n" "value.text" msgid "Legacy Circles and Ovals" -msgstr "" +msgstr "Seanchiorcail agus Ubhchruthanna" #: ImpressWindowState.xcu msgctxt "" @@ -23302,7 +23302,7 @@ "UIName\n" "value.text" msgid "TSCP Classification" -msgstr "" +msgstr "Aicmiú TSCP" #: ImpressWindowState.xcu msgctxt "" @@ -23374,7 +23374,7 @@ "UIName\n" "value.text" msgid "Legacy Rectangles" -msgstr "" +msgstr "Sean-dronuilleoga" #: ImpressWindowState.xcu msgctxt "" @@ -23545,7 +23545,7 @@ "UIName\n" "value.text" msgid "Standard (Single Mode)" -msgstr "" +msgstr "Caighdeánach (Mód Amhairc)" #: ImpressWindowState.xcu msgctxt "" @@ -23554,7 +23554,7 @@ "UIName\n" "value.text" msgid "Notebookbar shortcuts" -msgstr "" +msgstr "Aicearraí ribínbharra" #: MathCommands.xcu msgctxt "" @@ -23626,7 +23626,7 @@ "Label\n" "value.text" msgid "Import MathML from Clipboard" -msgstr "" +msgstr "Iompórtáil MathML ón Ghearrthaisce" #: MathCommands.xcu msgctxt "" @@ -23782,7 +23782,7 @@ "Label\n" "value.text" msgid "New Line" -msgstr "" +msgstr "Líne Nua" #: MathCommands.xcu msgctxt "" @@ -23791,7 +23791,7 @@ "Label\n" "value.text" msgid "Small Gap" -msgstr "" +msgstr "Bearna Bheag" #: MathCommands.xcu msgctxt "" @@ -23800,7 +23800,7 @@ "Label\n" "value.text" msgid "Gap" -msgstr "" +msgstr "Bearna" #: MathCommands.xcu msgctxt "" @@ -23809,7 +23809,7 @@ "Label\n" "value.text" msgid "~Unary/Binary Operators" -msgstr "" +msgstr "~Oibreoirí Aonártha/Dénártha" #: MathCommands.xcu msgctxt "" @@ -23818,7 +23818,7 @@ "Label\n" "value.text" msgid "~Relations" -msgstr "" +msgstr "~Gaolta" #: MathCommands.xcu msgctxt "" @@ -23827,7 +23827,7 @@ "Label\n" "value.text" msgid "~Set Operations" -msgstr "" +msgstr "Oibríochtaí ar ~Thacair" #: MathCommands.xcu msgctxt "" @@ -23836,7 +23836,7 @@ "Label\n" "value.text" msgid "~Functions" -msgstr "" +msgstr "~Feidhmeanna" #: MathCommands.xcu msgctxt "" @@ -23845,7 +23845,7 @@ "Label\n" "value.text" msgid "O~perators" -msgstr "" +msgstr "Oi~breoirí" #: MathCommands.xcu msgctxt "" @@ -23854,7 +23854,7 @@ "Label\n" "value.text" msgid "~Attributes" -msgstr "" +msgstr "~Aitreabúidí" #: MathCommands.xcu msgctxt "" @@ -23863,7 +23863,7 @@ "Label\n" "value.text" msgid "~Brackets" -msgstr "" +msgstr "~Lúibíní" #: MathCommands.xcu msgctxt "" @@ -23872,7 +23872,7 @@ "Label\n" "value.text" msgid "For~mats" -msgstr "" +msgstr "For~máidí" #: MathCommands.xcu msgctxt "" @@ -23881,7 +23881,7 @@ "Label\n" "value.text" msgid "~Others" -msgstr "" +msgstr "~Cinn Eile" #: MathWindowState.xcu msgctxt "" @@ -23890,7 +23890,7 @@ "UIName\n" "value.text" msgid "Edit Panel" -msgstr "" +msgstr "Cuir an Painéal in Eagar" #: MathWindowState.xcu msgctxt "" @@ -23899,7 +23899,7 @@ "UIName\n" "value.text" msgid "View Panel" -msgstr "" +msgstr "Amharc an Painéal" #: MathWindowState.xcu msgctxt "" @@ -23935,7 +23935,7 @@ "Label\n" "value.text" msgid "Tabbed" -msgstr "" +msgstr "I gcluaisíní" #: Notebookbar.xcu msgctxt "" @@ -23944,7 +23944,7 @@ "Label\n" "value.text" msgid "Groupedbar Compact" -msgstr "" +msgstr "Barra Grúpáilte: Dlúth" #: Notebookbar.xcu msgctxt "" @@ -23953,7 +23953,7 @@ "Label\n" "value.text" msgid "Groupedbar Full" -msgstr "" +msgstr "Barra Grúpáilte: Iomlán" #: Notebookbar.xcu msgctxt "" @@ -23962,7 +23962,7 @@ "Label\n" "value.text" msgid "Contextual groups" -msgstr "" +msgstr "Grúpaí comhthéacsúla" #: Notebookbar.xcu msgctxt "" @@ -23971,7 +23971,7 @@ "Label\n" "value.text" msgid "Contextual single" -msgstr "" +msgstr "Comhthéacsúil agus singil" #: Notebookbar.xcu msgctxt "" @@ -23980,7 +23980,7 @@ "Label\n" "value.text" msgid "Tabbed" -msgstr "" +msgstr "I gcluaisíní" #: Notebookbar.xcu msgctxt "" @@ -23989,7 +23989,7 @@ "Label\n" "value.text" msgid "Contextual groups" -msgstr "" +msgstr "Grúpaí comhthéacsúla" #: Notebookbar.xcu msgctxt "" @@ -23998,7 +23998,7 @@ "Label\n" "value.text" msgid "Tabbed" -msgstr "" +msgstr "I gcluaisíní" #: Notebookbar.xcu msgctxt "" @@ -24007,7 +24007,7 @@ "Label\n" "value.text" msgid "Contextual groups" -msgstr "" +msgstr "Grúpaí comhthéacsúla" #: ReportCommands.xcu msgctxt "" @@ -24440,7 +24440,7 @@ "Label\n" "value.text" msgid "Background Color..." -msgstr "" +msgstr "Dath an Chúlra..." #: ReportCommands.xcu msgctxt "" @@ -24485,7 +24485,7 @@ "Title\n" "value.text" msgid "Page" -msgstr "" +msgstr "Leathanach" #: Sidebar.xcu msgctxt "" @@ -24494,7 +24494,7 @@ "Title\n" "value.text" msgid "Shapes" -msgstr "" +msgstr "Cruthanna" #: Sidebar.xcu msgctxt "" @@ -24522,7 +24522,7 @@ "Title\n" "value.text" msgid "Animation" -msgstr "" +msgstr "Beochan" #: Sidebar.xcu #, fuzzy @@ -24599,7 +24599,7 @@ "Title\n" "value.text" msgid "Style" -msgstr "" +msgstr "Stíl" #: Sidebar.xcu msgctxt "" @@ -24617,7 +24617,7 @@ "Title\n" "value.text" msgid "Media Playback" -msgstr "" +msgstr "Athsheinm Meán" #: Sidebar.xcu msgctxt "" @@ -24626,7 +24626,7 @@ "Title\n" "value.text" msgid "Styles" -msgstr "" +msgstr "Stíleanna" #: Sidebar.xcu msgctxt "" @@ -24635,7 +24635,7 @@ "Title\n" "value.text" msgid "Format" -msgstr "" +msgstr "Formáid" #: Sidebar.xcu msgctxt "" @@ -24644,7 +24644,7 @@ "Title\n" "value.text" msgid "Header" -msgstr "" +msgstr "Ceanntásc" #: Sidebar.xcu msgctxt "" @@ -24653,7 +24653,7 @@ "Title\n" "value.text" msgid "Footer" -msgstr "" +msgstr "Buntásc" #: Sidebar.xcu msgctxt "" @@ -24718,7 +24718,7 @@ "Title\n" "value.text" msgid "Default" -msgstr "" +msgstr "Réamhshocrú" #: Sidebar.xcu #, fuzzy @@ -24777,7 +24777,7 @@ "Title\n" "value.text" msgid "Animation" -msgstr "" +msgstr "Beochan" #: Sidebar.xcu #, fuzzy @@ -24920,7 +24920,7 @@ "Title\n" "value.text" msgid "Style Presets" -msgstr "" +msgstr "Réamhshocruithe Stíle" #: Sidebar.xcu msgctxt "" @@ -24929,7 +24929,7 @@ "Title\n" "value.text" msgid "Themes" -msgstr "" +msgstr "Téamaí" #: Sidebar.xcu #, fuzzy @@ -24948,7 +24948,7 @@ "Title\n" "value.text" msgid "Data Series" -msgstr "" +msgstr "Sraith Sonraí" #: Sidebar.xcu msgctxt "" @@ -24957,7 +24957,7 @@ "Title\n" "value.text" msgid "Trendline" -msgstr "" +msgstr "Líne treochta" #: Sidebar.xcu msgctxt "" @@ -24966,7 +24966,7 @@ "Title\n" "value.text" msgid "Error Bar" -msgstr "" +msgstr "Barra Earráide" #: Sidebar.xcu #, fuzzy @@ -25259,7 +25259,7 @@ "Label\n" "value.text" msgid "Default" -msgstr "" +msgstr "Réamhshocrú" #: ToolbarMode.xcu msgctxt "" @@ -25268,7 +25268,7 @@ "Label\n" "value.text" msgid "Single Toolbar" -msgstr "" +msgstr "Barra Uirlisí Amháin" #: ToolbarMode.xcu msgctxt "" @@ -25277,7 +25277,7 @@ "Label\n" "value.text" msgid "Sidebar" -msgstr "" +msgstr "Barra Taoibh" #: ToolbarMode.xcu msgctxt "" @@ -25286,7 +25286,7 @@ "Label\n" "value.text" msgid "Notebookbar" -msgstr "" +msgstr "Ribínbharra" #: ToolbarMode.xcu msgctxt "" @@ -25295,7 +25295,7 @@ "Label\n" "value.text" msgid "Default" -msgstr "" +msgstr "Réamhshocrú" #: ToolbarMode.xcu msgctxt "" @@ -25304,7 +25304,7 @@ "Label\n" "value.text" msgid "Single Toolbar" -msgstr "" +msgstr "Barra Uirlisí Amháin" #: ToolbarMode.xcu msgctxt "" @@ -25313,7 +25313,7 @@ "Label\n" "value.text" msgid "Sidebar" -msgstr "" +msgstr "Barra Taoibh" #: ToolbarMode.xcu msgctxt "" @@ -25322,7 +25322,7 @@ "Label\n" "value.text" msgid "Notebookbar" -msgstr "" +msgstr "Ribínbharra" #: ToolbarMode.xcu msgctxt "" @@ -25331,7 +25331,7 @@ "Label\n" "value.text" msgid "Default" -msgstr "" +msgstr "Réamhshocrú" #: ToolbarMode.xcu msgctxt "" @@ -25340,7 +25340,7 @@ "Label\n" "value.text" msgid "Single Toolbar" -msgstr "" +msgstr "Barra Uirlisí Amháin" #: ToolbarMode.xcu msgctxt "" @@ -25349,7 +25349,7 @@ "Label\n" "value.text" msgid "Notebookbar" -msgstr "" +msgstr "Ribínbharra" #: WriterCommands.xcu msgctxt "" @@ -25358,7 +25358,7 @@ "Label\n" "value.text" msgid "Add Text Box" -msgstr "" +msgstr "Cuir Bosca Téacs Leis" #: WriterCommands.xcu msgctxt "" @@ -25367,7 +25367,7 @@ "Label\n" "value.text" msgid "Remove Text Box" -msgstr "" +msgstr "Bain an Bosca Téacs" #: WriterCommands.xcu msgctxt "" @@ -25514,7 +25514,7 @@ "Label\n" "value.text" msgid "~Endnote" -msgstr "" +msgstr "~Iarnóta" #: WriterCommands.xcu msgctxt "" @@ -25523,7 +25523,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Endnote" -msgstr "" +msgstr "Ionsáigh Iarnóta" #: WriterCommands.xcu msgctxt "" @@ -25551,7 +25551,7 @@ "Label\n" "value.text" msgid "Table of Contents" -msgstr "" +msgstr "Clár na nÁbhar" #: WriterCommands.xcu msgctxt "" @@ -25560,7 +25560,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Table of Contents, Index or Bibliography" -msgstr "" +msgstr "Ionsáigh Clár na nÁbhar, Innéacs, nó Leabharliosta" #: WriterCommands.xcu msgctxt "" @@ -25569,7 +25569,7 @@ "ContextLabel\n" "value.text" msgid "Table of Contents, ~Index or Bibliography..." -msgstr "" +msgstr "Ionsáigh Clár na nÁbhar, ~Innéacs, nó Leabharliosta..." #: WriterCommands.xcu msgctxt "" @@ -25587,7 +25587,7 @@ "Label\n" "value.text" msgid "Toggle Direct Cursor Mode" -msgstr "" +msgstr "Scoránaigh Mód an Chúrsóra Dhírigh" #: WriterCommands.xcu msgctxt "" @@ -25596,7 +25596,7 @@ "ContextLabel\n" "value.text" msgid "Direct Cursor Mode" -msgstr "" +msgstr "Mód an Chúrsóra Dhírigh" #: WriterCommands.xcu msgctxt "" @@ -25623,7 +25623,7 @@ "Label\n" "value.text" msgid "Update All" -msgstr "" +msgstr "Nuashonraigh Uile" #: WriterCommands.xcu msgctxt "" @@ -25632,7 +25632,7 @@ "ContextLabel\n" "value.text" msgid "Indexes and ~Tables" -msgstr "" +msgstr "Innéacsanna agus ~Táblaí" #: WriterCommands.xcu msgctxt "" @@ -25641,7 +25641,7 @@ "Label\n" "value.text" msgid "Update Index" -msgstr "" +msgstr "Nuashonraigh an tInnéacs" #: WriterCommands.xcu msgctxt "" @@ -25650,7 +25650,7 @@ "ContextLabel\n" "value.text" msgid "Current ~Index" -msgstr "" +msgstr "An t~Innéacs Reatha" #: WriterCommands.xcu msgctxt "" @@ -25659,7 +25659,7 @@ "PopupLabel\n" "value.text" msgid "Update index" -msgstr "" +msgstr "Nuashonraigh an t-innéacs" #: WriterCommands.xcu msgctxt "" @@ -25677,7 +25677,7 @@ "Label\n" "value.text" msgid "~Protect..." -msgstr "" +msgstr "~Cosain..." #: WriterCommands.xcu msgctxt "" @@ -25686,7 +25686,7 @@ "TooltipLabel\n" "value.text" msgid "Protect Track Changes" -msgstr "" +msgstr "Cosain Rianú Athruithe" #: WriterCommands.xcu msgctxt "" @@ -25695,7 +25695,7 @@ "Label\n" "value.text" msgid "Reject" -msgstr "" +msgstr "Diúltaigh" #: WriterCommands.xcu msgctxt "" @@ -25704,7 +25704,7 @@ "TooltipLabel\n" "value.text" msgid "Reject Track Change" -msgstr "" +msgstr "Diúltaigh an tAthrú Rianaithe" #: WriterCommands.xcu msgctxt "" @@ -25713,7 +25713,7 @@ "PopupLabel\n" "value.text" msgid "Reject Change" -msgstr "" +msgstr "Diúltaigh an tAthrú" #: WriterCommands.xcu msgctxt "" @@ -25722,7 +25722,7 @@ "Label\n" "value.text" msgid "Accept" -msgstr "" +msgstr "Glac Leis" #: WriterCommands.xcu msgctxt "" @@ -25731,7 +25731,7 @@ "TooltipLabel\n" "value.text" msgid "Accept Track Change" -msgstr "" +msgstr "Glac leis an Athrú Rianaithe" #: WriterCommands.xcu msgctxt "" @@ -25740,7 +25740,7 @@ "PopupLabel\n" "value.text" msgid "Accept Change" -msgstr "" +msgstr "Glac leis an Athrú" #: WriterCommands.xcu msgctxt "" @@ -25749,7 +25749,7 @@ "Label\n" "value.text" msgid "Next" -msgstr "" +msgstr "Ar aghaidh" #: WriterCommands.xcu msgctxt "" @@ -25758,7 +25758,7 @@ "TooltipLabel\n" "value.text" msgid "Next Track Change" -msgstr "" +msgstr "An Chéad Athrú Rianaithe Eile" #: WriterCommands.xcu msgctxt "" @@ -25767,7 +25767,7 @@ "Label\n" "value.text" msgid "Pr~evious" -msgstr "" +msgstr "~Roimhe seo" #: WriterCommands.xcu msgctxt "" @@ -25776,7 +25776,7 @@ "TooltipLabel\n" "value.text" msgid "Previous Track Change" -msgstr "" +msgstr "An tAthrú Rianaithe Roimhe Seo" #: WriterCommands.xcu msgctxt "" @@ -25794,7 +25794,7 @@ "Label\n" "value.text" msgid "~Record" -msgstr "" +msgstr "~Taifead" #: WriterCommands.xcu msgctxt "" @@ -25803,7 +25803,7 @@ "TooltipLabel\n" "value.text" msgid "Record Track Changes" -msgstr "" +msgstr "Taifead Athruithe Rianaithe" #: WriterCommands.xcu msgctxt "" @@ -25812,7 +25812,7 @@ "Label\n" "value.text" msgid "Track Changes Functions" -msgstr "" +msgstr "Feidhmeanna do Rianú Athruithe" #: WriterCommands.xcu msgctxt "" @@ -25821,7 +25821,7 @@ "TooltipLabel\n" "value.text" msgid "Show Track Changes Functions" -msgstr "" +msgstr "Taispeáin Feidhmeanna do Rianú Athruithe" #: WriterCommands.xcu msgctxt "" @@ -25830,7 +25830,7 @@ "Label\n" "value.text" msgid "~Show" -msgstr "" +msgstr "~Taispeáin" #: WriterCommands.xcu msgctxt "" @@ -25839,7 +25839,7 @@ "TooltipLabel\n" "value.text" msgid "Show Track Changes" -msgstr "" +msgstr "Taispeáin na hAthruithe Rianaithe" #: WriterCommands.xcu msgctxt "" @@ -25848,7 +25848,7 @@ "Label\n" "value.text" msgid "~Track Changes" -msgstr "" +msgstr "~Rianú Athruithe" #: WriterCommands.xcu msgctxt "" @@ -25857,7 +25857,7 @@ "Label\n" "value.text" msgid "Go t~o Page" -msgstr "" +msgstr "Téigh g~o Leathanach" #: WriterCommands.xcu msgctxt "" @@ -25866,7 +25866,7 @@ "Label\n" "value.text" msgid "~Comment..." -msgstr "" +msgstr "~Nóta..." #: WriterCommands.xcu msgctxt "" @@ -25875,7 +25875,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Track Change Comment" -msgstr "" +msgstr "Ionsáigh Nóta faoi Athrú Rianaithe" #: WriterCommands.xcu msgctxt "" @@ -25902,7 +25902,7 @@ "Label\n" "value.text" msgid "~Manage..." -msgstr "" +msgstr "~Bainistigh..." #: WriterCommands.xcu msgctxt "" @@ -25911,7 +25911,7 @@ "TooltipLabel\n" "value.text" msgid "Manage Track Changes" -msgstr "" +msgstr "Bainistigh na hAthruithe Rianaithe" #: WriterCommands.xcu msgctxt "" @@ -25938,7 +25938,7 @@ "Label\n" "value.text" msgid "~Charts" -msgstr "" +msgstr "~Cairteacha" #: WriterCommands.xcu #, fuzzy @@ -25994,7 +25994,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Bookmark" -msgstr "" +msgstr "Ionsáigh Leabharmharc" #: WriterCommands.xcu msgctxt "" @@ -26003,7 +26003,7 @@ "Label\n" "value.text" msgid "Anc~hor..." -msgstr "" +msgstr "An~caire..." #: WriterCommands.xcu msgctxt "" @@ -26067,7 +26067,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Caption" -msgstr "" +msgstr "Ionsáigh Foscríbhinn" #: WriterCommands.xcu msgctxt "" @@ -26076,7 +26076,7 @@ "PopupLabel\n" "value.text" msgid "Insert Caption..." -msgstr "" +msgstr "Ionsáigh Foscríbhinn..." #: WriterCommands.xcu #, fuzzy @@ -26104,7 +26104,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Cross-reference" -msgstr "" +msgstr "Ionsáigh Crostagairt" #: WriterCommands.xcu msgctxt "" @@ -26140,7 +26140,7 @@ "Label\n" "value.text" msgid "~Page Break" -msgstr "" +msgstr "~Briseadh Leathanaigh" #: WriterCommands.xcu msgctxt "" @@ -26149,7 +26149,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Page Break" -msgstr "" +msgstr "Ionsáigh Briseadh Leathanaigh" #: WriterCommands.xcu msgctxt "" @@ -26158,7 +26158,7 @@ "Label\n" "value.text" msgid "Table" -msgstr "" +msgstr "Tábla" #: WriterCommands.xcu msgctxt "" @@ -26167,7 +26167,7 @@ "ContextLabel\n" "value.text" msgid "Insert ~Table..." -msgstr "" +msgstr "Ionsáigh ~Tábla..." #: WriterCommands.xcu msgctxt "" @@ -26176,7 +26176,7 @@ "Label\n" "value.text" msgid "Insert Frame Interactively" -msgstr "" +msgstr "Ionsáigh Fráma go hidirghníomhach" #: WriterCommands.xcu msgctxt "" @@ -26185,7 +26185,7 @@ "ContextLabel\n" "value.text" msgid "~Frame Interactively" -msgstr "" +msgstr "~Fráma go hidirghníomhach" #: WriterCommands.xcu msgctxt "" @@ -26194,7 +26194,7 @@ "Label\n" "value.text" msgid "Frame" -msgstr "" +msgstr "Fráma" #: WriterCommands.xcu #, fuzzy @@ -26213,7 +26213,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Frame" -msgstr "" +msgstr "Ionsáigh Fráma" #: WriterCommands.xcu msgctxt "" @@ -26231,7 +26231,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Index Entry" -msgstr "" +msgstr "Ionsáigh Iontráil san Innéacs" #: WriterCommands.xcu msgctxt "" @@ -26321,7 +26321,7 @@ "Label\n" "value.text" msgid "First Mail Merge Entry" -msgstr "" +msgstr "An Chéad Iontráil Phostchumaisc" #: WriterCommands.xcu msgctxt "" @@ -26330,7 +26330,7 @@ "Label\n" "value.text" msgid "Previous Mail Merge Entry" -msgstr "" +msgstr "An Iontráil Phostchumaisc Roimhe Seo" #: WriterCommands.xcu msgctxt "" @@ -26339,7 +26339,7 @@ "Label\n" "value.text" msgid "Current Mail Merge Entry" -msgstr "" +msgstr "An Iontráil Phostchumaisc Reatha" #: WriterCommands.xcu msgctxt "" @@ -26348,7 +26348,7 @@ "Label\n" "value.text" msgid "Next Mail Merge Entry" -msgstr "" +msgstr "An Chéad Iontráil Phostchumaisc Eile" #: WriterCommands.xcu msgctxt "" @@ -26357,7 +26357,7 @@ "Label\n" "value.text" msgid "Last Mail Merge Entry" -msgstr "" +msgstr "An Iontráil Phostchumaisc Dheireanach" #: WriterCommands.xcu msgctxt "" @@ -26366,7 +26366,7 @@ "Label\n" "value.text" msgid "Exclude Mail Merge Entry" -msgstr "" +msgstr "Fág an Iontráil Phostchumaisc as" #: WriterCommands.xcu msgctxt "" @@ -26375,7 +26375,7 @@ "Label\n" "value.text" msgid "Edit Individual Documents" -msgstr "" +msgstr "Cuir cáipéisí aonair in eagar" #: WriterCommands.xcu msgctxt "" @@ -26384,7 +26384,7 @@ "Label\n" "value.text" msgid "Save Merged Documents" -msgstr "" +msgstr "Sábháil Cáipéisí Cumaiscthe" #: WriterCommands.xcu msgctxt "" @@ -26393,7 +26393,7 @@ "Label\n" "value.text" msgid "Print Merged Documents" -msgstr "" +msgstr "Priontáil Cáipéisí Cumaiscthe" #: WriterCommands.xcu msgctxt "" @@ -26402,7 +26402,7 @@ "Label\n" "value.text" msgid "Send E-Mail Messages" -msgstr "" +msgstr "Seol Teachtaireachtaí R-phoist" #: WriterCommands.xcu msgctxt "" @@ -26438,7 +26438,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Formula" -msgstr "" +msgstr "Ionsáigh Foirmle" #: WriterCommands.xcu msgctxt "" @@ -26492,7 +26492,7 @@ "Label\n" "value.text" msgid "Text Box and Shap~e" -msgstr "" +msgstr "Bosca Téacs agus ~Cruth" #: WriterCommands.xcu msgctxt "" @@ -26501,7 +26501,7 @@ "Label\n" "value.text" msgid "Fiel~d" -msgstr "" +msgstr "Réi~mse" #: WriterCommands.xcu msgctxt "" @@ -26510,7 +26510,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Field" -msgstr "" +msgstr "Ionsáigh Réimse" #: WriterCommands.xcu msgctxt "" @@ -26591,7 +26591,7 @@ "Label\n" "value.text" msgid "~Footnote" -msgstr "" +msgstr "~Fonóta" #: WriterCommands.xcu msgctxt "" @@ -26600,7 +26600,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Footnote" -msgstr "" +msgstr "Ionsáigh Fonóta" #: WriterCommands.xcu msgctxt "" @@ -26862,7 +26862,7 @@ "Label\n" "value.text" msgid "Rotate 1~80°" -msgstr "" +msgstr "Rothlaigh 1~80°" #: WriterCommands.xcu msgctxt "" @@ -27167,7 +27167,7 @@ "Label\n" "value.text" msgid "~Footnotes and Endnotes..." -msgstr "" +msgstr "~Fonótaí agus Iarnótaí..." #: WriterCommands.xcu msgctxt "" @@ -27176,7 +27176,7 @@ "Label\n" "value.text" msgid "Clear" -msgstr "" +msgstr "Bánaigh" #: WriterCommands.xcu msgctxt "" @@ -27185,7 +27185,7 @@ "ContextLabel\n" "value.text" msgid "Clear ~Direct Formatting" -msgstr "" +msgstr "Glan Formáidiú ~Díreach" #: WriterCommands.xcu msgctxt "" @@ -27194,7 +27194,7 @@ "TooltipLabel\n" "value.text" msgid "Clear Direct Formatting" -msgstr "" +msgstr "Glan Formáidiú Díreach" #: WriterCommands.xcu msgctxt "" @@ -27302,7 +27302,7 @@ "Label\n" "value.text" msgid "Align Top to Anchor" -msgstr "" +msgstr "Ailínigh an Barr leis an Ancaire" #: WriterCommands.xcu msgctxt "" @@ -27311,7 +27311,7 @@ "Label\n" "value.text" msgid "Align Bottom to Anchor" -msgstr "" +msgstr "Ailínigh an Bun leis an Ancaire" #: WriterCommands.xcu msgctxt "" @@ -27320,7 +27320,7 @@ "Label\n" "value.text" msgid "Align Middle to Anchor" -msgstr "" +msgstr "Ailínigh an Lár leis an Ancaire" #: WriterCommands.xcu msgctxt "" @@ -27383,7 +27383,7 @@ "Label\n" "value.text" msgid "Header Rows Repeat Across Pages" -msgstr "" +msgstr "Úsáid na rónna ceanntáisc ar gach leathanach" #: WriterCommands.xcu msgctxt "" @@ -27410,7 +27410,7 @@ "Label\n" "value.text" msgid "Insert Rows Above" -msgstr "" +msgstr "Ionsáigh rónna os cionn an ró seo" #: WriterCommands.xcu msgctxt "" @@ -27419,7 +27419,7 @@ "ContextLabel\n" "value.text" msgid "Rows ~Above" -msgstr "" +msgstr "Os cionn ~an ró seo" #: WriterCommands.xcu msgctxt "" @@ -27437,7 +27437,7 @@ "Label\n" "value.text" msgid "Insert Rows Below" -msgstr "" +msgstr "Ionsáigh rónna faoin ró seo" #: WriterCommands.xcu msgctxt "" @@ -27446,7 +27446,7 @@ "ContextLabel\n" "value.text" msgid "Rows ~Below" -msgstr "" +msgstr "~Faoin ró seo" #: WriterCommands.xcu msgctxt "" @@ -27474,7 +27474,7 @@ "ContextLabel\n" "value.text" msgid "Columns ~Left" -msgstr "" +msgstr "Co~lúin Ar Chlé" #: WriterCommands.xcu msgctxt "" @@ -27502,7 +27502,7 @@ "ContextLabel\n" "value.text" msgid "Columns R~ight" -msgstr "" +msgstr "Colú~in Ar Dheis" #: WriterCommands.xcu msgctxt "" @@ -27520,7 +27520,7 @@ "PopupLabel\n" "value.text" msgid "~More Options..." -msgstr "" +msgstr "~Tuilleadh Roghanna..." #: WriterCommands.xcu msgctxt "" @@ -27619,7 +27619,7 @@ "Label\n" "value.text" msgid "Optimize Size" -msgstr "" +msgstr "Optamaigh an Mhéid" #: WriterCommands.xcu msgctxt "" @@ -28244,7 +28244,7 @@ "Label\n" "value.text" msgid "Jump To Specific Page" -msgstr "" +msgstr "Léim go Leathanach ar leith" #: WriterCommands.xcu msgctxt "" @@ -28344,7 +28344,7 @@ "Label\n" "value.text" msgid "Edit Section..." -msgstr "" +msgstr "Cuir Rannán in Eagar..." #: WriterCommands.xcu msgctxt "" @@ -28850,7 +28850,7 @@ "Label\n" "value.text" msgid "Row to ~Break Across Pages" -msgstr "" +msgstr "Ró le ~Briseadh thar Leathanach" #: WriterCommands.xcu msgctxt "" @@ -29058,7 +29058,7 @@ "Label\n" "value.text" msgid "View Images and Charts" -msgstr "" +msgstr "Amharc Íomhánna agus Cairteacha" #: WriterCommands.xcu msgctxt "" @@ -29067,7 +29067,7 @@ "ContextLabel\n" "value.text" msgid "~Images and Charts" -msgstr "" +msgstr "Íomhánna agus C~airteacha" #: WriterCommands.xcu msgctxt "" @@ -29177,7 +29177,7 @@ "Label\n" "value.text" msgid "Chapter ~Numbering..." -msgstr "" +msgstr "Uimhriú ~Caibidlí..." #: WriterCommands.xcu msgctxt "" @@ -29186,7 +29186,7 @@ "TooltipLabel\n" "value.text" msgid "Set Chapter Numbering" -msgstr "" +msgstr "Socraigh Uimhriú Caibidlí" #: WriterCommands.xcu msgctxt "" @@ -29195,7 +29195,7 @@ "Label\n" "value.text" msgid "Formatting Marks" -msgstr "" +msgstr "Marcanna Formáidithe" #: WriterCommands.xcu msgctxt "" @@ -29204,7 +29204,7 @@ "ContextLabel\n" "value.text" msgid "For~matting Marks" -msgstr "" +msgstr "Marcanna For~máidithe" #: WriterCommands.xcu msgctxt "" @@ -29213,7 +29213,7 @@ "TooltipLabel\n" "value.text" msgid "Toggle Formatting Marks" -msgstr "" +msgstr "Scoránaigh na Marcanna Formáidithe" #: WriterCommands.xcu msgctxt "" @@ -29222,7 +29222,7 @@ "Label\n" "value.text" msgid "Hide Whitespac~e" -msgstr "" +msgstr "Folaigh Spás ~Bán" #: WriterCommands.xcu msgctxt "" @@ -29339,7 +29339,7 @@ "Label\n" "value.text" msgid "Smart ~Tag Options..." -msgstr "" +msgstr "Roghanna maidir le Clibeanna Clis~te..." #: WriterCommands.xcu #, fuzzy @@ -29422,7 +29422,7 @@ "Label\n" "value.text" msgid "Table of Contents and Inde~x" -msgstr "" +msgstr "Clár na nÁbhar agus an tInnéa~cs" #: WriterCommands.xcu msgctxt "" @@ -29431,7 +29431,7 @@ "Label\n" "value.text" msgid "Comments..." -msgstr "" +msgstr "Nótaí..." #: WriterCommands.xcu msgctxt "" @@ -29440,7 +29440,7 @@ "PopupLabel\n" "value.text" msgid "~Format All Comments..." -msgstr "" +msgstr "~Formáidigh Gach Nóta..." #: WriterCommands.xcu msgctxt "" @@ -29585,7 +29585,7 @@ "Label\n" "value.text" msgid "Default ~Paragraph" -msgstr "" +msgstr "~Alt Réamhshocraithe" #: WriterCommands.xcu #, fuzzy @@ -29614,7 +29614,7 @@ "Label\n" "value.text" msgid "Heading ~1" -msgstr "" +msgstr "Ceannteideal ~1" #: WriterCommands.xcu msgctxt "" @@ -29623,7 +29623,7 @@ "Label\n" "value.text" msgid "Heading ~2" -msgstr "" +msgstr "Ceannteideal ~2" #: WriterCommands.xcu msgctxt "" @@ -29632,7 +29632,7 @@ "Label\n" "value.text" msgid "Heading ~3" -msgstr "" +msgstr "Ceannteideal ~3" #: WriterCommands.xcu msgctxt "" @@ -29641,7 +29641,7 @@ "Label\n" "value.text" msgid "Heading ~4" -msgstr "" +msgstr "Ceannteideal ~4" #: WriterCommands.xcu msgctxt "" @@ -29650,7 +29650,7 @@ "Label\n" "value.text" msgid "Heading ~5" -msgstr "" +msgstr "Ceannteideal ~5" #: WriterCommands.xcu msgctxt "" @@ -29659,7 +29659,7 @@ "Label\n" "value.text" msgid "Heading ~6" -msgstr "" +msgstr "Ceannteideal ~6" #: WriterCommands.xcu msgctxt "" @@ -29668,7 +29668,7 @@ "Label\n" "value.text" msgid "~Quotations" -msgstr "" +msgstr "~Athfhriotail" #: WriterCommands.xcu msgctxt "" @@ -29677,7 +29677,7 @@ "Label\n" "value.text" msgid "Pre~formatted Text" -msgstr "" +msgstr "Téacs Réamh~fhormáidithe" #: WriterCommands.xcu #, fuzzy @@ -29696,7 +29696,7 @@ "Label\n" "value.text" msgid "Default ~Character" -msgstr "" +msgstr "~Carachtar Réamhshocraithe" #: WriterCommands.xcu msgctxt "" @@ -29705,7 +29705,7 @@ "Label\n" "value.text" msgid "E~mphasis" -msgstr "" +msgstr "Béi~m" #: WriterCommands.xcu msgctxt "" @@ -29714,7 +29714,7 @@ "Label\n" "value.text" msgid "~Strong Emphasis" -msgstr "" +msgstr "Béim ~Láidir" #: WriterCommands.xcu msgctxt "" @@ -29732,7 +29732,7 @@ "Label\n" "value.text" msgid "Sou~rce Text" -msgstr "" +msgstr "Buntéac~s" #: WriterCommands.xcu msgctxt "" @@ -29741,7 +29741,7 @@ "Label\n" "value.text" msgid "Bullet List" -msgstr "" +msgstr "Liosta le hUrchair" #: WriterCommands.xcu msgctxt "" @@ -29750,7 +29750,7 @@ "Label\n" "value.text" msgid "Number List" -msgstr "" +msgstr "Liosta Uimhrithe" #: WriterCommands.xcu msgctxt "" @@ -29759,7 +29759,7 @@ "Label\n" "value.text" msgid "Roman List" -msgstr "" +msgstr "Liosta Uimhrithe Rómhánach" #: WriterCommands.xcu msgctxt "" @@ -29768,7 +29768,7 @@ "Label\n" "value.text" msgid "Paragraph Style" -msgstr "" +msgstr "Stíl Ailt" #: WriterCommands.xcu msgctxt "" @@ -29777,7 +29777,7 @@ "TooltipLabel\n" "value.text" msgid "Set Paragraph Style" -msgstr "" +msgstr "Socraigh an Stíl Ailt" #: WriterCommands.xcu msgctxt "" @@ -29786,7 +29786,7 @@ "Label\n" "value.text" msgid "Orientation" -msgstr "" +msgstr "Treoshuíomh" #: WriterCommands.xcu msgctxt "" @@ -29795,7 +29795,7 @@ "Label\n" "value.text" msgid "Page Size" -msgstr "" +msgstr "Méid an Leathanaigh" #: WriterCommands.xcu msgctxt "" @@ -29804,7 +29804,7 @@ "Label\n" "value.text" msgid "Page Margin" -msgstr "" +msgstr "Imeall an Leathanaigh" #: WriterCommands.xcu msgctxt "" @@ -29813,7 +29813,7 @@ "Label\n" "value.text" msgid "Hanging Indent" -msgstr "" +msgstr "Eangú Crochta" #: WriterCommands.xcu msgctxt "" @@ -29969,7 +29969,7 @@ "UIName\n" "value.text" msgid "Mail Merge" -msgstr "" +msgstr "Postchumasc" #: WriterFormWindowState.xcu msgctxt "" @@ -30893,7 +30893,7 @@ "UIName\n" "value.text" msgid "Mail Merge" -msgstr "" +msgstr "Postchumasc" #: WriterReportWindowState.xcu msgctxt "" @@ -31694,7 +31694,7 @@ "UIName\n" "value.text" msgid "Notebookbar" -msgstr "" +msgstr "Ribínbharra" #: WriterWindowState.xcu #, fuzzy @@ -31752,7 +31752,7 @@ "UIName\n" "value.text" msgid "Notebookbar shortcuts" -msgstr "" +msgstr "Aicearraí ribínbharra" #: WriterWindowState.xcu msgctxt "" @@ -31779,7 +31779,7 @@ "UIName\n" "value.text" msgid "Mail Merge" -msgstr "" +msgstr "Postchumasc" #: WriterWindowState.xcu msgctxt "" @@ -31807,7 +31807,7 @@ "UIName\n" "value.text" msgid "Arrows" -msgstr "" +msgstr "Saigheada" #: WriterWindowState.xcu msgctxt "" @@ -31816,7 +31816,7 @@ "UIName\n" "value.text" msgid "TSCP Classification" -msgstr "" +msgstr "Aicmiú TSCP" #: WriterWindowState.xcu msgctxt "" @@ -31988,7 +31988,7 @@ "UIName\n" "value.text" msgid "Optimize Size" -msgstr "" +msgstr "Optamaigh an Mhéid" #: WriterWindowState.xcu msgctxt "" @@ -32141,7 +32141,7 @@ "UIName\n" "value.text" msgid "Track Changes" -msgstr "" +msgstr "Rianú Athruithe" #: WriterWindowState.xcu msgctxt "" @@ -32150,7 +32150,7 @@ "UIName\n" "value.text" msgid "Standard (Single Mode)" -msgstr "" +msgstr "Caighdeánach (Mód Aonair)" #: WriterWindowState.xcu msgctxt "" @@ -32159,7 +32159,7 @@ "UIName\n" "value.text" msgid "Formatting (Styles)" -msgstr "" +msgstr "Formáidiú (Stíleanna)" #: XFormsWindowState.xcu #, fuzzy diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ga/officecfg/registry/data/org/openoffice/Office.po libreoffice-l10n-5.4.4~rc2/translations/source/ga/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ga/officecfg/registry/data/org/openoffice/Office.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ga/officecfg/registry/data/org/openoffice/Office.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LO\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: 2016-11-16 11:00+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-12 01:36+0000\n" +"Last-Translator: Kevin Scannell \n" "Language-Team: \n" "Language: ga\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1479294016.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510450584.000000\n" #: Addons.xcu msgctxt "" @@ -23,7 +23,7 @@ "Title\n" "value.text" msgid "FORWARD 10" -msgstr "" +msgstr "AR AGHAIDH 10" #: Addons.xcu msgctxt "" @@ -32,7 +32,7 @@ "Title\n" "value.text" msgid "BACK 10" -msgstr "" +msgstr "AR gCÚL 10" #: Addons.xcu msgctxt "" @@ -41,7 +41,7 @@ "Title\n" "value.text" msgid "LEFT 15°" -msgstr "" +msgstr "AR CHLÉ 15°" #: Addons.xcu msgctxt "" @@ -50,7 +50,7 @@ "Title\n" "value.text" msgid "RIGHT 15°" -msgstr "" +msgstr "AR DHEIS 15°" #: Addons.xcu msgctxt "" @@ -68,7 +68,7 @@ "Title\n" "value.text" msgid "STOP" -msgstr "" +msgstr "STAD" #: Addons.xcu msgctxt "" @@ -77,7 +77,7 @@ "Title\n" "value.text" msgid "HOME" -msgstr "" +msgstr "BAILE" #: Addons.xcu msgctxt "" @@ -86,7 +86,7 @@ "Title\n" "value.text" msgid "CLEARSCREEN" -msgstr "" +msgstr "GLAN" #: Addons.xcu #, fuzzy @@ -105,7 +105,7 @@ "Title\n" "value.text" msgid "Set editing layout, format program or translate it into the language of the document" -msgstr "" +msgstr "Socraigh an leagan amach eagarthóireachta, formáidigh an clár, nó aistrigh go dtí teanga na cáipéise é" #: Common.xcu msgctxt "" @@ -1014,7 +1014,7 @@ "STR_IMAGE_OPTIMIZATION\n" "value.text" msgid "Images" -msgstr "" +msgstr "Íomhánna" #: PresentationMinimizer.xcu msgctxt "" @@ -1105,7 +1105,7 @@ "STR_EMBED_LINKED_GRAPHICS\n" "value.text" msgid "~Embed external images" -msgstr "" +msgstr "L~eabaigh íomhánna seachtracha" #: PresentationMinimizer.xcu msgctxt "" @@ -1405,7 +1405,7 @@ "STR_OPTIMIZING_GRAPHICS\n" "value.text" msgid "Optimizing images..." -msgstr "" +msgstr "Íomhánna á n-optamú..." #: PresentationMinimizer.xcu #, fuzzy @@ -1505,7 +1505,7 @@ "Text\n" "value.text" msgid "Restart" -msgstr "" +msgstr "Atosaigh" #: PresenterScreen.xcu #, fuzzy @@ -1868,7 +1868,7 @@ "Right\n" "value.text" msgid "Switches monitors" -msgstr "" +msgstr "Athraíonn seo an scáileán" #: PresenterScreen.xcu msgctxt "" @@ -11525,7 +11525,7 @@ "DisplayName\n" "value.text" msgid "Formulas" -msgstr "" +msgstr "Foirmlí" #: UI.xcu msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ga/officecfg/registry/data/org/openoffice.po libreoffice-l10n-5.4.4~rc2/translations/source/ga/officecfg/registry/data/org/openoffice.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ga/officecfg/registry/data/org/openoffice.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ga/officecfg/registry/data/org/openoffice.po 2017-12-12 17:45:07.000000000 +0000 @@ -3,16 +3,18 @@ msgstr "" "Project-Id-Version: LO\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: 2012-11-19 16:30-0000\n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2017-11-12 01:36+0000\n" "Last-Translator: Kevin Scannell \n" "Language-Team: \n" "Language: ga\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510450570.000000\n" #: Setup.xcu msgctxt "" @@ -21,7 +23,7 @@ "ooSetupFactoryUIName\n" "value.text" msgid "Base: Database Form" -msgstr "" +msgstr "Base: Foirm Bhunachair Sonraí" #: Setup.xcu msgctxt "" @@ -30,7 +32,7 @@ "ooSetupFactoryUIName\n" "value.text" msgid "Base: Report Design" -msgstr "" +msgstr "Base: Dearadh Tuairisce" #: Setup.xcu msgctxt "" @@ -84,7 +86,7 @@ "ooSetupFactoryUIName\n" "value.text" msgid "Base: Table Data View" -msgstr "" +msgstr "Base: Amharc Sonraí Tábla" #: Setup.xcu msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ga/readlicense_oo/docs.po libreoffice-l10n-5.4.4~rc2/translations/source/ga/readlicense_oo/docs.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ga/readlicense_oo/docs.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ga/readlicense_oo/docs.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: LO\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-03-09 20:48+0100\n" -"PO-Revision-Date: 2015-12-11 16:21+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2017-11-12 01:36+0000\n" +"Last-Translator: Kevin Scannell \n" "Language-Team: \n" "Language: ga\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 ? 1 : 2;\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1449850898.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510450588.000000\n" #: readme.xrm msgctxt "" @@ -839,4 +839,4 @@ "ModifiedSourceCodePara\n" "readmeitem.text" msgid "Portions Copyright 1998, 1999 James Clark. Portions Copyright 1996, 1998 Netscape Communications Corporation." -msgstr "" +msgstr "Codanna Cóipcheart 1998, 1999 James Clark. Codanna Cóipcheart 1996, 1998 Netscape Communications Corporation." diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ga/scp2/source/activex.po libreoffice-l10n-5.4.4~rc2/translations/source/ga/scp2/source/activex.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ga/scp2/source/activex.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ga/scp2/source/activex.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: LO\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-03-09 20:48+0100\n" -"PO-Revision-Date: 2013-05-24 07:26+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2017-11-12 01:35+0000\n" +"Last-Translator: Kevin Scannell \n" "Language-Team: \n" "Language: ga\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 ? 1 : 2;\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1369380391.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510450541.000000\n" #: module_activex.ulf msgctxt "" @@ -30,4 +30,4 @@ "STR_DESC_MODULE_OPTIONAL_ACTIVEXCONTROL\n" "LngText.text" msgid "Deprecated Component (see release notes) to enable Microsoft Internet Explorer to display %PRODUCTNAME documents." -msgstr "" +msgstr "Comhpháirt (i léig, féach na nótaí eisiúna) a ligeann do Microsoft Internet Explorer cáipéisí %PRODUCTNAME a thaispeáint." diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ga/scp2/source/calc.po libreoffice-l10n-5.4.4~rc2/translations/source/ga/scp2/source/calc.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ga/scp2/source/calc.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ga/scp2/source/calc.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LO\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:13+0200\n" -"PO-Revision-Date: 2015-01-28 02:45+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-12 01:35+0000\n" +"Last-Translator: Kevin Scannell \n" "Language-Team: \n" "Language: ga\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1422413128.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510450541.000000\n" #: folderitem_calc.ulf msgctxt "" @@ -158,7 +158,7 @@ "STR_REG_VAL_MS_EXCEL_WEBQUERY\n" "LngText.text" msgid "Microsoft Excel Web Query File" -msgstr "" +msgstr "Comhad Iarratais Gréasáin Microsoft Excel" #: registryitem_calc.ulf msgctxt "" @@ -190,4 +190,4 @@ "STR_REG_VAL_QUATTROPRO_SPREADSHEET\n" "LngText.text" msgid "Lotus Quattro Pro Spreadsheet" -msgstr "" +msgstr "Scarbhileog Lotus Quattro Pro" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ga/scp2/source/draw.po libreoffice-l10n-5.4.4~rc2/translations/source/ga/scp2/source/draw.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ga/scp2/source/draw.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ga/scp2/source/draw.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: LO\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2015-05-12 13:04+0000\n" -"Last-Translator: system user <>\n" +"PO-Revision-Date: 2017-11-12 01:35+0000\n" +"Last-Translator: Kevin Scannell \n" "Language-Team: \n" "Language: ga\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 ? 1 : 2;\n" -"X-Generator: Pootle 2.7\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1431435889.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510450542.000000\n" #: folderitem_draw.ulf msgctxt "" @@ -190,7 +190,7 @@ "STR_REG_VAL_MACINTOSH_PICTURE_METAFILE\n" "LngText.text" msgid "Macintosh Picture Metafile" -msgstr "" +msgstr "Meiteachomhad Pictiúir Macintosh" #: registryitem_draw.ulf msgctxt "" @@ -223,7 +223,7 @@ "STR_REG_VAL_COREL_PRESENTATION_EXCHANGE\n" "LngText.text" msgid "Corel Presentation Exchange File" -msgstr "" +msgstr "Comhad Corel Presentation Exchange" #: registryitem_draw.ulf msgctxt "" @@ -255,7 +255,7 @@ "STR_REG_VAL_PERSONAL_COMPUTER_EXCHANGE\n" "LngText.text" msgid "Personal Computer Exchange File" -msgstr "" +msgstr "Comhad Personal Computer Exchange" #: registryitem_draw.ulf #, fuzzy @@ -329,7 +329,7 @@ "STR_REG_VAL_X_BITMAP\n" "LngText.text" msgid "X BitMap File" -msgstr "" +msgstr "Mapa Giotán X" #: registryitem_draw.ulf msgctxt "" @@ -337,7 +337,7 @@ "STR_REG_VAL_X_PIXMAP\n" "LngText.text" msgid "X Pixmap File" -msgstr "" +msgstr "Mapa Picteilíní X" #: registryitem_draw.ulf msgctxt "" @@ -345,4 +345,4 @@ "STR_REG_VAL_KODAK_PHOTO_CD_IMAGE\n" "LngText.text" msgid "Kodak Photo CD Image File" -msgstr "" +msgstr "Íomhá CD Grianghraf Kodak" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ga/scp2/source/extensions.po libreoffice-l10n-5.4.4~rc2/translations/source/ga/scp2/source/extensions.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ga/scp2/source/extensions.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ga/scp2/source/extensions.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LO\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:13+0200\n" -"PO-Revision-Date: 2016-12-01 21:33+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-12 01:35+0000\n" +"Last-Translator: Kevin Scannell \n" "Language-Team: \n" "Language: ga\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1480627984.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510450542.000000\n" #: module_extensions.ulf msgctxt "" @@ -62,7 +62,7 @@ "STR_DESC_MODULE_OPTIONAL_EXTENSIONS_NUMBERTEXT\n" "LngText.text" msgid "Provides the NUMBERTEXT/MONEYTEXT spreadsheet functions which convert numbers to localized text, e.g. '100' to 'hundred'." -msgstr "" +msgstr "Soláthraíonn seo na feidhmeanna scarbhileoige NUMBERTEXT/ MONEYTEXT a thiontaíonn uimhreacha go téacs i do theanga, m.sh. '50' go 'caoga'." #: module_extensions.ulf msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ga/scp2/source/impress.po libreoffice-l10n-5.4.4~rc2/translations/source/ga/scp2/source/impress.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ga/scp2/source/impress.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ga/scp2/source/impress.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,15 +4,17 @@ "Project-Id-Version: LO\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2012-11-19 16:30-0000\n" +"PO-Revision-Date: 2017-11-12 01:35+0000\n" "Last-Translator: Kevin Scannell \n" "Language-Team: \n" "Language: ga\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510450541.000000\n" #: folderitem_impress.ulf msgctxt "" @@ -180,4 +182,4 @@ "STR_REG_VAL_COMPUTER_GRAPHICS_METAFILE\n" "LngText.text" msgid "Computer Graphics Metafile" -msgstr "" +msgstr "Meiteachomhad Grafaicí Ríomhaire" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ga/scp2/source/ooo.po libreoffice-l10n-5.4.4~rc2/translations/source/ga/scp2/source/ooo.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ga/scp2/source/ooo.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ga/scp2/source/ooo.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LO\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-29 18:39+0200\n" -"PO-Revision-Date: 2016-12-01 21:34+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-12 01:35+0000\n" +"Last-Translator: Kevin Scannell \n" "Language-Team: \n" "Language: ga\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1480628048.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510450542.000000\n" #: folderitem_ooo.ulf msgctxt "" @@ -687,7 +687,7 @@ "STR_NAME_MODULE_HELPPACK_OR\n" "LngText.text" msgid "Odia" -msgstr "" +msgstr "Oirísis" #: module_helppack.ulf #, fuzzy @@ -2050,7 +2050,7 @@ "STR_NAME_MODULE_LANGPACK_HSB\n" "LngText.text" msgid "Upper Sorbian" -msgstr "" +msgstr "Sorbais Uachtarach" #: module_langpack.ulf msgctxt "" @@ -2058,7 +2058,7 @@ "STR_DESC_MODULE_LANGPACK_HSB\n" "LngText.text" msgid "Installs the Upper Sorbian user interface" -msgstr "" +msgstr "Suiteáil an comhéadan Sorbaise Uachtaraí" #: module_langpack.ulf msgctxt "" @@ -2498,7 +2498,7 @@ "STR_NAME_MODULE_LANGPACK_OR\n" "LngText.text" msgid "Odia" -msgstr "" +msgstr "Oirísis" #: module_langpack.ulf #, fuzzy @@ -3091,7 +3091,7 @@ "STR_NAME_MODULE_LANGPACK_VEC\n" "LngText.text" msgid "Venetian" -msgstr "" +msgstr "Veinéisis" #: module_langpack.ulf msgctxt "" @@ -3099,7 +3099,7 @@ "STR_DESC_MODULE_LANGPACK_VEC\n" "LngText.text" msgid "Installs the Venetian user interface" -msgstr "" +msgstr "Suiteáil an comhéadan Veinéisise" #: module_langpack.ulf msgctxt "" @@ -3829,7 +3829,7 @@ "STR_NAME_MODULE_EXTENSION_DICTIONARY_BO\n" "LngText.text" msgid "Classical Tibetan" -msgstr "" +msgstr "Tibéidis Chlasaiceach" #: module_ooo.ulf msgctxt "" @@ -3837,7 +3837,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_BO\n" "LngText.text" msgid "Classical Tibetan syllable spelling dictionary" -msgstr "" +msgstr "Litreoir siollaí sa Tibéidis Chlasaiceach" #: module_ooo.ulf msgctxt "" @@ -4165,7 +4165,7 @@ "STR_NAME_MODULE_EXTENSION_DICTIONARY_KMR_LATN\n" "LngText.text" msgid "Kurdish, Northern, Latin script" -msgstr "" +msgstr "Coirdis, Tuaisceartach, script Laidineach" #: module_ooo.ulf msgctxt "" @@ -4173,7 +4173,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_KMR_LATN\n" "LngText.text" msgid "Kurdish, Northern, Latin script spelling dictionary" -msgstr "" +msgstr "Coirdis, Tuaisceartach, litreoir Laidineach" #: module_ooo.ulf msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ga/scp2/source/python.po libreoffice-l10n-5.4.4~rc2/translations/source/ga/scp2/source/python.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ga/scp2/source/python.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ga/scp2/source/python.po 2017-12-12 17:45:07.000000000 +0000 @@ -2,17 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: LO\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:05+0200\n" -"PO-Revision-Date: 2012-11-19 16:30-0000\n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2017-11-12 01:35+0000\n" "Last-Translator: Kevin Scannell \n" "Language-Team: \n" "Language: ga\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510450541.000000\n" #: module_python_librelogo.ulf msgctxt "" @@ -28,4 +30,4 @@ "STR_DESC_MODULE_OPTIONAL_PYTHON_LIBRELOGO\n" "LngText.text" msgid "Logo (turtle graphics) toolbar for Writer" -msgstr "" +msgstr "Barra uirlisí Logo (grafaicí turtair) do Writer" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ga/scp2/source/writer.po libreoffice-l10n-5.4.4~rc2/translations/source/ga/scp2/source/writer.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ga/scp2/source/writer.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ga/scp2/source/writer.po 2017-12-12 17:45:07.000000000 +0000 @@ -3,16 +3,18 @@ msgstr "" "Project-Id-Version: LO\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: 2012-11-19 16:30-0000\n" +"POT-Creation-Date: 2015-04-22 23:41+0200\n" +"PO-Revision-Date: 2017-11-12 01:35+0000\n" "Last-Translator: Kevin Scannell \n" "Language-Team: \n" "Language: ga\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510450541.000000\n" #: folderitem_writer.ulf msgctxt "" @@ -220,7 +222,7 @@ "STR_REG_VAL_WORDPRO_DOCUMENT\n" "LngText.text" msgid "Lotus Word Pro Document" -msgstr "" +msgstr "Cáipéis Lotus Word Pro" #: registryitem_writer.ulf msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ga/setup_native/source/mac.po libreoffice-l10n-5.4.4~rc2/translations/source/ga/setup_native/source/mac.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ga/setup_native/source/mac.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ga/setup_native/source/mac.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LO\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: 2013-05-24 07:26+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-12 01:36+0000\n" +"Last-Translator: Kevin Scannell \n" "Language-Team: \n" "Language: ga\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1369380408.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510450584.000000\n" #: macinstall.ulf msgctxt "" @@ -142,7 +142,7 @@ "IdentifyQText\n" "LngText.text" msgid "Installation failed; most likely your account does not have the necessary privileges." -msgstr "" +msgstr "Theip ar an tsuiteáil; is dócha nach bhfuil na ceadanna oiriúnacha agat." #: macinstall.ulf msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ga/swext/mediawiki/help.po libreoffice-l10n-5.4.4~rc2/translations/source/ga/swext/mediawiki/help.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ga/swext/mediawiki/help.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ga/swext/mediawiki/help.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: LO\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2013-06-01 19:32+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-12 01:36+0000\n" +"Last-Translator: Kevin Scannell \n" "Language-Team: \n" "Language: ga\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1370115168.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1510450585.000000\n" #: help.tree msgctxt "" @@ -62,7 +62,7 @@ "par_id9647511\n" "help.text" msgid "By using the Wiki Publisher you can upload your current Writer text document to a MediaWiki server. After uploading, all wiki users can read your document on the wiki." -msgstr "" +msgstr "Le Foilsitheoir Vicí beidh tú in ann do cháipéis reatha a uasluchtú ó Writer go freastalaí MediaWiki. Tar éis duit é a uasluchtú, beidh gach duine a úsáideann an vicí in ann do cháipéis a léamh." #: wiki.xhp msgctxt "" @@ -94,7 +94,7 @@ "par_id7387615\n" "help.text" msgid "A wiki account on a supported MediaWiki server" -msgstr "" +msgstr "Cuntas vicí ar fhreastalaí MediaWiki a dtacaítear leis" #: wiki.xhp msgctxt "" @@ -110,7 +110,7 @@ "par_id4277169\n" "help.text" msgid "Before you use the Wiki Publisher, ensure that %PRODUCTNAME uses a Java Runtime Environment (JRE). To check the status of the JRE, choose Tools - Options - %PRODUCTNAME - Advanced. Ensure that “Use a Java runtime environment” is checked and that a Java runtime folder is selected in the big listbox. If no JRE was activated, then activate a JRE of version 1.4 or later and restart %PRODUCTNAME." -msgstr "" +msgstr "Sula n-úsáidfidh tú an Foilsitheoir Vicí, cinntigh go bhfuil Timpeallacht Ama Rite Java (Java Runtime Environment, JRE) in úsáid ag %PRODUCTNAME. Le stádas an JRE a sheiceáil, roghnaigh Uirlisí - Roghanna - %PRODUCTNAME - Casta. Deimhnigh go bhfuil tic in aice le “Úsáid timpeallacht ama rite Java” agus go bhfuil fillteán ama rite Java roghnaithe sa liosta mór. Mura bhfuil JRE ar siúl, gníomhachtaigh JRE, leagan 1.4 nó níos déanaí, agus atosaigh %PRODUCTNAME." #: wiki.xhp msgctxt "" @@ -158,7 +158,7 @@ "par_id6962187\n" "help.text" msgid "In the MediaWiki dialog, enter the account information for the wiki." -msgstr "" +msgstr "Sa dialóg MediaWiki, cuir isteach an fhaisnéis don chuntas ar an vicí." #: wiki.xhp msgctxt "" @@ -166,7 +166,7 @@ "par_id5328836\n" "help.text" msgid "In the URL text box, enter the address of a wiki that you want to connect to." -msgstr "" +msgstr "I mbosca téacs an URL, cuir isteach seoladh vicí a dteastaíonn uait ceangal leis." #: wiki.xhp msgctxt "" @@ -182,7 +182,7 @@ "par_id5906552\n" "help.text" msgid "In the Username box, enter your user ID for your wiki account." -msgstr "" +msgstr "I mbosca an ainm úsáideora, cuir isteach aitheantas úsáideora do chuntais vicí." #: wiki.xhp msgctxt "" @@ -190,7 +190,7 @@ "par_id9297158\n" "help.text" msgid "If the wiki allows anonymous write access, you can leave the Username and Password boxes empty." -msgstr "" +msgstr "Má tá cead ag úsáideoirí gan ainm scríobh ar an vicí, is féidir leat na boscaí Ainm Úsáideora agus Focal Faire a fhágáil folamh." #: wiki.xhp msgctxt "" @@ -198,7 +198,7 @@ "par_id8869594\n" "help.text" msgid "In the Password box, enter the password for your wiki account, then click OK." -msgstr "" +msgstr "Sa bhosca Focal Faire, cuir isteach focal faire do chuntais vicí, agus cliceáil OK." #: wiki.xhp msgctxt "" @@ -206,7 +206,7 @@ "par_id292062\n" "help.text" msgid "Optionally enable “Save password” to save the password between sessions. A master password is used to maintain access to all saved passwords. Choose Tools - Options - %PRODUCTNAME - Security to enable the master password. “Save password” is unavailable when the master password is not enabled." -msgstr "" +msgstr "Tá sé de rogha agat “Sábháil an focal faire” a chumasú chun an focal faire a shábháil ó sheisiún go seisiún. Úsáidtear príomhfhocal faire chun na focail fhaire shábháilte a chosaint. Roghnaigh Uirlisí - Roghanna - %PRODUCTNAME - Slándáil chun an príomhfhocal faire a chumasú. Ní bheidh “Sábháil an focal faire” ar fáil mura bhfuil an príomhfhocal faire cumasaithe." #: wiki.xhp msgctxt "" @@ -230,7 +230,7 @@ "par_id944853\n" "help.text" msgid "Write the content of the wiki page. You can use formatting such as text formats, headings, footnotes, and more. See the list of supported formats." -msgstr "" +msgstr "Scríobh inneachar an leathanaigh vicí. Is féidir leat formáidiú ar nós formáidí téacs, ceannteidil, fonótaí, srl a úsáid. Féach ar an liosta d'fhormáidí inúsáidte." #: wiki.xhp msgctxt "" @@ -254,7 +254,7 @@ "par_id2564165\n" "help.text" msgid "MediaWiki server: Select the wiki." -msgstr "" +msgstr "Freastalaí MediaWiki: Roghnaigh an vicí." #: wiki.xhp msgctxt "" @@ -262,7 +262,7 @@ "par_id5566576\n" "help.text" msgid "Title: Type the title of your page. Type the title of an existing page to overwrite the page with your current text document. Type a new title to create a new page on the wiki." -msgstr "" +msgstr "Teideal: Cuir isteach teideal an leathanaigh. Cuir isteach teideal leathanaigh atá ann cheana chun an cháipéis téacs reatha a chur ina áit. Cuir isteach teideal nua chun leathanach nua a chruthú ar an vicí." #: wiki.xhp msgctxt "" @@ -286,7 +286,7 @@ "par_id452284\n" "help.text" msgid "Show in web browser: Check this box to open your system web browser and show the uploaded wiki page." -msgstr "" +msgstr "Taispeáin i mbrabhsálaí: Cuir tic sa bhosca seo chun brabhsálaí do chórais a oscailt agus an leathanach vicí uasluchtaithe a thaispeáint." #: wiki.xhp msgctxt "" @@ -294,7 +294,7 @@ "par_id8346812\n" "help.text" msgid "Click Send." -msgstr "" +msgstr "Cliceáil Seol." #: wikiaccount.xhp msgctxt "" @@ -350,7 +350,7 @@ "par_id656758\n" "help.text" msgid "Enable to store your password between sessions. The master password must be enabled; see Tools - Options - %PRODUCTNAME - Security." -msgstr "" +msgstr "Is féidir leat d'fhocal faire a stóráil ó sheisiún go seisiún. Caithfear an príomhfhocal faire a chumasú; féach Uirlisí - Roghanna - %PRODUCTNAME - Slándáil." #: wikiaccount.xhp msgctxt "" @@ -358,7 +358,7 @@ "par_id3112582\n" "help.text" msgid "Enter the Internet address of a wiki server in a format like “http://wiki.documentfoundation.org” or copy the URL from a web browser." -msgstr "" +msgstr "Cuir isteach seoladh Idirlín fhreastalaí vicí i bhformáid cosúil le “http://wiki.documentfoundation.org” nó cóipeáil an URL ó bhrabhsálaí." #: wikiaccount.xhp msgctxt "" @@ -366,7 +366,7 @@ "par_id628070\n" "help.text" msgid "If the wiki allows anonymous access, you can leave the account text boxes empty. Else enter your user name and password." -msgstr "" +msgstr "Má cheadaíonn an vicí rochtain gan ainm, is féidir leat boscaí téacs an chuntais a fhágáil bán. Mura gceadaíonn, cuir isteach d'ainm úsáideora agus d'fhocal faire." #: wikiaccount.xhp msgctxt "" @@ -398,7 +398,7 @@ "par_id8654133\n" "help.text" msgid "The following list gives an overview of the text formats that the Wiki Publisher can upload to the wiki server." -msgstr "" +msgstr "Sa liosta seo a leanas tá forbhreathnú ar na formáidí téacs atá an Foilsitheoir Vicí in ann uasluchtú chuig an bhfreastalaí vicí." #: wikiformats.xhp msgctxt "" @@ -406,7 +406,7 @@ "par_id5630664\n" "help.text" msgid "The OpenDocument format used by Writer and the MediaWiki format are quite different. Only a subset of all features can be transformed from one format to the other." -msgstr "" +msgstr "Tá difríochtaí suntasacha idir formáid OpenDocument a úsáideann Writer agus formáid MediaWiki. Ní féidir ach cuid de na gnéithe a aistriú ó fhormáid amháin go dtí an ceann eile." #: wikiformats.xhp msgctxt "" @@ -422,7 +422,7 @@ "par_id508133\n" "help.text" msgid "Apply a heading paragraph style to the headings in your Writer document. The wiki will show the heading styles of the same outline level, formatted as defined by the wiki engine." -msgstr "" +msgstr "Cuir stíl ailt do cheannteidil i bhfeidhm ar na ceannteidil i do cháipéis Writer. Taispeánfaidh an vicí na stíleanna ceannteidil ag an leibhéal imlíne céanna agus iad formáidithe mar a shainmhíníonn an vicí." #: wikiformats.xhp msgctxt "" @@ -438,7 +438,7 @@ "par_id3735465\n" "help.text" msgid "Native OpenDocument hyperlinks are transformed into “external” wiki links. Therefore, the built-in linking facility of OpenDocument should only be used to create links that point to other sites outside the wiki web. For creating wiki links that point to other subjects of the same wiki domain, use wiki links." -msgstr "" +msgstr "Athraítear hipearnaisc OpenDocument go naisc “seachtracha” vicí. Mar sin, ní cheart saoráid ionsuite nasctha OpenDocument a úsáid ach chun naisc a chruthú a cheanglaíonn le suímh taobh amuigh de ghréasán an vicí. Chun naisc a chruthú a cheanglaíonn le rudaí eile san fhearann vicí céanna, úsáid naisc vicí." #: wikiformats.xhp msgctxt "" @@ -454,7 +454,7 @@ "par_id8942838\n" "help.text" msgid "Lists can be exported reliably when the whole list uses a consistent list style. Use the Numbering or Bullets icon to generate a list in Writer. If you need a list without numbering or bullets, use Format - Bullets and Numbering to define and apply the respective list style." -msgstr "" +msgstr "Is féidir liostaí a easpórtáil go hiontaofa má úsáideann an liosta iomlán stíl liosta chomhsheasmhach. Úsáid na deilbhíní Uimhriú nó Urchair chun liosta a chruthú i Writer. Má tá liosta uait gan uimhriú gan urchair, úsáid Formáid - Urchair agus Uimhriú leis an stíl atá uait a shainmhíniú agus a chur i bhfeidhm." #: wikiformats.xhp msgctxt "" @@ -478,7 +478,7 @@ "par_id376598\n" "help.text" msgid "Explicit text alignment should not be used in wiki articles. Nevertheless, text alignment is supported for left, centered, and right alignment of text." -msgstr "" +msgstr "Ní ceart léirailíniú téacs a úsáid in ailt vicí. Mar sin féin, tacaítear le hailíniú téacs ar chlé, láraithe agus ar dheis." #: wikiformats.xhp msgctxt "" @@ -494,7 +494,7 @@ "par_id1459395\n" "help.text" msgid "A paragraph style with a fixed-width font is transformed as pre-formatted text. Pre-formatted text is shown on the wiki with a border around the text." -msgstr "" +msgstr "Athraítear stíl ailt le cló aonleithid go téacs réamhfhormáidithe. Taispeántar téacs réamhfhormáidithe ar an vicí le himlíne timpeall an téacs." #: wikiformats.xhp msgctxt "" @@ -510,7 +510,7 @@ "par_id6397595\n" "help.text" msgid "Character styles modify the appearance of parts of a paragraph. The transformation supports bold, italics, bold/italics, subscript and superscript. All fixed-width fonts are transformed into the wiki typewriter style." -msgstr "" +msgstr "Athraíonn stíleanna carachtair an chuma atá ar chuid d'alt. Tacaíonn an trasfhoirmiú le cló trom, cló iodálach, cló trom iodálach, foscripteanna agus forscripteanna. Athraítear gach cló aonleithid go dtí stíl chlóscríobháin an vicí." #: wikiformats.xhp msgctxt "" @@ -526,7 +526,7 @@ "par_id5238196\n" "help.text" msgid "Note: The transformation uses the new style of footnotes with and tags that requires the Cite.php extension to be installed into MediaWiki. If those tags are shown as plain text in the transformation result, ask the wiki administrator to install this extension." -msgstr "" +msgstr "Nóta: Úsáideann an trasfhoirmiú an stíl nua d'fhonótaí le clibeanna agus a dteastaíonn uaithi an eisínteacht Cite.php a bheith suiteáilte i MediaWiki. Má fheiceann tú na clibeanna sin mar ghnáth-théacs i dtoradh an trasfhoirmithe, déan teagmháil le riarthóir an vicí chun an eisínteacht seo a shuiteáil." #: wikiformats.xhp msgctxt "" @@ -542,7 +542,7 @@ "par_id3541673\n" "help.text" msgid "Images cannot be exported by a transformation producing a single file of wiki text. However, if the image is already uploaded to the target wiki domain (e. g., Wikimedia Commons), then the transformation produces a valid image tag that includes the image. Image captions are also supported." -msgstr "" +msgstr "Ní féidir íomhánna a easpórtáil le trasfhoirmiú a chruthaíonn comhad amháin téacs vicí. Má tá an íomhá uasluchtaithe cheana féin chuig an spriocfhearann vicí (m.sh. WikiMedia Commons), áfach, déanfar clib bhailí íomhá ina bhfuil an íomhá. Tacaítear le ceannteidil íomhá freisin." #: wikiformats.xhp msgctxt "" @@ -558,7 +558,7 @@ "par_id3037202\n" "help.text" msgid "Simple tables are supported well. Table headers are translated into corresponding wiki-style table headers. However, custom formatting of table borders, column sizes and background colors is ignored." -msgstr "" +msgstr "Tacaítear go maith le táblaí simplí. Athraítear ceanntásca tábla go ceanntásca tábla i stíl vicí. Ní thugtar aon aird, áfach, ar shainfhormáidiú imlínte tábla, méid colúin agus dathanna cúlra." #: wikiformats.xhp msgctxt "" @@ -598,7 +598,7 @@ "par_id1831110\n" "help.text" msgid "Irrespective of custom table styles for border and background, a table is always exported as “prettytable,” which renders in the wiki engine with simple borders and bold header." -msgstr "" +msgstr "Déantar easpórtáil i gcónaí ar thábla mar “prettytable,” gan aird a thabhairt ar shainstíleanna tábla le haghaidh imlíne agus cúlra. Taispeántar an toradh sa vicí le himlínte simplí agus ceannteideal trom." #: wikiformats.xhp msgctxt "" @@ -606,7 +606,7 @@ "hd_id6255073\n" "help.text" msgid "Character set and special characters" -msgstr "" +msgstr "Tacar carachtar agus carachtair speisialta" #: wikiformats.xhp msgctxt "" @@ -614,7 +614,7 @@ "par_id8216193\n" "help.text" msgid "The character set of the transformation result is fixed to UTF-8. Depending on your system, this might not be the default character set. This might cause “special characters” to look broken when viewed with default settings. However, you can switch your editor to UTF-8 encoding to fix this. If your editor does not support switching the encoding, you can display the result of the transformation in the Firefox browser and switch the encoding to UTF-8 there. Now, you can copy and paste the transformation result to your program of choice." -msgstr "" +msgstr "Is é UTF-8 an tacar carachtar a úsáidtear i dtoradh an tiontaithe. B'fhéidir nach é seo tacar carachtar réamhshocraithe do chórais, agus d'fhéadfadh cuma mhícheart a bheith ar “carachtair speisialta” agus tú ag amharc orthu leis na réamhshocruithe. É sin ráite, is féidir leat d'eagarthóir a athrú chun ionchódú UTF-8 a úsáid mar réiteach ar an bhfadhb seo. Mura dtacaíonn d'eagarthóir le hathrú ionchódaithe, is féidir leat toradh an tiontaithe a thaispeáint sa bhrabhsálaí Firefox agus an t-ionchódú a athrú go UTF-8 ann. Ansin beidh tú in ann toradh an tiontaithe a chóipeáil agus a ghreamú i do rogha feidhmchláir." #: wikisend.xhp msgctxt "" @@ -638,7 +638,7 @@ "par_id1743827\n" "help.text" msgid "In the Send to MediaWiki dialog, specify the settings for your current wiki upload." -msgstr "" +msgstr "Sa dialóg Seol chuig MediaWiki, sonraigh na socruithe le haghaidh d'uasluchtaithe reatha vicí." #: wikisend.xhp msgctxt "" @@ -654,7 +654,7 @@ "par_id2794885\n" "help.text" msgid "Enter the title of your wiki entry. This is the top heading of your wiki entry. For a new entry, the title must be unique on this wiki. If you enter an existing title, your upload will overwrite the existing wiki entry." -msgstr "" +msgstr "Cuir isteach teideal na hiontrála vicí. Is é seo barrtheideal na hiontrála vicí. Má tá iontráil nua i gceist, caithfidh an teideal a bheith uathúil ar an vicí seo. Má chuireann tú teideal isteach atá ann cheana, cuirfear an t-uasluchtú in áit na hiontrála atá ann." #: wikisend.xhp msgctxt "" @@ -678,7 +678,7 @@ "par_id6592913\n" "help.text" msgid "Show in web browser: Check this box to open your system web browser and show the uploaded wiki page." -msgstr "" +msgstr "Taispeáin i mbrabhsálaí: Cuir tic sa bhosca seo chun brabhsálaí do chórais a oscailt agus an leathanach vicí uasluchtaithe a thaispeáint." #: wikisettings.xhp msgctxt "" @@ -702,7 +702,7 @@ "par_id1188390\n" "help.text" msgid "You can add, edit and remove MediaWiki servers. Open the options dialog by going to Tools - Options - Internet - MediaWiki." -msgstr "" +msgstr "Is féidir leat freastalaithe MediaWiki a chur leis an liosta, a bhaint den liosta, nó a chur in eagar. Oscail na roghanna faoi Uirlisí - Roghanna - Idirlíon - MediaWiki." #: wikisettings.xhp msgctxt "" @@ -710,7 +710,7 @@ "par_id300607\n" "help.text" msgid "Click Add to add a new wiki server.
Select an entry and click Edit to edit the account settings.
Select an entry and click Remove to remove the entry from the list.
" -msgstr "" +msgstr "Cliceáil Cuir Leis chun freastalaí vicí nua a chur leis an liosta.
Roghnaigh ceann atá ann agus cliceáil Cuir in Eagar chun socruithe an chuntais a chur in eagar.
Roghnaigh ceann acu agus cliceáil Bain chun é a bhaint den liosta.
" #: wikisettings.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/id/sd/uiconfig/simpress/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/id/sd/uiconfig/simpress/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/id/sd/uiconfig/simpress/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/id/sd/uiconfig/simpress/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "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: 2017-05-29 18:40+0200\n" -"PO-Revision-Date: 2017-06-27 17:51+0000\n" +"PO-Revision-Date: 2017-12-08 11:58+0000\n" "Last-Translator: Andika Triwidada \n" "Language-Team: Indonesian <>\n" "Language: id\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1498585888.000000\n" +"X-POOTLE-MTIME: 1512734287.000000\n" #: annotationmenu.ui msgctxt "" @@ -4208,7 +4208,7 @@ "0\n" "stringlist.text" msgid "Landscape" -msgstr "Landskap" +msgstr "Mendatar" #: sidebarslidebackground.ui msgctxt "" @@ -4217,7 +4217,7 @@ "1\n" "stringlist.text" msgid "Portrait" -msgstr "Potret" +msgstr "Tegak" #: sidebarslidebackground.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/id/sw/source/ui/utlui.po libreoffice-l10n-5.4.4~rc2/translations/source/id/sw/source/ui/utlui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/id/sw/source/ui/utlui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/id/sw/source/ui/utlui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: utlui lo-4.2\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-06-17 12:07+0000\n" +"PO-Revision-Date: 2017-12-08 11:57+0000\n" "Last-Translator: Andika Triwidada \n" "Language-Team: Indonesian <>\n" "Language: id\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1497701258.000000\n" +"X-POOTLE-MTIME: 1512734233.000000\n" #: poolfmt.src msgctxt "" @@ -110,7 +110,7 @@ "STR_POOLPAGE_LANDSCAPE\n" "string.text" msgid "Landscape" -msgstr "Datar" +msgstr "Mendatar" #: poolfmt.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/id/sw/uiconfig/swriter/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/id/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/id/sw/uiconfig/swriter/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/id/sw/uiconfig/swriter/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: LibO 4.2\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2017-06-06 20:00+0200\n" -"PO-Revision-Date: 2017-08-17 14:16+0000\n" +"PO-Revision-Date: 2017-12-08 11:58+0000\n" "Last-Translator: Andika Triwidada \n" "Language-Team: Indonesian <>\n" "Language: id\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1502979366.000000\n" +"X-POOTLE-MTIME: 1512734300.000000\n" #: abstractdialog.ui msgctxt "" @@ -13527,7 +13527,7 @@ "0\n" "stringlist.text" msgid "Portrait" -msgstr "Potret" +msgstr "Tegak" #: pageformatpanel.ui msgctxt "" @@ -13536,7 +13536,7 @@ "1\n" "stringlist.text" msgid "Landscape" -msgstr "Lanskap" +msgstr "Mendatar" #: pageformatpanel.ui msgctxt "" @@ -13824,7 +13824,7 @@ "label\n" "string.text" msgid "Portrait" -msgstr "Potret" +msgstr "Tegak" #: pageorientationcontrol.ui msgctxt "" @@ -13833,7 +13833,7 @@ "label\n" "string.text" msgid "Landscape" -msgstr "Lanskap" +msgstr "Mendatar" #: pagesizecontrol.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/id/wizards/source/formwizard.po libreoffice-l10n-5.4.4~rc2/translations/source/id/wizards/source/formwizard.po --- libreoffice-l10n-5.4.3~rc2/translations/source/id/wizards/source/formwizard.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/id/wizards/source/formwizard.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "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-05-29 18:39+0200\n" -"PO-Revision-Date: 2017-06-17 00:21+0000\n" +"PO-Revision-Date: 2017-12-08 11:57+0000\n" "Last-Translator: Andika Triwidada \n" "Language-Team: Indonesian <>\n" "Language: id\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1497658892.000000\n" +"X-POOTLE-MTIME: 1512734249.000000\n" #: dbwizres.src msgctxt "" @@ -1748,7 +1748,7 @@ "RID_DB_REPORT_WIZARD_START + 24\n" "string.text" msgid "Landscape" -msgstr "Tumbang" +msgstr "Mendatar" #: dbwizres.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ja/cui/source/options.po libreoffice-l10n-5.4.4~rc2/translations/source/ja/cui/source/options.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ja/cui/source/options.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ja/cui/source/options.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-06-28 13:29+0000\n" -"Last-Translator: baffclan \n" +"PO-Revision-Date: 2017-11-30 11:55+0000\n" +"Last-Translator: Naruhiko Ogasawara \n" "Language-Team: LANGUAGE \n" "Language: ja\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1498656570.000000\n" +"X-POOTLE-MTIME: 1512042913.000000\n" #: connpooloptions.src msgctxt "" @@ -480,7 +480,7 @@ "RID_SVXSTR_KEY_GLOSSARY_PATH\n" "string.text" msgid "AutoText" -msgstr "テキストブロック" +msgstr "定型文" #: optpath.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ja/cui/uiconfig/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/ja/cui/uiconfig/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ja/cui/uiconfig/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ja/cui/uiconfig/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "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: 2017-05-17 15:41+0200\n" -"PO-Revision-Date: 2017-07-23 10:08+0000\n" -"Last-Translator: baffclan \n" +"PO-Revision-Date: 2017-12-02 16:02+0000\n" +"Last-Translator: himajin100000 \n" "Language-Team: none\n" "Language: ja\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500804524.000000\n" +"X-POOTLE-MTIME: 1512230566.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -9325,7 +9325,7 @@ "label\n" "string.text" msgid "Automatically _detect high contrast mode of operating system" -msgstr "オペレーションシステムのハイコントラストモードを自動検出(_D)" +msgstr "オペレーティングシステムのハイコントラストモードを自動検出(_D)" #: optaccessibilitypage.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.4.4~rc2/translations/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-06-20 13:56+0200\n" -"PO-Revision-Date: 2017-07-30 11:42+0000\n" -"Last-Translator: Naruhiko Ogasawara \n" +"PO-Revision-Date: 2017-12-01 05:50+0000\n" +"Last-Translator: himajin100000 \n" "Language-Team: LANGUAGE \n" "Language: ja\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1501414956.000000\n" +"X-POOTLE-MTIME: 1512107447.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -6674,7 +6674,7 @@ "Label\n" "value.text" msgid "~Record" -msgstr "記録(~R)" +msgstr "レコード(~R)" #: DbuCommands.xcu msgctxt "" @@ -25099,7 +25099,7 @@ "Label\n" "value.text" msgid "AutoTe~xt..." -msgstr "入力支援(~X)..." +msgstr "定型文(~X)..." #: WriterCommands.xcu msgctxt "" @@ -25144,7 +25144,7 @@ "Label\n" "value.text" msgid "Run AutoText Entry" -msgstr "入力支援の実行" +msgstr "定型文の実行" #: WriterCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ja/sw/source/core/undo.po libreoffice-l10n-5.4.4~rc2/translations/source/ja/sw/source/core/undo.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ja/sw/source/core/undo.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ja/sw/source/core/undo.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-06-20 13:56+0200\n" -"PO-Revision-Date: 2017-09-18 17:08+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-30 11:55+0000\n" +"Last-Translator: Naruhiko Ogasawara \n" "Language-Team: LANGUAGE \n" "Language: ja\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1505754497.000000\n" +"X-POOTLE-MTIME: 1512042945.000000\n" #: undo.src msgctxt "" @@ -110,7 +110,7 @@ "STR_INSERT_GLOSSARY\n" "string.text" msgid "Insert AutoText" -msgstr "入力支援の挿入" +msgstr "定型文の挿入" #: undo.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ja/sw/source/ui/app.po libreoffice-l10n-5.4.4~rc2/translations/source/ja/sw/source/ui/app.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ja/sw/source/ui/app.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ja/sw/source/ui/app.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-17 15:41+0200\n" -"PO-Revision-Date: 2017-07-15 13:01+0000\n" -"Last-Translator: Ikuya Awashiro \n" +"PO-Revision-Date: 2017-11-30 11:55+0000\n" +"Last-Translator: Naruhiko Ogasawara \n" "Language-Team: LANGUAGE \n" "Language: ja\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500123663.000000\n" +"X-POOTLE-MTIME: 1512042951.000000\n" #: app.src msgctxt "" @@ -518,7 +518,7 @@ "STR_READONLY_PATH\n" "string.text" msgid "The 'AutoText' directories are read-only. Do you want to call the path settings dialog?" -msgstr "「入力支援」のディレクトリは書き込み保護されていません。パス設定のダイアログボックスを呼び出しますか?" +msgstr "「定型文」のディレクトリは書き込み保護されていません。パス設定のダイアログボックスを呼び出しますか?" #: app.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ja/sw/source/ui/dochdl.po libreoffice-l10n-5.4.4~rc2/translations/source/ja/sw/source/ui/dochdl.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ja/sw/source/ui/dochdl.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ja/sw/source/ui/dochdl.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,17 +4,17 @@ "Project-Id-Version: PACKAGE 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-08-25 12:34+0200\n" -"PO-Revision-Date: 2016-07-05 01:06+0000\n" -"Last-Translator: nishbone \n" +"PO-Revision-Date: 2017-11-30 11:56+0000\n" +"Last-Translator: Naruhiko Ogasawara \n" "Language-Team: LANGUAGE \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1467680776.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1512042970.000000\n" #: dochdl.src msgctxt "" @@ -22,7 +22,7 @@ "STR_NOGLOS\n" "string.text" msgid "AutoText for Shortcut '%1' not found." -msgstr "ショートカット入力支援 '%1' が見つかりません。" +msgstr "ショートカット定型文 '%1' が見つかりません。" #: dochdl.src msgctxt "" @@ -46,7 +46,7 @@ "STR_ERR_INSERT_GLOS\n" "string.text" msgid "AutoText could not be created." -msgstr "入力支援できません。" +msgstr "定型文が作成できません。" #: dochdl.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ja/sw/source/ui/misc.po libreoffice-l10n-5.4.4~rc2/translations/source/ja/sw/source/ui/misc.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ja/sw/source/ui/misc.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ja/sw/source/ui/misc.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n" -"PO-Revision-Date: 2016-12-08 23:27+0000\n" -"Last-Translator: baffclan \n" +"PO-Revision-Date: 2017-11-30 11:56+0000\n" +"Last-Translator: Naruhiko Ogasawara \n" "Language-Team: LANGUAGE \n" "Language: ja\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1481239673.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1512042993.000000\n" #: glossary.src msgctxt "" @@ -30,7 +30,7 @@ "STR_QUERY_DELETE\n" "string.text" msgid "Delete AutoText?" -msgstr "入力支援を削除しますか?" +msgstr "定型文を削除しますか?" #: glossary.src msgctxt "" @@ -54,7 +54,7 @@ "STR_GLOSSARY\n" "string.text" msgid "AutoText :" -msgstr "テキストブロック :" +msgstr "定型文 :" #: glossary.src msgctxt "" @@ -62,7 +62,7 @@ "STR_SAVE_GLOSSARY\n" "string.text" msgid "Save AutoText" -msgstr "テキストブロックの保存" +msgstr "定型文の保存" #: glossary.src msgctxt "" @@ -70,7 +70,7 @@ "STR_NO_GLOSSARIES\n" "string.text" msgid "There is no AutoText in this file." -msgstr "このファイルにはテキストブロックがありません。" +msgstr "このファイルには定型文がありません。" #: glossary.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ja/sw/source/ui/utlui.po libreoffice-l10n-5.4.4~rc2/translations/source/ja/sw/source/ui/utlui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ja/sw/source/ui/utlui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ja/sw/source/ui/utlui.po 2017-12-12 17:45:07.000000000 +0000 @@ -3,7 +3,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-04-28 16:13+0200\n" +"POT-Creation-Date: 2017-12-01 12:53+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1793,7 +1793,7 @@ "STR_EVENT_START_INS_GLOSSARY\n" "string.text" msgid "Before inserting AutoText" -msgstr "入力支援を挿入する前" +msgstr "定型文を挿入する前" #: utlui.src msgctxt "" @@ -1801,7 +1801,7 @@ "STR_EVENT_END_INS_GLOSSARY\n" "string.text" msgid "After inserting AutoText" -msgstr "入力支援を挿入した後" +msgstr "定型文を挿入した後" #: utlui.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ja/sw/uiconfig/swriter/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/ja/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ja/sw/uiconfig/swriter/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ja/sw/uiconfig/swriter/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "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: 2017-06-06 20:00+0200\n" -"PO-Revision-Date: 2017-09-18 17:09+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-30 12:21+0000\n" +"Last-Translator: Naruhiko Ogasawara \n" "Language-Team: none\n" "Language: ja\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1505754548.000000\n" +"X-POOTLE-MTIME: 1512044477.000000\n" #: abstractdialog.ui msgctxt "" @@ -680,7 +680,7 @@ "title\n" "string.text" msgid "AutoText" -msgstr "入力支援" +msgstr "定型文" #: autotext.ui msgctxt "" @@ -1373,7 +1373,7 @@ "label\n" "string.text" msgid "AutoText - Section" -msgstr "入力支援 - 項目" +msgstr "定型文 - 項目" #: cardformatpage.ui msgctxt "" @@ -6354,7 +6354,7 @@ "title\n" "string.text" msgid "Insert AutoText" -msgstr "入力支援の挿入" +msgstr "定型文の挿入" #: insertautotextdialog.ui msgctxt "" @@ -6363,7 +6363,7 @@ "label\n" "string.text" msgid "Autotexts for Shortcut " -msgstr "入力支援のショートカット " +msgstr "定型文のショートカット " #: insertbookmark.ui msgctxt "" @@ -15190,7 +15190,7 @@ "title\n" "string.text" msgid "Rename AutoText" -msgstr "テキストブロックの名前の変更" +msgstr "定型文の名前の変更" #: renameautotextdialog.ui msgctxt "" @@ -15622,7 +15622,7 @@ "title\n" "string.text" msgid "Select AutoText:" -msgstr "入力支援を選択:" +msgstr "定型文を選択:" #: selectautotextdialog.ui msgctxt "" @@ -15631,7 +15631,7 @@ "label\n" "string.text" msgid "AutoText - Group" -msgstr "入力支援 グループ" +msgstr "定型文 - グループ" #: selectblockdialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/jv/accessibility/source/helper.po libreoffice-l10n-5.4.4~rc2/translations/source/jv/accessibility/source/helper.po --- libreoffice-l10n-5.4.3~rc2/translations/source/jv/accessibility/source/helper.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/jv/accessibility/source/helper.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-09-13 02:31+0000\n" +"PO-Revision-Date: 2017-11-03 00:09+0000\n" "Last-Translator: Ki Drupadi \n" "Language-Team: LANGUAGE \n" "Language: jv\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1505269917.000000\n" +"X-POOTLE-MTIME: 1509667771.000000\n" #: accessiblestrings.src msgctxt "" @@ -30,7 +30,7 @@ "STR_SVT_ACC_ACTION_EXPAND\n" "string.text" msgid "Expand" -msgstr "" +msgstr "Megarnā" #: accessiblestrings.src msgctxt "" @@ -38,7 +38,7 @@ "STR_SVT_ACC_ACTION_COLLAPSE\n" "string.text" msgid "Collapse" -msgstr "" +msgstr "Ciyutnā" #: accessiblestrings.src msgctxt "" @@ -78,7 +78,7 @@ "RID_STR_ACC_SCROLLBAR_NAME_HORIZONTAL\n" "string.text" msgid "Horizontal scroll bar" -msgstr "" +msgstr "Biliah gulir horisontal" #: accessiblestrings.src msgctxt "" @@ -86,7 +86,7 @@ "RID_STR_ACC_PANEL_DESCRIPTION\n" "string.text" msgid "Please press enter to go into child control for more operations" -msgstr "" +msgstr "Mānggā pencèt enter kanggo nuju marang kontrol anakan kanggo operasi jangkepé" #: accessiblestrings.src msgctxt "" @@ -94,7 +94,7 @@ "RID_STR_ACC_COLUMN_NUM\n" "string.text" msgid "Column %COLUMNNUMBER" -msgstr "" +msgstr "Kolom %COLUMNNUMBER" #: accessiblestrings.src msgctxt "" @@ -102,4 +102,4 @@ "RID_STR_ACC_ROW_NUM\n" "string.text" msgid "Row %ROWNUMBER" -msgstr "" +msgstr "Baris %ROWNUMBER" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/jv/avmedia/source/framework.po libreoffice-l10n-5.4.4~rc2/translations/source/jv/avmedia/source/framework.po --- libreoffice-l10n-5.4.3~rc2/translations/source/jv/avmedia/source/framework.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/jv/avmedia/source/framework.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2016-12-02 23:26+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-03 00:10+0000\n" +"Last-Translator: Ki Drupadi \n" "Language-Team: LANGUAGE \n" "Language: jv\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1480721171.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1509667808.000000\n" #: mediacontrol.src msgctxt "" @@ -30,7 +30,7 @@ "AVMEDIA_STR_INSERT\n" "string.text" msgid "Apply" -msgstr "Trepké" +msgstr "Trapké" #: mediacontrol.src msgctxt "" @@ -62,7 +62,7 @@ "AVMEDIA_STR_LOOP\n" "string.text" msgid "Repeat" -msgstr "" +msgstr "Ngulangi" #: mediacontrol.src msgctxt "" @@ -126,7 +126,7 @@ "AVMEDIA_MEDIA_PATH\n" "string.text" msgid "Media Path" -msgstr "" +msgstr "Path media" #: mediacontrol.src msgctxt "" @@ -134,4 +134,4 @@ "AVMEDIA_MEDIA_PATH_DEFAULT\n" "string.text" msgid "No Media Selected" -msgstr "" +msgstr "Ora ānā media dipilih" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/jv/avmedia/source/viewer.po libreoffice-l10n-5.4.4~rc2/translations/source/jv/avmedia/source/viewer.po --- libreoffice-l10n-5.4.3~rc2/translations/source/jv/avmedia/source/viewer.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/jv/avmedia/source/viewer.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-11-10 19:32+0100\n" -"PO-Revision-Date: 2015-11-11 20:52+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-03 00:10+0000\n" +"Last-Translator: Ki Drupadi \n" "Language-Team: LANGUAGE \n" "Language: jv\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1447275143.000000\n" +"X-POOTLE-MTIME: 1509667826.000000\n" #: mediawindow.src msgctxt "" @@ -22,7 +22,7 @@ "AVMEDIA_STR_INSERTMEDIA_DLG\n" "string.text" msgid "Insert Audio or Video" -msgstr "" +msgstr "Lebokaké Audio utāwā Video" #: mediawindow.src msgctxt "" @@ -30,7 +30,7 @@ "AVMEDIA_STR_OPENMEDIA_DLG\n" "string.text" msgid "Open Audio or Video" -msgstr "" +msgstr "Bukā Audio utāwā Video" #: mediawindow.src msgctxt "" @@ -38,7 +38,7 @@ "AVMEDIA_STR_ALL_MEDIAFILES\n" "string.text" msgid "All audio and video files" -msgstr "" +msgstr "Kabéh berkas audio lan video" #: mediawindow.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/jv/basctl/source/basicide.po libreoffice-l10n-5.4.4~rc2/translations/source/jv/basctl/source/basicide.po --- libreoffice-l10n-5.4.3~rc2/translations/source/jv/basctl/source/basicide.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/jv/basctl/source/basicide.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-04-12 14:14+0200\n" -"PO-Revision-Date: 2016-12-02 23:26+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-03 00:18+0000\n" +"Last-Translator: Ki Drupadi \n" "Language-Team: LANGUAGE \n" "Language: jv\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1480721176.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1509668331.000000\n" #: basicprint.src msgctxt "" @@ -22,7 +22,7 @@ "RID_STR_PRINTDLG_RANGE\n" "string.text" msgid "Print range" -msgstr "" +msgstr "Jangkauan Cithak" #: basicprint.src msgctxt "" @@ -30,7 +30,7 @@ "RID_STR_PRINTDLG_ALLPAGES\n" "string.text" msgid "All ~Pages" -msgstr "" +msgstr "Kabèh ~Kācā" #: basicprint.src msgctxt "" @@ -38,7 +38,7 @@ "RID_STR_PRINTDLG_PAGES\n" "string.text" msgid "Pa~ges" -msgstr "" +msgstr "Ka~cā" #: basidesh.src msgctxt "" @@ -520,7 +520,7 @@ "RID_STR_REMOVEWATCHTIP\n" "string.text" msgid "Remove Watch" -msgstr "" +msgstr "Buwang Jam" #: basidesh.src msgctxt "" @@ -705,7 +705,7 @@ "RID_STR_EXPORTPACKAGE\n" "string.text" msgid "Export library as extension" -msgstr "" +msgstr "Ekspor pustaka dadi ekstensi" #: moduldlg.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/jv/basctl/source/dlged.po libreoffice-l10n-5.4.4~rc2/translations/source/jv/basctl/source/dlged.po --- libreoffice-l10n-5.4.3~rc2/translations/source/jv/basctl/source/dlged.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/jv/basctl/source/dlged.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2014-11-19 01:56+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-03 00:11+0000\n" +"Last-Translator: Ki Drupadi \n" "Language-Team: LANGUAGE \n" "Language: jv\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1416362210.000000\n" +"X-POOTLE-MTIME: 1509667878.000000\n" #: dlgresid.src msgctxt "" @@ -46,7 +46,7 @@ "RID_STR_DEF_LANG\n" "string.text" msgid "[Default Language]" -msgstr "" +msgstr "[Bāsā Utāmā]" #: dlgresid.src msgctxt "" @@ -54,4 +54,4 @@ "RID_STR_CREATE_LANG\n" "string.text" msgid "" -msgstr "" +msgstr "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/lt/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.4.4~rc2/translations/source/lt/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.4.3~rc2/translations/source/lt/officecfg/registry/data/org/openoffice/Office/UI.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/lt/officecfg/registry/data/org/openoffice/Office/UI.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-20 13:56+0200\n" -"PO-Revision-Date: 2017-09-07 18:53+0000\n" +"PO-Revision-Date: 2017-12-04 19:41+0000\n" "Last-Translator: Modestas Rimkus \n" "Language-Team: Lithuanian \n" "Language: lt\n" @@ -15,7 +15,7 @@ "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" "X-Project-Style: openoffice\n" -"X-POOTLE-MTIME: 1504810437.000000\n" +"X-POOTLE-MTIME: 1512416495.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -27090,7 +27090,7 @@ "Label\n" "value.text" msgid "Header Rows Repeat Across Pages" -msgstr "" +msgstr "Kartoti antraštės eilutes naujuose puslapiuose" #: WriterCommands.xcu msgctxt "" @@ -28548,7 +28548,7 @@ "Label\n" "value.text" msgid "Row to ~Break Across Pages" -msgstr "" +msgstr "Skaidyti lentelę ties puslapio lūžiais" #: WriterCommands.xcu msgctxt "" @@ -29430,7 +29430,7 @@ "Label\n" "value.text" msgid "Bullet List" -msgstr "" +msgstr "Ženklintas sąrašas" #: WriterCommands.xcu msgctxt "" @@ -29439,7 +29439,7 @@ "Label\n" "value.text" msgid "Number List" -msgstr "" +msgstr "Numeruotas sąrašas" #: WriterCommands.xcu msgctxt "" @@ -29448,7 +29448,7 @@ "Label\n" "value.text" msgid "Roman List" -msgstr "" +msgstr "Romėniškas sąrašas" #: WriterCommands.xcu msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/lv/chart2/uiconfig/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/lv/chart2/uiconfig/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/lv/chart2/uiconfig/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/lv/chart2/uiconfig/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-06-25 08:50+0000\n" -"Last-Translator: Ingmārs Dīriņš \n" +"PO-Revision-Date: 2017-11-03 20:12+0000\n" +"Last-Translator: nitalynx \n" "Language-Team: Latvian \n" "Language: lv\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1498380654.000000\n" +"X-POOTLE-MTIME: 1509739929.000000\n" #: 3dviewdialog.ui msgctxt "" @@ -3623,7 +3623,7 @@ "label\n" "string.text" msgid "_Leave gap" -msgstr "_Atstāt spraugu" +msgstr "_Atstāt atstarpi" #: tp_SeriesToAxis.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/lv/cui/source/options.po libreoffice-l10n-5.4.4~rc2/translations/source/lv/cui/source/options.po --- libreoffice-l10n-5.4.3~rc2/translations/source/lv/cui/source/options.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/lv/cui/source/options.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-01-14 07:20+0000\n" -"Last-Translator: Ingmārs Dīriņš \n" +"PO-Revision-Date: 2017-11-05 09:38+0000\n" +"Last-Translator: nitalynx \n" "Language-Team: Latvian \n" "Language: lv\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1484378411.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1509874715.000000\n" #: connpooloptions.src msgctxt "" @@ -1172,7 +1172,7 @@ "Calculate\n" "itemlist.text" msgid "Calculate" -msgstr "Aprēķināt" +msgstr "Aprēķini" #: treeopt.src msgctxt "" @@ -1181,7 +1181,7 @@ "Formula\n" "itemlist.text" msgid "Formula" -msgstr "Formula" +msgstr "Formulas" #: treeopt.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/lv/cui/source/tabpages.po libreoffice-l10n-5.4.4~rc2/translations/source/lv/cui/source/tabpages.po --- libreoffice-l10n-5.4.3~rc2/translations/source/lv/cui/source/tabpages.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/lv/cui/source/tabpages.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "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-05-17 15:41+0200\n" -"PO-Revision-Date: 2017-08-27 10:49+0000\n" -"Last-Translator: Ingmārs Dīriņš \n" +"PO-Revision-Date: 2017-11-05 09:21+0000\n" +"Last-Translator: nitalynx \n" "Language-Team: Latvian \n" "Language: lv\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1503830967.000000\n" +"X-POOTLE-MTIME: 1509873667.000000\n" #: border.src msgctxt "" @@ -410,7 +410,7 @@ "RID_SVXSTR_DASH\n" "string.text" msgid "Replace dashes" -msgstr "Aizstāt domuzīmes" +msgstr "Aizstāt defises" #: strings.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/lv/cui/uiconfig/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/lv/cui/uiconfig/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/lv/cui/uiconfig/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/lv/cui/uiconfig/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "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: 2017-05-17 15:41+0200\n" -"PO-Revision-Date: 2017-08-27 09:05+0000\n" -"Last-Translator: Ingmārs Dīriņš \n" +"PO-Revision-Date: 2017-11-05 08:55+0000\n" +"Last-Translator: nitalynx \n" "Language-Team: Latvian \n" "Language: lv\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1503824705.000000\n" +"X-POOTLE-MTIME: 1509872130.000000\n" #: aboutconfigdialog.ui msgctxt "" @@ -12607,7 +12607,7 @@ "label\n" "string.text" msgid "_Notebookbar icon size:" -msgstr "Piezīmju grāmatiņas joslas iko_nu izmērs:" +msgstr "Lentes iko_nu izmērs:" #: optviewpage.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/lv/editeng/source/items.po libreoffice-l10n-5.4.4~rc2/translations/source/lv/editeng/source/items.po --- libreoffice-l10n-5.4.3~rc2/translations/source/lv/editeng/source/items.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/lv/editeng/source/items.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-09-19 15:17+0000\n" -"Last-Translator: Anonymous Pootle User\n" +"PO-Revision-Date: 2017-11-03 20:17+0000\n" +"Last-Translator: nitalynx \n" "Language-Team: Latvian \n" "Language: lv\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1505834277.000000\n" +"X-POOTLE-MTIME: 1509740262.000000\n" #: page.src msgctxt "" @@ -1463,7 +1463,7 @@ "RID_SVXITEMS_KERNING_CONDENSED\n" "string.text" msgid "Condensed " -msgstr "Saspiests " +msgstr "Ciešāks " #: svxitems.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/lv/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.4.4~rc2/translations/source/lv/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.4.3~rc2/translations/source/lv/officecfg/registry/data/org/openoffice/Office/UI.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/lv/officecfg/registry/data/org/openoffice/Office/UI.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "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-06-20 13:56+0200\n" -"PO-Revision-Date: 2017-10-08 18:28+0000\n" +"PO-Revision-Date: 2017-12-03 11:36+0000\n" "Last-Translator: nitalynx \n" "Language-Team: Latvian \n" "Language: lv\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1507487324.000000\n" +"X-POOTLE-MTIME: 1512301001.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -4244,7 +4244,7 @@ "UIName\n" "value.text" msgid "Notebookbar" -msgstr "Piezīmju grāmatiņas josla" +msgstr "Lente" #: CalcWindowState.xcu msgctxt "" @@ -4640,7 +4640,7 @@ "UIName\n" "value.text" msgid "Notebookbar shortcuts" -msgstr "Piezīmju grāmatiņas joslas saīsnes" +msgstr "Lentes saīsnes" #: ChartCommands.xcu msgctxt "" @@ -6881,7 +6881,7 @@ "Label\n" "value.text" msgid "~Rehearse Timings" -msgstr "~Caurskatīt laikus" +msgstr "Izmēģināt ~laikus" #: DrawImpressCommands.xcu msgctxt "" @@ -7349,7 +7349,7 @@ "Label\n" "value.text" msgid "Notes M~aster" -msgstr "" +msgstr "Piezīmju p~amats" #: DrawImpressCommands.xcu msgctxt "" @@ -8024,7 +8024,7 @@ "Label\n" "value.text" msgid "Slide Layout" -msgstr "Slaidu izkārtojums" +msgstr "Slaida izkārtojums" #: DrawImpressCommands.xcu msgctxt "" @@ -8051,7 +8051,7 @@ "Label\n" "value.text" msgid "Views Tab ~Bar" -msgstr "" +msgstr "Skatu ~ciļņu josla" #: DrawImpressCommands.xcu msgctxt "" @@ -8060,7 +8060,7 @@ "TooltipLabel\n" "value.text" msgid "Toggle Views Tab Bar Visibility" -msgstr "" +msgstr "Pārslēgt skatu ciļņu joslas redzamību" #: DrawImpressCommands.xcu msgctxt "" @@ -8069,7 +8069,7 @@ "Label\n" "value.text" msgid "Hando~ut Master" -msgstr "" +msgstr "~Izdales lapu pamats" #: DrawImpressCommands.xcu msgctxt "" @@ -8897,7 +8897,7 @@ "Label\n" "value.text" msgid "~Master Elements..." -msgstr "" +msgstr "Pamat~elementi..." #: DrawImpressCommands.xcu msgctxt "" @@ -8969,7 +8969,7 @@ "Label\n" "value.text" msgid "Slide ~Pane" -msgstr "" +msgstr "S~laidu rūts" #: DrawImpressCommands.xcu msgctxt "" @@ -9815,7 +9815,7 @@ "Label\n" "value.text" msgid "Title, 2 Vertical Text, Clipart" -msgstr "" +msgstr "Virsraksts, 2 vertikāli teksti, attēls" #: DrawImpressCommands.xcu msgctxt "" @@ -9824,7 +9824,7 @@ "Label\n" "value.text" msgid "Slide Layout" -msgstr "Slaidu izkārtojums" +msgstr "Slaida izkārtojums" #: DrawImpressCommands.xcu msgctxt "" @@ -15215,7 +15215,7 @@ "Label\n" "value.text" msgid "6-Point Star, Concave" -msgstr "" +msgstr "6-staru zvaigzne, ieliekta" #: GenericCommands.xcu msgctxt "" @@ -19303,7 +19303,7 @@ "Label\n" "value.text" msgid "Notebookbar" -msgstr "Piezīmju grāmatiņas josla" +msgstr "Lente" #: GenericCommands.xcu msgctxt "" @@ -20212,7 +20212,7 @@ "Label\n" "value.text" msgid "Asian Phonetic G~uide..." -msgstr "" +msgstr "Āzi~jas valodu fonētiskais gids..." #: GenericCommands.xcu msgctxt "" @@ -22750,7 +22750,7 @@ "UIName\n" "value.text" msgid "Notebookbar" -msgstr "Piezīmju grāmatiņas josla" +msgstr "Lente" #: ImpressWindowState.xcu msgctxt "" @@ -23308,7 +23308,7 @@ "UIName\n" "value.text" msgid "Notebookbar shortcuts" -msgstr "Piezīmju grāmatiņas joslas saīsnes" +msgstr "Lentes saīsnes" #: MathCommands.xcu msgctxt "" @@ -23542,7 +23542,7 @@ "Label\n" "value.text" msgid "Small Gap" -msgstr "" +msgstr "Neliela atstarpe" #: MathCommands.xcu msgctxt "" @@ -23551,7 +23551,7 @@ "Label\n" "value.text" msgid "Gap" -msgstr "" +msgstr "Atstarpe" #: MathCommands.xcu msgctxt "" @@ -23569,7 +23569,7 @@ "Label\n" "value.text" msgid "~Relations" -msgstr "" +msgstr "~Attiecības" #: MathCommands.xcu msgctxt "" @@ -23695,7 +23695,7 @@ "Label\n" "value.text" msgid "Groupedbar Compact" -msgstr "" +msgstr "Kompakta grupjosla" #: Notebookbar.xcu msgctxt "" @@ -23704,7 +23704,7 @@ "Label\n" "value.text" msgid "Groupedbar Full" -msgstr "" +msgstr "Pilna grupjosla" #: Notebookbar.xcu msgctxt "" @@ -23722,7 +23722,7 @@ "Label\n" "value.text" msgid "Contextual single" -msgstr "Kontekstuāla viena" +msgstr "Kontekstuāla vienkārša" #: Notebookbar.xcu msgctxt "" @@ -23740,7 +23740,7 @@ "Label\n" "value.text" msgid "Contextual groups" -msgstr "Kontekstuālās grupas" +msgstr "Kontekstuāla ar grupām" #: Notebookbar.xcu msgctxt "" @@ -23758,7 +23758,7 @@ "Label\n" "value.text" msgid "Contextual groups" -msgstr "Kontekstuālās grupas" +msgstr "Kontekstuāla ar grupām" #: ReportCommands.xcu msgctxt "" @@ -25009,7 +25009,7 @@ "Label\n" "value.text" msgid "Notebookbar" -msgstr "Piezīmju grāmatiņas josla" +msgstr "Lente" #: ToolbarMode.xcu msgctxt "" @@ -25045,7 +25045,7 @@ "Label\n" "value.text" msgid "Notebookbar" -msgstr "Piezīmju grāmatiņas josla" +msgstr "Lente" #: ToolbarMode.xcu msgctxt "" @@ -25072,7 +25072,7 @@ "Label\n" "value.text" msgid "Notebookbar" -msgstr "Piezīmju grāmatiņas josla" +msgstr "Lente" #: WriterCommands.xcu msgctxt "" @@ -27088,7 +27088,7 @@ "Label\n" "value.text" msgid "Header Rows Repeat Across Pages" -msgstr "" +msgstr "Galvenes rindas katrā lapā" #: WriterCommands.xcu msgctxt "" @@ -28546,7 +28546,7 @@ "Label\n" "value.text" msgid "Row to ~Break Across Pages" -msgstr "" +msgstr "Rinda ~vairākās lappusēs" #: WriterCommands.xcu msgctxt "" @@ -29437,7 +29437,7 @@ "Label\n" "value.text" msgid "Number List" -msgstr "" +msgstr "Numurēts saraksts" #: WriterCommands.xcu msgctxt "" @@ -31327,7 +31327,7 @@ "UIName\n" "value.text" msgid "Notebookbar" -msgstr "Piezīmju grāmatiņas josla" +msgstr "Lente" #: WriterWindowState.xcu msgctxt "" @@ -31381,7 +31381,7 @@ "UIName\n" "value.text" msgid "Notebookbar shortcuts" -msgstr "Piezīmju grāmatiņas joslas saīsnes" +msgstr "Lentes saīsnes" #: WriterWindowState.xcu msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/lv/scaddins/source/analysis.po libreoffice-l10n-5.4.4~rc2/translations/source/lv/scaddins/source/analysis.po --- libreoffice-l10n-5.4.3~rc2/translations/source/lv/scaddins/source/analysis.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/lv/scaddins/source/analysis.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-06-25 08:55+0000\n" -"Last-Translator: Ingmārs Dīriņš \n" +"PO-Revision-Date: 2017-11-03 19:43+0000\n" +"Last-Translator: nitalynx \n" "Language-Team: Latvian \n" "Language: lv\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1498380945.000000\n" +"X-POOTLE-MTIME: 1509738215.000000\n" #: analysis.src msgctxt "" @@ -4687,7 +4687,7 @@ "Returns the price per $100 face value of a security with an odd first period\n" "itemlist.text" msgid "Returns the price per $100 face value of a security with an odd first period" -msgstr "Atgriež cenu uz 100$ vērtspapīriem ar atsevišķu pirmo periodu nominālvērtību" +msgstr "Atgriež cenu vērtspapīriem ar 100 dolāru nominālvērtību un atsevišķu pirmo periodu" #: analysis.src msgctxt "" @@ -5029,7 +5029,7 @@ "Returns the price per $100 face value of a security with an odd last period\n" "itemlist.text" msgid "Returns the price per $100 face value of a security with an odd last period" -msgstr "Atgriež cenu uz 100$ vērtspapīriem ar atsevišķu pēdējo periodu nominālvērtību" +msgstr "Atgriež cenu vērtspapīriem ar 100 dolāru nominālvērtību un atsevišķu pēdējo periodu" #: analysis.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/lv/sd/source/core.po libreoffice-l10n-5.4.4~rc2/translations/source/lv/sd/source/core.po --- libreoffice-l10n-5.4.3~rc2/translations/source/lv/sd/source/core.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/lv/sd/source/core.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "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-04-12 14:14+0200\n" -"PO-Revision-Date: 2017-08-03 19:19+0000\n" -"Last-Translator: Ingmārs Dīriņš \n" +"PO-Revision-Date: 2017-11-04 16:46+0000\n" +"Last-Translator: nitalynx \n" "Language-Team: Latvian \n" "Language: lv\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1501787958.000000\n" +"X-POOTLE-MTIME: 1509813974.000000\n" #: glob.src msgctxt "" @@ -504,7 +504,7 @@ "Format error discovered in the file in sub-document $(ARG1) at position $(ARG2)(row,col).\n" "itemlist.text" msgid "Format error discovered in the file in sub-document $(ARG1) at position $(ARG2)(row,col)." -msgstr "" +msgstr "Atklāta datnes formāta kļūda apakšdokumentā $(ARG1) pozīcijā $(ARG2)(rinda,kolonna)." #: glob.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/lv/sd/source/ui/view.po libreoffice-l10n-5.4.4~rc2/translations/source/lv/sd/source/ui/view.po --- libreoffice-l10n-5.4.3~rc2/translations/source/lv/sd/source/ui/view.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/lv/sd/source/ui/view.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "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-04-12 14:14+0200\n" -"PO-Revision-Date: 2017-09-01 04:23+0000\n" -"Last-Translator: Ingmārs Dīriņš \n" +"PO-Revision-Date: 2017-11-05 09:50+0000\n" +"Last-Translator: nitalynx \n" "Language-Team: Latvian \n" "Language: lv\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1504239838.000000\n" +"X-POOTLE-MTIME: 1509875432.000000\n" #: DocumentRenderer.src msgctxt "" @@ -74,7 +74,7 @@ "Outline\n" "itemlist.text" msgid "Outline" -msgstr "" +msgstr "Struktūra" #: DocumentRenderer.src msgctxt "" @@ -326,7 +326,7 @@ "Tile sheet of paper with repeated pages\n" "itemlist.text" msgid "Tile sheet of paper with repeated pages" -msgstr "" +msgstr "Salikt papīra loksni ar atkārtotām lappusēm" #: DocumentRenderer.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/lv/sd/uiconfig/simpress/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/lv/sd/uiconfig/simpress/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/lv/sd/uiconfig/simpress/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/lv/sd/uiconfig/simpress/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "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: 2017-05-29 18:40+0200\n" -"PO-Revision-Date: 2017-09-01 04:21+0000\n" -"Last-Translator: Ingmārs Dīriņš \n" +"PO-Revision-Date: 2017-11-05 10:00+0000\n" +"Last-Translator: nitalynx \n" "Language-Team: Latvian \n" "Language: lv\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1504239718.000000\n" +"X-POOTLE-MTIME: 1509876022.000000\n" #: annotationmenu.ui msgctxt "" @@ -374,7 +374,7 @@ "label\n" "string.text" msgid "Timing" -msgstr "Laika uzskaitījums" +msgstr "Laiks" #: customanimationproperties.ui msgctxt "" @@ -1499,7 +1499,7 @@ "label\n" "string.text" msgid "_Timing..." -msgstr "" +msgstr "_Laiks..." #: effectmenu.ui msgctxt "" @@ -2867,7 +2867,7 @@ "label\n" "string.text" msgid "Slide layout:" -msgstr "Slaidu izkārtojums:" +msgstr "Slaida izkārtojums:" #: photoalbum.ui msgctxt "" @@ -4028,7 +4028,7 @@ "label\n" "string.text" msgid "Quarter Spin" -msgstr "" +msgstr "Ceturtdaļapgrieziens" #: rotatemenu.ui msgctxt "" @@ -4037,7 +4037,7 @@ "label\n" "string.text" msgid "Half Spin" -msgstr "" +msgstr "Pusapgrieziens" #: rotatemenu.ui msgctxt "" @@ -4046,7 +4046,7 @@ "label\n" "string.text" msgid "Full Spin" -msgstr "" +msgstr "Pilns apgrieziens" #: rotatemenu.ui msgctxt "" @@ -4055,7 +4055,7 @@ "label\n" "string.text" msgid "Two Spins" -msgstr "" +msgstr "Divi apgriezieni" #: rotatemenu.ui msgctxt "" @@ -4343,7 +4343,7 @@ "label\n" "string.text" msgid "_Very Thin" -msgstr "" +msgstr "Ļo_ti smalka" #: slidecontextmenu.ui msgctxt "" @@ -4352,7 +4352,7 @@ "label\n" "string.text" msgid "_Thin" -msgstr "" +msgstr "_Smalka" #: slidecontextmenu.ui msgctxt "" @@ -4361,7 +4361,7 @@ "label\n" "string.text" msgid "_Normal" -msgstr "" +msgstr "_Normāla" #: slidecontextmenu.ui msgctxt "" @@ -4370,7 +4370,7 @@ "label\n" "string.text" msgid "_Thick" -msgstr "" +msgstr "_Bieza" #: slidecontextmenu.ui msgctxt "" @@ -4379,7 +4379,7 @@ "label\n" "string.text" msgid "_Very Thick" -msgstr "" +msgstr "Ļoti bie_za" #: slidecontextmenu.ui msgctxt "" @@ -4442,7 +4442,7 @@ "label\n" "string.text" msgid "_End Show" -msgstr "" +msgstr "_Beigt slīdrādi" #: slidedesigndialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/lv/sfx2/source/doc.po libreoffice-l10n-5.4.4~rc2/translations/source/lv/sfx2/source/doc.po --- libreoffice-l10n-5.4.3~rc2/translations/source/lv/sfx2/source/doc.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/lv/sfx2/source/doc.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "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-05-29 18:39+0200\n" -"PO-Revision-Date: 2017-08-30 20:24+0000\n" -"Last-Translator: Ingmārs Dīriņš \n" +"PO-Revision-Date: 2017-11-04 16:42+0000\n" +"Last-Translator: nitalynx \n" "Language-Team: Latvian \n" "Language: lv\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1504124664.000000\n" +"X-POOTLE-MTIME: 1509813727.000000\n" #: doc.src msgctxt "" @@ -464,7 +464,7 @@ "STR_QMSG_ERROR_OPENING_FILE\n" "string.text" msgid "An error occurred during opening the file. This may be caused by incorrect file contents.\n" -msgstr "" +msgstr "Atverot šo datni, gadījās kļūda. To varētu būt izraisījis nepareizs datnes saturs.\n" #: doc.src msgctxt "" @@ -485,6 +485,10 @@ "\n" "Do you want to ignore the error and attempt to continue loading the file?" msgstr "" +"\n" +"Šajā gadījumā importēšana var izraisīt datu zudumu vai bojājumus, un lietotne var kļūt nestabila vai avarēt.\n" +"\n" +"Vai vēlaties ignorēt kļūdu un mēģināt turpināt ielādēt datni?" #: doctempl.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/lv/sfx2/uiconfig/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/lv/sfx2/uiconfig/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/lv/sfx2/uiconfig/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/lv/sfx2/uiconfig/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "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: 2017-04-19 21:37+0200\n" -"PO-Revision-Date: 2017-08-27 09:29+0000\n" -"Last-Translator: Ingmārs Dīriņš \n" +"PO-Revision-Date: 2017-11-04 16:44+0000\n" +"Last-Translator: nitalynx \n" "Language-Team: Latvian \n" "Language: lv\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1503826193.000000\n" +"X-POOTLE-MTIME: 1509813887.000000\n" #: alienwarndialog.ui msgctxt "" @@ -770,7 +770,7 @@ "secondary_text\n" "string.text" msgid "You may either install it from our website or your system’s repositories, or read an online version." -msgstr "" +msgstr "To var iegūt mūsu tīmekļa vietnē vai jūsu sistēmas repozitorijā, vai arī lasīt tiešsaistē." #: helpmanual.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/lv/starmath/source.po libreoffice-l10n-5.4.4~rc2/translations/source/lv/starmath/source.po --- libreoffice-l10n-5.4.3~rc2/translations/source/lv/starmath/source.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/lv/starmath/source.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "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-04-19 21:37+0200\n" -"PO-Revision-Date: 2017-10-10 07:20+0000\n" +"PO-Revision-Date: 2017-11-03 20:11+0000\n" "Last-Translator: nitalynx \n" "Language-Team: Latvian \n" "Language: lv\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1507620011.000000\n" +"X-POOTLE-MTIME: 1509739870.000000\n" #: commands.src msgctxt "" @@ -1590,7 +1590,7 @@ "RID_SBLANK_HELP\n" "string.text" msgid "Small Gap" -msgstr "Neliela starpa" +msgstr "Neliela atstarpe" #: commands.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/lv/svtools/source/control.po libreoffice-l10n-5.4.4~rc2/translations/source/lv/svtools/source/control.po --- libreoffice-l10n-5.4.3~rc2/translations/source/lv/svtools/source/control.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/lv/svtools/source/control.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "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-06-20 13:55+0200\n" -"PO-Revision-Date: 2017-08-27 12:57+0000\n" -"Last-Translator: Ingmārs Dīriņš \n" +"PO-Revision-Date: 2017-12-03 11:40+0000\n" +"Last-Translator: nitalynx \n" "Language-Team: Latvian \n" "Language: lv\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1503838671.000000\n" +"X-POOTLE-MTIME: 1512301213.000000\n" #: calendar.src msgctxt "" @@ -302,7 +302,7 @@ "STR_SVT_STYLE_BOLD_OBLIQUE\n" "string.text" msgid "Bold Oblique" -msgstr "" +msgstr "Trekns slīpraksts" #: ctrltool.src msgctxt "" @@ -310,7 +310,7 @@ "STR_SVT_STYLE_CONDENSED\n" "string.text" msgid "Condensed" -msgstr "" +msgstr "Ciešāks" #: ctrltool.src msgctxt "" @@ -318,7 +318,7 @@ "STR_SVT_STYLE_CONDENSED_BOLD\n" "string.text" msgid "Condensed Bold" -msgstr "Saspiests treknraksts" +msgstr "Ciešāks treknraksts" #: ctrltool.src msgctxt "" @@ -326,7 +326,7 @@ "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC\n" "string.text" msgid "Condensed Bold Italic" -msgstr "Saspiests trekns kursīvs" +msgstr "Ciešāks trekns kursīvs" #: ctrltool.src msgctxt "" @@ -334,7 +334,7 @@ "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE\n" "string.text" msgid "Condensed Bold Oblique" -msgstr "Saspiests trekns slīpraksts" +msgstr "Ciešāks trekns slīpraksts" #: ctrltool.src msgctxt "" @@ -342,7 +342,7 @@ "STR_SVT_STYLE_CONDENSED_ITALIC\n" "string.text" msgid "Condensed Italic" -msgstr "Saspiests kursīvs" +msgstr "Ciešāks kursīvs" #: ctrltool.src msgctxt "" @@ -350,7 +350,7 @@ "STR_SVT_STYLE_CONDENSED_OBLIQUE\n" "string.text" msgid "Condensed Oblique" -msgstr "Saspiests slīpraksts" +msgstr "Ciešāks slīpraksts" #: ctrltool.src msgctxt "" @@ -358,7 +358,7 @@ "STR_SVT_STYLE_EXTRALIGHT\n" "string.text" msgid "ExtraLight" -msgstr "" +msgstr "Ļoti viegls" #: ctrltool.src msgctxt "" @@ -366,7 +366,7 @@ "STR_SVT_STYLE_EXTRALIGHT_ITALIC\n" "string.text" msgid "ExtraLight Italic" -msgstr "" +msgstr "Ļoti viegls kursīvs" #: ctrltool.src msgctxt "" @@ -382,7 +382,7 @@ "STR_SVT_STYLE_SEMIBOLD\n" "string.text" msgid "Semibold" -msgstr "" +msgstr "Pustrekns" #: ctrltool.src msgctxt "" @@ -390,7 +390,7 @@ "STR_SVT_STYLE_SEMIBOLD_ITALIC\n" "string.text" msgid "Semibold Italic" -msgstr "" +msgstr "Pustrekns kursīvs" #: ctrltool.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/lv/svx/source/stbctrls.po libreoffice-l10n-5.4.4~rc2/translations/source/lv/svx/source/stbctrls.po --- libreoffice-l10n-5.4.3~rc2/translations/source/lv/svx/source/stbctrls.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/lv/svx/source/stbctrls.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "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-04-19 21:37+0200\n" -"PO-Revision-Date: 2017-07-17 19:23+0000\n" -"Last-Translator: Ingmārs Dīriņš \n" +"PO-Revision-Date: 2017-11-04 16:35+0000\n" +"Last-Translator: nitalynx \n" "Language-Team: Latvian \n" "Language: lv\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500319418.000000\n" +"X-POOTLE-MTIME: 1509813319.000000\n" #: stbctrls.src msgctxt "" @@ -119,7 +119,7 @@ "RID_SVXSTR_WARN_MISSING_SMARTART\n" "string.text" msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue." -msgstr "" +msgstr "Neizdevās ielādēt visus SmartArt objektus. Šo problēmu varētu novērst, saglabājot ar Microsoft Office 2010 vai jaunāku versiju." #: stbctrls.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/lv/svx/uiconfig/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/lv/svx/uiconfig/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/lv/svx/uiconfig/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/lv/svx/uiconfig/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "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-05-17 15:41+0200\n" -"PO-Revision-Date: 2017-09-12 16:53+0000\n" -"Last-Translator: Ingmārs Dīriņš \n" +"PO-Revision-Date: 2017-12-03 11:50+0000\n" +"Last-Translator: nitalynx \n" "Language-Team: Latvian \n" "Language: lv\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1505235187.000000\n" +"X-POOTLE-MTIME: 1512301854.000000\n" #: acceptrejectchangesdialog.ui msgctxt "" @@ -4274,7 +4274,7 @@ "label\n" "string.text" msgid "Tab Order..." -msgstr "" +msgstr "Ciļņu kārtība..." #: formnavimenu.ui msgctxt "" @@ -4310,7 +4310,7 @@ "label\n" "string.text" msgid "Automatic Control Focus" -msgstr "" +msgstr "Automātisks vadīklas fokuss" #: functionmenu.ui msgctxt "" @@ -4373,7 +4373,7 @@ "label\n" "string.text" msgid "Selection count" -msgstr "" +msgstr "Izvēlētā skaits" #: functionmenu.ui msgctxt "" @@ -4859,7 +4859,7 @@ "label\n" "string.text" msgid "Bring to Front" -msgstr "" +msgstr "Novietot virspusē" #: imapmenu.ui msgctxt "" @@ -4868,7 +4868,7 @@ "label\n" "string.text" msgid "Bring _Forward" -msgstr "" +msgstr "Pārvietot _tuvāk" #: imapmenu.ui msgctxt "" @@ -4877,7 +4877,7 @@ "label\n" "string.text" msgid "Send Back_ward" -msgstr "" +msgstr "Pārvietot tā_lāk" #: imapmenu.ui msgctxt "" @@ -4886,7 +4886,7 @@ "label\n" "string.text" msgid "_Send to Back" -msgstr "" +msgstr "Novietot ai_zmugurē" #: imapmenu.ui msgctxt "" @@ -4895,7 +4895,7 @@ "label\n" "string.text" msgid "Select _All" -msgstr "" +msgstr "Izvēlēties _visu" #: imapmenu.ui msgctxt "" @@ -5255,7 +5255,7 @@ "label\n" "string.text" msgid "Constrain Objects" -msgstr "" +msgstr "Ierobežot objektus" #: paralinespacingcontrol.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/lv/sw/source/ui/dbui.po libreoffice-l10n-5.4.4~rc2/translations/source/lv/sw/source/ui/dbui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/lv/sw/source/ui/dbui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/lv/sw/source/ui/dbui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "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-04-12 14:14+0200\n" -"PO-Revision-Date: 2017-09-12 16:53+0000\n" -"Last-Translator: Ingmārs Dīriņš \n" +"PO-Revision-Date: 2017-11-04 16:30+0000\n" +"Last-Translator: nitalynx \n" "Language-Team: Latvian \n" "Language: lv\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1505235201.000000\n" +"X-POOTLE-MTIME: 1509813026.000000\n" #: dbui.src msgctxt "" @@ -242,7 +242,7 @@ msgstr "" "Lai varētu nosūtīt sapludinātos dokumentus pa e-pastu, %PRODUCTNAME nepieciešama vēstuļu izsūtītāja e-pasta konta informācija.\n" "\n" -" Vai vēlaties ievadīt e-pasta konta informāciju tagad?" +"Vai vēlaties ievadīt e-pasta konta informāciju tagad?" #: dbui.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/lv/sw/source/ui/utlui.po libreoffice-l10n-5.4.4~rc2/translations/source/lv/sw/source/ui/utlui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/lv/sw/source/ui/utlui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/lv/sw/source/ui/utlui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "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-04-12 14:14+0200\n" -"PO-Revision-Date: 2017-09-12 16:55+0000\n" -"Last-Translator: Ingmārs Dīriņš \n" +"PO-Revision-Date: 2017-11-05 10:01+0000\n" +"Last-Translator: nitalynx \n" "Language-Team: Latvian \n" "Language: lv\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1505235317.000000\n" +"X-POOTLE-MTIME: 1509876111.000000\n" #: poolfmt.src msgctxt "" @@ -1635,7 +1635,7 @@ "Capitalize first letter of sentences\n" "itemlist.text" msgid "Capitalize first letter of sentences" -msgstr "" +msgstr "Teikuma pirmo burtu pārveidot par lielo" #: utlui.src msgctxt "" @@ -1644,7 +1644,7 @@ "Replace \"standard\" quotes with %1 \\bcustom%2 quotes\n" "itemlist.text" msgid "Replace \"standard\" quotes with %1 \\bcustom%2 quotes" -msgstr "" +msgstr "Aizstāt \"standarta\" pēdiņas ar %1 \\bpielāgotām%2 pēdiņām" #: utlui.src msgctxt "" @@ -1707,7 +1707,7 @@ "Replace dashes\n" "itemlist.text" msgid "Replace dashes" -msgstr "" +msgstr "Aizstāt defises" #: utlui.src msgctxt "" @@ -1734,7 +1734,7 @@ "Set \"Text body\" Style\n" "itemlist.text" msgid "Set \"Text body\" Style" -msgstr "" +msgstr "Iestatīt stilu \"Pamatteksts\"" #: utlui.src msgctxt "" @@ -1743,7 +1743,7 @@ "Set \"Text body indent\" Style\n" "itemlist.text" msgid "Set \"Text body indent\" Style" -msgstr "" +msgstr "Iestatīt stilu \"Pamatteksts ar atkāpi\"" #: utlui.src msgctxt "" @@ -1761,7 +1761,7 @@ "Set \"Heading $(ARG1)\" Style\n" "itemlist.text" msgid "Set \"Heading $(ARG1)\" Style" -msgstr "" +msgstr "Iestatīt stilu \"Virsraksts $(ARG1)\"" #: utlui.src msgctxt "" @@ -1770,7 +1770,7 @@ "Set \"Bullet\" or \"Numbering\" Style\n" "itemlist.text" msgid "Set \"Bullet\" or \"Numbering\" Style" -msgstr "" +msgstr "Iestatīt stilu \"Aizzīme\" vai \"Numurēšana\"" #: utlui.src msgctxt "" @@ -1788,7 +1788,7 @@ "Add non breaking space\n" "itemlist.text" msgid "Add non breaking space" -msgstr "" +msgstr "Pievienot nedalāmo atstarpi" #: utlui.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/lv/sw/source/uibase/utlui.po libreoffice-l10n-5.4.4~rc2/translations/source/lv/sw/source/uibase/utlui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/lv/sw/source/uibase/utlui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/lv/sw/source/uibase/utlui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "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-04-19 21:38+0200\n" -"PO-Revision-Date: 2017-08-02 18:54+0000\n" -"Last-Translator: Ingmārs Dīriņš \n" +"PO-Revision-Date: 2017-12-03 11:53+0000\n" +"Last-Translator: nitalynx \n" "Language-Team: Latvian \n" "Language: lv\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1501700087.000000\n" +"X-POOTLE-MTIME: 1512301994.000000\n" #: attrdesc.src msgctxt "" @@ -158,7 +158,7 @@ "STR_SURROUND_THROUGH\n" "string.text" msgid "Through" -msgstr "" +msgstr "Cauri" #: attrdesc.src msgctxt "" @@ -694,7 +694,7 @@ "STR_CALC_POW\n" "string.text" msgid "** Square function overflow **" -msgstr "" +msgstr "** Kvadrātfunkcijas pārpilde **" #: initui.src msgctxt "" @@ -734,7 +734,7 @@ "STR_TEMPLATE_NONE\n" "string.text" msgid "None" -msgstr "" +msgstr "Nav" #: initui.src msgctxt "" @@ -790,7 +790,7 @@ "STR_TOX_CITATION\n" "string.text" msgid "Citation" -msgstr "" +msgstr "Citāts" #: initui.src msgctxt "" @@ -814,7 +814,7 @@ "STR_TOX_ILL\n" "string.text" msgid "Illustration Index" -msgstr "" +msgstr "Attēlu rādītājs" #: initui.src msgctxt "" @@ -838,7 +838,7 @@ "FLD_DOCINFO_TITEL\n" "string.text" msgid "Title" -msgstr "" +msgstr "Virsraksts" #: initui.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/lv/sw/uiconfig/swriter/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/lv/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/lv/sw/uiconfig/swriter/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/lv/sw/uiconfig/swriter/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "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: 2017-06-06 20:00+0200\n" -"PO-Revision-Date: 2017-08-08 19:34+0000\n" -"Last-Translator: Ingmārs Dīriņš \n" +"PO-Revision-Date: 2017-12-03 12:04+0000\n" +"Last-Translator: nitalynx \n" "Language-Team: Latvian \n" "Language: lv\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1502220858.000000\n" +"X-POOTLE-MTIME: 1512302692.000000\n" #: abstractdialog.ui msgctxt "" @@ -6219,7 +6219,7 @@ "label\n" "string.text" msgid "Boolean Or" -msgstr "" +msgstr "Loģiskais VAI" #: inputwinmenu.ui msgctxt "" @@ -6228,7 +6228,7 @@ "label\n" "string.text" msgid "Boolean Xor" -msgstr "" +msgstr "Loģiskais XOR" #: inputwinmenu.ui msgctxt "" @@ -6237,7 +6237,7 @@ "label\n" "string.text" msgid "Boolean And" -msgstr "" +msgstr "Loģiskais UN" #: inputwinmenu.ui msgctxt "" @@ -6246,7 +6246,7 @@ "label\n" "string.text" msgid "Boolean Not" -msgstr "" +msgstr "Loģiskais NE" #: inputwinmenu.ui msgctxt "" @@ -9648,7 +9648,7 @@ "label\n" "string.text" msgid "Fontwork" -msgstr "" +msgstr "Fontwork" #: notebookbar.ui msgctxt "" @@ -9837,7 +9837,7 @@ "label\n" "string.text" msgid "Shape / Textbox" -msgstr "" +msgstr "Figūra / Teksts" #: notebookbar.ui msgctxt "" @@ -9846,7 +9846,7 @@ "label\n" "string.text" msgid "Anchor" -msgstr "" +msgstr "Enkurs" #: notebookbar.ui msgctxt "" @@ -9855,7 +9855,7 @@ "label\n" "string.text" msgid "Frame / OLE" -msgstr "" +msgstr "Ietvars / OLE" #: notebookbar_groupedbar_compact.ui msgctxt "" @@ -10008,7 +10008,7 @@ "label\n" "string.text" msgid "Calc" -msgstr "" +msgstr "Aprēķini" #: notebookbar_groupedbar_compact.ui msgctxt "" @@ -10332,7 +10332,7 @@ "label\n" "string.text" msgid "_Calc" -msgstr "" +msgstr "_Aprēķini" #: notebookbar_groupedbar_full.ui msgctxt "" @@ -10422,7 +10422,7 @@ "label\n" "string.text" msgid "Wrap" -msgstr "" +msgstr "Aplaušana" #: notebookbar_groupedbar_full.ui msgctxt "" @@ -10431,7 +10431,7 @@ "label\n" "string.text" msgid "Align" -msgstr "" +msgstr "Līdzināt" #: notebookbar_groupedbar_full.ui msgctxt "" @@ -11938,7 +11938,7 @@ "12\n" "stringlist.text" msgid "MS Word-compatible trailing blanks" -msgstr "" +msgstr "Ar MS Word saderīgas beigu atstarpes" #: optcompatpage.ui msgctxt "" @@ -12919,7 +12919,7 @@ "title\n" "string.text" msgid "Chapter Numbering" -msgstr "" +msgstr "Nodaļu numerācija" #: outlinenumbering.ui msgctxt "" @@ -15038,7 +15038,7 @@ "label\n" "string.text" msgid "Select Text" -msgstr "" +msgstr "Izvēlēties tekstu" #: readonlymenu.ui msgctxt "" @@ -15047,7 +15047,7 @@ "label\n" "string.text" msgid "Re_load" -msgstr "" +msgstr "Pār_lādēt" #: readonlymenu.ui msgctxt "" @@ -15056,7 +15056,7 @@ "label\n" "string.text" msgid "Reload Frame" -msgstr "" +msgstr "Pārlādēt ietvaru" #: readonlymenu.ui msgctxt "" @@ -15074,7 +15074,7 @@ "label\n" "string.text" msgid "Backwards" -msgstr "" +msgstr "Atpakaļ" #: readonlymenu.ui msgctxt "" @@ -15083,7 +15083,7 @@ "label\n" "string.text" msgid "_Forward" -msgstr "" +msgstr "_Uz priekšu" #: readonlymenu.ui msgctxt "" @@ -15164,7 +15164,7 @@ "label\n" "string.text" msgid "Image Off" -msgstr "" +msgstr "Nerādīt attēlus" #: readonlymenu.ui msgctxt "" @@ -15173,7 +15173,7 @@ "label\n" "string.text" msgid "Leave Full-Screen Mode" -msgstr "" +msgstr "Pamest pilnekrāna režīmu" #: readonlymenu.ui msgctxt "" @@ -16262,7 +16262,7 @@ "label\n" "string.text" msgid "Always correct _to" -msgstr "" +msgstr "Vienmēr labot _par" #: spellmenu.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/lv/vcl/source/src.po libreoffice-l10n-5.4.4~rc2/translations/source/lv/vcl/source/src.po --- libreoffice-l10n-5.4.3~rc2/translations/source/lv/vcl/source/src.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/lv/vcl/source/src.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "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-04-12 14:14+0200\n" -"PO-Revision-Date: 2017-07-04 14:04+0000\n" -"Last-Translator: Ingmārs Dīriņš \n" +"PO-Revision-Date: 2017-11-04 16:52+0000\n" +"Last-Translator: nitalynx \n" "Language-Team: Latvian \n" "Language: lv\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1499177097.000000\n" +"X-POOTLE-MTIME: 1509814320.000000\n" #: app.src msgctxt "" @@ -330,7 +330,7 @@ "SV_BUTTONTEXT_SCREENSHOT\n" "string.text" msgid "~Screenshot" -msgstr "" +msgstr "~Ekrānuzņēmums" #: fpicker.src msgctxt "" @@ -554,7 +554,7 @@ "SV_HELPTEXT_SCREENSHOT\n" "string.text" msgid "Take and annotate a screenshot" -msgstr "" +msgstr "Uzņemt un komentēt ekrāna attēlu" #: helptext.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/lv/vcl/uiconfig/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/lv/vcl/uiconfig/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/lv/vcl/uiconfig/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/lv/vcl/uiconfig/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "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: 2017-04-12 14:14+0200\n" -"PO-Revision-Date: 2017-07-29 21:11+0000\n" -"Last-Translator: Ingmārs Dīriņš \n" +"PO-Revision-Date: 2017-11-04 17:02+0000\n" +"Last-Translator: nitalynx \n" "Language-Team: Latvian \n" "Language: lv\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1501362697.000000\n" +"X-POOTLE-MTIME: 1509814957.000000\n" #: cupspassworddialog.ui msgctxt "" @@ -104,7 +104,7 @@ "label\n" "string.text" msgid "Select _All" -msgstr "" +msgstr "Izvēlēties _visu" #: editmenu.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/lv/wizards/source/formwizard.po libreoffice-l10n-5.4.4~rc2/translations/source/lv/wizards/source/formwizard.po --- libreoffice-l10n-5.4.3~rc2/translations/source/lv/wizards/source/formwizard.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/lv/wizards/source/formwizard.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "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-05-29 18:39+0200\n" -"PO-Revision-Date: 2016-10-26 17:54+0000\n" -"Last-Translator: Ingmārs Dīriņš \n" +"PO-Revision-Date: 2017-11-04 16:33+0000\n" +"Last-Translator: nitalynx \n" "Language-Team: Latvian \n" "Language: lv\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1477504483.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1509813199.000000\n" #: dbwizres.src msgctxt "" @@ -260,7 +260,7 @@ "RID_DB_COMMON_START + 8\n" "string.text" msgid "No database has been installed. At least one database is required before the wizard for forms can be started." -msgstr "" +msgstr "Nav instalētas datubāzes. Vajadzīga vismaz viena datubāze, lai varētu palaist formu vedni." #: dbwizres.src msgctxt "" @@ -268,7 +268,7 @@ "RID_DB_COMMON_START + 9\n" "string.text" msgid "The database does not contain any tables." -msgstr "" +msgstr "Šī datubāze nesatur tabulas." #: dbwizres.src msgctxt "" @@ -276,7 +276,7 @@ "RID_DB_COMMON_START + 10\n" "string.text" msgid "This title already exists in the database. Please enter another name." -msgstr "" +msgstr "Šis nosaukums datubāzē jau eksistē. Lūdzu, ievadiet citu." #: dbwizres.src msgctxt "" @@ -284,7 +284,7 @@ "RID_DB_COMMON_START + 11\n" "string.text" msgid "The title must not contain any spaces or special characters." -msgstr "" +msgstr "Nosaukums nedrīkst saturēt atstarpes vai īpašos simbolus." #: dbwizres.src msgctxt "" @@ -292,7 +292,7 @@ "RID_DB_COMMON_START + 12\n" "string.text" msgid "The database service (com.sun.data.DatabaseEngine) could not be instantiated." -msgstr "" +msgstr "Neizdevās izveidot datubāzes servisa (com.sun.data.DatabaseEngine) instanci." #: dbwizres.src msgctxt "" @@ -300,7 +300,7 @@ "RID_DB_COMMON_START + 13\n" "string.text" msgid "The selected table or query could not be opened." -msgstr "" +msgstr "Neizdevās atvērt izvēlēto tabulu vai vaicājumu." #: dbwizres.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/lv/xmlsecurity/source/dialogs.po libreoffice-l10n-5.4.4~rc2/translations/source/lv/xmlsecurity/source/dialogs.po --- libreoffice-l10n-5.4.3~rc2/translations/source/lv/xmlsecurity/source/dialogs.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/lv/xmlsecurity/source/dialogs.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "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-07-20 11:52+0200\n" -"PO-Revision-Date: 2016-05-24 16:42+0000\n" -"Last-Translator: Ingmārs Dīriņš \n" +"PO-Revision-Date: 2017-11-03 20:25+0000\n" +"Last-Translator: nitalynx \n" "Language-Team: Latvian \n" "Language: lv\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1464108135.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1509740725.000000\n" #: certificateviewer.src msgctxt "" @@ -163,3 +163,5 @@ "Document signature cannot be restored, once removed.\n" "Do you really want to remove selected signature?" msgstr "" +"Pēc dokumenta paraksta noņemšanas to vairs nevar atjaunot.\n" +"Vai tiešām vēlaties noņemt izvēlēto parakstu?" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/lv/xmlsecurity/uiconfig/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/lv/xmlsecurity/uiconfig/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/lv/xmlsecurity/uiconfig/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/lv/xmlsecurity/uiconfig/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "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-07-20 11:52+0200\n" -"PO-Revision-Date: 2017-01-15 13:39+0000\n" -"Last-Translator: Tranzistors \n" +"PO-Revision-Date: 2017-11-04 16:33+0000\n" +"Last-Translator: nitalynx \n" "Language-Team: Latvian \n" "Language: lv\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1484487576.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1509813210.000000\n" #: certgeneral.ui msgctxt "" @@ -41,7 +41,7 @@ "label\n" "string.text" msgid "Issued to: " -msgstr "" +msgstr "Izdots: " #: certgeneral.ui msgctxt "" @@ -176,7 +176,7 @@ "label\n" "string.text" msgid "Start Certificate Manager..." -msgstr "" +msgstr "Palaist sertifikātu pārvaldnieku..." #: digitalsignaturesdialog.ui msgctxt "" @@ -495,7 +495,7 @@ "label\n" "string.text" msgid "Type" -msgstr "" +msgstr "Veids" #: selectcertificatedialog.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/nl/helpcontent2/source/text/shared/00.po libreoffice-l10n-5.4.4~rc2/translations/source/nl/helpcontent2/source/text/shared/00.po --- libreoffice-l10n-5.4.3~rc2/translations/source/nl/helpcontent2/source/text/shared/00.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/nl/helpcontent2/source/text/shared/00.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-06-20 14:17+0200\n" -"PO-Revision-Date: 2017-06-23 07:55+0000\n" -"Last-Translator: kees538 \n" +"PO-Revision-Date: 2017-11-14 18:56+0000\n" +"Last-Translator: Cor Nouws \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1498204516.000000\n" +"X-POOTLE-MTIME: 1510685801.000000\n" #: 00000001.xhp msgctxt "" @@ -2318,7 +2318,7 @@ "par_id3146919\n" "help.text" msgid "In various dialogs (for example, Tools - AutoText) you can select whether you want to save files relatively or absolutely." -msgstr "In verschillende dialoogvensters (bijvoorbeeld Bewerken - AutoTekst) kunt u kiezen of u de bestanden relatief of absoluut wilt opslaan." +msgstr "In verschillende dialoogvensters (bijvoorbeeld Extra - AutoTekst) kunt u kiezen of u de bestanden relatief of absoluut wilt opslaan." #: 00000005.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/nl/helpcontent2/source/text/shared/01.po libreoffice-l10n-5.4.4~rc2/translations/source/nl/helpcontent2/source/text/shared/01.po --- libreoffice-l10n-5.4.3~rc2/translations/source/nl/helpcontent2/source/text/shared/01.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/nl/helpcontent2/source/text/shared/01.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06-20 14:17+0200\n" -"PO-Revision-Date: 2017-10-20 18:06+0000\n" +"PO-Revision-Date: 2017-11-14 18:54+0000\n" "Last-Translator: Cor Nouws \n" "Language-Team: LANGUAGE \n" "Language: nl\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1508522794.000000\n" +"X-POOTLE-MTIME: 1510685641.000000\n" #: 01010000.xhp msgctxt "" @@ -31510,7 +31510,7 @@ "par_id3149999\n" "help.text" msgid "To enable the replacement table, choose Tools - AutoCorrect - AutoCorrect Options, click the Options tab, and then select Use replacement table. To use the replacement table while you type, check Tools - AutoCorrect - While Typing." -msgstr "Kies, voor het inschakelen van de vervangingstabel, Extra - ÀutoCotrrectie - Opties voor AutoCorrectie, klik op het tabblad Opties en selecteer vervolgens Vervangingstabel gebruiken. Wilt u de vervangingstabel gebruiken terwijl u typt, dan kiest u Extra - AutoCorrectie - Tijdens invoer. " +msgstr "Kies, voor het inschakelen van de vervangingstabel, Extra - ÀutoCorrectie - Opties voor AutoCorrectie, klik op het tabblad Opties en selecteer vervolgens Vervangingstabel gebruiken. Wilt u de vervangingstabel gebruiken terwijl u typt, dan kiest u Extra - AutoCorrectie - Tijdens invoer. " #: 06040200.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/nl/helpcontent2/source/text/swriter/guide.po libreoffice-l10n-5.4.4~rc2/translations/source/nl/helpcontent2/source/text/swriter/guide.po --- libreoffice-l10n-5.4.3~rc2/translations/source/nl/helpcontent2/source/text/swriter/guide.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/nl/helpcontent2/source/text/swriter/guide.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-09-09 12:06+0000\n" -"Last-Translator: vpanter \n" +"PO-Revision-Date: 2017-11-14 18:56+0000\n" +"Last-Translator: Cor Nouws \n" "Language-Team: LANGUAGE \n" "Language: nl\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1504958763.000000\n" +"X-POOTLE-MTIME: 1510685818.000000\n" #: anchor_object.xhp msgctxt "" @@ -854,7 +854,7 @@ "par_id3155581\n" "help.text" msgid "Choose Tools - AutoText." -msgstr "Kies Bewerken - Autotekst." +msgstr "Kies Extra - Autotekst." #: autotext.xhp msgctxt "" @@ -910,7 +910,7 @@ "par_id3145615\n" "help.text" msgid "Choose Tools - AutoText." -msgstr "Kies Bewerken - AutoTekst." +msgstr "Kies Extra - AutoTekst." #: autotext.xhp msgctxt "" @@ -1022,7 +1022,7 @@ "par_id3154995\n" "help.text" msgid "Tools - AutoText" -msgstr "Bewerken - AutoTekst" +msgstr "Extra - AutoTekst" #: autotext.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/nn/starmath/source.po libreoffice-l10n-5.4.4~rc2/translations/source/nn/starmath/source.po --- libreoffice-l10n-5.4.3~rc2/translations/source/nn/starmath/source.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/nn/starmath/source.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n" -"PO-Revision-Date: 2017-05-05 18:42+0000\n" +"PO-Revision-Date: 2017-11-25 15:55+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: LANGUAGE \n" "Language: nn\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1494009733.000000\n" +"X-POOTLE-MTIME: 1511625305.000000\n" #: commands.src msgctxt "" @@ -2222,7 +2222,7 @@ "STR_TEAL\n" "string.text" msgid "teal" -msgstr "blågrøn" +msgstr "grønblå" #: smres.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/pt/formula/source/core/resource.po libreoffice-l10n-5.4.4~rc2/translations/source/pt/formula/source/core/resource.po --- libreoffice-l10n-5.4.3~rc2/translations/source/pt/formula/source/core/resource.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/pt/formula/source/core/resource.po 2017-12-12 17:45:07.000000000 +0000 @@ -3,18 +3,15 @@ msgstr "" "Project-Id-Version: PACKAGE 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-17 15:41+0200\n" -"PO-Revision-Date: 2017-07-25 13:28+0000\n" -"Last-Translator: Sérgio Marques \n" +"POT-Creation-Date: 2017-12-01 12:53+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" -"Language: pt\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-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500989322.000000\n" #: core_resource.src msgctxt "" @@ -2138,7 +2135,7 @@ "MID\n" "itemlist.text" msgid "MID" -msgstr "SEG.TEXTO" +msgstr "EXT.TEXTO" #: core_resource.src msgctxt "" @@ -2174,7 +2171,7 @@ "MIDB\n" "itemlist.text" msgid "MIDB" -msgstr "SEG.TEXTOB" +msgstr "EXT.TEXTOB" #: core_resource.src msgctxt "" @@ -2189,19 +2186,10 @@ msgctxt "" "core_resource.src\n" "RID_STRLIST_FUNCTION_NAMES\n" -"SUBSTITUTE\n" -"itemlist.text" -msgid "SUBSTITUTE" -msgstr "SUBST" - -#: core_resource.src -msgctxt "" -"core_resource.src\n" -"RID_STRLIST_FUNCTION_NAMES\n" "REPT\n" "itemlist.text" msgid "REPT" -msgstr "REPETIR" +msgstr "REPT" #: core_resource.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/pt/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.4.4~rc2/translations/source/pt/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.4.3~rc2/translations/source/pt/helpcontent2/source/text/scalc/01.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/pt/helpcontent2/source/text/scalc/01.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "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-07-20 11:52+0200\n" -"PO-Revision-Date: 2017-09-16 14:53+0000\n" +"PO-Revision-Date: 2017-11-13 22:58+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: LANGUAGE \n" "Language: pt\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1505573595.000000\n" +"X-POOTLE-MTIME: 1510613894.000000\n" #: 01120000.xhp msgctxt "" @@ -22982,7 +22982,7 @@ "bm_id3154589\n" "help.text" msgid "MID function" -msgstr "Função SEG.TEXTO" +msgstr "Função EXT.TEXTO" #: 04060110.xhp msgctxt "" @@ -22990,7 +22990,7 @@ "hd_id3154589\n" "help.text" msgid "MID" -msgstr "SEG.TEXTO" +msgstr "EXT.TEXTO" #: 04060110.xhp msgctxt "" @@ -23014,7 +23014,7 @@ "par_id3150526\n" "help.text" msgid "MID(\"Text\"; Start; Number)" -msgstr "SEG.TEXTO(\"texto\"; posição_inicial; número)" +msgstr "EXT.TEXTO(\"texto\"; posição_inicial; número)" #: 04060110.xhp msgctxt "" @@ -23054,7 +23054,7 @@ "par_id3158407\n" "help.text" msgid "=MID(\"office\";2;2) returns ff." -msgstr "=SEG.TEXTO(\"escritório\";2;2) devolve sc." +msgstr "=EXT.TEXTO(\"escritório\";2;2) devolve sc." #: 04060110.xhp msgctxt "" @@ -23062,7 +23062,7 @@ "bm_id2954589\n" "help.text" msgid "MIDB function" -msgstr "Função SEG.TEXTOB" +msgstr "Função EXT.TEXTOB" #: 04060110.xhp msgctxt "" @@ -23070,7 +23070,7 @@ "hd_id2954589\n" "help.text" msgid "MIDB" -msgstr "SEG.TEXTOB" +msgstr "EXT.TEXTOB" #: 04060110.xhp msgctxt "" @@ -23094,7 +23094,7 @@ "par_id2950526\n" "help.text" msgid "MIDB(\"Text\"; Start; Number_bytes)" -msgstr "SEG.TEXTOB(\"texto\"; posição_inicial; número)" +msgstr "EXT.TEXTOB(\"texto\"; posição_inicial; número)" #: 04060110.xhp msgctxt "" @@ -23134,7 +23134,7 @@ "par_id2958417\n" "help.text" msgid "MIDB(\"中国\";1;0) returns \"\" (0 bytes is always an empty string)." -msgstr "SEG.TEXTOB(\"中国\";1;0) devolve \"\" (0 bytes são sempre uma cadeia vazia)." +msgstr "EXT.TEXTOB(\"中国\";1;0) devolve \"\" (0 bytes são sempre uma cadeia vazia)." #: 04060110.xhp msgctxt "" @@ -23142,7 +23142,7 @@ "par_id2958427\n" "help.text" msgid "MIDB(\"中国\";1;1) returns \" \" (1 byte is only half a DBCS character and therefore the result is a space character)." -msgstr "SEG.TEXTOB(\"中国\";1;1) devolve \" \" (1 byte é apenas meio carácter DBCS e a função devolve um espaço vazio)." +msgstr "EXT.TEXTOB(\"中国\";1;1) devolve \" \" (1 byte é apenas meio carácter DBCS e a função devolve um espaço vazio)." #: 04060110.xhp msgctxt "" @@ -23150,7 +23150,7 @@ "par_id2958437\n" "help.text" msgid "MIDB(\"中国\";1;2) returns \"中\" (2 bytes constitute one complete DBCS character)." -msgstr "SEG.TEXTOB(\"中国\";1;2) devolve \"中\" (2 bytes são um carácter completo DBCS)." +msgstr "EXT.TEXTOB(\"中国\";1;2) devolve \"中\" (2 bytes são um carácter completo DBCS)." #: 04060110.xhp msgctxt "" @@ -23158,7 +23158,7 @@ "par_id2958447\n" "help.text" msgid "MIDB(\"中国\";1;3) returns \"中 \" (3 bytes constitute one and a half DBCS character; the last byte results in a space character)." -msgstr "SEG.TEXTOB(\"中国\";1;3) devolve \"中 \" (3 bytes são um carácter e meio DBCS; o último carácter devolvido é um espaço vazio)." +msgstr "EXT.TEXTOB(\"中国\";1;3) devolve \"中 \" (3 bytes são um carácter e meio DBCS; o último carácter devolvido é um espaço vazio)." #: 04060110.xhp msgctxt "" @@ -23166,7 +23166,7 @@ "par_id2958457\n" "help.text" msgid "MIDB(\"中国\";1;4) returns \"中国\" (4 bytes constitute two complete DBCS characters)." -msgstr "SEG.TEXTOB(\"中国\";1;4) devolve \"中国\" (4 bytes são dois caracteres DBCS completos)." +msgstr "EXT.TEXTOB(\"中国\";1;4) devolve \"中国\" (4 bytes são dois caracteres DBCS completos)." #: 04060110.xhp msgctxt "" @@ -23174,7 +23174,7 @@ "par_id2958467\n" "help.text" msgid "MIDB(\"中国\";2;1) returns \" \" (byte position 2 is not at the beginning of a character in a DBCS string; 1 space character is returned)." -msgstr "SEG.TEXTOB(\"中国\";2;1) devolve \" \" (o byte na posição 2 não está no início de um carácter de uma cadeia DBCS e a função devolve um espaço vazio)." +msgstr "EXT.TEXTOB(\"中国\";2;1) devolve \" \" (o byte na posição 2 não está no início de um carácter de uma cadeia DBCS e a função devolve um espaço vazio)." #: 04060110.xhp msgctxt "" @@ -23182,7 +23182,7 @@ "par_id2958477\n" "help.text" msgid "MIDB(\"中国\";2;2) returns \" \" (byte position 2 points to the last half of the first character in the DBCS string; the 2 bytes asked for therefore constitutes the last half of the first character and the first half of the second character in the string; 2 space characters are therefore returned)." -msgstr "SEG.TEXTOB(\"中国\";2;2) devolve \" \" (o byte na posição 2 aponta para a última metade do primeiro carácter na cadeia DBCS; os dois bytes solicitados constituem o último byte do primeiro carácter e a primeira metade do segundo carácter na cadeia e a função devolve dois espaços vazios)." +msgstr "EXT.TEXTOB(\"中国\";2;2) devolve \" \" (o byte na posição 2 aponta para a última metade do primeiro carácter na cadeia DBCS; os dois bytes solicitados constituem o último byte do primeiro carácter e a primeira metade do segundo carácter na cadeia e a função devolve dois espaços vazios)." #: 04060110.xhp msgctxt "" @@ -23190,7 +23190,7 @@ "par_id2958487\n" "help.text" msgid "MIDB(\"中国\";2;3) returns \" 国\" (byte position 2 is not at the beginning of a character in a DBCS string; a space character is returned for byte position 2)." -msgstr "SEG.TEXTOB(\"中国\";2;3) devolve \" 国\" (o byte na posição 2 não está no início de um carácter na cadeia DBCS e a função devolve um espaço vazio na posição 2)." +msgstr "EXT.TEXTOB(\"中国\";2;3) devolve \" 国\" (o byte na posição 2 não está no início de um carácter na cadeia DBCS e a função devolve um espaço vazio na posição 2)." #: 04060110.xhp msgctxt "" @@ -23198,7 +23198,7 @@ "par_id2958497\n" "help.text" msgid "MIDB(\"中国\";3;1) returns \" \" (byte position 3 is at the beginning of a character in a DBCS string, but 1 byte is only half a DBCS character and a space character is therefore returned instead)." -msgstr "SEG.TEXTOB(\"中国\";3;1) devolve \" \" (o byte na posição 3 está no início de um carácter na cadeia DBCS, mas 1 byte é apenas metade de um carácter DBCS e a função devolve um espaço vazio)." +msgstr "EXT.TEXTOB(\"中国\";3;1) devolve \" \" (o byte na posição 3 está no início de um carácter na cadeia DBCS, mas 1 byte é apenas metade de um carácter DBCS e a função devolve um espaço vazio)." #: 04060110.xhp msgctxt "" @@ -23206,7 +23206,7 @@ "par_id2958507\n" "help.text" msgid "MIDB(\"中国\";3;2) returns \"国\" (byte position 3 is at the beginning of a character in a DBCS string, and 2 bytes constitute one DBCS character)." -msgstr "SEG.TEXTOB(\"中国\";3;2) devolve \"国\" (o byte na posição 3 está no início de um carácter na cadeia DBCS, e 2 bytes constituem um carácter DBCS)." +msgstr "EXT.TEXTOB(\"中国\";3;2) devolve \"国\" (o byte na posição 3 está no início de um carácter na cadeia DBCS, e 2 bytes constituem um carácter DBCS)." #: 04060110.xhp msgctxt "" @@ -23214,7 +23214,7 @@ "par_id2958517\n" "help.text" msgid "MIDB(\"office\";2;3) returns \"ffi\" (byte position 2 is at the beginning of a character in a non-DBCS string, and 3 bytes of a non-DBCS string constitute 3 characters)." -msgstr "SEG.TEXTOB(\"office\";2;3) devolve \"ffi\" (o byte na posição 2 está no início de um carácter numa cadeia que não é DBCS, e 3 bytes de uma cadeia não DBCS constituem 3 caracteres)." +msgstr "EXT.TEXTOB(\"office\";2;3) devolve \"ffi\" (o byte na posição 2 está no início de um carácter numa cadeia que não é DBCS, e 3 bytes de uma cadeia não DBCS constituem 3 caracteres)." #: 04060110.xhp msgctxt "" @@ -23382,7 +23382,7 @@ "bm_id3149741\n" "help.text" msgid "REPT function" -msgstr "Função REPETIR" +msgstr "Função REPT" #: 04060110.xhp msgctxt "" @@ -23390,7 +23390,7 @@ "hd_id3149741\n" "help.text" msgid "REPT" -msgstr "REPETIR" +msgstr "REPT" #: 04060110.xhp msgctxt "" @@ -23414,7 +23414,7 @@ "par_id3150494\n" "help.text" msgid "REPT(\"Text\"; Number)" -msgstr "REPETIR(\"texto\"; número)" +msgstr "REPT(\"texto\"; número)" #: 04060110.xhp msgctxt "" @@ -23454,7 +23454,7 @@ "par_id3148626\n" "help.text" msgid "=REPT(\"Good morning\";2) returns Good morningGood morning." -msgstr "=REPETIR(\"Bom dia\";2) devolve Bom diaBom dia." +msgstr "=REPT(\"Bom dia\";2) devolve Bom diaBom dia." #: 04060110.xhp msgctxt "" @@ -23830,7 +23830,7 @@ "bm_id3154830\n" "help.text" msgid "SUBSTITUTE function" -msgstr "Função SUBST" +msgstr "Função SUBSTITUIR" #: 04060110.xhp msgctxt "" @@ -23838,7 +23838,7 @@ "hd_id3154830\n" "help.text" msgid "SUBSTITUTE" -msgstr "SUBST" +msgstr "SUBSTITUIR" #: 04060110.xhp msgctxt "" @@ -23862,7 +23862,7 @@ "par_id3147582\n" "help.text" msgid "SUBSTITUTE(\"Text\"; \"SearchText\"; \"NewText\"; Occurrence)" -msgstr "SUBST(\"texto\"; \"texto_antigo\"; \"novo_texto\"; ocorrência)" +msgstr "SUBSTITUIR(\"texto\"; \"texto_antigo\"; \"novo_texto\"; ocorrência)" #: 04060110.xhp msgctxt "" @@ -23910,7 +23910,7 @@ "par_id3150412\n" "help.text" msgid "=SUBSTITUTE(\"123123123\";\"3\";\"abc\") returns 12abc12abc12abc." -msgstr "=SUBST(\"123123123\";\"3\";\"abc\") devolve 12abc12abc12abc." +msgstr "=SUBSTITUIR(\"123123123\";\"3\";\"abc\") devolve 12abc12abc12abc." #: 04060110.xhp msgctxt "" @@ -23918,7 +23918,7 @@ "par_id3154915\n" "help.text" msgid "=SUBSTITUTE(\"123123123\";\"3\";\"abc\";2) returns 12312abc123." -msgstr "=SUBST(\"123123123\";\"3\";\"abc\";2) devolve 12312abc123." +msgstr "=SUBSTITUIR(\"123123123\";\"3\";\"abc\";2) devolve 12312abc123." #: 04060110.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/pt-BR/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.4.4~rc2/translations/source/pt-BR/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.4.3~rc2/translations/source/pt-BR/helpcontent2/source/text/scalc/01.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/pt-BR/helpcontent2/source/text/scalc/01.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "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-07-20 11:52+0200\n" -"PO-Revision-Date: 2017-10-09 02:15+0000\n" -"Last-Translator: André Marcelo Alvarenga \n" +"PO-Revision-Date: 2017-11-30 12:19+0000\n" +"Last-Translator: Olivier Hallot \n" "Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1507515327.000000\n" +"X-POOTLE-MTIME: 1512044359.000000\n" #: 01120000.xhp msgctxt "" @@ -63822,7 +63822,7 @@ "par_id9210486\n" "help.text" msgid "Opens the Solver dialog. A solver allows you to solve equations with multiple unknown variables by goal-seeking methods." -msgstr "Opens the Solver dialog. A solver allows you to solve equations with multiple unknown variables by goal-seeking methods." +msgstr "Abre a caixa de diálogo do solver. Um solver permite a resolução de equações com várias variáveis desconhecidas através de métodos que permitem atingir objetivos." #: solver.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ru/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.4.4~rc2/translations/source/ru/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ru/helpcontent2/source/text/scalc/01.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ru/helpcontent2/source/text/scalc/01.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: 01\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-09-17 11:37+0000\n" -"Last-Translator: rikishi007 \n" +"PO-Revision-Date: 2017-11-03 08:38+0000\n" +"Last-Translator: bormant \n" "Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "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: 1505648251.000000\n" +"X-POOTLE-MTIME: 1509698281.000000\n" #: 01120000.xhp msgctxt "" @@ -20766,7 +20766,7 @@ "par_id3150826\n" "help.text" msgid "Applies a style to the cell containing the formula. After a set amount of time, another style can be applied. This function always returns the value 0, allowing you to add it to another function without changing the value. Together with the CURRENT function you can apply a color to a cell regardless of the value. For example: =...+STYLE(IF(CURRENT()>3;\"red\";\"green\")) applies the style \"red\" to the cell if the value is greater than 3, otherwise the style \"green\" is applied. Both cell formats have to be defined beforehand." -msgstr "Определяет стиль для ячейки, содержащей формулу. После заданного промежутка времени стиль можно поменять. Эта функция всегда возвращает значение 0; таким образом, её можно добавить к другой функции без изменения значения. Используя эту функцию совместно с функцией CURRENT, к ячейке можно применить цвет вне зависимости от её значения. Например: =...+STYLE(IF(CURRENT()>3;\"красный\";\"зелёный\")) позволяет применить к ячейке стиль \"красный\", если значение ячейки больше 3; в противном случае применяется стиль \"зелёный\". Для обеих ячеек необходимо предварительно определить формат." +msgstr "Определяет стиль для ячейки, содержащей формулу. После заданного промежутка времени стиль можно поменять. Эта функция всегда возвращает значение 0; таким образом, её можно добавить к другой функции без изменения значения. Используя эту функцию совместно с функцией CURRENT, к ячейке можно применить цвет в зависимости от её значения. Например: =...+STYLE(IF(CURRENT()>3;\"красный\";\"зелёный\")) позволяет применить к ячейке стиль \"красный\", если значение ячейки больше 3; в противном случае применяется стиль \"зелёный\". Для обеих ячеек необходимо предварительно определить формат." #: 04060109.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-l10n-5.4.4~rc2/translations/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-l10n-5.4.3~rc2/translations/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "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-06-20 13:56+0200\n" -"PO-Revision-Date: 2017-11-02 11:38+0000\n" +"PO-Revision-Date: 2017-11-03 09:31+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" "Language: ru\n" @@ -14,7 +14,7 @@ "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: 1509622717.000000\n" +"X-POOTLE-MTIME: 1509701514.000000\n" #: BaseWindowState.xcu msgctxt "" @@ -4640,7 +4640,7 @@ "UIName\n" "value.text" msgid "Notebookbar shortcuts" -msgstr "Комбинации клавиш ленты" +msgstr "Быстрый доступ (лента)" #: ChartCommands.xcu msgctxt "" @@ -23308,7 +23308,7 @@ "UIName\n" "value.text" msgid "Notebookbar shortcuts" -msgstr "Комбинации клавиш ленты" +msgstr "Быстрый доступ (лента)" #: MathCommands.xcu msgctxt "" @@ -23479,7 +23479,7 @@ "Label\n" "value.text" msgid "Z~oom In" -msgstr "Увеличить" +msgstr "Крупнее" #: MathCommands.xcu msgctxt "" @@ -23488,7 +23488,7 @@ "Label\n" "value.text" msgid "Zoo~m Out" -msgstr "Уменьшить" +msgstr "Мельче" #: MathCommands.xcu msgctxt "" @@ -31381,7 +31381,7 @@ "UIName\n" "value.text" msgid "Notebookbar shortcuts" -msgstr "Комбинации клавиш ленты" +msgstr "Быстрый доступ (лента)" #: WriterWindowState.xcu msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/tr/cui/source/options.po libreoffice-l10n-5.4.4~rc2/translations/source/tr/cui/source/options.po --- libreoffice-l10n-5.4.3~rc2/translations/source/tr/cui/source/options.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/tr/cui/source/options.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-04-12 14:13+0200\n" -"PO-Revision-Date: 2017-01-21 17:20+0000\n" -"Last-Translator: Necdet Yucel \n" +"PO-Revision-Date: 2017-12-10 11:47+0000\n" +"Last-Translator: Emir SARI \n" "Language-Team: LANGUAGE \n" "Language: tr\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1485019209.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1512906455.000000\n" #: connpooloptions.src msgctxt "" @@ -866,7 +866,7 @@ "Searching in Japanese\n" "itemlist.text" msgid "Searching in Japanese" -msgstr "Japonca'da Aramak" +msgstr "Japoncada Arama" #: treeopt.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/tr/helpcontent2/source/text/scalc/01.po libreoffice-l10n-5.4.4~rc2/translations/source/tr/helpcontent2/source/text/scalc/01.po --- libreoffice-l10n-5.4.3~rc2/translations/source/tr/helpcontent2/source/text/scalc/01.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/tr/helpcontent2/source/text/scalc/01.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-17 17:49+0000\n" -"Last-Translator: Necdet Yucel \n" +"PO-Revision-Date: 2017-11-09 19:34+0000\n" +"Last-Translator: MUYTEKER \n" "Language-Team: LANGUAGE \n" "Language: tr\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1508262542.000000\n" +"X-POOTLE-MTIME: 1510256094.000000\n" #: 01120000.xhp msgctxt "" @@ -61302,7 +61302,7 @@ "par_id23102016225717242\n" "help.text" msgid "Date functions" -msgstr "" +msgstr "Tarih işlevleri" #: func_networkdays.xhp msgctxt "" @@ -61390,7 +61390,7 @@ "hd_id3146902\n" "help.text" msgid "Examples" -msgstr "" +msgstr "Örnekler" #: func_networkdays.xhp msgctxt "" @@ -61398,7 +61398,7 @@ "par_id3154661\n" "help.text" msgid "How many workdays fall between 2001-12-15 and 2002-01-15? The start date is located in C3 and the end date in D3. Cells F3 to J3 contain the following Christmas and New Year holidays: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"." -msgstr "" +msgstr "15/12/2001 ve 15/1/2002 tarihleri arasında kaç iş günü vardır? Başlangıç tarihi C3 hücresinde bitiş tarihi D3 hücresinde bulunur. F3 - J3 arasındaki hücreler şu Noel ve yeni yıl tatillerini içerir: \"24/12/2001\", \"25/12/2001\", \"26/12/2001\", \"31/12/2001\", \"1/1/2002\"." #: func_networkdays.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/tr/helpcontent2/source/text/shared/optionen.po libreoffice-l10n-5.4.4~rc2/translations/source/tr/helpcontent2/source/text/shared/optionen.po --- libreoffice-l10n-5.4.3~rc2/translations/source/tr/helpcontent2/source/text/shared/optionen.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/tr/helpcontent2/source/text/shared/optionen.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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:53+0200\n" -"PO-Revision-Date: 2017-09-06 12:12+0000\n" -"Last-Translator: Necdet Yucel \n" +"PO-Revision-Date: 2017-12-10 11:47+0000\n" +"Last-Translator: Emir SARI \n" "Language-Team: LANGUAGE \n" "Language: tr\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1504699973.000000\n" +"X-POOTLE-MTIME: 1512906447.000000\n" #: 01000000.xhp msgctxt "" @@ -12630,7 +12630,7 @@ "tit\n" "help.text" msgid "Searching in Japanese" -msgstr "Japonca'da Arama" +msgstr "Japoncada Arama" #: 01150200.xhp msgctxt "" @@ -12638,7 +12638,7 @@ "hd_id3155338\n" "help.text" msgid "Searching in Japanese" -msgstr "Japonca'da Arama" +msgstr "Japoncada Arama" #: 01150200.xhp msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/zh-CN/starmath/source.po libreoffice-l10n-5.4.4~rc2/translations/source/zh-CN/starmath/source.po --- libreoffice-l10n-5.4.3~rc2/translations/source/zh-CN/starmath/source.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/zh-CN/starmath/source.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE 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-04-19 21:37+0200\n" -"PO-Revision-Date: 2017-03-26 02:15+0000\n" -"Last-Translator: ACTom \n" +"PO-Revision-Date: 2017-11-03 03:17+0000\n" +"Last-Translator: 锁琨珑 \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\n" "MIME-Version: 1.0\n" @@ -13,8 +13,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" -"X-POOTLE-MTIME: 1490494532.000000\n" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1509679035.000000\n" #: commands.src msgctxt "" @@ -126,7 +126,7 @@ "RID_XODIVIDEY_HELP\n" "string.text" msgid "Circled Slash" -msgstr "" +msgstr "带圈的斜线" #: commands.src msgctxt "" @@ -134,7 +134,7 @@ "RID_XODOTY_HELP\n" "string.text" msgid "Circled Dot" -msgstr "" +msgstr "带圈的点" #: commands.src msgctxt "" @@ -142,7 +142,7 @@ "RID_XOMINUSY_HELP\n" "string.text" msgid "Circled Minus" -msgstr "" +msgstr "带圈的减号" #: commands.src msgctxt "" @@ -150,7 +150,7 @@ "RID_XOPLUSY_HELP\n" "string.text" msgid "Circled Plus" -msgstr "" +msgstr "带圈的加号" #: commands.src msgctxt "" @@ -262,7 +262,7 @@ "RID_XDEFY_HELP\n" "string.text" msgid "Is Defined As" -msgstr "" +msgstr "被定义为" #: commands.src msgctxt "" @@ -334,7 +334,7 @@ "RID_XTRANSLY_HELP\n" "string.text" msgid "Corresponds To (Left)" -msgstr "" +msgstr "对应于(左)" #: commands.src msgctxt "" @@ -342,7 +342,7 @@ "RID_XTRANSRY_HELP\n" "string.text" msgid "Corresponds To (Right)" -msgstr "" +msgstr "对应于(右)" #: commands.src msgctxt "" @@ -790,7 +790,7 @@ "RID_LIMINFX_HELP\n" "string.text" msgid "Limit Inferior" -msgstr "" +msgstr "下极限" #: commands.src msgctxt "" @@ -798,7 +798,7 @@ "RID_LIMINF_FROMX_HELP\n" "string.text" msgid "Limit Inferior Subscript Bottom" -msgstr "" +msgstr "下极限的下标" #: commands.src msgctxt "" @@ -806,7 +806,7 @@ "RID_LIMINF_TOX_HELP\n" "string.text" msgid "Limit Inferior Superscript Top" -msgstr "" +msgstr "下极限的上标" #: commands.src msgctxt "" @@ -814,7 +814,7 @@ "RID_LIMINF_FROMTOX_HELP\n" "string.text" msgid "Limit Inferior Sup/Sub script" -msgstr "" +msgstr "下极限的上/下标" #: commands.src msgctxt "" @@ -822,7 +822,7 @@ "RID_LIMSUPX_HELP\n" "string.text" msgid "Limit Superior" -msgstr "" +msgstr "上极限" #: commands.src msgctxt "" @@ -830,7 +830,7 @@ "RID_LIMSUP_FROMX_HELP\n" "string.text" msgid "Limit Superior Subscript Bottom" -msgstr "" +msgstr "上极限的下标" #: commands.src msgctxt "" @@ -838,7 +838,7 @@ "RID_LIMSUP_TOX_HELP\n" "string.text" msgid "Limit Superior Superscript Top" -msgstr "" +msgstr "上极限的上标" #: commands.src msgctxt "" @@ -846,7 +846,7 @@ "RID_LIMSUP_FROMTOX_HELP\n" "string.text" msgid "Limit Superior Sup/Sub script" -msgstr "" +msgstr "上极限的上/下标" #: commands.src msgctxt "" @@ -2342,7 +2342,7 @@ "RID_ERR_UNEXPECTEDTOKEN\n" "string.text" msgid "Unexpected token" -msgstr "" +msgstr "未预期的标记" #: smres.src msgctxt "" @@ -2382,7 +2382,7 @@ "RID_ERR_PARENTMISMATCH\n" "string.text" msgid "Left and right symbols mismatched" -msgstr "" +msgstr "左右符号不匹配" #: smres.src msgctxt "" @@ -2390,7 +2390,7 @@ "RID_ERR_FONTEXPECTED\n" "string.text" msgid "'fixed', 'sans', or 'serif' expected" -msgstr "" +msgstr "预期的是 'fixed', 'sans', 或者 'serif'" #: smres.src msgctxt "" @@ -2398,7 +2398,7 @@ "RID_ERR_SIZEEXPECTED\n" "string.text" msgid "'size' followed by an unexpected token" -msgstr "" +msgstr "'size' 后接了未预期的标记" #: smres.src msgctxt "" @@ -2406,7 +2406,7 @@ "RID_ERR_DOUBLEALIGN\n" "string.text" msgid "Double aligning is not allowed" -msgstr "" +msgstr "不允许双重对齐" #: smres.src msgctxt "" @@ -2414,7 +2414,7 @@ "RID_ERR_DOUBLESUBSUPSCRIPT\n" "string.text" msgid "Double sub/superscripts is not allowed" -msgstr "" +msgstr "不允许双重上/下标" #: smres.src msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/translations/source/zh-TW/sw/uiconfig/swriter/ui.po libreoffice-l10n-5.4.4~rc2/translations/source/zh-TW/sw/uiconfig/swriter/ui.po --- libreoffice-l10n-5.4.3~rc2/translations/source/zh-TW/sw/uiconfig/swriter/ui.po 2017-11-03 14:12:30.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/translations/source/zh-TW/sw/uiconfig/swriter/ui.po 2017-12-12 17:45:07.000000000 +0000 @@ -4,7 +4,7 @@ "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: 2017-06-06 20:00+0200\n" -"PO-Revision-Date: 2017-10-30 14:11+0000\n" +"PO-Revision-Date: 2017-12-07 13:22+0000\n" "Last-Translator: Cheng-Chia Tseng \n" "Language-Team: none\n" "Language: zh_TW\n" @@ -14,7 +14,7 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1509372679.000000\n" +"X-POOTLE-MTIME: 1512652969.000000\n" #: abstractdialog.ui msgctxt "" @@ -6417,7 +6417,7 @@ "title\n" "string.text" msgid "Insert Break" -msgstr "插入隔斷" +msgstr "插入隔斷符" #: insertbreak.ui msgctxt "" @@ -6444,7 +6444,7 @@ "label\n" "string.text" msgid "Page break" -msgstr "分頁符" +msgstr "分頁" #: insertbreak.ui msgctxt "" diff -Nru libreoffice-l10n-5.4.3~rc2/unoil/CliUnoApi_oootypes.mk libreoffice-l10n-5.4.4~rc2/unoil/CliUnoApi_oootypes.mk --- libreoffice-l10n-5.4.3~rc2/unoil/CliUnoApi_oootypes.mk 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/unoil/CliUnoApi_oootypes.mk 2017-12-12 17:45:07.000000000 +0000 @@ -14,7 +14,7 @@ $(eval $(call gb_CliUnoApi_set_assembly_version,cli_oootypes,$(CLI_OOOTYPES_NEW_VERSION))) -$(eval $(call gb_CliUnoApi_set_configfile,cli_oootypes,unoil/climaker/cli_oootypes_config)) +$(eval $(call gb_CliUnoApi_set_configfile,cli_oootypes,unoil/climaker/cli_oootypes_config,unoil/climaker/version.txt)) $(eval $(call gb_CliUnoApi_set_keyfile,cli_oootypes,$(SRCDIR)/cli_ure/source/cliuno.snk)) diff -Nru libreoffice-l10n-5.4.3~rc2/vcl/CppunitTest_vcl_complextext.mk libreoffice-l10n-5.4.4~rc2/vcl/CppunitTest_vcl_complextext.mk --- libreoffice-l10n-5.4.3~rc2/vcl/CppunitTest_vcl_complextext.mk 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/vcl/CppunitTest_vcl_complextext.mk 2017-12-12 17:45:07.000000000 +0000 @@ -21,6 +21,10 @@ $(eval $(call gb_CppunitTest_use_externals,vcl_complextext,boost_headers)) +ifneq ($(filter MORE_FONTS,$(BUILD_TYPE)),) +$(eval $(call gb_CppunitTest_use_package,vcl_complextext,fonts_dejavu)) +endif + $(eval $(call gb_CppunitTest_use_libraries,vcl_complextext, \ comphelper \ cppu \ diff -Nru libreoffice-l10n-5.4.3~rc2/vcl/inc/helpwin.hxx libreoffice-l10n-5.4.4~rc2/vcl/inc/helpwin.hxx --- libreoffice-l10n-5.4.3~rc2/vcl/inc/helpwin.hxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/vcl/inc/helpwin.hxx 2017-12-12 17:45:07.000000000 +0000 @@ -47,7 +47,6 @@ virtual void Paint(vcl::RenderContext& rRenderContext, const tools::Rectangle&) override; virtual void RequestHelp( const HelpEvent& rHEvt ) override; virtual void ApplySettings(vcl::RenderContext& rRenderContext) override; - virtual void StateChanged(StateChangedType nType) override; virtual OUString GetText() const override; void ImplShow(); diff -Nru libreoffice-l10n-5.4.3~rc2/vcl/inc/unx/gtk/gtkframe.hxx libreoffice-l10n-5.4.4~rc2/vcl/inc/unx/gtk/gtkframe.hxx --- libreoffice-l10n-5.4.3~rc2/vcl/inc/unx/gtk/gtkframe.hxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/vcl/inc/unx/gtk/gtkframe.hxx 2017-12-12 17:45:07.000000000 +0000 @@ -68,6 +68,8 @@ typedef void GDBusConnection; #endif +class GtkSalMenu; + class GtkSalFrame : public SalFrame , public NativeWindowHandleProvider { @@ -221,7 +223,7 @@ bool m_bSetFocusOnMap; #endif - SalMenu* m_pSalMenu; + GtkSalMenu* m_pSalMenu; #if ENABLE_DBUS && ENABLE_GIO private: diff -Nru libreoffice-l10n-5.4.3~rc2/vcl/inc/unx/gtk/gtksalmenu.hxx libreoffice-l10n-5.4.4~rc2/vcl/inc/unx/gtk/gtksalmenu.hxx --- libreoffice-l10n-5.4.3~rc2/vcl/inc/unx/gtk/gtksalmenu.hxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/vcl/inc/unx/gtk/gtksalmenu.hxx 2017-12-12 17:45:07.000000000 +0000 @@ -121,6 +121,8 @@ GtkSalMenu* GetTopLevel(); void SetNeedsUpdate(); + GtkWidget* GetMenuBarContainerWidget() const { return mpMenuBarContainerWidget; } + void CreateMenuBarWidget(); void DestroyMenuBarWidget(); gboolean SignalKey(GdkEventKey* pEvent); diff -Nru libreoffice-l10n-5.4.3~rc2/vcl/osx/salprn.cxx libreoffice-l10n-5.4.4~rc2/vcl/osx/salprn.cxx --- libreoffice-l10n-5.4.3~rc2/vcl/osx/salprn.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/vcl/osx/salprn.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -65,7 +65,7 @@ mpPrintInfo = [pShared copy]; [mpPrintInfo setPrinter: mpPrinter]; #if MACOSX_SDK_VERSION >= 1090 - mePageOrientation = ([mpPrintInfo orientation] == NSPaperOrientationPortrait) ? Orientation::Landscape : Orientation::Portrait; + mePageOrientation = ([mpPrintInfo orientation] == NSPaperOrientationLandscape) ? Orientation::Landscape : Orientation::Portrait; [mpPrintInfo setOrientation: NSPaperOrientationPortrait]; #else mePageOrientation = ([mpPrintInfo orientation] == NSLandscapeOrientation) ? Orientation::Landscape : Orientation::Portrait; diff -Nru libreoffice-l10n-5.4.3~rc2/vcl/source/app/help.cxx libreoffice-l10n-5.4.4~rc2/vcl/source/app/help.cxx --- libreoffice-l10n-5.4.3~rc2/vcl/source/app/help.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/vcl/source/app/help.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -281,17 +281,6 @@ maHideTimer.SetDebugName( "vcl::HelpTextWindow maHideTimer" ); } -void HelpTextWindow::StateChanged(StateChangedType nType) -{ - FloatingWindow::StateChanged(nType); - if (nType == StateChangedType::InitShow) - { - ApplySettings(*this); - SetHelpText(maHelpText); - Invalidate(); - } -} - void HelpTextWindow::ApplySettings(vcl::RenderContext& rRenderContext) { const StyleSettings& rStyleSettings = rRenderContext.GetSettings().GetStyleSettings(); @@ -334,6 +323,7 @@ void HelpTextWindow::SetHelpText( const OUString& rHelpText ) { maHelpText = rHelpText; + ApplySettings(*this); if ( mnHelpWinStyle == HELPWINSTYLE_QUICK && maHelpText.getLength() < HELPTEXTMAXLEN) { Size aSize; diff -Nru libreoffice-l10n-5.4.3~rc2/vcl/source/filter/ixpm/xpmread.cxx libreoffice-l10n-5.4.4~rc2/vcl/source/filter/ixpm/xpmread.cxx --- libreoffice-l10n-5.4.3~rc2/vcl/source/filter/ixpm/xpmread.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/vcl/source/filter/ixpm/xpmread.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -406,6 +406,9 @@ { sal_uInt8 nTemp, nPrev = ' '; + if (mnStringSize < mnCpp + 1) + return false; + mpPara = mpStringBuf + mnCpp + 1; mnParaSize = 0; diff -Nru libreoffice-l10n-5.4.3~rc2/vcl/source/gdi/CommonSalLayout.cxx libreoffice-l10n-5.4.4~rc2/vcl/source/gdi/CommonSalLayout.cxx --- libreoffice-l10n-5.4.3~rc2/vcl/source/gdi/CommonSalLayout.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/vcl/source/gdi/CommonSalLayout.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -662,6 +662,13 @@ { nGlyphFlags |= GlyphItem::IS_VERTICAL; + // We have glyph offsets that is relative to h origin now, + // add the origin back so it is relative to v origin. + hb_font_add_glyph_origin_for_direction( mpHbFont, + nGlyphIndex, + HB_DIRECTION_TTB, + &pHbPositions[i].x_offset , + &pHbPositions[i].y_offset ); nAdvance = -pHbPositions[i].y_advance; nXOffset = pHbPositions[i].y_offset; nYOffset = pHbPositions[i].x_offset; diff -Nru libreoffice-l10n-5.4.3~rc2/vcl/source/gdi/pdfwriter_impl.cxx libreoffice-l10n-5.4.4~rc2/vcl/source/gdi/pdfwriter_impl.cxx --- libreoffice-l10n-5.4.3~rc2/vcl/source/gdi/pdfwriter_impl.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/vcl/source/gdi/pdfwriter_impl.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -8702,16 +8702,22 @@ for( int i = 0; i < nGlyphs; i++ ) { + // tdf#113428: calculate the position of the next glyphs the same + // way GetNextGlyphs() would do if we asked for a single glyph at + // time. + if (i > 0) + { + Point aPos = pGlyphs[i]->maLinearPos; + aPos.X() /= rLayout.GetUnitsPerPixel(); + aPos.Y() /= rLayout.GetUnitsPerPixel(); + aGNGlyphPos = rLayout.GetDrawPosition(aPos); + } aGlyphs.push_back( PDFGlyph( aGNGlyphPos, pGlyphWidths[i], pGlyphs[i]->maGlyphId, pMappedFontObjects[i], pMappedGlyphs[i], pGlyphs[i]->IsVertical() ) ); - if( bVertical ) - aGNGlyphPos.Y() += pGlyphs[i]->mnNewWidth/rLayout.GetUnitsPerPixel(); - else - aGNGlyphPos.X() += pGlyphs[i]->mnNewWidth/rLayout.GetUnitsPerPixel(); } } @@ -11446,10 +11452,29 @@ if( aBitmap.GetBitCount() == 1 ) { // #i47395# 1 bit bitmaps occasionally have an inverted grey palette - sal_Int32 nBlackIndex = pAccess->GetBestPaletteIndex( BitmapColor( Color( COL_BLACK ) ) ); - SAL_WARN_IF( nBlackIndex != 0 && nBlackIndex != 1, "vcl.pdfwriter", "wrong black index" ); - if( nBlackIndex == 1 ) - aLine.append( "/Decode[1 0]\n" ); + sal_uInt16 nBlackIndex = pAccess->GetBestPaletteIndex( BitmapColor( Color( COL_BLACK ) ) ); + assert( nBlackIndex == 0 || nBlackIndex == 1); + sal_uInt16 nWhiteIndex = pAccess->GetBestPaletteIndex( BitmapColor( Color( COL_WHITE ) ) ); + if( pAccess->GetPalette()[nBlackIndex] == BitmapColor( Color( COL_BLACK ) ) && + pAccess->GetPalette()[nWhiteIndex] == BitmapColor( Color( COL_WHITE ) ) ) + { + // It is black and white + if( nBlackIndex == 1 ) + aLine.append( "/Decode[1 0]\n" ); + } + else + { + // It is two levels of grey + aLine.append( "/Decode[" ); + assert( pAccess->GetPalette()[0].GetRed() == pAccess->GetPalette()[0].GetGreen() && + pAccess->GetPalette()[0].GetRed() == pAccess->GetPalette()[0].GetBlue() && + pAccess->GetPalette()[1].GetRed() == pAccess->GetPalette()[1].GetGreen() && + pAccess->GetPalette()[1].GetRed() == pAccess->GetPalette()[1].GetBlue() ); + aLine.append( pAccess->GetPalette()[0].GetRed() / 255.0 ); + aLine.append( " " ); + aLine.append( pAccess->GetPalette()[1].GetRed() / 255.0 ); + aLine.append( "]\n" ); + } } } else diff -Nru libreoffice-l10n-5.4.3~rc2/vcl/source/gdi/pngread.cxx libreoffice-l10n-5.4.4~rc2/vcl/source/gdi/pngread.cxx --- libreoffice-l10n-5.4.3~rc2/vcl/source/gdi/pngread.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/vcl/source/gdi/pngread.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -123,6 +123,7 @@ bool mbGrayScale : 1; bool mbzCodecInUse : 1; bool mbStatus : 1; + bool mbIDATStarted : 1; // true if IDAT seen bool mbIDAT : 1; // true if finished with enough IDAT chunks bool mbGamma : 1; // true if Gamma Correction available bool mbpHYs : 1; // true if physical size of pixel available @@ -201,6 +202,7 @@ mbGrayScale( false ), mbzCodecInUse ( false ), mbStatus( true ), + mbIDATStarted( false ), mbIDAT( false ), mbGamma ( false ), mbpHYs ( false ), @@ -364,7 +366,7 @@ case PNGCHUNK_PLTE : { - if ( !mbPalette ) + if (!mbPalette && !mbIDATStarted) mbStatus = ImplReadPalette(); } break; @@ -483,7 +485,7 @@ } mbPalette = true; - mbIDAT = mbAlphaChannel = mbTransparent = false; + mbIDATStarted = mbIDAT = mbAlphaChannel = mbTransparent = false; mbGrayScale = mbRGBTriple = false; mnTargetDepth = mnPngDepth; sal_uInt64 nScansize64 = ( ( static_cast< sal_uInt64 >( maOrigSize.Width() ) * mnPngDepth ) + 7 ) >> 3; @@ -533,10 +535,19 @@ { switch ( mnPngDepth ) { + case 1 : +#if defined(UNX) && !defined(MACOSX) + // 1bpp indexed images are so badly mishandled by rest of LO on X11 that we + // don't even bother, and turn them into 8bpp indexed ones with just two palette + // entries instead. + mnTargetDepth = 8; // we have to expand the bitmap +#endif + mbPalette = false; + break; case 2 : mnTargetDepth = 4; // we have to expand the bitmap - SAL_FALLTHROUGH; - case 1 : + mbPalette = false; + break; case 4 : case 8 : mbPalette = false; @@ -898,6 +909,8 @@ { if( mnChunkLen > 0 ) { + mbIDATStarted = true; + if ( !mbzCodecInUse ) { mbzCodecInUse = true; @@ -1321,6 +1334,22 @@ for ( long nX = nXStart; nX < maOrigSize.Width(); nX += nXAdd, pTmp++ ) ImplSetAlphaPixel( nY, nX, *pTmp, mpTransTab[ *pTmp ] ); } + else if (mnPngDepth == 1 ) + { + for ( long nX = nXStart, nShift = 0; nX < maOrigSize.Width(); nX += nXAdd ) + { + nShift = (nShift - 1) & 7; + + sal_uInt8 nCol; + if ( nShift == 0 ) + nCol = *(pTmp++); + else + nCol = static_cast( *pTmp >> nShift ); + nCol &= 1; + + ImplSetAlphaPixel( nY, nX, nCol, mpTransTab[ nCol ] ); + } + } else { for ( long nX = nXStart; nX < maOrigSize.Width(); nX += nXAdd, pTmp += 2 ) @@ -1329,7 +1358,7 @@ } else // neither alpha nor transparency { - if ( mnPngDepth == 8 ) // maybe the source is a 16 bit grayscale + if ( mnPngDepth == 8 ) // maybe the source is a 16 bit grayscale or 1 bit indexed { if( nXAdd == 1 && mnPreviewShift == 0 ) // copy raw line data if possible { @@ -1344,6 +1373,22 @@ ImplSetPixel( nY, nX, *pTmp++ ); } } + else if (mnPngDepth == 1 ) + { + for ( long nX = nXStart, nShift = 0; nX < maOrigSize.Width(); nX += nXAdd ) + { + nShift = (nShift - 1) & 7; + + sal_uInt8 nCol; + if ( nShift == 0 ) + nCol = *(pTmp++); + else + nCol = static_cast( *pTmp >> nShift ); + nCol &= 1; + + ImplSetPixel( nY, nX, nCol ); + } + } else { for ( long nX = nXStart; nX < maOrigSize.Width(); nX += nXAdd, pTmp += 2 ) diff -Nru libreoffice-l10n-5.4.3~rc2/vcl/source/window/builder.cxx libreoffice-l10n-5.4.4~rc2/vcl/source/window/builder.cxx --- libreoffice-l10n-5.4.3~rc2/vcl/source/window/builder.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/vcl/source/window/builder.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -1439,7 +1439,13 @@ if (bIsTriState) xCheckBox->SetState(TRISTATE_INDET); xCheckBox->SetImageAlign(ImageAlign::Left); //default to left + xWindow = xCheckBox; + + if (::extractStock(rMap)) + { + xWindow->SetText(getStockText(extractLabel(rMap))); + } } else if (name == "GtkSpinButton") { diff -Nru libreoffice-l10n-5.4.3~rc2/vcl/source/window/winproc.cxx libreoffice-l10n-5.4.4~rc2/vcl/source/window/winproc.cxx --- libreoffice-l10n-5.4.3~rc2/vcl/source/window/winproc.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/vcl/source/window/winproc.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -1599,7 +1599,8 @@ void ImplHandleResize( vcl::Window* pWindow, long nNewWidth, long nNewHeight ) { - if( pWindow->GetStyle() & (WB_MOVEABLE|WB_SIZEABLE) ) + const bool bChanged = (nNewWidth != pWindow->GetOutputWidthPixel()) || (nNewHeight != pWindow->GetOutputHeightPixel()); + if (bChanged && pWindow->GetStyle() & (WB_MOVEABLE|WB_SIZEABLE)) { KillOwnPopups( pWindow ); if( pWindow->ImplGetWindow() != ImplGetSVData()->maHelpData.mpHelpWin ) @@ -1611,7 +1612,7 @@ pWindow->ImplGetWindow()->ImplGetWindowImpl()->mbAllResize ) { - if ( (nNewWidth != pWindow->GetOutputWidthPixel()) || (nNewHeight != pWindow->GetOutputHeightPixel()) ) + if (bChanged) { pWindow->mnOutWidth = nNewWidth; pWindow->mnOutHeight = nNewHeight; @@ -2088,10 +2089,11 @@ // #105224# send commandevent to allow special treatment of Ctrl-LeftShift/Ctrl-RightShift etc. // + auto-accelerator feature, tdf#92630 - // find window + // try to find a key input window... vcl::Window* pChild = ImplGetKeyInputWindow( pWindow ); - if ( !pChild ) - return; + //...otherwise fail safe... + if (!pChild) + pChild = pWindow; CommandModKeyData data( pEvent->mnModKeyCode, pEvent->mbDown ); ImplCallCommand( pChild, CommandEventId::ModKeyChange, &data ); diff -Nru libreoffice-l10n-5.4.3~rc2/vcl/unx/generic/fontmanager/fontconfig.cxx libreoffice-l10n-5.4.4~rc2/vcl/unx/generic/fontmanager/fontconfig.cxx --- libreoffice-l10n-5.4.3~rc2/vcl/unx/generic/fontmanager/fontconfig.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/vcl/unx/generic/fontmanager/fontconfig.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -680,6 +680,8 @@ reinterpret_cast(aConfFileName.getStr()), FcTrue); if( !bCfgOk ) fprintf( stderr, "FcConfigParseAndLoad( \"%s\") => %d\n", aConfFileName.getStr(), bCfgOk ); + } else { + SAL_INFO("vcl", "cannot open " << aConfFileName); } return; diff -Nru libreoffice-l10n-5.4.3~rc2/vcl/unx/gtk/gtksalframe.cxx libreoffice-l10n-5.4.4~rc2/vcl/unx/gtk/gtksalframe.cxx --- libreoffice-l10n-5.4.3~rc2/vcl/unx/gtk/gtksalframe.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/vcl/unx/gtk/gtksalframe.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -21,6 +21,7 @@ #include #include #include +#include #include #include #include @@ -1223,6 +1224,7 @@ { eType = GDK_WINDOW_TYPE_HINT_TOOLBAR; lcl_set_accept_focus( GTK_WINDOW(m_pWindow), false, true ); + gtk_window_set_decorated( GTK_WINDOW(m_pWindow), false ); } if( (nStyle & SalFrameStyleFlags::PARTIAL_FULLSCREEN ) && getDisplay()->getWMAdaptor()->isLegacyPartialFullscreen() ) @@ -1421,11 +1423,7 @@ void GtkSalFrame::SetMenu( SalMenu* pSalMenu ) { -// if(m_pSalMenu) -// { -// static_cast(m_pSalMenu)->DisconnectFrame(); -// } - m_pSalMenu = pSalMenu; + m_pSalMenu = static_cast(pSalMenu); } SalMenu* GtkSalFrame::GetMenu() @@ -3023,8 +3021,8 @@ GtkSalFrame* pThis = static_cast(frame); //Spawn off a helper program that will attempt to set this fullscreen - //window to span all displays. - if (pThis->m_bFullscreen && pThis->m_bSpanMonitorsWhenFullscreen) + //window either to span all displays or the current monitor + if (pThis->m_bFullscreen) { GdkWindow* gdkwin = widget_get_window(pThis->m_pWindow); if (gdkwin) @@ -3035,7 +3033,8 @@ if (osl::FileBase::getSystemPathFromFileURL(sProgramURL, sProgram) == osl::File::E_None) { OString sFinalProgram(OUStringToOString(sProgram, osl_getThreadTextEncoding()) - + " " + OString::number((int)GDK_WINDOW_XID(gdkwin))); + + " " + OString::number((int)GDK_WINDOW_XID(gdkwin)) + + " " + OString::number((int)pThis->m_bSpanMonitorsWhenFullscreen)); OString sDisplay(getDisplayString()); if (!sDisplay.isEmpty()) { diff -Nru libreoffice-l10n-5.4.3~rc2/vcl/unx/gtk/xid_fullscreen_on_all_monitors.c libreoffice-l10n-5.4.4~rc2/vcl/unx/gtk/xid_fullscreen_on_all_monitors.c --- libreoffice-l10n-5.4.3~rc2/vcl/unx/gtk/xid_fullscreen_on_all_monitors.c 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/vcl/unx/gtk/xid_fullscreen_on_all_monitors.c 2017-12-12 17:45:07.000000000 +0000 @@ -37,6 +37,7 @@ GdkEvent *event; GdkWindow *window; int windowid; + int spanmonitors; handle = dlopen("libgtk-3.so.0", RTLD_LAZY); if( NULL == handle ) @@ -75,6 +76,7 @@ gtk_init(&argc, &argv); windowid = atoi(argv[1]); + spanmonitors = atoi(argv[2]); window = gdk_x11_window_foreign_new_for_display(gdk_display_get_default(), windowid); if (!window) @@ -83,7 +85,7 @@ return -1; } - gdk_window_set_fullscreen_mode(window, GDK_FULLSCREEN_ON_ALL_MONITORS); + gdk_window_set_fullscreen_mode(window, spanmonitors ? GDK_FULLSCREEN_ON_ALL_MONITORS : GDK_FULLSCREEN_ON_CURRENT_MONITOR); gdk_window_fullscreen(window); while ((event = gdk_event_get()) != NULL) diff -Nru libreoffice-l10n-5.4.3~rc2/vcl/unx/gtk3/gtk3gtkframe.cxx libreoffice-l10n-5.4.4~rc2/vcl/unx/gtk3/gtk3gtkframe.cxx --- libreoffice-l10n-5.4.3~rc2/vcl/unx/gtk3/gtk3gtkframe.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/vcl/unx/gtk3/gtk3gtkframe.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -1398,11 +1398,7 @@ void GtkSalFrame::SetMenu( SalMenu* pSalMenu ) { -// if(m_pSalMenu) -// { -// static_cast(m_pSalMenu)->DisconnectFrame(); -// } - m_pSalMenu = pSalMenu; + m_pSalMenu = static_cast(pSalMenu); } SalMenu* GtkSalFrame::GetMenu() @@ -1929,8 +1925,11 @@ gdk_window_set_fullscreen_mode( widget_get_window(m_pWindow), m_bSpanMonitorsWhenFullscreen ? GDK_FULLSCREEN_ON_ALL_MONITORS : GDK_FULLSCREEN_ON_CURRENT_MONITOR ); #endif + GtkWidget* pMenuBarContainerWidget = m_pSalMenu ? m_pSalMenu->GetMenuBarContainerWidget() : nullptr; if( eType == SetType::Fullscreen ) { + if (pMenuBarContainerWidget) + gtk_widget_hide(pMenuBarContainerWidget); if (m_bSpanMonitorsWhenFullscreen) gtk_window_fullscreen(GTK_WINDOW(m_pWindow)); else @@ -1944,7 +1943,11 @@ } else if( eType == SetType::UnFullscreen ) + { + if (pMenuBarContainerWidget) + gtk_widget_show(pMenuBarContainerWidget); gtk_window_unfullscreen( GTK_WINDOW( m_pWindow ) ); + } if( eType == SetType::UnFullscreen && !(m_nStyle & SalFrameStyleFlags::SIZEABLE) ) @@ -2482,7 +2485,7 @@ #if GTK_CHECK_VERSION(3,12,0) namespace { - void set_pointing_to(GtkPopover *pPopOver, const tools::Rectangle& rHelpArea) + void set_pointing_to(GtkPopover *pPopOver, const tools::Rectangle& rHelpArea, const SalFrameGeometry& rGeometry) { GdkRectangle aRect; aRect.x = rHelpArea.Left(); @@ -2503,6 +2506,9 @@ break; } + if (AllSettings::GetLayoutRTL()) + aRect.x = rGeometry.nWidth-aRect.width-1-aRect.x; + gtk_popover_set_pointing_to(pPopOver, &aRect); } } @@ -2525,7 +2531,7 @@ else if (nFlags & QuickHelpFlags::Right) gtk_popover_set_position(GTK_POPOVER(pWidget), GTK_POS_LEFT); - set_pointing_to(GTK_POPOVER(pWidget), rHelpArea); + set_pointing_to(GTK_POPOVER(pWidget), rHelpArea, maGeometry); gtk_popover_set_modal(GTK_POPOVER(pWidget), false); @@ -2545,7 +2551,7 @@ #if GTK_CHECK_VERSION(3,12,0) GtkWidget *pWidget = reinterpret_cast(nId); - set_pointing_to(GTK_POPOVER(pWidget), rHelpArea); + set_pointing_to(GTK_POPOVER(pWidget), rHelpArea, maGeometry); GtkWidget *pLabel = gtk_bin_get_child(GTK_BIN(pWidget)); OString sUTF = OUStringToOString(rHelpText, RTL_TEXTENCODING_UTF8); @@ -2630,12 +2636,18 @@ vcl::DeletionListener aDel( pThis ); - if (pThis->isFloatGrabWindow() && pEvent->window != widget_get_window(pThis->getMouseEventWidget())) + if (pThis->isFloatGrabWindow()) { - if (pEvent->type == GDK_BUTTON_PRESS) - pThis->closePopup(); - else if (pEvent->type == GDK_BUTTON_RELEASE) - return true; + //rhbz#1505379 if the window that got the event isn't our one, or there's none + //of our windows under the mouse then close this popup window + if (pEvent->window != widget_get_window(pThis->getMouseEventWidget()) || + gdk_device_get_window_at_position(pEvent->device, nullptr, nullptr) == nullptr) + { + if (pEvent->type == GDK_BUTTON_PRESS) + pThis->closePopup(); + else if (pEvent->type == GDK_BUTTON_RELEASE) + return true; + } } if (!aDel.isDeleted()) diff -Nru libreoffice-l10n-5.4.3~rc2/vcl/win/gdi/winlayout.cxx libreoffice-l10n-5.4.4~rc2/vcl/win/gdi/winlayout.cxx --- libreoffice-l10n-5.4.3~rc2/vcl/win/gdi/winlayout.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/vcl/win/gdi/winlayout.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -562,7 +562,7 @@ // Initially bind to an empty rectangle to get access to the font face, // we'll update it once we've calculated a bounding rect in DrawGlyphs - if (!BindDC(mhDC = hDC)) + if (FAILED(BindDC(mhDC = hDC))) return false; mlfEmHeight = 0; diff -Nru libreoffice-l10n-5.4.3~rc2/writerfilter/source/dmapper/DomainMapper.cxx libreoffice-l10n-5.4.4~rc2/writerfilter/source/dmapper/DomainMapper.cxx --- libreoffice-l10n-5.4.3~rc2/writerfilter/source/dmapper/DomainMapper.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/writerfilter/source/dmapper/DomainMapper.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -407,8 +407,16 @@ case NS_ooxml::LN_CT_Spacing_after: m_pImpl->appendGrabBag(m_pImpl->m_aSubInteropGrabBag, "after", OUString::number(nIntValue)); if (m_pImpl->GetTopContext()) + { // Don't overwrite NS_ooxml::LN_CT_Spacing_afterAutospacing. m_pImpl->GetTopContext()->Insert(PROP_PARA_BOTTOM_MARGIN, uno::makeAny( ConversionHelper::convertTwipToMM100( nIntValue ) ), false); + + uno::Any aContextualSpacingFromStyle = m_pImpl->GetPropertyFromStyleSheet(PROP_PARA_CONTEXT_MARGIN); + if (aContextualSpacingFromStyle.hasValue()) + // Setting "after" spacing means Writer doesn't inherit + // contexual spacing anymore from style, but Word does. + m_pImpl->GetTopContext()->Insert(PROP_PARA_CONTEXT_MARGIN, aContextualSpacingFromStyle); + } break; case NS_ooxml::LN_CT_Spacing_afterLines: m_pImpl->appendGrabBag(m_pImpl->m_aSubInteropGrabBag, "afterLines", OUString::number(nIntValue)); diff -Nru libreoffice-l10n-5.4.3~rc2/writerfilter/source/dmapper/DomainMapper_Impl.cxx libreoffice-l10n-5.4.4~rc2/writerfilter/source/dmapper/DomainMapper_Impl.cxx --- libreoffice-l10n-5.4.3~rc2/writerfilter/source/dmapper/DomainMapper_Impl.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/writerfilter/source/dmapper/DomainMapper_Impl.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -1191,10 +1191,11 @@ else { uno::Reference xCursor; - if (m_bParaHadField && !m_bIsInComments) + if (m_bParaHadField && !m_bIsInComments && !xTOCMarkerCursor.is()) { // Workaround to make sure char props of the field are not lost. // Not relevant for editeng-based comments. + // Nor revelent for fields inside a TOC field. OUString sMarker("X"); xCursor = xTextAppend->getText()->createTextCursor(); if (xCursor.is()) @@ -4873,7 +4874,10 @@ { uno::Reference< text::XTextCursor > xCursor = xTextAppend->createTextCursorByRange( xTextAppend->getEnd() ); - if(!bIsAfterDummyPara) + if (!xCursor) + return; + + if (!bIsAfterDummyPara) bIsStart = !xCursor->goLeft(1, false); xCurrent = xCursor->getStart(); } diff -Nru libreoffice-l10n-5.4.3~rc2/writerfilter/source/dmapper/PropertyMap.cxx libreoffice-l10n-5.4.4~rc2/writerfilter/source/dmapper/PropertyMap.cxx --- libreoffice-l10n-5.4.3~rc2/writerfilter/source/dmapper/PropertyMap.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/writerfilter/source/dmapper/PropertyMap.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -1172,7 +1172,7 @@ // Continuous sections usually create only a section, and not a new page style const bool bTreatAsContinuous = m_nBreakType == NS_ooxml::LN_Value_ST_SectionMark_nextPage && m_nColumnCount > 0 - && !HasHeader( m_bTitlePage ) && !HasFooter( m_bTitlePage ) + && (m_bIsFirstSection || (!HasHeader( m_bTitlePage ) && !HasFooter( m_bTitlePage )) ) && (m_bIsFirstSection || m_sFollowPageStyleName.isEmpty() || (m_sFirstPageStyleName.isEmpty() && m_bTitlePage)); if ( m_nBreakType == static_cast(NS_ooxml::LN_Value_ST_SectionMark_continuous) || bTreatAsContinuous ) { diff -Nru libreoffice-l10n-5.4.3~rc2/writerfilter/source/rtftok/rtfdocumentimpl.cxx libreoffice-l10n-5.4.4~rc2/writerfilter/source/rtftok/rtfdocumentimpl.cxx --- libreoffice-l10n-5.4.3~rc2/writerfilter/source/rtftok/rtfdocumentimpl.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/writerfilter/source/rtftok/rtfdocumentimpl.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -437,7 +437,7 @@ rStyleAttributes.set(rAttribute.first, rAttribute.second); } -writerfilter::Reference::Pointer_t RTFDocumentImpl::getProperties(RTFSprms& rAttributes, RTFSprms& rSprms) +writerfilter::Reference::Pointer_t RTFDocumentImpl::getProperties(RTFSprms& rAttributes, RTFSprms& rSprms, Id nStyleType) { int nStyle = 0; if (!m_aStates.empty()) @@ -459,13 +459,15 @@ RTFSprms aStyleSprms; RTFSprms aStyleAttributes; // Ensure the paragraph style is a flat list. - lcl_copyFlatten(rProps, aStyleAttributes, aStyleSprms); + if (!nStyleType || nStyleType == NS_ooxml::LN_Value_ST_StyleType_paragraph) + lcl_copyFlatten(rProps, aStyleAttributes, aStyleSprms); if (itChar != m_aStyleTableEntries.end()) { // Found active character style, then update aStyleSprms/Attributes. RTFReferenceProperties& rCharProps = *static_cast(itChar->second.get()); - lcl_copyFlatten(rCharProps, aStyleAttributes, aStyleSprms); + if (!nStyleType || nStyleType == NS_ooxml::LN_Value_ST_StyleType_character) + lcl_copyFlatten(rCharProps, aStyleAttributes, aStyleSprms); } // Get rid of direct formatting what is already in the style. @@ -489,7 +491,7 @@ if (!m_aStates.top().pCurrentBuffer) { writerfilter::Reference::Pointer_t const pParagraphProperties( - getProperties(m_aStates.top().aParagraphAttributes, m_aStates.top().aParagraphSprms) + getProperties(m_aStates.top().aParagraphAttributes, m_aStates.top().aParagraphSprms, NS_ooxml::LN_Value_ST_StyleType_paragraph) ); // Writer will ignore a page break before a text frame, so guard it with empty paragraphs @@ -524,7 +526,7 @@ { if (!m_aStates.top().pCurrentBuffer) { - writerfilter::Reference::Pointer_t const pProperties = getProperties(m_aStates.top().aCharacterAttributes, m_aStates.top().aCharacterSprms); + Reference::Pointer_t const pProperties = getProperties(m_aStates.top().aCharacterAttributes, m_aStates.top().aCharacterSprms, NS_ooxml::LN_Value_ST_StyleType_character); Mapper().props(pProperties); } else @@ -1413,7 +1415,7 @@ writerfilter::Reference::Pointer_t& o_rpTableRowProperties, int const nCells, int const nCurrentCellX) { - o_rpParagraphProperties = getProperties(rState.aParagraphAttributes, rState.aParagraphSprms); + o_rpParagraphProperties = getProperties(rState.aParagraphAttributes, rState.aParagraphSprms, NS_ooxml::LN_Value_ST_StyleType_paragraph); if (rState.aFrame.hasProperties()) { @@ -1497,7 +1499,7 @@ { // Construct properties via getProperties() and not directly, to take care of deduplication. writerfilter::Reference::Pointer_t const pProp( - getProperties(std::get<1>(aTuple)->getAttributes(), std::get<1>(aTuple)->getSprms()) + getProperties(std::get<1>(aTuple)->getAttributes(), std::get<1>(aTuple)->getSprms(), 0) ); Mapper().props(pProp); } diff -Nru libreoffice-l10n-5.4.3~rc2/writerfilter/source/rtftok/rtfdocumentimpl.hxx libreoffice-l10n-5.4.4~rc2/writerfilter/source/rtftok/rtfdocumentimpl.hxx --- libreoffice-l10n-5.4.3~rc2/writerfilter/source/rtftok/rtfdocumentimpl.hxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/writerfilter/source/rtftok/rtfdocumentimpl.hxx 2017-12-12 17:45:07.000000000 +0000 @@ -467,7 +467,7 @@ void runBreak(); void parBreak(); void tableBreak(); - writerfilter::Reference::Pointer_t getProperties(RTFSprms& rAttributes, RTFSprms& rSprms); + writerfilter::Reference::Pointer_t getProperties(RTFSprms& rAttributes, RTFSprms& rSprms, Id nStyleType); void checkNeedPap(); void sectBreak(bool bFinal = false); void prepareProperties( diff -Nru libreoffice-l10n-5.4.3~rc2/writerfilter/source/rtftok/rtfsprm.cxx libreoffice-l10n-5.4.4~rc2/writerfilter/source/rtftok/rtfsprm.cxx --- libreoffice-l10n-5.4.3~rc2/writerfilter/source/rtftok/rtfsprm.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/writerfilter/source/rtftok/rtfsprm.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -187,6 +187,9 @@ SAL_FALLTHROUGH; case NS_ooxml::LN_CT_PrBase_shd: // Expected children are NS_ooxml::LN_CT_Shd_*. + SAL_FALLTHROUGH; + case NS_ooxml::LN_CT_PPrBase_ind: + // Expected children are NS_ooxml::LN_CT_Ind_*. return true; default: diff -Nru libreoffice-l10n-5.4.3~rc2/xmloff/inc/EnhancedCustomShapeToken.hxx libreoffice-l10n-5.4.4~rc2/xmloff/inc/EnhancedCustomShapeToken.hxx --- libreoffice-l10n-5.4.3~rc2/xmloff/inc/EnhancedCustomShapeToken.hxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/xmloff/inc/EnhancedCustomShapeToken.hxx 2017-12-12 17:45:07.000000000 +0000 @@ -93,6 +93,7 @@ EAS_MirroredY, EAS_ViewBox, EAS_TextRotateAngle, + EAS_TextPreRotateAngle, EAS_ExtrusionAllowed, EAS_ConcentricGradientFillAllowed, EAS_TextPathAllowed, diff -Nru libreoffice-l10n-5.4.3~rc2/xmloff/source/core/fasttokenhandler.cxx libreoffice-l10n-5.4.4~rc2/xmloff/source/core/fasttokenhandler.cxx --- libreoffice-l10n-5.4.3~rc2/xmloff/source/core/fasttokenhandler.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/xmloff/source/core/fasttokenhandler.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -58,7 +58,7 @@ sal_Int32 TokenMap::getTokenPerfectHash( const char *pStr, sal_Int32 nLength ) { const struct xmltoken *pToken = Perfect_Hash::in_word_set( pStr, nLength ); - return pToken ? pToken->nToken : XML_TOKEN_INVALID; + return pToken ? pToken->nToken : xmloff::XML_TOKEN_INVALID; } FastTokenHandler::FastTokenHandler() : diff -Nru libreoffice-l10n-5.4.3~rc2/xmloff/source/core/xmltoken.cxx libreoffice-l10n-5.4.4~rc2/xmloff/source/core/xmltoken.cxx --- libreoffice-l10n-5.4.3~rc2/xmloff/source/core/xmltoken.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/xmloff/source/core/xmltoken.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -267,6 +267,7 @@ TOKEN( "author-initials", XML_AUTHOR_INITIALS ), TOKEN( "author-name", XML_AUTHOR_NAME ), TOKEN( "auto", XML_AUTO ), + TOKEN( "auto-complete", XML_AUTO_COMPLETE ), TOKEN( "auto-grow-height", XML_AUTO_GROW_HEIGHT ), TOKEN( "auto-grow-width", XML_AUTO_GROW_WIDTH ), TOKEN( "auto-reload", XML_AUTO_RELOAD ), @@ -349,6 +350,7 @@ TOKEN( "bottom values", XML_BOTTOM_VALUES ), TOKEN( "bottom-arc", XML_BOTTOMARC ), TOKEN( "bottom-circle", XML_BOTTOMCIRCLE ), + TOKEN( "bound-column", XML_BOUND_COLUMN ), TOKEN( "break-after", XML_BREAK_AFTER ), TOKEN( "break-before", XML_BREAK_BEFORE ), TOKEN( "break-inside", XML_BREAK_INSIDE ), @@ -606,6 +608,7 @@ TOKEN( "default-style-name", XML_DEFAULT_STYLE_NAME ), TOKEN( "degree", XML_DEGREE ), TOKEN( "delay", XML_DELAY ), + TOKEN( "delay-for-repeat", XML_DELAY_FOR_REPEAT ), TOKEN( "delete-columns", XML_DELETE_COLUMNS ), TOKEN( "delete-rows", XML_DELETE_ROWS ), TOKEN( "deletion", XML_DELETION ), @@ -669,6 +672,7 @@ TOKEN( "drawing", XML_DRAWING ), TOKEN( "drawings", XML_DRAWINGS ), TOKEN( "drawpool", XML_DRAWPOOL ), + TOKEN( "dropdown", XML_DROPDOWN ), TOKEN( "drop-cap", XML_DROP_CAP ), TOKEN( "dynamic", XML_DYNAMIC ), TOKEN( "edge-rounding", XML_EDGE_ROUNDING ), @@ -1137,6 +1141,7 @@ TOKEN( "linenumbering-separator", XML_LINENUMBERING_SEPARATOR ), TOKEN( "lines", XML_LINES ), TOKEN( "lines-used", XML_LINES_USED ), + TOKEN( "linked-cell", XML_LINKED_CELL ), TOKEN( "link-to-source-data", XML_LINK_TO_SOURCE_DATA ), TOKEN( "list", XML_LIST ), TOKEN( "list-block", XML_LIST_BLOCK ), @@ -1147,6 +1152,7 @@ TOKEN( "list-level-style-bullet", XML_LIST_LEVEL_STYLE_BULLET ), TOKEN( "list-level-style-image", XML_LIST_LEVEL_STYLE_IMAGE ), TOKEN( "list-level-style-number", XML_LIST_LEVEL_STYLE_NUMBER ), + TOKEN( "list-linkage-type", XML_LIST_LINKAGE_TYPE ), TOKEN( "list-name", XML_LIST_NAME ), TOKEN( "list-style", XML_LIST_STYLE ), TOKEN( "list-style-name", XML_LIST_STYLE_NAME ), @@ -1356,6 +1362,7 @@ TOKEN( "operation", XML_OPERATION ), TOKEN( "operator", XML_OPERATOR ), TOKEN( "optimal", XML_OPTIMAL ), + TOKEN( "option", XML_OPTION ), TOKEN( "or", XML_OR ), TOKEN( "order", XML_ORDER ), TOKEN( "ordered-list", XML_ORDERED_LIST ), @@ -1753,6 +1760,7 @@ TOKEN( "stdev", XML_STDEV ), TOKEN( "stdevp", XML_STDEVP ), TOKEN( "steps", XML_STEPS ), + TOKEN( "step-size", XML_STEP_SIZE ), TOKEN( "stock", XML_STOCK ), TOKEN( "stock-updown-bars", XML_STOCK_UPDOWN_BARS ), TOKEN( "stock-with-volume", XML_STOCK_WITH_VOLUME ), @@ -1832,6 +1840,7 @@ TOKEN( "tan", XML_TAN ), TOKEN( "tanh", XML_TANH ), TOKEN( "target-cell-address", XML_TARGET_CELL_ADDRESS ), + TOKEN( "target-frame", XML_TARGET_FRAME ), TOKEN( "target-frame-name", XML_TARGET_FRAME_NAME ), TOKEN( "target-range-address", XML_TARGET_RANGE_ADDRESS ), TOKEN( "tb-rl", XML_TB_RL ), diff -Nru libreoffice-l10n-5.4.3~rc2/xmloff/source/draw/EnhancedCustomShapeToken.cxx libreoffice-l10n-5.4.4~rc2/xmloff/source/draw/EnhancedCustomShapeToken.cxx --- libreoffice-l10n-5.4.3~rc2/xmloff/source/draw/EnhancedCustomShapeToken.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/xmloff/source/draw/EnhancedCustomShapeToken.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -108,6 +108,7 @@ { "MirroredY", EAS_MirroredY }, { "ViewBox", EAS_ViewBox }, { "TextRotateAngle", EAS_TextRotateAngle }, + { "TextPreRotateAngle", EAS_TextPreRotateAngle }, { "ExtrusionAllowed", EAS_ExtrusionAllowed }, { "TextPathAllowed", EAS_TextPathAllowed }, { "ConcentricGradientFillAllowed", EAS_ConcentricGradientFillAllowed }, diff -Nru libreoffice-l10n-5.4.3~rc2/xmloff/source/draw/shapeexport.cxx libreoffice-l10n-5.4.4~rc2/xmloff/source/draw/shapeexport.cxx --- libreoffice-l10n-5.4.3~rc2/xmloff/source/draw/shapeexport.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/xmloff/source/draw/shapeexport.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -2777,14 +2777,6 @@ if( !bIsEmptyPresObj || bSaveBackwardsCompatible ) { - // tdf#112005 export text *before* adding any attributes - if (!bIsEmptyPresObj && supportsText(eShapeType)) - { - // #i118485# Add text export, the draw OLE shape allows text now - // fdo#58571 chart objects don't allow text:p - ImpExportText( xShape, TextPNS::EXTENSION ); - } - if (pAttrList) { mrExport.AddAttributeList(pAttrList); @@ -2849,6 +2841,13 @@ enum XMLTokenEnum eElem = sClassId.isEmpty() ? XML_OBJECT : XML_OBJECT_OLE ; SvXMLElementExport aElem( mrExport, XML_NAMESPACE_DRAW, eElem, true, true ); + // tdf#112547 export text as child of draw:object, where import expects it + if (!bIsEmptyPresObj && supportsText(eShapeType)) + { + // #i118485# Add text export, the draw OLE shape allows text now + ImpExportText( xShape, TextPNS::EXTENSION ); + } + if(bExportEmbedded && !bIsEmptyPresObj) { if(bInternal) @@ -4255,10 +4254,11 @@ } } break; + case EAS_TextPreRotateAngle : case EAS_TextRotateAngle : { double fTextRotateAngle = 0; - if ( rGeoProp.Value >>= fTextRotateAngle ) + if ( ( rGeoProp.Value >>= fTextRotateAngle ) && fTextRotateAngle != 0 ) { ::sax::Converter::convertDouble( aStrBuffer, fTextRotateAngle ); diff -Nru libreoffice-l10n-5.4.3~rc2/xmloff/source/token/tokens.txt libreoffice-l10n-5.4.4~rc2/xmloff/source/token/tokens.txt --- libreoffice-l10n-5.4.3~rc2/xmloff/source/token/tokens.txt 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/xmloff/source/token/tokens.txt 2017-12-12 17:45:07.000000000 +0000 @@ -190,6 +190,7 @@ author-initials author-name auto +auto-complete auto-grow-height auto-grow-width auto-reload @@ -272,6 +273,7 @@ BOTTOM_VALUES_DUMMY bottom-arc bottom-circle +bound-column break-after break-before break-inside @@ -529,6 +531,7 @@ default-style-name degree delay +delay-for-repeat delete-columns delete-rows deletion @@ -592,6 +595,7 @@ drawing drawings drawpool +dropdown drop-cap dynamic edge-rounding @@ -1055,6 +1059,7 @@ linenumbering-separator lines lines-used +linked-cell link-to-source-data list list-block @@ -1065,6 +1070,7 @@ list-level-style-bullet list-level-style-image list-level-style-number +list-linkage-type list-name list-style list-style-name @@ -1274,6 +1280,7 @@ operation operator optimal +option or order ordered-list @@ -1671,6 +1678,7 @@ stdev stdevp steps +step-size stock stock-updown-bars stock-with-volume @@ -1750,6 +1758,7 @@ tan tanh target-cell-address +target-frame target-frame-name target-range-address tb-rl diff -Nru libreoffice-l10n-5.4.3~rc2/xmlsecurity/source/gpg/SecurityEnvironment.cxx libreoffice-l10n-5.4.4~rc2/xmlsecurity/source/gpg/SecurityEnvironment.cxx --- libreoffice-l10n-5.4.3~rc2/xmlsecurity/source/gpg/SecurityEnvironment.cxx 2017-11-03 14:12:31.000000000 +0000 +++ libreoffice-l10n-5.4.4~rc2/xmlsecurity/source/gpg/SecurityEnvironment.cxx 2017-12-12 17:45:07.000000000 +0000 @@ -76,7 +76,7 @@ GpgME::Key k = m_ctx->nextKey(err); if (err) break; - if (!k.isInvalid()) { + if (!k.isRevoked() && !k.isExpired() && !k.isDisabled() && !k.isInvalid()) { // We can't create CertificateImpl here as CertificateImpl::setCertificate uses GpgME API // which interrupts our key listing here. So first get the keys from GpgME, then create the CertificateImpls keyList.push_back(k);